2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2009-02-24 15:40:18 +00:00
|
|
|
#include "cmProcessTools.h"
|
|
|
|
|
2016-08-23 22:29:15 +00:00
|
|
|
#include <ostream>
|
2009-02-24 15:40:18 +00:00
|
|
|
|
2019-09-30 14:46:28 +00:00
|
|
|
#include "cmsys/Process.h"
|
|
|
|
|
|
|
|
#include "cmProcessOutput.h"
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
void cmProcessTools::RunProcess(struct cmsysProcess_s* cp, OutputParser* out,
|
2016-11-01 18:36:58 +00:00
|
|
|
OutputParser* err, Encoding encoding)
|
2009-02-24 15:40:18 +00:00
|
|
|
{
|
|
|
|
cmsysProcess_Execute(cp);
|
2017-08-22 21:42:36 +00:00
|
|
|
char* data = nullptr;
|
2009-02-24 15:40:18 +00:00
|
|
|
int length = 0;
|
|
|
|
int p;
|
2016-11-01 18:36:58 +00:00
|
|
|
cmProcessOutput processOutput(encoding);
|
2016-11-01 18:29:17 +00:00
|
|
|
std::string strdata;
|
2016-05-16 14:34:04 +00:00
|
|
|
while ((out || err) &&
|
2019-01-12 01:48:19 +00:00
|
|
|
(p = cmsysProcess_WaitForData(cp, &data, &length, nullptr))) {
|
2016-05-16 14:34:04 +00:00
|
|
|
if (out && p == cmsysProcess_Pipe_STDOUT) {
|
2016-11-01 18:29:17 +00:00
|
|
|
processOutput.DecodeText(data, length, strdata, 1);
|
|
|
|
if (!out->Process(strdata.c_str(), int(strdata.size()))) {
|
2017-08-22 21:42:36 +00:00
|
|
|
out = nullptr;
|
2009-02-24 15:40:18 +00:00
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
} else if (err && p == cmsysProcess_Pipe_STDERR) {
|
2016-11-01 18:29:17 +00:00
|
|
|
processOutput.DecodeText(data, length, strdata, 2);
|
|
|
|
if (!err->Process(strdata.c_str(), int(strdata.size()))) {
|
2017-08-22 21:42:36 +00:00
|
|
|
err = nullptr;
|
2009-02-24 15:40:18 +00:00
|
|
|
}
|
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2016-11-01 18:29:17 +00:00
|
|
|
if (out) {
|
|
|
|
processOutput.DecodeText(std::string(), strdata, 1);
|
|
|
|
if (!strdata.empty()) {
|
|
|
|
out->Process(strdata.c_str(), int(strdata.size()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (err) {
|
|
|
|
processOutput.DecodeText(std::string(), strdata, 2);
|
|
|
|
if (!strdata.empty()) {
|
2017-10-05 12:29:41 +00:00
|
|
|
err->Process(strdata.c_str(), int(strdata.size()));
|
2016-11-01 18:29:17 +00:00
|
|
|
}
|
|
|
|
}
|
2017-08-22 21:42:36 +00:00
|
|
|
cmsysProcess_WaitForExit(cp, nullptr);
|
2009-02-24 15:40:18 +00:00
|
|
|
}
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
cmProcessTools::LineParser::LineParser(char sep, bool ignoreCR)
|
2018-11-21 22:17:54 +00:00
|
|
|
: Separator(sep)
|
2016-05-16 14:34:04 +00:00
|
|
|
, IgnoreCR(ignoreCR)
|
2009-02-24 15:40:18 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmProcessTools::LineParser::SetLog(std::ostream* log, const char* prefix)
|
|
|
|
{
|
|
|
|
this->Log = log;
|
2016-05-16 14:34:04 +00:00
|
|
|
this->Prefix = prefix ? prefix : "";
|
2009-02-24 15:40:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cmProcessTools::LineParser::ProcessChunk(const char* first, int length)
|
|
|
|
{
|
|
|
|
const char* last = first + length;
|
2016-05-16 14:34:04 +00:00
|
|
|
for (const char* c = first; c != last; ++c) {
|
|
|
|
if (*c == this->Separator || *c == '\0') {
|
2010-06-23 13:14:43 +00:00
|
|
|
this->LineEnd = *c;
|
|
|
|
|
2009-02-24 15:40:18 +00:00
|
|
|
// Log this line.
|
2016-05-16 14:34:04 +00:00
|
|
|
if (this->Log && this->Prefix) {
|
2009-02-24 15:40:18 +00:00
|
|
|
*this->Log << this->Prefix << this->Line << "\n";
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2009-02-24 15:40:18 +00:00
|
|
|
|
|
|
|
// Hand this line to the subclass implementation.
|
2016-05-16 14:34:04 +00:00
|
|
|
if (!this->ProcessLine()) {
|
2017-09-15 23:26:49 +00:00
|
|
|
this->Line.clear();
|
2009-02-24 15:40:18 +00:00
|
|
|
return false;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2009-02-24 15:40:18 +00:00
|
|
|
|
2017-09-15 23:26:49 +00:00
|
|
|
this->Line.clear();
|
2016-05-16 14:34:04 +00:00
|
|
|
} else if (*c != '\r' || !this->IgnoreCR) {
|
2009-02-24 15:40:18 +00:00
|
|
|
// Append this character to the line under construction.
|
|
|
|
this->Line.append(1, *c);
|
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2009-02-24 15:40:18 +00:00
|
|
|
return true;
|
|
|
|
}
|