You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.8 KiB
C++
61 lines
1.8 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project.
|
|
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#if !defined(Q_MOC_RUN)
|
|
#include <ProjectInfo.h>
|
|
#include <AzCore/Outcome/Outcome.h>
|
|
|
|
#include <QObject>
|
|
#include <QProcessEnvironment>
|
|
#endif
|
|
|
|
QT_FORWARD_DECLARE_CLASS(QProcess)
|
|
|
|
namespace O3DE::ProjectManager
|
|
{
|
|
class ProjectBuilderWorker : public QObject
|
|
{
|
|
// QProcess::waitForFinished uses -1 to indicate that the process should not timeout
|
|
static constexpr int MaxBuildTimeMSecs = -1;
|
|
// Build was cancelled
|
|
inline static const QString BuildCancelled = QObject::tr("Build Cancelled.");
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ProjectBuilderWorker(const ProjectInfo& projectInfo);
|
|
~ProjectBuilderWorker() = default;
|
|
|
|
QString GetLogFilePath() const;
|
|
|
|
public slots:
|
|
void BuildProject();
|
|
|
|
signals:
|
|
void UpdateProgress(int progress);
|
|
void Done(QString result = "");
|
|
|
|
private:
|
|
AZ::Outcome<void, QString> BuildProjectForPlatform();
|
|
void QStringToAZTracePrint(const QString& error);
|
|
|
|
// Command line argument builders
|
|
AZ::Outcome<QStringList, QString> ConstructCmakeGenerateProjectArguments(const QString& thirdPartyPath) const;
|
|
AZ::Outcome<QStringList, QString> ConstructCmakeBuildCommandArguments() const;
|
|
AZ::Outcome<QStringList, QString> ConstructKillProcessCommandArguments(const QString& pidToKill) const;
|
|
|
|
|
|
QProcess* m_configProjectProcess = nullptr;
|
|
QProcess* m_buildProjectProcess = nullptr;
|
|
ProjectInfo m_projectInfo;
|
|
|
|
int m_progressEstimate;
|
|
};
|
|
} // namespace O3DE::ProjectManager
|