/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://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 http://www.qt.io/terms-conditions. For further information ** use the contact form at http://www.qt.io/contact-us. ** ** 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 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, The Qt Company gives you certain additional ** rights. These rights are described in The Qt Company LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #ifndef QBSPROJECT_H #define QBSPROJECT_H #include "qbsprojectmanager.h" #include #include #include #include #include #include #include #include namespace Core { class IDocument; } namespace ProjectExplorer { class BuildConfiguration; } namespace QbsProjectManager { namespace Internal { class QbsBaseProjectNode; class QbsProjectNode; class QbsRootProjectNode; class QbsProjectParser; class QbsBuildConfiguration; class QbsProject : public ProjectExplorer::Project { Q_OBJECT public: QbsProject(QbsManager *manager, const QString &filename); ~QbsProject(); QString displayName() const; Core::IDocument *document() const; QbsManager *projectManager() const; ProjectExplorer::ProjectNode *rootProjectNode() const; QStringList files(FilesMode fileMode) const; bool isProjectEditable() const; bool addFilesToProduct(QbsBaseProjectNode *node, const QStringList &filePaths, const qbs::ProductData &productData, const qbs::GroupData &groupData, QStringList *notAdded); bool removeFilesFromProduct(QbsBaseProjectNode *node, const QStringList &filePaths, const qbs::ProductData &productData, const qbs::GroupData &groupData, QStringList *notRemoved); bool renameFileInProduct(QbsBaseProjectNode *node, const QString &oldPath, const QString &newPath, const qbs::ProductData &productData, const qbs::GroupData &groupData); qbs::BuildJob *build(const qbs::BuildOptions &opts, QStringList products, QString &error); qbs::CleanJob *clean(const qbs::CleanOptions &opts); qbs::InstallJob *install(const qbs::InstallOptions &opts); static ProjectExplorer::FileType fileTypeFor(const QSet &tags); QString profileForTarget(const ProjectExplorer::Target *t) const; bool isParsing() const; bool hasParseResult() const; void parseCurrentBuildConfiguration(); void scheduleParsing() { m_parsingScheduled = true; } bool parsingScheduled() const { return m_parsingScheduled; } void cancelParsing(); void updateAfterBuild(); void registerQbsProjectParser(QbsProjectParser *p); qbs::Project qbsProject() const; qbs::ProjectData qbsProjectData() const; bool needsSpecialDeployment() const; void generateErrors(const qbs::ErrorInfo &e); static QString productDisplayName(const qbs::Project &project, const qbs::ProductData &product); static QString uniqueProductName(const qbs::ProductData &product); public slots: void invalidate(); void delayParsing(); void readQbsData(); signals: void projectParsingStarted(); void projectParsingDone(bool); private slots: void handleQbsParsingDone(bool success); void targetWasAdded(ProjectExplorer::Target *t); void changeActiveTarget(ProjectExplorer::Target *t); void buildConfigurationChanged(ProjectExplorer::BuildConfiguration *bc); void startParsing(); private: bool fromMap(const QVariantMap &map); void parse(const QVariantMap &config, const Utils::Environment &env, const QString &dir); void prepareForParsing(); void updateDocuments(const QSet &files); void updateCppCodeModel(); void updateCppCompilerCallData(); void updateQmlJsCodeModel(); void updateApplicationTargets(); void updateDeploymentInfo(); void updateBuildTargetData(); static bool ensureWriteableQbsFile(const QString &file); qbs::GroupData reRetrieveGroupData(const qbs::ProductData &oldProduct, const qbs::GroupData &oldGroup); QbsManager *const m_manager; const QString m_projectName; const QString m_fileName; qbs::Project m_qbsProject; qbs::ProjectData m_projectData; QSet m_qbsDocuments; QbsRootProjectNode *m_rootProjectNode; QbsProjectParser *m_qbsProjectParser; QFutureInterface *m_qbsUpdateFutureInterface; bool m_parsingScheduled; enum CancelStatus { CancelStatusNone, CancelStatusCancelingForReparse, CancelStatusCancelingAltoghether } m_cancelStatus; QFuture m_codeModelFuture; CppTools::ProjectInfo m_codeModelProjectInfo; QbsBuildConfiguration *m_currentBc; QTimer m_parsingDelay; }; } // namespace Internal } // namespace QbsProjectManager #endif // QBSPROJECT_H