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
|
// slang-process-util.cpp
#include "slang-process-util.h"
#include "slang-string.h"
#include "slang-string-escape-util.h"
#include "slang-string-util.h"
#include "../../slang-com-helper.h"
namespace Slang {
/* static */SlangResult ProcessUtil::execute(const CommandLine& commandLine, ExecuteResult& outExecuteResult)
{
RefPtr<Process> process;
SLANG_RETURN_ON_FAIL(Process::create(commandLine, 0, process));
SLANG_RETURN_ON_FAIL(readUntilTermination(process, outExecuteResult));
return SLANG_OK;
}
static Index _getCount(List<Byte>* buf)
{
return buf ? buf->getCount() : 0;
}
// We may want something more sophisticated here, if bytes is something other than ascii/utf8
static String _getText(const ConstArrayView<Byte>& bytes)
{
StringBuilder buf;
StringUtil::appendStandardLines(UnownedStringSlice((const char*)bytes.begin(), (const char*)bytes.end()), buf);
return buf.produceString();
}
/* static */SlangResult ProcessUtil::readUntilTermination(Process* process, ExecuteResult& outExecuteResult)
{
List<Byte> stdOut;
List<Byte> stdError;
SLANG_RETURN_ON_FAIL(readUntilTermination(process, &stdOut, &stdError));
// Get the return code
outExecuteResult.resultCode = ExecuteResult::ResultCode(process->getReturnValue());
outExecuteResult.standardOutput = _getText(stdOut.getArrayView());
outExecuteResult.standardError = _getText(stdError.getArrayView());
return SLANG_OK;
}
/* static */SlangResult ProcessUtil::readUntilTermination(Process* process, List<Byte>* outStdOut, List<Byte>* outStdError)
{
Stream* stdOutStream = process->getStream(StdStreamType::Out);
Stream* stdErrorStream = process->getStream(StdStreamType::ErrorOut);
while (!process->isTerminated())
{
const auto preCount = _getCount(outStdOut) + _getCount(outStdError);
SLANG_RETURN_ON_FAIL(StreamUtil::readOrDiscard(stdOutStream, 0, outStdOut));
SLANG_RETURN_ON_FAIL(StreamUtil::readOrDiscard(stdErrorStream, 0, outStdError));
const auto postCount = _getCount(outStdOut) + _getCount(outStdError);
// If nothing was read, we can yield
if (preCount == postCount)
{
Process::sleepCurrentThread(0);
}
}
// Read anything remaining
SLANG_RETURN_ON_FAIL(StreamUtil::readOrDiscardAll(stdOutStream, 0, outStdOut));
SLANG_RETURN_ON_FAIL(StreamUtil::readOrDiscardAll(stdErrorStream, 0, outStdError));
return SLANG_OK;
}
} // namespace Slang
|