Daniel Jasper | f793511 | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 1 | //===--- Format.cpp - Format C++ code -------------------------------------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Daniel Jasper | f793511 | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | /// |
| 9 | /// \file |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 10 | /// This file implements functions declared in Format.h. This will be |
Daniel Jasper | f793511 | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 11 | /// split into separate files as we go. |
| 12 | /// |
Daniel Jasper | f793511 | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Daniel Jasper | 85c472d | 2015-09-29 07:53:08 +0000 | [diff] [blame] | 15 | #include "clang/Format/Format.h" |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 16 | #include "AffectedRangeManager.h" |
Daniel Jasper | de0328a | 2013-08-16 11:20:30 +0000 | [diff] [blame] | 17 | #include "ContinuationIndenter.h" |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 18 | #include "FormatInternal.h" |
Martin Probst | c4a0dd4 | 2016-05-20 11:24:24 +0000 | [diff] [blame] | 19 | #include "FormatTokenLexer.h" |
Krasimir Georgiev | 7cb267a | 2017-02-27 13:28:36 +0000 | [diff] [blame] | 20 | #include "NamespaceEndCommentsFixer.h" |
Martin Probst | c4a0dd4 | 2016-05-20 11:24:24 +0000 | [diff] [blame] | 21 | #include "SortJavaScriptImports.h" |
| 22 | #include "TokenAnalyzer.h" |
Daniel Jasper | 7a6d09b | 2013-01-29 21:01:14 +0000 | [diff] [blame] | 23 | #include "TokenAnnotator.h" |
Daniel Jasper | 0df5093 | 2014-12-10 19:00:42 +0000 | [diff] [blame] | 24 | #include "UnwrappedLineFormatter.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 25 | #include "UnwrappedLineParser.h" |
Krasimir Georgiev | b03877a | 2017-06-21 12:03:12 +0000 | [diff] [blame] | 26 | #include "UsingDeclarationsSorter.h" |
Alexander Kornienko | cb45bc1 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 27 | #include "WhitespaceManager.h" |
Daniel Jasper | ec04c0d | 2013-05-16 10:40:07 +0000 | [diff] [blame] | 28 | #include "clang/Basic/Diagnostic.h" |
Benjamin Kramer | f3ca2698 | 2014-05-10 16:31:55 +0000 | [diff] [blame] | 29 | #include "clang/Basic/DiagnosticOptions.h" |
Chandler Carruth | 44eb4f6 | 2013-01-02 10:28:36 +0000 | [diff] [blame] | 30 | #include "clang/Basic/SourceManager.h" |
Daniel Jasper | f793511 | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 31 | #include "clang/Lex/Lexer.h" |
Eric Liu | 44564ac | 2018-06-04 09:04:12 +0000 | [diff] [blame] | 32 | #include "clang/Tooling/Inclusions/HeaderIncludes.h" |
Alexander Kornienko | ffd6d04 | 2013-03-27 11:52:18 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/STLExtras.h" |
Ben Hamilton | e2e3e67 | 2018-01-17 17:33:08 +0000 | [diff] [blame] | 34 | #include "llvm/ADT/StringRef.h" |
Manuel Klimek | 2ef908e | 2013-02-13 10:46:36 +0000 | [diff] [blame] | 35 | #include "llvm/Support/Allocator.h" |
Manuel Klimek | 2499810 | 2013-01-16 14:55:28 +0000 | [diff] [blame] | 36 | #include "llvm/Support/Debug.h" |
Edwin Vane | d544aa7 | 2013-09-30 13:31:48 +0000 | [diff] [blame] | 37 | #include "llvm/Support/Path.h" |
Birunthan Mohanathas | b001a0b | 2015-07-03 17:25:16 +0000 | [diff] [blame] | 38 | #include "llvm/Support/Regex.h" |
Jonas Devlieghere | fc51490 | 2018-10-10 13:27:25 +0000 | [diff] [blame] | 39 | #include "llvm/Support/VirtualFileSystem.h" |
Chandler Carruth | 5553d0d | 2014-01-07 11:51:46 +0000 | [diff] [blame] | 40 | #include "llvm/Support/YAMLTraits.h" |
Martin Probst | 081f176 | 2016-06-01 15:19:53 +0000 | [diff] [blame] | 41 | #include <algorithm> |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 42 | #include <memory> |
Eric Liu | bf4c41c | 2018-05-04 17:55:13 +0000 | [diff] [blame] | 43 | #include <mutex> |
Daniel Jasper | 8b52971 | 2012-12-04 13:02:32 +0000 | [diff] [blame] | 44 | #include <string> |
Eric Liu | bf4c41c | 2018-05-04 17:55:13 +0000 | [diff] [blame] | 45 | #include <unordered_map> |
Daniel Jasper | 8b52971 | 2012-12-04 13:02:32 +0000 | [diff] [blame] | 46 | |
Chandler Carruth | 1034666 | 2014-04-22 03:17:02 +0000 | [diff] [blame] | 47 | #define DEBUG_TYPE "format-formatter" |
| 48 | |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 49 | using clang::format::FormatStyle; |
| 50 | |
NAKAMURA Takumi | 057a942 | 2017-11-01 04:43:22 +0000 | [diff] [blame] | 51 | LLVM_YAML_IS_SEQUENCE_VECTOR(clang::format::FormatStyle::RawStringFormat) |
Daniel Jasper | e1e4319 | 2014-04-01 12:55:11 +0000 | [diff] [blame] | 52 | |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 53 | namespace llvm { |
| 54 | namespace yaml { |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 55 | template <> struct ScalarEnumerationTraits<FormatStyle::LanguageKind> { |
| 56 | static void enumeration(IO &IO, FormatStyle::LanguageKind &Value) { |
| 57 | IO.enumCase(Value, "Cpp", FormatStyle::LK_Cpp); |
Daniel Jasper | c58c70e | 2014-09-15 11:21:46 +0000 | [diff] [blame] | 58 | IO.enumCase(Value, "Java", FormatStyle::LK_Java); |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 59 | IO.enumCase(Value, "JavaScript", FormatStyle::LK_JavaScript); |
Daniel Jasper | 03a04fe | 2016-12-12 12:42:29 +0000 | [diff] [blame] | 60 | IO.enumCase(Value, "ObjC", FormatStyle::LK_ObjC); |
Daniel Jasper | 7052ce6 | 2014-01-19 09:04:08 +0000 | [diff] [blame] | 61 | IO.enumCase(Value, "Proto", FormatStyle::LK_Proto); |
Daniel Jasper | 498f558 | 2015-12-25 08:53:31 +0000 | [diff] [blame] | 62 | IO.enumCase(Value, "TableGen", FormatStyle::LK_TableGen); |
Krasimir Georgiev | 26b144c | 2017-07-03 15:05:14 +0000 | [diff] [blame] | 63 | IO.enumCase(Value, "TextProto", FormatStyle::LK_TextProto); |
Paul Hoad | cbb726d | 2019-03-21 13:09:22 +0000 | [diff] [blame] | 64 | IO.enumCase(Value, "CSharp", FormatStyle::LK_CSharp); |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 65 | } |
| 66 | }; |
| 67 | |
| 68 | template <> struct ScalarEnumerationTraits<FormatStyle::LanguageStandard> { |
| 69 | static void enumeration(IO &IO, FormatStyle::LanguageStandard &Value) { |
| 70 | IO.enumCase(Value, "Cpp03", FormatStyle::LS_Cpp03); |
| 71 | IO.enumCase(Value, "C++03", FormatStyle::LS_Cpp03); |
| 72 | IO.enumCase(Value, "Cpp11", FormatStyle::LS_Cpp11); |
| 73 | IO.enumCase(Value, "C++11", FormatStyle::LS_Cpp11); |
| 74 | IO.enumCase(Value, "Auto", FormatStyle::LS_Auto); |
| 75 | } |
| 76 | }; |
| 77 | |
| 78 | template <> struct ScalarEnumerationTraits<FormatStyle::UseTabStyle> { |
| 79 | static void enumeration(IO &IO, FormatStyle::UseTabStyle &Value) { |
| 80 | IO.enumCase(Value, "Never", FormatStyle::UT_Never); |
| 81 | IO.enumCase(Value, "false", FormatStyle::UT_Never); |
| 82 | IO.enumCase(Value, "Always", FormatStyle::UT_Always); |
| 83 | IO.enumCase(Value, "true", FormatStyle::UT_Always); |
| 84 | IO.enumCase(Value, "ForIndentation", FormatStyle::UT_ForIndentation); |
Marianne Mailhot-Sarrasin | 51fe279 | 2016-04-14 14:52:26 +0000 | [diff] [blame] | 85 | IO.enumCase(Value, "ForContinuationAndIndentation", |
| 86 | FormatStyle::UT_ForContinuationAndIndentation); |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 87 | } |
| 88 | }; |
| 89 | |
Daniel Jasper | abd1f57 | 2016-03-02 22:44:03 +0000 | [diff] [blame] | 90 | template <> struct ScalarEnumerationTraits<FormatStyle::JavaScriptQuoteStyle> { |
| 91 | static void enumeration(IO &IO, FormatStyle::JavaScriptQuoteStyle &Value) { |
| 92 | IO.enumCase(Value, "Leave", FormatStyle::JSQS_Leave); |
| 93 | IO.enumCase(Value, "Single", FormatStyle::JSQS_Single); |
| 94 | IO.enumCase(Value, "Double", FormatStyle::JSQS_Double); |
| 95 | } |
| 96 | }; |
| 97 | |
Daniel Jasper | d74cf40 | 2014-04-08 12:46:38 +0000 | [diff] [blame] | 98 | template <> struct ScalarEnumerationTraits<FormatStyle::ShortFunctionStyle> { |
| 99 | static void enumeration(IO &IO, FormatStyle::ShortFunctionStyle &Value) { |
| 100 | IO.enumCase(Value, "None", FormatStyle::SFS_None); |
| 101 | IO.enumCase(Value, "false", FormatStyle::SFS_None); |
| 102 | IO.enumCase(Value, "All", FormatStyle::SFS_All); |
| 103 | IO.enumCase(Value, "true", FormatStyle::SFS_All); |
| 104 | IO.enumCase(Value, "Inline", FormatStyle::SFS_Inline); |
Francois Ferrand | d3f0e3d | 2017-06-21 13:56:02 +0000 | [diff] [blame] | 105 | IO.enumCase(Value, "InlineOnly", FormatStyle::SFS_InlineOnly); |
Daniel Jasper | 9e70935 | 2014-11-26 10:43:58 +0000 | [diff] [blame] | 106 | IO.enumCase(Value, "Empty", FormatStyle::SFS_Empty); |
Daniel Jasper | d74cf40 | 2014-04-08 12:46:38 +0000 | [diff] [blame] | 107 | } |
| 108 | }; |
| 109 | |
Paul Hoad | 15000a1 | 2019-03-13 08:26:39 +0000 | [diff] [blame] | 110 | template <> struct ScalarEnumerationTraits<FormatStyle::ShortIfStyle> { |
| 111 | static void enumeration(IO &IO, FormatStyle::ShortIfStyle &Value) { |
| 112 | IO.enumCase(Value, "Never", FormatStyle::SIS_Never); |
| 113 | IO.enumCase(Value, "Always", FormatStyle::SIS_Always); |
| 114 | IO.enumCase(Value, "WithoutElse", FormatStyle::SIS_WithoutElse); |
| 115 | |
| 116 | // For backward compatibility. |
| 117 | IO.enumCase(Value, "false", FormatStyle::SIS_Never); |
| 118 | IO.enumCase(Value, "true", FormatStyle::SIS_WithoutElse); |
| 119 | } |
| 120 | }; |
| 121 | |
Ronald Wampler | a83e2db | 2019-03-26 20:18:14 +0000 | [diff] [blame] | 122 | template <> struct ScalarEnumerationTraits<FormatStyle::ShortLambdaStyle> { |
| 123 | static void enumeration(IO &IO, FormatStyle::ShortLambdaStyle &Value) { |
| 124 | IO.enumCase(Value, "None", FormatStyle::SLS_None); |
| 125 | IO.enumCase(Value, "false", FormatStyle::SLS_None); |
| 126 | IO.enumCase(Value, "Empty", FormatStyle::SLS_Empty); |
| 127 | IO.enumCase(Value, "Inline", FormatStyle::SLS_Inline); |
| 128 | IO.enumCase(Value, "All", FormatStyle::SLS_All); |
| 129 | IO.enumCase(Value, "true", FormatStyle::SLS_All); |
| 130 | } |
| 131 | }; |
| 132 | |
Ben Hamilton | 4dc658c | 2018-02-02 20:15:14 +0000 | [diff] [blame] | 133 | template <> struct ScalarEnumerationTraits<FormatStyle::BinPackStyle> { |
| 134 | static void enumeration(IO &IO, FormatStyle::BinPackStyle &Value) { |
| 135 | IO.enumCase(Value, "Auto", FormatStyle::BPS_Auto); |
| 136 | IO.enumCase(Value, "Always", FormatStyle::BPS_Always); |
| 137 | IO.enumCase(Value, "Never", FormatStyle::BPS_Never); |
| 138 | } |
| 139 | }; |
| 140 | |
Daniel Jasper | ac043c9 | 2014-09-15 11:11:00 +0000 | [diff] [blame] | 141 | template <> struct ScalarEnumerationTraits<FormatStyle::BinaryOperatorStyle> { |
| 142 | static void enumeration(IO &IO, FormatStyle::BinaryOperatorStyle &Value) { |
| 143 | IO.enumCase(Value, "All", FormatStyle::BOS_All); |
| 144 | IO.enumCase(Value, "true", FormatStyle::BOS_All); |
| 145 | IO.enumCase(Value, "None", FormatStyle::BOS_None); |
| 146 | IO.enumCase(Value, "false", FormatStyle::BOS_None); |
| 147 | IO.enumCase(Value, "NonAssignment", FormatStyle::BOS_NonAssignment); |
| 148 | } |
| 149 | }; |
| 150 | |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 151 | template <> struct ScalarEnumerationTraits<FormatStyle::BraceBreakingStyle> { |
| 152 | static void enumeration(IO &IO, FormatStyle::BraceBreakingStyle &Value) { |
| 153 | IO.enumCase(Value, "Attach", FormatStyle::BS_Attach); |
| 154 | IO.enumCase(Value, "Linux", FormatStyle::BS_Linux); |
Birunthan Mohanathas | 305fa9c | 2015-07-12 03:13:54 +0000 | [diff] [blame] | 155 | IO.enumCase(Value, "Mozilla", FormatStyle::BS_Mozilla); |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 156 | IO.enumCase(Value, "Stroustrup", FormatStyle::BS_Stroustrup); |
| 157 | IO.enumCase(Value, "Allman", FormatStyle::BS_Allman); |
Alexander Kornienko | 3a33f02 | 2013-12-12 09:49:52 +0000 | [diff] [blame] | 158 | IO.enumCase(Value, "GNU", FormatStyle::BS_GNU); |
Roman Kashitsyn | 291f64f | 2015-08-10 13:43:19 +0000 | [diff] [blame] | 159 | IO.enumCase(Value, "WebKit", FormatStyle::BS_WebKit); |
Daniel Jasper | c1bc38e | 2015-09-29 14:57:55 +0000 | [diff] [blame] | 160 | IO.enumCase(Value, "Custom", FormatStyle::BS_Custom); |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 161 | } |
| 162 | }; |
| 163 | |
Manuel Klimek | 89628f6 | 2017-09-20 09:51:03 +0000 | [diff] [blame] | 164 | template <> |
| 165 | struct ScalarEnumerationTraits<FormatStyle::BreakConstructorInitializersStyle> { |
| 166 | static void |
| 167 | enumeration(IO &IO, FormatStyle::BreakConstructorInitializersStyle &Value) { |
Francois Ferrand | a6b6d51 | 2017-05-24 11:36:58 +0000 | [diff] [blame] | 168 | IO.enumCase(Value, "BeforeColon", FormatStyle::BCIS_BeforeColon); |
| 169 | IO.enumCase(Value, "BeforeComma", FormatStyle::BCIS_BeforeComma); |
| 170 | IO.enumCase(Value, "AfterColon", FormatStyle::BCIS_AfterColon); |
| 171 | } |
| 172 | }; |
| 173 | |
Daniel Jasper | c1bc38e | 2015-09-29 14:57:55 +0000 | [diff] [blame] | 174 | template <> |
Francois Ferrand | 6bb103f | 2018-06-11 14:41:26 +0000 | [diff] [blame] | 175 | struct ScalarEnumerationTraits<FormatStyle::BreakInheritanceListStyle> { |
Paul Hoad | 5bcf99b | 2019-03-01 09:09:54 +0000 | [diff] [blame] | 176 | static void enumeration(IO &IO, |
| 177 | FormatStyle::BreakInheritanceListStyle &Value) { |
Francois Ferrand | 6bb103f | 2018-06-11 14:41:26 +0000 | [diff] [blame] | 178 | IO.enumCase(Value, "BeforeColon", FormatStyle::BILS_BeforeColon); |
| 179 | IO.enumCase(Value, "BeforeComma", FormatStyle::BILS_BeforeComma); |
| 180 | IO.enumCase(Value, "AfterColon", FormatStyle::BILS_AfterColon); |
| 181 | } |
| 182 | }; |
| 183 | |
| 184 | template <> |
Krasimir Georgiev | ad47c90 | 2017-08-30 14:34:57 +0000 | [diff] [blame] | 185 | struct ScalarEnumerationTraits<FormatStyle::PPDirectiveIndentStyle> { |
| 186 | static void enumeration(IO &IO, FormatStyle::PPDirectiveIndentStyle &Value) { |
| 187 | IO.enumCase(Value, "None", FormatStyle::PPDIS_None); |
| 188 | IO.enumCase(Value, "AfterHash", FormatStyle::PPDIS_AfterHash); |
Paul Hoad | 701a0d7 | 2019-03-20 20:49:43 +0000 | [diff] [blame] | 189 | IO.enumCase(Value, "BeforeHash", FormatStyle::PPDIS_BeforeHash); |
Krasimir Georgiev | ad47c90 | 2017-08-30 14:34:57 +0000 | [diff] [blame] | 190 | } |
| 191 | }; |
| 192 | |
| 193 | template <> |
Zachary Turner | 448592e | 2015-12-18 22:20:15 +0000 | [diff] [blame] | 194 | struct ScalarEnumerationTraits<FormatStyle::ReturnTypeBreakingStyle> { |
| 195 | static void enumeration(IO &IO, FormatStyle::ReturnTypeBreakingStyle &Value) { |
| 196 | IO.enumCase(Value, "None", FormatStyle::RTBS_None); |
| 197 | IO.enumCase(Value, "All", FormatStyle::RTBS_All); |
| 198 | IO.enumCase(Value, "TopLevel", FormatStyle::RTBS_TopLevel); |
| 199 | IO.enumCase(Value, "TopLevelDefinitions", |
| 200 | FormatStyle::RTBS_TopLevelDefinitions); |
| 201 | IO.enumCase(Value, "AllDefinitions", FormatStyle::RTBS_AllDefinitions); |
| 202 | } |
| 203 | }; |
| 204 | |
| 205 | template <> |
Francois Ferrand | 58e6fe5 | 2018-05-16 08:25:03 +0000 | [diff] [blame] | 206 | struct ScalarEnumerationTraits<FormatStyle::BreakTemplateDeclarationsStyle> { |
Paul Hoad | 5bcf99b | 2019-03-01 09:09:54 +0000 | [diff] [blame] | 207 | static void enumeration(IO &IO, |
| 208 | FormatStyle::BreakTemplateDeclarationsStyle &Value) { |
Francois Ferrand | 58e6fe5 | 2018-05-16 08:25:03 +0000 | [diff] [blame] | 209 | IO.enumCase(Value, "No", FormatStyle::BTDS_No); |
| 210 | IO.enumCase(Value, "MultiLine", FormatStyle::BTDS_MultiLine); |
| 211 | IO.enumCase(Value, "Yes", FormatStyle::BTDS_Yes); |
| 212 | |
| 213 | // For backward compatibility. |
| 214 | IO.enumCase(Value, "false", FormatStyle::BTDS_MultiLine); |
| 215 | IO.enumCase(Value, "true", FormatStyle::BTDS_Yes); |
| 216 | } |
| 217 | }; |
| 218 | |
| 219 | template <> |
Daniel Jasper | c1bc38e | 2015-09-29 14:57:55 +0000 | [diff] [blame] | 220 | struct ScalarEnumerationTraits<FormatStyle::DefinitionReturnTypeBreakingStyle> { |
| 221 | static void |
| 222 | enumeration(IO &IO, FormatStyle::DefinitionReturnTypeBreakingStyle &Value) { |
Birunthan Mohanathas | a0388a8 | 2015-06-29 15:30:42 +0000 | [diff] [blame] | 223 | IO.enumCase(Value, "None", FormatStyle::DRTBS_None); |
| 224 | IO.enumCase(Value, "All", FormatStyle::DRTBS_All); |
| 225 | IO.enumCase(Value, "TopLevel", FormatStyle::DRTBS_TopLevel); |
| 226 | |
| 227 | // For backward compatibility. |
| 228 | IO.enumCase(Value, "false", FormatStyle::DRTBS_None); |
| 229 | IO.enumCase(Value, "true", FormatStyle::DRTBS_All); |
| 230 | } |
| 231 | }; |
| 232 | |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 233 | template <> |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 234 | struct ScalarEnumerationTraits<FormatStyle::NamespaceIndentationKind> { |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 235 | static void enumeration(IO &IO, |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 236 | FormatStyle::NamespaceIndentationKind &Value) { |
| 237 | IO.enumCase(Value, "None", FormatStyle::NI_None); |
| 238 | IO.enumCase(Value, "Inner", FormatStyle::NI_Inner); |
| 239 | IO.enumCase(Value, "All", FormatStyle::NI_All); |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 240 | } |
| 241 | }; |
| 242 | |
Daniel Jasper | 6501f7e | 2015-10-27 12:38:37 +0000 | [diff] [blame] | 243 | template <> struct ScalarEnumerationTraits<FormatStyle::BracketAlignmentStyle> { |
| 244 | static void enumeration(IO &IO, FormatStyle::BracketAlignmentStyle &Value) { |
| 245 | IO.enumCase(Value, "Align", FormatStyle::BAS_Align); |
| 246 | IO.enumCase(Value, "DontAlign", FormatStyle::BAS_DontAlign); |
| 247 | IO.enumCase(Value, "AlwaysBreak", FormatStyle::BAS_AlwaysBreak); |
| 248 | |
| 249 | // For backward compatibility. |
| 250 | IO.enumCase(Value, "true", FormatStyle::BAS_Align); |
| 251 | IO.enumCase(Value, "false", FormatStyle::BAS_DontAlign); |
| 252 | } |
| 253 | }; |
| 254 | |
Manuel Klimek | 89628f6 | 2017-09-20 09:51:03 +0000 | [diff] [blame] | 255 | template <> |
| 256 | struct ScalarEnumerationTraits<FormatStyle::EscapedNewlineAlignmentStyle> { |
| 257 | static void enumeration(IO &IO, |
| 258 | FormatStyle::EscapedNewlineAlignmentStyle &Value) { |
Daniel Jasper | 7fdbb3f | 2017-05-08 15:08:00 +0000 | [diff] [blame] | 259 | IO.enumCase(Value, "DontAlign", FormatStyle::ENAS_DontAlign); |
| 260 | IO.enumCase(Value, "Left", FormatStyle::ENAS_Left); |
| 261 | IO.enumCase(Value, "Right", FormatStyle::ENAS_Right); |
| 262 | |
| 263 | // For backward compatibility. |
| 264 | IO.enumCase(Value, "true", FormatStyle::ENAS_Left); |
| 265 | IO.enumCase(Value, "false", FormatStyle::ENAS_Right); |
| 266 | } |
| 267 | }; |
| 268 | |
Jacques Pienaar | fc27511 | 2015-02-18 23:48:37 +0000 | [diff] [blame] | 269 | template <> struct ScalarEnumerationTraits<FormatStyle::PointerAlignmentStyle> { |
| 270 | static void enumeration(IO &IO, FormatStyle::PointerAlignmentStyle &Value) { |
Daniel Jasper | 553d487 | 2014-06-17 12:40:34 +0000 | [diff] [blame] | 271 | IO.enumCase(Value, "Middle", FormatStyle::PAS_Middle); |
| 272 | IO.enumCase(Value, "Left", FormatStyle::PAS_Left); |
| 273 | IO.enumCase(Value, "Right", FormatStyle::PAS_Right); |
| 274 | |
Alp Toker | 958027b | 2014-07-14 19:42:55 +0000 | [diff] [blame] | 275 | // For backward compatibility. |
Daniel Jasper | 553d487 | 2014-06-17 12:40:34 +0000 | [diff] [blame] | 276 | IO.enumCase(Value, "true", FormatStyle::PAS_Left); |
| 277 | IO.enumCase(Value, "false", FormatStyle::PAS_Right); |
| 278 | } |
| 279 | }; |
| 280 | |
| 281 | template <> |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 282 | struct ScalarEnumerationTraits<FormatStyle::SpaceBeforeParensOptions> { |
Manuel Klimek | a8eb914 | 2013-05-13 12:51:40 +0000 | [diff] [blame] | 283 | static void enumeration(IO &IO, |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 284 | FormatStyle::SpaceBeforeParensOptions &Value) { |
| 285 | IO.enumCase(Value, "Never", FormatStyle::SBPO_Never); |
Alexander Kornienko | fdca83d | 2013-12-10 10:18:34 +0000 | [diff] [blame] | 286 | IO.enumCase(Value, "ControlStatements", |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 287 | FormatStyle::SBPO_ControlStatements); |
Reuben Thomas | 08a940d | 2019-03-30 12:32:35 +0000 | [diff] [blame] | 288 | IO.enumCase(Value, "NonEmptyParentheses", |
| 289 | FormatStyle::SBPO_NonEmptyParentheses); |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 290 | IO.enumCase(Value, "Always", FormatStyle::SBPO_Always); |
Alexander Kornienko | fdca83d | 2013-12-10 10:18:34 +0000 | [diff] [blame] | 291 | |
| 292 | // For backward compatibility. |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 293 | IO.enumCase(Value, "false", FormatStyle::SBPO_Never); |
| 294 | IO.enumCase(Value, "true", FormatStyle::SBPO_ControlStatements); |
Alexander Kornienko | fdca83d | 2013-12-10 10:18:34 +0000 | [diff] [blame] | 295 | } |
| 296 | }; |
| 297 | |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 298 | template <> struct MappingTraits<FormatStyle> { |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 299 | static void mapping(IO &IO, FormatStyle &Style) { |
| 300 | // When reading, read the language first, we need it for getPredefinedStyle. |
| 301 | IO.mapOptional("Language", Style.Language); |
| 302 | |
Alexander Kornienko | 4914967 | 2013-05-10 11:56:10 +0000 | [diff] [blame] | 303 | if (IO.outputting()) { |
Paul Hoad | cbb726d | 2019-03-21 13:09:22 +0000 | [diff] [blame] | 304 | StringRef StylesArray[] = {"LLVM", "Google", "Chromium", "Mozilla", |
| 305 | "WebKit", "GNU", "Microsoft"}; |
Alexander Kornienko | 4914967 | 2013-05-10 11:56:10 +0000 | [diff] [blame] | 306 | ArrayRef<StringRef> Styles(StylesArray); |
| 307 | for (size_t i = 0, e = Styles.size(); i < e; ++i) { |
| 308 | StringRef StyleName(Styles[i]); |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 309 | FormatStyle PredefinedStyle; |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 310 | if (getPredefinedStyle(StyleName, Style.Language, &PredefinedStyle) && |
Alexander Kornienko | 006b5c8 | 2013-05-19 00:53:30 +0000 | [diff] [blame] | 311 | Style == PredefinedStyle) { |
Alexander Kornienko | 4914967 | 2013-05-10 11:56:10 +0000 | [diff] [blame] | 312 | IO.mapOptional("# BasedOnStyle", StyleName); |
| 313 | break; |
| 314 | } |
| 315 | } |
| 316 | } else { |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 317 | StringRef BasedOnStyle; |
| 318 | IO.mapOptional("BasedOnStyle", BasedOnStyle); |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 319 | if (!BasedOnStyle.empty()) { |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 320 | FormatStyle::LanguageKind OldLanguage = Style.Language; |
| 321 | FormatStyle::LanguageKind Language = |
| 322 | ((FormatStyle *)IO.getContext())->Language; |
| 323 | if (!getPredefinedStyle(BasedOnStyle, Language, &Style)) { |
Alexander Kornienko | 006b5c8 | 2013-05-19 00:53:30 +0000 | [diff] [blame] | 324 | IO.setError(Twine("Unknown value for BasedOnStyle: ", BasedOnStyle)); |
| 325 | return; |
| 326 | } |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 327 | Style.Language = OldLanguage; |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 328 | } |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 329 | } |
| 330 | |
Birunthan Mohanathas | 50a6f91 | 2015-06-28 14:52:34 +0000 | [diff] [blame] | 331 | // For backward compatibility. |
| 332 | if (!IO.outputting()) { |
Daniel Jasper | 7fdbb3f | 2017-05-08 15:08:00 +0000 | [diff] [blame] | 333 | IO.mapOptional("AlignEscapedNewlinesLeft", Style.AlignEscapedNewlines); |
Birunthan Mohanathas | 50a6f91 | 2015-06-28 14:52:34 +0000 | [diff] [blame] | 334 | IO.mapOptional("DerivePointerBinding", Style.DerivePointerAlignment); |
| 335 | IO.mapOptional("IndentFunctionDeclarationAfterType", |
| 336 | Style.IndentWrappedFunctionNames); |
| 337 | IO.mapOptional("PointerBindsToType", Style.PointerAlignment); |
| 338 | IO.mapOptional("SpaceAfterControlStatementKeyword", |
| 339 | Style.SpaceBeforeParens); |
| 340 | } |
| 341 | |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 342 | IO.mapOptional("AccessModifierOffset", Style.AccessModifierOffset); |
Daniel Jasper | 3aa9a6a | 2014-11-18 23:55:27 +0000 | [diff] [blame] | 343 | IO.mapOptional("AlignAfterOpenBracket", Style.AlignAfterOpenBracket); |
Birunthan Mohanathas | 35cfbd7 | 2015-06-28 14:51:17 +0000 | [diff] [blame] | 344 | IO.mapOptional("AlignConsecutiveAssignments", |
| 345 | Style.AlignConsecutiveAssignments); |
Daniel Jasper | e12597c | 2015-10-01 10:06:54 +0000 | [diff] [blame] | 346 | IO.mapOptional("AlignConsecutiveDeclarations", |
| 347 | Style.AlignConsecutiveDeclarations); |
Daniel Jasper | 7fdbb3f | 2017-05-08 15:08:00 +0000 | [diff] [blame] | 348 | IO.mapOptional("AlignEscapedNewlines", Style.AlignEscapedNewlines); |
Daniel Jasper | 3219e43 | 2014-12-02 13:24:51 +0000 | [diff] [blame] | 349 | IO.mapOptional("AlignOperands", Style.AlignOperands); |
Daniel Jasper | 552f4a7 | 2013-07-31 23:55:15 +0000 | [diff] [blame] | 350 | IO.mapOptional("AlignTrailingComments", Style.AlignTrailingComments); |
Paul Hoad | c6deae4 | 2019-03-23 14:37:58 +0000 | [diff] [blame] | 351 | IO.mapOptional("AllowAllArgumentsOnNextLine", |
| 352 | Style.AllowAllArgumentsOnNextLine); |
| 353 | IO.mapOptional("AllowAllConstructorInitializersOnNextLine", |
| 354 | Style.AllowAllConstructorInitializersOnNextLine); |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 355 | IO.mapOptional("AllowAllParametersOfDeclarationOnNextLine", |
| 356 | Style.AllowAllParametersOfDeclarationOnNextLine); |
Daniel Jasper | 17605d3 | 2014-05-14 09:33:35 +0000 | [diff] [blame] | 357 | IO.mapOptional("AllowShortBlocksOnASingleLine", |
| 358 | Style.AllowShortBlocksOnASingleLine); |
Daniel Jasper | b87899b | 2014-09-10 13:11:45 +0000 | [diff] [blame] | 359 | IO.mapOptional("AllowShortCaseLabelsOnASingleLine", |
| 360 | Style.AllowShortCaseLabelsOnASingleLine); |
Birunthan Mohanathas | 35cfbd7 | 2015-06-28 14:51:17 +0000 | [diff] [blame] | 361 | IO.mapOptional("AllowShortFunctionsOnASingleLine", |
| 362 | Style.AllowShortFunctionsOnASingleLine); |
Ronald Wampler | a83e2db | 2019-03-26 20:18:14 +0000 | [diff] [blame] | 363 | IO.mapOptional("AllowShortLambdasOnASingleLine", |
| 364 | Style.AllowShortLambdasOnASingleLine); |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 365 | IO.mapOptional("AllowShortIfStatementsOnASingleLine", |
| 366 | Style.AllowShortIfStatementsOnASingleLine); |
Daniel Jasper | 3a685df | 2013-05-16 12:12:21 +0000 | [diff] [blame] | 367 | IO.mapOptional("AllowShortLoopsOnASingleLine", |
| 368 | Style.AllowShortLoopsOnASingleLine); |
Daniel Jasper | ca4ea1c | 2014-08-05 12:16:31 +0000 | [diff] [blame] | 369 | IO.mapOptional("AlwaysBreakAfterDefinitionReturnType", |
| 370 | Style.AlwaysBreakAfterDefinitionReturnType); |
Zachary Turner | 448592e | 2015-12-18 22:20:15 +0000 | [diff] [blame] | 371 | IO.mapOptional("AlwaysBreakAfterReturnType", |
| 372 | Style.AlwaysBreakAfterReturnType); |
Paul Hoad | c6deae4 | 2019-03-23 14:37:58 +0000 | [diff] [blame] | 373 | |
Zachary Turner | 448592e | 2015-12-18 22:20:15 +0000 | [diff] [blame] | 374 | // If AlwaysBreakAfterDefinitionReturnType was specified but |
| 375 | // AlwaysBreakAfterReturnType was not, initialize the latter from the |
| 376 | // former for backwards compatibility. |
| 377 | if (Style.AlwaysBreakAfterDefinitionReturnType != FormatStyle::DRTBS_None && |
| 378 | Style.AlwaysBreakAfterReturnType == FormatStyle::RTBS_None) { |
| 379 | if (Style.AlwaysBreakAfterDefinitionReturnType == FormatStyle::DRTBS_All) |
| 380 | Style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_AllDefinitions; |
| 381 | else if (Style.AlwaysBreakAfterDefinitionReturnType == |
| 382 | FormatStyle::DRTBS_TopLevel) |
| 383 | Style.AlwaysBreakAfterReturnType = |
| 384 | FormatStyle::RTBS_TopLevelDefinitions; |
| 385 | } |
| 386 | |
Alexander Kornienko | 5861171 | 2013-07-04 12:02:44 +0000 | [diff] [blame] | 387 | IO.mapOptional("AlwaysBreakBeforeMultilineStrings", |
| 388 | Style.AlwaysBreakBeforeMultilineStrings); |
Birunthan Mohanathas | 35cfbd7 | 2015-06-28 14:51:17 +0000 | [diff] [blame] | 389 | IO.mapOptional("AlwaysBreakTemplateDeclarations", |
| 390 | Style.AlwaysBreakTemplateDeclarations); |
| 391 | IO.mapOptional("BinPackArguments", Style.BinPackArguments); |
| 392 | IO.mapOptional("BinPackParameters", Style.BinPackParameters); |
Daniel Jasper | c1bc38e | 2015-09-29 14:57:55 +0000 | [diff] [blame] | 393 | IO.mapOptional("BraceWrapping", Style.BraceWrapping); |
Daniel Jasper | e33d4af | 2013-07-26 16:56:36 +0000 | [diff] [blame] | 394 | IO.mapOptional("BreakBeforeBinaryOperators", |
| 395 | Style.BreakBeforeBinaryOperators); |
Birunthan Mohanathas | 35cfbd7 | 2015-06-28 14:51:17 +0000 | [diff] [blame] | 396 | IO.mapOptional("BreakBeforeBraces", Style.BreakBeforeBraces); |
Francois Ferrand | 6bb103f | 2018-06-11 14:41:26 +0000 | [diff] [blame] | 397 | |
| 398 | bool BreakBeforeInheritanceComma = false; |
Paul Hoad | 5bcf99b | 2019-03-01 09:09:54 +0000 | [diff] [blame] | 399 | IO.mapOptional("BreakBeforeInheritanceComma", BreakBeforeInheritanceComma); |
| 400 | IO.mapOptional("BreakInheritanceList", Style.BreakInheritanceList); |
Francois Ferrand | 6bb103f | 2018-06-11 14:41:26 +0000 | [diff] [blame] | 401 | // If BreakBeforeInheritanceComma was specified but |
| 402 | // BreakInheritance was not, initialize the latter from the |
| 403 | // former for backwards compatibility. |
| 404 | if (BreakBeforeInheritanceComma && |
| 405 | Style.BreakInheritanceList == FormatStyle::BILS_BeforeColon) |
| 406 | Style.BreakInheritanceList = FormatStyle::BILS_BeforeComma; |
| 407 | |
Daniel Jasper | 165b29e | 2013-11-08 00:57:11 +0000 | [diff] [blame] | 408 | IO.mapOptional("BreakBeforeTernaryOperators", |
| 409 | Style.BreakBeforeTernaryOperators); |
Francois Ferrand | a6b6d51 | 2017-05-24 11:36:58 +0000 | [diff] [blame] | 410 | |
| 411 | bool BreakConstructorInitializersBeforeComma = false; |
Daniel Jasper | e33d4af | 2013-07-26 16:56:36 +0000 | [diff] [blame] | 412 | IO.mapOptional("BreakConstructorInitializersBeforeComma", |
Francois Ferrand | a6b6d51 | 2017-05-24 11:36:58 +0000 | [diff] [blame] | 413 | BreakConstructorInitializersBeforeComma); |
| 414 | IO.mapOptional("BreakConstructorInitializers", |
| 415 | Style.BreakConstructorInitializers); |
| 416 | // If BreakConstructorInitializersBeforeComma was specified but |
| 417 | // BreakConstructorInitializers was not, initialize the latter from the |
| 418 | // former for backwards compatibility. |
| 419 | if (BreakConstructorInitializersBeforeComma && |
| 420 | Style.BreakConstructorInitializers == FormatStyle::BCIS_BeforeColon) |
| 421 | Style.BreakConstructorInitializers = FormatStyle::BCIS_BeforeComma; |
| 422 | |
Daniel Jasper | e1a7b76 | 2016-02-01 11:21:02 +0000 | [diff] [blame] | 423 | IO.mapOptional("BreakAfterJavaFieldAnnotations", |
| 424 | Style.BreakAfterJavaFieldAnnotations); |
| 425 | IO.mapOptional("BreakStringLiterals", Style.BreakStringLiterals); |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 426 | IO.mapOptional("ColumnLimit", Style.ColumnLimit); |
Birunthan Mohanathas | 35cfbd7 | 2015-06-28 14:51:17 +0000 | [diff] [blame] | 427 | IO.mapOptional("CommentPragmas", Style.CommentPragmas); |
Francois Ferrand | e56a829 | 2017-06-14 12:29:47 +0000 | [diff] [blame] | 428 | IO.mapOptional("CompactNamespaces", Style.CompactNamespaces); |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 429 | IO.mapOptional("ConstructorInitializerAllOnOneLineOrOnePerLine", |
| 430 | Style.ConstructorInitializerAllOnOneLineOrOnePerLine); |
Daniel Jasper | 50d634b | 2014-10-28 16:53:38 +0000 | [diff] [blame] | 431 | IO.mapOptional("ConstructorInitializerIndentWidth", |
| 432 | Style.ConstructorInitializerIndentWidth); |
Birunthan Mohanathas | 35cfbd7 | 2015-06-28 14:51:17 +0000 | [diff] [blame] | 433 | IO.mapOptional("ContinuationIndentWidth", Style.ContinuationIndentWidth); |
| 434 | IO.mapOptional("Cpp11BracedListStyle", Style.Cpp11BracedListStyle); |
Daniel Jasper | 553d487 | 2014-06-17 12:40:34 +0000 | [diff] [blame] | 435 | IO.mapOptional("DerivePointerAlignment", Style.DerivePointerAlignment); |
Birunthan Mohanathas | 35cfbd7 | 2015-06-28 14:51:17 +0000 | [diff] [blame] | 436 | IO.mapOptional("DisableFormat", Style.DisableFormat); |
Daniel Jasper | b10cbc4 | 2013-07-10 14:02:49 +0000 | [diff] [blame] | 437 | IO.mapOptional("ExperimentalAutoDetectBinPacking", |
| 438 | Style.ExperimentalAutoDetectBinPacking); |
Krasimir Georgiev | 32eaa86 | 2017-03-01 15:35:39 +0000 | [diff] [blame] | 439 | IO.mapOptional("FixNamespaceComments", Style.FixNamespaceComments); |
Birunthan Mohanathas | 35cfbd7 | 2015-06-28 14:51:17 +0000 | [diff] [blame] | 440 | IO.mapOptional("ForEachMacros", Style.ForEachMacros); |
Eric Liu | 9d92c02 | 2018-05-14 19:51:33 +0000 | [diff] [blame] | 441 | IO.mapOptional("IncludeBlocks", Style.IncludeStyle.IncludeBlocks); |
| 442 | IO.mapOptional("IncludeCategories", Style.IncludeStyle.IncludeCategories); |
| 443 | IO.mapOptional("IncludeIsMainRegex", Style.IncludeStyle.IncludeIsMainRegex); |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 444 | IO.mapOptional("IndentCaseLabels", Style.IndentCaseLabels); |
Krasimir Georgiev | ad47c90 | 2017-08-30 14:34:57 +0000 | [diff] [blame] | 445 | IO.mapOptional("IndentPPDirectives", Style.IndentPPDirectives); |
Birunthan Mohanathas | 35cfbd7 | 2015-06-28 14:51:17 +0000 | [diff] [blame] | 446 | IO.mapOptional("IndentWidth", Style.IndentWidth); |
| 447 | IO.mapOptional("IndentWrappedFunctionNames", |
| 448 | Style.IndentWrappedFunctionNames); |
Krasimir Georgiev | 7e91b03 | 2018-10-05 17:19:26 +0000 | [diff] [blame] | 449 | IO.mapOptional("JavaImportGroups", Style.JavaImportGroups); |
Martin Probst | 0cd74ee | 2016-06-13 16:39:50 +0000 | [diff] [blame] | 450 | IO.mapOptional("JavaScriptQuotes", Style.JavaScriptQuotes); |
| 451 | IO.mapOptional("JavaScriptWrapImports", Style.JavaScriptWrapImports); |
Daniel Jasper | a26fc5c | 2014-03-21 13:43:14 +0000 | [diff] [blame] | 452 | IO.mapOptional("KeepEmptyLinesAtTheStartOfBlocks", |
| 453 | Style.KeepEmptyLinesAtTheStartOfBlocks); |
Birunthan Mohanathas | b001a0b | 2015-07-03 17:25:16 +0000 | [diff] [blame] | 454 | IO.mapOptional("MacroBlockBegin", Style.MacroBlockBegin); |
| 455 | IO.mapOptional("MacroBlockEnd", Style.MacroBlockEnd); |
Birunthan Mohanathas | 35cfbd7 | 2015-06-28 14:51:17 +0000 | [diff] [blame] | 456 | IO.mapOptional("MaxEmptyLinesToKeep", Style.MaxEmptyLinesToKeep); |
Daniel Jasper | 65ee347 | 2013-07-31 23:16:02 +0000 | [diff] [blame] | 457 | IO.mapOptional("NamespaceIndentation", Style.NamespaceIndentation); |
Ben Hamilton | 4dc658c | 2018-02-02 20:15:14 +0000 | [diff] [blame] | 458 | IO.mapOptional("ObjCBinPackProtocolList", Style.ObjCBinPackProtocolList); |
Daniel Jasper | 50d634b | 2014-10-28 16:53:38 +0000 | [diff] [blame] | 459 | IO.mapOptional("ObjCBlockIndentWidth", Style.ObjCBlockIndentWidth); |
Daniel Jasper | e9beea2 | 2014-01-28 15:20:33 +0000 | [diff] [blame] | 460 | IO.mapOptional("ObjCSpaceAfterProperty", Style.ObjCSpaceAfterProperty); |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 461 | IO.mapOptional("ObjCSpaceBeforeProtocolList", |
| 462 | Style.ObjCSpaceBeforeProtocolList); |
Manuel Klimek | 89628f6 | 2017-09-20 09:51:03 +0000 | [diff] [blame] | 463 | IO.mapOptional("PenaltyBreakAssignment", Style.PenaltyBreakAssignment); |
Daniel Jasper | 33b909c | 2013-10-25 14:29:37 +0000 | [diff] [blame] | 464 | IO.mapOptional("PenaltyBreakBeforeFirstCallParameter", |
| 465 | Style.PenaltyBreakBeforeFirstCallParameter); |
Alexander Kornienko | dd7ece5 | 2013-06-07 16:02:52 +0000 | [diff] [blame] | 466 | IO.mapOptional("PenaltyBreakComment", Style.PenaltyBreakComment); |
Daniel Jasper | 4e9678f | 2013-07-11 20:41:21 +0000 | [diff] [blame] | 467 | IO.mapOptional("PenaltyBreakFirstLessLess", |
| 468 | Style.PenaltyBreakFirstLessLess); |
Birunthan Mohanathas | 35cfbd7 | 2015-06-28 14:51:17 +0000 | [diff] [blame] | 469 | IO.mapOptional("PenaltyBreakString", Style.PenaltyBreakString); |
Francois Ferrand | 58e6fe5 | 2018-05-16 08:25:03 +0000 | [diff] [blame] | 470 | IO.mapOptional("PenaltyBreakTemplateDeclaration", |
| 471 | Style.PenaltyBreakTemplateDeclaration); |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 472 | IO.mapOptional("PenaltyExcessCharacter", Style.PenaltyExcessCharacter); |
| 473 | IO.mapOptional("PenaltyReturnTypeOnItsOwnLine", |
| 474 | Style.PenaltyReturnTypeOnItsOwnLine); |
Daniel Jasper | 553d487 | 2014-06-17 12:40:34 +0000 | [diff] [blame] | 475 | IO.mapOptional("PointerAlignment", Style.PointerAlignment); |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 476 | IO.mapOptional("RawStringFormats", Style.RawStringFormats); |
Daniel Jasper | a0a5039 | 2015-12-01 13:28:53 +0000 | [diff] [blame] | 477 | IO.mapOptional("ReflowComments", Style.ReflowComments); |
| 478 | IO.mapOptional("SortIncludes", Style.SortIncludes); |
Krasimir Georgiev | ac16a20 | 2017-06-23 11:46:03 +0000 | [diff] [blame] | 479 | IO.mapOptional("SortUsingDeclarations", Style.SortUsingDeclarations); |
Daniel Jasper | db986eb | 2014-09-03 07:37:29 +0000 | [diff] [blame] | 480 | IO.mapOptional("SpaceAfterCStyleCast", Style.SpaceAfterCStyleCast); |
Manuel Klimek | 89628f6 | 2017-09-20 09:51:03 +0000 | [diff] [blame] | 481 | IO.mapOptional("SpaceAfterTemplateKeyword", |
| 482 | Style.SpaceAfterTemplateKeyword); |
Daniel Jasper | d94bff3 | 2013-09-25 15:15:02 +0000 | [diff] [blame] | 483 | IO.mapOptional("SpaceBeforeAssignmentOperators", |
| 484 | Style.SpaceBeforeAssignmentOperators); |
Hans Wennborg | bfc3406 | 2018-06-14 08:01:09 +0000 | [diff] [blame] | 485 | IO.mapOptional("SpaceBeforeCpp11BracedList", |
| 486 | Style.SpaceBeforeCpp11BracedList); |
Francois Ferrand | 2a9ea78 | 2018-03-01 10:09:13 +0000 | [diff] [blame] | 487 | IO.mapOptional("SpaceBeforeCtorInitializerColon", |
| 488 | Style.SpaceBeforeCtorInitializerColon); |
| 489 | IO.mapOptional("SpaceBeforeInheritanceColon", |
| 490 | Style.SpaceBeforeInheritanceColon); |
Birunthan Mohanathas | 35cfbd7 | 2015-06-28 14:51:17 +0000 | [diff] [blame] | 491 | IO.mapOptional("SpaceBeforeParens", Style.SpaceBeforeParens); |
Francois Ferrand | 2a9ea78 | 2018-03-01 10:09:13 +0000 | [diff] [blame] | 492 | IO.mapOptional("SpaceBeforeRangeBasedForLoopColon", |
| 493 | Style.SpaceBeforeRangeBasedForLoopColon); |
Birunthan Mohanathas | 35cfbd7 | 2015-06-28 14:51:17 +0000 | [diff] [blame] | 494 | IO.mapOptional("SpaceInEmptyParentheses", Style.SpaceInEmptyParentheses); |
| 495 | IO.mapOptional("SpacesBeforeTrailingComments", |
| 496 | Style.SpacesBeforeTrailingComments); |
| 497 | IO.mapOptional("SpacesInAngles", Style.SpacesInAngles); |
| 498 | IO.mapOptional("SpacesInContainerLiterals", |
| 499 | Style.SpacesInContainerLiterals); |
| 500 | IO.mapOptional("SpacesInCStyleCastParentheses", |
| 501 | Style.SpacesInCStyleCastParentheses); |
| 502 | IO.mapOptional("SpacesInParentheses", Style.SpacesInParentheses); |
| 503 | IO.mapOptional("SpacesInSquareBrackets", Style.SpacesInSquareBrackets); |
| 504 | IO.mapOptional("Standard", Style.Standard); |
Francois Ferrand | 6f40e21 | 2018-10-02 16:37:51 +0000 | [diff] [blame] | 505 | IO.mapOptional("StatementMacros", Style.StatementMacros); |
Birunthan Mohanathas | 35cfbd7 | 2015-06-28 14:51:17 +0000 | [diff] [blame] | 506 | IO.mapOptional("TabWidth", Style.TabWidth); |
| 507 | IO.mapOptional("UseTab", Style.UseTab); |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 508 | } |
| 509 | }; |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 510 | |
Daniel Jasper | c1bc38e | 2015-09-29 14:57:55 +0000 | [diff] [blame] | 511 | template <> struct MappingTraits<FormatStyle::BraceWrappingFlags> { |
| 512 | static void mapping(IO &IO, FormatStyle::BraceWrappingFlags &Wrapping) { |
| 513 | IO.mapOptional("AfterClass", Wrapping.AfterClass); |
| 514 | IO.mapOptional("AfterControlStatement", Wrapping.AfterControlStatement); |
| 515 | IO.mapOptional("AfterEnum", Wrapping.AfterEnum); |
| 516 | IO.mapOptional("AfterFunction", Wrapping.AfterFunction); |
| 517 | IO.mapOptional("AfterNamespace", Wrapping.AfterNamespace); |
| 518 | IO.mapOptional("AfterObjCDeclaration", Wrapping.AfterObjCDeclaration); |
| 519 | IO.mapOptional("AfterStruct", Wrapping.AfterStruct); |
| 520 | IO.mapOptional("AfterUnion", Wrapping.AfterUnion); |
Krasimir Georgiev | d6ce937 | 2017-09-15 11:23:50 +0000 | [diff] [blame] | 521 | IO.mapOptional("AfterExternBlock", Wrapping.AfterExternBlock); |
Daniel Jasper | c1bc38e | 2015-09-29 14:57:55 +0000 | [diff] [blame] | 522 | IO.mapOptional("BeforeCatch", Wrapping.BeforeCatch); |
| 523 | IO.mapOptional("BeforeElse", Wrapping.BeforeElse); |
| 524 | IO.mapOptional("IndentBraces", Wrapping.IndentBraces); |
Francois Ferrand | ad72256 | 2017-06-30 20:25:55 +0000 | [diff] [blame] | 525 | IO.mapOptional("SplitEmptyFunction", Wrapping.SplitEmptyFunction); |
| 526 | IO.mapOptional("SplitEmptyRecord", Wrapping.SplitEmptyRecord); |
| 527 | IO.mapOptional("SplitEmptyNamespace", Wrapping.SplitEmptyNamespace); |
Daniel Jasper | c1bc38e | 2015-09-29 14:57:55 +0000 | [diff] [blame] | 528 | } |
| 529 | }; |
| 530 | |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 531 | template <> struct MappingTraits<FormatStyle::RawStringFormat> { |
| 532 | static void mapping(IO &IO, FormatStyle::RawStringFormat &Format) { |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 533 | IO.mapOptional("Language", Format.Language); |
Krasimir Georgiev | 4527f13 | 2018-01-17 12:24:59 +0000 | [diff] [blame] | 534 | IO.mapOptional("Delimiters", Format.Delimiters); |
Krasimir Georgiev | 2537e22 | 2018-01-17 16:17:26 +0000 | [diff] [blame] | 535 | IO.mapOptional("EnclosingFunctions", Format.EnclosingFunctions); |
Krasimir Georgiev | 412ed09 | 2018-01-19 16:18:47 +0000 | [diff] [blame] | 536 | IO.mapOptional("CanonicalDelimiter", Format.CanonicalDelimiter); |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 537 | IO.mapOptional("BasedOnStyle", Format.BasedOnStyle); |
| 538 | } |
| 539 | }; |
| 540 | |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 541 | // Allows to read vector<FormatStyle> while keeping default values. |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 542 | // IO.getContext() should contain a pointer to the FormatStyle structure, that |
| 543 | // will be used to get default values for missing keys. |
| 544 | // If the first element has no Language specified, it will be treated as the |
| 545 | // default one for the following elements. |
Jacques Pienaar | fc27511 | 2015-02-18 23:48:37 +0000 | [diff] [blame] | 546 | template <> struct DocumentListTraits<std::vector<FormatStyle>> { |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 547 | static size_t size(IO &IO, std::vector<FormatStyle> &Seq) { |
| 548 | return Seq.size(); |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 549 | } |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 550 | static FormatStyle &element(IO &IO, std::vector<FormatStyle> &Seq, |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 551 | size_t Index) { |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 552 | if (Index >= Seq.size()) { |
| 553 | assert(Index == Seq.size()); |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 554 | FormatStyle Template; |
Krasimir Georgiev | 1696bb6 | 2017-11-09 15:12:17 +0000 | [diff] [blame] | 555 | if (!Seq.empty() && Seq[0].Language == FormatStyle::LK_None) { |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 556 | Template = Seq[0]; |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 557 | } else { |
Daniel Jasper | b05a81d | 2014-05-09 13:11:16 +0000 | [diff] [blame] | 558 | Template = *((const FormatStyle *)IO.getContext()); |
Alexander Kornienko | 6d2c88e | 2013-12-10 10:30:34 +0000 | [diff] [blame] | 559 | Template.Language = FormatStyle::LK_None; |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 560 | } |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 561 | Seq.resize(Index + 1, Template); |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 562 | } |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 563 | return Seq[Index]; |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 564 | } |
| 565 | }; |
Daniel Jasper | d89ae9d | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 566 | } // namespace yaml |
| 567 | } // namespace llvm |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 568 | |
Daniel Jasper | f793511 | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 569 | namespace clang { |
| 570 | namespace format { |
| 571 | |
Rafael Espindola | 6d0d89b | 2014-06-12 03:31:26 +0000 | [diff] [blame] | 572 | const std::error_category &getParseCategory() { |
Benjamin Kramer | f76861c | 2018-03-20 21:52:19 +0000 | [diff] [blame] | 573 | static const ParseErrorCategory C{}; |
Rafael Espindola | d013670 | 2014-06-12 02:50:04 +0000 | [diff] [blame] | 574 | return C; |
| 575 | } |
| 576 | std::error_code make_error_code(ParseError e) { |
Rafael Espindola | 6d0d89b | 2014-06-12 03:31:26 +0000 | [diff] [blame] | 577 | return std::error_code(static_cast<int>(e), getParseCategory()); |
Rafael Espindola | d013670 | 2014-06-12 02:50:04 +0000 | [diff] [blame] | 578 | } |
| 579 | |
Antonio Maiorano | 3adfb6a | 2017-01-17 00:12:27 +0000 | [diff] [blame] | 580 | inline llvm::Error make_string_error(const llvm::Twine &Message) { |
| 581 | return llvm::make_error<llvm::StringError>(Message, |
| 582 | llvm::inconvertibleErrorCode()); |
| 583 | } |
| 584 | |
Reid Kleckner | 6432d45 | 2016-10-19 23:39:55 +0000 | [diff] [blame] | 585 | const char *ParseErrorCategory::name() const noexcept { |
Rafael Espindola | d013670 | 2014-06-12 02:50:04 +0000 | [diff] [blame] | 586 | return "clang-format.parse_error"; |
| 587 | } |
| 588 | |
| 589 | std::string ParseErrorCategory::message(int EV) const { |
| 590 | switch (static_cast<ParseError>(EV)) { |
| 591 | case ParseError::Success: |
| 592 | return "Success"; |
| 593 | case ParseError::Error: |
| 594 | return "Invalid argument"; |
| 595 | case ParseError::Unsuitable: |
| 596 | return "Unsuitable"; |
| 597 | } |
Saleem Abdulrasool | fbfbaf6 | 2014-06-12 19:33:26 +0000 | [diff] [blame] | 598 | llvm_unreachable("unexpected parse error"); |
Rafael Espindola | d013670 | 2014-06-12 02:50:04 +0000 | [diff] [blame] | 599 | } |
| 600 | |
Daniel Jasper | c1bc38e | 2015-09-29 14:57:55 +0000 | [diff] [blame] | 601 | static FormatStyle expandPresets(const FormatStyle &Style) { |
Daniel Jasper | 55bbe66 | 2015-10-07 04:06:10 +0000 | [diff] [blame] | 602 | if (Style.BreakBeforeBraces == FormatStyle::BS_Custom) |
| 603 | return Style; |
Daniel Jasper | c1bc38e | 2015-09-29 14:57:55 +0000 | [diff] [blame] | 604 | FormatStyle Expanded = Style; |
Manuel Klimek | 89628f6 | 2017-09-20 09:51:03 +0000 | [diff] [blame] | 605 | Expanded.BraceWrapping = {false, false, false, false, false, |
| 606 | false, false, false, false, false, |
| 607 | false, false, true, true, true}; |
Daniel Jasper | c1bc38e | 2015-09-29 14:57:55 +0000 | [diff] [blame] | 608 | switch (Style.BreakBeforeBraces) { |
| 609 | case FormatStyle::BS_Linux: |
| 610 | Expanded.BraceWrapping.AfterClass = true; |
| 611 | Expanded.BraceWrapping.AfterFunction = true; |
| 612 | Expanded.BraceWrapping.AfterNamespace = true; |
Daniel Jasper | c1bc38e | 2015-09-29 14:57:55 +0000 | [diff] [blame] | 613 | break; |
| 614 | case FormatStyle::BS_Mozilla: |
| 615 | Expanded.BraceWrapping.AfterClass = true; |
| 616 | Expanded.BraceWrapping.AfterEnum = true; |
| 617 | Expanded.BraceWrapping.AfterFunction = true; |
| 618 | Expanded.BraceWrapping.AfterStruct = true; |
| 619 | Expanded.BraceWrapping.AfterUnion = true; |
Krasimir Georgiev | d6ce937 | 2017-09-15 11:23:50 +0000 | [diff] [blame] | 620 | Expanded.BraceWrapping.AfterExternBlock = true; |
Sylvestre Ledru | 82c9a0e | 2017-09-13 20:03:29 +0000 | [diff] [blame] | 621 | Expanded.BraceWrapping.SplitEmptyFunction = true; |
Francois Ferrand | ad72256 | 2017-06-30 20:25:55 +0000 | [diff] [blame] | 622 | Expanded.BraceWrapping.SplitEmptyRecord = false; |
Daniel Jasper | c1bc38e | 2015-09-29 14:57:55 +0000 | [diff] [blame] | 623 | break; |
| 624 | case FormatStyle::BS_Stroustrup: |
| 625 | Expanded.BraceWrapping.AfterFunction = true; |
| 626 | Expanded.BraceWrapping.BeforeCatch = true; |
| 627 | Expanded.BraceWrapping.BeforeElse = true; |
| 628 | break; |
| 629 | case FormatStyle::BS_Allman: |
| 630 | Expanded.BraceWrapping.AfterClass = true; |
| 631 | Expanded.BraceWrapping.AfterControlStatement = true; |
| 632 | Expanded.BraceWrapping.AfterEnum = true; |
| 633 | Expanded.BraceWrapping.AfterFunction = true; |
| 634 | Expanded.BraceWrapping.AfterNamespace = true; |
| 635 | Expanded.BraceWrapping.AfterObjCDeclaration = true; |
| 636 | Expanded.BraceWrapping.AfterStruct = true; |
Krasimir Georgiev | d6ce937 | 2017-09-15 11:23:50 +0000 | [diff] [blame] | 637 | Expanded.BraceWrapping.AfterExternBlock = true; |
Daniel Jasper | c1bc38e | 2015-09-29 14:57:55 +0000 | [diff] [blame] | 638 | Expanded.BraceWrapping.BeforeCatch = true; |
| 639 | Expanded.BraceWrapping.BeforeElse = true; |
| 640 | break; |
| 641 | case FormatStyle::BS_GNU: |
Manuel Klimek | 89628f6 | 2017-09-20 09:51:03 +0000 | [diff] [blame] | 642 | Expanded.BraceWrapping = {true, true, true, true, true, true, true, true, |
| 643 | true, true, true, true, true, true, true}; |
Daniel Jasper | c1bc38e | 2015-09-29 14:57:55 +0000 | [diff] [blame] | 644 | break; |
| 645 | case FormatStyle::BS_WebKit: |
| 646 | Expanded.BraceWrapping.AfterFunction = true; |
| 647 | break; |
| 648 | default: |
| 649 | break; |
| 650 | } |
| 651 | return Expanded; |
| 652 | } |
| 653 | |
Jordan Rupprecht | 8bd97e7 | 2019-02-28 19:16:45 +0000 | [diff] [blame] | 654 | FormatStyle getLLVMStyle(FormatStyle::LanguageKind Language) { |
Daniel Jasper | f793511 | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 655 | FormatStyle LLVMStyle; |
Jordan Rupprecht | 8bd97e7 | 2019-02-28 19:16:45 +0000 | [diff] [blame] | 656 | LLVMStyle.Language = Language; |
Daniel Jasper | f793511 | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 657 | LLVMStyle.AccessModifierOffset = -2; |
Daniel Jasper | 7fdbb3f | 2017-05-08 15:08:00 +0000 | [diff] [blame] | 658 | LLVMStyle.AlignEscapedNewlines = FormatStyle::ENAS_Right; |
Daniel Jasper | 6501f7e | 2015-10-27 12:38:37 +0000 | [diff] [blame] | 659 | LLVMStyle.AlignAfterOpenBracket = FormatStyle::BAS_Align; |
Daniel Jasper | 3219e43 | 2014-12-02 13:24:51 +0000 | [diff] [blame] | 660 | LLVMStyle.AlignOperands = true; |
Daniel Jasper | 552f4a7 | 2013-07-31 23:55:15 +0000 | [diff] [blame] | 661 | LLVMStyle.AlignTrailingComments = true; |
Daniel Jasper | a4499133 | 2015-04-29 13:06:49 +0000 | [diff] [blame] | 662 | LLVMStyle.AlignConsecutiveAssignments = false; |
Daniel Jasper | e12597c | 2015-10-01 10:06:54 +0000 | [diff] [blame] | 663 | LLVMStyle.AlignConsecutiveDeclarations = false; |
Paul Hoad | c6deae4 | 2019-03-23 14:37:58 +0000 | [diff] [blame] | 664 | LLVMStyle.AllowAllArgumentsOnNextLine = true; |
| 665 | LLVMStyle.AllowAllConstructorInitializersOnNextLine = true; |
Daniel Jasper | f7db433 | 2013-01-29 16:03:49 +0000 | [diff] [blame] | 666 | LLVMStyle.AllowAllParametersOfDeclarationOnNextLine = true; |
Daniel Jasper | d74cf40 | 2014-04-08 12:46:38 +0000 | [diff] [blame] | 667 | LLVMStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_All; |
Daniel Jasper | 17605d3 | 2014-05-14 09:33:35 +0000 | [diff] [blame] | 668 | LLVMStyle.AllowShortBlocksOnASingleLine = false; |
Daniel Jasper | b87899b | 2014-09-10 13:11:45 +0000 | [diff] [blame] | 669 | LLVMStyle.AllowShortCaseLabelsOnASingleLine = false; |
Paul Hoad | 15000a1 | 2019-03-13 08:26:39 +0000 | [diff] [blame] | 670 | LLVMStyle.AllowShortIfStatementsOnASingleLine = FormatStyle::SIS_Never; |
Ronald Wampler | a83e2db | 2019-03-26 20:18:14 +0000 | [diff] [blame] | 671 | LLVMStyle.AllowShortLambdasOnASingleLine = FormatStyle::SLS_All; |
Daniel Jasper | 3a685df | 2013-05-16 12:12:21 +0000 | [diff] [blame] | 672 | LLVMStyle.AllowShortLoopsOnASingleLine = false; |
Zachary Turner | 448592e | 2015-12-18 22:20:15 +0000 | [diff] [blame] | 673 | LLVMStyle.AlwaysBreakAfterReturnType = FormatStyle::RTBS_None; |
Birunthan Mohanathas | a0388a8 | 2015-06-29 15:30:42 +0000 | [diff] [blame] | 674 | LLVMStyle.AlwaysBreakAfterDefinitionReturnType = FormatStyle::DRTBS_None; |
Alexander Kornienko | 5861171 | 2013-07-04 12:02:44 +0000 | [diff] [blame] | 675 | LLVMStyle.AlwaysBreakBeforeMultilineStrings = false; |
Francois Ferrand | 58e6fe5 | 2018-05-16 08:25:03 +0000 | [diff] [blame] | 676 | LLVMStyle.AlwaysBreakTemplateDeclarations = FormatStyle::BTDS_MultiLine; |
Daniel Jasper | 18210d7 | 2014-10-09 09:52:05 +0000 | [diff] [blame] | 677 | LLVMStyle.BinPackArguments = true; |
Francois Ferrand | e56a829 | 2017-06-14 12:29:47 +0000 | [diff] [blame] | 678 | LLVMStyle.BinPackParameters = true; |
Daniel Jasper | ac043c9 | 2014-09-15 11:11:00 +0000 | [diff] [blame] | 679 | LLVMStyle.BreakBeforeBinaryOperators = FormatStyle::BOS_None; |
Daniel Jasper | 165b29e | 2013-11-08 00:57:11 +0000 | [diff] [blame] | 680 | LLVMStyle.BreakBeforeTernaryOperators = true; |
Daniel Jasper | e33d4af | 2013-07-26 16:56:36 +0000 | [diff] [blame] | 681 | LLVMStyle.BreakBeforeBraces = FormatStyle::BS_Attach; |
Manuel Klimek | 89628f6 | 2017-09-20 09:51:03 +0000 | [diff] [blame] | 682 | LLVMStyle.BraceWrapping = {false, false, false, false, false, |
| 683 | false, false, false, false, false, |
| 684 | false, false, true, true, true}; |
Nico Weber | 2cd92f1 | 2015-10-15 16:03:01 +0000 | [diff] [blame] | 685 | LLVMStyle.BreakAfterJavaFieldAnnotations = false; |
Francois Ferrand | a6b6d51 | 2017-05-24 11:36:58 +0000 | [diff] [blame] | 686 | LLVMStyle.BreakConstructorInitializers = FormatStyle::BCIS_BeforeColon; |
Francois Ferrand | 6bb103f | 2018-06-11 14:41:26 +0000 | [diff] [blame] | 687 | LLVMStyle.BreakInheritanceList = FormatStyle::BILS_BeforeColon; |
Daniel Jasper | e1a7b76 | 2016-02-01 11:21:02 +0000 | [diff] [blame] | 688 | LLVMStyle.BreakStringLiterals = true; |
Alexander Kornienko | c860266 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 689 | LLVMStyle.ColumnLimit = 80; |
Daniel Jasper | e1e4319 | 2014-04-01 12:55:11 +0000 | [diff] [blame] | 690 | LLVMStyle.CommentPragmas = "^ IWYU pragma:"; |
Francois Ferrand | e56a829 | 2017-06-14 12:29:47 +0000 | [diff] [blame] | 691 | LLVMStyle.CompactNamespaces = false; |
Alexander Kornienko | c860266 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 692 | LLVMStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = false; |
Daniel Jasper | cdaffa4 | 2013-08-13 10:58:30 +0000 | [diff] [blame] | 693 | LLVMStyle.ConstructorInitializerIndentWidth = 4; |
Daniel Jasper | e1e4319 | 2014-04-01 12:55:11 +0000 | [diff] [blame] | 694 | LLVMStyle.ContinuationIndentWidth = 4; |
Chandler Carruth | f8b7266 | 2014-03-02 12:37:31 +0000 | [diff] [blame] | 695 | LLVMStyle.Cpp11BracedListStyle = true; |
Daniel Jasper | 553d487 | 2014-06-17 12:40:34 +0000 | [diff] [blame] | 696 | LLVMStyle.DerivePointerAlignment = false; |
Daniel Jasper | b10cbc4 | 2013-07-10 14:02:49 +0000 | [diff] [blame] | 697 | LLVMStyle.ExperimentalAutoDetectBinPacking = false; |
Krasimir Georgiev | 32eaa86 | 2017-03-01 15:35:39 +0000 | [diff] [blame] | 698 | LLVMStyle.FixNamespaceComments = true; |
Daniel Jasper | e1e4319 | 2014-04-01 12:55:11 +0000 | [diff] [blame] | 699 | LLVMStyle.ForEachMacros.push_back("foreach"); |
| 700 | LLVMStyle.ForEachMacros.push_back("Q_FOREACH"); |
| 701 | LLVMStyle.ForEachMacros.push_back("BOOST_FOREACH"); |
Eric Liu | 9d92c02 | 2018-05-14 19:51:33 +0000 | [diff] [blame] | 702 | LLVMStyle.IncludeStyle.IncludeCategories = { |
| 703 | {"^\"(llvm|llvm-c|clang|clang-c)/", 2}, |
| 704 | {"^(<|\"(gtest|gmock|isl|json)/)", 3}, |
| 705 | {".*", 1}}; |
| 706 | LLVMStyle.IncludeStyle.IncludeIsMainRegex = "(Test)?$"; |
| 707 | LLVMStyle.IncludeStyle.IncludeBlocks = tooling::IncludeStyle::IBS_Preserve; |
Alexander Kornienko | c860266 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 708 | LLVMStyle.IndentCaseLabels = false; |
Krasimir Georgiev | ad47c90 | 2017-08-30 14:34:57 +0000 | [diff] [blame] | 709 | LLVMStyle.IndentPPDirectives = FormatStyle::PPDIS_None; |
Daniel Jasper | c75e1ef | 2014-07-09 08:42:42 +0000 | [diff] [blame] | 710 | LLVMStyle.IndentWrappedFunctionNames = false; |
Daniel Jasper | e33d4af | 2013-07-26 16:56:36 +0000 | [diff] [blame] | 711 | LLVMStyle.IndentWidth = 2; |
Martin Probst | fb2342d | 2016-06-13 17:50:10 +0000 | [diff] [blame] | 712 | LLVMStyle.JavaScriptQuotes = FormatStyle::JSQS_Leave; |
| 713 | LLVMStyle.JavaScriptWrapImports = true; |
Alexander Kornienko | ebb43ca | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 714 | LLVMStyle.TabWidth = 8; |
Alexander Kornienko | c860266 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 715 | LLVMStyle.MaxEmptyLinesToKeep = 1; |
Daniel Jasper | a26fc5c | 2014-03-21 13:43:14 +0000 | [diff] [blame] | 716 | LLVMStyle.KeepEmptyLinesAtTheStartOfBlocks = true; |
Daniel Jasper | 65ee347 | 2013-07-31 23:16:02 +0000 | [diff] [blame] | 717 | LLVMStyle.NamespaceIndentation = FormatStyle::NI_None; |
Ben Hamilton | 4dc658c | 2018-02-02 20:15:14 +0000 | [diff] [blame] | 718 | LLVMStyle.ObjCBinPackProtocolList = FormatStyle::BPS_Auto; |
Daniel Jasper | 50d634b | 2014-10-28 16:53:38 +0000 | [diff] [blame] | 719 | LLVMStyle.ObjCBlockIndentWidth = 2; |
Daniel Jasper | e9beea2 | 2014-01-28 15:20:33 +0000 | [diff] [blame] | 720 | LLVMStyle.ObjCSpaceAfterProperty = false; |
Nico Weber | a608775 | 2013-01-10 20:12:55 +0000 | [diff] [blame] | 721 | LLVMStyle.ObjCSpaceBeforeProtocolList = true; |
Daniel Jasper | 553d487 | 2014-06-17 12:40:34 +0000 | [diff] [blame] | 722 | LLVMStyle.PointerAlignment = FormatStyle::PAS_Right; |
Alexander Kornienko | c860266 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 723 | LLVMStyle.SpacesBeforeTrailingComments = 1; |
Chandler Carruth | f8b7266 | 2014-03-02 12:37:31 +0000 | [diff] [blame] | 724 | LLVMStyle.Standard = FormatStyle::LS_Cpp11; |
Alexander Kornienko | 3c3d09c | 2013-09-27 16:14:22 +0000 | [diff] [blame] | 725 | LLVMStyle.UseTab = FormatStyle::UT_Never; |
Daniel Jasper | a0a5039 | 2015-12-01 13:28:53 +0000 | [diff] [blame] | 726 | LLVMStyle.ReflowComments = true; |
Daniel Jasper | b55acad | 2013-08-20 12:36:34 +0000 | [diff] [blame] | 727 | LLVMStyle.SpacesInParentheses = false; |
Daniel Jasper | ad981f8 | 2014-08-26 11:41:14 +0000 | [diff] [blame] | 728 | LLVMStyle.SpacesInSquareBrackets = false; |
Daniel Jasper | b55acad | 2013-08-20 12:36:34 +0000 | [diff] [blame] | 729 | LLVMStyle.SpaceInEmptyParentheses = false; |
Daniel Jasper | b2e10a5 | 2014-01-15 15:09:08 +0000 | [diff] [blame] | 730 | LLVMStyle.SpacesInContainerLiterals = true; |
Daniel Jasper | b55acad | 2013-08-20 12:36:34 +0000 | [diff] [blame] | 731 | LLVMStyle.SpacesInCStyleCastParentheses = false; |
Daniel Jasper | db986eb | 2014-09-03 07:37:29 +0000 | [diff] [blame] | 732 | LLVMStyle.SpaceAfterCStyleCast = false; |
Sylvestre Ledru | 83bbd57 | 2016-08-09 14:24:40 +0000 | [diff] [blame] | 733 | LLVMStyle.SpaceAfterTemplateKeyword = true; |
Francois Ferrand | 2a9ea78 | 2018-03-01 10:09:13 +0000 | [diff] [blame] | 734 | LLVMStyle.SpaceBeforeCtorInitializerColon = true; |
| 735 | LLVMStyle.SpaceBeforeInheritanceColon = true; |
Alexander Kornienko | fdca83d | 2013-12-10 10:18:34 +0000 | [diff] [blame] | 736 | LLVMStyle.SpaceBeforeParens = FormatStyle::SBPO_ControlStatements; |
Francois Ferrand | 2a9ea78 | 2018-03-01 10:09:13 +0000 | [diff] [blame] | 737 | LLVMStyle.SpaceBeforeRangeBasedForLoopColon = true; |
Daniel Jasper | d94bff3 | 2013-09-25 15:15:02 +0000 | [diff] [blame] | 738 | LLVMStyle.SpaceBeforeAssignmentOperators = true; |
Hans Wennborg | bfc3406 | 2018-06-14 08:01:09 +0000 | [diff] [blame] | 739 | LLVMStyle.SpaceBeforeCpp11BracedList = false; |
Daniel Jasper | dd978ae | 2013-10-29 14:52:02 +0000 | [diff] [blame] | 740 | LLVMStyle.SpacesInAngles = false; |
Daniel Jasper | 4e9678f | 2013-07-11 20:41:21 +0000 | [diff] [blame] | 741 | |
Francois Ferrand | 9976efa | 2017-05-22 08:28:17 +0000 | [diff] [blame] | 742 | LLVMStyle.PenaltyBreakAssignment = prec::Assignment; |
Daniel Jasper | 19a541e | 2013-12-19 16:45:34 +0000 | [diff] [blame] | 743 | LLVMStyle.PenaltyBreakComment = 300; |
Alexander Kornienko | fe7a57f | 2013-12-10 15:42:15 +0000 | [diff] [blame] | 744 | LLVMStyle.PenaltyBreakFirstLessLess = 120; |
| 745 | LLVMStyle.PenaltyBreakString = 1000; |
| 746 | LLVMStyle.PenaltyExcessCharacter = 1000000; |
Daniel Jasper | 4e9678f | 2013-07-11 20:41:21 +0000 | [diff] [blame] | 747 | LLVMStyle.PenaltyReturnTypeOnItsOwnLine = 60; |
Daniel Jasper | 33b909c | 2013-10-25 14:29:37 +0000 | [diff] [blame] | 748 | LLVMStyle.PenaltyBreakBeforeFirstCallParameter = 19; |
Francois Ferrand | 58e6fe5 | 2018-05-16 08:25:03 +0000 | [diff] [blame] | 749 | LLVMStyle.PenaltyBreakTemplateDeclaration = prec::Relational; |
Daniel Jasper | 4e9678f | 2013-07-11 20:41:21 +0000 | [diff] [blame] | 750 | |
Daniel Jasper | c64b09a | 2014-05-22 15:12:22 +0000 | [diff] [blame] | 751 | LLVMStyle.DisableFormat = false; |
Daniel Jasper | da44677 | 2015-11-16 12:38:56 +0000 | [diff] [blame] | 752 | LLVMStyle.SortIncludes = true; |
Krasimir Georgiev | ac16a20 | 2017-06-23 11:46:03 +0000 | [diff] [blame] | 753 | LLVMStyle.SortUsingDeclarations = true; |
Francois Ferrand | 6f40e21 | 2018-10-02 16:37:51 +0000 | [diff] [blame] | 754 | LLVMStyle.StatementMacros.push_back("Q_UNUSED"); |
| 755 | LLVMStyle.StatementMacros.push_back("QT_REQUIRE_VERSION"); |
Daniel Jasper | c64b09a | 2014-05-22 15:12:22 +0000 | [diff] [blame] | 756 | |
Jordan Rupprecht | 7f51416 | 2019-03-01 00:12:18 +0000 | [diff] [blame] | 757 | // Defaults that differ when not C++. |
| 758 | if (Language == FormatStyle::LK_TableGen) { |
| 759 | LLVMStyle.SpacesInContainerLiterals = false; |
| 760 | } |
| 761 | |
Daniel Jasper | f793511 | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 762 | return LLVMStyle; |
| 763 | } |
| 764 | |
Nico Weber | 514ecc8 | 2014-02-02 20:50:45 +0000 | [diff] [blame] | 765 | FormatStyle getGoogleStyle(FormatStyle::LanguageKind Language) { |
Krasimir Georgiev | 26b144c | 2017-07-03 15:05:14 +0000 | [diff] [blame] | 766 | if (Language == FormatStyle::LK_TextProto) { |
| 767 | FormatStyle GoogleStyle = getGoogleStyle(FormatStyle::LK_Proto); |
| 768 | GoogleStyle.Language = FormatStyle::LK_TextProto; |
Krasimir Georgiev | eda222e | 2018-01-24 11:18:39 +0000 | [diff] [blame] | 769 | |
Krasimir Georgiev | 26b144c | 2017-07-03 15:05:14 +0000 | [diff] [blame] | 770 | return GoogleStyle; |
| 771 | } |
| 772 | |
Jordan Rupprecht | 8bd97e7 | 2019-02-28 19:16:45 +0000 | [diff] [blame] | 773 | FormatStyle GoogleStyle = getLLVMStyle(Language); |
Nico Weber | 514ecc8 | 2014-02-02 20:50:45 +0000 | [diff] [blame] | 774 | |
Daniel Jasper | f793511 | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 775 | GoogleStyle.AccessModifierOffset = -1; |
Daniel Jasper | 7fdbb3f | 2017-05-08 15:08:00 +0000 | [diff] [blame] | 776 | GoogleStyle.AlignEscapedNewlines = FormatStyle::ENAS_Left; |
Paul Hoad | 15000a1 | 2019-03-13 08:26:39 +0000 | [diff] [blame] | 777 | GoogleStyle.AllowShortIfStatementsOnASingleLine = |
| 778 | FormatStyle::SIS_WithoutElse; |
Daniel Jasper | 5bd0b9e | 2013-05-23 18:05:18 +0000 | [diff] [blame] | 779 | GoogleStyle.AllowShortLoopsOnASingleLine = true; |
Alexander Kornienko | 5861171 | 2013-07-04 12:02:44 +0000 | [diff] [blame] | 780 | GoogleStyle.AlwaysBreakBeforeMultilineStrings = true; |
Francois Ferrand | 58e6fe5 | 2018-05-16 08:25:03 +0000 | [diff] [blame] | 781 | GoogleStyle.AlwaysBreakTemplateDeclarations = FormatStyle::BTDS_Yes; |
Alexander Kornienko | c860266 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 782 | GoogleStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true; |
Daniel Jasper | 553d487 | 2014-06-17 12:40:34 +0000 | [diff] [blame] | 783 | GoogleStyle.DerivePointerAlignment = true; |
Eric Liu | 9d92c02 | 2018-05-14 19:51:33 +0000 | [diff] [blame] | 784 | GoogleStyle.IncludeStyle.IncludeCategories = { |
Krasimir Georgiev | a84e787 | 2017-09-26 14:58:29 +0000 | [diff] [blame] | 785 | {"^<ext/.*\\.h>", 2}, {"^<.*\\.h>", 1}, {"^<.*", 2}, {".*", 3}}; |
Eric Liu | 9d92c02 | 2018-05-14 19:51:33 +0000 | [diff] [blame] | 786 | GoogleStyle.IncludeStyle.IncludeIsMainRegex = "([-_](test|unittest))?$"; |
Eric Liu | 0f4d5f8 | 2019-04-03 09:25:16 +0000 | [diff] [blame] | 787 | GoogleStyle.IncludeStyle.IncludeBlocks = tooling::IncludeStyle::IBS_Regroup; |
Alexander Kornienko | c860266 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 788 | GoogleStyle.IndentCaseLabels = true; |
Daniel Jasper | a26fc5c | 2014-03-21 13:43:14 +0000 | [diff] [blame] | 789 | GoogleStyle.KeepEmptyLinesAtTheStartOfBlocks = false; |
Ben Hamilton | 3a47fdd | 2018-02-08 01:49:10 +0000 | [diff] [blame] | 790 | GoogleStyle.ObjCBinPackProtocolList = FormatStyle::BPS_Never; |
Daniel Jasper | e9beea2 | 2014-01-28 15:20:33 +0000 | [diff] [blame] | 791 | GoogleStyle.ObjCSpaceAfterProperty = false; |
Ben Hamilton | f84f118 | 2018-01-18 18:37:16 +0000 | [diff] [blame] | 792 | GoogleStyle.ObjCSpaceBeforeProtocolList = true; |
Daniel Jasper | 553d487 | 2014-06-17 12:40:34 +0000 | [diff] [blame] | 793 | GoogleStyle.PointerAlignment = FormatStyle::PAS_Left; |
Krasimir Georgiev | 5559cc3 | 2018-04-25 14:56:19 +0000 | [diff] [blame] | 794 | GoogleStyle.RawStringFormats = { |
Krasimir Georgiev | 4527f13 | 2018-01-17 12:24:59 +0000 | [diff] [blame] | 795 | { |
Krasimir Georgiev | 5559cc3 | 2018-04-25 14:56:19 +0000 | [diff] [blame] | 796 | FormatStyle::LK_Cpp, |
| 797 | /*Delimiters=*/ |
| 798 | { |
| 799 | "cc", |
| 800 | "CC", |
| 801 | "cpp", |
| 802 | "Cpp", |
| 803 | "CPP", |
| 804 | "c++", |
| 805 | "C++", |
| 806 | }, |
| 807 | /*EnclosingFunctionNames=*/ |
| 808 | {}, |
| 809 | /*CanonicalDelimiter=*/"", |
| 810 | /*BasedOnStyle=*/"google", |
Krasimir Georgiev | 4527f13 | 2018-01-17 12:24:59 +0000 | [diff] [blame] | 811 | }, |
Krasimir Georgiev | 5559cc3 | 2018-04-25 14:56:19 +0000 | [diff] [blame] | 812 | { |
| 813 | FormatStyle::LK_TextProto, |
| 814 | /*Delimiters=*/ |
| 815 | { |
| 816 | "pb", |
| 817 | "PB", |
| 818 | "proto", |
| 819 | "PROTO", |
| 820 | }, |
| 821 | /*EnclosingFunctionNames=*/ |
Krasimir Georgiev | 42948e3 | 2018-06-26 12:00:14 +0000 | [diff] [blame] | 822 | { |
Krasimir Georgiev | 42948e3 | 2018-06-26 12:00:14 +0000 | [diff] [blame] | 823 | "EqualsProto", |
Krasimir Georgiev | 61f46f2 | 2018-06-29 14:25:25 +0000 | [diff] [blame] | 824 | "EquivToProto", |
Krasimir Georgiev | ce0b8d6 | 2018-08-01 12:35:23 +0000 | [diff] [blame] | 825 | "PARSE_PARTIAL_TEXT_PROTO", |
Krasimir Georgiev | 61f46f2 | 2018-06-29 14:25:25 +0000 | [diff] [blame] | 826 | "PARSE_TEST_PROTO", |
| 827 | "PARSE_TEXT_PROTO", |
| 828 | "ParseTextOrDie", |
Krasimir Georgiev | ce0b8d6 | 2018-08-01 12:35:23 +0000 | [diff] [blame] | 829 | "ParseTextProtoOrDie", |
Krasimir Georgiev | 42948e3 | 2018-06-26 12:00:14 +0000 | [diff] [blame] | 830 | }, |
Krasimir Georgiev | 5559cc3 | 2018-04-25 14:56:19 +0000 | [diff] [blame] | 831 | /*CanonicalDelimiter=*/"", |
| 832 | /*BasedOnStyle=*/"google", |
| 833 | }, |
| 834 | }; |
Alexander Kornienko | c860266 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 835 | GoogleStyle.SpacesBeforeTrailingComments = 2; |
| 836 | GoogleStyle.Standard = FormatStyle::LS_Auto; |
Daniel Jasper | 4e9678f | 2013-07-11 20:41:21 +0000 | [diff] [blame] | 837 | |
Daniel Jasper | 4e9678f | 2013-07-11 20:41:21 +0000 | [diff] [blame] | 838 | GoogleStyle.PenaltyReturnTypeOnItsOwnLine = 200; |
Daniel Jasper | 33b909c | 2013-10-25 14:29:37 +0000 | [diff] [blame] | 839 | GoogleStyle.PenaltyBreakBeforeFirstCallParameter = 1; |
Daniel Jasper | 4e9678f | 2013-07-11 20:41:21 +0000 | [diff] [blame] | 840 | |
Daniel Jasper | c58c70e | 2014-09-15 11:21:46 +0000 | [diff] [blame] | 841 | if (Language == FormatStyle::LK_Java) { |
Daniel Jasper | 6501f7e | 2015-10-27 12:38:37 +0000 | [diff] [blame] | 842 | GoogleStyle.AlignAfterOpenBracket = FormatStyle::BAS_DontAlign; |
Daniel Jasper | 3219e43 | 2014-12-02 13:24:51 +0000 | [diff] [blame] | 843 | GoogleStyle.AlignOperands = false; |
Daniel Jasper | fd4ed18 | 2015-01-04 20:40:45 +0000 | [diff] [blame] | 844 | GoogleStyle.AlignTrailingComments = false; |
Daniel Jasper | 9e70935 | 2014-11-26 10:43:58 +0000 | [diff] [blame] | 845 | GoogleStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Empty; |
Paul Hoad | 15000a1 | 2019-03-13 08:26:39 +0000 | [diff] [blame] | 846 | GoogleStyle.AllowShortIfStatementsOnASingleLine = FormatStyle::SIS_Never; |
Daniel Jasper | 1cd3c71 | 2015-01-14 12:24:59 +0000 | [diff] [blame] | 847 | GoogleStyle.AlwaysBreakBeforeMultilineStrings = false; |
Daniel Jasper | c58c70e | 2014-09-15 11:21:46 +0000 | [diff] [blame] | 848 | GoogleStyle.BreakBeforeBinaryOperators = FormatStyle::BOS_NonAssignment; |
| 849 | GoogleStyle.ColumnLimit = 100; |
| 850 | GoogleStyle.SpaceAfterCStyleCast = true; |
Daniel Jasper | 61d8197 | 2014-11-14 08:22:46 +0000 | [diff] [blame] | 851 | GoogleStyle.SpacesBeforeTrailingComments = 1; |
Daniel Jasper | c58c70e | 2014-09-15 11:21:46 +0000 | [diff] [blame] | 852 | } else if (Language == FormatStyle::LK_JavaScript) { |
Daniel Jasper | 6501f7e | 2015-10-27 12:38:37 +0000 | [diff] [blame] | 853 | GoogleStyle.AlignAfterOpenBracket = FormatStyle::BAS_AlwaysBreak; |
Daniel Jasper | 41a2bf7 | 2015-12-21 13:52:19 +0000 | [diff] [blame] | 854 | GoogleStyle.AlignOperands = false; |
Daniel Jasper | 28d8a5a | 2016-09-07 23:01:13 +0000 | [diff] [blame] | 855 | GoogleStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Empty; |
Daniel Jasper | 6501f7e | 2015-10-27 12:38:37 +0000 | [diff] [blame] | 856 | GoogleStyle.AlwaysBreakBeforeMultilineStrings = false; |
Daniel Jasper | e551bb7 | 2014-11-05 17:22:31 +0000 | [diff] [blame] | 857 | GoogleStyle.BreakBeforeTernaryOperators = false; |
Krasimir Georgiev | 6a5c95b | 2018-07-30 08:45:45 +0000 | [diff] [blame] | 858 | // taze:, triple slash directives (`/// <...`), @see, which is commonly |
| 859 | // followed by overlong URLs. |
| 860 | GoogleStyle.CommentPragmas = "(taze:|^/[ \t]*<|@see)"; |
Daniel Jasper | 8f83a90 | 2014-05-09 10:28:58 +0000 | [diff] [blame] | 861 | GoogleStyle.MaxEmptyLinesToKeep = 3; |
Martin Probst | ece8c0c | 2016-06-13 16:41:28 +0000 | [diff] [blame] | 862 | GoogleStyle.NamespaceIndentation = FormatStyle::NI_All; |
Nico Weber | 514ecc8 | 2014-02-02 20:50:45 +0000 | [diff] [blame] | 863 | GoogleStyle.SpacesInContainerLiterals = false; |
Daniel Jasper | abd1f57 | 2016-03-02 22:44:03 +0000 | [diff] [blame] | 864 | GoogleStyle.JavaScriptQuotes = FormatStyle::JSQS_Single; |
Martin Probst | 0cd74ee | 2016-06-13 16:39:50 +0000 | [diff] [blame] | 865 | GoogleStyle.JavaScriptWrapImports = false; |
Nico Weber | 514ecc8 | 2014-02-02 20:50:45 +0000 | [diff] [blame] | 866 | } else if (Language == FormatStyle::LK_Proto) { |
Daniel Jasper | 67e6521 | 2018-08-15 19:07:55 +0000 | [diff] [blame] | 867 | GoogleStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Empty; |
Daniel Jasper | 9c95dfe | 2018-03-12 10:32:18 +0000 | [diff] [blame] | 868 | GoogleStyle.AlwaysBreakBeforeMultilineStrings = false; |
Daniel Jasper | 783bac6 | 2014-04-15 09:54:30 +0000 | [diff] [blame] | 869 | GoogleStyle.SpacesInContainerLiterals = false; |
Krasimir Georgiev | c209180 | 2018-01-31 10:14:10 +0000 | [diff] [blame] | 870 | GoogleStyle.Cpp11BracedListStyle = false; |
Krasimir Georgiev | 374e6de | 2018-02-08 10:47:12 +0000 | [diff] [blame] | 871 | // This affects protocol buffer options specifications and text protos. |
| 872 | // Text protos are currently mostly formatted inside C++ raw string literals |
| 873 | // and often the current breaking behavior of string literals is not |
| 874 | // beneficial there. Investigate turning this on once proper string reflow |
| 875 | // has been implemented. |
| 876 | GoogleStyle.BreakStringLiterals = false; |
Daniel Jasper | 03a04fe | 2016-12-12 12:42:29 +0000 | [diff] [blame] | 877 | } else if (Language == FormatStyle::LK_ObjC) { |
Ben Hamilton | 1ab722e | 2018-06-14 17:30:10 +0000 | [diff] [blame] | 878 | GoogleStyle.AlwaysBreakBeforeMultilineStrings = false; |
Daniel Jasper | 03a04fe | 2016-12-12 12:42:29 +0000 | [diff] [blame] | 879 | GoogleStyle.ColumnLimit = 100; |
Nico Weber | 514ecc8 | 2014-02-02 20:50:45 +0000 | [diff] [blame] | 880 | } |
| 881 | |
Daniel Jasper | f793511 | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 882 | return GoogleStyle; |
| 883 | } |
| 884 | |
Nico Weber | 514ecc8 | 2014-02-02 20:50:45 +0000 | [diff] [blame] | 885 | FormatStyle getChromiumStyle(FormatStyle::LanguageKind Language) { |
| 886 | FormatStyle ChromiumStyle = getGoogleStyle(Language); |
Nico Weber | 450425c | 2014-11-26 16:43:18 +0000 | [diff] [blame] | 887 | if (Language == FormatStyle::LK_Java) { |
Paul Hoad | 15000a1 | 2019-03-13 08:26:39 +0000 | [diff] [blame] | 888 | ChromiumStyle.AllowShortIfStatementsOnASingleLine = |
| 889 | FormatStyle::SIS_WithoutElse; |
Nico Weber | 2cd92f1 | 2015-10-15 16:03:01 +0000 | [diff] [blame] | 890 | ChromiumStyle.BreakAfterJavaFieldAnnotations = true; |
Nico Weber | 450425c | 2014-11-26 16:43:18 +0000 | [diff] [blame] | 891 | ChromiumStyle.ContinuationIndentWidth = 8; |
Nico Weber | 2cd92f1 | 2015-10-15 16:03:01 +0000 | [diff] [blame] | 892 | ChromiumStyle.IndentWidth = 4; |
Krasimir Georgiev | 7e91b03 | 2018-10-05 17:19:26 +0000 | [diff] [blame] | 893 | // See styleguide for import groups: |
| 894 | // https://chromium.googlesource.com/chromium/src/+/master/styleguide/java/java.md#Import-Order |
| 895 | ChromiumStyle.JavaImportGroups = { |
Paul Hoad | 5bcf99b | 2019-03-01 09:09:54 +0000 | [diff] [blame] | 896 | "android", "com", "dalvik", |
| 897 | "junit", "org", "com.google.android.apps.chrome", |
| 898 | "org.chromium", "java", "javax", |
Krasimir Georgiev | 7e91b03 | 2018-10-05 17:19:26 +0000 | [diff] [blame] | 899 | }; |
| 900 | ChromiumStyle.SortIncludes = true; |
Nico Weber | ea64969 | 2017-01-04 02:33:36 +0000 | [diff] [blame] | 901 | } else if (Language == FormatStyle::LK_JavaScript) { |
Paul Hoad | 15000a1 | 2019-03-13 08:26:39 +0000 | [diff] [blame] | 902 | ChromiumStyle.AllowShortIfStatementsOnASingleLine = FormatStyle::SIS_Never; |
Nico Weber | ea64969 | 2017-01-04 02:33:36 +0000 | [diff] [blame] | 903 | ChromiumStyle.AllowShortLoopsOnASingleLine = false; |
Nico Weber | 450425c | 2014-11-26 16:43:18 +0000 | [diff] [blame] | 904 | } else { |
| 905 | ChromiumStyle.AllowAllParametersOfDeclarationOnNextLine = false; |
| 906 | ChromiumStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Inline; |
Paul Hoad | 15000a1 | 2019-03-13 08:26:39 +0000 | [diff] [blame] | 907 | ChromiumStyle.AllowShortIfStatementsOnASingleLine = FormatStyle::SIS_Never; |
Nico Weber | 450425c | 2014-11-26 16:43:18 +0000 | [diff] [blame] | 908 | ChromiumStyle.AllowShortLoopsOnASingleLine = false; |
| 909 | ChromiumStyle.BinPackParameters = false; |
| 910 | ChromiumStyle.DerivePointerAlignment = false; |
Nico Weber | 9e2bc30 | 2017-01-31 18:42:05 +0000 | [diff] [blame] | 911 | if (Language == FormatStyle::LK_ObjC) |
| 912 | ChromiumStyle.ColumnLimit = 80; |
Nico Weber | 450425c | 2014-11-26 16:43:18 +0000 | [diff] [blame] | 913 | } |
Daniel Jasper | 1b750ed | 2013-01-14 16:24:39 +0000 | [diff] [blame] | 914 | return ChromiumStyle; |
| 915 | } |
| 916 | |
Alexander Kornienko | c860266 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 917 | FormatStyle getMozillaStyle() { |
| 918 | FormatStyle MozillaStyle = getLLVMStyle(); |
| 919 | MozillaStyle.AllowAllParametersOfDeclarationOnNextLine = false; |
Birunthan Mohanathas | a081002 | 2015-06-29 15:18:58 +0000 | [diff] [blame] | 920 | MozillaStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Inline; |
Manuel Klimek | 89628f6 | 2017-09-20 09:51:03 +0000 | [diff] [blame] | 921 | MozillaStyle.AlwaysBreakAfterReturnType = FormatStyle::RTBS_TopLevel; |
Birunthan Mohanathas | a0388a8 | 2015-06-29 15:30:42 +0000 | [diff] [blame] | 922 | MozillaStyle.AlwaysBreakAfterDefinitionReturnType = |
| 923 | FormatStyle::DRTBS_TopLevel; |
Francois Ferrand | 58e6fe5 | 2018-05-16 08:25:03 +0000 | [diff] [blame] | 924 | MozillaStyle.AlwaysBreakTemplateDeclarations = FormatStyle::BTDS_Yes; |
Sylvestre Ledru | dcb038d | 2016-12-14 16:09:29 +0000 | [diff] [blame] | 925 | MozillaStyle.BinPackParameters = false; |
| 926 | MozillaStyle.BinPackArguments = false; |
Birunthan Mohanathas | 305fa9c | 2015-07-12 03:13:54 +0000 | [diff] [blame] | 927 | MozillaStyle.BreakBeforeBraces = FormatStyle::BS_Mozilla; |
Francois Ferrand | a6b6d51 | 2017-05-24 11:36:58 +0000 | [diff] [blame] | 928 | MozillaStyle.BreakConstructorInitializers = FormatStyle::BCIS_BeforeComma; |
Francois Ferrand | 6bb103f | 2018-06-11 14:41:26 +0000 | [diff] [blame] | 929 | MozillaStyle.BreakInheritanceList = FormatStyle::BILS_BeforeComma; |
Birunthan Mohanathas | a081002 | 2015-06-29 15:18:58 +0000 | [diff] [blame] | 930 | MozillaStyle.ConstructorInitializerIndentWidth = 2; |
| 931 | MozillaStyle.ContinuationIndentWidth = 2; |
Chandler Carruth | f8b7266 | 2014-03-02 12:37:31 +0000 | [diff] [blame] | 932 | MozillaStyle.Cpp11BracedListStyle = false; |
Krasimir Georgiev | 32eaa86 | 2017-03-01 15:35:39 +0000 | [diff] [blame] | 933 | MozillaStyle.FixNamespaceComments = false; |
Alexander Kornienko | c860266 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 934 | MozillaStyle.IndentCaseLabels = true; |
Daniel Jasper | e9beea2 | 2014-01-28 15:20:33 +0000 | [diff] [blame] | 935 | MozillaStyle.ObjCSpaceAfterProperty = true; |
Alexander Kornienko | c860266 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 936 | MozillaStyle.ObjCSpaceBeforeProtocolList = false; |
| 937 | MozillaStyle.PenaltyReturnTypeOnItsOwnLine = 200; |
Daniel Jasper | 553d487 | 2014-06-17 12:40:34 +0000 | [diff] [blame] | 938 | MozillaStyle.PointerAlignment = FormatStyle::PAS_Left; |
Sylvestre Ledru | 83bbd57 | 2016-08-09 14:24:40 +0000 | [diff] [blame] | 939 | MozillaStyle.SpaceAfterTemplateKeyword = false; |
Alexander Kornienko | c860266 | 2013-05-06 14:11:27 +0000 | [diff] [blame] | 940 | return MozillaStyle; |
| 941 | } |
| 942 | |
Daniel Jasper | ffefb3d | 2013-07-24 13:10:59 +0000 | [diff] [blame] | 943 | FormatStyle getWebKitStyle() { |
| 944 | FormatStyle Style = getLLVMStyle(); |
Daniel Jasper | 65ee347 | 2013-07-31 23:16:02 +0000 | [diff] [blame] | 945 | Style.AccessModifierOffset = -4; |
Daniel Jasper | 6501f7e | 2015-10-27 12:38:37 +0000 | [diff] [blame] | 946 | Style.AlignAfterOpenBracket = FormatStyle::BAS_DontAlign; |
Daniel Jasper | 3219e43 | 2014-12-02 13:24:51 +0000 | [diff] [blame] | 947 | Style.AlignOperands = false; |
Daniel Jasper | 552f4a7 | 2013-07-31 23:55:15 +0000 | [diff] [blame] | 948 | Style.AlignTrailingComments = false; |
Daniel Jasper | ac043c9 | 2014-09-15 11:11:00 +0000 | [diff] [blame] | 949 | Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All; |
Roman Kashitsyn | 291f64f | 2015-08-10 13:43:19 +0000 | [diff] [blame] | 950 | Style.BreakBeforeBraces = FormatStyle::BS_WebKit; |
Francois Ferrand | a6b6d51 | 2017-05-24 11:36:58 +0000 | [diff] [blame] | 951 | Style.BreakConstructorInitializers = FormatStyle::BCIS_BeforeComma; |
Chandler Carruth | f8b7266 | 2014-03-02 12:37:31 +0000 | [diff] [blame] | 952 | Style.Cpp11BracedListStyle = false; |
Daniel Jasper | 65ee347 | 2013-07-31 23:16:02 +0000 | [diff] [blame] | 953 | Style.ColumnLimit = 0; |
Krasimir Georgiev | 32eaa86 | 2017-03-01 15:35:39 +0000 | [diff] [blame] | 954 | Style.FixNamespaceComments = false; |
Daniel Jasper | e33d4af | 2013-07-26 16:56:36 +0000 | [diff] [blame] | 955 | Style.IndentWidth = 4; |
Daniel Jasper | 65ee347 | 2013-07-31 23:16:02 +0000 | [diff] [blame] | 956 | Style.NamespaceIndentation = FormatStyle::NI_Inner; |
Daniel Jasper | 50d634b | 2014-10-28 16:53:38 +0000 | [diff] [blame] | 957 | Style.ObjCBlockIndentWidth = 4; |
Daniel Jasper | e9beea2 | 2014-01-28 15:20:33 +0000 | [diff] [blame] | 958 | Style.ObjCSpaceAfterProperty = true; |
Daniel Jasper | 553d487 | 2014-06-17 12:40:34 +0000 | [diff] [blame] | 959 | Style.PointerAlignment = FormatStyle::PAS_Left; |
Hans Wennborg | bfc3406 | 2018-06-14 08:01:09 +0000 | [diff] [blame] | 960 | Style.SpaceBeforeCpp11BracedList = true; |
Daniel Jasper | ffefb3d | 2013-07-24 13:10:59 +0000 | [diff] [blame] | 961 | return Style; |
| 962 | } |
| 963 | |
Alexander Kornienko | fe7a57f | 2013-12-10 15:42:15 +0000 | [diff] [blame] | 964 | FormatStyle getGNUStyle() { |
| 965 | FormatStyle Style = getLLVMStyle(); |
Birunthan Mohanathas | a0388a8 | 2015-06-29 15:30:42 +0000 | [diff] [blame] | 966 | Style.AlwaysBreakAfterDefinitionReturnType = FormatStyle::DRTBS_All; |
Zachary Turner | 448592e | 2015-12-18 22:20:15 +0000 | [diff] [blame] | 967 | Style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_AllDefinitions; |
Daniel Jasper | ac043c9 | 2014-09-15 11:11:00 +0000 | [diff] [blame] | 968 | Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All; |
Alexander Kornienko | 3a33f02 | 2013-12-12 09:49:52 +0000 | [diff] [blame] | 969 | Style.BreakBeforeBraces = FormatStyle::BS_GNU; |
Alexander Kornienko | fe7a57f | 2013-12-10 15:42:15 +0000 | [diff] [blame] | 970 | Style.BreakBeforeTernaryOperators = true; |
Chandler Carruth | f8b7266 | 2014-03-02 12:37:31 +0000 | [diff] [blame] | 971 | Style.Cpp11BracedListStyle = false; |
Alexander Kornienko | fe7a57f | 2013-12-10 15:42:15 +0000 | [diff] [blame] | 972 | Style.ColumnLimit = 79; |
Krasimir Georgiev | 32eaa86 | 2017-03-01 15:35:39 +0000 | [diff] [blame] | 973 | Style.FixNamespaceComments = false; |
Alexander Kornienko | fe7a57f | 2013-12-10 15:42:15 +0000 | [diff] [blame] | 974 | Style.SpaceBeforeParens = FormatStyle::SBPO_Always; |
Chandler Carruth | f8b7266 | 2014-03-02 12:37:31 +0000 | [diff] [blame] | 975 | Style.Standard = FormatStyle::LS_Cpp03; |
Alexander Kornienko | fe7a57f | 2013-12-10 15:42:15 +0000 | [diff] [blame] | 976 | return Style; |
| 977 | } |
| 978 | |
Paul Hoad | cbb726d | 2019-03-21 13:09:22 +0000 | [diff] [blame] | 979 | FormatStyle getMicrosoftStyle(FormatStyle::LanguageKind Language) { |
| 980 | FormatStyle Style = getLLVMStyle(); |
| 981 | Style.ColumnLimit = 120; |
| 982 | Style.TabWidth = 4; |
| 983 | Style.IndentWidth = 4; |
| 984 | Style.UseTab = FormatStyle::UT_Never; |
| 985 | Style.BreakBeforeBraces = FormatStyle::BS_Custom; |
| 986 | Style.BraceWrapping.AfterClass = true; |
| 987 | Style.BraceWrapping.AfterControlStatement = true; |
| 988 | Style.BraceWrapping.AfterEnum = true; |
| 989 | Style.BraceWrapping.AfterFunction = true; |
| 990 | Style.BraceWrapping.AfterNamespace = true; |
| 991 | Style.BraceWrapping.AfterObjCDeclaration = true; |
| 992 | Style.BraceWrapping.AfterStruct = true; |
| 993 | Style.BraceWrapping.AfterExternBlock = true; |
| 994 | Style.BraceWrapping.BeforeCatch = true; |
| 995 | Style.BraceWrapping.BeforeElse = true; |
| 996 | Style.PenaltyReturnTypeOnItsOwnLine = 1000; |
| 997 | Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_None; |
| 998 | Style.AllowShortBlocksOnASingleLine = false; |
| 999 | Style.AllowShortCaseLabelsOnASingleLine = false; |
| 1000 | Style.AllowShortIfStatementsOnASingleLine = FormatStyle::SIS_Never; |
| 1001 | Style.AllowShortLoopsOnASingleLine = false; |
| 1002 | return Style; |
| 1003 | } |
| 1004 | |
Daniel Jasper | c64b09a | 2014-05-22 15:12:22 +0000 | [diff] [blame] | 1005 | FormatStyle getNoStyle() { |
| 1006 | FormatStyle NoStyle = getLLVMStyle(); |
| 1007 | NoStyle.DisableFormat = true; |
Daniel Jasper | da44677 | 2015-11-16 12:38:56 +0000 | [diff] [blame] | 1008 | NoStyle.SortIncludes = false; |
Krasimir Georgiev | ac16a20 | 2017-06-23 11:46:03 +0000 | [diff] [blame] | 1009 | NoStyle.SortUsingDeclarations = false; |
Daniel Jasper | c64b09a | 2014-05-22 15:12:22 +0000 | [diff] [blame] | 1010 | return NoStyle; |
| 1011 | } |
| 1012 | |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 1013 | bool getPredefinedStyle(StringRef Name, FormatStyle::LanguageKind Language, |
| 1014 | FormatStyle *Style) { |
| 1015 | if (Name.equals_lower("llvm")) { |
Jordan Rupprecht | 55881d5 | 2019-03-13 21:13:01 +0000 | [diff] [blame] | 1016 | *Style = getLLVMStyle(Language); |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 1017 | } else if (Name.equals_lower("chromium")) { |
Nico Weber | 514ecc8 | 2014-02-02 20:50:45 +0000 | [diff] [blame] | 1018 | *Style = getChromiumStyle(Language); |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 1019 | } else if (Name.equals_lower("mozilla")) { |
Alexander Kornienko | 006b5c8 | 2013-05-19 00:53:30 +0000 | [diff] [blame] | 1020 | *Style = getMozillaStyle(); |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 1021 | } else if (Name.equals_lower("google")) { |
Nico Weber | 514ecc8 | 2014-02-02 20:50:45 +0000 | [diff] [blame] | 1022 | *Style = getGoogleStyle(Language); |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 1023 | } else if (Name.equals_lower("webkit")) { |
Daniel Jasper | ffefb3d | 2013-07-24 13:10:59 +0000 | [diff] [blame] | 1024 | *Style = getWebKitStyle(); |
Alexander Kornienko | fe7a57f | 2013-12-10 15:42:15 +0000 | [diff] [blame] | 1025 | } else if (Name.equals_lower("gnu")) { |
| 1026 | *Style = getGNUStyle(); |
Paul Hoad | cbb726d | 2019-03-21 13:09:22 +0000 | [diff] [blame] | 1027 | } else if (Name.equals_lower("microsoft")) { |
| 1028 | *Style = getMicrosoftStyle(Language); |
Daniel Jasper | c64b09a | 2014-05-22 15:12:22 +0000 | [diff] [blame] | 1029 | } else if (Name.equals_lower("none")) { |
| 1030 | *Style = getNoStyle(); |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 1031 | } else { |
Alexander Kornienko | 006b5c8 | 2013-05-19 00:53:30 +0000 | [diff] [blame] | 1032 | return false; |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 1033 | } |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 1034 | |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 1035 | Style->Language = Language; |
Alexander Kornienko | 006b5c8 | 2013-05-19 00:53:30 +0000 | [diff] [blame] | 1036 | return true; |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 1037 | } |
| 1038 | |
Rafael Espindola | c080917 | 2014-06-12 14:02:15 +0000 | [diff] [blame] | 1039 | std::error_code parseConfiguration(StringRef Text, FormatStyle *Style) { |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 1040 | assert(Style); |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 1041 | FormatStyle::LanguageKind Language = Style->Language; |
| 1042 | assert(Language != FormatStyle::LK_None); |
Alexander Kornienko | 06e0033 | 2013-05-20 15:18:01 +0000 | [diff] [blame] | 1043 | if (Text.trim().empty()) |
Rafael Espindola | d013670 | 2014-06-12 02:50:04 +0000 | [diff] [blame] | 1044 | return make_error_code(ParseError::Error); |
Krasimir Georgiev | 54076fe | 2018-01-15 12:06:16 +0000 | [diff] [blame] | 1045 | Style->StyleSet.Clear(); |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 1046 | std::vector<FormatStyle> Styles; |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 1047 | llvm::yaml::Input Input(Text); |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 1048 | // DocumentListTraits<vector<FormatStyle>> uses the context to get default |
| 1049 | // values for the fields, keys for which are missing from the configuration. |
| 1050 | // Mapping also uses the context to get the language to find the correct |
| 1051 | // base style. |
| 1052 | Input.setContext(Style); |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 1053 | Input >> Styles; |
| 1054 | if (Input.error()) |
| 1055 | return Input.error(); |
| 1056 | |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 1057 | for (unsigned i = 0; i < Styles.size(); ++i) { |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 1058 | // Ensures that only the first configuration can skip the Language option. |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 1059 | if (Styles[i].Language == FormatStyle::LK_None && i != 0) |
Rafael Espindola | d013670 | 2014-06-12 02:50:04 +0000 | [diff] [blame] | 1060 | return make_error_code(ParseError::Error); |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 1061 | // Ensure that each language is configured at most once. |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 1062 | for (unsigned j = 0; j < i; ++j) { |
| 1063 | if (Styles[i].Language == Styles[j].Language) { |
Nicola Zaghen | 3538b39 | 2018-05-15 13:30:56 +0000 | [diff] [blame] | 1064 | LLVM_DEBUG(llvm::dbgs() |
| 1065 | << "Duplicate languages in the config file on positions " |
| 1066 | << j << " and " << i << "\n"); |
Rafael Espindola | d013670 | 2014-06-12 02:50:04 +0000 | [diff] [blame] | 1067 | return make_error_code(ParseError::Error); |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 1068 | } |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 1069 | } |
| 1070 | } |
| 1071 | // Look for a suitable configuration starting from the end, so we can |
| 1072 | // find the configuration for the specific language first, and the default |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 1073 | // configuration (which can only be at slot 0) after it. |
Krasimir Georgiev | 54076fe | 2018-01-15 12:06:16 +0000 | [diff] [blame] | 1074 | FormatStyle::FormatStyleSet StyleSet; |
| 1075 | bool LanguageFound = false; |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 1076 | for (int i = Styles.size() - 1; i >= 0; --i) { |
Krasimir Georgiev | 54076fe | 2018-01-15 12:06:16 +0000 | [diff] [blame] | 1077 | if (Styles[i].Language != FormatStyle::LK_None) |
| 1078 | StyleSet.Add(Styles[i]); |
| 1079 | if (Styles[i].Language == Language) |
| 1080 | LanguageFound = true; |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 1081 | } |
Krasimir Georgiev | 54076fe | 2018-01-15 12:06:16 +0000 | [diff] [blame] | 1082 | if (!LanguageFound) { |
| 1083 | if (Styles.empty() || Styles[0].Language != FormatStyle::LK_None) |
| 1084 | return make_error_code(ParseError::Unsuitable); |
| 1085 | FormatStyle DefaultStyle = Styles[0]; |
| 1086 | DefaultStyle.Language = Language; |
| 1087 | StyleSet.Add(std::move(DefaultStyle)); |
| 1088 | } |
| 1089 | *Style = *StyleSet.Get(Language); |
| 1090 | return make_error_code(ParseError::Success); |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 1091 | } |
| 1092 | |
| 1093 | std::string configurationAsText(const FormatStyle &Style) { |
| 1094 | std::string Text; |
| 1095 | llvm::raw_string_ostream Stream(Text); |
| 1096 | llvm::yaml::Output Output(Stream); |
| 1097 | // We use the same mapping method for input and output, so we need a non-const |
| 1098 | // reference here. |
Daniel Jasper | c1bc38e | 2015-09-29 14:57:55 +0000 | [diff] [blame] | 1099 | FormatStyle NonConstStyle = expandPresets(Style); |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 1100 | Output << NonConstStyle; |
Alexander Kornienko | 9a38ec2 | 2013-05-13 12:56:35 +0000 | [diff] [blame] | 1101 | return Stream.str(); |
Alexander Kornienko | d653833 | 2013-05-07 15:32:14 +0000 | [diff] [blame] | 1102 | } |
| 1103 | |
Krasimir Georgiev | 54076fe | 2018-01-15 12:06:16 +0000 | [diff] [blame] | 1104 | llvm::Optional<FormatStyle> |
| 1105 | FormatStyle::FormatStyleSet::Get(FormatStyle::LanguageKind Language) const { |
| 1106 | if (!Styles) |
| 1107 | return None; |
| 1108 | auto It = Styles->find(Language); |
| 1109 | if (It == Styles->end()) |
| 1110 | return None; |
| 1111 | FormatStyle Style = It->second; |
| 1112 | Style.StyleSet = *this; |
| 1113 | return Style; |
| 1114 | } |
| 1115 | |
| 1116 | void FormatStyle::FormatStyleSet::Add(FormatStyle Style) { |
| 1117 | assert(Style.Language != LK_None && |
| 1118 | "Cannot add a style for LK_None to a StyleSet"); |
| 1119 | assert( |
| 1120 | !Style.StyleSet.Styles && |
| 1121 | "Cannot add a style associated with an existing StyleSet to a StyleSet"); |
| 1122 | if (!Styles) |
| 1123 | Styles = std::make_shared<MapType>(); |
| 1124 | (*Styles)[Style.Language] = std::move(Style); |
| 1125 | } |
| 1126 | |
Paul Hoad | 5bcf99b | 2019-03-01 09:09:54 +0000 | [diff] [blame] | 1127 | void FormatStyle::FormatStyleSet::Clear() { Styles.reset(); } |
Krasimir Georgiev | 54076fe | 2018-01-15 12:06:16 +0000 | [diff] [blame] | 1128 | |
| 1129 | llvm::Optional<FormatStyle> |
| 1130 | FormatStyle::GetLanguageStyle(FormatStyle::LanguageKind Language) const { |
| 1131 | return StyleSet.Get(Language); |
| 1132 | } |
| 1133 | |
Craig Topper | af35e85 | 2013-06-30 22:29:28 +0000 | [diff] [blame] | 1134 | namespace { |
| 1135 | |
Daniel Jasper | 496c199 | 2016-09-07 22:48:53 +0000 | [diff] [blame] | 1136 | class JavaScriptRequoter : public TokenAnalyzer { |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1137 | public: |
Daniel Jasper | 496c199 | 2016-09-07 22:48:53 +0000 | [diff] [blame] | 1138 | JavaScriptRequoter(const Environment &Env, const FormatStyle &Style) |
| 1139 | : TokenAnalyzer(Env, Style) {} |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1140 | |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 1141 | std::pair<tooling::Replacements, unsigned> |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1142 | analyze(TokenAnnotator &Annotator, |
| 1143 | SmallVectorImpl<AnnotatedLine *> &AnnotatedLines, |
Martin Probst | a9855af | 2016-09-02 14:29:48 +0000 | [diff] [blame] | 1144 | FormatTokenLexer &Tokens) override { |
Manuel Klimek | 0dddcf7 | 2018-04-23 09:34:26 +0000 | [diff] [blame] | 1145 | AffectedRangeMgr.computeAffectedLines(AnnotatedLines); |
Daniel Jasper | 496c199 | 2016-09-07 22:48:53 +0000 | [diff] [blame] | 1146 | tooling::Replacements Result; |
| 1147 | requoteJSStringLiteral(AnnotatedLines, Result); |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 1148 | return {Result, 0}; |
Alexander Kornienko | 62b85b9 | 2013-03-13 14:41:29 +0000 | [diff] [blame] | 1149 | } |
| 1150 | |
| 1151 | private: |
Daniel Jasper | 496c199 | 2016-09-07 22:48:53 +0000 | [diff] [blame] | 1152 | // Replaces double/single-quoted string literal as appropriate, re-escaping |
| 1153 | // the contents in the process. |
Daniel Jasper | 9743992 | 2016-03-17 13:03:41 +0000 | [diff] [blame] | 1154 | void requoteJSStringLiteral(SmallVectorImpl<AnnotatedLine *> &Lines, |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1155 | tooling::Replacements &Result) { |
Daniel Jasper | 9743992 | 2016-03-17 13:03:41 +0000 | [diff] [blame] | 1156 | for (AnnotatedLine *Line : Lines) { |
| 1157 | requoteJSStringLiteral(Line->Children, Result); |
| 1158 | if (!Line->Affected) |
| 1159 | continue; |
| 1160 | for (FormatToken *FormatTok = Line->First; FormatTok; |
| 1161 | FormatTok = FormatTok->Next) { |
| 1162 | StringRef Input = FormatTok->TokenText; |
Martin Probst | a166979 | 2016-05-12 11:20:32 +0000 | [diff] [blame] | 1163 | if (FormatTok->Finalized || !FormatTok->isStringLiteral() || |
Daniel Jasper | 9743992 | 2016-03-17 13:03:41 +0000 | [diff] [blame] | 1164 | // NB: testing for not starting with a double quote to avoid |
Daniel Jasper | 496c199 | 2016-09-07 22:48:53 +0000 | [diff] [blame] | 1165 | // breaking `template strings`. |
Eric Liu | 635423e | 2016-04-28 07:52:03 +0000 | [diff] [blame] | 1166 | (Style.JavaScriptQuotes == FormatStyle::JSQS_Single && |
Daniel Jasper | 9743992 | 2016-03-17 13:03:41 +0000 | [diff] [blame] | 1167 | !Input.startswith("\"")) || |
Eric Liu | 635423e | 2016-04-28 07:52:03 +0000 | [diff] [blame] | 1168 | (Style.JavaScriptQuotes == FormatStyle::JSQS_Double && |
Daniel Jasper | 9743992 | 2016-03-17 13:03:41 +0000 | [diff] [blame] | 1169 | !Input.startswith("\'"))) |
| 1170 | continue; |
| 1171 | |
| 1172 | // Change start and end quote. |
Eric Liu | 635423e | 2016-04-28 07:52:03 +0000 | [diff] [blame] | 1173 | bool IsSingle = Style.JavaScriptQuotes == FormatStyle::JSQS_Single; |
Daniel Jasper | 9743992 | 2016-03-17 13:03:41 +0000 | [diff] [blame] | 1174 | SourceLocation Start = FormatTok->Tok.getLocation(); |
| 1175 | auto Replace = [&](SourceLocation Start, unsigned Length, |
| 1176 | StringRef ReplacementText) { |
Eric Liu | 40ef2fb | 2016-08-01 10:16:37 +0000 | [diff] [blame] | 1177 | auto Err = Result.add(tooling::Replacement( |
| 1178 | Env.getSourceManager(), Start, Length, ReplacementText)); |
| 1179 | // FIXME: handle error. For now, print error message and skip the |
| 1180 | // replacement for release version. |
Piotr Padlewski | 1ec383c | 2016-12-23 11:40:44 +0000 | [diff] [blame] | 1181 | if (Err) { |
Eric Liu | 40ef2fb | 2016-08-01 10:16:37 +0000 | [diff] [blame] | 1182 | llvm::errs() << llvm::toString(std::move(Err)) << "\n"; |
Piotr Padlewski | 1ec383c | 2016-12-23 11:40:44 +0000 | [diff] [blame] | 1183 | assert(false); |
| 1184 | } |
Daniel Jasper | 9743992 | 2016-03-17 13:03:41 +0000 | [diff] [blame] | 1185 | }; |
| 1186 | Replace(Start, 1, IsSingle ? "'" : "\""); |
| 1187 | Replace(FormatTok->Tok.getEndLoc().getLocWithOffset(-1), 1, |
| 1188 | IsSingle ? "'" : "\""); |
| 1189 | |
| 1190 | // Escape internal quotes. |
Daniel Jasper | 9743992 | 2016-03-17 13:03:41 +0000 | [diff] [blame] | 1191 | bool Escaped = false; |
| 1192 | for (size_t i = 1; i < Input.size() - 1; i++) { |
| 1193 | switch (Input[i]) { |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1194 | case '\\': |
| 1195 | if (!Escaped && i + 1 < Input.size() && |
| 1196 | ((IsSingle && Input[i + 1] == '"') || |
| 1197 | (!IsSingle && Input[i + 1] == '\''))) { |
| 1198 | // Remove this \, it's escaping a " or ' that no longer needs |
| 1199 | // escaping |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1200 | Replace(Start.getLocWithOffset(i), 1, ""); |
| 1201 | continue; |
| 1202 | } |
| 1203 | Escaped = !Escaped; |
| 1204 | break; |
| 1205 | case '\"': |
| 1206 | case '\'': |
| 1207 | if (!Escaped && IsSingle == (Input[i] == '\'')) { |
| 1208 | // Escape the quote. |
| 1209 | Replace(Start.getLocWithOffset(i), 0, "\\"); |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1210 | } |
| 1211 | Escaped = false; |
| 1212 | break; |
| 1213 | default: |
| 1214 | Escaped = false; |
| 1215 | break; |
Daniel Jasper | 9743992 | 2016-03-17 13:03:41 +0000 | [diff] [blame] | 1216 | } |
| 1217 | } |
Daniel Jasper | 9743992 | 2016-03-17 13:03:41 +0000 | [diff] [blame] | 1218 | } |
| 1219 | } |
| 1220 | } |
Daniel Jasper | 496c199 | 2016-09-07 22:48:53 +0000 | [diff] [blame] | 1221 | }; |
| 1222 | |
| 1223 | class Formatter : public TokenAnalyzer { |
| 1224 | public: |
| 1225 | Formatter(const Environment &Env, const FormatStyle &Style, |
Krasimir Georgiev | bcda54b | 2017-04-21 14:35:20 +0000 | [diff] [blame] | 1226 | FormattingAttemptStatus *Status) |
| 1227 | : TokenAnalyzer(Env, Style), Status(Status) {} |
Daniel Jasper | 496c199 | 2016-09-07 22:48:53 +0000 | [diff] [blame] | 1228 | |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 1229 | std::pair<tooling::Replacements, unsigned> |
Daniel Jasper | 496c199 | 2016-09-07 22:48:53 +0000 | [diff] [blame] | 1230 | analyze(TokenAnnotator &Annotator, |
| 1231 | SmallVectorImpl<AnnotatedLine *> &AnnotatedLines, |
| 1232 | FormatTokenLexer &Tokens) override { |
| 1233 | tooling::Replacements Result; |
| 1234 | deriveLocalStyle(AnnotatedLines); |
Manuel Klimek | 0dddcf7 | 2018-04-23 09:34:26 +0000 | [diff] [blame] | 1235 | AffectedRangeMgr.computeAffectedLines(AnnotatedLines); |
Daniel Jasper | 496c199 | 2016-09-07 22:48:53 +0000 | [diff] [blame] | 1236 | for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) { |
| 1237 | Annotator.calculateFormattingInformation(*AnnotatedLines[i]); |
| 1238 | } |
| 1239 | Annotator.setCommentLineLevels(AnnotatedLines); |
| 1240 | |
| 1241 | WhitespaceManager Whitespaces( |
| 1242 | Env.getSourceManager(), Style, |
| 1243 | inputUsesCRLF(Env.getSourceManager().getBufferData(Env.getFileID()))); |
| 1244 | ContinuationIndenter Indenter(Style, Tokens.getKeywords(), |
| 1245 | Env.getSourceManager(), Whitespaces, Encoding, |
| 1246 | BinPackInconclusiveFunctions); |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 1247 | unsigned Penalty = |
| 1248 | UnwrappedLineFormatter(&Indenter, &Whitespaces, Style, |
| 1249 | Tokens.getKeywords(), Env.getSourceManager(), |
| 1250 | Status) |
| 1251 | .format(AnnotatedLines, /*DryRun=*/false, |
| 1252 | /*AdditionalIndent=*/0, |
| 1253 | /*FixBadIndentation=*/false, |
| 1254 | /*FirstStartColumn=*/Env.getFirstStartColumn(), |
| 1255 | /*NextStartColumn=*/Env.getNextStartColumn(), |
| 1256 | /*LastStartColumn=*/Env.getLastStartColumn()); |
Daniel Jasper | 496c199 | 2016-09-07 22:48:53 +0000 | [diff] [blame] | 1257 | for (const auto &R : Whitespaces.generateReplacements()) |
| 1258 | if (Result.add(R)) |
Krasimir Georgiev | e56e9a4 | 2017-10-30 14:30:14 +0000 | [diff] [blame] | 1259 | return std::make_pair(Result, 0); |
| 1260 | return std::make_pair(Result, Penalty); |
Daniel Jasper | 496c199 | 2016-09-07 22:48:53 +0000 | [diff] [blame] | 1261 | } |
| 1262 | |
| 1263 | private: |
Alexander Kornienko | 9e649af | 2013-09-11 12:25:57 +0000 | [diff] [blame] | 1264 | static bool inputUsesCRLF(StringRef Text) { |
| 1265 | return Text.count('\r') * 2 > Text.count('\n'); |
| 1266 | } |
| 1267 | |
Daniel Jasper | 352f0df | 2015-07-18 16:35:30 +0000 | [diff] [blame] | 1268 | bool |
| 1269 | hasCpp03IncompatibleFormat(const SmallVectorImpl<AnnotatedLine *> &Lines) { |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1270 | for (const AnnotatedLine *Line : Lines) { |
Daniel Jasper | 352f0df | 2015-07-18 16:35:30 +0000 | [diff] [blame] | 1271 | if (hasCpp03IncompatibleFormat(Line->Children)) |
| 1272 | return true; |
| 1273 | for (FormatToken *Tok = Line->First->Next; Tok; Tok = Tok->Next) { |
| 1274 | if (Tok->WhitespaceRange.getBegin() == Tok->WhitespaceRange.getEnd()) { |
| 1275 | if (Tok->is(tok::coloncolon) && Tok->Previous->is(TT_TemplateOpener)) |
| 1276 | return true; |
| 1277 | if (Tok->is(TT_TemplateCloser) && |
| 1278 | Tok->Previous->is(TT_TemplateCloser)) |
| 1279 | return true; |
| 1280 | } |
| 1281 | } |
| 1282 | } |
| 1283 | return false; |
| 1284 | } |
| 1285 | |
| 1286 | int countVariableAlignments(const SmallVectorImpl<AnnotatedLine *> &Lines) { |
| 1287 | int AlignmentDiff = 0; |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1288 | for (const AnnotatedLine *Line : Lines) { |
Daniel Jasper | 352f0df | 2015-07-18 16:35:30 +0000 | [diff] [blame] | 1289 | AlignmentDiff += countVariableAlignments(Line->Children); |
| 1290 | for (FormatToken *Tok = Line->First; Tok && Tok->Next; Tok = Tok->Next) { |
| 1291 | if (!Tok->is(TT_PointerOrReference)) |
| 1292 | continue; |
| 1293 | bool SpaceBefore = |
| 1294 | Tok->WhitespaceRange.getBegin() != Tok->WhitespaceRange.getEnd(); |
| 1295 | bool SpaceAfter = Tok->Next->WhitespaceRange.getBegin() != |
| 1296 | Tok->Next->WhitespaceRange.getEnd(); |
| 1297 | if (SpaceBefore && !SpaceAfter) |
| 1298 | ++AlignmentDiff; |
| 1299 | if (!SpaceBefore && SpaceAfter) |
| 1300 | --AlignmentDiff; |
| 1301 | } |
| 1302 | } |
| 1303 | return AlignmentDiff; |
| 1304 | } |
| 1305 | |
Manuel Klimek | 71814b4 | 2013-10-11 21:25:45 +0000 | [diff] [blame] | 1306 | void |
| 1307 | deriveLocalStyle(const SmallVectorImpl<AnnotatedLine *> &AnnotatedLines) { |
Daniel Jasper | b10cbc4 | 2013-07-10 14:02:49 +0000 | [diff] [blame] | 1308 | bool HasBinPackedFunction = false; |
| 1309 | bool HasOnePerLineFunction = false; |
Daniel Jasper | 7fce3ab | 2013-02-06 14:22:40 +0000 | [diff] [blame] | 1310 | for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) { |
Daniel Jasper | 9fe0e8d | 2013-09-05 09:29:45 +0000 | [diff] [blame] | 1311 | if (!AnnotatedLines[i]->First->Next) |
Daniel Jasper | 7fce3ab | 2013-02-06 14:22:40 +0000 | [diff] [blame] | 1312 | continue; |
Daniel Jasper | 9fe0e8d | 2013-09-05 09:29:45 +0000 | [diff] [blame] | 1313 | FormatToken *Tok = AnnotatedLines[i]->First->Next; |
Manuel Klimek | 6e6310e | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1314 | while (Tok->Next) { |
Daniel Jasper | b10cbc4 | 2013-07-10 14:02:49 +0000 | [diff] [blame] | 1315 | if (Tok->PackingKind == PPK_BinPacked) |
| 1316 | HasBinPackedFunction = true; |
| 1317 | if (Tok->PackingKind == PPK_OnePerLine) |
| 1318 | HasOnePerLineFunction = true; |
| 1319 | |
Manuel Klimek | 6e6310e | 2013-05-29 14:47:47 +0000 | [diff] [blame] | 1320 | Tok = Tok->Next; |
Daniel Jasper | 7fce3ab | 2013-02-06 14:22:40 +0000 | [diff] [blame] | 1321 | } |
| 1322 | } |
Eric Liu | 635423e | 2016-04-28 07:52:03 +0000 | [diff] [blame] | 1323 | if (Style.DerivePointerAlignment) |
| 1324 | Style.PointerAlignment = countVariableAlignments(AnnotatedLines) <= 0 |
| 1325 | ? FormatStyle::PAS_Left |
| 1326 | : FormatStyle::PAS_Right; |
| 1327 | if (Style.Standard == FormatStyle::LS_Auto) |
| 1328 | Style.Standard = hasCpp03IncompatibleFormat(AnnotatedLines) |
| 1329 | ? FormatStyle::LS_Cpp11 |
| 1330 | : FormatStyle::LS_Cpp03; |
Daniel Jasper | b10cbc4 | 2013-07-10 14:02:49 +0000 | [diff] [blame] | 1331 | BinPackInconclusiveFunctions = |
| 1332 | HasBinPackedFunction || !HasOnePerLineFunction; |
Daniel Jasper | 7fce3ab | 2013-02-06 14:22:40 +0000 | [diff] [blame] | 1333 | } |
| 1334 | |
Daniel Jasper | b10cbc4 | 2013-07-10 14:02:49 +0000 | [diff] [blame] | 1335 | bool BinPackInconclusiveFunctions; |
Krasimir Georgiev | bcda54b | 2017-04-21 14:35:20 +0000 | [diff] [blame] | 1336 | FormattingAttemptStatus *Status; |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1337 | }; |
| 1338 | |
| 1339 | // This class clean up the erroneous/redundant code around the given ranges in |
| 1340 | // file. |
| 1341 | class Cleaner : public TokenAnalyzer { |
| 1342 | public: |
Eric Liu | 635423e | 2016-04-28 07:52:03 +0000 | [diff] [blame] | 1343 | Cleaner(const Environment &Env, const FormatStyle &Style) |
| 1344 | : TokenAnalyzer(Env, Style), |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1345 | DeletedTokens(FormatTokenLess(Env.getSourceManager())) {} |
| 1346 | |
| 1347 | // FIXME: eliminate unused parameters. |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 1348 | std::pair<tooling::Replacements, unsigned> |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1349 | analyze(TokenAnnotator &Annotator, |
| 1350 | SmallVectorImpl<AnnotatedLine *> &AnnotatedLines, |
Martin Probst | a9855af | 2016-09-02 14:29:48 +0000 | [diff] [blame] | 1351 | FormatTokenLexer &Tokens) override { |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1352 | // FIXME: in the current implementation the granularity of affected range |
| 1353 | // is an annotated line. However, this is not sufficient. Furthermore, |
| 1354 | // redundant code introduced by replacements does not necessarily |
| 1355 | // intercept with ranges of replacements that result in the redundancy. |
| 1356 | // To determine if some redundant code is actually introduced by |
| 1357 | // replacements(e.g. deletions), we need to come up with a more |
| 1358 | // sophisticated way of computing affected ranges. |
Manuel Klimek | 0dddcf7 | 2018-04-23 09:34:26 +0000 | [diff] [blame] | 1359 | AffectedRangeMgr.computeAffectedLines(AnnotatedLines); |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1360 | |
| 1361 | checkEmptyNamespace(AnnotatedLines); |
| 1362 | |
Eric Liu | ce5e4bc | 2016-05-18 08:02:56 +0000 | [diff] [blame] | 1363 | for (auto &Line : AnnotatedLines) { |
| 1364 | if (Line->Affected) { |
| 1365 | cleanupRight(Line->First, tok::comma, tok::comma); |
| 1366 | cleanupRight(Line->First, TT_CtorInitializerColon, tok::comma); |
Eric Liu | 2574d15 | 2016-09-13 15:02:43 +0000 | [diff] [blame] | 1367 | cleanupRight(Line->First, tok::l_paren, tok::comma); |
| 1368 | cleanupLeft(Line->First, tok::comma, tok::r_paren); |
Eric Liu | ce5e4bc | 2016-05-18 08:02:56 +0000 | [diff] [blame] | 1369 | cleanupLeft(Line->First, TT_CtorInitializerComma, tok::l_brace); |
| 1370 | cleanupLeft(Line->First, TT_CtorInitializerColon, tok::l_brace); |
Malcolm Parsons | 5d8cdb8 | 2016-10-20 14:58:45 +0000 | [diff] [blame] | 1371 | cleanupLeft(Line->First, TT_CtorInitializerColon, tok::equal); |
Eric Liu | ce5e4bc | 2016-05-18 08:02:56 +0000 | [diff] [blame] | 1372 | } |
| 1373 | } |
| 1374 | |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 1375 | return {generateFixes(), 0}; |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1376 | } |
| 1377 | |
| 1378 | private: |
| 1379 | bool containsOnlyComments(const AnnotatedLine &Line) { |
| 1380 | for (FormatToken *Tok = Line.First; Tok != nullptr; Tok = Tok->Next) { |
| 1381 | if (Tok->isNot(tok::comment)) |
| 1382 | return false; |
| 1383 | } |
| 1384 | return true; |
| 1385 | } |
| 1386 | |
| 1387 | // Iterate through all lines and remove any empty (nested) namespaces. |
| 1388 | void checkEmptyNamespace(SmallVectorImpl<AnnotatedLine *> &AnnotatedLines) { |
Eric Liu | 7956c40 | 2016-10-05 15:49:01 +0000 | [diff] [blame] | 1389 | std::set<unsigned> DeletedLines; |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1390 | for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) { |
| 1391 | auto &Line = *AnnotatedLines[i]; |
Sam McCall | 6f3778c | 2018-09-05 07:44:02 +0000 | [diff] [blame] | 1392 | if (Line.startsWithNamespace()) { |
Eric Liu | 7956c40 | 2016-10-05 15:49:01 +0000 | [diff] [blame] | 1393 | checkEmptyNamespace(AnnotatedLines, i, i, DeletedLines); |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1394 | } |
| 1395 | } |
| 1396 | |
| 1397 | for (auto Line : DeletedLines) { |
| 1398 | FormatToken *Tok = AnnotatedLines[Line]->First; |
| 1399 | while (Tok) { |
| 1400 | deleteToken(Tok); |
| 1401 | Tok = Tok->Next; |
| 1402 | } |
| 1403 | } |
| 1404 | } |
| 1405 | |
| 1406 | // The function checks if the namespace, which starts from \p CurrentLine, and |
| 1407 | // its nested namespaces are empty and delete them if they are empty. It also |
| 1408 | // sets \p NewLine to the last line checked. |
| 1409 | // Returns true if the current namespace is empty. |
| 1410 | bool checkEmptyNamespace(SmallVectorImpl<AnnotatedLine *> &AnnotatedLines, |
Eric Liu | 7956c40 | 2016-10-05 15:49:01 +0000 | [diff] [blame] | 1411 | unsigned CurrentLine, unsigned &NewLine, |
| 1412 | std::set<unsigned> &DeletedLines) { |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1413 | unsigned InitLine = CurrentLine, End = AnnotatedLines.size(); |
Eric Liu | 635423e | 2016-04-28 07:52:03 +0000 | [diff] [blame] | 1414 | if (Style.BraceWrapping.AfterNamespace) { |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1415 | // If the left brace is in a new line, we should consume it first so that |
| 1416 | // it does not make the namespace non-empty. |
| 1417 | // FIXME: error handling if there is no left brace. |
| 1418 | if (!AnnotatedLines[++CurrentLine]->startsWith(tok::l_brace)) { |
| 1419 | NewLine = CurrentLine; |
| 1420 | return false; |
| 1421 | } |
| 1422 | } else if (!AnnotatedLines[CurrentLine]->endsWith(tok::l_brace)) { |
| 1423 | return false; |
| 1424 | } |
| 1425 | while (++CurrentLine < End) { |
| 1426 | if (AnnotatedLines[CurrentLine]->startsWith(tok::r_brace)) |
| 1427 | break; |
| 1428 | |
Sam McCall | 6f3778c | 2018-09-05 07:44:02 +0000 | [diff] [blame] | 1429 | if (AnnotatedLines[CurrentLine]->startsWithNamespace()) { |
Eric Liu | 7956c40 | 2016-10-05 15:49:01 +0000 | [diff] [blame] | 1430 | if (!checkEmptyNamespace(AnnotatedLines, CurrentLine, NewLine, |
| 1431 | DeletedLines)) |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1432 | return false; |
| 1433 | CurrentLine = NewLine; |
| 1434 | continue; |
| 1435 | } |
| 1436 | |
| 1437 | if (containsOnlyComments(*AnnotatedLines[CurrentLine])) |
| 1438 | continue; |
| 1439 | |
| 1440 | // If there is anything other than comments or nested namespaces in the |
| 1441 | // current namespace, the namespace cannot be empty. |
| 1442 | NewLine = CurrentLine; |
| 1443 | return false; |
| 1444 | } |
| 1445 | |
| 1446 | NewLine = CurrentLine; |
| 1447 | if (CurrentLine >= End) |
| 1448 | return false; |
| 1449 | |
| 1450 | // Check if the empty namespace is actually affected by changed ranges. |
| 1451 | if (!AffectedRangeMgr.affectsCharSourceRange(CharSourceRange::getCharRange( |
| 1452 | AnnotatedLines[InitLine]->First->Tok.getLocation(), |
| 1453 | AnnotatedLines[CurrentLine]->Last->Tok.getEndLoc()))) |
| 1454 | return false; |
| 1455 | |
| 1456 | for (unsigned i = InitLine; i <= CurrentLine; ++i) { |
| 1457 | DeletedLines.insert(i); |
| 1458 | } |
| 1459 | |
| 1460 | return true; |
| 1461 | } |
| 1462 | |
Eric Liu | ce5e4bc | 2016-05-18 08:02:56 +0000 | [diff] [blame] | 1463 | // Checks pairs {start, start->next},..., {end->previous, end} and deletes one |
| 1464 | // of the token in the pair if the left token has \p LK token kind and the |
| 1465 | // right token has \p RK token kind. If \p DeleteLeft is true, the left token |
| 1466 | // is deleted on match; otherwise, the right token is deleted. |
| 1467 | template <typename LeftKind, typename RightKind> |
| 1468 | void cleanupPair(FormatToken *Start, LeftKind LK, RightKind RK, |
| 1469 | bool DeleteLeft) { |
| 1470 | auto NextNotDeleted = [this](const FormatToken &Tok) -> FormatToken * { |
| 1471 | for (auto *Res = Tok.Next; Res; Res = Res->Next) |
| 1472 | if (!Res->is(tok::comment) && |
| 1473 | DeletedTokens.find(Res) == DeletedTokens.end()) |
| 1474 | return Res; |
| 1475 | return nullptr; |
| 1476 | }; |
| 1477 | for (auto *Left = Start; Left;) { |
| 1478 | auto *Right = NextNotDeleted(*Left); |
| 1479 | if (!Right) |
| 1480 | break; |
| 1481 | if (Left->is(LK) && Right->is(RK)) { |
| 1482 | deleteToken(DeleteLeft ? Left : Right); |
Eric Liu | 01426ff | 2016-09-09 17:50:49 +0000 | [diff] [blame] | 1483 | for (auto *Tok = Left->Next; Tok && Tok != Right; Tok = Tok->Next) |
| 1484 | deleteToken(Tok); |
Eric Liu | ce5e4bc | 2016-05-18 08:02:56 +0000 | [diff] [blame] | 1485 | // If the right token is deleted, we should keep the left token |
| 1486 | // unchanged and pair it with the new right token. |
| 1487 | if (!DeleteLeft) |
| 1488 | continue; |
| 1489 | } |
| 1490 | Left = Right; |
| 1491 | } |
| 1492 | } |
| 1493 | |
| 1494 | template <typename LeftKind, typename RightKind> |
| 1495 | void cleanupLeft(FormatToken *Start, LeftKind LK, RightKind RK) { |
| 1496 | cleanupPair(Start, LK, RK, /*DeleteLeft=*/true); |
| 1497 | } |
| 1498 | |
| 1499 | template <typename LeftKind, typename RightKind> |
| 1500 | void cleanupRight(FormatToken *Start, LeftKind LK, RightKind RK) { |
| 1501 | cleanupPair(Start, LK, RK, /*DeleteLeft=*/false); |
| 1502 | } |
| 1503 | |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1504 | // Delete the given token. |
| 1505 | inline void deleteToken(FormatToken *Tok) { |
| 1506 | if (Tok) |
| 1507 | DeletedTokens.insert(Tok); |
| 1508 | } |
| 1509 | |
| 1510 | tooling::Replacements generateFixes() { |
| 1511 | tooling::Replacements Fixes; |
| 1512 | std::vector<FormatToken *> Tokens; |
| 1513 | std::copy(DeletedTokens.begin(), DeletedTokens.end(), |
| 1514 | std::back_inserter(Tokens)); |
| 1515 | |
| 1516 | // Merge multiple continuous token deletions into one big deletion so that |
| 1517 | // the number of replacements can be reduced. This makes computing affected |
| 1518 | // ranges more efficient when we run reformat on the changed code. |
| 1519 | unsigned Idx = 0; |
| 1520 | while (Idx < Tokens.size()) { |
| 1521 | unsigned St = Idx, End = Idx; |
| 1522 | while ((End + 1) < Tokens.size() && |
| 1523 | Tokens[End]->Next == Tokens[End + 1]) { |
| 1524 | End++; |
| 1525 | } |
| 1526 | auto SR = CharSourceRange::getCharRange(Tokens[St]->Tok.getLocation(), |
| 1527 | Tokens[End]->Tok.getEndLoc()); |
Eric Liu | 40ef2fb | 2016-08-01 10:16:37 +0000 | [diff] [blame] | 1528 | auto Err = |
| 1529 | Fixes.add(tooling::Replacement(Env.getSourceManager(), SR, "")); |
| 1530 | // FIXME: better error handling. for now just print error message and skip |
| 1531 | // for the release version. |
Piotr Padlewski | 1ec383c | 2016-12-23 11:40:44 +0000 | [diff] [blame] | 1532 | if (Err) { |
Eric Liu | 40ef2fb | 2016-08-01 10:16:37 +0000 | [diff] [blame] | 1533 | llvm::errs() << llvm::toString(std::move(Err)) << "\n"; |
Piotr Padlewski | 1ec383c | 2016-12-23 11:40:44 +0000 | [diff] [blame] | 1534 | assert(false && "Fixes must not conflict!"); |
| 1535 | } |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1536 | Idx = End + 1; |
| 1537 | } |
| 1538 | |
| 1539 | return Fixes; |
| 1540 | } |
| 1541 | |
| 1542 | // Class for less-than inequality comparason for the set `RedundantTokens`. |
| 1543 | // We store tokens in the order they appear in the translation unit so that |
| 1544 | // we do not need to sort them in `generateFixes()`. |
| 1545 | struct FormatTokenLess { |
Eric Liu | 635423e | 2016-04-28 07:52:03 +0000 | [diff] [blame] | 1546 | FormatTokenLess(const SourceManager &SM) : SM(SM) {} |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1547 | |
Eric Liu | 2874ac3 | 2016-05-18 08:14:49 +0000 | [diff] [blame] | 1548 | bool operator()(const FormatToken *LHS, const FormatToken *RHS) const { |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1549 | return SM.isBeforeInTranslationUnit(LHS->Tok.getLocation(), |
| 1550 | RHS->Tok.getLocation()); |
| 1551 | } |
Eric Liu | 635423e | 2016-04-28 07:52:03 +0000 | [diff] [blame] | 1552 | const SourceManager &SM; |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 1553 | }; |
| 1554 | |
| 1555 | // Tokens to be deleted. |
| 1556 | std::set<FormatToken *, FormatTokenLess> DeletedTokens; |
Daniel Jasper | f793511 | 2012-12-03 18:12:45 +0000 | [diff] [blame] | 1557 | }; |
| 1558 | |
Ben Hamilton | e2e3e67 | 2018-01-17 17:33:08 +0000 | [diff] [blame] | 1559 | class ObjCHeaderStyleGuesser : public TokenAnalyzer { |
| 1560 | public: |
| 1561 | ObjCHeaderStyleGuesser(const Environment &Env, const FormatStyle &Style) |
| 1562 | : TokenAnalyzer(Env, Style), IsObjC(false) {} |
| 1563 | |
| 1564 | std::pair<tooling::Replacements, unsigned> |
| 1565 | analyze(TokenAnnotator &Annotator, |
| 1566 | SmallVectorImpl<AnnotatedLine *> &AnnotatedLines, |
| 1567 | FormatTokenLexer &Tokens) override { |
| 1568 | assert(Style.Language == FormatStyle::LK_Cpp); |
Ben Hamilton | 0675e87 | 2018-11-05 16:59:33 +0000 | [diff] [blame] | 1569 | IsObjC = guessIsObjC(Env.getSourceManager(), AnnotatedLines, |
| 1570 | Tokens.getKeywords()); |
Ben Hamilton | e2e3e67 | 2018-01-17 17:33:08 +0000 | [diff] [blame] | 1571 | tooling::Replacements Result; |
| 1572 | return {Result, 0}; |
| 1573 | } |
| 1574 | |
| 1575 | bool isObjC() { return IsObjC; } |
| 1576 | |
| 1577 | private: |
Ben Hamilton | 0675e87 | 2018-11-05 16:59:33 +0000 | [diff] [blame] | 1578 | static bool |
| 1579 | guessIsObjC(const SourceManager &SourceManager, |
| 1580 | const SmallVectorImpl<AnnotatedLine *> &AnnotatedLines, |
| 1581 | const AdditionalKeywords &Keywords) { |
Krasimir Georgiev | 8e21678 | 2018-01-17 20:01:02 +0000 | [diff] [blame] | 1582 | // Keep this array sorted, since we are binary searching over it. |
| 1583 | static constexpr llvm::StringLiteral FoundationIdentifiers[] = { |
Ben Hamilton | e2e3e67 | 2018-01-17 17:33:08 +0000 | [diff] [blame] | 1584 | "CGFloat", |
Ben Hamilton | 19c782d | 2018-03-22 03:25:22 +0000 | [diff] [blame] | 1585 | "CGPoint", |
| 1586 | "CGPointMake", |
| 1587 | "CGPointZero", |
| 1588 | "CGRect", |
| 1589 | "CGRectEdge", |
| 1590 | "CGRectInfinite", |
| 1591 | "CGRectMake", |
| 1592 | "CGRectNull", |
| 1593 | "CGRectZero", |
| 1594 | "CGSize", |
| 1595 | "CGSizeMake", |
| 1596 | "CGVector", |
| 1597 | "CGVectorMake", |
Ben Hamilton | e2e3e67 | 2018-01-17 17:33:08 +0000 | [diff] [blame] | 1598 | "NSAffineTransform", |
| 1599 | "NSArray", |
| 1600 | "NSAttributedString", |
Ben Hamilton | b1a7919 | 2018-04-12 15:11:53 +0000 | [diff] [blame] | 1601 | "NSBlockOperation", |
Jacek Olesiak | ce4f0af | 2018-02-15 08:47:56 +0000 | [diff] [blame] | 1602 | "NSBundle", |
Ben Hamilton | e2e3e67 | 2018-01-17 17:33:08 +0000 | [diff] [blame] | 1603 | "NSCache", |
Jacek Olesiak | ce4f0af | 2018-02-15 08:47:56 +0000 | [diff] [blame] | 1604 | "NSCalendar", |
Ben Hamilton | e2e3e67 | 2018-01-17 17:33:08 +0000 | [diff] [blame] | 1605 | "NSCharacterSet", |
| 1606 | "NSCountedSet", |
| 1607 | "NSData", |
| 1608 | "NSDataDetector", |
| 1609 | "NSDecimal", |
| 1610 | "NSDecimalNumber", |
| 1611 | "NSDictionary", |
| 1612 | "NSEdgeInsets", |
| 1613 | "NSHashTable", |
| 1614 | "NSIndexPath", |
| 1615 | "NSIndexSet", |
| 1616 | "NSInteger", |
Ben Hamilton | b1a7919 | 2018-04-12 15:11:53 +0000 | [diff] [blame] | 1617 | "NSInvocationOperation", |
Ben Hamilton | e2e3e67 | 2018-01-17 17:33:08 +0000 | [diff] [blame] | 1618 | "NSLocale", |
| 1619 | "NSMapTable", |
| 1620 | "NSMutableArray", |
| 1621 | "NSMutableAttributedString", |
| 1622 | "NSMutableCharacterSet", |
| 1623 | "NSMutableData", |
| 1624 | "NSMutableDictionary", |
| 1625 | "NSMutableIndexSet", |
| 1626 | "NSMutableOrderedSet", |
| 1627 | "NSMutableSet", |
| 1628 | "NSMutableString", |
| 1629 | "NSNumber", |
| 1630 | "NSNumberFormatter", |
Jacek Olesiak | ce4f0af | 2018-02-15 08:47:56 +0000 | [diff] [blame] | 1631 | "NSObject", |
Ben Hamilton | b1a7919 | 2018-04-12 15:11:53 +0000 | [diff] [blame] | 1632 | "NSOperation", |
| 1633 | "NSOperationQueue", |
| 1634 | "NSOperationQueuePriority", |
Ben Hamilton | e2e3e67 | 2018-01-17 17:33:08 +0000 | [diff] [blame] | 1635 | "NSOrderedSet", |
| 1636 | "NSPoint", |
| 1637 | "NSPointerArray", |
Ben Hamilton | b1a7919 | 2018-04-12 15:11:53 +0000 | [diff] [blame] | 1638 | "NSQualityOfService", |
Ben Hamilton | e2e3e67 | 2018-01-17 17:33:08 +0000 | [diff] [blame] | 1639 | "NSRange", |
| 1640 | "NSRect", |
| 1641 | "NSRegularExpression", |
| 1642 | "NSSet", |
| 1643 | "NSSize", |
| 1644 | "NSString", |
Jacek Olesiak | ce4f0af | 2018-02-15 08:47:56 +0000 | [diff] [blame] | 1645 | "NSTimeZone", |
Ben Hamilton | e2e3e67 | 2018-01-17 17:33:08 +0000 | [diff] [blame] | 1646 | "NSUInteger", |
| 1647 | "NSURL", |
| 1648 | "NSURLComponents", |
| 1649 | "NSURLQueryItem", |
| 1650 | "NSUUID", |
Jacek Olesiak | ce4f0af | 2018-02-15 08:47:56 +0000 | [diff] [blame] | 1651 | "NSValue", |
Ben Hamilton | 19c782d | 2018-03-22 03:25:22 +0000 | [diff] [blame] | 1652 | "UIImage", |
| 1653 | "UIView", |
Ben Hamilton | e2e3e67 | 2018-01-17 17:33:08 +0000 | [diff] [blame] | 1654 | }; |
| 1655 | |
Ben Hamilton | ea7a27b | 2018-03-27 15:01:21 +0000 | [diff] [blame] | 1656 | for (auto Line : AnnotatedLines) { |
| 1657 | for (const FormatToken *FormatTok = Line->First; FormatTok; |
Ben Hamilton | e2e3e67 | 2018-01-17 17:33:08 +0000 | [diff] [blame] | 1658 | FormatTok = FormatTok->Next) { |
Jacek Olesiak | ce4f0af | 2018-02-15 08:47:56 +0000 | [diff] [blame] | 1659 | if ((FormatTok->Previous && FormatTok->Previous->is(tok::at) && |
Ben Hamilton | b1a7919 | 2018-04-12 15:11:53 +0000 | [diff] [blame] | 1660 | (FormatTok->Tok.getObjCKeywordID() != tok::objc_not_keyword || |
Ben Hamilton | e2e3e67 | 2018-01-17 17:33:08 +0000 | [diff] [blame] | 1661 | FormatTok->isOneOf(tok::numeric_constant, tok::l_square, |
| 1662 | tok::l_brace))) || |
| 1663 | (FormatTok->Tok.isAnyIdentifier() && |
Krasimir Georgiev | 8e21678 | 2018-01-17 20:01:02 +0000 | [diff] [blame] | 1664 | std::binary_search(std::begin(FoundationIdentifiers), |
| 1665 | std::end(FoundationIdentifiers), |
| 1666 | FormatTok->TokenText)) || |
Ben Hamilton | e2e3e67 | 2018-01-17 17:33:08 +0000 | [diff] [blame] | 1667 | FormatTok->is(TT_ObjCStringLiteral) || |
| 1668 | FormatTok->isOneOf(Keywords.kw_NS_ENUM, Keywords.kw_NS_OPTIONS, |
| 1669 | TT_ObjCBlockLBrace, TT_ObjCBlockLParen, |
| 1670 | TT_ObjCDecl, TT_ObjCForIn, TT_ObjCMethodExpr, |
| 1671 | TT_ObjCMethodSpecifier, TT_ObjCProperty)) { |
Ben Hamilton | 0675e87 | 2018-11-05 16:59:33 +0000 | [diff] [blame] | 1672 | LLVM_DEBUG(llvm::dbgs() |
| 1673 | << "Detected ObjC at location " |
| 1674 | << FormatTok->Tok.getLocation().printToString( |
| 1675 | SourceManager) |
| 1676 | << " token: " << FormatTok->TokenText << " token type: " |
| 1677 | << getTokenTypeName(FormatTok->Type) << "\n"); |
Ben Hamilton | e2e3e67 | 2018-01-17 17:33:08 +0000 | [diff] [blame] | 1678 | return true; |
| 1679 | } |
Ben Hamilton | 0675e87 | 2018-11-05 16:59:33 +0000 | [diff] [blame] | 1680 | if (guessIsObjC(SourceManager, Line->Children, Keywords)) |
Ben Hamilton | 6432afe | 2018-03-22 17:37:19 +0000 | [diff] [blame] | 1681 | return true; |
| 1682 | } |
Ben Hamilton | e2e3e67 | 2018-01-17 17:33:08 +0000 | [diff] [blame] | 1683 | } |
| 1684 | return false; |
| 1685 | } |
| 1686 | |
| 1687 | bool IsObjC; |
| 1688 | }; |
| 1689 | |
Daniel Jasper | d89ae9d | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 1690 | struct IncludeDirective { |
| 1691 | StringRef Filename; |
| 1692 | StringRef Text; |
| 1693 | unsigned Offset; |
Daniel Jasper | d2629dc | 2015-12-16 10:10:16 +0000 | [diff] [blame] | 1694 | int Category; |
Daniel Jasper | d89ae9d | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 1695 | }; |
| 1696 | |
Krasimir Georgiev | 7e91b03 | 2018-10-05 17:19:26 +0000 | [diff] [blame] | 1697 | struct JavaImportDirective { |
| 1698 | StringRef Identifier; |
| 1699 | StringRef Text; |
| 1700 | unsigned Offset; |
| 1701 | std::vector<StringRef> AssociatedCommentLines; |
| 1702 | bool IsStatic; |
| 1703 | }; |
| 1704 | |
Craig Topper | af35e85 | 2013-06-30 22:29:28 +0000 | [diff] [blame] | 1705 | } // end anonymous namespace |
| 1706 | |
Daniel Jasper | d89ae9d | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 1707 | // Determines whether 'Ranges' intersects with ('Start', 'End'). |
| 1708 | static bool affectsRange(ArrayRef<tooling::Range> Ranges, unsigned Start, |
| 1709 | unsigned End) { |
| 1710 | for (auto Range : Ranges) { |
| 1711 | if (Range.getOffset() < End && |
| 1712 | Range.getOffset() + Range.getLength() > Start) |
| 1713 | return true; |
| 1714 | } |
| 1715 | return false; |
| 1716 | } |
| 1717 | |
Eric Liu | a992afe | 2016-08-10 09:32:23 +0000 | [diff] [blame] | 1718 | // Returns a pair (Index, OffsetToEOL) describing the position of the cursor |
| 1719 | // before sorting/deduplicating. Index is the index of the include under the |
| 1720 | // cursor in the original set of includes. If this include has duplicates, it is |
| 1721 | // the index of the first of the duplicates as the others are going to be |
| 1722 | // removed. OffsetToEOL describes the cursor's position relative to the end of |
| 1723 | // its current line. |
| 1724 | // If `Cursor` is not on any #include, `Index` will be UINT_MAX. |
| 1725 | static std::pair<unsigned, unsigned> |
| 1726 | FindCursorIndex(const SmallVectorImpl<IncludeDirective> &Includes, |
| 1727 | const SmallVectorImpl<unsigned> &Indices, unsigned Cursor) { |
| 1728 | unsigned CursorIndex = UINT_MAX; |
| 1729 | unsigned OffsetToEOL = 0; |
| 1730 | for (int i = 0, e = Includes.size(); i != e; ++i) { |
| 1731 | unsigned Start = Includes[Indices[i]].Offset; |
| 1732 | unsigned End = Start + Includes[Indices[i]].Text.size(); |
| 1733 | if (!(Cursor >= Start && Cursor < End)) |
| 1734 | continue; |
| 1735 | CursorIndex = Indices[i]; |
| 1736 | OffsetToEOL = End - Cursor; |
| 1737 | // Put the cursor on the only remaining #include among the duplicate |
| 1738 | // #includes. |
| 1739 | while (--i >= 0 && Includes[CursorIndex].Text == Includes[Indices[i]].Text) |
| 1740 | CursorIndex = i; |
| 1741 | break; |
| 1742 | } |
| 1743 | return std::make_pair(CursorIndex, OffsetToEOL); |
| 1744 | } |
| 1745 | |
| 1746 | // Sorts and deduplicate a block of includes given by 'Includes' alphabetically |
| 1747 | // adding the necessary replacement to 'Replaces'. 'Includes' must be in strict |
| 1748 | // source order. |
| 1749 | // #include directives with the same text will be deduplicated, and only the |
| 1750 | // first #include in the duplicate #includes remains. If the `Cursor` is |
| 1751 | // provided and put on a deleted #include, it will be moved to the remaining |
| 1752 | // #include in the duplicate #includes. |
Martin Probst | c4a0dd4 | 2016-05-20 11:24:24 +0000 | [diff] [blame] | 1753 | static void sortCppIncludes(const FormatStyle &Style, |
Eric Liu | a992afe | 2016-08-10 09:32:23 +0000 | [diff] [blame] | 1754 | const SmallVectorImpl<IncludeDirective> &Includes, |
| 1755 | ArrayRef<tooling::Range> Ranges, StringRef FileName, |
| 1756 | tooling::Replacements &Replaces, unsigned *Cursor) { |
| 1757 | unsigned IncludesBeginOffset = Includes.front().Offset; |
Daniel Jasper | d6a0078 | 2016-08-30 21:33:41 +0000 | [diff] [blame] | 1758 | unsigned IncludesEndOffset = |
| 1759 | Includes.back().Offset + Includes.back().Text.size(); |
| 1760 | unsigned IncludesBlockSize = IncludesEndOffset - IncludesBeginOffset; |
| 1761 | if (!affectsRange(Ranges, IncludesBeginOffset, IncludesEndOffset)) |
Daniel Jasper | d89ae9d | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 1762 | return; |
| 1763 | SmallVector<unsigned, 16> Indices; |
| 1764 | for (unsigned i = 0, e = Includes.size(); i != e; ++i) |
| 1765 | Indices.push_back(i); |
Daniel Jasper | 94a96fc | 2016-03-03 17:34:14 +0000 | [diff] [blame] | 1766 | std::stable_sort( |
| 1767 | Indices.begin(), Indices.end(), [&](unsigned LHSI, unsigned RHSI) { |
| 1768 | return std::tie(Includes[LHSI].Category, Includes[LHSI].Filename) < |
| 1769 | std::tie(Includes[RHSI].Category, Includes[RHSI].Filename); |
| 1770 | }); |
Eric Liu | a992afe | 2016-08-10 09:32:23 +0000 | [diff] [blame] | 1771 | // The index of the include on which the cursor will be put after |
| 1772 | // sorting/deduplicating. |
| 1773 | unsigned CursorIndex; |
| 1774 | // The offset from cursor to the end of line. |
| 1775 | unsigned CursorToEOLOffset; |
| 1776 | if (Cursor) |
| 1777 | std::tie(CursorIndex, CursorToEOLOffset) = |
| 1778 | FindCursorIndex(Includes, Indices, *Cursor); |
| 1779 | |
| 1780 | // Deduplicate #includes. |
| 1781 | Indices.erase(std::unique(Indices.begin(), Indices.end(), |
| 1782 | [&](unsigned LHSI, unsigned RHSI) { |
| 1783 | return Includes[LHSI].Text == Includes[RHSI].Text; |
| 1784 | }), |
| 1785 | Indices.end()); |
Daniel Jasper | d89ae9d | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 1786 | |
Krasimir Georgiev | 4c2c9c3 | 2017-11-27 13:23:45 +0000 | [diff] [blame] | 1787 | int CurrentCategory = Includes.front().Category; |
| 1788 | |
Daniel Jasper | d89ae9d | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 1789 | // If the #includes are out of order, we generate a single replacement fixing |
| 1790 | // the entire block. Otherwise, no replacement is generated. |
Eric Liu | a992afe | 2016-08-10 09:32:23 +0000 | [diff] [blame] | 1791 | if (Indices.size() == Includes.size() && |
Krasimir Georgiev | 4c2c9c3 | 2017-11-27 13:23:45 +0000 | [diff] [blame] | 1792 | std::is_sorted(Indices.begin(), Indices.end()) && |
Eric Liu | 9d92c02 | 2018-05-14 19:51:33 +0000 | [diff] [blame] | 1793 | Style.IncludeStyle.IncludeBlocks == tooling::IncludeStyle::IBS_Preserve) |
Daniel Jasper | d89ae9d | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 1794 | return; |
| 1795 | |
Daniel Jasper | b68aabf | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 1796 | std::string result; |
Daniel Jasper | b68aabf | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 1797 | for (unsigned Index : Indices) { |
Krasimir Georgiev | 4c2c9c3 | 2017-11-27 13:23:45 +0000 | [diff] [blame] | 1798 | if (!result.empty()) { |
Daniel Jasper | b68aabf | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 1799 | result += "\n"; |
Eric Liu | 9d92c02 | 2018-05-14 19:51:33 +0000 | [diff] [blame] | 1800 | if (Style.IncludeStyle.IncludeBlocks == |
| 1801 | tooling::IncludeStyle::IBS_Regroup && |
Krasimir Georgiev | 4c2c9c3 | 2017-11-27 13:23:45 +0000 | [diff] [blame] | 1802 | CurrentCategory != Includes[Index].Category) |
| 1803 | result += "\n"; |
| 1804 | } |
Daniel Jasper | b68aabf | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 1805 | result += Includes[Index].Text; |
Eric Liu | a992afe | 2016-08-10 09:32:23 +0000 | [diff] [blame] | 1806 | if (Cursor && CursorIndex == Index) |
| 1807 | *Cursor = IncludesBeginOffset + result.size() - CursorToEOLOffset; |
Krasimir Georgiev | 4c2c9c3 | 2017-11-27 13:23:45 +0000 | [diff] [blame] | 1808 | CurrentCategory = Includes[Index].Category; |
Daniel Jasper | d89ae9d | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 1809 | } |
| 1810 | |
Eric Liu | 40ef2fb | 2016-08-01 10:16:37 +0000 | [diff] [blame] | 1811 | auto Err = Replaces.add(tooling::Replacement( |
Eric Liu | a992afe | 2016-08-10 09:32:23 +0000 | [diff] [blame] | 1812 | FileName, Includes.front().Offset, IncludesBlockSize, result)); |
Eric Liu | 40ef2fb | 2016-08-01 10:16:37 +0000 | [diff] [blame] | 1813 | // FIXME: better error handling. For now, just skip the replacement for the |
| 1814 | // release version. |
Piotr Padlewski | 1ec383c | 2016-12-23 11:40:44 +0000 | [diff] [blame] | 1815 | if (Err) { |
Eric Liu | 40ef2fb | 2016-08-01 10:16:37 +0000 | [diff] [blame] | 1816 | llvm::errs() << llvm::toString(std::move(Err)) << "\n"; |
Piotr Padlewski | 1ec383c | 2016-12-23 11:40:44 +0000 | [diff] [blame] | 1817 | assert(false); |
| 1818 | } |
Daniel Jasper | d89ae9d | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 1819 | } |
| 1820 | |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 1821 | namespace { |
| 1822 | |
Krasimir Georgiev | 7e91b03 | 2018-10-05 17:19:26 +0000 | [diff] [blame] | 1823 | const char CppIncludeRegexPattern[] = |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 1824 | R"(^[\t\ ]*#[\t\ ]*(import|include)[^"<]*(["<][^">]*[">]))"; |
| 1825 | |
| 1826 | } // anonymous namespace |
| 1827 | |
Martin Probst | c4a0dd4 | 2016-05-20 11:24:24 +0000 | [diff] [blame] | 1828 | tooling::Replacements sortCppIncludes(const FormatStyle &Style, StringRef Code, |
| 1829 | ArrayRef<tooling::Range> Ranges, |
| 1830 | StringRef FileName, |
| 1831 | tooling::Replacements &Replaces, |
| 1832 | unsigned *Cursor) { |
Daniel Jasper | d89ae9d | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 1833 | unsigned Prev = 0; |
| 1834 | unsigned SearchFrom = 0; |
Krasimir Georgiev | 7e91b03 | 2018-10-05 17:19:26 +0000 | [diff] [blame] | 1835 | llvm::Regex IncludeRegex(CppIncludeRegexPattern); |
Daniel Jasper | d89ae9d | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 1836 | SmallVector<StringRef, 4> Matches; |
| 1837 | SmallVector<IncludeDirective, 16> IncludesInBlock; |
Daniel Jasper | 85c472d | 2015-09-29 07:53:08 +0000 | [diff] [blame] | 1838 | |
| 1839 | // In compiled files, consider the first #include to be the main #include of |
| 1840 | // the file if it is not a system #include. This ensures that the header |
| 1841 | // doesn't have hidden dependencies |
| 1842 | // (http://llvm.org/docs/CodingStandards.html#include-style). |
| 1843 | // |
| 1844 | // FIXME: Do some sanity checking, e.g. edit distance of the base name, to fix |
| 1845 | // cases where the first #include is unlikely to be the main header. |
Eric Liu | 7129e63 | 2018-05-14 20:17:53 +0000 | [diff] [blame] | 1846 | tooling::IncludeCategoryManager Categories(Style.IncludeStyle, FileName); |
Daniel Jasper | 32d75fa | 2015-12-21 13:40:49 +0000 | [diff] [blame] | 1847 | bool FirstIncludeBlock = true; |
Daniel Jasper | a252f5d | 2015-12-21 17:28:24 +0000 | [diff] [blame] | 1848 | bool MainIncludeFound = false; |
Daniel Jasper | 9b8c7c7 | 2015-11-21 09:17:08 +0000 | [diff] [blame] | 1849 | bool FormattingOff = false; |
| 1850 | |
Daniel Jasper | d89ae9d | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 1851 | for (;;) { |
| 1852 | auto Pos = Code.find('\n', SearchFrom); |
| 1853 | StringRef Line = |
| 1854 | Code.substr(Prev, (Pos != StringRef::npos ? Pos : Code.size()) - Prev); |
Daniel Jasper | 9b8c7c7 | 2015-11-21 09:17:08 +0000 | [diff] [blame] | 1855 | |
| 1856 | StringRef Trimmed = Line.trim(); |
Paul Hoad | 9b468c0 | 2019-03-02 09:08:51 +0000 | [diff] [blame] | 1857 | if (Trimmed == "// clang-format off" || Trimmed == "/* clang-format off */") |
Daniel Jasper | 9b8c7c7 | 2015-11-21 09:17:08 +0000 | [diff] [blame] | 1858 | FormattingOff = true; |
Paul Hoad | 9b468c0 | 2019-03-02 09:08:51 +0000 | [diff] [blame] | 1859 | else if (Trimmed == "// clang-format on" || |
| 1860 | Trimmed == "/* clang-format on */") |
Daniel Jasper | 9b8c7c7 | 2015-11-21 09:17:08 +0000 | [diff] [blame] | 1861 | FormattingOff = false; |
| 1862 | |
Krasimir Georgiev | 4c2c9c3 | 2017-11-27 13:23:45 +0000 | [diff] [blame] | 1863 | const bool EmptyLineSkipped = |
Eric Liu | 9d92c02 | 2018-05-14 19:51:33 +0000 | [diff] [blame] | 1864 | Trimmed.empty() && |
| 1865 | (Style.IncludeStyle.IncludeBlocks == tooling::IncludeStyle::IBS_Merge || |
| 1866 | Style.IncludeStyle.IncludeBlocks == |
| 1867 | tooling::IncludeStyle::IBS_Regroup); |
Krasimir Georgiev | 4c2c9c3 | 2017-11-27 13:23:45 +0000 | [diff] [blame] | 1868 | |
Daniel Jasper | 9b8c7c7 | 2015-11-21 09:17:08 +0000 | [diff] [blame] | 1869 | if (!FormattingOff && !Line.endswith("\\")) { |
Daniel Jasper | d89ae9d | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 1870 | if (IncludeRegex.match(Line, &Matches)) { |
Nico Weber | ff06370 | 2015-10-21 17:13:45 +0000 | [diff] [blame] | 1871 | StringRef IncludeName = Matches[2]; |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 1872 | int Category = Categories.getIncludePriority( |
| 1873 | IncludeName, |
| 1874 | /*CheckMainHeader=*/!MainIncludeFound && FirstIncludeBlock); |
| 1875 | if (Category == 0) |
| 1876 | MainIncludeFound = true; |
Nico Weber | ff06370 | 2015-10-21 17:13:45 +0000 | [diff] [blame] | 1877 | IncludesInBlock.push_back({IncludeName, Line, Prev, Category}); |
Krasimir Georgiev | 4c2c9c3 | 2017-11-27 13:23:45 +0000 | [diff] [blame] | 1878 | } else if (!IncludesInBlock.empty() && !EmptyLineSkipped) { |
Martin Probst | c4a0dd4 | 2016-05-20 11:24:24 +0000 | [diff] [blame] | 1879 | sortCppIncludes(Style, IncludesInBlock, Ranges, FileName, Replaces, |
| 1880 | Cursor); |
Daniel Jasper | d89ae9d | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 1881 | IncludesInBlock.clear(); |
Daniel Jasper | 32d75fa | 2015-12-21 13:40:49 +0000 | [diff] [blame] | 1882 | FirstIncludeBlock = false; |
Daniel Jasper | d89ae9d | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 1883 | } |
| 1884 | Prev = Pos + 1; |
| 1885 | } |
| 1886 | if (Pos == StringRef::npos || Pos + 1 == Code.size()) |
| 1887 | break; |
| 1888 | SearchFrom = Pos + 1; |
| 1889 | } |
| 1890 | if (!IncludesInBlock.empty()) |
Martin Probst | c4a0dd4 | 2016-05-20 11:24:24 +0000 | [diff] [blame] | 1891 | sortCppIncludes(Style, IncludesInBlock, Ranges, FileName, Replaces, Cursor); |
| 1892 | return Replaces; |
| 1893 | } |
| 1894 | |
Krasimir Georgiev | 7e91b03 | 2018-10-05 17:19:26 +0000 | [diff] [blame] | 1895 | // Returns group number to use as a first order sort on imports. Gives UINT_MAX |
| 1896 | // if the import does not match any given groups. |
| 1897 | static unsigned findJavaImportGroup(const FormatStyle &Style, |
| 1898 | StringRef ImportIdentifier) { |
| 1899 | unsigned LongestMatchIndex = UINT_MAX; |
| 1900 | unsigned LongestMatchLength = 0; |
| 1901 | for (unsigned I = 0; I < Style.JavaImportGroups.size(); I++) { |
| 1902 | std::string GroupPrefix = Style.JavaImportGroups[I]; |
| 1903 | if (ImportIdentifier.startswith(GroupPrefix) && |
| 1904 | GroupPrefix.length() > LongestMatchLength) { |
| 1905 | LongestMatchIndex = I; |
| 1906 | LongestMatchLength = GroupPrefix.length(); |
| 1907 | } |
| 1908 | } |
| 1909 | return LongestMatchIndex; |
| 1910 | } |
| 1911 | |
| 1912 | // Sorts and deduplicates a block of includes given by 'Imports' based on |
| 1913 | // JavaImportGroups, then adding the necessary replacement to 'Replaces'. |
| 1914 | // Import declarations with the same text will be deduplicated. Between each |
| 1915 | // import group, a newline is inserted, and within each import group, a |
| 1916 | // lexicographic sort based on ASCII value is performed. |
| 1917 | static void sortJavaImports(const FormatStyle &Style, |
| 1918 | const SmallVectorImpl<JavaImportDirective> &Imports, |
| 1919 | ArrayRef<tooling::Range> Ranges, StringRef FileName, |
Paul Hoad | 5bcf99b | 2019-03-01 09:09:54 +0000 | [diff] [blame] | 1920 | StringRef Code, tooling::Replacements &Replaces) { |
Krasimir Georgiev | 7e91b03 | 2018-10-05 17:19:26 +0000 | [diff] [blame] | 1921 | unsigned ImportsBeginOffset = Imports.front().Offset; |
| 1922 | unsigned ImportsEndOffset = |
| 1923 | Imports.back().Offset + Imports.back().Text.size(); |
| 1924 | unsigned ImportsBlockSize = ImportsEndOffset - ImportsBeginOffset; |
| 1925 | if (!affectsRange(Ranges, ImportsBeginOffset, ImportsEndOffset)) |
| 1926 | return; |
| 1927 | SmallVector<unsigned, 16> Indices; |
| 1928 | SmallVector<unsigned, 16> JavaImportGroups; |
| 1929 | for (unsigned i = 0, e = Imports.size(); i != e; ++i) { |
| 1930 | Indices.push_back(i); |
| 1931 | JavaImportGroups.push_back( |
| 1932 | findJavaImportGroup(Style, Imports[i].Identifier)); |
| 1933 | } |
Mandeep Singh Grang | d36da8a | 2019-01-18 18:45:26 +0000 | [diff] [blame] | 1934 | llvm::sort(Indices, [&](unsigned LHSI, unsigned RHSI) { |
Krasimir Georgiev | 777bb82 | 2019-02-20 11:44:21 +0000 | [diff] [blame] | 1935 | // Negating IsStatic to push static imports above non-static imports. |
| 1936 | return std::make_tuple(!Imports[LHSI].IsStatic, JavaImportGroups[LHSI], |
| 1937 | Imports[LHSI].Identifier) < |
| 1938 | std::make_tuple(!Imports[RHSI].IsStatic, JavaImportGroups[RHSI], |
| 1939 | Imports[RHSI].Identifier); |
| 1940 | }); |
Krasimir Georgiev | 7e91b03 | 2018-10-05 17:19:26 +0000 | [diff] [blame] | 1941 | |
| 1942 | // Deduplicate imports. |
| 1943 | Indices.erase(std::unique(Indices.begin(), Indices.end(), |
| 1944 | [&](unsigned LHSI, unsigned RHSI) { |
| 1945 | return Imports[LHSI].Text == Imports[RHSI].Text; |
| 1946 | }), |
| 1947 | Indices.end()); |
| 1948 | |
| 1949 | bool CurrentIsStatic = Imports[Indices.front()].IsStatic; |
| 1950 | unsigned CurrentImportGroup = JavaImportGroups[Indices.front()]; |
| 1951 | |
| 1952 | std::string result; |
| 1953 | for (unsigned Index : Indices) { |
| 1954 | if (!result.empty()) { |
| 1955 | result += "\n"; |
| 1956 | if (CurrentIsStatic != Imports[Index].IsStatic || |
| 1957 | CurrentImportGroup != JavaImportGroups[Index]) |
| 1958 | result += "\n"; |
| 1959 | } |
| 1960 | for (StringRef CommentLine : Imports[Index].AssociatedCommentLines) { |
| 1961 | result += CommentLine; |
| 1962 | result += "\n"; |
| 1963 | } |
| 1964 | result += Imports[Index].Text; |
| 1965 | CurrentIsStatic = Imports[Index].IsStatic; |
| 1966 | CurrentImportGroup = JavaImportGroups[Index]; |
| 1967 | } |
| 1968 | |
Krasimir Georgiev | 777bb82 | 2019-02-20 11:44:21 +0000 | [diff] [blame] | 1969 | // If the imports are out of order, we generate a single replacement fixing |
| 1970 | // the entire block. Otherwise, no replacement is generated. |
| 1971 | if (result == Code.substr(Imports.front().Offset, ImportsBlockSize)) |
| 1972 | return; |
| 1973 | |
Krasimir Georgiev | 7e91b03 | 2018-10-05 17:19:26 +0000 | [diff] [blame] | 1974 | auto Err = Replaces.add(tooling::Replacement(FileName, Imports.front().Offset, |
| 1975 | ImportsBlockSize, result)); |
| 1976 | // FIXME: better error handling. For now, just skip the replacement for the |
| 1977 | // release version. |
| 1978 | if (Err) { |
| 1979 | llvm::errs() << llvm::toString(std::move(Err)) << "\n"; |
| 1980 | assert(false); |
| 1981 | } |
| 1982 | } |
| 1983 | |
| 1984 | namespace { |
| 1985 | |
| 1986 | const char JavaImportRegexPattern[] = |
Paul Hoad | 88335c2 | 2019-03-30 13:05:40 +0000 | [diff] [blame] | 1987 | "^[\t ]*import[\t ]+(static[\t ]*)?([^\t ]*)[\t ]*;"; |
Krasimir Georgiev | 7e91b03 | 2018-10-05 17:19:26 +0000 | [diff] [blame] | 1988 | |
| 1989 | } // anonymous namespace |
| 1990 | |
| 1991 | tooling::Replacements sortJavaImports(const FormatStyle &Style, StringRef Code, |
| 1992 | ArrayRef<tooling::Range> Ranges, |
| 1993 | StringRef FileName, |
| 1994 | tooling::Replacements &Replaces) { |
| 1995 | unsigned Prev = 0; |
| 1996 | unsigned SearchFrom = 0; |
| 1997 | llvm::Regex ImportRegex(JavaImportRegexPattern); |
| 1998 | SmallVector<StringRef, 4> Matches; |
| 1999 | SmallVector<JavaImportDirective, 16> ImportsInBlock; |
| 2000 | std::vector<StringRef> AssociatedCommentLines; |
| 2001 | |
| 2002 | bool FormattingOff = false; |
| 2003 | |
| 2004 | for (;;) { |
| 2005 | auto Pos = Code.find('\n', SearchFrom); |
| 2006 | StringRef Line = |
| 2007 | Code.substr(Prev, (Pos != StringRef::npos ? Pos : Code.size()) - Prev); |
| 2008 | |
| 2009 | StringRef Trimmed = Line.trim(); |
| 2010 | if (Trimmed == "// clang-format off") |
| 2011 | FormattingOff = true; |
| 2012 | else if (Trimmed == "// clang-format on") |
| 2013 | FormattingOff = false; |
| 2014 | |
| 2015 | if (ImportRegex.match(Line, &Matches)) { |
| 2016 | if (FormattingOff) { |
| 2017 | // If at least one import line has formatting turned off, turn off |
| 2018 | // formatting entirely. |
| 2019 | return Replaces; |
| 2020 | } |
| 2021 | StringRef Static = Matches[1]; |
| 2022 | StringRef Identifier = Matches[2]; |
| 2023 | bool IsStatic = false; |
| 2024 | if (Static.contains("static")) { |
| 2025 | IsStatic = true; |
| 2026 | } |
Paul Hoad | 5bcf99b | 2019-03-01 09:09:54 +0000 | [diff] [blame] | 2027 | ImportsInBlock.push_back( |
| 2028 | {Identifier, Line, Prev, AssociatedCommentLines, IsStatic}); |
Krasimir Georgiev | 7e91b03 | 2018-10-05 17:19:26 +0000 | [diff] [blame] | 2029 | AssociatedCommentLines.clear(); |
| 2030 | } else if (Trimmed.size() > 0 && !ImportsInBlock.empty()) { |
| 2031 | // Associating comments within the imports with the nearest import below |
| 2032 | AssociatedCommentLines.push_back(Line); |
| 2033 | } |
| 2034 | Prev = Pos + 1; |
| 2035 | if (Pos == StringRef::npos || Pos + 1 == Code.size()) |
| 2036 | break; |
| 2037 | SearchFrom = Pos + 1; |
| 2038 | } |
| 2039 | if (!ImportsInBlock.empty()) |
Krasimir Georgiev | 777bb82 | 2019-02-20 11:44:21 +0000 | [diff] [blame] | 2040 | sortJavaImports(Style, ImportsInBlock, Ranges, FileName, Code, Replaces); |
Krasimir Georgiev | 7e91b03 | 2018-10-05 17:19:26 +0000 | [diff] [blame] | 2041 | return Replaces; |
| 2042 | } |
| 2043 | |
Martin Probst | fa37b18 | 2017-01-27 09:09:11 +0000 | [diff] [blame] | 2044 | bool isMpegTS(StringRef Code) { |
| 2045 | // MPEG transport streams use the ".ts" file extension. clang-format should |
| 2046 | // not attempt to format those. MPEG TS' frame format starts with 0x47 every |
| 2047 | // 189 bytes - detect that and return. |
| 2048 | return Code.size() > 188 && Code[0] == 0x47 && Code[188] == 0x47; |
| 2049 | } |
| 2050 | |
Manuel Klimek | 89628f6 | 2017-09-20 09:51:03 +0000 | [diff] [blame] | 2051 | bool isLikelyXml(StringRef Code) { return Code.ltrim().startswith("<"); } |
Krasimir Georgiev | a2e7d0d | 2017-08-29 13:51:38 +0000 | [diff] [blame] | 2052 | |
Martin Probst | c4a0dd4 | 2016-05-20 11:24:24 +0000 | [diff] [blame] | 2053 | tooling::Replacements sortIncludes(const FormatStyle &Style, StringRef Code, |
| 2054 | ArrayRef<tooling::Range> Ranges, |
| 2055 | StringRef FileName, unsigned *Cursor) { |
| 2056 | tooling::Replacements Replaces; |
| 2057 | if (!Style.SortIncludes) |
| 2058 | return Replaces; |
Krasimir Georgiev | 8687303 | 2017-08-29 13:57:31 +0000 | [diff] [blame] | 2059 | if (isLikelyXml(Code)) |
| 2060 | return Replaces; |
| 2061 | if (Style.Language == FormatStyle::LanguageKind::LK_JavaScript && |
| 2062 | isMpegTS(Code)) |
Martin Probst | fa37b18 | 2017-01-27 09:09:11 +0000 | [diff] [blame] | 2063 | return Replaces; |
Martin Probst | c4a0dd4 | 2016-05-20 11:24:24 +0000 | [diff] [blame] | 2064 | if (Style.Language == FormatStyle::LanguageKind::LK_JavaScript) |
| 2065 | return sortJavaScriptImports(Style, Code, Ranges, FileName); |
Krasimir Georgiev | 7e91b03 | 2018-10-05 17:19:26 +0000 | [diff] [blame] | 2066 | if (Style.Language == FormatStyle::LanguageKind::LK_Java) |
| 2067 | return sortJavaImports(Style, Code, Ranges, FileName, Replaces); |
Martin Probst | c4a0dd4 | 2016-05-20 11:24:24 +0000 | [diff] [blame] | 2068 | sortCppIncludes(Style, Code, Ranges, FileName, Replaces, Cursor); |
Daniel Jasper | d89ae9d | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 2069 | return Replaces; |
| 2070 | } |
| 2071 | |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 2072 | template <typename T> |
Eric Liu | 4f8d994 | 2016-07-11 13:53:12 +0000 | [diff] [blame] | 2073 | static llvm::Expected<tooling::Replacements> |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 2074 | processReplacements(T ProcessFunc, StringRef Code, |
| 2075 | const tooling::Replacements &Replaces, |
| 2076 | const FormatStyle &Style) { |
Manuel Klimek | b12e5a5 | 2016-03-01 12:37:30 +0000 | [diff] [blame] | 2077 | if (Replaces.empty()) |
| 2078 | return tooling::Replacements(); |
| 2079 | |
Eric Liu | 4f8d994 | 2016-07-11 13:53:12 +0000 | [diff] [blame] | 2080 | auto NewCode = applyAllReplacements(Code, Replaces); |
| 2081 | if (!NewCode) |
| 2082 | return NewCode.takeError(); |
Eric Liu | 40ef2fb | 2016-08-01 10:16:37 +0000 | [diff] [blame] | 2083 | std::vector<tooling::Range> ChangedRanges = Replaces.getAffectedRanges(); |
Manuel Klimek | b12e5a5 | 2016-03-01 12:37:30 +0000 | [diff] [blame] | 2084 | StringRef FileName = Replaces.begin()->getFilePath(); |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 2085 | |
Manuel Klimek | b12e5a5 | 2016-03-01 12:37:30 +0000 | [diff] [blame] | 2086 | tooling::Replacements FormatReplaces = |
Eric Liu | 4f8d994 | 2016-07-11 13:53:12 +0000 | [diff] [blame] | 2087 | ProcessFunc(Style, *NewCode, ChangedRanges, FileName); |
Manuel Klimek | b12e5a5 | 2016-03-01 12:37:30 +0000 | [diff] [blame] | 2088 | |
Eric Liu | 40ef2fb | 2016-08-01 10:16:37 +0000 | [diff] [blame] | 2089 | return Replaces.merge(FormatReplaces); |
Manuel Klimek | b12e5a5 | 2016-03-01 12:37:30 +0000 | [diff] [blame] | 2090 | } |
| 2091 | |
Eric Liu | 4f8d994 | 2016-07-11 13:53:12 +0000 | [diff] [blame] | 2092 | llvm::Expected<tooling::Replacements> |
| 2093 | formatReplacements(StringRef Code, const tooling::Replacements &Replaces, |
| 2094 | const FormatStyle &Style) { |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 2095 | // We need to use lambda function here since there are two versions of |
Eric Liu | baf58c2 | 2016-05-18 13:43:48 +0000 | [diff] [blame] | 2096 | // `sortIncludes`. |
| 2097 | auto SortIncludes = [](const FormatStyle &Style, StringRef Code, |
| 2098 | std::vector<tooling::Range> Ranges, |
| 2099 | StringRef FileName) -> tooling::Replacements { |
| 2100 | return sortIncludes(Style, Code, Ranges, FileName); |
| 2101 | }; |
Eric Liu | 4f8d994 | 2016-07-11 13:53:12 +0000 | [diff] [blame] | 2102 | auto SortedReplaces = |
Eric Liu | baf58c2 | 2016-05-18 13:43:48 +0000 | [diff] [blame] | 2103 | processReplacements(SortIncludes, Code, Replaces, Style); |
Eric Liu | 4f8d994 | 2016-07-11 13:53:12 +0000 | [diff] [blame] | 2104 | if (!SortedReplaces) |
| 2105 | return SortedReplaces.takeError(); |
Eric Liu | baf58c2 | 2016-05-18 13:43:48 +0000 | [diff] [blame] | 2106 | |
| 2107 | // We need to use lambda function here since there are two versions of |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 2108 | // `reformat`. |
| 2109 | auto Reformat = [](const FormatStyle &Style, StringRef Code, |
| 2110 | std::vector<tooling::Range> Ranges, |
| 2111 | StringRef FileName) -> tooling::Replacements { |
| 2112 | return reformat(Style, Code, Ranges, FileName); |
| 2113 | }; |
Eric Liu | 4f8d994 | 2016-07-11 13:53:12 +0000 | [diff] [blame] | 2114 | return processReplacements(Reformat, Code, *SortedReplaces, Style); |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 2115 | } |
| 2116 | |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 2117 | namespace { |
| 2118 | |
| 2119 | inline bool isHeaderInsertion(const tooling::Replacement &Replace) { |
Eric Liu | c0d3a80 | 2016-09-23 15:10:56 +0000 | [diff] [blame] | 2120 | return Replace.getOffset() == UINT_MAX && Replace.getLength() == 0 && |
Krasimir Georgiev | 7e91b03 | 2018-10-05 17:19:26 +0000 | [diff] [blame] | 2121 | llvm::Regex(CppIncludeRegexPattern) |
| 2122 | .match(Replace.getReplacementText()); |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 2123 | } |
| 2124 | |
Eric Liu | c0d3a80 | 2016-09-23 15:10:56 +0000 | [diff] [blame] | 2125 | inline bool isHeaderDeletion(const tooling::Replacement &Replace) { |
| 2126 | return Replace.getOffset() == UINT_MAX && Replace.getLength() == 1; |
| 2127 | } |
| 2128 | |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 2129 | // FIXME: insert empty lines between newly created blocks. |
| 2130 | tooling::Replacements |
| 2131 | fixCppIncludeInsertions(StringRef Code, const tooling::Replacements &Replaces, |
| 2132 | const FormatStyle &Style) { |
Daniel Jasper | 1dbc210 | 2017-03-31 13:30:24 +0000 | [diff] [blame] | 2133 | if (!Style.isCpp()) |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 2134 | return Replaces; |
| 2135 | |
| 2136 | tooling::Replacements HeaderInsertions; |
Eric Liu | c0d3a80 | 2016-09-23 15:10:56 +0000 | [diff] [blame] | 2137 | std::set<llvm::StringRef> HeadersToDelete; |
Eric Liu | 40ef2fb | 2016-08-01 10:16:37 +0000 | [diff] [blame] | 2138 | tooling::Replacements Result; |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 2139 | for (const auto &R : Replaces) { |
Eric Liu | 40ef2fb | 2016-08-01 10:16:37 +0000 | [diff] [blame] | 2140 | if (isHeaderInsertion(R)) { |
| 2141 | // Replacements from \p Replaces must be conflict-free already, so we can |
| 2142 | // simply consume the error. |
| 2143 | llvm::consumeError(HeaderInsertions.add(R)); |
Eric Liu | c0d3a80 | 2016-09-23 15:10:56 +0000 | [diff] [blame] | 2144 | } else if (isHeaderDeletion(R)) { |
| 2145 | HeadersToDelete.insert(R.getReplacementText()); |
Eric Liu | 40ef2fb | 2016-08-01 10:16:37 +0000 | [diff] [blame] | 2146 | } else if (R.getOffset() == UINT_MAX) { |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 2147 | llvm::errs() << "Insertions other than header #include insertion are " |
| 2148 | "not supported! " |
| 2149 | << R.getReplacementText() << "\n"; |
Eric Liu | 40ef2fb | 2016-08-01 10:16:37 +0000 | [diff] [blame] | 2150 | } else { |
| 2151 | llvm::consumeError(Result.add(R)); |
| 2152 | } |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 2153 | } |
Eric Liu | c0d3a80 | 2016-09-23 15:10:56 +0000 | [diff] [blame] | 2154 | if (HeaderInsertions.empty() && HeadersToDelete.empty()) |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 2155 | return Replaces; |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 2156 | |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 2157 | StringRef FileName = Replaces.begin()->getFilePath(); |
Eric Liu | 7129e63 | 2018-05-14 20:17:53 +0000 | [diff] [blame] | 2158 | tooling::HeaderIncludes Includes(FileName, Code, Style.IncludeStyle); |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 2159 | |
Eric Liu | bf4c41c | 2018-05-04 17:55:13 +0000 | [diff] [blame] | 2160 | for (const auto &Header : HeadersToDelete) { |
| 2161 | tooling::Replacements Replaces = |
Eric Liu | 7129e63 | 2018-05-14 20:17:53 +0000 | [diff] [blame] | 2162 | Includes.remove(Header.trim("\"<>"), Header.startswith("<")); |
Eric Liu | bf4c41c | 2018-05-04 17:55:13 +0000 | [diff] [blame] | 2163 | for (const auto &R : Replaces) { |
| 2164 | auto Err = Result.add(R); |
| 2165 | if (Err) { |
| 2166 | // Ignore the deletion on conflict. |
| 2167 | llvm::errs() << "Failed to add header deletion replacement for " |
| 2168 | << Header << ": " << llvm::toString(std::move(Err)) |
| 2169 | << "\n"; |
Eric Liu | c0d3a80 | 2016-09-23 15:10:56 +0000 | [diff] [blame] | 2170 | } |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 2171 | } |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 2172 | } |
| 2173 | |
Krasimir Georgiev | 7e91b03 | 2018-10-05 17:19:26 +0000 | [diff] [blame] | 2174 | llvm::Regex IncludeRegex = llvm::Regex(CppIncludeRegexPattern); |
Eric Liu | bf4c41c | 2018-05-04 17:55:13 +0000 | [diff] [blame] | 2175 | llvm::SmallVector<StringRef, 4> Matches; |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 2176 | for (const auto &R : HeaderInsertions) { |
| 2177 | auto IncludeDirective = R.getReplacementText(); |
| 2178 | bool Matched = IncludeRegex.match(IncludeDirective, &Matches); |
| 2179 | assert(Matched && "Header insertion replacement must have replacement text " |
| 2180 | "'#include ...'"); |
Benjamin Kramer | 1cb7ee1 | 2016-05-31 14:14:42 +0000 | [diff] [blame] | 2181 | (void)Matched; |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 2182 | auto IncludeName = Matches[2]; |
Eric Liu | bf4c41c | 2018-05-04 17:55:13 +0000 | [diff] [blame] | 2183 | auto Replace = |
Eric Liu | 7129e63 | 2018-05-14 20:17:53 +0000 | [diff] [blame] | 2184 | Includes.insert(IncludeName.trim("\"<>"), IncludeName.startswith("<")); |
Eric Liu | bf4c41c | 2018-05-04 17:55:13 +0000 | [diff] [blame] | 2185 | if (Replace) { |
| 2186 | auto Err = Result.add(*Replace); |
| 2187 | if (Err) { |
| 2188 | llvm::consumeError(std::move(Err)); |
Paul Hoad | 5bcf99b | 2019-03-01 09:09:54 +0000 | [diff] [blame] | 2189 | unsigned NewOffset = |
| 2190 | Result.getShiftedCodePosition(Replace->getOffset()); |
Eric Liu | bf4c41c | 2018-05-04 17:55:13 +0000 | [diff] [blame] | 2191 | auto Shifted = tooling::Replacement(FileName, NewOffset, 0, |
| 2192 | Replace->getReplacementText()); |
| 2193 | Result = Result.merge(tooling::Replacements(Shifted)); |
| 2194 | } |
Eric Liu | 40ef2fb | 2016-08-01 10:16:37 +0000 | [diff] [blame] | 2195 | } |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 2196 | } |
| 2197 | return Result; |
| 2198 | } |
| 2199 | |
| 2200 | } // anonymous namespace |
| 2201 | |
Eric Liu | 4f8d994 | 2016-07-11 13:53:12 +0000 | [diff] [blame] | 2202 | llvm::Expected<tooling::Replacements> |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 2203 | cleanupAroundReplacements(StringRef Code, const tooling::Replacements &Replaces, |
| 2204 | const FormatStyle &Style) { |
| 2205 | // We need to use lambda function here since there are two versions of |
| 2206 | // `cleanup`. |
| 2207 | auto Cleanup = [](const FormatStyle &Style, StringRef Code, |
| 2208 | std::vector<tooling::Range> Ranges, |
| 2209 | StringRef FileName) -> tooling::Replacements { |
| 2210 | return cleanup(Style, Code, Ranges, FileName); |
| 2211 | }; |
Eric Liu | 659afd5 | 2016-05-31 13:34:20 +0000 | [diff] [blame] | 2212 | // Make header insertion replacements insert new headers into correct blocks. |
| 2213 | tooling::Replacements NewReplaces = |
| 2214 | fixCppIncludeInsertions(Code, Replaces, Style); |
| 2215 | return processReplacements(Cleanup, Code, NewReplaces, Style); |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 2216 | } |
| 2217 | |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 2218 | namespace internal { |
| 2219 | std::pair<tooling::Replacements, unsigned> |
| 2220 | reformat(const FormatStyle &Style, StringRef Code, |
| 2221 | ArrayRef<tooling::Range> Ranges, unsigned FirstStartColumn, |
| 2222 | unsigned NextStartColumn, unsigned LastStartColumn, StringRef FileName, |
| 2223 | FormattingAttemptStatus *Status) { |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 2224 | FormatStyle Expanded = expandPresets(Style); |
| 2225 | if (Expanded.DisableFormat) |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 2226 | return {tooling::Replacements(), 0}; |
Krasimir Georgiev | 8687303 | 2017-08-29 13:57:31 +0000 | [diff] [blame] | 2227 | if (isLikelyXml(Code)) |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 2228 | return {tooling::Replacements(), 0}; |
Krasimir Georgiev | 8687303 | 2017-08-29 13:57:31 +0000 | [diff] [blame] | 2229 | if (Expanded.Language == FormatStyle::LK_JavaScript && isMpegTS(Code)) |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 2230 | return {tooling::Replacements(), 0}; |
Daniel Jasper | 496c199 | 2016-09-07 22:48:53 +0000 | [diff] [blame] | 2231 | |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 2232 | typedef std::function<std::pair<tooling::Replacements, unsigned>( |
| 2233 | const Environment &)> |
Krasimir Georgiev | ac16a20 | 2017-06-23 11:46:03 +0000 | [diff] [blame] | 2234 | AnalyzerPass; |
| 2235 | SmallVector<AnalyzerPass, 4> Passes; |
Krasimir Georgiev | 32eaa86 | 2017-03-01 15:35:39 +0000 | [diff] [blame] | 2236 | |
Krasimir Georgiev | ac16a20 | 2017-06-23 11:46:03 +0000 | [diff] [blame] | 2237 | if (Style.Language == FormatStyle::LK_Cpp) { |
| 2238 | if (Style.FixNamespaceComments) |
| 2239 | Passes.emplace_back([&](const Environment &Env) { |
| 2240 | return NamespaceEndCommentsFixer(Env, Expanded).process(); |
| 2241 | }); |
| 2242 | |
| 2243 | if (Style.SortUsingDeclarations) |
| 2244 | Passes.emplace_back([&](const Environment &Env) { |
| 2245 | return UsingDeclarationsSorter(Env, Expanded).process(); |
| 2246 | }); |
Krasimir Georgiev | 32eaa86 | 2017-03-01 15:35:39 +0000 | [diff] [blame] | 2247 | } |
| 2248 | |
| 2249 | if (Style.Language == FormatStyle::LK_JavaScript && |
Krasimir Georgiev | ac16a20 | 2017-06-23 11:46:03 +0000 | [diff] [blame] | 2250 | Style.JavaScriptQuotes != FormatStyle::JSQS_Leave) |
| 2251 | Passes.emplace_back([&](const Environment &Env) { |
| 2252 | return JavaScriptRequoter(Env, Expanded).process(); |
| 2253 | }); |
| 2254 | |
| 2255 | Passes.emplace_back([&](const Environment &Env) { |
| 2256 | return Formatter(Env, Expanded, Status).process(); |
| 2257 | }); |
| 2258 | |
Eric Liu | 2e53808 | 2018-05-09 21:35:52 +0000 | [diff] [blame] | 2259 | auto Env = |
| 2260 | llvm::make_unique<Environment>(Code, FileName, Ranges, FirstStartColumn, |
| 2261 | NextStartColumn, LastStartColumn); |
Krasimir Georgiev | ac16a20 | 2017-06-23 11:46:03 +0000 | [diff] [blame] | 2262 | llvm::Optional<std::string> CurrentCode = None; |
| 2263 | tooling::Replacements Fixes; |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 2264 | unsigned Penalty = 0; |
Krasimir Georgiev | ac16a20 | 2017-06-23 11:46:03 +0000 | [diff] [blame] | 2265 | for (size_t I = 0, E = Passes.size(); I < E; ++I) { |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 2266 | std::pair<tooling::Replacements, unsigned> PassFixes = Passes[I](*Env); |
Krasimir Georgiev | ac16a20 | 2017-06-23 11:46:03 +0000 | [diff] [blame] | 2267 | auto NewCode = applyAllReplacements( |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 2268 | CurrentCode ? StringRef(*CurrentCode) : Code, PassFixes.first); |
Krasimir Georgiev | ac16a20 | 2017-06-23 11:46:03 +0000 | [diff] [blame] | 2269 | if (NewCode) { |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 2270 | Fixes = Fixes.merge(PassFixes.first); |
| 2271 | Penalty += PassFixes.second; |
Krasimir Georgiev | ac16a20 | 2017-06-23 11:46:03 +0000 | [diff] [blame] | 2272 | if (I + 1 < E) { |
| 2273 | CurrentCode = std::move(*NewCode); |
Eric Liu | 2e53808 | 2018-05-09 21:35:52 +0000 | [diff] [blame] | 2274 | Env = llvm::make_unique<Environment>( |
Krasimir Georgiev | ac16a20 | 2017-06-23 11:46:03 +0000 | [diff] [blame] | 2275 | *CurrentCode, FileName, |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 2276 | tooling::calculateRangesAfterReplacements(Fixes, Ranges), |
| 2277 | FirstStartColumn, NextStartColumn, LastStartColumn); |
Krasimir Georgiev | ac16a20 | 2017-06-23 11:46:03 +0000 | [diff] [blame] | 2278 | } |
| 2279 | } |
Daniel Jasper | 496c199 | 2016-09-07 22:48:53 +0000 | [diff] [blame] | 2280 | } |
| 2281 | |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 2282 | return {Fixes, Penalty}; |
| 2283 | } |
| 2284 | } // namespace internal |
| 2285 | |
| 2286 | tooling::Replacements reformat(const FormatStyle &Style, StringRef Code, |
| 2287 | ArrayRef<tooling::Range> Ranges, |
| 2288 | StringRef FileName, |
| 2289 | FormattingAttemptStatus *Status) { |
| 2290 | return internal::reformat(Style, Code, Ranges, |
| 2291 | /*FirstStartColumn=*/0, |
| 2292 | /*NextStartColumn=*/0, |
| 2293 | /*LastStartColumn=*/0, FileName, Status) |
| 2294 | .first; |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 2295 | } |
| 2296 | |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 2297 | tooling::Replacements cleanup(const FormatStyle &Style, StringRef Code, |
| 2298 | ArrayRef<tooling::Range> Ranges, |
| 2299 | StringRef FileName) { |
Martin Probst | 816a966 | 2017-05-29 08:41:11 +0000 | [diff] [blame] | 2300 | // cleanups only apply to C++ (they mostly concern ctor commas etc.) |
| 2301 | if (Style.Language != FormatStyle::LK_Cpp) |
| 2302 | return tooling::Replacements(); |
Eric Liu | 2e53808 | 2018-05-09 21:35:52 +0000 | [diff] [blame] | 2303 | return Cleaner(Environment(Code, FileName, Ranges), Style).process().first; |
Daniel Jasper | ec04c0d | 2013-05-16 10:40:07 +0000 | [diff] [blame] | 2304 | } |
| 2305 | |
Krasimir Georgiev | bcda54b | 2017-04-21 14:35:20 +0000 | [diff] [blame] | 2306 | tooling::Replacements reformat(const FormatStyle &Style, StringRef Code, |
| 2307 | ArrayRef<tooling::Range> Ranges, |
| 2308 | StringRef FileName, bool *IncompleteFormat) { |
| 2309 | FormattingAttemptStatus Status; |
| 2310 | auto Result = reformat(Style, Code, Ranges, FileName, &Status); |
| 2311 | if (!Status.FormatComplete) |
| 2312 | *IncompleteFormat = true; |
| 2313 | return Result; |
| 2314 | } |
| 2315 | |
Krasimir Georgiev | 7cb267a | 2017-02-27 13:28:36 +0000 | [diff] [blame] | 2316 | tooling::Replacements fixNamespaceEndComments(const FormatStyle &Style, |
| 2317 | StringRef Code, |
| 2318 | ArrayRef<tooling::Range> Ranges, |
| 2319 | StringRef FileName) { |
Eric Liu | 2e53808 | 2018-05-09 21:35:52 +0000 | [diff] [blame] | 2320 | return NamespaceEndCommentsFixer(Environment(Code, FileName, Ranges), Style) |
| 2321 | .process() |
| 2322 | .first; |
Krasimir Georgiev | 7cb267a | 2017-02-27 13:28:36 +0000 | [diff] [blame] | 2323 | } |
| 2324 | |
Krasimir Georgiev | b03877a | 2017-06-21 12:03:12 +0000 | [diff] [blame] | 2325 | tooling::Replacements sortUsingDeclarations(const FormatStyle &Style, |
| 2326 | StringRef Code, |
| 2327 | ArrayRef<tooling::Range> Ranges, |
| 2328 | StringRef FileName) { |
Eric Liu | 2e53808 | 2018-05-09 21:35:52 +0000 | [diff] [blame] | 2329 | return UsingDeclarationsSorter(Environment(Code, FileName, Ranges), Style) |
| 2330 | .process() |
| 2331 | .first; |
Krasimir Georgiev | b03877a | 2017-06-21 12:03:12 +0000 | [diff] [blame] | 2332 | } |
| 2333 | |
Daniel Jasper | 4db69bd | 2014-09-04 18:23:42 +0000 | [diff] [blame] | 2334 | LangOptions getFormattingLangOpts(const FormatStyle &Style) { |
Daniel Jasper | c1fa281 | 2013-01-10 13:08:12 +0000 | [diff] [blame] | 2335 | LangOptions LangOpts; |
| 2336 | LangOpts.CPlusPlus = 1; |
Daniel Jasper | 4db69bd | 2014-09-04 18:23:42 +0000 | [diff] [blame] | 2337 | LangOpts.CPlusPlus11 = Style.Standard == FormatStyle::LS_Cpp03 ? 0 : 1; |
| 2338 | LangOpts.CPlusPlus14 = Style.Standard == FormatStyle::LS_Cpp03 ? 0 : 1; |
Aaron Ballman | c351fba | 2017-12-04 20:27:34 +0000 | [diff] [blame] | 2339 | LangOpts.CPlusPlus17 = Style.Standard == FormatStyle::LS_Cpp03 ? 0 : 1; |
Richard Smith | c70f1d6 | 2017-12-14 15:16:18 +0000 | [diff] [blame] | 2340 | LangOpts.CPlusPlus2a = Style.Standard == FormatStyle::LS_Cpp03 ? 0 : 1; |
Daniel Jasper | 5521365 | 2013-03-22 10:01:29 +0000 | [diff] [blame] | 2341 | LangOpts.LineComment = 1; |
Daniel Jasper | 1dbc210 | 2017-03-31 13:30:24 +0000 | [diff] [blame] | 2342 | bool AlternativeOperators = Style.isCpp(); |
Daniel Jasper | 30a2406 | 2014-11-14 09:02:28 +0000 | [diff] [blame] | 2343 | LangOpts.CXXOperatorNames = AlternativeOperators ? 1 : 0; |
Daniel Jasper | c1fa281 | 2013-01-10 13:08:12 +0000 | [diff] [blame] | 2344 | LangOpts.Bool = 1; |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 2345 | LangOpts.ObjC = 1; |
Eric Liu | 4cfb88a | 2016-04-25 15:09:22 +0000 | [diff] [blame] | 2346 | LangOpts.MicrosoftExt = 1; // To get kw___try, kw___finally. |
Saleem Abdulrasool | d170c4b | 2015-10-04 17:51:05 +0000 | [diff] [blame] | 2347 | LangOpts.DeclSpecKeyword = 1; // To get __declspec. |
Daniel Jasper | c1fa281 | 2013-01-10 13:08:12 +0000 | [diff] [blame] | 2348 | return LangOpts; |
| 2349 | } |
| 2350 | |
Edwin Vane | d544aa7 | 2013-09-30 13:31:48 +0000 | [diff] [blame] | 2351 | const char *StyleOptionHelpDescription = |
| 2352 | "Coding style, currently supports:\n" |
| 2353 | " LLVM, Google, Chromium, Mozilla, WebKit.\n" |
| 2354 | "Use -style=file to load style configuration from\n" |
| 2355 | ".clang-format file located in one of the parent\n" |
| 2356 | "directories of the source file (or current\n" |
| 2357 | "directory for stdin).\n" |
| 2358 | "Use -style=\"{key: value, ...}\" to set specific\n" |
| 2359 | "parameters, e.g.:\n" |
| 2360 | " -style=\"{BasedOnStyle: llvm, IndentWidth: 8}\""; |
| 2361 | |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 2362 | static FormatStyle::LanguageKind getLanguageByFileName(StringRef FileName) { |
Daniel Jasper | 498f558 | 2015-12-25 08:53:31 +0000 | [diff] [blame] | 2363 | if (FileName.endswith(".java")) |
Daniel Jasper | c58c70e | 2014-09-15 11:21:46 +0000 | [diff] [blame] | 2364 | return FormatStyle::LK_Java; |
Daniel Jasper | 498f558 | 2015-12-25 08:53:31 +0000 | [diff] [blame] | 2365 | if (FileName.endswith_lower(".js") || FileName.endswith_lower(".ts")) |
| 2366 | return FormatStyle::LK_JavaScript; // JavaScript or TypeScript. |
Daniel Jasper | 03a04fe | 2016-12-12 12:42:29 +0000 | [diff] [blame] | 2367 | if (FileName.endswith(".m") || FileName.endswith(".mm")) |
| 2368 | return FormatStyle::LK_ObjC; |
Daniel Jasper | 498f558 | 2015-12-25 08:53:31 +0000 | [diff] [blame] | 2369 | if (FileName.endswith_lower(".proto") || |
| 2370 | FileName.endswith_lower(".protodevel")) |
Daniel Jasper | 7052ce6 | 2014-01-19 09:04:08 +0000 | [diff] [blame] | 2371 | return FormatStyle::LK_Proto; |
Krasimir Georgiev | 6649665 | 2017-11-17 15:10:49 +0000 | [diff] [blame] | 2372 | if (FileName.endswith_lower(".textpb") || |
| 2373 | FileName.endswith_lower(".pb.txt") || |
| 2374 | FileName.endswith_lower(".textproto") || |
| 2375 | FileName.endswith_lower(".asciipb")) |
| 2376 | return FormatStyle::LK_TextProto; |
Daniel Jasper | 498f558 | 2015-12-25 08:53:31 +0000 | [diff] [blame] | 2377 | if (FileName.endswith_lower(".td")) |
| 2378 | return FormatStyle::LK_TableGen; |
Paul Hoad | cbb726d | 2019-03-21 13:09:22 +0000 | [diff] [blame] | 2379 | if (FileName.endswith_lower(".cs")) |
| 2380 | return FormatStyle::LK_CSharp; |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 2381 | return FormatStyle::LK_Cpp; |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 2382 | } |
| 2383 | |
Ben Hamilton | 3b345c3 | 2018-02-21 15:54:31 +0000 | [diff] [blame] | 2384 | FormatStyle::LanguageKind guessLanguage(StringRef FileName, StringRef Code) { |
Ben Hamilton | 6e06635 | 2018-02-27 15:56:40 +0000 | [diff] [blame] | 2385 | const auto GuessedLanguage = getLanguageByFileName(FileName); |
| 2386 | if (GuessedLanguage == FormatStyle::LK_Cpp) { |
Ben Hamilton | 07e5836 | 2018-02-21 21:27:27 +0000 | [diff] [blame] | 2387 | auto Extension = llvm::sys::path::extension(FileName); |
Ben Hamilton | 3b345c3 | 2018-02-21 15:54:31 +0000 | [diff] [blame] | 2388 | // If there's no file extension (or it's .h), we need to check the contents |
| 2389 | // of the code to see if it contains Objective-C. |
Ben Hamilton | 07e5836 | 2018-02-21 21:27:27 +0000 | [diff] [blame] | 2390 | if (Extension.empty() || Extension == ".h") { |
| 2391 | auto NonEmptyFileName = FileName.empty() ? "guess.h" : FileName; |
Eric Liu | 2e53808 | 2018-05-09 21:35:52 +0000 | [diff] [blame] | 2392 | Environment Env(Code, NonEmptyFileName, /*Ranges=*/{}); |
| 2393 | ObjCHeaderStyleGuesser Guesser(Env, getLLVMStyle()); |
Ben Hamilton | 3b345c3 | 2018-02-21 15:54:31 +0000 | [diff] [blame] | 2394 | Guesser.process(); |
Ben Hamilton | 6e06635 | 2018-02-27 15:56:40 +0000 | [diff] [blame] | 2395 | if (Guesser.isObjC()) |
| 2396 | return FormatStyle::LK_ObjC; |
Ben Hamilton | 3b345c3 | 2018-02-21 15:54:31 +0000 | [diff] [blame] | 2397 | } |
| 2398 | } |
Ben Hamilton | 6e06635 | 2018-02-27 15:56:40 +0000 | [diff] [blame] | 2399 | return GuessedLanguage; |
Ben Hamilton | 3b345c3 | 2018-02-21 15:54:31 +0000 | [diff] [blame] | 2400 | } |
| 2401 | |
Eric Liu | b4adc91 | 2018-06-25 16:29:19 +0000 | [diff] [blame] | 2402 | const char *DefaultFormatStyle = "file"; |
| 2403 | |
| 2404 | const char *DefaultFallbackStyle = "LLVM"; |
| 2405 | |
Antonio Maiorano | 3adfb6a | 2017-01-17 00:12:27 +0000 | [diff] [blame] | 2406 | llvm::Expected<FormatStyle> getStyle(StringRef StyleName, StringRef FileName, |
Antonio Maiorano | 7eb7507 | 2017-01-20 01:22:42 +0000 | [diff] [blame] | 2407 | StringRef FallbackStyleName, |
Jonas Devlieghere | fc51490 | 2018-10-10 13:27:25 +0000 | [diff] [blame] | 2408 | StringRef Code, |
| 2409 | llvm::vfs::FileSystem *FS) { |
Eric Liu | 547d879 | 2016-03-24 13:22:42 +0000 | [diff] [blame] | 2410 | if (!FS) { |
Jonas Devlieghere | fc51490 | 2018-10-10 13:27:25 +0000 | [diff] [blame] | 2411 | FS = llvm::vfs::getRealFileSystem().get(); |
Eric Liu | 547d879 | 2016-03-24 13:22:42 +0000 | [diff] [blame] | 2412 | } |
Jordan Rupprecht | 8bd97e7 | 2019-02-28 19:16:45 +0000 | [diff] [blame] | 2413 | FormatStyle Style = getLLVMStyle(guessLanguage(FileName, Code)); |
Daniel Jasper | 03a04fe | 2016-12-12 12:42:29 +0000 | [diff] [blame] | 2414 | |
Antonio Maiorano | 7eb7507 | 2017-01-20 01:22:42 +0000 | [diff] [blame] | 2415 | FormatStyle FallbackStyle = getNoStyle(); |
| 2416 | if (!getPredefinedStyle(FallbackStyleName, Style.Language, &FallbackStyle)) |
| 2417 | return make_string_error("Invalid fallback style \"" + FallbackStyleName); |
Edwin Vane | d544aa7 | 2013-09-30 13:31:48 +0000 | [diff] [blame] | 2418 | |
| 2419 | if (StyleName.startswith("{")) { |
| 2420 | // Parse YAML/JSON style from the command line. |
Antonio Maiorano | 3adfb6a | 2017-01-17 00:12:27 +0000 | [diff] [blame] | 2421 | if (std::error_code ec = parseConfiguration(StyleName, &Style)) |
| 2422 | return make_string_error("Error parsing -style: " + ec.message()); |
Edwin Vane | d544aa7 | 2013-09-30 13:31:48 +0000 | [diff] [blame] | 2423 | return Style; |
| 2424 | } |
| 2425 | |
| 2426 | if (!StyleName.equals_lower("file")) { |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 2427 | if (!getPredefinedStyle(StyleName, Style.Language, &Style)) |
Antonio Maiorano | 3adfb6a | 2017-01-17 00:12:27 +0000 | [diff] [blame] | 2428 | return make_string_error("Invalid value for -style"); |
Edwin Vane | d544aa7 | 2013-09-30 13:31:48 +0000 | [diff] [blame] | 2429 | return Style; |
| 2430 | } |
| 2431 | |
Alexander Kornienko | c1637f1 | 2013-12-10 11:28:13 +0000 | [diff] [blame] | 2432 | // Look for .clang-format/_clang-format file in the file's parent directories. |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 2433 | SmallString<128> UnsuitableConfigFiles; |
Edwin Vane | d544aa7 | 2013-09-30 13:31:48 +0000 | [diff] [blame] | 2434 | SmallString<128> Path(FileName); |
Antonio Maiorano | 3adfb6a | 2017-01-17 00:12:27 +0000 | [diff] [blame] | 2435 | if (std::error_code EC = FS->makeAbsolute(Path)) |
| 2436 | return make_string_error(EC.message()); |
Antonio Maiorano | 34c0376 | 2016-12-22 05:10:07 +0000 | [diff] [blame] | 2437 | |
Alexander Kornienko | e2e0387 | 2013-10-14 00:46:35 +0000 | [diff] [blame] | 2438 | for (StringRef Directory = Path; !Directory.empty(); |
Edwin Vane | d544aa7 | 2013-09-30 13:31:48 +0000 | [diff] [blame] | 2439 | Directory = llvm::sys::path::parent_path(Directory)) { |
Eric Liu | 547d879 | 2016-03-24 13:22:42 +0000 | [diff] [blame] | 2440 | |
| 2441 | auto Status = FS->status(Directory); |
| 2442 | if (!Status || |
| 2443 | Status->getType() != llvm::sys::fs::file_type::directory_file) { |
Edwin Vane | d544aa7 | 2013-09-30 13:31:48 +0000 | [diff] [blame] | 2444 | continue; |
Eric Liu | 547d879 | 2016-03-24 13:22:42 +0000 | [diff] [blame] | 2445 | } |
| 2446 | |
Edwin Vane | d544aa7 | 2013-09-30 13:31:48 +0000 | [diff] [blame] | 2447 | SmallString<128> ConfigFile(Directory); |
| 2448 | |
| 2449 | llvm::sys::path::append(ConfigFile, ".clang-format"); |
Nicola Zaghen | 3538b39 | 2018-05-15 13:30:56 +0000 | [diff] [blame] | 2450 | LLVM_DEBUG(llvm::dbgs() << "Trying " << ConfigFile << "...\n"); |
Eric Liu | d475832 | 2016-03-24 13:22:37 +0000 | [diff] [blame] | 2451 | |
Eric Liu | 547d879 | 2016-03-24 13:22:42 +0000 | [diff] [blame] | 2452 | Status = FS->status(ConfigFile.str()); |
Antonio Maiorano | 3adfb6a | 2017-01-17 00:12:27 +0000 | [diff] [blame] | 2453 | bool FoundConfigFile = |
Eric Liu | 547d879 | 2016-03-24 13:22:42 +0000 | [diff] [blame] | 2454 | Status && (Status->getType() == llvm::sys::fs::file_type::regular_file); |
Antonio Maiorano | 3adfb6a | 2017-01-17 00:12:27 +0000 | [diff] [blame] | 2455 | if (!FoundConfigFile) { |
Edwin Vane | d544aa7 | 2013-09-30 13:31:48 +0000 | [diff] [blame] | 2456 | // Try _clang-format too, since dotfiles are not commonly used on Windows. |
| 2457 | ConfigFile = Directory; |
| 2458 | llvm::sys::path::append(ConfigFile, "_clang-format"); |
Nicola Zaghen | 3538b39 | 2018-05-15 13:30:56 +0000 | [diff] [blame] | 2459 | LLVM_DEBUG(llvm::dbgs() << "Trying " << ConfigFile << "...\n"); |
Eric Liu | 547d879 | 2016-03-24 13:22:42 +0000 | [diff] [blame] | 2460 | Status = FS->status(ConfigFile.str()); |
Antonio Maiorano | 3adfb6a | 2017-01-17 00:12:27 +0000 | [diff] [blame] | 2461 | FoundConfigFile = Status && (Status->getType() == |
| 2462 | llvm::sys::fs::file_type::regular_file); |
Edwin Vane | d544aa7 | 2013-09-30 13:31:48 +0000 | [diff] [blame] | 2463 | } |
| 2464 | |
Antonio Maiorano | 3adfb6a | 2017-01-17 00:12:27 +0000 | [diff] [blame] | 2465 | if (FoundConfigFile) { |
Rafael Espindola | 2d2b420 | 2014-07-06 17:43:24 +0000 | [diff] [blame] | 2466 | llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> Text = |
Eric Liu | 547d879 | 2016-03-24 13:22:42 +0000 | [diff] [blame] | 2467 | FS->getBufferForFile(ConfigFile.str()); |
Antonio Maiorano | 3adfb6a | 2017-01-17 00:12:27 +0000 | [diff] [blame] | 2468 | if (std::error_code EC = Text.getError()) |
| 2469 | return make_string_error(EC.message()); |
Rafael Espindola | 2d2b420 | 2014-07-06 17:43:24 +0000 | [diff] [blame] | 2470 | if (std::error_code ec = |
| 2471 | parseConfiguration(Text.get()->getBuffer(), &Style)) { |
Rafael Espindola | d013670 | 2014-06-12 02:50:04 +0000 | [diff] [blame] | 2472 | if (ec == ParseError::Unsuitable) { |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 2473 | if (!UnsuitableConfigFiles.empty()) |
| 2474 | UnsuitableConfigFiles.append(", "); |
| 2475 | UnsuitableConfigFiles.append(ConfigFile); |
Alexander Kornienko | bc4ae44 | 2013-12-02 15:21:38 +0000 | [diff] [blame] | 2476 | continue; |
Alexander Kornienko | cabdd73 | 2013-11-29 15:19:43 +0000 | [diff] [blame] | 2477 | } |
Antonio Maiorano | 3adfb6a | 2017-01-17 00:12:27 +0000 | [diff] [blame] | 2478 | return make_string_error("Error reading " + ConfigFile + ": " + |
| 2479 | ec.message()); |
Edwin Vane | d544aa7 | 2013-09-30 13:31:48 +0000 | [diff] [blame] | 2480 | } |
Nicola Zaghen | 3538b39 | 2018-05-15 13:30:56 +0000 | [diff] [blame] | 2481 | LLVM_DEBUG(llvm::dbgs() |
| 2482 | << "Using configuration file " << ConfigFile << "\n"); |
Edwin Vane | d544aa7 | 2013-09-30 13:31:48 +0000 | [diff] [blame] | 2483 | return Style; |
| 2484 | } |
| 2485 | } |
Antonio Maiorano | 3adfb6a | 2017-01-17 00:12:27 +0000 | [diff] [blame] | 2486 | if (!UnsuitableConfigFiles.empty()) |
| 2487 | return make_string_error("Configuration file(s) do(es) not support " + |
| 2488 | getLanguageName(Style.Language) + ": " + |
| 2489 | UnsuitableConfigFiles); |
Antonio Maiorano | 7eb7507 | 2017-01-20 01:22:42 +0000 | [diff] [blame] | 2490 | return FallbackStyle; |
Edwin Vane | d544aa7 | 2013-09-30 13:31:48 +0000 | [diff] [blame] | 2491 | } |
| 2492 | |
Daniel Jasper | 8d1832e | 2013-01-07 13:26:07 +0000 | [diff] [blame] | 2493 | } // namespace format |
| 2494 | } // namespace clang |