summaryrefslogtreecommitdiff
path: root/plugins/New_GPG/src/include/boost/process/initializers.hpp
blob: c7175d1425d706cf0e243d442ff50f7b79b90640 (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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
// 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/initializers.hpp
 *
 * Defines initializers.
 */

#ifndef BOOST_PROCESS_INITIALIZERS_HPP
#define BOOST_PROCESS_INITIALIZERS_HPP

#include <boost/process/config.hpp>

#include BOOST_PROCESS_PLATFORM_PROMOTE_PATH(initializers)
BOOST_PROCESS_PLATFORM_PROMOTE_INITIALIZERS_NAMESPACE

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

/**
 * Binds the standard error stream.
 */
class bind_stderr : public initializer_base
{
public:
    /**
     * Constructor.
     */
    explicit bind_stderr(const boost::iostreams::file_descriptor_sink &sink);
};

/**
 * Binds the standard input stream.
 */
class bind_stdin : public initializer_base
{
public:
    /**
     * Constructor.
     */
    explicit bind_stdin(const boost::iostreams::file_descriptor_source &source);
};

/**
 * Binds the standard output stream.
 */
class bind_stdout : public initializer_base
{
public:
    /**
     * Constructor.
     */
    explicit bind_stdout(const boost::iostreams::file_descriptor_sink &sink);
};

/**
 * Binds a file descriptor.
 *
 * \remark <em>POSIX only.</em>
 */
class bind_fd : public initializer_base
{
public:
    /**
     * Constructor.
     */
    bind_fd(int id, const boost::iostreams::file_descriptor &fd);
};

/**
 * Closes a file descriptor.
 *
 * \remark <em>POSIX only.</em>
 */
class close_fd : public initializer_base
{
    /**
     * Constructor.
     */
    explicit close_fd(int fd);
};

/**
 * Closes file descriptors.
 *
 * \remark <em>POSIX only.</em>
 */
class close_fds : public initializer_base
{
public:
    /**
     * Constructor.
     *
     * \c range_type must be an <tt>int</tt>-range.
     */
    explicit close_fds(const range_type &fds);
};

/**
 * Closes all file descriptors a predicate returns
 * true for.
 *
 * This initializer doesn't close file descriptors
 * immediately. Instead it sets the \c FD_CLOEXEC
 * flag. File descriptors are closed when \c execve
 * is called and the call succeeds.
 *
 * \remark <em>POSIX only.</em>
 */
class close_fds_if : public initializer_base
{
public:
    /**
     * Constructor.
     *
     * \c predicate_type must be a function or functor with
     * this signature: <tt>bool(int)</tt>
     */
    explicit close_fds_if(const predicate_type &pred);
};

/**
 * Closes the standard error stream.
 */
class close_stderr : public initializer_base
{
    /**
     * Constructor.
     */
    close_stderr();
};

/**
 * Closes the standard input stream.
 */
class close_stdin : public initializer_base
{
    /**
     * Constructor.
     */
    close_stdin();
};

/**
 * Closes the standard output stream.
 */
class close_stdout : public initializer_base
{
    /**
     * Constructor.
     */
    close_stdout();
};

/**
 * Hides the console.
 */
class hide_console : public initializer_base
{
public:
    /**
     * Constructor.
     */
    hide_console();
};

/**
 * Inherits environment variables.
 */
class inherit_env : public initializer_base
{
public:
    /**
     * Constructor.
     */
    inherit_env();
};

/**
 * Notifies an I/O service object of fork-related events.
 *
 * \see boost::asio::io_service::notify_fork
 *
 * \remark <em>POSIX only.</em>
 */
class notify_io_service : public initializer_base
{
public:
    /**
     * Constructor.
     */
    explicit notify_io_service(boost::asio::io_service &io_service);
};

/**
 * Generic initializer to execute any code if \c execve
 * failed.
 *
 * \remark <em>POSIX only.</em>
 */
class on_exec_error : public initializer_base
{
public:
    /**
     * Constructor.
     *
     * \c handler_type must be a function or functor with
     * this signature: <tt>void(executor&)</tt>
     */
    explicit on_exec_error(handler_type handler);
};

/**
 * Generic initializer to execute any code before \c execve
 * is called.
 *
 * \remark <em>POSIX only.</em>
 */
class on_exec_setup : public initializer_base
{
public:
    /**
     * Constructor.
     *
     * \c handler_type must be a function or functor with
     * this signature: <tt>void(executor&)</tt>
     */
    explicit on_exec_setup(handler_type handler);
};

/**
 * Generic initializer to execute any code if \c fork
 * failed.
 *
 * \remark <em>POSIX only.</em>
 */
class on_fork_error : public initializer_base
{
public:
    /**
     * Constructor.
     *
     * \c handler_type must be a function or functor with
     * this signature: <tt>void(executor&)</tt>
     */
    explicit on_fork_error(handler_type handler);
};

/**
 * Generic initializer to execute any code before \c fork
 * is called.
 *
 * \remark <em>POSIX only.</em>
 */
class on_fork_setup : public initializer_base
{
public:
    /**
     * Constructor.
     *
     * \c handler_type must be a function or functor with
     * this signature: <tt>void(executor&)</tt>
     */
    explicit on_fork_setup(handler_type handler);
};

/**
 * Generic initializer to execute any code in the parent
 * process after \c fork has been called successfully.
 *
 * \remark <em>POSIX only.</em>
 */
class on_fork_success : public initializer_base
{
public:
    /**
     * Constructor.
     *
     * \c handler_type must be a function or functor with
     * this signature: <tt>void(executor&)</tt>
     */
    explicit on_fork_success(handler_type handler);
};

/**
 * Generic initializer to execute any code if \c CreateProcess
 * failed.
 *
 * \remark <em>Windows only.</em>
 */
class on_CreateProcess_error : public initializer_base
{
public:
    /**
     * Constructor.
     *
     * \c handler_type must be a function or functor with
     * this signature: <tt>void(executor&)</tt>
     */
    explicit on_CreateProcess_error(handler_type handler);
};

/**
 * Generic initializer to execute any code before \c CreateProcess
 * is called.
 *
 * \remark <em>Windows only.</em>
 */
class on_CreateProcess_setup : public initializer_base
{
public:
    /**
     * Constructor.
     *
     * \c handler_type must be a function or functor with
     * this signature: <tt>void(executor&)</tt>
     */
    explicit on_CreateProcess_setup(handler_type handler);
};

/**
 * Generic initializer to execute any code after \c CreateProcess
 * has been called successfully.
 *
 * \remark <em>Windows only.</em>
 */
class on_CreateProcess_success : public initializer_base
{
public:
    /**
     * Constructor.
     *
     * \c handler_type must be a function or functor with
     * this signature: <tt>void(executor&)</tt>
     */
    explicit on_CreateProcess_success(handler_type handler);
};

/**
 * Specifies the executable to start.
 *
 * This initializer must always be used. The only exception is
 * if you use \c set_args or a generic initializer which
 * specifies the executable.
 */
class run_exe : public initializer_base
{
public:
    /**
     * Constructor.
     *
     * On Windows \c string_type must be <tt>const char*</tt>,
     * <tt>std::string</tt> or <tt>boost::filesystem::path</tt>.
     * If Unicode is used, \c string_type must be
     * <tt>const wchar_t*</tt>, <tt>std::wstring</tt> or
     * <tt>boost::filesystem::path</tt>.
     *
     * On POSIX \c string_type must be <tt>const char*</tt>,
     * <tt>std::string</tt> or <tt>boost::filesystem::path</tt>.
     */
    explicit run_exe(const string_type &s);
};

/**
 * Sets the command line arguments.
 *
 * The first argument specifies the executable to start unless
 * \c run_exe is used.
 *
 * Use \c set_cmd_line if you don't want to pass a collection of
 * command line arguments but set the command line as one string.
 */
class set_args : public initializer_base
{
public:
    /**
     * Constructor.
     *
     * On Windows \c range_type must be a <tt>std::string</tt>-range.
     * If Unicode is used, \c range_type must be a
     * <tt>std::wstring</tt>-range.
     *
     * On POSIX \c range_type must be a <tt>std::string</tt>-range.
     */
    explicit set_args(const range_type &r);
};

/**
 * Sets the command line.
 *
 * Use \c set_args if you don't want to set the command line as
 * one string but pass a collection of command line arguments.
 */
class set_cmd_line : public initializer_base
{
public:
    /**
     * Constructor.
     *
     * On Windows \c string_type must be <tt>const char*</tt>,
     * <tt>std::string</tt> or <tt>boost::filesystem::path</tt>.
     * If Unicode is used, \c string_type must be
     * <tt>const wchar_t*</tt>, <tt>std::wstring</tt> or
     * <tt>boost::filesystem::path</tt>.
     *
     * On POSIX \c string_type must be <tt>const char*</tt>,
     * <tt>std::string</tt> or <tt>boost::filesystem::path</tt>.
     */
    explicit set_cmd_line(const string_type &s);
};

/**
 * Sets the environment.
 */
class set_env : public initializer_base
{
public:
    /**
     * Constructor.
     *
     * On Windows \c range_type must be a <tt>std::string</tt>-range.
     * If Unicode is used, \c range_type must be a
     * <tt>std::wstring</tt>-range.
     *
     * On POSIX \c range_type must be a <tt>std::string</tt>-range.
     */
    explicit set_env(const range_type &r);
};

/**
 * Sets an error if a child process can't be created.
 */
class set_on_error : public initializer_base
{
public:
    /**
     * Constructor.
     */
    explicit set_on_error(boost::system::error_code &ec);
};

/**
 * Sets the flag \c wShowWindow in \c STARTUPINFO.
 *
 * \remark <em>Windows only.</em>
 */
class show_window : public initializer_base
{
public:
    /**
     * Constructor.
     */
    explicit show_window(WORD flags);
};

/**
 * Sets the work directory.
 */
class start_in_dir : public initializer_base
{
public:
    /**
     * Constructor.
     *
     * On Windows \c string_type must be <tt>const char*</tt>,
     * <tt>std::string</tt> or <tt>boost::filesystem::path</tt>.
     * If Unicode is used, \c string_type must be
     * <tt>const wchar_t*</tt>, <tt>std::wstring</tt> or
     * <tt>boost::filesystem::path</tt>.
     *
     * On POSIX \c string_type must be <tt>const char*</tt>,
     * <tt>std::string</tt> or <tt>boost::filesystem::path</tt>.
     */
    explicit start_in_dir(const string_type &s);
};

/**
 * Throws an error if a child process can't be created.
 *
 * The type of the error thrown is \c boost::system::system_error.
 */
class throw_on_error : public initializer_base
{
public:
};

}}}
#endif

#endif