diff options
author | Christian Kandeler <[email protected]> | 2019-01-25 14:26:34 +0100 |
---|---|---|
committer | Christian Kandeler <[email protected]> | 2019-01-31 16:10:01 +0000 |
commit | 966f4ea6a9d1e46833fc30df878ba6fa8f919988 (patch) | |
tree | 7f37c2adcf4dd6fe002585fb3b3c2815b21c5f26 /src/plugins/autotoolsprojectmanager/configurestep.cpp | |
parent | 536618b012b44b5ced428fc39600931803d5dd44 (diff) |
ProjectExplorer: Rework the build step run interface
Originally, the build manager used to run all build steps in a dedicated
thread. Communication between the step and the manager happened via a
QFutureInterface that was passed into the step's run() function.
Later, new steps were added that operated asynchronously, so the build
manager had to differentiate between the different kinds of steps for
starting and stopping.
These days, almost all build and deploy steps work asynchronously, which
made the QFuture-based interface look increasingly odd.
With this patch, all build steps are expected to work asynchronously, so
the build manager no longer needs to differentiate. Steps are started
and requested to stop via the run() and cancel() functions,
respectively, and emit the finished() signal when they are done. Build
step implementors no longer have to deal with a QFutureInterface. For
steps whose implementation is inherently synchronous, the BuildStep base
class offers a runInThread() function.
Change-Id: If905c68b234c5a669f6e19f43142eaa57d594803
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/autotoolsprojectmanager/configurestep.cpp')
-rw-r--r-- | src/plugins/autotoolsprojectmanager/configurestep.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/autotoolsprojectmanager/configurestep.cpp b/src/plugins/autotoolsprojectmanager/configurestep.cpp index d99f4ae677d..66fcbc03e3b 100644 --- a/src/plugins/autotoolsprojectmanager/configurestep.cpp +++ b/src/plugins/autotoolsprojectmanager/configurestep.cpp @@ -105,7 +105,7 @@ bool ConfigureStep::init() return AbstractProcessStep::init(); } -void ConfigureStep::run(QFutureInterface<bool>& fi) +void ConfigureStep::doRun() { BuildConfiguration *bc = buildConfiguration(); @@ -121,12 +121,12 @@ void ConfigureStep::run(QFutureInterface<bool>& fi) if (!m_runConfigure) { emit addOutput(tr("Configuration unchanged, skipping configure step."), BuildStep::OutputFormat::NormalMessage); - reportRunResult(fi, true); + emit finished(true); return; } m_runConfigure = false; - AbstractProcessStep::run(fi); + AbstractProcessStep::doRun(); } BuildStepConfigWidget *ConfigureStep::createConfigWidget() |