Files
qt-creator/src/plugins/qt4projectmanager/qtversionmanager.h

276 lines
9.2 KiB
C
Raw Normal View History

/**************************************************************************
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator
**
2010-03-05 11:25:49 +01:00
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
2008-12-02 12:01:29 +01:00
**
** Contact: Nokia Corporation (qt-info@nokia.com)
2008-12-02 12:01:29 +01:00
**
** Commercial Usage
**
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
**
** GNU Lesser General Public License Usage
**
** 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.
**
** If you are unsure which license is appropriate for your use, please
2009-08-14 09:30:56 +02:00
** contact the sales department at http://qt.nokia.com/contact.
2008-12-02 12:01:29 +01:00
**
**************************************************************************/
2008-12-02 16:19:05 +01:00
2008-12-02 12:01:29 +01:00
#ifndef QTVERSIONMANAGER_H
#define QTVERSIONMANAGER_H
#include <projectexplorer/environment.h>
#include <projectexplorer/toolchain.h>
2009-10-22 17:43:36 +02:00
#include <QSharedPointer>
2008-12-02 16:19:05 +01:00
#include <QtCore/QHash>
#include <QtCore/QSet>
#include <QtCore/QSharedPointer>
2008-12-02 12:01:29 +01:00
namespace ProjectExplorer {
class ToolChain;
}
namespace Qt4ProjectManager {
2008-12-02 12:01:29 +01:00
namespace Internal {
class QtOptionsPageWidget;
class QtOptionsPage;
}
2008-12-02 12:01:29 +01:00
class QtVersion
{
2008-12-02 12:01:29 +01:00
friend class QtVersionManager;
public:
2009-10-22 14:23:46 +02:00
QtVersion(const QString &name, const QString &qmakeCommand,
bool isAutodetected = false, const QString &autodetectionSource = QString());
QtVersion(const QString &path, bool isAutodetected = false, const QString &autodetectionSource = QString());
2009-10-22 14:23:46 +02:00
QtVersion(const QString &name, const QString &qmakeCommand, int id,
bool isAutodetected = false, const QString &autodetectionSource = QString());
QtVersion();
~QtVersion();
2008-12-02 12:01:29 +01:00
bool isValid() const; //TOOD check that the dir exists and the name is non empty
QString invalidReason() const;
bool isAutodetected() const { return m_isAutodetected; }
QString autodetectionSource() const { return m_autodetectionSource; }
2008-12-02 12:01:29 +01:00
QString displayName() const;
2008-12-02 12:01:29 +01:00
QString sourcePath() const;
QString qmakeCommand() const;
QString uicCommand() const;
QString designerCommand() const;
QString linguistCommand() const;
bool supportsTargetId(const QString &id) const;
QSet<QString> supportedTargetIds() const;
QList<ProjectExplorer::ToolChain::ToolChainType> possibleToolChainTypes() const;
ProjectExplorer::ToolChain *toolChain(ProjectExplorer::ToolChain::ToolChainType type) const;
/// @returns the name of the mkspec, which is generally not enough
/// to pass to qmake.
QString mkspec() const;
/// @returns the full path to the default directory
/// specifally not the directory the symlink/ORIGINAL_QMAKESPEC points to
QString mkspecPath() const;
void setDisplayName(const QString &name);
void setQMakeCommand(const QString &path);
QString qtVersionString() const;
2008-12-02 12:01:29 +01:00
// Returns the PREFIX, BINPREFIX, DOCPREFIX and similar information
QHash<QString,QString> versionInfo() const;
2009-06-04 10:50:44 +02:00
QString mwcDirectory() const;
void setMwcDirectory(const QString &directory);
QString s60SDKDirectory() const;
void setS60SDKDirectory(const QString &directory);
2009-10-29 12:19:56 +01:00
QString gcceDirectory() const;
void setGcceDirectory(const QString &directory);
2008-12-02 12:01:29 +01:00
QString mingwDirectory() const;
void setMingwDirectory(const QString &directory);
QString msvcVersion() const;
void setMsvcVersion(const QString &version);
void addToEnvironment(ProjectExplorer::Environment &env) const;
bool hasDebuggingHelper() const;
QString debuggingHelperLibrary() const;
QStringList debuggingHelperLibraryLocations() const;
// Builds a debugging library
// returns the output of the commands
QString buildDebuggingHelperLibrary();
2008-12-02 12:01:29 +01:00
bool hasExamples() const;
QString examplesPath() const;
bool hasDocumentation() const;
QString documentationPath() const;
bool hasDemos() const;
QString demosPath() const;
// All valid Ids are >= 0
2008-12-02 12:01:29 +01:00
int uniqueId() const;
bool isQt64Bit() const;
2008-12-02 12:01:29 +01:00
enum QmakeBuildConfig
{
NoBuild = 1,
DebugBuild = 2,
BuildAll = 8
};
Q_DECLARE_FLAGS(QmakeBuildConfigs, QmakeBuildConfig)
QmakeBuildConfigs defaultBuildConfig() const;
QString toHtml() const;
2008-12-02 12:01:29 +01:00
private:
QList<QSharedPointer<ProjectExplorer::ToolChain> > toolChains() const;
2008-12-02 12:01:29 +01:00
static int getUniqueId();
// Also used by QtOptionsPageWidget
2008-12-02 12:01:29 +01:00
void updateSourcePath();
void updateVersionInfo() const;
QString findQtBinary(const QStringList &possibleName) const;
2009-11-09 18:59:11 +01:00
void updateToolChainAndMkspec() const;
QString m_displayName;
2008-12-02 12:01:29 +01:00
QString m_sourcePath;
QString m_mingwDirectory;
QString m_msvcVersion;
int m_id;
bool m_isAutodetected;
QString m_autodetectionSource;
bool m_hasDebuggingHelper;
2009-06-04 10:50:44 +02:00
QString m_mwcDirectory;
QString m_s60SDKDirectory;
2009-10-29 12:19:56 +01:00
QString m_gcceDirectory;
2009-11-09 18:59:11 +01:00
mutable bool m_toolChainUpToDate;
mutable QString m_mkspec; // updated lazily
mutable QString m_mkspecFullPath;
mutable QList<QSharedPointer<ProjectExplorer::ToolChain> > m_toolChains;
mutable bool m_versionInfoUpToDate;
mutable QHash<QString,QString> m_versionInfo; // updated lazily
2008-12-02 12:01:29 +01:00
mutable bool m_notInstalled;
mutable bool m_defaultConfigIsDebug;
mutable bool m_defaultConfigIsDebugAndRelease;
mutable bool m_hasExamples;
mutable bool m_hasDemos;
mutable bool m_hasDocumentation;
2008-12-02 12:01:29 +01:00
mutable QString m_qmakeCommand;
mutable QString m_qtVersionString;
mutable QString m_uicCommand;
mutable QString m_designerCommand;
mutable QString m_linguistCommand;
mutable QSet<QString> m_targetIds;
2008-12-02 12:01:29 +01:00
};
struct QMakeAssignment
{
QString variable;
QString op;
QString value;
};
class QtVersionManager : public QObject
2008-12-02 12:01:29 +01:00
{
Q_OBJECT
// for getUniqueId();
friend class QtVersion;
friend class Internal::QtOptionsPage;
2008-12-02 12:01:29 +01:00
public:
static QtVersionManager *instance();
2008-12-02 12:01:29 +01:00
QtVersionManager();
~QtVersionManager();
// This will *always* return at least one (Qt in Path), even if that is
// unconfigured.
2008-12-02 12:01:29 +01:00
QList<QtVersion *> versions() const;
// Note: DO NOT STORE THIS POINTER!
// The QtVersionManager will delete it at random times and you will
// need to get a new pointer by calling this method again!
QtVersion *version(int id) const;
QtVersion *emptyVersion() const;
2008-12-02 12:01:29 +01:00
QtVersion *qtVersionForQMakeBinary(const QString &qmakePath);
2008-12-02 12:01:29 +01:00
// Used by the projectloadwizard
void addVersion(QtVersion *version);
void removeVersion(QtVersion *version);
// Target Support:
bool supportsTargetId(const QString &id) const;
// This returns a list of versions that support the target with the given id.
// @return A list of QtVersions that supports a target. This list may be empty!
QList<QtVersion *> versionsForTargetId(const QString &id) const;
QSet<QString> supportedTargetIds() const;
// Static Methods
static QPair<QtVersion::QmakeBuildConfigs, QStringList> scanMakeFile(const QString &directory,
QtVersion::QmakeBuildConfigs defaultBuildConfig);
static QString findQMakeBinaryFromMakefile(const QString &directory);
bool isValidId(int id) const;
2008-12-02 12:01:29 +01:00
signals:
void qtVersionsChanged(const QList<int> &uniqueIds);
void updateExamples(QString, QString, QString);
private slots:
void updateExamples();
2008-12-02 12:01:29 +01:00
private:
// This function is really simplistic...
static bool equals(QtVersion *a, QtVersion *b);
static QString findQMakeLine(const QString &directory);
static QString trimLine(const QString line);
static QStringList splitLine(const QString &line);
static void parseParts(const QStringList &parts,
QList<QMakeAssignment> *assignments,
QList<QMakeAssignment> *afterAssignments,
QStringList *additionalArguments);
static QtVersion::QmakeBuildConfigs qmakeBuildConfigFromCmdArgs(QList<QMakeAssignment> *assignments,
QtVersion::QmakeBuildConfigs defaultBuildConfig);
// Used by QtOptionsPage
void setNewQtVersions(QList<QtVersion *> newVersions);
// Used by QtVersion
int getUniqueId();
void writeVersionsIntoSettings();
2008-12-02 12:01:29 +01:00
void addNewVersionsFromInstaller();
void updateSystemVersion();
void updateDocumentation();
2008-12-02 12:01:29 +01:00
static int indexOfVersionInList(const QtVersion * const version, const QList<QtVersion *> &list);
void updateUniqueIdToIndexMap();
QtVersion *m_emptyVersion;
QList<QtVersion *> m_versions;
QMap<int, int> m_uniqueIdToIndex;
int m_idcount;
// managed by QtProjectManagerPlugin
static QtVersionManager *m_self;
2008-12-02 12:01:29 +01:00
};
} // namespace Qt4ProjectManager
2008-12-02 12:01:29 +01:00
Q_DECLARE_OPERATORS_FOR_FLAGS(Qt4ProjectManager::QtVersion::QmakeBuildConfigs)
2008-12-02 16:19:05 +01:00
#endif // QTVERSIONMANAGER_H