1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
/*
* This file is part of KDevelop
*
* Copyright 2015 Sergey Kalinichev <kalinichev.so.0@gmail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License or (at your option) version 3 or any later version
* accepted by the membership of KDE e.V. (or its successor approved
* by the membership of KDE e.V.), which shall act as a proxy
* defined in Section 14 of version 3 of the license.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "clangsettingsmanager.h"
#include <KConfigGroup>
#include <KConfig>
#include <interfaces/icore.h>
#include <interfaces/isession.h>
#include <interfaces/iproject.h>
#include <custom-definesandincludes/idefinesandincludesmanager.h>
#include <util/path.h>
#include <project/projectmodel.h>
using namespace KDevelop;
namespace
{
const QString settingsGroup = QStringLiteral("Clang Settings");
const QString macros = QStringLiteral("macros");
const QString lookAhead = QStringLiteral("lookAhead");
const QString forwardDeclare = QStringLiteral("forwardDeclare");
AssistantsSettings readAssistantsSettings(KConfig* cfg)
{
auto grp = cfg->group(settingsGroup);
AssistantsSettings settings;
settings.forwardDeclare = grp.readEntry(forwardDeclare, true);
return settings;
}
CodeCompletionSettings readCodeCompletionSettings(KConfig* cfg)
{
auto grp = cfg->group(settingsGroup);
CodeCompletionSettings settings;
settings.macros = grp.readEntry(macros, true);
settings.lookAhead = grp.readEntry(lookAhead, false);
return settings;
}
}
ClangSettingsManager* ClangSettingsManager::self()
{
static ClangSettingsManager manager;
return &manager;
}
AssistantsSettings ClangSettingsManager::assistantsSettings() const
{
auto cfg = ICore::self()->activeSession()->config();
return readAssistantsSettings(cfg.data());
}
CodeCompletionSettings ClangSettingsManager::codeCompletionSettings() const
{
if (m_enableTesting) {
CodeCompletionSettings settings;
settings.lookAhead = true;
settings.macros = true;
return settings;
}
auto cfg = ICore::self()->activeSession()->config();
return readCodeCompletionSettings(cfg.data());
}
ParserSettings ClangSettingsManager::parserSettings(KDevelop::ProjectBaseItem* item) const
{
return {IDefinesAndIncludesManager::manager()->parserArguments(item)};
}
ParserSettings ClangSettingsManager::parserSettings(const QString& path) const
{
return {IDefinesAndIncludesManager::manager()->parserArguments(path)};
}
ClangSettingsManager::ClangSettingsManager()
{}
bool ParserSettings::isCpp() const
{
return parserOptions.contains(QLatin1String("-std=c++")) || parserOptions.contains(QLatin1String("-std=gnu++"));
}
QVector<QByteArray> ParserSettings::toClangAPI() const
{
// TODO: This is not efficient.
#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0)
const auto list = parserOptions.splitRef(QLatin1Char(' '), Qt::SkipEmptyParts);
#else
auto list = parserOptions.splitRef(QLatin1Char(' '), QString::SkipEmptyParts);
#endif
QVector<QByteArray> result;
result.reserve(list.size());
std::transform(list.constBegin(), list.constEnd(),
std::back_inserter(result),
[] (const QStringRef &argument) { return argument.toUtf8(); });
return result;
}
bool ParserSettings::operator==(const ParserSettings& rhs) const
{
return parserOptions == rhs.parserOptions;
}
|