2017-01-30 11:24:46 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "projectupdater.h"
|
|
|
|
|
|
|
|
|
|
#include "pchmanagerclient.h"
|
|
|
|
|
|
|
|
|
|
#include <pchmanagerserverinterface.h>
|
|
|
|
|
#include <removepchprojectpartsmessage.h>
|
|
|
|
|
#include <updatepchprojectpartsmessage.h>
|
|
|
|
|
|
|
|
|
|
#include <cpptools/clangcompileroptionsbuilder.h>
|
|
|
|
|
#include <cpptools/projectpart.h>
|
|
|
|
|
|
2017-02-01 13:43:28 +01:00
|
|
|
#include <algorithm>
|
|
|
|
|
#include <functional>
|
|
|
|
|
|
2017-01-30 11:24:46 +01:00
|
|
|
namespace ClangPchManager {
|
|
|
|
|
|
2017-02-01 13:43:28 +01:00
|
|
|
class HeaderAndSources
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
void reserve(std::size_t size)
|
|
|
|
|
{
|
|
|
|
|
headers.reserve(size);
|
|
|
|
|
sources.reserve(size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Utils::PathStringVector headers;
|
|
|
|
|
Utils::PathStringVector sources;
|
|
|
|
|
};
|
|
|
|
|
|
2017-01-30 11:24:46 +01:00
|
|
|
ProjectUpdater::ProjectUpdater(ClangBackEnd::PchManagerServerInterface &server,
|
|
|
|
|
PchManagerClient &client)
|
|
|
|
|
: m_server(server),
|
|
|
|
|
m_client(client)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-01 13:43:28 +01:00
|
|
|
void ProjectUpdater::updateProjectParts(const std::vector<CppTools::ProjectPart *> &projectParts,
|
|
|
|
|
ClangBackEnd::V2::FileContainers &&generatedFiles)
|
2017-01-30 11:24:46 +01:00
|
|
|
{
|
2017-02-01 13:43:28 +01:00
|
|
|
m_excludedPaths = createExcludedPaths(generatedFiles);
|
|
|
|
|
|
|
|
|
|
ClangBackEnd::UpdatePchProjectPartsMessage message{toProjectPartContainers(projectParts),
|
|
|
|
|
std::move(generatedFiles)};
|
2017-01-30 11:24:46 +01:00
|
|
|
|
|
|
|
|
m_server.updatePchProjectParts(std::move(message));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProjectUpdater::removeProjectParts(const QStringList &projectPartIds)
|
|
|
|
|
{
|
|
|
|
|
ClangBackEnd::RemovePchProjectPartsMessage message{Utils::SmallStringVector(projectPartIds)};
|
|
|
|
|
|
|
|
|
|
m_server.removePchProjectParts(std::move(message));
|
|
|
|
|
|
|
|
|
|
for (const QString &projectPartiId : projectPartIds)
|
|
|
|
|
m_client.precompiledHeaderRemoved(projectPartiId);
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-01 13:43:28 +01:00
|
|
|
void ProjectUpdater::setExcludedPaths(Utils::PathStringVector &&excludedPaths)
|
2017-01-30 11:24:46 +01:00
|
|
|
{
|
2017-02-01 13:43:28 +01:00
|
|
|
m_excludedPaths = excludedPaths;
|
|
|
|
|
}
|
2017-01-30 11:24:46 +01:00
|
|
|
|
2017-02-01 13:43:28 +01:00
|
|
|
void ProjectUpdater::addToHeaderAndSources(HeaderAndSources &headerAndSources,
|
|
|
|
|
const CppTools::ProjectFile &projectFile) const
|
2017-01-30 11:24:46 +01:00
|
|
|
{
|
2017-02-01 13:43:28 +01:00
|
|
|
Utils::PathString path = projectFile.path;
|
|
|
|
|
bool exclude = std::binary_search(m_excludedPaths.begin(), m_excludedPaths.end(), path);
|
2017-01-30 11:24:46 +01:00
|
|
|
|
2017-02-01 13:43:28 +01:00
|
|
|
if (!exclude) {
|
2017-01-30 11:24:46 +01:00
|
|
|
if (projectFile.isSource())
|
2017-02-01 13:43:28 +01:00
|
|
|
headerAndSources.sources.push_back(path);
|
2017-01-30 11:24:46 +01:00
|
|
|
else if (projectFile.isHeader())
|
2017-02-01 13:43:28 +01:00
|
|
|
headerAndSources.headers.push_back(path);
|
2017-01-30 11:24:46 +01:00
|
|
|
}
|
2017-02-01 13:43:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HeaderAndSources ProjectUpdater::headerAndSourcesFromProjectPart(
|
|
|
|
|
CppTools::ProjectPart *projectPart) const
|
|
|
|
|
{
|
|
|
|
|
HeaderAndSources headerAndSources;
|
|
|
|
|
headerAndSources.reserve(std::size_t(projectPart->files.size()) * 3 / 2);
|
|
|
|
|
|
|
|
|
|
for (const CppTools::ProjectFile &projectFile : projectPart->files)
|
|
|
|
|
addToHeaderAndSources(headerAndSources, projectFile);
|
2017-01-30 11:24:46 +01:00
|
|
|
|
|
|
|
|
return headerAndSources;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-01 13:43:28 +01:00
|
|
|
ClangBackEnd::V2::ProjectPartContainer ProjectUpdater::toProjectPartContainer(
|
|
|
|
|
CppTools::ProjectPart *projectPart) const
|
2017-01-30 11:24:46 +01:00
|
|
|
{
|
|
|
|
|
using CppTools::ClangCompilerOptionsBuilder;
|
|
|
|
|
|
|
|
|
|
QStringList arguments = ClangCompilerOptionsBuilder::build(
|
|
|
|
|
projectPart,
|
|
|
|
|
CppTools::ProjectFile::CXXHeader,
|
|
|
|
|
ClangCompilerOptionsBuilder::PchUsage::None,
|
|
|
|
|
CLANG_VERSION,
|
|
|
|
|
CLANG_RESOURCE_DIR);
|
|
|
|
|
|
|
|
|
|
HeaderAndSources headerAndSources = headerAndSourcesFromProjectPart(projectPart);
|
|
|
|
|
|
|
|
|
|
return ClangBackEnd::V2::ProjectPartContainer(projectPart->displayName,
|
|
|
|
|
Utils::SmallStringVector(arguments),
|
|
|
|
|
std::move(headerAndSources.headers),
|
|
|
|
|
std::move(headerAndSources.sources));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::vector<ClangBackEnd::V2::ProjectPartContainer> ProjectUpdater::toProjectPartContainers(
|
2017-02-01 13:43:28 +01:00
|
|
|
std::vector<CppTools::ProjectPart *> projectParts) const
|
2017-01-30 11:24:46 +01:00
|
|
|
{
|
2017-02-01 13:43:28 +01:00
|
|
|
using namespace std::placeholders;
|
|
|
|
|
|
2017-01-30 11:24:46 +01:00
|
|
|
std::vector<ClangBackEnd::V2::ProjectPartContainer> projectPartContainers;
|
|
|
|
|
projectPartContainers.reserve(projectParts.size());
|
|
|
|
|
|
|
|
|
|
std::transform(projectParts.begin(),
|
|
|
|
|
projectParts.end(),
|
|
|
|
|
std::back_inserter(projectPartContainers),
|
2017-02-01 13:43:28 +01:00
|
|
|
std::bind(&ProjectUpdater::toProjectPartContainer, this, _1));
|
2017-01-30 11:24:46 +01:00
|
|
|
|
|
|
|
|
return projectPartContainers;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-01 13:43:28 +01:00
|
|
|
Utils::PathStringVector ProjectUpdater::createExcludedPaths(
|
|
|
|
|
const ClangBackEnd::V2::FileContainers &generatedFiles)
|
|
|
|
|
{
|
|
|
|
|
Utils::PathStringVector excludedPaths;
|
|
|
|
|
excludedPaths.reserve(generatedFiles.size());
|
|
|
|
|
|
|
|
|
|
auto convertToPath = [] (const ClangBackEnd::V2::FileContainer &fileContainer) {
|
|
|
|
|
return fileContainer.filePath().path();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
std::transform(generatedFiles.begin(),
|
|
|
|
|
generatedFiles.end(),
|
|
|
|
|
std::back_inserter(excludedPaths),
|
|
|
|
|
convertToPath);
|
|
|
|
|
|
|
|
|
|
std::sort(excludedPaths.begin(), excludedPaths.end());
|
|
|
|
|
|
|
|
|
|
return excludedPaths;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-30 11:24:46 +01:00
|
|
|
} // namespace ClangPchManager
|