/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** 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. ** ****************************************************************************/ #pragma once #include "builddirreader.h" #include "servermode.h" #include "cmakeparser.h" #include #include namespace ProjectExplorer { class ProjectNode; } namespace CMakeProjectManager { namespace Internal { class ServerModeReader : public BuildDirReader { Q_OBJECT public: ServerModeReader(); ~ServerModeReader() final; void setParameters(const BuildDirParameters &p) final; bool isCompatible(const BuildDirParameters &p) final; void resetData() final; void parse(bool forceCMakeRun, bool forceConfiguration) final; void stop() final; bool isParsing() const final; QVector takeProjectFilesToWatch() final { return {}; }; QList takeBuildTargets(QString &errorMessage) final; CMakeConfig takeParsedConfiguration(QString &errorMessage) final; std::unique_ptr generateProjectTree( const QList &allFiles, QString &errorMessage) final; ProjectExplorer::RawProjectParts createRawProjectParts(QString &errorMessage) final; private: void createNewServer(); void handleReply(const QVariantMap &data, const QString &inReplyTo); void handleError(const QString &message); void handleProgress(int min, int cur, int max, const QString &inReplyTo); void handleSignal(const QString &signal, const QVariantMap &data); void handleServerConnected(); void sendConfigureRequest(const QVariantMap &extra); void reportError(); int calculateProgress(const int minRange, const int min, const int cur, const int max, const int maxRange); struct Target; struct Project; struct IncludePath { Utils::FilePath path; bool isSystem; }; struct FileGroup { ~FileGroup() { qDeleteAll(includePaths); includePaths.clear(); } Target *target = nullptr; QString compileFlags; ProjectExplorer::Macros macros; QList includePaths; QString language; QList sources; bool isGenerated; }; struct BacktraceItem { int line = -1; QString path; QString name; }; struct CrossReference { ~CrossReference() { qDeleteAll(backtrace); backtrace.clear(); } QList backtrace; enum Type { TARGET, LIBRARIES, DEFINES, INCLUDES, UNKNOWN }; Type type; }; struct Target { ~Target() { qDeleteAll(fileGroups); fileGroups.clear(); qDeleteAll(crossReferences); crossReferences.clear(); } Project *project = nullptr; QString name; QString type; QList artifacts; Utils::FilePath sourceDirectory; Utils::FilePath buildDirectory; QList fileGroups; QList crossReferences; }; struct Project { ~Project() { qDeleteAll(targets); targets.clear(); } QString name; Utils::FilePath sourceDirectory; QList targets; }; void extractCodeModelData(const QVariantMap &data); void extractConfigurationData(const QVariantMap &data); Project *extractProjectData(const QVariantMap &data, QSet &knownTargets); Target *extractTargetData(const QVariantMap &data, Project *p, QSet &knownTargets); FileGroup *extractFileGroupData(const QVariantMap &data, const QDir &srcDir, Target *t); QList extractCrossReferences(const QVariantMap &data); QList extractBacktrace(const QVariantList &data); BacktraceItem *extractBacktraceItem(const QVariantMap &data); void extractCMakeInputsData(const QVariantMap &data); void extractCacheData(const QVariantMap &data); void fixTarget(Target *target) const; void addProjects(const QHash &cmakeListsNodes, const QList &projects, QSet &knownHeaders); void addTargets(const QHash &cmakeListsNodes, const QList &targets, QSet &knownHeaders); void addFileGroups(ProjectExplorer::ProjectNode *targetRoot, const Utils::FilePath &sourceDirectory, const Utils::FilePath &buildDirectory, const QList &fileGroups, QSet &knownHeaders); std::unique_ptr m_cmakeServer; std::unique_ptr> m_future; int m_progressStepMinimum = 0; int m_progressStepMaximum = 1000; Utils::optional m_delayedConfigurationData; QString m_delayedErrorMessage; CMakeConfig m_cmakeConfiguration; QSet m_cmakeFiles; std::vector> m_cmakeInputsFileNodes; QList m_projects; QList m_targets; QList m_fileGroups; CMakeParser m_parser; #if defined(WITH_TESTS) friend class CMakeProjectPlugin; #endif }; } // namespace Internal } // namespace CMakeProjectManager