2016-12-16 13:10:43 +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 "cppprojectpartchooser.h"
|
|
|
|
|
|
2016-12-16 13:12:04 +01:00
|
|
|
#include <utils/algorithm.h>
|
2016-12-16 13:10:43 +01:00
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
|
|
|
|
namespace CppTools {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2016-12-16 13:12:04 +01:00
|
|
|
static ProjectPart::Ptr selectFromActiveProject(const QList<ProjectPart::Ptr> &projectParts,
|
|
|
|
|
const ProjectExplorer::Project *activeProject)
|
|
|
|
|
{
|
|
|
|
|
return Utils::findOr(projectParts, projectParts.first(), [&](const ProjectPart::Ptr &projectPart){
|
|
|
|
|
return projectPart->project == activeProject;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-16 13:10:43 +01:00
|
|
|
ProjectPart::Ptr ProjectPartChooser::choose(const QString &filePath,
|
|
|
|
|
const ProjectPart::Ptr ¤tProjectPart,
|
|
|
|
|
const ProjectPart::Ptr &manuallySetProjectPart,
|
2016-12-16 13:12:04 +01:00
|
|
|
bool stickToPreviousProjectPart,
|
|
|
|
|
const ProjectExplorer::Project *activeProject) const
|
2016-12-16 13:10:43 +01:00
|
|
|
{
|
|
|
|
|
QTC_CHECK(m_projectPartsForFile);
|
|
|
|
|
QTC_CHECK(m_projectPartsFromDependenciesForFile);
|
|
|
|
|
QTC_CHECK(m_fallbackProjectPart);
|
|
|
|
|
|
|
|
|
|
if (manuallySetProjectPart)
|
|
|
|
|
return manuallySetProjectPart;
|
|
|
|
|
|
|
|
|
|
ProjectPart::Ptr projectPart = currentProjectPart;
|
|
|
|
|
|
|
|
|
|
QList<ProjectPart::Ptr> projectParts = m_projectPartsForFile(filePath);
|
|
|
|
|
if (projectParts.isEmpty()) {
|
|
|
|
|
if (projectPart && stickToPreviousProjectPart)
|
|
|
|
|
// File is not directly part of any project, but we got one before. We will re-use it,
|
|
|
|
|
// because re-calculating this can be expensive when the dependency table is big.
|
|
|
|
|
return projectPart;
|
|
|
|
|
|
|
|
|
|
// Fall-back step 1: Get some parts through the dependency table:
|
|
|
|
|
projectParts = m_projectPartsFromDependenciesForFile(filePath);
|
|
|
|
|
if (projectParts.isEmpty())
|
|
|
|
|
// Fall-back step 2: Use fall-back part from the model manager:
|
|
|
|
|
projectPart = m_fallbackProjectPart();
|
|
|
|
|
else
|
2016-12-16 13:12:04 +01:00
|
|
|
projectPart = selectFromActiveProject(projectParts, activeProject);
|
2016-12-16 13:10:43 +01:00
|
|
|
} else {
|
|
|
|
|
if (!projectParts.contains(projectPart))
|
|
|
|
|
// Apparently the project file changed, so update our project part.
|
2016-12-16 13:12:04 +01:00
|
|
|
projectPart = selectFromActiveProject(projectParts, activeProject);
|
2016-12-16 13:10:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return projectPart;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProjectPartChooser::setFallbackProjectPart(const FallBackProjectPart &getter)
|
|
|
|
|
{
|
|
|
|
|
m_fallbackProjectPart = getter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProjectPartChooser::setProjectPartsForFile(const ProjectPartsForFile &getter)
|
|
|
|
|
{
|
|
|
|
|
m_projectPartsForFile = getter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProjectPartChooser::setProjectPartsFromDependenciesForFile(
|
|
|
|
|
const ProjectPartsFromDependenciesForFile &getter)
|
|
|
|
|
{
|
|
|
|
|
m_projectPartsFromDependenciesForFile = getter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace CppTools
|