/**************************************************************************** ** ** 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 "pchcreatorinterface.h" #include "pchgeneratorinterface.h" #include "stringcache.h" #include "idpaths.h" #include #include #include QT_FORWARD_DECLARE_CLASS(QFile) QT_FORWARD_DECLARE_CLASS(QCryptographicHash) QT_FORWARD_DECLARE_CLASS(QProcess) namespace ClangBackEnd { class Environment; class PchCreator final : public PchCreatorInterface { public: PchCreator(Environment &environment, FilePathCache<> &filePathCache); PchCreator(V2::ProjectPartContainers &&projectsParts, Environment &environment, FilePathCache<> &filePathCache, PchGeneratorInterface *pchGenerator, V2::FileContainers &&generatedFiles); void generatePchs(V2::ProjectPartContainers &&projectsParts) override; void setGeneratedFiles(V2::FileContainers &&generatedFiles) override; std::vector takeProjectsIncludes() override; void setGenerator(PchGeneratorInterface *pchGenerator); unittest_public: Utils::PathStringVector generateGlobalHeaderPaths() const; Utils::PathStringVector generateGlobalSourcePaths() const; Utils::PathStringVector generateGlobalHeaderAndSourcePaths() const; Utils::SmallStringVector generateGlobalArguments() const; Utils::SmallStringVector generateGlobalCommandLine() const; Utils::SmallStringVector generateGlobalPchCompilerArguments() const; Utils::SmallStringVector generateGlobalClangCompilerArguments() const; std::vector generateGlobalPchIncludeIds() const; Utils::SmallString generatePchIncludeFileContent(const std::vector &includeIds) const; Utils::SmallString generateGlobalPchHeaderFileContent() const; std::unique_ptr generateGlobalPchHeaderFile(); void generatePch(Utils::SmallStringVector &&commandLineArguments, ProjectPartPch &&projectPartPch); void generateGlobalPch(); Utils::SmallString globalPchContent() const; static QStringList convertToQStringList(const Utils::SmallStringVector &convertToQStringList); Utils::SmallString generateGlobalPchFilePathWithoutExtension() const; Utils::SmallString generateGlobalPchHeaderFilePath() const; Utils::SmallString generateGlobalPchFilePath() const; Utils::SmallStringVector generateProjectPartCommandLine( const V2::ProjectPartContainer &projectPart) const; Utils::SmallString generateProjectPartPchFilePathWithoutExtension( const V2::ProjectPartContainer &projectPart) const; Utils::PathStringVector generateProjectPartHeaders( const V2::ProjectPartContainer &projectPart) const; static Utils::SmallString generateProjectPartHeaderAndSourcesContent( const V2::ProjectPartContainer &projectPart); static Utils::PathStringVector generateProjectPartHeaderAndSourcePaths( const V2::ProjectPartContainer &projectPart); std::vector generateProjectPartPchIncludes( const V2::ProjectPartContainer &projectPart) const; Utils::SmallString generateProjectPathPchHeaderFilePath( const V2::ProjectPartContainer &projectPart) const; Utils::SmallString generateProjectPartPchFilePath( const V2::ProjectPartContainer &projectPart) const; Utils::SmallString generateProjectPartSourceFilePath( const V2::ProjectPartContainer &projectPart) const; Utils::SmallStringVector generateProjectPartPchCompilerArguments( const V2::ProjectPartContainer &projectPart) const; Utils::SmallStringVector generateProjectPartClangCompilerArguments( const V2::ProjectPartContainer &projectPart) const; IdPaths generateProjectPartPch( const V2::ProjectPartContainer &projectPart); static std::unique_ptr generateFileWithContent( const Utils::SmallString &filePath, const Utils::SmallString &content); void generatePchs(); private: static QByteArray projectPartHash(const V2::ProjectPartContainer &projectPart); QByteArray globalProjectHash() const; private: V2::ProjectPartContainers m_projectParts; V2::FileContainers m_generatedFiles; std::vector m_projectPartPchs; std::vector m_projectsIncludeIds; Environment &m_environment; FilePathCache<> &m_filePathCache; PchGeneratorInterface *m_pchGenerator = nullptr; }; } // namespace ClangBackEnd