2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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 Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#ifndef BUILDCONFIGURATION_H
|
|
|
|
|
#define BUILDCONFIGURATION_H
|
|
|
|
|
|
2009-09-21 15:50:27 +02:00
|
|
|
#include "projectexplorer_export.h"
|
2010-11-01 11:18:27 +01:00
|
|
|
#include "projectconfiguration.h"
|
2010-09-23 10:35:23 +02:00
|
|
|
|
|
|
|
|
#include <utils/environment.h>
|
2013-08-16 17:45:16 +02:00
|
|
|
#include <utils/fileutils.h>
|
2009-09-21 15:50:27 +02:00
|
|
|
|
2013-08-16 17:45:16 +02:00
|
|
|
namespace Utils { class AbstractMacroExpander; }
|
2011-08-18 13:46:52 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
namespace ProjectExplorer {
|
2009-06-12 13:55:08 +02:00
|
|
|
|
2010-11-12 17:23:55 +01:00
|
|
|
class BuildConfiguration;
|
2013-07-22 15:53:57 +02:00
|
|
|
class BuildInfo;
|
2012-11-08 18:02:50 +01:00
|
|
|
class NamedWidget;
|
2010-07-16 14:00:41 +02:00
|
|
|
class BuildStepList;
|
2012-09-03 18:31:44 +02:00
|
|
|
class Kit;
|
2010-02-08 15:50:06 +01:00
|
|
|
class Target;
|
2010-07-07 16:32:23 +02:00
|
|
|
class IOutputParser;
|
2009-09-30 18:36:31 +02:00
|
|
|
|
2010-01-18 12:11:04 +01:00
|
|
|
class PROJECTEXPLORER_EXPORT BuildConfiguration : public ProjectConfiguration
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-09-21 15:50:27 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
public:
|
2009-11-23 12:11:48 +01:00
|
|
|
// ctors are protected
|
|
|
|
|
virtual ~BuildConfiguration();
|
|
|
|
|
|
2013-08-16 17:45:16 +02:00
|
|
|
Utils::FileName buildDirectory() const;
|
|
|
|
|
Utils::FileName rawBuildDirectory() const;
|
2009-11-25 18:50:20 +01:00
|
|
|
|
2012-11-08 18:02:50 +01:00
|
|
|
virtual ProjectExplorer::NamedWidget *createConfigWidget() = 0;
|
|
|
|
|
virtual QList<NamedWidget *> createSubConfigWidgets();
|
2012-04-24 15:49:09 +02:00
|
|
|
|
2012-05-03 16:10:00 +02:00
|
|
|
// Maybe the BuildConfiguration is not the best place for the environment
|
2012-10-17 14:15:21 +02:00
|
|
|
Utils::Environment baseEnvironment() const;
|
2010-03-11 17:47:09 +01:00
|
|
|
QString baseEnvironmentText() const;
|
2010-09-23 10:35:23 +02:00
|
|
|
Utils::Environment environment() const;
|
|
|
|
|
void setUserEnvironmentChanges(const QList<Utils::EnvironmentItem> &diff);
|
|
|
|
|
QList<Utils::EnvironmentItem> userEnvironmentChanges() const;
|
2010-03-11 17:47:09 +01:00
|
|
|
bool useSystemEnvironment() const;
|
|
|
|
|
void setUseSystemEnvironment(bool b);
|
|
|
|
|
|
2012-03-15 17:17:40 +01:00
|
|
|
QList<Core::Id> knownStepLists() const;
|
|
|
|
|
BuildStepList *stepList(Core::Id id) const;
|
2010-07-16 14:00:41 +02:00
|
|
|
|
2013-03-11 12:02:08 +01:00
|
|
|
virtual bool fromMap(const QVariantMap &map);
|
2010-01-18 12:11:04 +01:00
|
|
|
virtual QVariantMap toMap() const;
|
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
Target *target() const;
|
|
|
|
|
|
2011-01-19 15:46:01 +01:00
|
|
|
virtual bool isEnabled() const;
|
2011-05-26 15:56:36 +02:00
|
|
|
virtual QString disabledReason() const;
|
2011-01-19 15:46:01 +01:00
|
|
|
|
2011-08-18 13:46:52 +02:00
|
|
|
Utils::AbstractMacroExpander *macroExpander();
|
2010-11-12 17:23:55 +01:00
|
|
|
|
2011-03-03 16:12:00 +01:00
|
|
|
enum BuildType {
|
|
|
|
|
Unknown,
|
|
|
|
|
Debug,
|
|
|
|
|
Release
|
|
|
|
|
};
|
|
|
|
|
virtual BuildType buildType() const = 0;
|
|
|
|
|
|
2009-11-25 18:50:20 +01:00
|
|
|
signals:
|
|
|
|
|
void environmentChanged();
|
|
|
|
|
void buildDirectoryChanged();
|
2011-01-19 15:46:01 +01:00
|
|
|
void enabledChanged();
|
2009-11-25 18:50:20 +01:00
|
|
|
|
2009-11-23 12:11:48 +01:00
|
|
|
protected:
|
2012-03-15 17:17:40 +01:00
|
|
|
BuildConfiguration(Target *target, const Core::Id id);
|
2010-02-08 15:50:06 +01:00
|
|
|
BuildConfiguration(Target *target, BuildConfiguration *source);
|
2010-07-16 14:00:41 +02:00
|
|
|
|
2013-08-16 17:45:16 +02:00
|
|
|
virtual void setBuildDirectory(const Utils::FileName &dir);
|
2010-02-08 15:50:06 +01:00
|
|
|
void cloneSteps(BuildConfiguration *source);
|
2010-01-18 12:11:04 +01:00
|
|
|
|
2011-03-24 11:58:40 +01:00
|
|
|
private slots:
|
2012-10-17 15:43:18 +02:00
|
|
|
void handleKitUpdate();
|
2013-08-16 17:45:16 +02:00
|
|
|
void emitBuildDirectoryChanged();
|
2011-03-24 11:58:40 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
private:
|
2012-10-17 15:55:20 +02:00
|
|
|
void emitEnvironmentChanged();
|
|
|
|
|
|
2010-03-11 17:47:09 +01:00
|
|
|
bool m_clearSystemEnvironment;
|
2010-09-23 10:35:23 +02:00
|
|
|
QList<Utils::EnvironmentItem> m_userEnvironmentChanges;
|
2010-07-16 14:00:41 +02:00
|
|
|
QList<BuildStepList *> m_stepLists;
|
2011-08-18 13:46:52 +02:00
|
|
|
Utils::AbstractMacroExpander *m_macroExpander;
|
2013-08-16 17:45:16 +02:00
|
|
|
Utils::FileName m_buildDirectory;
|
|
|
|
|
Utils::FileName m_lastEmmitedBuildDirectory;
|
2013-04-19 13:19:46 +02:00
|
|
|
mutable Utils::Environment m_cachedEnvironment;
|
2008-12-02 12:01:29 +01:00
|
|
|
};
|
2009-06-12 13:55:08 +02:00
|
|
|
|
2010-01-18 12:11:04 +01:00
|
|
|
class PROJECTEXPLORER_EXPORT IBuildConfigurationFactory :
|
|
|
|
|
public QObject
|
2009-09-24 16:02:02 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2010-01-18 12:11:04 +01:00
|
|
|
explicit IBuildConfigurationFactory(QObject *parent = 0);
|
2009-09-24 16:02:02 +02:00
|
|
|
virtual ~IBuildConfigurationFactory();
|
|
|
|
|
|
2013-07-24 12:42:24 +02:00
|
|
|
// The priority is negative if this factory can not create anything for the target.
|
|
|
|
|
// It is 0 for the "default" factory that wants to handle the target.
|
|
|
|
|
// Add 100 for each specialization.
|
|
|
|
|
virtual int priority(const Target *parent) const = 0;
|
2013-07-22 15:53:57 +02:00
|
|
|
// List of build information that can be used to create a new build configuration via
|
|
|
|
|
// "Add Build Configuration" button.
|
|
|
|
|
virtual QList<BuildInfo *> availableBuilds(const Target *parent) const = 0;
|
2013-08-13 10:52:57 +02:00
|
|
|
|
2013-07-24 12:42:24 +02:00
|
|
|
virtual int priority(const Kit *k, const QString &projectPath) const = 0;
|
2013-08-13 10:52:57 +02:00
|
|
|
// List of build information that can be used to initially set up a new build configuration.
|
|
|
|
|
virtual QList<BuildInfo *> availableSetups(const Kit *k, const QString &projectPath) const = 0;
|
|
|
|
|
|
2013-07-22 15:53:57 +02:00
|
|
|
virtual BuildConfiguration *create(Target *parent, const BuildInfo *info) const = 0;
|
2009-09-24 16:02:02 +02:00
|
|
|
|
2010-01-18 12:11:04 +01:00
|
|
|
// used to recreate the runConfigurations when restoring settings
|
2012-04-24 15:49:09 +02:00
|
|
|
virtual bool canRestore(const Target *parent, const QVariantMap &map) const = 0;
|
2010-02-08 15:50:06 +01:00
|
|
|
virtual BuildConfiguration *restore(Target *parent, const QVariantMap &map) = 0;
|
2012-04-24 15:49:09 +02:00
|
|
|
virtual bool canClone(const Target *parent, BuildConfiguration *product) const = 0;
|
2010-02-08 15:50:06 +01:00
|
|
|
virtual BuildConfiguration *clone(Target *parent, BuildConfiguration *product) = 0;
|
2009-09-30 16:54:33 +02:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
static IBuildConfigurationFactory *find(Target *parent, const QVariantMap &map);
|
2013-07-22 15:53:57 +02:00
|
|
|
static IBuildConfigurationFactory *find(Kit *k, const QString &projectPath);
|
2012-04-24 15:49:09 +02:00
|
|
|
static IBuildConfigurationFactory *find(Target *parent);
|
2012-09-20 14:42:57 +02:00
|
|
|
static IBuildConfigurationFactory *find(Target *parent, BuildConfiguration *bc);
|
2012-04-24 15:49:09 +02:00
|
|
|
|
2009-09-28 17:30:11 +02:00
|
|
|
signals:
|
2010-01-07 18:17:24 +01:00
|
|
|
void availableCreationIdsChanged();
|
2009-09-24 16:02:02 +02:00
|
|
|
};
|
|
|
|
|
|
2008-12-02 16:19:05 +01:00
|
|
|
} // namespace ProjectExplorer
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-12-16 11:25:28 +01:00
|
|
|
Q_DECLARE_METATYPE(ProjectExplorer::BuildConfiguration *)
|
2009-11-24 15:36:31 +01:00
|
|
|
|
2008-12-02 16:19:05 +01:00
|
|
|
#endif // BUILDCONFIGURATION_H
|