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/winrt/winrtpackagedeploymentstep.h | |
| 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/winrt/winrtpackagedeploymentstep.h')
| -rw-r--r-- | src/plugins/winrt/winrtpackagedeploymentstep.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/winrt/winrtpackagedeploymentstep.h b/src/plugins/winrt/winrtpackagedeploymentstep.h index 71459beafb1..f8bd0b59f71 100644 --- a/src/plugins/winrt/winrtpackagedeploymentstep.h +++ b/src/plugins/winrt/winrtpackagedeploymentstep.h @@ -38,18 +38,18 @@ class WinRtPackageDeploymentStep : public ProjectExplorer::AbstractProcessStep public: explicit WinRtPackageDeploymentStep(ProjectExplorer::BuildStepList *bsl); - bool init() override; - void run(QFutureInterface<bool> &fi) override; - bool processSucceeded(int exitCode, QProcess::ExitStatus status) override; - void stdOutput(const QString &line) override; - ProjectExplorer::BuildStepConfigWidget *createConfigWidget() override; - QString defaultWinDeployQtArguments() const; void raiseError(const QString &errorMessage); void raiseWarning(const QString &warningMessage); private: + bool init() override; + void doRun() override; + bool processSucceeded(int exitCode, QProcess::ExitStatus status) override; + void stdOutput(const QString &line) override; + ProjectExplorer::BuildStepConfigWidget *createConfigWidget() override; + bool parseIconsAndExecutableFromManifest(QString manifestFileName, QStringList *items, QString *executable); ProjectExplorer::BaseStringAspect *m_argsAspect = nullptr; |
