2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2011-01-11 16:28:15 +01:00
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** No Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** This file contains pre-release code and may not be distributed.
|
|
|
|
|
** You may use this file in accordance with the terms and conditions
|
|
|
|
|
** contained in the Technology Preview License Agreement accompanying
|
|
|
|
|
** this package.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01: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
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
** If you have questions regarding the use of this file, please contact
|
|
|
|
|
** Nokia at qt-info@nokia.com.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01: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
|
|
|
|
2010-11-12 17:23:55 +01:00
|
|
|
#include <utils/stringutils.h>
|
2010-09-23 10:35:23 +02:00
|
|
|
#include <utils/environment.h>
|
2009-09-21 15:50:27 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <QtCore/QString>
|
2009-09-21 15:50:27 +02:00
|
|
|
#include <QtCore/QStringList>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-11-01 11:18:27 +01:00
|
|
|
|
2009-10-27 14:16:28 +01: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;
|
2010-07-16 14:00:41 +02:00
|
|
|
class BuildStepList;
|
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-11-12 17:23:55 +01:00
|
|
|
class BuildConfigMacroExpander : public Utils::AbstractQtcMacroExpander {
|
|
|
|
|
public:
|
|
|
|
|
BuildConfigMacroExpander(BuildConfiguration *bc) : m_bc(bc) {}
|
|
|
|
|
virtual bool resolveMacro(const QString &name, QString *ret);
|
|
|
|
|
private:
|
|
|
|
|
BuildConfiguration *m_bc;
|
|
|
|
|
};
|
|
|
|
|
|
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();
|
|
|
|
|
|
2009-11-25 18:50:20 +01:00
|
|
|
virtual QString buildDirectory() const = 0;
|
|
|
|
|
|
2010-03-11 17:47:09 +01:00
|
|
|
// TODO: Maybe the BuildConfiguration is not the best place for the environment
|
2010-09-23 10:35:23 +02:00
|
|
|
virtual 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);
|
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
QStringList knownStepLists() const;
|
|
|
|
|
BuildStepList *stepList(const QString &id) const;
|
|
|
|
|
|
2010-01-18 12:11:04 +01:00
|
|
|
virtual QVariantMap toMap() const;
|
|
|
|
|
|
2010-07-07 16:32:23 +02:00
|
|
|
// Creates a suitable outputparser for custom build steps
|
|
|
|
|
// (based on the toolchain)
|
|
|
|
|
// TODO this is not great API
|
|
|
|
|
// it's mainly so that custom build systems are better integrated
|
|
|
|
|
// with the generic project manager
|
|
|
|
|
virtual IOutputParser *createOutputParser() const = 0;
|
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
Target *target() const;
|
|
|
|
|
|
2011-01-19 15:46:01 +01:00
|
|
|
virtual bool isEnabled() const;
|
|
|
|
|
|
2010-11-12 17:23:55 +01:00
|
|
|
Utils::AbstractMacroExpander *macroExpander() { return &m_macroExpander; }
|
|
|
|
|
|
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:
|
2010-02-08 15:50:06 +01:00
|
|
|
BuildConfiguration(Target *target, const QString &id);
|
|
|
|
|
BuildConfiguration(Target *target, BuildConfiguration *source);
|
2010-07-16 14:00:41 +02:00
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
void cloneSteps(BuildConfiguration *source);
|
2010-01-18 12:11:04 +01:00
|
|
|
|
|
|
|
|
virtual bool fromMap(const QVariantMap &map);
|
2009-11-23 12:11:48 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
private:
|
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;
|
2010-11-12 17:23:55 +01:00
|
|
|
BuildConfigMacroExpander m_macroExpander;
|
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();
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
// used to show the list of possible additons to a target, returns a list of types
|
|
|
|
|
virtual QStringList availableCreationIds(Target *parent) const = 0;
|
2009-09-24 16:02:02 +02:00
|
|
|
// used to translate the types to names to display to the user
|
2010-01-07 18:17:24 +01:00
|
|
|
virtual QString displayNameForId(const QString &id) const = 0;
|
2009-09-24 16:02:02 +02:00
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
virtual bool canCreate(Target *parent, const QString &id) const = 0;
|
|
|
|
|
virtual BuildConfiguration *create(Target *parent, const QString &id) = 0;
|
2010-01-18 12:11:04 +01:00
|
|
|
// used to recreate the runConfigurations when restoring settings
|
2010-02-08 15:50:06 +01:00
|
|
|
virtual bool canRestore(Target *parent, const QVariantMap &map) const = 0;
|
|
|
|
|
virtual BuildConfiguration *restore(Target *parent, const QVariantMap &map) = 0;
|
|
|
|
|
virtual bool canClone(Target *parent, BuildConfiguration *product) const = 0;
|
|
|
|
|
virtual BuildConfiguration *clone(Target *parent, BuildConfiguration *product) = 0;
|
2009-09-30 16:54:33 +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
|