blob: 255f5142f07924af910fd73af9380c8fc6ad1571 [file] [log] [blame]
Daniel Jasperbac016b2012-12-03 18:12:45 +00001//===--- Format.cpp - Format C++ code -------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9///
10/// \file
11/// \brief This file implements functions declared in Format.h. This will be
12/// split into separate files as we go.
13///
Daniel Jasperbac016b2012-12-03 18:12:45 +000014//===----------------------------------------------------------------------===//
15
Manuel Klimekca547db2013-01-16 14:55:28 +000016#define DEBUG_TYPE "format-formatter"
17
Alexander Kornienko70ce7882013-04-15 14:28:00 +000018#include "BreakableToken.h"
Daniel Jasper32d28ee2013-01-29 21:01:14 +000019#include "TokenAnnotator.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000020#include "UnwrappedLineParser.h"
Alexander Kornienko70ce7882013-04-15 14:28:00 +000021#include "WhitespaceManager.h"
Daniel Jasper8a999452013-05-16 10:40:07 +000022#include "clang/Basic/Diagnostic.h"
Daniel Jasper675d2e32012-12-21 10:20:02 +000023#include "clang/Basic/OperatorPrecedence.h"
Chandler Carruthb99083e2013-01-02 10:28:36 +000024#include "clang/Basic/SourceManager.h"
Manuel Klimekca547db2013-01-16 14:55:28 +000025#include "clang/Format/Format.h"
Daniel Jasperbac016b2012-12-03 18:12:45 +000026#include "clang/Lex/Lexer.h"
Alexander Kornienko5262dd92013-03-27 11:52:18 +000027#include "llvm/ADT/STLExtras.h"
Manuel Klimek32a2fd72013-02-13 10:46:36 +000028#include "llvm/Support/Allocator.h"
Manuel Klimekca547db2013-01-16 14:55:28 +000029#include "llvm/Support/Debug.h"
Alexander Kornienkod71ec162013-05-07 15:32:14 +000030#include "llvm/Support/YAMLTraits.h"
Manuel Klimek32a2fd72013-02-13 10:46:36 +000031#include <queue>
Daniel Jasper8822d3a2012-12-04 13:02:32 +000032#include <string>
33
Alexander Kornienkod71ec162013-05-07 15:32:14 +000034namespace llvm {
35namespace yaml {
36template <>
37struct ScalarEnumerationTraits<clang::format::FormatStyle::LanguageStandard> {
Manuel Klimek44135b82013-05-13 12:51:40 +000038 static void enumeration(IO &IO,
39 clang::format::FormatStyle::LanguageStandard &Value) {
40 IO.enumCase(Value, "C++03", clang::format::FormatStyle::LS_Cpp03);
41 IO.enumCase(Value, "C++11", clang::format::FormatStyle::LS_Cpp11);
42 IO.enumCase(Value, "Auto", clang::format::FormatStyle::LS_Auto);
43 }
44};
45
Daniel Jasper1fb8d882013-05-14 09:30:02 +000046template <>
Manuel Klimek44135b82013-05-13 12:51:40 +000047struct ScalarEnumerationTraits<clang::format::FormatStyle::BraceBreakingStyle> {
48 static void
49 enumeration(IO &IO, clang::format::FormatStyle::BraceBreakingStyle &Value) {
50 IO.enumCase(Value, "Attach", clang::format::FormatStyle::BS_Attach);
51 IO.enumCase(Value, "Linux", clang::format::FormatStyle::BS_Linux);
52 IO.enumCase(Value, "Stroustrup", clang::format::FormatStyle::BS_Stroustrup);
Manuel Klimeke4907052013-08-02 21:31:59 +000053 IO.enumCase(Value, "Allman", clang::format::FormatStyle::BS_Allman);
Alexander Kornienkod71ec162013-05-07 15:32:14 +000054 }
55};
56
Daniel Jaspereff18b92013-07-31 23:16:02 +000057template <>
58struct ScalarEnumerationTraits<
59 clang::format::FormatStyle::NamespaceIndentationKind> {
60 static void
61 enumeration(IO &IO,
62 clang::format::FormatStyle::NamespaceIndentationKind &Value) {
63 IO.enumCase(Value, "None", clang::format::FormatStyle::NI_None);
64 IO.enumCase(Value, "Inner", clang::format::FormatStyle::NI_Inner);
65 IO.enumCase(Value, "All", clang::format::FormatStyle::NI_All);
66 }
67};
68
Alexander Kornienkod71ec162013-05-07 15:32:14 +000069template <> struct MappingTraits<clang::format::FormatStyle> {
70 static void mapping(llvm::yaml::IO &IO, clang::format::FormatStyle &Style) {
Alexander Kornienkodd256312013-05-10 11:56:10 +000071 if (IO.outputting()) {
72 StringRef StylesArray[] = { "LLVM", "Google", "Chromium", "Mozilla" };
73 ArrayRef<StringRef> Styles(StylesArray);
74 for (size_t i = 0, e = Styles.size(); i < e; ++i) {
75 StringRef StyleName(Styles[i]);
Alexander Kornienko885f87b2013-05-19 00:53:30 +000076 clang::format::FormatStyle PredefinedStyle;
77 if (clang::format::getPredefinedStyle(StyleName, &PredefinedStyle) &&
78 Style == PredefinedStyle) {
Alexander Kornienkodd256312013-05-10 11:56:10 +000079 IO.mapOptional("# BasedOnStyle", StyleName);
80 break;
81 }
82 }
83 } else {
Alexander Kornienkod71ec162013-05-07 15:32:14 +000084 StringRef BasedOnStyle;
85 IO.mapOptional("BasedOnStyle", BasedOnStyle);
Alexander Kornienkod71ec162013-05-07 15:32:14 +000086 if (!BasedOnStyle.empty())
Alexander Kornienko885f87b2013-05-19 00:53:30 +000087 if (!clang::format::getPredefinedStyle(BasedOnStyle, &Style)) {
88 IO.setError(Twine("Unknown value for BasedOnStyle: ", BasedOnStyle));
89 return;
90 }
Alexander Kornienkod71ec162013-05-07 15:32:14 +000091 }
92
93 IO.mapOptional("AccessModifierOffset", Style.AccessModifierOffset);
94 IO.mapOptional("AlignEscapedNewlinesLeft", Style.AlignEscapedNewlinesLeft);
Daniel Jasper893ea8d2013-07-31 23:55:15 +000095 IO.mapOptional("AlignTrailingComments", Style.AlignTrailingComments);
Alexander Kornienkod71ec162013-05-07 15:32:14 +000096 IO.mapOptional("AllowAllParametersOfDeclarationOnNextLine",
97 Style.AllowAllParametersOfDeclarationOnNextLine);
98 IO.mapOptional("AllowShortIfStatementsOnASingleLine",
99 Style.AllowShortIfStatementsOnASingleLine);
Daniel Jasperf11bbb92013-05-16 12:12:21 +0000100 IO.mapOptional("AllowShortLoopsOnASingleLine",
101 Style.AllowShortLoopsOnASingleLine);
Daniel Jasperbbc87762013-05-29 12:07:31 +0000102 IO.mapOptional("AlwaysBreakTemplateDeclarations",
103 Style.AlwaysBreakTemplateDeclarations);
Alexander Kornienko56312022013-07-04 12:02:44 +0000104 IO.mapOptional("AlwaysBreakBeforeMultilineStrings",
105 Style.AlwaysBreakBeforeMultilineStrings);
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000106 IO.mapOptional("BreakBeforeBinaryOperators",
107 Style.BreakBeforeBinaryOperators);
108 IO.mapOptional("BreakConstructorInitializersBeforeComma",
109 Style.BreakConstructorInitializersBeforeComma);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000110 IO.mapOptional("BinPackParameters", Style.BinPackParameters);
111 IO.mapOptional("ColumnLimit", Style.ColumnLimit);
112 IO.mapOptional("ConstructorInitializerAllOnOneLineOrOnePerLine",
113 Style.ConstructorInitializerAllOnOneLineOrOnePerLine);
114 IO.mapOptional("DerivePointerBinding", Style.DerivePointerBinding);
Daniel Jasperc7bd68f2013-07-10 14:02:49 +0000115 IO.mapOptional("ExperimentalAutoDetectBinPacking",
116 Style.ExperimentalAutoDetectBinPacking);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000117 IO.mapOptional("IndentCaseLabels", Style.IndentCaseLabels);
118 IO.mapOptional("MaxEmptyLinesToKeep", Style.MaxEmptyLinesToKeep);
Daniel Jaspereff18b92013-07-31 23:16:02 +0000119 IO.mapOptional("NamespaceIndentation", Style.NamespaceIndentation);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000120 IO.mapOptional("ObjCSpaceBeforeProtocolList",
121 Style.ObjCSpaceBeforeProtocolList);
Alexander Kornienko2785b9a2013-06-07 16:02:52 +0000122 IO.mapOptional("PenaltyBreakComment", Style.PenaltyBreakComment);
123 IO.mapOptional("PenaltyBreakString", Style.PenaltyBreakString);
Daniel Jasperfaec47b2013-07-11 20:41:21 +0000124 IO.mapOptional("PenaltyBreakFirstLessLess",
125 Style.PenaltyBreakFirstLessLess);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000126 IO.mapOptional("PenaltyExcessCharacter", Style.PenaltyExcessCharacter);
127 IO.mapOptional("PenaltyReturnTypeOnItsOwnLine",
128 Style.PenaltyReturnTypeOnItsOwnLine);
129 IO.mapOptional("PointerBindsToType", Style.PointerBindsToType);
130 IO.mapOptional("SpacesBeforeTrailingComments",
131 Style.SpacesBeforeTrailingComments);
Daniel Jasperb5dc3f42013-07-16 18:22:10 +0000132 IO.mapOptional("Cpp11BracedListStyle", Style.Cpp11BracedListStyle);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000133 IO.mapOptional("Standard", Style.Standard);
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000134 IO.mapOptional("IndentWidth", Style.IndentWidth);
Manuel Klimek7c9a93e2013-05-13 09:22:11 +0000135 IO.mapOptional("UseTab", Style.UseTab);
Manuel Klimek44135b82013-05-13 12:51:40 +0000136 IO.mapOptional("BreakBeforeBraces", Style.BreakBeforeBraces);
Manuel Klimeka9a7f102013-06-21 17:25:42 +0000137 IO.mapOptional("IndentFunctionDeclarationAfterType",
138 Style.IndentFunctionDeclarationAfterType);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000139 }
140};
141}
142}
143
Daniel Jasperbac016b2012-12-03 18:12:45 +0000144namespace clang {
145namespace format {
146
Daniel Jasperfaec47b2013-07-11 20:41:21 +0000147void setDefaultPenalties(FormatStyle &Style) {
148 Style.PenaltyBreakComment = 45;
Daniel Jasper9637dda2013-07-15 14:33:14 +0000149 Style.PenaltyBreakFirstLessLess = 120;
Daniel Jasperfaec47b2013-07-11 20:41:21 +0000150 Style.PenaltyBreakString = 1000;
151 Style.PenaltyExcessCharacter = 1000000;
152}
153
Daniel Jasperbac016b2012-12-03 18:12:45 +0000154FormatStyle getLLVMStyle() {
155 FormatStyle LLVMStyle;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000156 LLVMStyle.AccessModifierOffset = -2;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000157 LLVMStyle.AlignEscapedNewlinesLeft = false;
Daniel Jasper893ea8d2013-07-31 23:55:15 +0000158 LLVMStyle.AlignTrailingComments = true;
Daniel Jasperf1579602013-01-29 16:03:49 +0000159 LLVMStyle.AllowAllParametersOfDeclarationOnNextLine = true;
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +0000160 LLVMStyle.AllowShortIfStatementsOnASingleLine = false;
Daniel Jasperf11bbb92013-05-16 12:12:21 +0000161 LLVMStyle.AllowShortLoopsOnASingleLine = false;
Alexander Kornienko56312022013-07-04 12:02:44 +0000162 LLVMStyle.AlwaysBreakBeforeMultilineStrings = false;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000163 LLVMStyle.AlwaysBreakTemplateDeclarations = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000164 LLVMStyle.BinPackParameters = true;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000165 LLVMStyle.BreakBeforeBinaryOperators = false;
166 LLVMStyle.BreakBeforeBraces = FormatStyle::BS_Attach;
167 LLVMStyle.BreakConstructorInitializersBeforeComma = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000168 LLVMStyle.ColumnLimit = 80;
169 LLVMStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = false;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000170 LLVMStyle.Cpp11BracedListStyle = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000171 LLVMStyle.DerivePointerBinding = false;
Daniel Jasperc7bd68f2013-07-10 14:02:49 +0000172 LLVMStyle.ExperimentalAutoDetectBinPacking = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000173 LLVMStyle.IndentCaseLabels = false;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000174 LLVMStyle.IndentFunctionDeclarationAfterType = false;
175 LLVMStyle.IndentWidth = 2;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000176 LLVMStyle.MaxEmptyLinesToKeep = 1;
Daniel Jaspereff18b92013-07-31 23:16:02 +0000177 LLVMStyle.NamespaceIndentation = FormatStyle::NI_None;
Nico Weber5f500df2013-01-10 20:12:55 +0000178 LLVMStyle.ObjCSpaceBeforeProtocolList = true;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000179 LLVMStyle.PointerBindsToType = false;
180 LLVMStyle.SpacesBeforeTrailingComments = 1;
181 LLVMStyle.Standard = FormatStyle::LS_Cpp03;
Manuel Klimek7c9a93e2013-05-13 09:22:11 +0000182 LLVMStyle.UseTab = false;
Daniel Jasperfaec47b2013-07-11 20:41:21 +0000183
184 setDefaultPenalties(LLVMStyle);
185 LLVMStyle.PenaltyReturnTypeOnItsOwnLine = 60;
186
Daniel Jasperbac016b2012-12-03 18:12:45 +0000187 return LLVMStyle;
188}
189
190FormatStyle getGoogleStyle() {
191 FormatStyle GoogleStyle;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000192 GoogleStyle.AccessModifierOffset = -1;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000193 GoogleStyle.AlignEscapedNewlinesLeft = true;
Daniel Jasper893ea8d2013-07-31 23:55:15 +0000194 GoogleStyle.AlignTrailingComments = true;
Daniel Jasperf1579602013-01-29 16:03:49 +0000195 GoogleStyle.AllowAllParametersOfDeclarationOnNextLine = true;
Daniel Jasper94d6ad72013-04-24 13:46:00 +0000196 GoogleStyle.AllowShortIfStatementsOnASingleLine = true;
Daniel Jasper1bee0732013-05-23 18:05:18 +0000197 GoogleStyle.AllowShortLoopsOnASingleLine = true;
Alexander Kornienko56312022013-07-04 12:02:44 +0000198 GoogleStyle.AlwaysBreakBeforeMultilineStrings = true;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000199 GoogleStyle.AlwaysBreakTemplateDeclarations = true;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000200 GoogleStyle.BinPackParameters = true;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000201 GoogleStyle.BreakBeforeBinaryOperators = false;
202 GoogleStyle.BreakBeforeBraces = FormatStyle::BS_Attach;
203 GoogleStyle.BreakConstructorInitializersBeforeComma = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000204 GoogleStyle.ColumnLimit = 80;
205 GoogleStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000206 GoogleStyle.Cpp11BracedListStyle = true;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000207 GoogleStyle.DerivePointerBinding = true;
Daniel Jasperc7bd68f2013-07-10 14:02:49 +0000208 GoogleStyle.ExperimentalAutoDetectBinPacking = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000209 GoogleStyle.IndentCaseLabels = true;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000210 GoogleStyle.IndentFunctionDeclarationAfterType = true;
211 GoogleStyle.IndentWidth = 2;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000212 GoogleStyle.MaxEmptyLinesToKeep = 1;
Daniel Jaspereff18b92013-07-31 23:16:02 +0000213 GoogleStyle.NamespaceIndentation = FormatStyle::NI_None;
Nico Weber5f500df2013-01-10 20:12:55 +0000214 GoogleStyle.ObjCSpaceBeforeProtocolList = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000215 GoogleStyle.PointerBindsToType = true;
216 GoogleStyle.SpacesBeforeTrailingComments = 2;
217 GoogleStyle.Standard = FormatStyle::LS_Auto;
Manuel Klimek7c9a93e2013-05-13 09:22:11 +0000218 GoogleStyle.UseTab = false;
Daniel Jasperfaec47b2013-07-11 20:41:21 +0000219
220 setDefaultPenalties(GoogleStyle);
221 GoogleStyle.PenaltyReturnTypeOnItsOwnLine = 200;
222
Daniel Jasperbac016b2012-12-03 18:12:45 +0000223 return GoogleStyle;
224}
225
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +0000226FormatStyle getChromiumStyle() {
227 FormatStyle ChromiumStyle = getGoogleStyle();
Daniel Jasperf1579602013-01-29 16:03:49 +0000228 ChromiumStyle.AllowAllParametersOfDeclarationOnNextLine = false;
Daniel Jasper94d6ad72013-04-24 13:46:00 +0000229 ChromiumStyle.AllowShortIfStatementsOnASingleLine = false;
Daniel Jasperf11bbb92013-05-16 12:12:21 +0000230 ChromiumStyle.AllowShortLoopsOnASingleLine = false;
Daniel Jasperfaab0d32013-02-27 09:47:53 +0000231 ChromiumStyle.BinPackParameters = false;
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000232 ChromiumStyle.DerivePointerBinding = false;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000233 ChromiumStyle.Standard = FormatStyle::LS_Cpp03;
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +0000234 return ChromiumStyle;
235}
236
Alexander Kornienkofb594862013-05-06 14:11:27 +0000237FormatStyle getMozillaStyle() {
238 FormatStyle MozillaStyle = getLLVMStyle();
239 MozillaStyle.AllowAllParametersOfDeclarationOnNextLine = false;
240 MozillaStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true;
241 MozillaStyle.DerivePointerBinding = true;
242 MozillaStyle.IndentCaseLabels = true;
243 MozillaStyle.ObjCSpaceBeforeProtocolList = false;
244 MozillaStyle.PenaltyReturnTypeOnItsOwnLine = 200;
245 MozillaStyle.PointerBindsToType = true;
246 return MozillaStyle;
247}
248
Daniel Jaspere05dc6d2013-07-24 13:10:59 +0000249FormatStyle getWebKitStyle() {
250 FormatStyle Style = getLLVMStyle();
Daniel Jaspereff18b92013-07-31 23:16:02 +0000251 Style.AccessModifierOffset = -4;
Daniel Jasper893ea8d2013-07-31 23:55:15 +0000252 Style.AlignTrailingComments = false;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000253 Style.BreakBeforeBinaryOperators = true;
Daniel Jaspereff18b92013-07-31 23:16:02 +0000254 Style.BreakBeforeBraces = FormatStyle::BS_Stroustrup;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000255 Style.BreakConstructorInitializersBeforeComma = true;
Daniel Jaspereff18b92013-07-31 23:16:02 +0000256 Style.ColumnLimit = 0;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000257 Style.IndentWidth = 4;
Daniel Jaspereff18b92013-07-31 23:16:02 +0000258 Style.NamespaceIndentation = FormatStyle::NI_Inner;
Daniel Jaspere05dc6d2013-07-24 13:10:59 +0000259 Style.PointerBindsToType = true;
260 return Style;
261}
262
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000263bool getPredefinedStyle(StringRef Name, FormatStyle *Style) {
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000264 if (Name.equals_lower("llvm"))
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000265 *Style = getLLVMStyle();
266 else if (Name.equals_lower("chromium"))
267 *Style = getChromiumStyle();
268 else if (Name.equals_lower("mozilla"))
269 *Style = getMozillaStyle();
270 else if (Name.equals_lower("google"))
271 *Style = getGoogleStyle();
Daniel Jaspere05dc6d2013-07-24 13:10:59 +0000272 else if (Name.equals_lower("webkit"))
273 *Style = getWebKitStyle();
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000274 else
275 return false;
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000276
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000277 return true;
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000278}
279
280llvm::error_code parseConfiguration(StringRef Text, FormatStyle *Style) {
Alexander Kornienko107db3c2013-05-20 15:18:01 +0000281 if (Text.trim().empty())
282 return llvm::make_error_code(llvm::errc::invalid_argument);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000283 llvm::yaml::Input Input(Text);
284 Input >> *Style;
285 return Input.error();
286}
287
288std::string configurationAsText(const FormatStyle &Style) {
289 std::string Text;
290 llvm::raw_string_ostream Stream(Text);
291 llvm::yaml::Output Output(Stream);
292 // We use the same mapping method for input and output, so we need a non-const
293 // reference here.
294 FormatStyle NonConstStyle = Style;
295 Output << NonConstStyle;
Alexander Kornienko2b6acb62013-05-13 12:56:35 +0000296 return Stream.str();
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000297}
298
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000299// Returns the length of everything up to the first possible line break after
300// the ), ], } or > matching \c Tok.
Manuel Klimekb3987012013-05-29 14:47:47 +0000301static unsigned getLengthToMatchingParen(const FormatToken &Tok) {
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000302 if (Tok.MatchingParen == NULL)
303 return 0;
Manuel Klimekb3987012013-05-29 14:47:47 +0000304 FormatToken *End = Tok.MatchingParen;
305 while (End->Next && !End->Next->CanBreakBefore) {
306 End = End->Next;
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000307 }
308 return End->TotalLength - Tok.TotalLength + 1;
309}
310
Craig Topper83f81d72013-06-30 22:29:28 +0000311namespace {
312
Daniel Jasperbac016b2012-12-03 18:12:45 +0000313class UnwrappedLineFormatter {
314public:
Manuel Klimek94fc6f12013-01-10 19:17:33 +0000315 UnwrappedLineFormatter(const FormatStyle &Style, SourceManager &SourceMgr,
Daniel Jasper995e8202013-01-14 13:08:07 +0000316 const AnnotatedLine &Line, unsigned FirstIndent,
Manuel Klimekb3987012013-05-29 14:47:47 +0000317 const FormatToken *RootToken,
Alexander Kornienko00895102013-06-05 14:09:10 +0000318 WhitespaceManager &Whitespaces,
Daniel Jasperc7bd68f2013-07-10 14:02:49 +0000319 encoding::Encoding Encoding,
320 bool BinPackInconclusiveFunctions)
Daniel Jasper1321eb52012-12-18 21:05:13 +0000321 : Style(Style), SourceMgr(SourceMgr), Line(Line),
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000322 FirstIndent(FirstIndent), RootToken(RootToken),
Daniel Jasperc7bd68f2013-07-10 14:02:49 +0000323 Whitespaces(Whitespaces), Count(0), Encoding(Encoding),
324 BinPackInconclusiveFunctions(BinPackInconclusiveFunctions) {}
Daniel Jasperbac016b2012-12-03 18:12:45 +0000325
Manuel Klimekd4397b92013-01-04 23:34:14 +0000326 /// \brief Formats an \c UnwrappedLine.
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000327 void format(const AnnotatedLine *NextLine) {
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000328 // Initialize state dependent on indent.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000329 LineState State;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000330 State.Column = FirstIndent;
Manuel Klimekb3987012013-05-29 14:47:47 +0000331 State.NextToken = RootToken;
Daniel Jasper2a409b62013-07-08 14:34:09 +0000332 State.Stack.push_back(ParenState(FirstIndent, FirstIndent,
333 /*AvoidBinPacking=*/false,
334 /*NoLineBreak=*/false));
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000335 State.LineContainsContinuedForLoopSection = false;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000336 State.ParenLevel = 0;
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000337 State.StartOfStringLiteral = 0;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000338 State.StartOfLineLevel = State.ParenLevel;
Daniel Jasper07ca5472013-07-05 09:14:35 +0000339 State.LowestLevelOnLine = State.ParenLevel;
Daniel Jasper54b4e442013-05-22 05:27:42 +0000340 State.IgnoreStackForComparison = false;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000341
342 // The first token has already been indented and thus consumed.
Daniel Jasper0fde9502013-07-12 11:37:05 +0000343 moveStateToNextToken(State, /*DryRun=*/false, /*Newline=*/false);
Daniel Jasperbac016b2012-12-03 18:12:45 +0000344
Daniel Jaspere05dc6d2013-07-24 13:10:59 +0000345 if (Style.ColumnLimit == 0) {
346 formatWithoutColumnLimit(State);
347 return;
348 }
349
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000350 // If everything fits on a single line, just put it there.
Daniel Jaspera4d46212013-02-28 11:05:57 +0000351 unsigned ColumnLimit = Style.ColumnLimit;
352 if (NextLine && NextLine->InPPDirective &&
Manuel Klimekb3987012013-05-29 14:47:47 +0000353 !NextLine->First->HasUnescapedNewline)
Daniel Jaspera4d46212013-02-28 11:05:57 +0000354 ColumnLimit = getColumnLimit();
355 if (Line.Last->TotalLength <= ColumnLimit - FirstIndent) {
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000356 while (State.NextToken != NULL) {
Daniel Jasper1321eb52012-12-18 21:05:13 +0000357 addTokenToState(false, false, State);
Daniel Jasper1321eb52012-12-18 21:05:13 +0000358 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000359 }
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000360
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000361 // If the ObjC method declaration does not fit on a line, we should format
362 // it with one arg per line.
363 if (Line.Type == LT_ObjCMethodDecl)
364 State.Stack.back().BreakBeforeParameter = true;
365
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000366 // Find best solution in solution space.
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000367 analyzeSolutionSpace(State);
Daniel Jasperbac016b2012-12-03 18:12:45 +0000368 }
369
370private:
Manuel Klimekb3987012013-05-29 14:47:47 +0000371 void DebugTokenState(const FormatToken &FormatTok) {
372 const Token &Tok = FormatTok.Tok;
Alexander Kornienkodd256312013-05-10 11:56:10 +0000373 llvm::dbgs() << StringRef(SourceMgr.getCharacterData(Tok.getLocation()),
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000374 Tok.getLength());
Alexander Kornienkodd256312013-05-10 11:56:10 +0000375 llvm::dbgs();
Manuel Klimekca547db2013-01-16 14:55:28 +0000376 }
377
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000378 struct ParenState {
Daniel Jasperd399bff2013-02-05 09:41:21 +0000379 ParenState(unsigned Indent, unsigned LastSpace, bool AvoidBinPacking,
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000380 bool NoLineBreak)
Daniel Jasper29f123b2013-02-08 15:28:42 +0000381 : Indent(Indent), LastSpace(LastSpace), FirstLessLess(0),
382 BreakBeforeClosingBrace(false), QuestionColumn(0),
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000383 AvoidBinPacking(AvoidBinPacking), BreakBeforeParameter(false),
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000384 NoLineBreak(NoLineBreak), ColonPos(0), StartOfFunctionCall(0),
Daniel Jasper011c35d2013-07-12 11:19:37 +0000385 StartOfArraySubscripts(0), NestedNameSpecifierContinuation(0),
386 CallContinuation(0), VariablePos(0), ContainsLineBreak(false) {}
Daniel Jaspera4974cf2012-12-24 16:43:00 +0000387
Daniel Jasperbac016b2012-12-03 18:12:45 +0000388 /// \brief The position to which a specific parenthesis level needs to be
389 /// indented.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000390 unsigned Indent;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000391
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000392 /// \brief The position of the last space on each level.
393 ///
394 /// Used e.g. to break like:
395 /// functionCall(Parameter, otherCall(
396 /// OtherParameter));
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000397 unsigned LastSpace;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000398
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000399 /// \brief The position the first "<<" operator encountered on each level.
400 ///
401 /// Used to align "<<" operators. 0 if no such operator has been encountered
402 /// on a level.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000403 unsigned FirstLessLess;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000404
Manuel Klimekc8c8a472013-01-10 15:58:26 +0000405 /// \brief Whether a newline needs to be inserted before the block's closing
406 /// brace.
407 ///
408 /// We only want to insert a newline before the closing brace if there also
409 /// was a newline after the beginning left brace.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000410 bool BreakBeforeClosingBrace;
411
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000412 /// \brief The column of a \c ? in a conditional expression;
413 unsigned QuestionColumn;
414
Daniel Jasperf343cab2013-01-31 14:59:26 +0000415 /// \brief Avoid bin packing, i.e. multiple parameters/elements on multiple
416 /// lines, in this context.
417 bool AvoidBinPacking;
418
419 /// \brief Break after the next comma (or all the commas in this context if
420 /// \c AvoidBinPacking is \c true).
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000421 bool BreakBeforeParameter;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000422
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000423 /// \brief Line breaking in this context would break a formatting rule.
424 bool NoLineBreak;
Daniel Jasper7e9bf8c2013-01-11 11:37:55 +0000425
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000426 /// \brief The position of the colon in an ObjC method declaration/call.
427 unsigned ColonPos;
Daniel Jasperc4615b72013-02-20 12:56:39 +0000428
Daniel Jasper24849712013-03-01 16:48:32 +0000429 /// \brief The start of the most recent function in a builder-type call.
430 unsigned StartOfFunctionCall;
431
Daniel Jasper011c35d2013-07-12 11:19:37 +0000432 /// \brief Contains the start of array subscript expressions, so that they
433 /// can be aligned.
434 unsigned StartOfArraySubscripts;
435
Daniel Jasper37911302013-04-02 14:33:13 +0000436 /// \brief If a nested name specifier was broken over multiple lines, this
437 /// contains the start column of the second line. Otherwise 0.
438 unsigned NestedNameSpecifierContinuation;
439
440 /// \brief If a call expression was broken over multiple lines, this
441 /// contains the start column of the second line. Otherwise 0.
442 unsigned CallContinuation;
443
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000444 /// \brief The column of the first variable name in a variable declaration.
445 ///
446 /// Used to align further variables if necessary.
447 unsigned VariablePos;
448
Daniel Jasper88cc5622013-07-08 14:25:23 +0000449 /// \brief \c true if this \c ParenState already contains a line-break.
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000450 ///
Daniel Jasper88cc5622013-07-08 14:25:23 +0000451 /// The first line break in a certain \c ParenState causes extra penalty so
452 /// that clang-format prefers similar breaks, i.e. breaks in the same
453 /// parenthesis.
454 bool ContainsLineBreak;
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000455
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000456 bool operator<(const ParenState &Other) const {
457 if (Indent != Other.Indent)
Daniel Jasper7d19bc22013-01-11 14:23:32 +0000458 return Indent < Other.Indent;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000459 if (LastSpace != Other.LastSpace)
460 return LastSpace < Other.LastSpace;
461 if (FirstLessLess != Other.FirstLessLess)
462 return FirstLessLess < Other.FirstLessLess;
Daniel Jasper7e9bf8c2013-01-11 11:37:55 +0000463 if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
464 return BreakBeforeClosingBrace;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000465 if (QuestionColumn != Other.QuestionColumn)
466 return QuestionColumn < Other.QuestionColumn;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000467 if (AvoidBinPacking != Other.AvoidBinPacking)
468 return AvoidBinPacking;
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000469 if (BreakBeforeParameter != Other.BreakBeforeParameter)
470 return BreakBeforeParameter;
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000471 if (NoLineBreak != Other.NoLineBreak)
472 return NoLineBreak;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000473 if (ColonPos != Other.ColonPos)
474 return ColonPos < Other.ColonPos;
Daniel Jasper24849712013-03-01 16:48:32 +0000475 if (StartOfFunctionCall != Other.StartOfFunctionCall)
476 return StartOfFunctionCall < Other.StartOfFunctionCall;
Daniel Jasper011c35d2013-07-12 11:19:37 +0000477 if (StartOfArraySubscripts != Other.StartOfArraySubscripts)
478 return StartOfArraySubscripts < Other.StartOfArraySubscripts;
Daniel Jasper37911302013-04-02 14:33:13 +0000479 if (CallContinuation != Other.CallContinuation)
480 return CallContinuation < Other.CallContinuation;
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000481 if (VariablePos != Other.VariablePos)
482 return VariablePos < Other.VariablePos;
Daniel Jasper88cc5622013-07-08 14:25:23 +0000483 if (ContainsLineBreak != Other.ContainsLineBreak)
484 return ContainsLineBreak < Other.ContainsLineBreak;
Daniel Jasperb3123142013-01-12 07:36:22 +0000485 return false;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000486 }
487 };
488
489 /// \brief The current state when indenting a unwrapped line.
490 ///
491 /// As the indenting tries different combinations this is copied by value.
492 struct LineState {
493 /// \brief The number of used columns in the current line.
494 unsigned Column;
495
496 /// \brief The token that needs to be next formatted.
Manuel Klimekb3987012013-05-29 14:47:47 +0000497 const FormatToken *NextToken;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000498
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000499 /// \brief \c true if this line contains a continued for-loop section.
500 bool LineContainsContinuedForLoopSection;
501
Daniel Jasper29f123b2013-02-08 15:28:42 +0000502 /// \brief The level of nesting inside (), [], <> and {}.
503 unsigned ParenLevel;
504
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000505 /// \brief The \c ParenLevel at the start of this line.
506 unsigned StartOfLineLevel;
507
Daniel Jasper07ca5472013-07-05 09:14:35 +0000508 /// \brief The lowest \c ParenLevel on the current line.
509 unsigned LowestLevelOnLine;
Daniel Jasper259a0382013-05-27 11:50:16 +0000510
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000511 /// \brief The start column of the string literal, if we're in a string
512 /// literal sequence, 0 otherwise.
513 unsigned StartOfStringLiteral;
514
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000515 /// \brief A stack keeping track of properties applying to parenthesis
516 /// levels.
517 std::vector<ParenState> Stack;
518
Daniel Jasper54b4e442013-05-22 05:27:42 +0000519 /// \brief Ignore the stack of \c ParenStates for state comparison.
520 ///
521 /// In long and deeply nested unwrapped lines, the current algorithm can
522 /// be insufficient for finding the best formatting with a reasonable amount
523 /// of time and memory. Setting this flag will effectively lead to the
524 /// algorithm not analyzing some combinations. However, these combinations
525 /// rarely contain the optimal solution: In short, accepting a higher
526 /// penalty early would need to lead to different values in the \c
527 /// ParenState stack (in an otherwise identical state) and these different
528 /// values would need to lead to a significant amount of avoided penalty
529 /// later.
530 ///
531 /// FIXME: Come up with a better algorithm instead.
532 bool IgnoreStackForComparison;
533
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000534 /// \brief Comparison operator to be able to used \c LineState in \c map.
535 bool operator<(const LineState &Other) const {
Daniel Jasperd7896702013-02-19 09:28:55 +0000536 if (NextToken != Other.NextToken)
537 return NextToken < Other.NextToken;
538 if (Column != Other.Column)
539 return Column < Other.Column;
Daniel Jasperd7896702013-02-19 09:28:55 +0000540 if (LineContainsContinuedForLoopSection !=
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000541 Other.LineContainsContinuedForLoopSection)
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000542 return LineContainsContinuedForLoopSection;
Daniel Jasperd7896702013-02-19 09:28:55 +0000543 if (ParenLevel != Other.ParenLevel)
544 return ParenLevel < Other.ParenLevel;
545 if (StartOfLineLevel != Other.StartOfLineLevel)
546 return StartOfLineLevel < Other.StartOfLineLevel;
Daniel Jasper07ca5472013-07-05 09:14:35 +0000547 if (LowestLevelOnLine != Other.LowestLevelOnLine)
548 return LowestLevelOnLine < Other.LowestLevelOnLine;
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000549 if (StartOfStringLiteral != Other.StartOfStringLiteral)
550 return StartOfStringLiteral < Other.StartOfStringLiteral;
Daniel Jasper54b4e442013-05-22 05:27:42 +0000551 if (IgnoreStackForComparison || Other.IgnoreStackForComparison)
552 return false;
Daniel Jasperd7896702013-02-19 09:28:55 +0000553 return Stack < Other.Stack;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000554 }
555 };
556
Daniel Jaspere05dc6d2013-07-24 13:10:59 +0000557 /// \brief Formats the line starting at \p State, simply keeping all of the
558 /// input's line breaking decisions.
559 void formatWithoutColumnLimit(LineState &State) {
560 while (State.NextToken != NULL) {
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000561 bool Newline = mustBreak(State) ||
562 (canBreak(State) && State.NextToken->NewlinesBefore > 0);
Daniel Jaspere05dc6d2013-07-24 13:10:59 +0000563 addTokenToState(Newline, /*DryRun=*/false, State);
564 }
565 }
566
Daniel Jasper20409152012-12-04 14:54:30 +0000567 /// \brief Appends the next token to \p State and updates information
568 /// necessary for indentation.
569 ///
Nico Weber1907c572013-06-26 02:42:46 +0000570 /// Puts the token on the current line if \p Newline is \c false and adds a
Daniel Jasper20409152012-12-04 14:54:30 +0000571 /// line break and necessary indentation otherwise.
572 ///
573 /// If \p DryRun is \c false, also creates and stores the required
574 /// \c Replacement.
Manuel Klimek8092a942013-02-20 10:15:13 +0000575 unsigned addTokenToState(bool Newline, bool DryRun, LineState &State) {
Manuel Klimekb3987012013-05-29 14:47:47 +0000576 const FormatToken &Current = *State.NextToken;
577 const FormatToken &Previous = *State.NextToken->Previous;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000578
Daniel Jasperfaec47b2013-07-11 20:41:21 +0000579 // Extra penalty that needs to be added because of the way certain line
580 // breaks are chosen.
581 unsigned ExtraPenalty = 0;
582
Daniel Jasper92f9faf2013-03-20 15:58:10 +0000583 if (State.Stack.size() == 0 || Current.Type == TT_ImplicitStringLiteral) {
Manuel Klimekad3094b2013-05-23 10:56:37 +0000584 // FIXME: Is this correct?
Manuel Klimekb3987012013-05-29 14:47:47 +0000585 int WhitespaceLength = SourceMgr.getSpellingColumnNumber(
586 State.NextToken->WhitespaceRange.getEnd()) -
587 SourceMgr.getSpellingColumnNumber(
588 State.NextToken->WhitespaceRange.getBegin());
Alexander Kornienko00895102013-06-05 14:09:10 +0000589 State.Column += WhitespaceLength + State.NextToken->CodePointCount;
Manuel Klimekb3987012013-05-29 14:47:47 +0000590 State.NextToken = State.NextToken->Next;
Manuel Klimek8092a942013-02-20 10:15:13 +0000591 return 0;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000592 }
593
Daniel Jasper3776ef32013-04-03 07:21:51 +0000594 // If we are continuing an expression, we want to indent an extra 4 spaces.
595 unsigned ContinuationIndent =
Daniel Jasper37911302013-04-02 14:33:13 +0000596 std::max(State.Stack.back().LastSpace, State.Stack.back().Indent) + 4;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000597 if (Newline) {
Daniel Jasper88cc5622013-07-08 14:25:23 +0000598 State.Stack.back().ContainsLineBreak = true;
Manuel Klimekbb42bf12013-01-10 11:52:21 +0000599 if (Current.is(tok::r_brace)) {
Daniel Jasper0de1c4d2013-07-09 09:06:29 +0000600 if (Current.BlockKind == BK_BracedInit)
601 State.Column = State.Stack[State.Stack.size() - 2].LastSpace;
602 else
Daniel Jasper15ec3a82013-07-11 21:27:40 +0000603 State.Column = FirstIndent;
Daniel Jasper9c837d02013-01-09 07:06:56 +0000604 } else if (Current.is(tok::string_literal) &&
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000605 State.StartOfStringLiteral != 0) {
606 State.Column = State.StartOfStringLiteral;
Daniel Jasper66d19bd2013-02-18 11:59:17 +0000607 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasper9c837d02013-01-09 07:06:56 +0000608 } else if (Current.is(tok::lessless) &&
Daniel Jasper29f123b2013-02-08 15:28:42 +0000609 State.Stack.back().FirstLessLess != 0) {
610 State.Column = State.Stack.back().FirstLessLess;
Daniel Jasper5ad390d2013-05-28 11:30:49 +0000611 } else if (Current.isOneOf(tok::period, tok::arrow) &&
612 Current.Type != TT_DesignatedInitializerPeriod) {
Daniel Jasper3776ef32013-04-03 07:21:51 +0000613 if (State.Stack.back().CallContinuation == 0) {
614 State.Column = ContinuationIndent;
Daniel Jasper37911302013-04-02 14:33:13 +0000615 State.Stack.back().CallContinuation = State.Column;
Daniel Jasper3776ef32013-04-03 07:21:51 +0000616 } else {
617 State.Column = State.Stack.back().CallContinuation;
618 }
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000619 } else if (Current.Type == TT_ConditionalExpr) {
620 State.Column = State.Stack.back().QuestionColumn;
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000621 } else if (Previous.is(tok::comma) &&
622 State.Stack.back().VariablePos != 0) {
623 State.Column = State.Stack.back().VariablePos;
Daniel Jasper3c08a812013-02-24 18:54:32 +0000624 } else if (Previous.ClosesTemplateDeclaration ||
Daniel Jasper6561f6a2013-07-09 07:43:55 +0000625 ((Current.Type == TT_StartOfName ||
626 Current.is(tok::kw_operator)) &&
627 State.ParenLevel == 0 &&
Manuel Klimeka9a7f102013-06-21 17:25:42 +0000628 (!Style.IndentFunctionDeclarationAfterType ||
629 Line.StartsDefinition))) {
Daniel Jasper37911302013-04-02 14:33:13 +0000630 State.Column = State.Stack.back().Indent;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000631 } else if (Current.Type == TT_ObjCSelectorName) {
Alexander Kornienko00895102013-06-05 14:09:10 +0000632 if (State.Stack.back().ColonPos > Current.CodePointCount) {
633 State.Column = State.Stack.back().ColonPos - Current.CodePointCount;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000634 } else {
635 State.Column = State.Stack.back().Indent;
Alexander Kornienko00895102013-06-05 14:09:10 +0000636 State.Stack.back().ColonPos = State.Column + Current.CodePointCount;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000637 }
Daniel Jasper011c35d2013-07-12 11:19:37 +0000638 } else if (Current.is(tok::l_square) &&
639 Current.Type != TT_ObjCMethodExpr) {
640 if (State.Stack.back().StartOfArraySubscripts != 0)
641 State.Column = State.Stack.back().StartOfArraySubscripts;
642 else
643 State.Column = ContinuationIndent;
Daniel Jasperb2f063a2013-05-08 10:00:18 +0000644 } else if (Current.Type == TT_StartOfName ||
645 Previous.isOneOf(tok::coloncolon, tok::equal) ||
Daniel Jasper37911302013-04-02 14:33:13 +0000646 Previous.Type == TT_ObjCMethodExpr) {
Daniel Jasper3776ef32013-04-03 07:21:51 +0000647 State.Column = ContinuationIndent;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000648 } else {
Daniel Jasper29f123b2013-02-08 15:28:42 +0000649 State.Column = State.Stack.back().Indent;
Daniel Jasper3776ef32013-04-03 07:21:51 +0000650 // Ensure that we fall back to indenting 4 spaces instead of just
651 // flushing continuations left.
Daniel Jasper37911302013-04-02 14:33:13 +0000652 if (State.Column == FirstIndent)
653 State.Column += 4;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000654 }
655
Daniel Jasper7878a7b2013-02-15 11:07:25 +0000656 if (Current.is(tok::question))
Daniel Jasper237d4c12013-02-23 21:01:55 +0000657 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasper11e13802013-05-08 14:12:04 +0000658 if ((Previous.isOneOf(tok::comma, tok::semi) &&
659 !State.Stack.back().AvoidBinPacking) ||
660 Previous.Type == TT_BinaryOperator)
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000661 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasper33f4b902013-05-15 09:35:08 +0000662 if (Previous.Type == TT_TemplateCloser && State.ParenLevel == 0)
663 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000664
Manuel Klimek060143e2013-01-02 18:33:23 +0000665 if (!DryRun) {
Daniel Jasper1ef81d52013-02-26 13:10:34 +0000666 unsigned NewLines = 1;
Alexander Kornienkoe3f11972013-06-12 19:04:12 +0000667 if (Current.is(tok::comment))
Manuel Klimekb3987012013-05-29 14:47:47 +0000668 NewLines = std::max(
669 NewLines,
670 std::min(Current.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1));
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000671 Whitespaces.replaceWhitespace(Current, NewLines, State.Column,
672 State.Column, Line.InPPDirective);
Manuel Klimek060143e2013-01-02 18:33:23 +0000673 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000674
Daniel Jaspere1f9a8e2013-07-11 13:48:16 +0000675 if (!Current.isTrailingComment())
676 State.Stack.back().LastSpace = State.Column;
Daniel Jasper5ad390d2013-05-28 11:30:49 +0000677 if (Current.isOneOf(tok::arrow, tok::period) &&
678 Current.Type != TT_DesignatedInitializerPeriod)
Alexander Kornienko00895102013-06-05 14:09:10 +0000679 State.Stack.back().LastSpace += Current.CodePointCount;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000680 State.StartOfLineLevel = State.ParenLevel;
Daniel Jasper07ca5472013-07-05 09:14:35 +0000681 State.LowestLevelOnLine = State.ParenLevel;
Daniel Jasper237d4c12013-02-23 21:01:55 +0000682
683 // Any break on this level means that the parent level has been broken
684 // and we need to avoid bin packing there.
685 for (unsigned i = 0, e = State.Stack.size() - 1; i != e; ++i) {
686 State.Stack[i].BreakBeforeParameter = true;
687 }
Alexander Kornienko0bdc6432013-07-04 14:47:51 +0000688 const FormatToken *TokenBefore = Current.getPreviousNonComment();
Daniel Jasper01218ff2013-04-15 22:36:37 +0000689 if (TokenBefore && !TokenBefore->isOneOf(tok::comma, tok::semi) &&
Daniel Jasper33f4b902013-05-15 09:35:08 +0000690 TokenBefore->Type != TT_TemplateCloser &&
Daniel Jasper11e13802013-05-08 14:12:04 +0000691 TokenBefore->Type != TT_BinaryOperator && !TokenBefore->opensScope())
Daniel Jasperfaab0d32013-02-27 09:47:53 +0000692 State.Stack.back().BreakBeforeParameter = true;
693
Daniel Jasper237d4c12013-02-23 21:01:55 +0000694 // If we break after {, we should also break before the corresponding }.
695 if (Previous.is(tok::l_brace))
696 State.Stack.back().BreakBeforeClosingBrace = true;
697
698 if (State.Stack.back().AvoidBinPacking) {
699 // If we are breaking after '(', '{', '<', this is not bin packing
700 // unless AllowAllParametersOfDeclarationOnNextLine is false.
Daniel Jasperd741f022013-05-14 20:39:56 +0000701 if (!(Previous.isOneOf(tok::l_paren, tok::l_brace) ||
702 Previous.Type == TT_BinaryOperator) ||
Daniel Jasper237d4c12013-02-23 21:01:55 +0000703 (!Style.AllowAllParametersOfDeclarationOnNextLine &&
704 Line.MustBeDeclaration))
705 State.Stack.back().BreakBeforeParameter = true;
706 }
Daniel Jasperfaec47b2013-07-11 20:41:21 +0000707
708 // Breaking before the first "<<" is generally not desirable.
709 if (Current.is(tok::lessless) && State.Stack.back().FirstLessLess == 0)
710 ExtraPenalty += Style.PenaltyBreakFirstLessLess;
711
Daniel Jasperbac016b2012-12-03 18:12:45 +0000712 } else {
Daniel Jasper9c3e71a2013-02-25 15:59:54 +0000713 if (Current.is(tok::equal) &&
Manuel Klimekb3987012013-05-29 14:47:47 +0000714 (RootToken->is(tok::kw_for) || State.ParenLevel == 0) &&
Daniel Jasperadc0f092013-04-05 09:38:50 +0000715 State.Stack.back().VariablePos == 0) {
716 State.Stack.back().VariablePos = State.Column;
717 // Move over * and & if they are bound to the variable name.
Manuel Klimekb3987012013-05-29 14:47:47 +0000718 const FormatToken *Tok = &Previous;
Alexander Kornienko00895102013-06-05 14:09:10 +0000719 while (Tok && State.Stack.back().VariablePos >= Tok->CodePointCount) {
720 State.Stack.back().VariablePos -= Tok->CodePointCount;
Daniel Jasperadc0f092013-04-05 09:38:50 +0000721 if (Tok->SpacesRequiredBefore != 0)
722 break;
Manuel Klimekb3987012013-05-29 14:47:47 +0000723 Tok = Tok->Previous;
Daniel Jasperadc0f092013-04-05 09:38:50 +0000724 }
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000725 if (Previous.PartOfMultiVariableDeclStmt)
726 State.Stack.back().LastSpace = State.Stack.back().VariablePos;
727 }
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000728
Daniel Jasper729a7432013-02-11 12:36:37 +0000729 unsigned Spaces = State.NextToken->SpacesRequiredBefore;
Daniel Jasper20409152012-12-04 14:54:30 +0000730
Daniel Jasperbac016b2012-12-03 18:12:45 +0000731 if (!DryRun)
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000732 Whitespaces.replaceWhitespace(Current, 0, Spaces,
733 State.Column + Spaces);
Daniel Jasper20409152012-12-04 14:54:30 +0000734
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000735 if (Current.Type == TT_ObjCSelectorName &&
736 State.Stack.back().ColonPos == 0) {
737 if (State.Stack.back().Indent + Current.LongestObjCSelectorName >
Alexander Kornienko00895102013-06-05 14:09:10 +0000738 State.Column + Spaces + Current.CodePointCount)
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000739 State.Stack.back().ColonPos =
740 State.Stack.back().Indent + Current.LongestObjCSelectorName;
741 else
742 State.Stack.back().ColonPos =
Alexander Kornienko00895102013-06-05 14:09:10 +0000743 State.Column + Spaces + Current.CodePointCount;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000744 }
745
Daniel Jasperac3223e2013-04-10 09:49:49 +0000746 if (Previous.opensScope() && Previous.Type != TT_ObjCMethodExpr &&
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000747 Current.Type != TT_LineComment)
Daniel Jasper29f123b2013-02-08 15:28:42 +0000748 State.Stack.back().Indent = State.Column + Spaces;
Daniel Jasper001bf4e2013-04-22 07:59:53 +0000749 if (Previous.is(tok::comma) && !Current.isTrailingComment() &&
750 State.Stack.back().AvoidBinPacking)
751 State.Stack.back().NoLineBreak = true;
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000752
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000753 State.Column += Spaces;
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000754 if (Current.is(tok::l_paren) && Previous.isOneOf(tok::kw_if, tok::kw_for))
Daniel Jaspere438bac2013-01-23 20:41:06 +0000755 // Treat the condition inside an if as if it was a second function
756 // parameter, i.e. let nested calls have an indent of 4.
757 State.Stack.back().LastSpace = State.Column + 1; // 1 is length of "(".
Daniel Jasperf9955d32013-03-20 12:37:50 +0000758 else if (Previous.is(tok::comma))
Daniel Jaspere438bac2013-01-23 20:41:06 +0000759 State.Stack.back().LastSpace = State.Column;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000760 else if ((Previous.Type == TT_BinaryOperator ||
Daniel Jasper02b771e2013-01-28 13:31:35 +0000761 Previous.Type == TT_ConditionalExpr ||
762 Previous.Type == TT_CtorInitializerColon) &&
Manuel Klimekb3987012013-05-29 14:47:47 +0000763 !(Previous.getPrecedence() == prec::Assignment &&
Daniel Jasper512843a2013-05-27 12:45:09 +0000764 Current.FakeLParens.empty()))
765 // Always indent relative to the RHS of the expression unless this is a
766 // simple assignment without binary expression on the RHS.
Daniel Jasperae8699b2013-01-28 09:35:24 +0000767 State.Stack.back().LastSpace = State.Column;
Daniel Jasper6cabab42013-02-14 08:42:54 +0000768 else if (Previous.Type == TT_InheritanceColon)
769 State.Stack.back().Indent = State.Column;
Daniel Jasperb1491792013-07-09 11:57:27 +0000770 else if (Previous.opensScope()) {
771 // If a function has multiple parameters (including a single parameter
Daniel Jasper2ca37412013-07-09 14:36:48 +0000772 // that is a binary expression) or a trailing call, indent all
Daniel Jasperb1491792013-07-09 11:57:27 +0000773 // parameters from the opening parenthesis. This avoids confusing
774 // indents like:
775 // OuterFunction(InnerFunctionCall(
776 // ParameterToInnerFunction),
777 // SecondParameterToOuterFunction);
778 bool HasMultipleParameters = !Current.FakeLParens.empty();
779 bool HasTrailingCall = false;
780 if (Previous.MatchingParen) {
781 const FormatToken *Next = Previous.MatchingParen->getNextNonComment();
782 if (Next && Next->isOneOf(tok::period, tok::arrow))
783 HasTrailingCall = true;
784 }
785 if (HasMultipleParameters || HasTrailingCall)
786 State.Stack.back().LastSpace = State.Column;
787 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000788 }
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000789
Daniel Jasper0fde9502013-07-12 11:37:05 +0000790 return moveStateToNextToken(State, DryRun, Newline) + ExtraPenalty;
Daniel Jasper20409152012-12-04 14:54:30 +0000791 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000792
Daniel Jasper20409152012-12-04 14:54:30 +0000793 /// \brief Mark the next token as consumed in \p State and modify its stacks
794 /// accordingly.
Daniel Jasper0fde9502013-07-12 11:37:05 +0000795 unsigned moveStateToNextToken(LineState &State, bool DryRun, bool Newline) {
Manuel Klimekb3987012013-05-29 14:47:47 +0000796 const FormatToken &Current = *State.NextToken;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000797 assert(State.Stack.size());
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000798
Daniel Jasper6cabab42013-02-14 08:42:54 +0000799 if (Current.Type == TT_InheritanceColon)
800 State.Stack.back().AvoidBinPacking = true;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000801 if (Current.is(tok::lessless) && State.Stack.back().FirstLessLess == 0)
802 State.Stack.back().FirstLessLess = State.Column;
Daniel Jasper011c35d2013-07-12 11:19:37 +0000803 if (Current.is(tok::l_square) &&
804 State.Stack.back().StartOfArraySubscripts == 0)
805 State.Stack.back().StartOfArraySubscripts = State.Column;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000806 if (Current.is(tok::question))
807 State.Stack.back().QuestionColumn = State.Column;
Daniel Jasper07ca5472013-07-05 09:14:35 +0000808 if (!Current.opensScope() && !Current.closesScope())
809 State.LowestLevelOnLine =
810 std::min(State.LowestLevelOnLine, State.ParenLevel);
811 if (Current.isOneOf(tok::period, tok::arrow) &&
812 Line.Type == LT_BuilderTypeCall && State.ParenLevel == 0)
813 State.Stack.back().StartOfFunctionCall =
814 Current.LastInChainOfCalls ? 0
815 : State.Column + Current.CodePointCount;
Daniel Jasper7d812812013-02-21 15:00:29 +0000816 if (Current.Type == TT_CtorInitializerColon) {
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000817 // Indent 2 from the column, so:
818 // SomeClass::SomeClass()
819 // : First(...), ...
820 // Next(...)
821 // ^ line up here.
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000822 if (!Style.BreakConstructorInitializersBeforeComma)
823 State.Stack.back().Indent = State.Column + 2;
Daniel Jasper7d812812013-02-21 15:00:29 +0000824 if (Style.ConstructorInitializerAllOnOneLineOrOnePerLine)
825 State.Stack.back().AvoidBinPacking = true;
826 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000827 }
Daniel Jasper3776ef32013-04-03 07:21:51 +0000828
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000829 // If return returns a binary expression, align after it.
830 if (Current.is(tok::kw_return) && !Current.FakeLParens.empty())
831 State.Stack.back().LastSpace = State.Column + 7;
832
Daniel Jasper3776ef32013-04-03 07:21:51 +0000833 // In ObjC method declaration we align on the ":" of parameters, but we need
834 // to ensure that we indent parameters on subsequent lines by at least 4.
Daniel Jasper37911302013-04-02 14:33:13 +0000835 if (Current.Type == TT_ObjCMethodSpecifier)
836 State.Stack.back().Indent += 4;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000837
Daniel Jasper29f123b2013-02-08 15:28:42 +0000838 // Insert scopes created by fake parenthesis.
Alexander Kornienko0bdc6432013-07-04 14:47:51 +0000839 const FormatToken *Previous = Current.getPreviousNonComment();
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000840 // Don't add extra indentation for the first fake parenthesis after
841 // 'return', assignements or opening <({[. The indentation for these cases
842 // is special cased.
843 bool SkipFirstExtraIndent =
844 Current.is(tok::kw_return) ||
Daniel Jasperac3223e2013-04-10 09:49:49 +0000845 (Previous && (Previous->opensScope() ||
Manuel Klimekb3987012013-05-29 14:47:47 +0000846 Previous->getPrecedence() == prec::Assignment));
Craig Topper163fbf82013-07-08 03:55:09 +0000847 for (SmallVectorImpl<prec::Level>::const_reverse_iterator
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000848 I = Current.FakeLParens.rbegin(),
849 E = Current.FakeLParens.rend();
850 I != E; ++I) {
Daniel Jasper29f123b2013-02-08 15:28:42 +0000851 ParenState NewParenState = State.Stack.back();
Daniel Jasper88cc5622013-07-08 14:25:23 +0000852 NewParenState.ContainsLineBreak = false;
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000853 NewParenState.Indent =
854 std::max(std::max(State.Column, NewParenState.Indent),
855 State.Stack.back().LastSpace);
856
857 // Always indent conditional expressions. Never indent expression where
858 // the 'operator' is ',', ';' or an assignment (i.e. *I <=
859 // prec::Assignment) as those have different indentation rules. Indent
860 // other expression, unless the indentation needs to be skipped.
861 if (*I == prec::Conditional ||
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000862 (!SkipFirstExtraIndent && *I > prec::Assignment &&
863 !Style.BreakBeforeBinaryOperators))
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000864 NewParenState.Indent += 4;
Daniel Jasperac3223e2013-04-10 09:49:49 +0000865 if (Previous && !Previous->opensScope())
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000866 NewParenState.BreakBeforeParameter = false;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000867 State.Stack.push_back(NewParenState);
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000868 SkipFirstExtraIndent = false;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000869 }
870
Daniel Jaspercf225b62012-12-24 13:43:52 +0000871 // If we encounter an opening (, [, { or <, we add a level to our stacks to
Daniel Jasper20409152012-12-04 14:54:30 +0000872 // prepare for the following tokens.
Daniel Jasperac3223e2013-04-10 09:49:49 +0000873 if (Current.opensScope()) {
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000874 unsigned NewIndent;
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000875 unsigned LastSpace = State.Stack.back().LastSpace;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000876 bool AvoidBinPacking;
Manuel Klimek2851c162013-01-10 14:36:46 +0000877 if (Current.is(tok::l_brace)) {
Daniel Jasperb5dc3f42013-07-16 18:22:10 +0000878 NewIndent =
879 LastSpace + (Style.Cpp11BracedListStyle ? 4 : Style.IndentWidth);
Alexander Kornienko0bdc6432013-07-04 14:47:51 +0000880 const FormatToken *NextNoComment = Current.getNextNonComment();
Daniel Jasper5ad390d2013-05-28 11:30:49 +0000881 AvoidBinPacking = NextNoComment &&
882 NextNoComment->Type == TT_DesignatedInitializerPeriod;
Manuel Klimek2851c162013-01-10 14:36:46 +0000883 } else {
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000884 NewIndent =
885 4 + std::max(LastSpace, State.Stack.back().StartOfFunctionCall);
Daniel Jasperc7bd68f2013-07-10 14:02:49 +0000886 AvoidBinPacking = !Style.BinPackParameters ||
887 (Style.ExperimentalAutoDetectBinPacking &&
888 (Current.PackingKind == PPK_OnePerLine ||
889 (!BinPackInconclusiveFunctions &&
890 Current.PackingKind == PPK_Inconclusive)));
Manuel Klimek2851c162013-01-10 14:36:46 +0000891 }
Daniel Jasperfca24bc2013-04-25 13:31:51 +0000892
Daniel Jasperc3df5ff2013-05-13 09:19:24 +0000893 State.Stack.push_back(ParenState(NewIndent, LastSpace, AvoidBinPacking,
894 State.Stack.back().NoLineBreak));
Daniel Jasper29f123b2013-02-08 15:28:42 +0000895 ++State.ParenLevel;
Daniel Jasper20409152012-12-04 14:54:30 +0000896 }
897
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000898 // If this '[' opens an ObjC call, determine whether all parameters fit into
899 // one line and put one per line if they don't.
900 if (Current.is(tok::l_square) && Current.Type == TT_ObjCMethodExpr &&
901 Current.MatchingParen != NULL) {
902 if (getLengthToMatchingParen(Current) + State.Column > getColumnLimit())
903 State.Stack.back().BreakBeforeParameter = true;
904 }
905
Daniel Jaspercf225b62012-12-24 13:43:52 +0000906 // If we encounter a closing ), ], } or >, we can remove a level from our
Daniel Jasper20409152012-12-04 14:54:30 +0000907 // stacks.
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000908 if (Current.isOneOf(tok::r_paren, tok::r_square) ||
Manuel Klimekb3987012013-05-29 14:47:47 +0000909 (Current.is(tok::r_brace) && State.NextToken != RootToken) ||
Daniel Jasper26f7e782013-01-08 14:56:18 +0000910 State.NextToken->Type == TT_TemplateCloser) {
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000911 State.Stack.pop_back();
Daniel Jasper29f123b2013-02-08 15:28:42 +0000912 --State.ParenLevel;
913 }
Daniel Jasper011c35d2013-07-12 11:19:37 +0000914 if (Current.is(tok::r_square)) {
915 // If this ends the array subscript expr, reset the corresponding value.
916 const FormatToken *NextNonComment = Current.getNextNonComment();
917 if (NextNonComment && NextNonComment->isNot(tok::l_square))
Daniel Jasper9637dda2013-07-15 14:33:14 +0000918 State.Stack.back().StartOfArraySubscripts = 0;
Daniel Jasper011c35d2013-07-12 11:19:37 +0000919 }
Daniel Jasper29f123b2013-02-08 15:28:42 +0000920
921 // Remove scopes created by fake parenthesis.
922 for (unsigned i = 0, e = Current.FakeRParens; i != e; ++i) {
Daniel Jasperabfc9c12013-04-04 19:31:00 +0000923 unsigned VariablePos = State.Stack.back().VariablePos;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000924 State.Stack.pop_back();
Daniel Jasperabfc9c12013-04-04 19:31:00 +0000925 State.Stack.back().VariablePos = VariablePos;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000926 }
Manuel Klimek2851c162013-01-10 14:36:46 +0000927
Daniel Jasper27c7f542013-05-13 20:50:15 +0000928 if (Current.is(tok::string_literal) && State.StartOfStringLiteral == 0) {
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000929 State.StartOfStringLiteral = State.Column;
Daniel Jasper27c7f542013-05-13 20:50:15 +0000930 } else if (!Current.isOneOf(tok::comment, tok::identifier, tok::hash,
931 tok::string_literal)) {
Daniel Jasper9a2f8d02013-05-16 04:26:02 +0000932 State.StartOfStringLiteral = 0;
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000933 }
934
Alexander Kornienko00895102013-06-05 14:09:10 +0000935 State.Column += Current.CodePointCount;
Manuel Klimek8092a942013-02-20 10:15:13 +0000936
Manuel Klimekb3987012013-05-29 14:47:47 +0000937 State.NextToken = State.NextToken->Next;
Manuel Klimek2851c162013-01-10 14:36:46 +0000938
Daniel Jasper0fde9502013-07-12 11:37:05 +0000939 if (!Newline && Style.AlwaysBreakBeforeMultilineStrings &&
Daniel Jasper75e58bb2013-08-02 11:01:15 +0000940 Current.is(tok::string_literal) && Current.CanBreakBefore)
Daniel Jasper0fde9502013-07-12 11:37:05 +0000941 return 0;
942
Manuel Klimek8092a942013-02-20 10:15:13 +0000943 return breakProtrudingToken(Current, State, DryRun);
944 }
945
946 /// \brief If the current token sticks out over the end of the line, break
947 /// it if possible.
Manuel Klimek2a9805d2013-05-14 09:04:24 +0000948 ///
949 /// \returns An extra penalty if a token was broken, otherwise 0.
950 ///
Alexander Kornienkod446f732013-07-01 13:42:42 +0000951 /// The returned penalty will cover the cost of the additional line breaks and
952 /// column limit violation in all lines except for the last one. The penalty
953 /// for the column limit violation in the last line (and in single line
954 /// tokens) is handled in \c addNextStateToQueue.
Manuel Klimekb3987012013-05-29 14:47:47 +0000955 unsigned breakProtrudingToken(const FormatToken &Current, LineState &State,
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000956 bool DryRun) {
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000957 llvm::OwningPtr<BreakableToken> Token;
Alexander Kornienko00895102013-06-05 14:09:10 +0000958 unsigned StartColumn = State.Column - Current.CodePointCount;
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +0000959 unsigned OriginalStartColumn =
Manuel Klimekb3987012013-05-29 14:47:47 +0000960 SourceMgr.getSpellingColumnNumber(Current.getStartOfNonWhitespace()) -
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +0000961 1;
Manuel Klimekde008c02013-05-27 15:23:34 +0000962
Daniel Jasper5d5b4242013-05-16 12:59:13 +0000963 if (Current.is(tok::string_literal) &&
964 Current.Type != TT_ImplicitStringLiteral) {
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000965 // Only break up default narrow strings.
Alexander Kornienko16a0ec62013-06-14 11:46:10 +0000966 if (!Current.TokenText.startswith("\""))
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000967 return 0;
Alexander Kornienko10c26b22013-07-16 21:06:13 +0000968 // Don't break string literals with escaped newlines. As clang-format must
969 // not change the string's content, it is unlikely that we'll end up with
970 // a better format.
971 if (Current.TokenText.find("\\\n") != StringRef::npos)
972 return 0;
Daniel Jasper561211d2013-07-16 20:28:33 +0000973 // Exempts unterminated string literals from line breaking. The user will
974 // likely want to terminate the string before any line breaking is done.
975 if (Current.IsUnterminatedLiteral)
976 return 0;
Alexander Kornienko70ce7882013-04-15 14:28:00 +0000977
Alexander Kornienko16a0ec62013-06-14 11:46:10 +0000978 Token.reset(new BreakableStringLiteral(Current, StartColumn,
979 Line.InPPDirective, Encoding));
Alexander Kornienkob4b4a522013-07-16 23:47:22 +0000980 } else if (Current.Type == TT_BlockComment && Current.isTrailingComment()) {
Alexander Kornienko16a0ec62013-06-14 11:46:10 +0000981 Token.reset(new BreakableBlockComment(
Alexander Kornienko00895102013-06-05 14:09:10 +0000982 Style, Current, StartColumn, OriginalStartColumn, !Current.Previous,
Alexander Kornienko16a0ec62013-06-14 11:46:10 +0000983 Line.InPPDirective, Encoding));
Daniel Jasper7ff96ed2013-05-06 10:24:51 +0000984 } else if (Current.Type == TT_LineComment &&
Manuel Klimekb3987012013-05-29 14:47:47 +0000985 (Current.Previous == NULL ||
986 Current.Previous->Type != TT_ImplicitStringLiteral)) {
Alexander Kornienko10c26b22013-07-16 21:06:13 +0000987 // Don't break line comments with escaped newlines. These look like
988 // separate line comments, but in fact contain a single line comment with
989 // multiple lines including leading whitespace and the '//' markers.
990 //
991 // FIXME: If we want to handle them correctly, we'll need to adjust
992 // leading whitespace in consecutive lines when changing indentation of
993 // the first line similar to what we do with block comments.
994 StringRef::size_type EscapedNewlinePos = Current.TokenText.find("\\\n");
995 if (EscapedNewlinePos != StringRef::npos) {
996 State.Column =
997 StartColumn +
998 encoding::getCodePointCount(
999 Current.TokenText.substr(0, EscapedNewlinePos), Encoding) +
1000 1;
1001 return 0;
1002 }
1003
Alexander Kornienko16a0ec62013-06-14 11:46:10 +00001004 Token.reset(new BreakableLineComment(Current, StartColumn,
1005 Line.InPPDirective, Encoding));
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001006 } else {
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001007 return 0;
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001008 }
Alexander Kornienko16a0ec62013-06-14 11:46:10 +00001009 if (Current.UnbreakableTailLength >= getColumnLimit())
Manuel Klimek2a9805d2013-05-14 09:04:24 +00001010 return 0;
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001011
Alexander Kornienkoc36c5c22013-06-19 19:50:11 +00001012 unsigned RemainingSpace = getColumnLimit() - Current.UnbreakableTailLength;
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001013 bool BreakInserted = false;
1014 unsigned Penalty = 0;
Alexander Kornienkoc36c5c22013-06-19 19:50:11 +00001015 unsigned RemainingTokenColumns = 0;
Manuel Klimekde008c02013-05-27 15:23:34 +00001016 for (unsigned LineIndex = 0, EndIndex = Token->getLineCount();
1017 LineIndex != EndIndex; ++LineIndex) {
Alexander Kornienko16a0ec62013-06-14 11:46:10 +00001018 if (!DryRun)
1019 Token->replaceWhitespaceBefore(LineIndex, Whitespaces);
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001020 unsigned TailOffset = 0;
Alexander Kornienkoc36c5c22013-06-19 19:50:11 +00001021 RemainingTokenColumns = Token->getLineLengthAfterSplit(
Alexander Kornienko2785b9a2013-06-07 16:02:52 +00001022 LineIndex, TailOffset, StringRef::npos);
Alexander Kornienko00895102013-06-05 14:09:10 +00001023 while (RemainingTokenColumns > RemainingSpace) {
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001024 BreakableToken::Split Split =
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001025 Token->getSplit(LineIndex, TailOffset, getColumnLimit());
Alexander Kornienkod446f732013-07-01 13:42:42 +00001026 if (Split.first == StringRef::npos) {
1027 // The last line's penalty is handled in addNextStateToQueue().
1028 if (LineIndex < EndIndex - 1)
1029 Penalty += Style.PenaltyExcessCharacter *
1030 (RemainingTokenColumns - RemainingSpace);
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001031 break;
Alexander Kornienkod446f732013-07-01 13:42:42 +00001032 }
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001033 assert(Split.first != 0);
Alexander Kornienko00895102013-06-05 14:09:10 +00001034 unsigned NewRemainingTokenColumns = Token->getLineLengthAfterSplit(
Alexander Kornienko2785b9a2013-06-07 16:02:52 +00001035 LineIndex, TailOffset + Split.first + Split.second,
1036 StringRef::npos);
Alexander Kornienko00895102013-06-05 14:09:10 +00001037 assert(NewRemainingTokenColumns < RemainingTokenColumns);
Alexander Kornienko16a0ec62013-06-14 11:46:10 +00001038 if (!DryRun)
1039 Token->insertBreak(LineIndex, TailOffset, Split, Whitespaces);
Alexander Kornienko2785b9a2013-06-07 16:02:52 +00001040 Penalty += Current.is(tok::string_literal) ? Style.PenaltyBreakString
1041 : Style.PenaltyBreakComment;
1042 unsigned ColumnsUsed =
1043 Token->getLineLengthAfterSplit(LineIndex, TailOffset, Split.first);
1044 if (ColumnsUsed > getColumnLimit()) {
1045 Penalty +=
1046 Style.PenaltyExcessCharacter * (ColumnsUsed - getColumnLimit());
1047 }
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001048 TailOffset += Split.first + Split.second;
Alexander Kornienko00895102013-06-05 14:09:10 +00001049 RemainingTokenColumns = NewRemainingTokenColumns;
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001050 BreakInserted = true;
Manuel Klimek8092a942013-02-20 10:15:13 +00001051 }
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001052 }
1053
Alexander Kornienkoc36c5c22013-06-19 19:50:11 +00001054 State.Column = RemainingTokenColumns;
1055
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001056 if (BreakInserted) {
Alexander Kornienko22d0e292013-06-17 12:59:44 +00001057 // If we break the token inside a parameter list, we need to break before
1058 // the next parameter on all levels, so that the next parameter is clearly
1059 // visible. Line comments already introduce a break.
1060 if (Current.Type != TT_LineComment) {
1061 for (unsigned i = 0, e = State.Stack.size(); i != e; ++i)
1062 State.Stack[i].BreakBeforeParameter = true;
1063 }
1064
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001065 State.Stack.back().LastSpace = StartColumn;
Manuel Klimek8092a942013-02-20 10:15:13 +00001066 }
Manuel Klimek8092a942013-02-20 10:15:13 +00001067 return Penalty;
1068 }
1069
Daniel Jasperceb99ab2013-01-09 10:16:05 +00001070 unsigned getColumnLimit() {
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001071 // In preprocessor directives reserve two chars for trailing " \"
1072 return Style.ColumnLimit - (Line.InPPDirective ? 2 : 0);
Daniel Jasperceb99ab2013-01-09 10:16:05 +00001073 }
1074
Manuel Klimek32a2fd72013-02-13 10:46:36 +00001075 /// \brief An edge in the solution space from \c Previous->State to \c State,
1076 /// inserting a newline dependent on the \c NewLine.
1077 struct StateNode {
1078 StateNode(const LineState &State, bool NewLine, StateNode *Previous)
Daniel Jasperf11a7052013-02-21 21:33:55 +00001079 : State(State), NewLine(NewLine), Previous(Previous) {}
Manuel Klimek32a2fd72013-02-13 10:46:36 +00001080 LineState State;
1081 bool NewLine;
1082 StateNode *Previous;
1083 };
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001084
Manuel Klimek32a2fd72013-02-13 10:46:36 +00001085 /// \brief A pair of <penalty, count> that is used to prioritize the BFS on.
1086 ///
1087 /// In case of equal penalties, we want to prefer states that were inserted
1088 /// first. During state generation we make sure that we insert states first
1089 /// that break the line as late as possible.
1090 typedef std::pair<unsigned, unsigned> OrderedPenalty;
1091
1092 /// \brief An item in the prioritized BFS search queue. The \c StateNode's
1093 /// \c State has the given \c OrderedPenalty.
1094 typedef std::pair<OrderedPenalty, StateNode *> QueueItem;
1095
1096 /// \brief The BFS queue type.
1097 typedef std::priority_queue<QueueItem, std::vector<QueueItem>,
1098 std::greater<QueueItem> > QueueType;
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001099
1100 /// \brief Analyze the entire solution space starting from \p InitialState.
Daniel Jasperbac016b2012-12-03 18:12:45 +00001101 ///
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001102 /// This implements a variant of Dijkstra's algorithm on the graph that spans
1103 /// the solution space (\c LineStates are the nodes). The algorithm tries to
1104 /// find the shortest path (the one with lowest penalty) from \p InitialState
1105 /// to a state where all tokens are placed.
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001106 void analyzeSolutionSpace(LineState &InitialState) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +00001107 std::set<LineState> Seen;
1108
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001109 // Insert start element into queue.
Daniel Jasperfc759082013-02-14 14:26:07 +00001110 StateNode *Node =
Manuel Klimek32a2fd72013-02-13 10:46:36 +00001111 new (Allocator.Allocate()) StateNode(InitialState, false, NULL);
1112 Queue.push(QueueItem(OrderedPenalty(0, Count), Node));
1113 ++Count;
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001114
1115 // While not empty, take first element and follow edges.
1116 while (!Queue.empty()) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +00001117 unsigned Penalty = Queue.top().first.first;
Daniel Jasperfc759082013-02-14 14:26:07 +00001118 StateNode *Node = Queue.top().second;
Manuel Klimek32a2fd72013-02-13 10:46:36 +00001119 if (Node->State.NextToken == NULL) {
Alexander Kornienkodd256312013-05-10 11:56:10 +00001120 DEBUG(llvm::dbgs() << "\n---\nPenalty for line: " << Penalty << "\n");
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001121 break;
Daniel Jasper01786732013-02-04 07:21:18 +00001122 }
Manuel Klimek32a2fd72013-02-13 10:46:36 +00001123 Queue.pop();
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001124
Daniel Jasper54b4e442013-05-22 05:27:42 +00001125 // Cut off the analysis of certain solutions if the analysis gets too
1126 // complex. See description of IgnoreStackForComparison.
1127 if (Count > 10000)
1128 Node->State.IgnoreStackForComparison = true;
1129
Manuel Klimek32a2fd72013-02-13 10:46:36 +00001130 if (!Seen.insert(Node->State).second)
1131 // State already examined with lower penalty.
1132 continue;
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001133
Nico Weber27268772013-06-26 00:30:14 +00001134 addNextStateToQueue(Penalty, Node, /*NewLine=*/false);
1135 addNextStateToQueue(Penalty, Node, /*NewLine=*/true);
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001136 }
1137
1138 if (Queue.empty())
1139 // We were unable to find a solution, do nothing.
1140 // FIXME: Add diagnostic?
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001141 return;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001142
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001143 // Reconstruct the solution.
Manuel Klimek32a2fd72013-02-13 10:46:36 +00001144 reconstructPath(InitialState, Queue.top().second);
Alexander Kornienkodd256312013-05-10 11:56:10 +00001145 DEBUG(llvm::dbgs() << "Total number of analyzed states: " << Count << "\n");
1146 DEBUG(llvm::dbgs() << "---\n");
Manuel Klimek32a2fd72013-02-13 10:46:36 +00001147 }
1148
1149 void reconstructPath(LineState &State, StateNode *Current) {
Manuel Klimek9c333b92013-05-29 15:10:11 +00001150 std::deque<StateNode *> Path;
1151 // We do not need a break before the initial token.
1152 while (Current->Previous) {
1153 Path.push_front(Current);
1154 Current = Current->Previous;
1155 }
1156 for (std::deque<StateNode *>::iterator I = Path.begin(), E = Path.end();
1157 I != E; ++I) {
1158 DEBUG({
1159 if ((*I)->NewLine) {
1160 llvm::dbgs() << "Penalty for splitting before "
1161 << (*I)->Previous->State.NextToken->Tok.getName() << ": "
1162 << (*I)->Previous->State.NextToken->SplitPenalty << "\n";
1163 }
1164 });
1165 addTokenToState((*I)->NewLine, false, State);
1166 }
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001167 }
1168
Manuel Klimek62a48fb2013-02-13 10:54:19 +00001169 /// \brief Add the following state to the analysis queue \c Queue.
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001170 ///
Manuel Klimek62a48fb2013-02-13 10:54:19 +00001171 /// Assume the current state is \p PreviousNode and has been reached with a
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001172 /// penalty of \p Penalty. Insert a line break if \p NewLine is \c true.
Manuel Klimek62a48fb2013-02-13 10:54:19 +00001173 void addNextStateToQueue(unsigned Penalty, StateNode *PreviousNode,
1174 bool NewLine) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +00001175 if (NewLine && !canBreak(PreviousNode->State))
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001176 return;
Manuel Klimek32a2fd72013-02-13 10:46:36 +00001177 if (!NewLine && mustBreak(PreviousNode->State))
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001178 return;
Daniel Jasper88cc5622013-07-08 14:25:23 +00001179 if (NewLine) {
1180 if (!PreviousNode->State.Stack.back().ContainsLineBreak)
1181 Penalty += 15;
Manuel Klimek32a2fd72013-02-13 10:46:36 +00001182 Penalty += PreviousNode->State.NextToken->SplitPenalty;
Daniel Jasper88cc5622013-07-08 14:25:23 +00001183 }
Manuel Klimek32a2fd72013-02-13 10:46:36 +00001184
1185 StateNode *Node = new (Allocator.Allocate())
1186 StateNode(PreviousNode->State, NewLine, PreviousNode);
Manuel Klimek8092a942013-02-20 10:15:13 +00001187 Penalty += addTokenToState(NewLine, true, Node->State);
Manuel Klimek32a2fd72013-02-13 10:46:36 +00001188 if (Node->State.Column > getColumnLimit()) {
1189 unsigned ExcessCharacters = Node->State.Column - getColumnLimit();
Daniel Jasper01786732013-02-04 07:21:18 +00001190 Penalty += Style.PenaltyExcessCharacter * ExcessCharacters;
Daniel Jasperceb99ab2013-01-09 10:16:05 +00001191 }
Manuel Klimek32a2fd72013-02-13 10:46:36 +00001192
1193 Queue.push(QueueItem(OrderedPenalty(Penalty, Count), Node));
1194 ++Count;
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001195 }
Daniel Jasperbac016b2012-12-03 18:12:45 +00001196
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001197 /// \brief Returns \c true, if a line break after \p State is allowed.
1198 bool canBreak(const LineState &State) {
Manuel Klimekb3987012013-05-29 14:47:47 +00001199 const FormatToken &Current = *State.NextToken;
1200 const FormatToken &Previous = *Current.Previous;
1201 assert(&Previous == Current.Previous);
Daniel Jasper399914b2013-05-17 09:35:01 +00001202 if (!Current.CanBreakBefore &&
1203 !(Current.is(tok::r_brace) &&
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001204 State.Stack.back().BreakBeforeClosingBrace))
1205 return false;
Daniel Jasper399914b2013-05-17 09:35:01 +00001206 // The opening "{" of a braced list has to be on the same line as the first
1207 // element if it is nested in another braced init list or function call.
1208 if (!Current.MustBreakBefore && Previous.is(tok::l_brace) &&
Manuel Klimekb3987012013-05-29 14:47:47 +00001209 Previous.Previous &&
1210 Previous.Previous->isOneOf(tok::l_brace, tok::l_paren, tok::comma))
Daniel Jasper399914b2013-05-17 09:35:01 +00001211 return false;
Daniel Jasper259a0382013-05-27 11:50:16 +00001212 // This prevents breaks like:
1213 // ...
1214 // SomeParameter, OtherParameter).DoSomething(
1215 // ...
1216 // As they hide "DoSomething" and are generally bad for readability.
Daniel Jasper07ca5472013-07-05 09:14:35 +00001217 if (Previous.opensScope() &&
1218 State.LowestLevelOnLine < State.StartOfLineLevel)
Daniel Jasper259a0382013-05-27 11:50:16 +00001219 return false;
Daniel Jasper001bf4e2013-04-22 07:59:53 +00001220 return !State.Stack.back().NoLineBreak;
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001221 }
Daniel Jasperbac016b2012-12-03 18:12:45 +00001222
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001223 /// \brief Returns \c true, if a line break after \p State is mandatory.
1224 bool mustBreak(const LineState &State) {
Manuel Klimekb3987012013-05-29 14:47:47 +00001225 const FormatToken &Current = *State.NextToken;
1226 const FormatToken &Previous = *Current.Previous;
Daniel Jasper11e13802013-05-08 14:12:04 +00001227 if (Current.MustBreakBefore || Current.Type == TT_InlineASMColon)
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001228 return true;
Daniel Jasperb5dc3f42013-07-16 18:22:10 +00001229 if (!Style.Cpp11BracedListStyle && Current.is(tok::r_brace) &&
1230 State.Stack.back().BreakBeforeClosingBrace)
1231 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001232 if (Previous.is(tok::semi) && State.LineContainsContinuedForLoopSection)
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001233 return true;
Daniel Jaspere8b10d32013-07-26 16:56:36 +00001234 if (Style.BreakConstructorInitializersBeforeComma) {
1235 if (Previous.Type == TT_CtorInitializerComma)
1236 return false;
1237 if (Current.Type == TT_CtorInitializerComma)
1238 return true;
1239 }
Daniel Jasper11e13802013-05-08 14:12:04 +00001240 if ((Previous.isOneOf(tok::comma, tok::semi) || Current.is(tok::question) ||
Daniel Jasperab3ce592013-08-01 22:05:00 +00001241 (Current.Type == TT_ConditionalExpr &&
1242 !(Current.is(tok::colon) && Previous.is(tok::question)))) &&
Daniel Jasperce3d1a62013-02-08 08:22:00 +00001243 State.Stack.back().BreakBeforeParameter &&
Daniel Jasper11e13802013-05-08 14:12:04 +00001244 !Current.isTrailingComment() &&
1245 !Current.isOneOf(tok::r_paren, tok::r_brace))
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001246 return true;
Daniel Jasper215c57f2013-07-17 15:38:19 +00001247 if (Style.AlwaysBreakBeforeMultilineStrings &&
1248 State.Column > State.Stack.back().Indent &&
1249 Current.is(tok::string_literal) && Previous.isNot(tok::lessless) &&
1250 Previous.Type != TT_InlineASMColon &&
1251 ((Current.getNextNonComment() &&
1252 Current.getNextNonComment()->is(tok::string_literal)) ||
1253 (Current.TokenText.find("\\\n") != StringRef::npos)))
1254 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001255
Daniel Jaspere8b10d32013-07-26 16:56:36 +00001256 if (!Style.BreakBeforeBinaryOperators) {
1257 // If we need to break somewhere inside the LHS of a binary expression, we
1258 // should also break after the operator. Otherwise, the formatting would
1259 // hide the operator precedence, e.g. in:
1260 // if (aaaaaaaaaaaaaa ==
1261 // bbbbbbbbbbbbbb && c) {..
1262 // For comparisons, we only apply this rule, if the LHS is a binary
1263 // expression itself as otherwise, the line breaks seem superfluous.
1264 // We need special cases for ">>" which we have split into two ">" while
1265 // lexing in order to make template parsing easier.
1266 //
1267 // FIXME: We'll need something similar for styles that break before binary
1268 // operators.
1269 bool IsComparison = (Previous.getPrecedence() == prec::Relational ||
1270 Previous.getPrecedence() == prec::Equality) &&
1271 Previous.Previous && Previous.Previous->Type !=
1272 TT_BinaryOperator; // For >>.
1273 bool LHSIsBinaryExpr =
1274 Previous.Previous && Previous.Previous->FakeRParens > 0;
1275 if (Previous.Type == TT_BinaryOperator &&
1276 (!IsComparison || LHSIsBinaryExpr) &&
1277 Current.Type != TT_BinaryOperator && // For >>.
1278 !Current.isTrailingComment() &&
1279 !Previous.isOneOf(tok::lessless, tok::question) &&
1280 Previous.getPrecedence() != prec::Assignment &&
1281 State.Stack.back().BreakBeforeParameter)
1282 return true;
1283 }
Daniel Jasper11e13802013-05-08 14:12:04 +00001284
Daniel Jaspera0740f52013-07-12 15:14:05 +00001285 // Same as above, but for the first "<<" operator.
1286 if (Current.is(tok::lessless) && State.Stack.back().BreakBeforeParameter &&
1287 State.Stack.back().FirstLessLess == 0)
1288 return true;
1289
Daniel Jasper11e13802013-05-08 14:12:04 +00001290 // FIXME: Comparing LongestObjCSelectorName to 0 is a hacky way of finding
1291 // out whether it is the first parameter. Clean this up.
1292 if (Current.Type == TT_ObjCSelectorName &&
1293 Current.LongestObjCSelectorName == 0 &&
1294 State.Stack.back().BreakBeforeParameter)
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001295 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001296 if ((Current.Type == TT_CtorInitializerColon ||
1297 (Previous.ClosesTemplateDeclaration && State.ParenLevel == 0)))
Daniel Jasper923ebef2013-03-14 13:45:21 +00001298 return true;
Daniel Jasper11e13802013-05-08 14:12:04 +00001299
Daniel Jasper6561f6a2013-07-09 07:43:55 +00001300 if ((Current.Type == TT_StartOfName || Current.is(tok::kw_operator)) &&
1301 Line.MightBeFunctionDecl && State.Stack.back().BreakBeforeParameter &&
1302 State.ParenLevel == 0)
Daniel Jasper33f4b902013-05-15 09:35:08 +00001303 return true;
Daniel Jasper68ef0df2013-02-01 11:00:45 +00001304 return false;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001305 }
1306
Daniel Jasper3af59ce2013-03-15 14:57:30 +00001307 // Returns the total number of columns required for the remaining tokens.
1308 unsigned getRemainingLength(const LineState &State) {
Manuel Klimekb3987012013-05-29 14:47:47 +00001309 if (State.NextToken && State.NextToken->Previous)
1310 return Line.Last->TotalLength - State.NextToken->Previous->TotalLength;
Daniel Jasper3af59ce2013-03-15 14:57:30 +00001311 return 0;
1312 }
1313
Daniel Jasperbac016b2012-12-03 18:12:45 +00001314 FormatStyle Style;
1315 SourceManager &SourceMgr;
Daniel Jasper995e8202013-01-14 13:08:07 +00001316 const AnnotatedLine &Line;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001317 const unsigned FirstIndent;
Manuel Klimekb3987012013-05-29 14:47:47 +00001318 const FormatToken *RootToken;
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001319 WhitespaceManager &Whitespaces;
Manuel Klimek62a48fb2013-02-13 10:54:19 +00001320
1321 llvm::SpecificBumpPtrAllocator<StateNode> Allocator;
1322 QueueType Queue;
1323 // Increasing count of \c StateNode items we have created. This is used
1324 // to create a deterministic order independent of the container.
1325 unsigned Count;
Alexander Kornienko00895102013-06-05 14:09:10 +00001326 encoding::Encoding Encoding;
Daniel Jasperc7bd68f2013-07-10 14:02:49 +00001327 bool BinPackInconclusiveFunctions;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001328};
1329
Manuel Klimek96e888b2013-05-28 11:55:06 +00001330class FormatTokenLexer {
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001331public:
Alexander Kornienko00895102013-06-05 14:09:10 +00001332 FormatTokenLexer(Lexer &Lex, SourceManager &SourceMgr,
1333 encoding::Encoding Encoding)
Manuel Klimek96e888b2013-05-28 11:55:06 +00001334 : FormatTok(NULL), GreaterStashed(false), TrailingWhitespace(0), Lex(Lex),
Daniel Jasperb7000ca2013-08-01 17:58:23 +00001335 SourceMgr(SourceMgr), IdentTable(getFormattingLangOpts()),
Alexander Kornienko00895102013-06-05 14:09:10 +00001336 Encoding(Encoding) {
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001337 Lex.SetKeepWhitespaceMode(true);
1338 }
1339
Manuel Klimek96e888b2013-05-28 11:55:06 +00001340 ArrayRef<FormatToken *> lex() {
1341 assert(Tokens.empty());
1342 do {
1343 Tokens.push_back(getNextToken());
1344 } while (Tokens.back()->Tok.isNot(tok::eof));
1345 return Tokens;
1346 }
1347
1348 IdentifierTable &getIdentTable() { return IdentTable; }
1349
1350private:
1351 FormatToken *getNextToken() {
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001352 if (GreaterStashed) {
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +00001353 // Create a synthesized second '>' token.
1354 Token Greater = FormatTok->Tok;
1355 FormatTok = new (Allocator.Allocate()) FormatToken;
1356 FormatTok->Tok = Greater;
Manuel Klimekad3094b2013-05-23 10:56:37 +00001357 SourceLocation GreaterLocation =
Manuel Klimek96e888b2013-05-28 11:55:06 +00001358 FormatTok->Tok.getLocation().getLocWithOffset(1);
1359 FormatTok->WhitespaceRange =
1360 SourceRange(GreaterLocation, GreaterLocation);
Alexander Kornienko54e6c9d2013-06-07 17:45:07 +00001361 FormatTok->TokenText = ">";
Alexander Kornienko00895102013-06-05 14:09:10 +00001362 FormatTok->CodePointCount = 1;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001363 GreaterStashed = false;
1364 return FormatTok;
1365 }
1366
Manuel Klimek96e888b2013-05-28 11:55:06 +00001367 FormatTok = new (Allocator.Allocate()) FormatToken;
Daniel Jasper561211d2013-07-16 20:28:33 +00001368 readRawToken(*FormatTok);
Manuel Klimekde008c02013-05-27 15:23:34 +00001369 SourceLocation WhitespaceStart =
Manuel Klimek96e888b2013-05-28 11:55:06 +00001370 FormatTok->Tok.getLocation().getLocWithOffset(-TrailingWhitespace);
Manuel Klimekad3094b2013-05-23 10:56:37 +00001371 if (SourceMgr.getFileOffset(WhitespaceStart) == 0)
Manuel Klimek96e888b2013-05-28 11:55:06 +00001372 FormatTok->IsFirst = true;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001373
1374 // Consume and record whitespace until we find a significant token.
Manuel Klimekde008c02013-05-27 15:23:34 +00001375 unsigned WhitespaceLength = TrailingWhitespace;
Manuel Klimek96e888b2013-05-28 11:55:06 +00001376 while (FormatTok->Tok.is(tok::unknown)) {
Daniel Jasper561211d2013-07-16 20:28:33 +00001377 unsigned Newlines = FormatTok->TokenText.count('\n');
Daniel Jasper1eee6c42013-03-04 13:43:19 +00001378 if (Newlines > 0)
Daniel Jasper561211d2013-07-16 20:28:33 +00001379 FormatTok->LastNewlineOffset =
1380 WhitespaceLength + FormatTok->TokenText.rfind('\n') + 1;
Manuel Klimek96e888b2013-05-28 11:55:06 +00001381 FormatTok->NewlinesBefore += Newlines;
Daniel Jasper561211d2013-07-16 20:28:33 +00001382 unsigned EscapedNewlines = FormatTok->TokenText.count("\\\n");
Manuel Klimek96e888b2013-05-28 11:55:06 +00001383 FormatTok->HasUnescapedNewline |= EscapedNewlines != Newlines;
1384 WhitespaceLength += FormatTok->Tok.getLength();
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001385
Daniel Jasper561211d2013-07-16 20:28:33 +00001386 readRawToken(*FormatTok);
Manuel Klimekd4397b92013-01-04 23:34:14 +00001387 }
Manuel Klimek95419382013-01-07 07:56:50 +00001388
Manuel Klimekd4397b92013-01-04 23:34:14 +00001389 // In case the token starts with escaped newlines, we want to
1390 // take them into account as whitespace - this pattern is quite frequent
1391 // in macro definitions.
1392 // FIXME: What do we want to do with other escaped spaces, and escaped
1393 // spaces or newlines in the middle of tokens?
1394 // FIXME: Add a more explicit test.
Daniel Jasper561211d2013-07-16 20:28:33 +00001395 while (FormatTok->TokenText.size() > 1 && FormatTok->TokenText[0] == '\\' &&
1396 FormatTok->TokenText[1] == '\n') {
Manuel Klimek96e888b2013-05-28 11:55:06 +00001397 // FIXME: ++FormatTok->NewlinesBefore is missing...
Manuel Klimekad3094b2013-05-23 10:56:37 +00001398 WhitespaceLength += 2;
Daniel Jasper561211d2013-07-16 20:28:33 +00001399 FormatTok->TokenText = FormatTok->TokenText.substr(2);
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001400 }
1401
Alexander Kornienko54e6c9d2013-06-07 17:45:07 +00001402 TrailingWhitespace = 0;
1403 if (FormatTok->Tok.is(tok::comment)) {
Daniel Jasper561211d2013-07-16 20:28:33 +00001404 StringRef UntrimmedText = FormatTok->TokenText;
1405 FormatTok->TokenText = FormatTok->TokenText.rtrim();
1406 TrailingWhitespace = UntrimmedText.size() - FormatTok->TokenText.size();
Alexander Kornienko54e6c9d2013-06-07 17:45:07 +00001407 } else if (FormatTok->Tok.is(tok::raw_identifier)) {
Daniel Jasper561211d2013-07-16 20:28:33 +00001408 IdentifierInfo &Info = IdentTable.get(FormatTok->TokenText);
Manuel Klimek96e888b2013-05-28 11:55:06 +00001409 FormatTok->Tok.setIdentifierInfo(&Info);
1410 FormatTok->Tok.setKind(Info.getTokenID());
Alexander Kornienko54e6c9d2013-06-07 17:45:07 +00001411 } else if (FormatTok->Tok.is(tok::greatergreater)) {
Manuel Klimek96e888b2013-05-28 11:55:06 +00001412 FormatTok->Tok.setKind(tok::greater);
Daniel Jasper561211d2013-07-16 20:28:33 +00001413 FormatTok->TokenText = FormatTok->TokenText.substr(0, 1);
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001414 GreaterStashed = true;
1415 }
1416
Alexander Kornienko54e6c9d2013-06-07 17:45:07 +00001417 // Now FormatTok is the next non-whitespace token.
Daniel Jasper561211d2013-07-16 20:28:33 +00001418 FormatTok->CodePointCount =
1419 encoding::getCodePointCount(FormatTok->TokenText, Encoding);
Alexander Kornienko00895102013-06-05 14:09:10 +00001420
Manuel Klimek96e888b2013-05-28 11:55:06 +00001421 FormatTok->WhitespaceRange = SourceRange(
Manuel Klimekad3094b2013-05-23 10:56:37 +00001422 WhitespaceStart, WhitespaceStart.getLocWithOffset(WhitespaceLength));
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001423 return FormatTok;
1424 }
1425
Manuel Klimek96e888b2013-05-28 11:55:06 +00001426 FormatToken *FormatTok;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001427 bool GreaterStashed;
Manuel Klimekde008c02013-05-27 15:23:34 +00001428 unsigned TrailingWhitespace;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001429 Lexer &Lex;
1430 SourceManager &SourceMgr;
1431 IdentifierTable IdentTable;
Alexander Kornienko00895102013-06-05 14:09:10 +00001432 encoding::Encoding Encoding;
Manuel Klimek96e888b2013-05-28 11:55:06 +00001433 llvm::SpecificBumpPtrAllocator<FormatToken> Allocator;
1434 SmallVector<FormatToken *, 16> Tokens;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001435
Daniel Jasper561211d2013-07-16 20:28:33 +00001436 void readRawToken(FormatToken &Tok) {
1437 Lex.LexFromRawLexer(Tok.Tok);
1438 Tok.TokenText = StringRef(SourceMgr.getCharacterData(Tok.Tok.getLocation()),
1439 Tok.Tok.getLength());
1440
1441 // For formatting, treat unterminated string literals like normal string
1442 // literals.
1443 if (Tok.is(tok::unknown) && !Tok.TokenText.empty() &&
1444 Tok.TokenText[0] == '"') {
1445 Tok.Tok.setKind(tok::string_literal);
1446 Tok.IsUnterminatedLiteral = true;
1447 }
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001448 }
1449};
1450
Daniel Jasperbac016b2012-12-03 18:12:45 +00001451class Formatter : public UnwrappedLineConsumer {
1452public:
Daniel Jaspercaf42a32013-05-15 08:14:19 +00001453 Formatter(const FormatStyle &Style, Lexer &Lex, SourceManager &SourceMgr,
Daniel Jasperbac016b2012-12-03 18:12:45 +00001454 const std::vector<CharSourceRange> &Ranges)
Daniel Jaspercaf42a32013-05-15 08:14:19 +00001455 : Style(Style), Lex(Lex), SourceMgr(SourceMgr),
Alexander Kornienko00895102013-06-05 14:09:10 +00001456 Whitespaces(SourceMgr, Style), Ranges(Ranges),
1457 Encoding(encoding::detectEncoding(Lex.getBuffer())) {
Daniel Jasper9637dda2013-07-15 14:33:14 +00001458 DEBUG(llvm::dbgs() << "File encoding: "
1459 << (Encoding == encoding::Encoding_UTF8 ? "UTF8"
1460 : "unknown")
1461 << "\n");
Alexander Kornienko00895102013-06-05 14:09:10 +00001462 }
Daniel Jasperbac016b2012-12-03 18:12:45 +00001463
Daniel Jasper7d19bc22013-01-11 14:23:32 +00001464 virtual ~Formatter() {}
Daniel Jasperaccb0b02012-12-04 21:05:31 +00001465
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001466 tooling::Replacements format() {
Alexander Kornienko00895102013-06-05 14:09:10 +00001467 FormatTokenLexer Tokens(Lex, SourceMgr, Encoding);
Manuel Klimek96e888b2013-05-28 11:55:06 +00001468
1469 UnwrappedLineParser Parser(Style, Tokens.lex(), *this);
Manuel Klimek67d080d2013-04-12 14:13:36 +00001470 bool StructuralError = Parser.parse();
Alexander Kornienko00895102013-06-05 14:09:10 +00001471 TokenAnnotator Annotator(Style, Tokens.getIdentTable().get("in"));
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001472 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
1473 Annotator.annotate(AnnotatedLines[i]);
1474 }
1475 deriveLocalStyle();
1476 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
1477 Annotator.calculateFormattingInformation(AnnotatedLines[i]);
1478 }
Daniel Jasper5999f762013-04-09 17:46:55 +00001479
1480 // Adapt level to the next line if this is a comment.
1481 // FIXME: Can/should this be done in the UnwrappedLineParser?
Alexander Kornienko0bdc6432013-07-04 14:47:51 +00001482 const AnnotatedLine *NextNonCommentLine = NULL;
Daniel Jasper5999f762013-04-09 17:46:55 +00001483 for (unsigned i = AnnotatedLines.size() - 1; i > 0; --i) {
Alexander Kornienko0bdc6432013-07-04 14:47:51 +00001484 if (NextNonCommentLine && AnnotatedLines[i].First->is(tok::comment) &&
Manuel Klimekb3987012013-05-29 14:47:47 +00001485 !AnnotatedLines[i].First->Next)
Alexander Kornienko0bdc6432013-07-04 14:47:51 +00001486 AnnotatedLines[i].Level = NextNonCommentLine->Level;
Daniel Jasper5999f762013-04-09 17:46:55 +00001487 else
Daniel Jasper2a409b62013-07-08 14:34:09 +00001488 NextNonCommentLine = AnnotatedLines[i].First->isNot(tok::r_brace)
1489 ? &AnnotatedLines[i]
1490 : NULL;
Daniel Jasper5999f762013-04-09 17:46:55 +00001491 }
1492
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001493 std::vector<int> IndentForLevel;
1494 bool PreviousLineWasTouched = false;
Manuel Klimekb3987012013-05-29 14:47:47 +00001495 const FormatToken *PreviousLineLastToken = 0;
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001496 bool FormatPPDirective = false;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001497 for (std::vector<AnnotatedLine>::iterator I = AnnotatedLines.begin(),
1498 E = AnnotatedLines.end();
1499 I != E; ++I) {
1500 const AnnotatedLine &TheLine = *I;
Manuel Klimekb3987012013-05-29 14:47:47 +00001501 const FormatToken *FirstTok = TheLine.First;
1502 int Offset = getIndentOffset(*TheLine.First);
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001503
1504 // Check whether this line is part of a formatted preprocessor directive.
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +00001505 if (FirstTok->HasUnescapedNewline)
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001506 FormatPPDirective = false;
1507 if (!FormatPPDirective && TheLine.InPPDirective &&
1508 (touchesLine(TheLine) || touchesPPDirective(I + 1, E)))
1509 FormatPPDirective = true;
1510
Daniel Jasper1fb8d882013-05-14 09:30:02 +00001511 // Determine indent and try to merge multiple unwrapped lines.
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001512 while (IndentForLevel.size() <= TheLine.Level)
1513 IndentForLevel.push_back(-1);
1514 IndentForLevel.resize(TheLine.Level + 1);
Daniel Jasper1fb8d882013-05-14 09:30:02 +00001515 unsigned Indent = getIndent(IndentForLevel, TheLine.Level);
1516 if (static_cast<int>(Indent) + Offset >= 0)
1517 Indent += Offset;
1518 tryFitMultipleLinesInOne(Indent, I, E);
1519
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +00001520 bool WasMoved = PreviousLineWasTouched && FirstTok->NewlinesBefore == 0;
Manuel Klimekb3987012013-05-29 14:47:47 +00001521 if (TheLine.First->is(tok::eof)) {
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001522 if (PreviousLineWasTouched) {
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +00001523 unsigned NewLines = std::min(FirstTok->NewlinesBefore, 1u);
Manuel Klimekb3987012013-05-29 14:47:47 +00001524 Whitespaces.replaceWhitespace(*TheLine.First, NewLines, /*Indent*/ 0,
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001525 /*TargetColumn*/ 0);
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001526 }
1527 } else if (TheLine.Type != LT_Invalid &&
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001528 (WasMoved || FormatPPDirective || touchesLine(TheLine))) {
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001529 unsigned LevelIndent = getIndent(IndentForLevel, TheLine.Level);
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +00001530 if (FirstTok->WhitespaceRange.isValid() &&
Manuel Klimek67d080d2013-04-12 14:13:36 +00001531 // Insert a break even if there is a structural error in case where
1532 // we break apart a line consisting of multiple unwrapped lines.
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +00001533 (FirstTok->NewlinesBefore == 0 || !StructuralError)) {
Manuel Klimekb3987012013-05-29 14:47:47 +00001534 formatFirstToken(*TheLine.First, PreviousLineLastToken, Indent,
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001535 TheLine.InPPDirective);
Manuel Klimek67d080d2013-04-12 14:13:36 +00001536 } else {
1537 Indent = LevelIndent =
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +00001538 SourceMgr.getSpellingColumnNumber(FirstTok->Tok.getLocation()) -
1539 1;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001540 }
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001541 UnwrappedLineFormatter Formatter(Style, SourceMgr, TheLine, Indent,
Daniel Jasperc7bd68f2013-07-10 14:02:49 +00001542 TheLine.First, Whitespaces, Encoding,
1543 BinPackInconclusiveFunctions);
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001544 Formatter.format(I + 1 != E ? &*(I + 1) : NULL);
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001545 IndentForLevel[TheLine.Level] = LevelIndent;
1546 PreviousLineWasTouched = true;
1547 } else {
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001548 // Format the first token if necessary, and notify the WhitespaceManager
1549 // about the unchanged whitespace.
Manuel Klimekb3987012013-05-29 14:47:47 +00001550 for (const FormatToken *Tok = TheLine.First; Tok != NULL;
1551 Tok = Tok->Next) {
1552 if (Tok == TheLine.First &&
1553 (Tok->NewlinesBefore > 0 || Tok->IsFirst)) {
1554 unsigned LevelIndent =
1555 SourceMgr.getSpellingColumnNumber(Tok->Tok.getLocation()) - 1;
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001556 // Remove trailing whitespace of the previous line if it was
1557 // touched.
1558 if (PreviousLineWasTouched || touchesEmptyLineBefore(TheLine)) {
1559 formatFirstToken(*Tok, PreviousLineLastToken, LevelIndent,
1560 TheLine.InPPDirective);
1561 } else {
Manuel Klimekb3987012013-05-29 14:47:47 +00001562 Whitespaces.addUntouchableToken(*Tok, TheLine.InPPDirective);
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001563 }
Daniel Jasper1fb8d882013-05-14 09:30:02 +00001564
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001565 if (static_cast<int>(LevelIndent) - Offset >= 0)
1566 LevelIndent -= Offset;
1567 if (Tok->isNot(tok::comment))
1568 IndentForLevel[TheLine.Level] = LevelIndent;
1569 } else {
Manuel Klimekb3987012013-05-29 14:47:47 +00001570 Whitespaces.addUntouchableToken(*Tok, TheLine.InPPDirective);
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001571 }
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001572 }
1573 // If we did not reformat this unwrapped line, the column at the end of
1574 // the last token is unchanged - thus, we can calculate the end of the
1575 // last token.
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001576 PreviousLineWasTouched = false;
1577 }
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001578 PreviousLineLastToken = I->Last;
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001579 }
1580 return Whitespaces.generateReplacements();
1581 }
1582
1583private:
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001584 void deriveLocalStyle() {
1585 unsigned CountBoundToVariable = 0;
1586 unsigned CountBoundToType = 0;
1587 bool HasCpp03IncompatibleFormat = false;
Daniel Jasperc7bd68f2013-07-10 14:02:49 +00001588 bool HasBinPackedFunction = false;
1589 bool HasOnePerLineFunction = false;
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001590 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
Manuel Klimekb3987012013-05-29 14:47:47 +00001591 if (!AnnotatedLines[i].First->Next)
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001592 continue;
Manuel Klimekb3987012013-05-29 14:47:47 +00001593 FormatToken *Tok = AnnotatedLines[i].First->Next;
1594 while (Tok->Next) {
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001595 if (Tok->Type == TT_PointerOrReference) {
Manuel Klimekb3987012013-05-29 14:47:47 +00001596 bool SpacesBefore =
1597 Tok->WhitespaceRange.getBegin() != Tok->WhitespaceRange.getEnd();
1598 bool SpacesAfter = Tok->Next->WhitespaceRange.getBegin() !=
1599 Tok->Next->WhitespaceRange.getEnd();
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001600 if (SpacesBefore && !SpacesAfter)
1601 ++CountBoundToVariable;
1602 else if (!SpacesBefore && SpacesAfter)
1603 ++CountBoundToType;
1604 }
1605
Daniel Jasper29f123b2013-02-08 15:28:42 +00001606 if (Tok->Type == TT_TemplateCloser &&
Manuel Klimekb3987012013-05-29 14:47:47 +00001607 Tok->Previous->Type == TT_TemplateCloser &&
1608 Tok->WhitespaceRange.getBegin() == Tok->WhitespaceRange.getEnd())
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001609 HasCpp03IncompatibleFormat = true;
Daniel Jasperc7bd68f2013-07-10 14:02:49 +00001610
1611 if (Tok->PackingKind == PPK_BinPacked)
1612 HasBinPackedFunction = true;
1613 if (Tok->PackingKind == PPK_OnePerLine)
1614 HasOnePerLineFunction = true;
1615
Manuel Klimekb3987012013-05-29 14:47:47 +00001616 Tok = Tok->Next;
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001617 }
1618 }
1619 if (Style.DerivePointerBinding) {
1620 if (CountBoundToType > CountBoundToVariable)
1621 Style.PointerBindsToType = true;
1622 else if (CountBoundToType < CountBoundToVariable)
1623 Style.PointerBindsToType = false;
1624 }
1625 if (Style.Standard == FormatStyle::LS_Auto) {
1626 Style.Standard = HasCpp03IncompatibleFormat ? FormatStyle::LS_Cpp11
1627 : FormatStyle::LS_Cpp03;
1628 }
Daniel Jasperc7bd68f2013-07-10 14:02:49 +00001629 BinPackInconclusiveFunctions =
1630 HasBinPackedFunction || !HasOnePerLineFunction;
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001631 }
1632
Manuel Klimek547d5db2013-02-08 17:38:27 +00001633 /// \brief Get the indent of \p Level from \p IndentForLevel.
1634 ///
1635 /// \p IndentForLevel must contain the indent for the level \c l
1636 /// at \p IndentForLevel[l], or a value < 0 if the indent for
1637 /// that level is unknown.
Daniel Jasperfc759082013-02-14 14:26:07 +00001638 unsigned getIndent(const std::vector<int> IndentForLevel, unsigned Level) {
Manuel Klimek547d5db2013-02-08 17:38:27 +00001639 if (IndentForLevel[Level] != -1)
1640 return IndentForLevel[Level];
Manuel Klimek52635ff2013-02-08 19:53:32 +00001641 if (Level == 0)
1642 return 0;
Manuel Klimek07a64ec2013-05-13 08:42:42 +00001643 return getIndent(IndentForLevel, Level - 1) + Style.IndentWidth;
Manuel Klimek547d5db2013-02-08 17:38:27 +00001644 }
1645
1646 /// \brief Get the offset of the line relatively to the level.
1647 ///
1648 /// For example, 'public:' labels in classes are offset by 1 or 2
1649 /// characters to the left from their level.
Manuel Klimekb3987012013-05-29 14:47:47 +00001650 int getIndentOffset(const FormatToken &RootToken) {
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001651 if (RootToken.isAccessSpecifier(false) || RootToken.isObjCAccessSpecifier())
Manuel Klimek547d5db2013-02-08 17:38:27 +00001652 return Style.AccessModifierOffset;
1653 return 0;
1654 }
1655
Manuel Klimek517e8942013-01-11 17:54:10 +00001656 /// \brief Tries to merge lines into one.
1657 ///
1658 /// This will change \c Line and \c AnnotatedLine to contain the merged line,
1659 /// if possible; note that \c I will be incremented when lines are merged.
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001660 void tryFitMultipleLinesInOne(unsigned Indent,
Daniel Jasper995e8202013-01-14 13:08:07 +00001661 std::vector<AnnotatedLine>::iterator &I,
1662 std::vector<AnnotatedLine>::iterator E) {
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001663 // We can never merge stuff if there are trailing line comments.
1664 if (I->Last->Type == TT_LineComment)
1665 return;
1666
Daniel Jaspere05dc6d2013-07-24 13:10:59 +00001667 if (Indent > Style.ColumnLimit)
1668 return;
1669
Daniel Jaspera4d46212013-02-28 11:05:57 +00001670 unsigned Limit = Style.ColumnLimit - Indent;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001671 // If we already exceed the column limit, we set 'Limit' to 0. The different
1672 // tryMerge..() functions can then decide whether to still do merging.
1673 Limit = I->Last->TotalLength > Limit ? 0 : Limit - I->Last->TotalLength;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001674
Daniel Jasper9c8c40e2013-01-21 14:18:28 +00001675 if (I + 1 == E || (I + 1)->Type == LT_Invalid)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001676 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001677
Daniel Jasper5be59ba2013-05-15 14:09:55 +00001678 if (I->Last->is(tok::l_brace)) {
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001679 tryMergeSimpleBlock(I, E, Limit);
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001680 } else if (Style.AllowShortIfStatementsOnASingleLine &&
Manuel Klimekb3987012013-05-29 14:47:47 +00001681 I->First->is(tok::kw_if)) {
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001682 tryMergeSimpleControlStatement(I, E, Limit);
1683 } else if (Style.AllowShortLoopsOnASingleLine &&
Manuel Klimekb3987012013-05-29 14:47:47 +00001684 I->First->isOneOf(tok::kw_for, tok::kw_while)) {
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001685 tryMergeSimpleControlStatement(I, E, Limit);
Manuel Klimekb3987012013-05-29 14:47:47 +00001686 } else if (I->InPPDirective &&
1687 (I->First->HasUnescapedNewline || I->First->IsFirst)) {
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001688 tryMergeSimplePPDirective(I, E, Limit);
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001689 }
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001690 }
1691
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001692 void tryMergeSimplePPDirective(std::vector<AnnotatedLine>::iterator &I,
1693 std::vector<AnnotatedLine>::iterator E,
1694 unsigned Limit) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001695 if (Limit == 0)
1696 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001697 AnnotatedLine &Line = *I;
Manuel Klimekb3987012013-05-29 14:47:47 +00001698 if (!(I + 1)->InPPDirective || (I + 1)->First->HasUnescapedNewline)
Daniel Jasper2b9c10b2013-01-14 15:52:06 +00001699 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001700 if (I + 2 != E && (I + 2)->InPPDirective &&
Manuel Klimekb3987012013-05-29 14:47:47 +00001701 !(I + 2)->First->HasUnescapedNewline)
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001702 return;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001703 if (1 + (I + 1)->Last->TotalLength > Limit)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001704 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001705 join(Line, *(++I));
1706 }
1707
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001708 void tryMergeSimpleControlStatement(std::vector<AnnotatedLine>::iterator &I,
1709 std::vector<AnnotatedLine>::iterator E,
1710 unsigned Limit) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001711 if (Limit == 0)
1712 return;
Manuel Klimekd3a247c2013-08-07 19:20:45 +00001713 if (Style.BreakBeforeBraces == FormatStyle::BS_Allman &&
1714 (I + 1)->First->is(tok::l_brace))
1715 return;
Manuel Klimek4c128122013-01-18 14:46:43 +00001716 if ((I + 1)->InPPDirective != I->InPPDirective ||
Manuel Klimekb3987012013-05-29 14:47:47 +00001717 ((I + 1)->InPPDirective && (I + 1)->First->HasUnescapedNewline))
Manuel Klimek4c128122013-01-18 14:46:43 +00001718 return;
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001719 AnnotatedLine &Line = *I;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001720 if (Line.Last->isNot(tok::r_paren))
1721 return;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001722 if (1 + (I + 1)->Last->TotalLength > Limit)
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001723 return;
Manuel Klimekb3987012013-05-29 14:47:47 +00001724 if ((I + 1)->First->isOneOf(tok::semi, tok::kw_if, tok::kw_for,
1725 tok::kw_while) ||
1726 (I + 1)->First->Type == TT_LineComment)
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001727 return;
1728 // Only inline simple if's (no nested if or else).
Manuel Klimekb3987012013-05-29 14:47:47 +00001729 if (I + 2 != E && Line.First->is(tok::kw_if) &&
1730 (I + 2)->First->is(tok::kw_else))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001731 return;
1732 join(Line, *(++I));
1733 }
1734
1735 void tryMergeSimpleBlock(std::vector<AnnotatedLine>::iterator &I,
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001736 std::vector<AnnotatedLine>::iterator E,
1737 unsigned Limit) {
Daniel Jasper5be59ba2013-05-15 14:09:55 +00001738 // No merging if the brace already is on the next line.
1739 if (Style.BreakBeforeBraces != FormatStyle::BS_Attach)
1740 return;
1741
Manuel Klimek517e8942013-01-11 17:54:10 +00001742 // First, check that the current line allows merging. This is the case if
1743 // we're not in a control flow statement and the last token is an opening
1744 // brace.
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001745 AnnotatedLine &Line = *I;
Manuel Klimekb3987012013-05-29 14:47:47 +00001746 if (Line.First->isOneOf(tok::kw_if, tok::kw_while, tok::kw_do, tok::r_brace,
1747 tok::kw_else, tok::kw_try, tok::kw_catch,
Daniel Jasper8893b8a2013-05-31 14:56:20 +00001748 tok::kw_for,
Manuel Klimekb3987012013-05-29 14:47:47 +00001749 // This gets rid of all ObjC @ keywords and methods.
1750 tok::at, tok::minus, tok::plus))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001751 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001752
Manuel Klimekb3987012013-05-29 14:47:47 +00001753 FormatToken *Tok = (I + 1)->First;
Daniel Jasper8893b8a2013-05-31 14:56:20 +00001754 if (Tok->is(tok::r_brace) && !Tok->MustBreakBefore &&
Alexander Kornienko0bdc6432013-07-04 14:47:51 +00001755 (Tok->getNextNonComment() == NULL ||
1756 Tok->getNextNonComment()->is(tok::semi))) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001757 // We merge empty blocks even if the line exceeds the column limit.
Daniel Jasper729a7432013-02-11 12:36:37 +00001758 Tok->SpacesRequiredBefore = 0;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001759 Tok->CanBreakBefore = true;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001760 join(Line, *(I + 1));
1761 I += 1;
Daniel Jasper8893b8a2013-05-31 14:56:20 +00001762 } else if (Limit != 0 && Line.First->isNot(tok::kw_namespace)) {
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001763 // Check that we still have three lines and they fit into the limit.
1764 if (I + 2 == E || (I + 2)->Type == LT_Invalid ||
1765 !nextTwoLinesFitInto(I, Limit))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001766 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001767
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001768 // Second, check that the next line does not contain any braces - if it
1769 // does, readability declines when putting it into a single line.
1770 if ((I + 1)->Last->Type == TT_LineComment || Tok->MustBreakBefore)
1771 return;
1772 do {
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001773 if (Tok->isOneOf(tok::l_brace, tok::r_brace))
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001774 return;
Manuel Klimekb3987012013-05-29 14:47:47 +00001775 Tok = Tok->Next;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001776 } while (Tok != NULL);
Manuel Klimek517e8942013-01-11 17:54:10 +00001777
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001778 // Last, check that the third line contains a single closing brace.
Manuel Klimekb3987012013-05-29 14:47:47 +00001779 Tok = (I + 2)->First;
Alexander Kornienko0bdc6432013-07-04 14:47:51 +00001780 if (Tok->getNextNonComment() != NULL || Tok->isNot(tok::r_brace) ||
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001781 Tok->MustBreakBefore)
1782 return;
1783
1784 join(Line, *(I + 1));
1785 join(Line, *(I + 2));
1786 I += 2;
Manuel Klimek517e8942013-01-11 17:54:10 +00001787 }
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001788 }
1789
1790 bool nextTwoLinesFitInto(std::vector<AnnotatedLine>::iterator I,
1791 unsigned Limit) {
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001792 return 1 + (I + 1)->Last->TotalLength + 1 + (I + 2)->Last->TotalLength <=
1793 Limit;
Manuel Klimek517e8942013-01-11 17:54:10 +00001794 }
1795
Daniel Jasper995e8202013-01-14 13:08:07 +00001796 void join(AnnotatedLine &A, const AnnotatedLine &B) {
Manuel Klimekb3987012013-05-29 14:47:47 +00001797 assert(!A.Last->Next);
1798 assert(!B.First->Previous);
1799 A.Last->Next = B.First;
1800 B.First->Previous = A.Last;
1801 unsigned LengthA = A.Last->TotalLength + B.First->SpacesRequiredBefore;
1802 for (FormatToken *Tok = B.First; Tok; Tok = Tok->Next) {
1803 Tok->TotalLength += LengthA;
1804 A.Last = Tok;
Daniel Jasper995e8202013-01-14 13:08:07 +00001805 }
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001806 }
1807
Daniel Jasper6f21a982013-03-13 07:49:51 +00001808 bool touchesRanges(const CharSourceRange &Range) {
Daniel Jasperf3023542013-03-07 20:50:00 +00001809 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
1810 if (!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),
1811 Ranges[i].getBegin()) &&
1812 !SourceMgr.isBeforeInTranslationUnit(Ranges[i].getEnd(),
1813 Range.getBegin()))
1814 return true;
1815 }
1816 return false;
1817 }
1818
1819 bool touchesLine(const AnnotatedLine &TheLine) {
Manuel Klimekb3987012013-05-29 14:47:47 +00001820 const FormatToken *First = TheLine.First;
1821 const FormatToken *Last = TheLine.Last;
Daniel Jasper84f5ddf2013-05-14 10:31:09 +00001822 CharSourceRange LineRange = CharSourceRange::getCharRange(
Manuel Klimekad3094b2013-05-23 10:56:37 +00001823 First->WhitespaceRange.getBegin().getLocWithOffset(
1824 First->LastNewlineOffset),
Alexander Kornienko54e6c9d2013-06-07 17:45:07 +00001825 Last->Tok.getLocation().getLocWithOffset(Last->TokenText.size() - 1));
Daniel Jasperf3023542013-03-07 20:50:00 +00001826 return touchesRanges(LineRange);
1827 }
1828
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001829 bool touchesPPDirective(std::vector<AnnotatedLine>::iterator I,
1830 std::vector<AnnotatedLine>::iterator E) {
1831 for (; I != E; ++I) {
Manuel Klimekb3987012013-05-29 14:47:47 +00001832 if (I->First->HasUnescapedNewline)
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001833 return false;
1834 if (touchesLine(*I))
1835 return true;
1836 }
1837 return false;
1838 }
1839
Daniel Jasperf3023542013-03-07 20:50:00 +00001840 bool touchesEmptyLineBefore(const AnnotatedLine &TheLine) {
Manuel Klimekb3987012013-05-29 14:47:47 +00001841 const FormatToken *First = TheLine.First;
Daniel Jasperf3023542013-03-07 20:50:00 +00001842 CharSourceRange LineRange = CharSourceRange::getCharRange(
Manuel Klimekad3094b2013-05-23 10:56:37 +00001843 First->WhitespaceRange.getBegin(),
1844 First->WhitespaceRange.getBegin().getLocWithOffset(
1845 First->LastNewlineOffset));
Daniel Jasperf3023542013-03-07 20:50:00 +00001846 return touchesRanges(LineRange);
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001847 }
1848
1849 virtual void consumeUnwrappedLine(const UnwrappedLine &TheLine) {
Daniel Jaspercbb6c412013-01-16 09:10:19 +00001850 AnnotatedLines.push_back(AnnotatedLine(TheLine));
Daniel Jasperbac016b2012-12-03 18:12:45 +00001851 }
1852
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001853 /// \brief Add a new line and the required indent before the first Token
1854 /// of the \c UnwrappedLine if there was no structural parsing error.
1855 /// Returns the indent level of the \c UnwrappedLine.
Manuel Klimekb3987012013-05-29 14:47:47 +00001856 void formatFirstToken(const FormatToken &RootToken,
1857 const FormatToken *PreviousToken, unsigned Indent,
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001858 bool InPPDirective) {
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001859 unsigned Newlines =
Manuel Klimekb3987012013-05-29 14:47:47 +00001860 std::min(RootToken.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1);
Daniel Jasper15f33f02013-06-03 16:16:41 +00001861 // Remove empty lines before "}" where applicable.
1862 if (RootToken.is(tok::r_brace) &&
1863 (!RootToken.Next ||
1864 (RootToken.Next->is(tok::semi) && !RootToken.Next->Next)))
1865 Newlines = std::min(Newlines, 1u);
Manuel Klimekb3987012013-05-29 14:47:47 +00001866 if (Newlines == 0 && !RootToken.IsFirst)
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001867 Newlines = 1;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001868
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001869 // Insert extra new line before access specifiers.
1870 if (PreviousToken && PreviousToken->isOneOf(tok::semi, tok::r_brace) &&
Manuel Klimekb3987012013-05-29 14:47:47 +00001871 RootToken.isAccessSpecifier() && RootToken.NewlinesBefore == 1)
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001872 ++Newlines;
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001873
Manuel Klimekb3987012013-05-29 14:47:47 +00001874 Whitespaces.replaceWhitespace(
1875 RootToken, Newlines, Indent, Indent,
1876 InPPDirective && !RootToken.HasUnescapedNewline);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001877 }
1878
Daniel Jasperbac016b2012-12-03 18:12:45 +00001879 FormatStyle Style;
1880 Lexer &Lex;
1881 SourceManager &SourceMgr;
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001882 WhitespaceManager Whitespaces;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001883 std::vector<CharSourceRange> Ranges;
Daniel Jasper995e8202013-01-14 13:08:07 +00001884 std::vector<AnnotatedLine> AnnotatedLines;
Alexander Kornienko00895102013-06-05 14:09:10 +00001885
1886 encoding::Encoding Encoding;
Daniel Jasperc7bd68f2013-07-10 14:02:49 +00001887 bool BinPackInconclusiveFunctions;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001888};
1889
Craig Topper83f81d72013-06-30 22:29:28 +00001890} // end anonymous namespace
1891
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001892tooling::Replacements reformat(const FormatStyle &Style, Lexer &Lex,
1893 SourceManager &SourceMgr,
Daniel Jaspercaf42a32013-05-15 08:14:19 +00001894 std::vector<CharSourceRange> Ranges) {
1895 Formatter formatter(Style, Lex, SourceMgr, Ranges);
Daniel Jasperbac016b2012-12-03 18:12:45 +00001896 return formatter.format();
1897}
1898
Daniel Jasper8a999452013-05-16 10:40:07 +00001899tooling::Replacements reformat(const FormatStyle &Style, StringRef Code,
1900 std::vector<tooling::Range> Ranges,
1901 StringRef FileName) {
1902 FileManager Files((FileSystemOptions()));
1903 DiagnosticsEngine Diagnostics(
1904 IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs),
1905 new DiagnosticOptions);
1906 SourceManager SourceMgr(Diagnostics, Files);
1907 llvm::MemoryBuffer *Buf = llvm::MemoryBuffer::getMemBuffer(Code, FileName);
1908 const clang::FileEntry *Entry =
1909 Files.getVirtualFile(FileName, Buf->getBufferSize(), 0);
1910 SourceMgr.overrideFileContents(Entry, Buf);
1911 FileID ID =
1912 SourceMgr.createFileID(Entry, SourceLocation(), clang::SrcMgr::C_User);
Alexander Kornienkoa1753f42013-06-28 12:51:24 +00001913 Lexer Lex(ID, SourceMgr.getBuffer(ID), SourceMgr,
1914 getFormattingLangOpts(Style.Standard));
Daniel Jasper8a999452013-05-16 10:40:07 +00001915 SourceLocation StartOfFile = SourceMgr.getLocForStartOfFile(ID);
1916 std::vector<CharSourceRange> CharRanges;
1917 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
1918 SourceLocation Start = StartOfFile.getLocWithOffset(Ranges[i].getOffset());
1919 SourceLocation End = Start.getLocWithOffset(Ranges[i].getLength());
1920 CharRanges.push_back(CharSourceRange::getCharRange(Start, End));
1921 }
1922 return reformat(Style, Lex, SourceMgr, CharRanges);
1923}
1924
Alexander Kornienkoa1753f42013-06-28 12:51:24 +00001925LangOptions getFormattingLangOpts(FormatStyle::LanguageStandard Standard) {
Daniel Jasper46ef8522013-01-10 13:08:12 +00001926 LangOptions LangOpts;
1927 LangOpts.CPlusPlus = 1;
Alexander Kornienkoa1753f42013-06-28 12:51:24 +00001928 LangOpts.CPlusPlus11 = Standard == FormatStyle::LS_Cpp03 ? 0 : 1;
Daniel Jasperb64eca02013-03-22 10:01:29 +00001929 LangOpts.LineComment = 1;
Daniel Jasper46ef8522013-01-10 13:08:12 +00001930 LangOpts.Bool = 1;
1931 LangOpts.ObjC1 = 1;
1932 LangOpts.ObjC2 = 1;
1933 return LangOpts;
1934}
1935
Daniel Jaspercd162382013-01-07 13:26:07 +00001936} // namespace format
1937} // namespace clang