summaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/util/child_process.cpp
blob: 694bed60f1b9bd4a20a41c664d29dabcaa405f8b (plain) (blame)
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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "guard.h"
#include "child_process.h"
#include <cstring>
#include <vespa/vespalib/util/size_literals.h>

namespace vespalib {

namespace child_process {

using namespace std::chrono;

/**
 * @brief ChildProcess internal timeout management.
 **/
class Timer
{
private:
    const steady_clock::time_point _startTime;
    const int64_t                  _maxTimeMS;
    milliseconds                   _elapsed;

public:
    Timer(int64_t maxTimeMS)
        : _startTime(steady_clock::now()),
          _maxTimeMS(maxTimeMS),
          _elapsed(0)
    { }
    Timer &update() {
        _elapsed = duration_cast<milliseconds>(steady_clock::now() - _startTime);
        return *this;
    }
    int64_t elapsed() const {
        return _elapsed.count();
    }
    int64_t remaining() const {
        if (_maxTimeMS == -1) {
            return -1;
        }
        if (elapsed() > _maxTimeMS) {
            return 0;
        }
        return (_maxTimeMS - _elapsed.count());
    }
    int64_t waitTime() const {
        int res = remaining();
        if (res >= 0 && res <= 10000) {
            return res;
        }
        return 10000;
    }
    bool timeOut() const {
        return (remaining() == 0);
    }
};

} // namespace child_process


void
ChildProcess::Reader::OnReceiveData(const void *data, size_t length)
{
    const char *buf = (const char *) data;
    std::unique_lock lock(_lock);
    if (_gotEOF || (buf != nullptr && length == 0)) { // ignore special cases
        return;
    }
    if (buf == nullptr) { // EOF
        if (--_num_streams == 0) {
            _gotEOF = true;
        }
    } else {
        _queue.push(std::string(buf, length));
    }
    if (_waitCnt > 0) {
        _cond.notify_one();
    }
}


bool
ChildProcess::Reader::hasData()
{
    // NB: caller has lock on _cond
    return (!_data.empty() || !_queue.empty());
}


bool
ChildProcess::Reader::waitForData(child_process::Timer &timer, std::unique_lock<std::mutex> &guard)
{
    // NB: caller has lock on _cond
    CounterGuard count(_waitCnt);
    while (!timer.update().timeOut() && !hasData() && !_gotEOF) {
        _cond.wait_for(guard, std::chrono::milliseconds(timer.waitTime()));
    }
    return hasData();
}


void
ChildProcess::Reader::updateEOF()
{
    // NB: caller has lock on _cond
    if (_data.empty() && _queue.empty() && _gotEOF) {
        _readEOF = true;
    }
}


ChildProcess::Reader::Reader(int num_streams)
    : _lock(),
      _cond(),
      _queue(),
      _data(),
      _num_streams(num_streams),
      _gotEOF(false),
      _waitCnt(0),
      _readEOF(false)
{
}


ChildProcess::Reader::~Reader() = default;


uint32_t
ChildProcess::Reader::read(char *buf, uint32_t len, int msTimeout)
{
    if (eof()) {
        return 0;
    }
    child_process::Timer timer(msTimeout);
    std::unique_lock guard(_lock);
    waitForData(timer, guard);
    uint32_t bytes = 0;
    while (bytes < len && hasData()) {
        if (_data.empty()) {
            _data = _queue.front();
            _queue.pop();
        }
        if (len - bytes < _data.length()) {
            memcpy(buf + bytes, _data.data(), len - bytes);
            _data.erase(0, len - bytes);
            bytes = len;
        } else {
            memcpy(buf + bytes, _data.data(), _data.length());
            bytes += _data.length();
            _data.clear();
        }
    }
    updateEOF();
    return bytes;
}


bool
ChildProcess::Reader::readLine(std::string &line, int msTimeout)
{
    line.clear();
    if (eof()) {
        return false;
    }
    child_process::Timer timer(msTimeout);
    std::unique_lock guard(_lock);
    while (waitForData(timer, guard)) {
        while (hasData()) {
            if (_data.empty()) {
                _data = _queue.front();
                _queue.pop();
            }
            std::string::size_type ofs = _data.find('\n');
            if (ofs == std::string::npos) {
                line.append(_data);
                _data.clear();
            } else {
                line.append(_data, 0, ofs);
                _data.erase(0, ofs + 1);
                updateEOF();
                return true;
            }
        }
    }
    updateEOF();
    if (eof()) {
        return !line.empty();
    }
    _data.swap(line);
    return false;
}

//-----------------------------------------------------------------------------

void
ChildProcess::checkProc()
{
    if (_running) {
        bool stillRunning;
        if (_proc.PollWait(&_exitCode, &stillRunning) && !stillRunning) {
            _running = false;
            _failed = (_exitCode != 0);
        }
    }
}


ChildProcess::ChildProcess(const char *cmd)
    : _reader(1),
      _proc(cmd, true, &_reader),
      _running(false),
      _failed(false),
      _exitCode(-918273645)
{
    _running = _proc.CreateWithShell();
    _failed  = !_running;
}

ChildProcess::ChildProcess(const char *cmd, capture_stderr_tag)
    : _reader(2),
      _proc(cmd, true, &_reader, &_reader),
      _running(false),
      _failed(false),
      _exitCode(-918273645)
{
    _running = _proc.CreateWithShell();
    _failed  = !_running;
}


ChildProcess::~ChildProcess() = default;


bool
ChildProcess::write(const char *buf, uint32_t len)
{
    if (len == 0) {
        return true;
    }
    return _proc.WriteStdin(buf, len);
}


bool
ChildProcess::close()
{
    return _proc.WriteStdin(nullptr, 0);
}


uint32_t
ChildProcess::read(char *buf, uint32_t len, int msTimeout)
{
    return _reader.read(buf, len, msTimeout);
}


bool
ChildProcess::readLine(std::string &line, int msTimeout)
{
    return _reader.readLine(line, msTimeout);
}


bool
ChildProcess::wait(int msTimeout)
{
    bool done = true;
    checkProc();
    if (_running) {
        if (msTimeout != -1) {
            msTimeout = (msTimeout + 999) / 1000;
        }
        if (_proc.Wait(&_exitCode, msTimeout)) {
            _failed = (_exitCode != 0);
        } else {
            _failed = true;
            done = false;
        }
        _running = false;
    }
    return done;
}


bool
ChildProcess::running()
{
    checkProc();
    return _running;
}


bool
ChildProcess::failed()
{
    checkProc();
    return _failed;
}

int
ChildProcess::getExitCode()
{
    return _exitCode;
}


bool
ChildProcess::run(const std::string &input, const char *cmd,
               std::string &output, int msTimeout)
{
    ChildProcess proc(cmd);
    child_process::Timer timer(msTimeout);
    char buf[4_Ki];
    proc.write(input.data(), input.length());
    proc.close(); // close stdin
    while (!proc.eof() && !timer.timeOut()) {
        uint32_t res = proc.read(buf, sizeof(buf), timer.remaining());
        output.append(buf, res);
        timer.update();
    }
    if ( ! output.empty() && output.find('\n') == output.size() - 1) {
        output.erase(output.size() - 1, 1);
    }
    proc.wait(timer.update().remaining());
    return (!proc.running() && !proc.failed());
}


bool
ChildProcess::run(const char *cmd, std::string &output, int msTimeout)
{
    std::string input;  // empty input
    return run(input, cmd, output, msTimeout);
}


bool
ChildProcess::run(const char *cmd, int msTimeout)
{
    std::string input;  // empty input
    std::string output; // ignore output
    return run(input, cmd, output, msTimeout);
}

} // namespace vespalib