forked from qt-creator/qt-creator
AbstractProcessStep: Make checkWorkingDirectory a part of setupProcess
Task-number: QTCREATORBUG-29168 Change-Id: I5cfedc83a3817c64c67c9797c831084c26f1cab9 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -177,9 +177,6 @@ void AbstractProcessStep::setupOutputFormatter(OutputFormatter *formatter)
|
|||||||
|
|
||||||
void AbstractProcessStep::doRun()
|
void AbstractProcessStep::doRun()
|
||||||
{
|
{
|
||||||
if (!checkWorkingDirectory())
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (!d->m_param.effectiveCommand().isExecutableFile()) {
|
if (!d->m_param.effectiveCommand().isExecutableFile()) {
|
||||||
emit addOutput(Tr::tr("The program \"%1\" does not exist or is not executable.")
|
emit addOutput(Tr::tr("The program \"%1\" does not exist or is not executable.")
|
||||||
.arg(d->m_displayedParams->effectiveCommand().toUserOutput()),
|
.arg(d->m_displayedParams->effectiveCommand().toUserOutput()),
|
||||||
@@ -191,7 +188,11 @@ void AbstractProcessStep::doRun()
|
|||||||
setupStreams();
|
setupStreams();
|
||||||
|
|
||||||
d->m_process.reset(new Process);
|
d->m_process.reset(new Process);
|
||||||
setupProcess(*d->m_process.get());
|
if (!setupProcess(*d->m_process.get())) {
|
||||||
|
d->m_process.reset();
|
||||||
|
finish(ProcessResult::StartFailed);
|
||||||
|
return;
|
||||||
|
}
|
||||||
connect(d->m_process.get(), &Process::done, this, [this] {
|
connect(d->m_process.get(), &Process::done, this, [this] {
|
||||||
handleProcessDone(*d->m_process);
|
handleProcessDone(*d->m_process);
|
||||||
const ProcessResult result = d->outputFormatter->hasFatalErrors()
|
const ProcessResult result = d->outputFormatter->hasFatalErrors()
|
||||||
@@ -202,20 +203,6 @@ void AbstractProcessStep::doRun()
|
|||||||
d->m_process->start();
|
d->m_process->start();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool AbstractProcessStep::checkWorkingDirectory()
|
|
||||||
{
|
|
||||||
const FilePath wd = d->m_param.effectiveWorkingDirectory();
|
|
||||||
if (!wd.exists()) {
|
|
||||||
if (!wd.createDir()) {
|
|
||||||
emit addOutput(Tr::tr("Could not create directory \"%1\"").arg(wd.toUserOutput()),
|
|
||||||
OutputFormat::ErrorMessage);
|
|
||||||
finish(ProcessResult::StartFailed);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
void AbstractProcessStep::setupStreams()
|
void AbstractProcessStep::setupStreams()
|
||||||
{
|
{
|
||||||
d->stdoutStream = std::make_unique<QTextDecoder>(buildEnvironment().hasKey("VSLANG")
|
d->stdoutStream = std::make_unique<QTextDecoder>(buildEnvironment().hasKey("VSLANG")
|
||||||
@@ -223,15 +210,21 @@ void AbstractProcessStep::setupStreams()
|
|||||||
d->stderrStream = std::make_unique<QTextDecoder>(QTextCodec::codecForLocale());
|
d->stderrStream = std::make_unique<QTextDecoder>(QTextCodec::codecForLocale());
|
||||||
}
|
}
|
||||||
|
|
||||||
void AbstractProcessStep::setupProcess(Process &process)
|
bool AbstractProcessStep::setupProcess(Process &process)
|
||||||
{
|
{
|
||||||
|
const FilePath workingDir = d->m_param.effectiveWorkingDirectory();
|
||||||
|
if (!workingDir.exists() && !workingDir.createDir()) {
|
||||||
|
emit addOutput(Tr::tr("Could not create directory \"%1\"").arg(workingDir.toUserOutput()),
|
||||||
|
OutputFormat::ErrorMessage);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
process.setUseCtrlCStub(HostOsInfo::isWindowsHost());
|
process.setUseCtrlCStub(HostOsInfo::isWindowsHost());
|
||||||
process.setWorkingDirectory(d->m_param.effectiveWorkingDirectory());
|
process.setWorkingDirectory(workingDir);
|
||||||
// Enforce PWD in the environment because some build tools use that.
|
// Enforce PWD in the environment because some build tools use that.
|
||||||
// PWD can be different from getcwd in case of symbolic links (getcwd resolves symlinks).
|
// PWD can be different from getcwd in case of symbolic links (getcwd resolves symlinks).
|
||||||
// For example Clang uses PWD for paths in debug info, see QTCREATORBUG-23788
|
// For example Clang uses PWD for paths in debug info, see QTCREATORBUG-23788
|
||||||
Environment envWithPwd = d->m_param.environment();
|
Environment envWithPwd = d->m_param.environment();
|
||||||
envWithPwd.set("PWD", process.workingDirectory().path());
|
envWithPwd.set("PWD", workingDir.path());
|
||||||
process.setEnvironment(envWithPwd);
|
process.setEnvironment(envWithPwd);
|
||||||
process.setCommand({d->m_param.effectiveCommand(), d->m_param.effectiveArguments(),
|
process.setCommand({d->m_param.effectiveCommand(), d->m_param.effectiveArguments(),
|
||||||
CommandLine::Raw});
|
CommandLine::Raw});
|
||||||
@@ -252,6 +245,7 @@ void AbstractProcessStep::setupProcess(Process &process)
|
|||||||
.arg(params->effectiveCommand().toUserOutput(), params->prettyArguments()),
|
.arg(params->effectiveCommand().toUserOutput(), params->prettyArguments()),
|
||||||
OutputFormat::NormalMessage);
|
OutputFormat::NormalMessage);
|
||||||
});
|
});
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void AbstractProcessStep::handleProcessDone(const Process &process)
|
void AbstractProcessStep::handleProcessDone(const Process &process)
|
||||||
|
@@ -48,8 +48,7 @@ protected:
|
|||||||
void setLowPriority();
|
void setLowPriority();
|
||||||
void setDisplayedParameters(ProcessParameters *params);
|
void setDisplayedParameters(ProcessParameters *params);
|
||||||
|
|
||||||
bool checkWorkingDirectory();
|
bool setupProcess(Utils::Process &process);
|
||||||
void setupProcess(Utils::Process &process);
|
|
||||||
void handleProcessDone(const Utils::Process &process);
|
void handleProcessDone(const Utils::Process &process);
|
||||||
void runTaskTree(const Tasking::Group &recipe);
|
void runTaskTree(const Tasking::Group &recipe);
|
||||||
|
|
||||||
|
@@ -278,16 +278,13 @@ void QMakeStep::doRun()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!checkWorkingDirectory())
|
|
||||||
return;
|
|
||||||
|
|
||||||
using namespace Tasking;
|
using namespace Tasking;
|
||||||
|
|
||||||
const auto setupQMake = [this](Process &process) {
|
const auto setupQMake = [this](Process &process) {
|
||||||
m_outputFormatter->setLineParsers({new QMakeParser});
|
m_outputFormatter->setLineParsers({new QMakeParser});
|
||||||
ProcessParameters *pp = processParameters();
|
ProcessParameters *pp = processParameters();
|
||||||
pp->setCommandLine(m_qmakeCommand);
|
pp->setCommandLine(m_qmakeCommand);
|
||||||
setupProcess(process);
|
return setupProcess(process) ? SetupResult::Continue : SetupResult::StopWithError;
|
||||||
};
|
};
|
||||||
|
|
||||||
const auto setupMakeQMake = [this](Process &process) {
|
const auto setupMakeQMake = [this](Process &process) {
|
||||||
@@ -296,7 +293,7 @@ void QMakeStep::doRun()
|
|||||||
m_outputFormatter->setLineParsers({parser});
|
m_outputFormatter->setLineParsers({parser});
|
||||||
ProcessParameters *pp = processParameters();
|
ProcessParameters *pp = processParameters();
|
||||||
pp->setCommandLine(m_makeCommand);
|
pp->setCommandLine(m_makeCommand);
|
||||||
setupProcess(process);
|
return setupProcess(process) ? SetupResult::Continue : SetupResult::StopWithError;
|
||||||
};
|
};
|
||||||
|
|
||||||
const auto onProcessDone = [this](const Process &process) { handleProcessDone(process); };
|
const auto onProcessDone = [this](const Process &process) { handleProcessDone(process); };
|
||||||
|
Reference in New Issue
Block a user