/**************************************************************************** ** ** Copyright (C) 2016 Openismus GmbH. ** Author: Peter Penz (ppenz@openismus.com) ** Author: Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: https://www.qt.io/licensing/ ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ****************************************************************************/ #include "configurestep.h" #include "autotoolsbuildconfiguration.h" #include "autotoolsprojectconstants.h" #include #include #include #include #include #include #include #include using namespace ProjectExplorer; using namespace Utils; namespace AutotoolsProjectManager { namespace Internal { // Helper Function static QString projectDirRelativeToBuildDir(BuildConfiguration *bc) { const QDir buildDir(bc->buildDirectory().toString()); QString projDirToBuildDir = buildDir.relativeFilePath( bc->project()->projectDirectory().toString()); if (projDirToBuildDir.isEmpty()) return QString("./"); if (!projDirToBuildDir.endsWith('/')) projDirToBuildDir.append('/'); return projDirToBuildDir; } // ConfigureStep ///** // * @brief Implementation of the ProjectExplorer::AbstractProcessStep interface. // * // * A configure step can be configured by selecting the "Projects" button of Qt // * Creator (in the left hand side menu) and under "Build Settings". // * // * It is possible for the user to specify custom arguments. The corresponding // * configuration widget is created by MakeStep::createConfigWidget and is // * represented by an instance of the class MakeStepConfigWidget. // */ class ConfigureStep final : public AbstractProcessStep { Q_DECLARE_TR_FUNCTIONS(AutotoolsProjectManager::Internal::ConfigureStep) public: ConfigureStep(BuildStepList *bsl, Id id); void setAdditionalArguments(const QString &list); private: void doRun() final; bool m_runConfigure = false; }; ConfigureStep::ConfigureStep(BuildStepList *bsl, Id id) : AbstractProcessStep(bsl, id) { auto arguments = addAspect(); arguments->setDisplayStyle(StringAspect::LineEditDisplay); arguments->setSettingsKey("AutotoolsProjectManager.ConfigureStep.AdditionalArguments"); arguments->setLabelText(tr("Arguments:")); arguments->setHistoryCompleter("AutotoolsPM.History.ConfigureArgs"); connect(arguments, &BaseAspect::changed, this, [this] { m_runConfigure = true; }); setWorkingDirectoryProvider([this] { return project()->projectDirectory(); }); setCommandLineProvider([this, arguments] { BuildConfiguration *bc = buildConfiguration(); return CommandLine({FilePath::fromString(projectDirRelativeToBuildDir(bc) + "configure"), arguments->value(), CommandLine::Raw}); }); setSummaryUpdater([this] { ProcessParameters param; setupProcessParameters(¶m); return param.summaryInWorkdir(displayName()); }); } void ConfigureStep::doRun() { //Check whether we need to run configure const QString projectDir(project()->projectDirectory().toString()); const QFileInfo configureInfo(projectDir + "/configure"); const QFileInfo configStatusInfo(buildDirectory().toString() + "/config.status"); if (!configStatusInfo.exists() || configStatusInfo.lastModified() < configureInfo.lastModified()) { m_runConfigure = true; } if (!m_runConfigure) { emit addOutput(tr("Configuration unchanged, skipping configure step."), OutputFormat::NormalMessage); emit finished(true); return; } m_runConfigure = false; AbstractProcessStep::doRun(); } // ConfigureStepFactory /** * @brief Implementation of the ProjectExplorer::IBuildStepFactory interface. * * The factory is used to create instances of ConfigureStep. */ ConfigureStepFactory::ConfigureStepFactory() { registerStep(Constants::CONFIGURE_STEP_ID); setDisplayName(ConfigureStep::tr("Configure", "Display name for AutotoolsProjectManager::ConfigureStep id.")); setSupportedProjectType(Constants::AUTOTOOLS_PROJECT_ID); setSupportedStepList(ProjectExplorer::Constants::BUILDSTEPS_BUILD); } } // namespace Internal } // namespace AutotoolsProjectManager