summaryrefslogtreecommitdiff
path: root/plugins/New_GPG/src/include/boost/process/executor.hpp
blob: 7ba77395f35a0b30164e8904e14f7604e2ae3eac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
// Copyright (c) 2006, 2007 Julio M. Merino Vidal
// Copyright (c) 2008 Ilya Sokolov, Boris Schaeling
// Copyright (c) 2009 Boris Schaeling
// Copyright (c) 2010 Felipe Tanus, Boris Schaeling
// Copyright (c) 2011, 2012 Jeff Flinn, Boris Schaeling
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

/**
 * \file boost/process/executor.hpp
 *
 * Defines an executor which can create child processes.
 */

#ifndef BOOST_PROCESS_EXECUTOR_HPP
#define BOOST_PROCESS_EXECUTOR_HPP

#include <boost/process/config.hpp>

#include BOOST_PROCESS_PLATFORM_PROMOTE_PATH(executor)
BOOST_PROCESS_PLATFORM_PROMOTE_NAMESPACE(executor)

#if defined(BOOST_PROCESS_DOXYGEN)
namespace boost { namespace process {

/**
 * Starts a program.
 *
 * boost::process::executor is a functor which calls the system functions
 * to start a program. Before system functions are called it iterates
 * over initializers and calls a member function passing a reference
 * to itself as a parameter. Initializers get then a chance to setup
 * the executor. If system functions fail boost::process::executor again
 * iterates over initializers and calls another member function passing a
 * reference to itself as a parameter. This gives initializers a
 * chance to handle the error.
 *
 * \note Library users shouldn't need to use boost::process::executor.
 *       It is recommended to call boost::process::execute which uses
 *       boost::pocess::executor internally.
 */
struct executor
{
    /**
     * Default constructor.
     */
    executor();

    /**
     * Starts a program.
     *
     * \tparam initializers define what and how the program is started
     */
    template <class Initializer, class... Initializers>
    child operator()(const Initializer &initializer, const Initializers... &initializers);

    ///\defgroup WindowsOnly Windows only.
    ///@{

    /**
     * Program name.
     *
     * \remark <em>Windows only.</em>
     */
    LPCTSTR exe;

    /**
     * Command line.
     *
     * \remark <em>Windows only.</em>
     */
    LPTSTR cmd_line;

    /**
     * Process attributes.
     *
     * \remark <em>Windows only.</em>
     */
    LPSECURITY_ATTRIBUTES proc_attrs;

    /**
     * Thread attributes.
     *
     * \remark <em>Windows only.</em>
     */
    LPSECURITY_ATTRIBUTES thread_attrs;

    /**
     * Flag to inherit handles.
     *
     * \remark <em>Windows only.</em>
     */
    BOOL inherit_handles;

    /**
     * Creation flags.
     *
     * \remark <em>Windows only.</em>
     */
    DWORD creation_flags;

    /**
     * Environment variables.
     *
     * \remark <em>Windows only.</em>
     */
    LPVOID env;

    /**
     * Work directory.
     *
     * \remark <em>Windows only.</em>
     */
    LPCTSTR work_dir;

    /**
     * Startupinfo structure.
     *
     * \remark <em>Windows only.</em>
     */
    STARTUPINFO startup_info;

    /**
     * Startupinfoex structure.
     *
     * If this member variable is available, \c startup_info is a reference
     * to \c StartupInfo in STARTUPINFOEX.
     *
     * \remark <em>Windows Vista, Windows Server 2008 or better.</em>
     */
    STARTUPINFOEX startup_info_ex;

    /**
     * Process information.
     *
     * \c proc_info contains the result after a child process
     * could be started successfully.
     *
     * \remark <em>Windows only.</em>
     */
    PROCESS_INFORMATION proc_info;

    ///@}

    ///\defgroup POSIXOnly POSIX only.
    ///@{

    /**
     * Program name.
     *
     * \remark <em>POSIX only.</em>
     */
    const char *exe;

    /**
     * Command line arguments.
     *
     * \remark <em>POSIX only.</em>
     */
    char **cmd_line;

    /**
     * Environment variables.
     *
     * \remark <em>POSIX only.</em>
     */
    char **env;

    ///@}
};

}}
#endif

#endif