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
|
// file : butl/process.ixx -*- C++ -*-
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <utility> // move()
namespace butl
{
inline process_path::
process_path (process_path&& p)
: initial (p.initial),
recall (std::move (p.recall)),
effect (std::move (p.effect)),
args0_ (p.args0_)
{
p.args0_ = nullptr;
}
inline process_path& process_path::
operator= (process_path&& p)
{
if (this != &p)
{
if (args0_ != nullptr)
*args0_ = initial;
initial = p.initial;
recall = std::move (p.recall);
effect = std::move (p.effect);
args0_ = p.args0_;
p.args0_ = nullptr;
}
return *this;
}
inline process::
process ()
: handle (0),
status (0), // This is a bit of an assumption.
out_fd (-1),
in_ofd (-1),
in_efd (-1)
{
}
inline process::
process (const char* args[], int in, int out, int err)
: process (nullptr, path_search (args[0]), args, in, out, err) {}
inline process::
process (const process_path& pp, const char* args[],
int in, int out, int err)
: process (nullptr, pp, args, in, out, err) {}
inline process::
process (const char* args[], process& in, int out, int err)
: process (nullptr, path_search (args[0]), args, in, out, err) {}
inline process::
process (const process_path& pp, const char* args[],
process& in, int out, int err)
: process (nullptr, pp, args, in, out, err) {}
inline process::
process (const char* cwd, const char* args[], int in, int out, int err)
: process (cwd, path_search (args[0]), args, in, out, err) {}
inline process::
process (const char* cwd, const char* args[], process& in, int out, int err)
: process (cwd, path_search (args[0]), args, in, out, err) {}
inline process::
process (process&& p)
: handle (p.handle),
status (p.status),
out_fd (p.out_fd),
in_ofd (p.in_ofd),
in_efd (p.in_efd)
{
p.handle = 0;
}
inline process& process::
operator= (process&& p)
{
if (this != &p)
{
if (handle != 0)
wait ();
handle = p.handle;
status = p.status;
out_fd = p.out_fd;
in_ofd = p.in_ofd;
in_efd = p.in_efd;
p.handle = 0;
}
return *this;
}
}
|