// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "projectinfo.h" #include #include #include #include #include using namespace Utils; namespace CppEditor { ProjectInfo::ConstPtr ProjectInfo::create(const ProjectExplorer::ProjectUpdateInfo &updateInfo, const QVector &projectParts) { return ConstPtr(new ProjectInfo(updateInfo, projectParts)); } bool ProjectInfo::operator ==(const ProjectInfo &other) const { return m_projectName == other.m_projectName && m_projectFilePath == other.m_projectFilePath && m_buildRoot == other.m_buildRoot && m_projectParts == other.m_projectParts && m_headerPaths == other.m_headerPaths && m_sourceFiles == other.m_sourceFiles && m_defines == other.m_defines; } bool ProjectInfo::operator !=(const ProjectInfo &other) const { return !operator ==(other); } bool ProjectInfo::definesChanged(const ProjectInfo &other) const { return m_defines != other.m_defines; } bool ProjectInfo::configurationChanged(const ProjectInfo &other) const { return definesChanged(other) || m_headerPaths != other.m_headerPaths; } bool ProjectInfo::configurationOrFilesChanged(const ProjectInfo &other) const { return configurationChanged(other) || m_sourceFiles != other.m_sourceFiles; } static QSet getSourceFiles(const QVector &projectParts) { QSet sourceFiles; for (const ProjectPart::ConstPtr &part : projectParts) { for (const ProjectFile &file : std::as_const(part->files)) sourceFiles.insert(file.path); } return sourceFiles; } static ProjectExplorer::Macros getDefines(const QVector &projectParts) { ProjectExplorer::Macros defines; for (const ProjectPart::ConstPtr &part : projectParts) { defines.append(part->toolChainMacros); defines.append(part->projectMacros); } return defines; } static ProjectExplorer::HeaderPaths getHeaderPaths( const QVector &projectParts) { QSet uniqueHeaderPaths; for (const ProjectPart::ConstPtr &part : projectParts) { for (const ProjectExplorer::HeaderPath &headerPath : std::as_const(part->headerPaths)) uniqueHeaderPaths.insert(headerPath); } return ProjectExplorer::HeaderPaths(uniqueHeaderPaths.cbegin(), uniqueHeaderPaths.cend()); } ProjectInfo::ProjectInfo(const ProjectExplorer::ProjectUpdateInfo &updateInfo, const QVector &projectParts) : m_projectParts(projectParts), m_projectName(updateInfo.projectName), m_projectFilePath(updateInfo.projectFilePath), m_buildRoot(updateInfo.buildRoot), m_headerPaths(getHeaderPaths(projectParts)), m_sourceFiles(getSourceFiles(projectParts)), m_defines(getDefines(projectParts)) { } } // namespace CppEditor