forked from qt-creator/qt-creator
Let's use by default the configuration that clang-format picks itself for the source file. The Qt Creator configuration will now only override the default one with global or project settings and can be turned off with the checkbox. This behavior is clearer than always picking some configuration which Qt Creator prefers best. Change-Id: If5ed3d67eb6b4b47a6d0fd5259f7efbb608914d1 Reviewed-by: Marco Bubke <marco.bubke@qt.io> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
268 lines
9.2 KiB
C++
268 lines
9.2 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2018 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 "clangformatutils.h"
|
|
|
|
#include "clangformatconstants.h"
|
|
#include "clangformatsettings.h"
|
|
|
|
#include <coreplugin/icore.h>
|
|
#include <cpptools/cppcodestylesettings.h>
|
|
#include <texteditor/tabsettings.h>
|
|
#include <projectexplorer/project.h>
|
|
#include <projectexplorer/session.h>
|
|
|
|
#include <QCryptographicHash>
|
|
|
|
using namespace clang;
|
|
using namespace format;
|
|
using namespace llvm;
|
|
using namespace CppTools;
|
|
using namespace ProjectExplorer;
|
|
using namespace TextEditor;
|
|
|
|
namespace ClangFormat {
|
|
|
|
static void applyTabSettings(clang::format::FormatStyle &style, const TabSettings &settings)
|
|
{
|
|
style.IndentWidth = static_cast<unsigned>(settings.m_indentSize);
|
|
style.TabWidth = static_cast<unsigned>(settings.m_tabSize);
|
|
|
|
if (settings.m_tabPolicy == TabSettings::TabsOnlyTabPolicy)
|
|
style.UseTab = FormatStyle::UT_Always;
|
|
else if (settings.m_tabPolicy == TabSettings::SpacesOnlyTabPolicy)
|
|
style.UseTab = FormatStyle::UT_Never;
|
|
else
|
|
style.UseTab = FormatStyle::UT_ForContinuationAndIndentation;
|
|
|
|
if (settings.m_continuationAlignBehavior == TabSettings::NoContinuationAlign) {
|
|
style.ContinuationIndentWidth = 0;
|
|
style.AlignAfterOpenBracket = FormatStyle::BAS_DontAlign;
|
|
} else {
|
|
style.ContinuationIndentWidth = style.IndentWidth;
|
|
style.AlignAfterOpenBracket = FormatStyle::BAS_Align;
|
|
}
|
|
}
|
|
|
|
static void applyCppCodeStyleSettings(clang::format::FormatStyle &style,
|
|
const CppCodeStyleSettings &settings)
|
|
{
|
|
style.IndentCaseLabels = settings.indentSwitchLabels;
|
|
style.AlignOperands = settings.alignAssignments;
|
|
style.NamespaceIndentation = FormatStyle::NI_None;
|
|
if (settings.indentNamespaceBody)
|
|
style.NamespaceIndentation = FormatStyle::NI_All;
|
|
|
|
style.BraceWrapping.IndentBraces = false;
|
|
if (settings.indentBlockBraces) {
|
|
if (settings.indentClassBraces && settings.indentEnumBraces
|
|
&& settings.indentNamespaceBraces && settings.indentFunctionBraces) {
|
|
style.BraceWrapping.IndentBraces = true;
|
|
} else {
|
|
style.BreakBeforeBraces = FormatStyle::BS_GNU;
|
|
}
|
|
}
|
|
|
|
if (settings.bindStarToIdentifier || settings.bindStarToRightSpecifier)
|
|
style.PointerAlignment = FormatStyle::PAS_Right;
|
|
else
|
|
style.PointerAlignment = FormatStyle::PAS_Left;
|
|
|
|
style.AccessModifierOffset = settings.indentAccessSpecifiers
|
|
? 0
|
|
: - static_cast<int>(style.IndentWidth);
|
|
}
|
|
|
|
static bool useGlobalOverriddenSettings()
|
|
{
|
|
return ClangFormatSettings::instance().overrideDefaultFile();
|
|
}
|
|
|
|
QString currentProjectUniqueId()
|
|
{
|
|
const Project *project = SessionManager::startupProject();
|
|
if (!project)
|
|
return QString();
|
|
|
|
return QString::fromUtf8(QCryptographicHash::hash(project->projectFilePath().toString().toUtf8(),
|
|
QCryptographicHash::Md5)
|
|
.toHex(0));
|
|
}
|
|
|
|
static bool useProjectOverriddenSettings()
|
|
{
|
|
const Project *project = SessionManager::startupProject();
|
|
return project ? project->namedSettings(Constants::OVERRIDE_FILE_ID).toBool() : false;
|
|
}
|
|
|
|
static Utils::FileName globalPath()
|
|
{
|
|
return Utils::FileName::fromString(Core::ICore::userResourcePath());
|
|
}
|
|
|
|
static Utils::FileName projectPath()
|
|
{
|
|
const Project *project = SessionManager::startupProject();
|
|
if (project)
|
|
return globalPath().appendPath("clang-format").appendPath(currentProjectUniqueId());
|
|
|
|
return Utils::FileName();
|
|
}
|
|
|
|
static QString configForFile(Utils::FileName fileName, bool checkForSettings)
|
|
{
|
|
QDir overrideDir;
|
|
if (!checkForSettings || useProjectOverriddenSettings()) {
|
|
overrideDir = projectPath().toString();
|
|
if (!overrideDir.isEmpty() && overrideDir.exists(Constants::SETTINGS_FILE_NAME))
|
|
return overrideDir.filePath(Constants::SETTINGS_FILE_NAME);
|
|
}
|
|
|
|
if (!checkForSettings || useGlobalOverriddenSettings()) {
|
|
overrideDir = globalPath().toString();
|
|
if (!overrideDir.isEmpty() && overrideDir.exists(Constants::SETTINGS_FILE_NAME))
|
|
return overrideDir.filePath(Constants::SETTINGS_FILE_NAME);
|
|
}
|
|
|
|
QDir parentDir(fileName.parentDir().toString());
|
|
while (!parentDir.exists(Constants::SETTINGS_FILE_NAME)
|
|
&& !parentDir.exists(Constants::SETTINGS_FILE_ALT_NAME)) {
|
|
if (!parentDir.cdUp())
|
|
return QString();
|
|
}
|
|
|
|
if (parentDir.exists(Constants::SETTINGS_FILE_NAME))
|
|
return parentDir.filePath(Constants::SETTINGS_FILE_NAME);
|
|
return parentDir.filePath(Constants::SETTINGS_FILE_ALT_NAME);
|
|
}
|
|
|
|
static clang::format::FormatStyle constructStyle(bool isGlobal,
|
|
const QByteArray &baseStyle = QByteArray())
|
|
{
|
|
if (!baseStyle.isEmpty()) {
|
|
// Try to get the style for this base style.
|
|
Expected<FormatStyle> style = getStyle(baseStyle.toStdString(),
|
|
"dummy.cpp",
|
|
baseStyle.toStdString());
|
|
if (style)
|
|
return *style;
|
|
|
|
handleAllErrors(style.takeError(), [](const ErrorInfoBase &) {
|
|
// do nothing
|
|
});
|
|
// Fallthrough to the default style.
|
|
}
|
|
|
|
FormatStyle style = getLLVMStyle();
|
|
style.BreakBeforeBraces = FormatStyle::BS_Custom;
|
|
|
|
const CppCodeStyleSettings codeStyleSettings = isGlobal
|
|
? CppCodeStyleSettings::currentGlobalCodeStyle()
|
|
: CppCodeStyleSettings::currentProjectCodeStyle()
|
|
.value_or(CppCodeStyleSettings::currentGlobalCodeStyle());
|
|
const TabSettings tabSettings = isGlobal
|
|
? CppCodeStyleSettings::currentGlobalTabSettings()
|
|
: CppCodeStyleSettings::currentProjectTabSettings();
|
|
|
|
applyTabSettings(style, tabSettings);
|
|
applyCppCodeStyleSettings(style, codeStyleSettings);
|
|
|
|
return style;
|
|
}
|
|
|
|
void createStyleFileIfNeeded(bool isGlobal)
|
|
{
|
|
Utils::FileName path = isGlobal ? globalPath() : projectPath();
|
|
const QString configFile = path.appendPath(Constants::SETTINGS_FILE_NAME).toString();
|
|
|
|
if (QFile::exists(configFile))
|
|
return;
|
|
|
|
QDir().mkpath(path.parentDir().toString());
|
|
std::fstream newStyleFile(configFile.toStdString(), std::fstream::out);
|
|
if (newStyleFile.is_open()) {
|
|
newStyleFile << clang::format::configurationAsText(constructStyle(isGlobal));
|
|
newStyleFile.close();
|
|
}
|
|
}
|
|
|
|
static QByteArray configBaseStyleName(const QString &configFile)
|
|
{
|
|
if (configFile.isEmpty())
|
|
return QByteArray();
|
|
|
|
QFile config(configFile);
|
|
if (!config.open(QIODevice::ReadOnly))
|
|
return QByteArray();
|
|
|
|
const QByteArray content = config.readAll();
|
|
const char basedOnStyle[] = "BasedOnStyle:";
|
|
int basedOnStyleIndex = content.indexOf(basedOnStyle);
|
|
if (basedOnStyleIndex < 0)
|
|
return QByteArray();
|
|
|
|
basedOnStyleIndex += sizeof(basedOnStyle) - 1;
|
|
const int endOfLineIndex = content.indexOf('\n', basedOnStyleIndex);
|
|
return content
|
|
.mid(basedOnStyleIndex, endOfLineIndex < 0 ? -1 : endOfLineIndex - basedOnStyleIndex)
|
|
.trimmed();
|
|
}
|
|
|
|
static clang::format::FormatStyle styleForFile(Utils::FileName fileName, bool checkForSettings)
|
|
{
|
|
QString configFile = configForFile(fileName, checkForSettings);
|
|
if (configFile.isEmpty())
|
|
return constructStyle(true);
|
|
|
|
Expected<FormatStyle> style = format::getStyle("file",
|
|
fileName.toString().toStdString(),
|
|
"none");
|
|
if (style)
|
|
return *style;
|
|
|
|
handleAllErrors(style.takeError(), [](const ErrorInfoBase &) {
|
|
// do nothing
|
|
});
|
|
|
|
return constructStyle(true, configBaseStyleName(configFile));
|
|
}
|
|
|
|
clang::format::FormatStyle styleForFile(Utils::FileName fileName)
|
|
{
|
|
return styleForFile(fileName, true);
|
|
}
|
|
|
|
clang::format::FormatStyle currentProjectStyle()
|
|
{
|
|
return styleForFile(projectPath().appendPath(Constants::SAMPLE_FILE_NAME), false);
|
|
}
|
|
|
|
clang::format::FormatStyle currentGlobalStyle()
|
|
{
|
|
return styleForFile(globalPath().appendPath(Constants::SAMPLE_FILE_NAME), false);
|
|
}
|
|
|
|
}
|