blob: 140bda219382c6000c27288d547000722929d8cf [file] [log] [blame]
Daniel Jasperf7935112012-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 Jasperf7935112012-12-03 18:12:45 +000014//===----------------------------------------------------------------------===//
15
Manuel Klimek24998102013-01-16 14:55:28 +000016#define DEBUG_TYPE "format-formatter"
17
Alexander Kornienkocb45bc12013-04-15 14:28:00 +000018#include "BreakableToken.h"
Daniel Jasper7a6d09b2013-01-29 21:01:14 +000019#include "TokenAnnotator.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000020#include "UnwrappedLineParser.h"
Alexander Kornienkocb45bc12013-04-15 14:28:00 +000021#include "WhitespaceManager.h"
Daniel Jasperec04c0d2013-05-16 10:40:07 +000022#include "clang/Basic/Diagnostic.h"
Daniel Jasperab7654e2012-12-21 10:20:02 +000023#include "clang/Basic/OperatorPrecedence.h"
Chandler Carruth44eb4f62013-01-02 10:28:36 +000024#include "clang/Basic/SourceManager.h"
Manuel Klimek24998102013-01-16 14:55:28 +000025#include "clang/Format/Format.h"
Daniel Jasperf7935112012-12-03 18:12:45 +000026#include "clang/Lex/Lexer.h"
Alexander Kornienkoffd6d042013-03-27 11:52:18 +000027#include "llvm/ADT/STLExtras.h"
Manuel Klimek2ef908e2013-02-13 10:46:36 +000028#include "llvm/Support/Allocator.h"
Manuel Klimek24998102013-01-16 14:55:28 +000029#include "llvm/Support/Debug.h"
Alexander Kornienkod6538332013-05-07 15:32:14 +000030#include "llvm/Support/YAMLTraits.h"
Manuel Klimek2ef908e2013-02-13 10:46:36 +000031#include <queue>
Daniel Jasper8b529712012-12-04 13:02:32 +000032#include <string>
33
Alexander Kornienkod6538332013-05-07 15:32:14 +000034namespace llvm {
35namespace yaml {
36template <>
37struct ScalarEnumerationTraits<clang::format::FormatStyle::LanguageStandard> {
Manuel Klimeka8eb9142013-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 Jasper12f9d8e2013-05-14 09:30:02 +000046template <>
Manuel Klimeka8eb9142013-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 Klimekd3ed59a2013-08-02 21:31:59 +000053 IO.enumCase(Value, "Allman", clang::format::FormatStyle::BS_Allman);
Alexander Kornienkod6538332013-05-07 15:32:14 +000054 }
55};
56
Daniel Jasper65ee3472013-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 Kornienkod6538332013-05-07 15:32:14 +000069template <> struct MappingTraits<clang::format::FormatStyle> {
70 static void mapping(llvm::yaml::IO &IO, clang::format::FormatStyle &Style) {
Alexander Kornienko49149672013-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 Kornienko006b5c82013-05-19 00:53:30 +000076 clang::format::FormatStyle PredefinedStyle;
77 if (clang::format::getPredefinedStyle(StyleName, &PredefinedStyle) &&
78 Style == PredefinedStyle) {
Alexander Kornienko49149672013-05-10 11:56:10 +000079 IO.mapOptional("# BasedOnStyle", StyleName);
80 break;
81 }
82 }
83 } else {
Alexander Kornienkod6538332013-05-07 15:32:14 +000084 StringRef BasedOnStyle;
85 IO.mapOptional("BasedOnStyle", BasedOnStyle);
Alexander Kornienkod6538332013-05-07 15:32:14 +000086 if (!BasedOnStyle.empty())
Alexander Kornienko006b5c82013-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 Kornienkod6538332013-05-07 15:32:14 +000091 }
92
93 IO.mapOptional("AccessModifierOffset", Style.AccessModifierOffset);
94 IO.mapOptional("AlignEscapedNewlinesLeft", Style.AlignEscapedNewlinesLeft);
Daniel Jasper552f4a72013-07-31 23:55:15 +000095 IO.mapOptional("AlignTrailingComments", Style.AlignTrailingComments);
Alexander Kornienkod6538332013-05-07 15:32:14 +000096 IO.mapOptional("AllowAllParametersOfDeclarationOnNextLine",
97 Style.AllowAllParametersOfDeclarationOnNextLine);
98 IO.mapOptional("AllowShortIfStatementsOnASingleLine",
99 Style.AllowShortIfStatementsOnASingleLine);
Daniel Jasper3a685df2013-05-16 12:12:21 +0000100 IO.mapOptional("AllowShortLoopsOnASingleLine",
101 Style.AllowShortLoopsOnASingleLine);
Daniel Jasper61e6bbf2013-05-29 12:07:31 +0000102 IO.mapOptional("AlwaysBreakTemplateDeclarations",
103 Style.AlwaysBreakTemplateDeclarations);
Alexander Kornienko58611712013-07-04 12:02:44 +0000104 IO.mapOptional("AlwaysBreakBeforeMultilineStrings",
105 Style.AlwaysBreakBeforeMultilineStrings);
Daniel Jaspere33d4af2013-07-26 16:56:36 +0000106 IO.mapOptional("BreakBeforeBinaryOperators",
107 Style.BreakBeforeBinaryOperators);
108 IO.mapOptional("BreakConstructorInitializersBeforeComma",
109 Style.BreakConstructorInitializersBeforeComma);
Alexander Kornienkod6538332013-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 Jasperb10cbc42013-07-10 14:02:49 +0000115 IO.mapOptional("ExperimentalAutoDetectBinPacking",
116 Style.ExperimentalAutoDetectBinPacking);
Alexander Kornienkod6538332013-05-07 15:32:14 +0000117 IO.mapOptional("IndentCaseLabels", Style.IndentCaseLabels);
118 IO.mapOptional("MaxEmptyLinesToKeep", Style.MaxEmptyLinesToKeep);
Daniel Jasper65ee3472013-07-31 23:16:02 +0000119 IO.mapOptional("NamespaceIndentation", Style.NamespaceIndentation);
Alexander Kornienkod6538332013-05-07 15:32:14 +0000120 IO.mapOptional("ObjCSpaceBeforeProtocolList",
121 Style.ObjCSpaceBeforeProtocolList);
Alexander Kornienkodd7ece52013-06-07 16:02:52 +0000122 IO.mapOptional("PenaltyBreakComment", Style.PenaltyBreakComment);
123 IO.mapOptional("PenaltyBreakString", Style.PenaltyBreakString);
Daniel Jasper4e9678f2013-07-11 20:41:21 +0000124 IO.mapOptional("PenaltyBreakFirstLessLess",
125 Style.PenaltyBreakFirstLessLess);
Alexander Kornienkod6538332013-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 Jasper6ab54682013-07-16 18:22:10 +0000132 IO.mapOptional("Cpp11BracedListStyle", Style.Cpp11BracedListStyle);
Alexander Kornienkod6538332013-05-07 15:32:14 +0000133 IO.mapOptional("Standard", Style.Standard);
Manuel Klimek13b97d82013-05-13 08:42:42 +0000134 IO.mapOptional("IndentWidth", Style.IndentWidth);
Manuel Klimekb9eae4c2013-05-13 09:22:11 +0000135 IO.mapOptional("UseTab", Style.UseTab);
Manuel Klimeka8eb9142013-05-13 12:51:40 +0000136 IO.mapOptional("BreakBeforeBraces", Style.BreakBeforeBraces);
Manuel Klimek836c2862013-06-21 17:25:42 +0000137 IO.mapOptional("IndentFunctionDeclarationAfterType",
138 Style.IndentFunctionDeclarationAfterType);
Alexander Kornienkod6538332013-05-07 15:32:14 +0000139 }
140};
141}
142}
143
Daniel Jasperf7935112012-12-03 18:12:45 +0000144namespace clang {
145namespace format {
146
Daniel Jasper4e9678f2013-07-11 20:41:21 +0000147void setDefaultPenalties(FormatStyle &Style) {
148 Style.PenaltyBreakComment = 45;
Daniel Jasperfa21c072013-07-15 14:33:14 +0000149 Style.PenaltyBreakFirstLessLess = 120;
Daniel Jasper4e9678f2013-07-11 20:41:21 +0000150 Style.PenaltyBreakString = 1000;
151 Style.PenaltyExcessCharacter = 1000000;
152}
153
Daniel Jasperf7935112012-12-03 18:12:45 +0000154FormatStyle getLLVMStyle() {
155 FormatStyle LLVMStyle;
Daniel Jasperf7935112012-12-03 18:12:45 +0000156 LLVMStyle.AccessModifierOffset = -2;
Alexander Kornienkoc8602662013-05-06 14:11:27 +0000157 LLVMStyle.AlignEscapedNewlinesLeft = false;
Daniel Jasper552f4a72013-07-31 23:55:15 +0000158 LLVMStyle.AlignTrailingComments = true;
Daniel Jasperf7db4332013-01-29 16:03:49 +0000159 LLVMStyle.AllowAllParametersOfDeclarationOnNextLine = true;
Daniel Jasper1b750ed2013-01-14 16:24:39 +0000160 LLVMStyle.AllowShortIfStatementsOnASingleLine = false;
Daniel Jasper3a685df2013-05-16 12:12:21 +0000161 LLVMStyle.AllowShortLoopsOnASingleLine = false;
Alexander Kornienko58611712013-07-04 12:02:44 +0000162 LLVMStyle.AlwaysBreakBeforeMultilineStrings = false;
Daniel Jaspere33d4af2013-07-26 16:56:36 +0000163 LLVMStyle.AlwaysBreakTemplateDeclarations = false;
Alexander Kornienkoc8602662013-05-06 14:11:27 +0000164 LLVMStyle.BinPackParameters = true;
Daniel Jaspere33d4af2013-07-26 16:56:36 +0000165 LLVMStyle.BreakBeforeBinaryOperators = false;
166 LLVMStyle.BreakBeforeBraces = FormatStyle::BS_Attach;
167 LLVMStyle.BreakConstructorInitializersBeforeComma = false;
Alexander Kornienkoc8602662013-05-06 14:11:27 +0000168 LLVMStyle.ColumnLimit = 80;
169 LLVMStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = false;
Daniel Jaspere33d4af2013-07-26 16:56:36 +0000170 LLVMStyle.Cpp11BracedListStyle = false;
Alexander Kornienkoc8602662013-05-06 14:11:27 +0000171 LLVMStyle.DerivePointerBinding = false;
Daniel Jasperb10cbc42013-07-10 14:02:49 +0000172 LLVMStyle.ExperimentalAutoDetectBinPacking = false;
Alexander Kornienkoc8602662013-05-06 14:11:27 +0000173 LLVMStyle.IndentCaseLabels = false;
Daniel Jaspere33d4af2013-07-26 16:56:36 +0000174 LLVMStyle.IndentFunctionDeclarationAfterType = false;
175 LLVMStyle.IndentWidth = 2;
Alexander Kornienkoc8602662013-05-06 14:11:27 +0000176 LLVMStyle.MaxEmptyLinesToKeep = 1;
Daniel Jasper65ee3472013-07-31 23:16:02 +0000177 LLVMStyle.NamespaceIndentation = FormatStyle::NI_None;
Nico Webera6087752013-01-10 20:12:55 +0000178 LLVMStyle.ObjCSpaceBeforeProtocolList = true;
Alexander Kornienkoc8602662013-05-06 14:11:27 +0000179 LLVMStyle.PointerBindsToType = false;
180 LLVMStyle.SpacesBeforeTrailingComments = 1;
181 LLVMStyle.Standard = FormatStyle::LS_Cpp03;
Manuel Klimekb9eae4c2013-05-13 09:22:11 +0000182 LLVMStyle.UseTab = false;
Daniel Jasper4e9678f2013-07-11 20:41:21 +0000183
184 setDefaultPenalties(LLVMStyle);
185 LLVMStyle.PenaltyReturnTypeOnItsOwnLine = 60;
186
Daniel Jasperf7935112012-12-03 18:12:45 +0000187 return LLVMStyle;
188}
189
190FormatStyle getGoogleStyle() {
191 FormatStyle GoogleStyle;
Daniel Jasperf7935112012-12-03 18:12:45 +0000192 GoogleStyle.AccessModifierOffset = -1;
Alexander Kornienkoc8602662013-05-06 14:11:27 +0000193 GoogleStyle.AlignEscapedNewlinesLeft = true;
Daniel Jasper552f4a72013-07-31 23:55:15 +0000194 GoogleStyle.AlignTrailingComments = true;
Daniel Jasperf7db4332013-01-29 16:03:49 +0000195 GoogleStyle.AllowAllParametersOfDeclarationOnNextLine = true;
Daniel Jasper085a2ed2013-04-24 13:46:00 +0000196 GoogleStyle.AllowShortIfStatementsOnASingleLine = true;
Daniel Jasper5bd0b9e2013-05-23 18:05:18 +0000197 GoogleStyle.AllowShortLoopsOnASingleLine = true;
Alexander Kornienko58611712013-07-04 12:02:44 +0000198 GoogleStyle.AlwaysBreakBeforeMultilineStrings = true;
Daniel Jaspere33d4af2013-07-26 16:56:36 +0000199 GoogleStyle.AlwaysBreakTemplateDeclarations = true;
Alexander Kornienkoc8602662013-05-06 14:11:27 +0000200 GoogleStyle.BinPackParameters = true;
Daniel Jaspere33d4af2013-07-26 16:56:36 +0000201 GoogleStyle.BreakBeforeBinaryOperators = false;
202 GoogleStyle.BreakBeforeBraces = FormatStyle::BS_Attach;
203 GoogleStyle.BreakConstructorInitializersBeforeComma = false;
Alexander Kornienkoc8602662013-05-06 14:11:27 +0000204 GoogleStyle.ColumnLimit = 80;
205 GoogleStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true;
Daniel Jaspere33d4af2013-07-26 16:56:36 +0000206 GoogleStyle.Cpp11BracedListStyle = true;
Alexander Kornienkoc8602662013-05-06 14:11:27 +0000207 GoogleStyle.DerivePointerBinding = true;
Daniel Jasperb10cbc42013-07-10 14:02:49 +0000208 GoogleStyle.ExperimentalAutoDetectBinPacking = false;
Alexander Kornienkoc8602662013-05-06 14:11:27 +0000209 GoogleStyle.IndentCaseLabels = true;
Daniel Jaspere33d4af2013-07-26 16:56:36 +0000210 GoogleStyle.IndentFunctionDeclarationAfterType = true;
211 GoogleStyle.IndentWidth = 2;
Alexander Kornienkoc8602662013-05-06 14:11:27 +0000212 GoogleStyle.MaxEmptyLinesToKeep = 1;
Daniel Jasper65ee3472013-07-31 23:16:02 +0000213 GoogleStyle.NamespaceIndentation = FormatStyle::NI_None;
Nico Webera6087752013-01-10 20:12:55 +0000214 GoogleStyle.ObjCSpaceBeforeProtocolList = false;
Alexander Kornienkoc8602662013-05-06 14:11:27 +0000215 GoogleStyle.PointerBindsToType = true;
216 GoogleStyle.SpacesBeforeTrailingComments = 2;
217 GoogleStyle.Standard = FormatStyle::LS_Auto;
Manuel Klimekb9eae4c2013-05-13 09:22:11 +0000218 GoogleStyle.UseTab = false;
Daniel Jasper4e9678f2013-07-11 20:41:21 +0000219
220 setDefaultPenalties(GoogleStyle);
221 GoogleStyle.PenaltyReturnTypeOnItsOwnLine = 200;
222
Daniel Jasperf7935112012-12-03 18:12:45 +0000223 return GoogleStyle;
224}
225
Daniel Jasper1b750ed2013-01-14 16:24:39 +0000226FormatStyle getChromiumStyle() {
227 FormatStyle ChromiumStyle = getGoogleStyle();
Daniel Jasperf7db4332013-01-29 16:03:49 +0000228 ChromiumStyle.AllowAllParametersOfDeclarationOnNextLine = false;
Daniel Jasper085a2ed2013-04-24 13:46:00 +0000229 ChromiumStyle.AllowShortIfStatementsOnASingleLine = false;
Daniel Jasper3a685df2013-05-16 12:12:21 +0000230 ChromiumStyle.AllowShortLoopsOnASingleLine = false;
Daniel Jasper2cf17bf2013-02-27 09:47:53 +0000231 ChromiumStyle.BinPackParameters = false;
Daniel Jasper7fce3ab2013-02-06 14:22:40 +0000232 ChromiumStyle.DerivePointerBinding = false;
Daniel Jaspere33d4af2013-07-26 16:56:36 +0000233 ChromiumStyle.Standard = FormatStyle::LS_Cpp03;
Daniel Jasper1b750ed2013-01-14 16:24:39 +0000234 return ChromiumStyle;
235}
236
Alexander Kornienkoc8602662013-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 Jasperffefb3d2013-07-24 13:10:59 +0000249FormatStyle getWebKitStyle() {
250 FormatStyle Style = getLLVMStyle();
Daniel Jasper65ee3472013-07-31 23:16:02 +0000251 Style.AccessModifierOffset = -4;
Daniel Jasper552f4a72013-07-31 23:55:15 +0000252 Style.AlignTrailingComments = false;
Daniel Jaspere33d4af2013-07-26 16:56:36 +0000253 Style.BreakBeforeBinaryOperators = true;
Daniel Jasper65ee3472013-07-31 23:16:02 +0000254 Style.BreakBeforeBraces = FormatStyle::BS_Stroustrup;
Daniel Jaspere33d4af2013-07-26 16:56:36 +0000255 Style.BreakConstructorInitializersBeforeComma = true;
Daniel Jasper65ee3472013-07-31 23:16:02 +0000256 Style.ColumnLimit = 0;
Daniel Jaspere33d4af2013-07-26 16:56:36 +0000257 Style.IndentWidth = 4;
Daniel Jasper65ee3472013-07-31 23:16:02 +0000258 Style.NamespaceIndentation = FormatStyle::NI_Inner;
Daniel Jasperffefb3d2013-07-24 13:10:59 +0000259 Style.PointerBindsToType = true;
260 return Style;
261}
262
Alexander Kornienko006b5c82013-05-19 00:53:30 +0000263bool getPredefinedStyle(StringRef Name, FormatStyle *Style) {
Alexander Kornienkod6538332013-05-07 15:32:14 +0000264 if (Name.equals_lower("llvm"))
Alexander Kornienko006b5c82013-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 Jasperffefb3d2013-07-24 13:10:59 +0000272 else if (Name.equals_lower("webkit"))
273 *Style = getWebKitStyle();
Alexander Kornienko006b5c82013-05-19 00:53:30 +0000274 else
275 return false;
Alexander Kornienkod6538332013-05-07 15:32:14 +0000276
Alexander Kornienko006b5c82013-05-19 00:53:30 +0000277 return true;
Alexander Kornienkod6538332013-05-07 15:32:14 +0000278}
279
280llvm::error_code parseConfiguration(StringRef Text, FormatStyle *Style) {
Alexander Kornienko06e00332013-05-20 15:18:01 +0000281 if (Text.trim().empty())
282 return llvm::make_error_code(llvm::errc::invalid_argument);
Alexander Kornienkod6538332013-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 Kornienko9a38ec22013-05-13 12:56:35 +0000296 return Stream.str();
Alexander Kornienkod6538332013-05-07 15:32:14 +0000297}
298
Daniel Jasperacc33662013-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 Klimek6e6310e2013-05-29 14:47:47 +0000301static unsigned getLengthToMatchingParen(const FormatToken &Tok) {
Daniel Jasperacc33662013-02-08 08:22:00 +0000302 if (Tok.MatchingParen == NULL)
303 return 0;
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000304 FormatToken *End = Tok.MatchingParen;
305 while (End->Next && !End->Next->CanBreakBefore) {
306 End = End->Next;
Daniel Jasperacc33662013-02-08 08:22:00 +0000307 }
308 return End->TotalLength - Tok.TotalLength + 1;
309}
310
Craig Topperaf35e852013-06-30 22:29:28 +0000311namespace {
312
Daniel Jasperf7935112012-12-03 18:12:45 +0000313class UnwrappedLineFormatter {
314public:
Manuel Klimekb2c6dbe2013-01-10 19:17:33 +0000315 UnwrappedLineFormatter(const FormatStyle &Style, SourceManager &SourceMgr,
Daniel Jasperf1e4b7d2013-01-14 13:08:07 +0000316 const AnnotatedLine &Line, unsigned FirstIndent,
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000317 const FormatToken *RootToken,
Alexander Kornienkoffcc0102013-06-05 14:09:10 +0000318 WhitespaceManager &Whitespaces,
Daniel Jasperb10cbc42013-07-10 14:02:49 +0000319 encoding::Encoding Encoding,
320 bool BinPackInconclusiveFunctions)
Daniel Jasper2af6bbe2012-12-18 21:05:13 +0000321 : Style(Style), SourceMgr(SourceMgr), Line(Line),
Daniel Jasperaa701fa2013-01-18 08:44:07 +0000322 FirstIndent(FirstIndent), RootToken(RootToken),
Daniel Jasperb10cbc42013-07-10 14:02:49 +0000323 Whitespaces(Whitespaces), Count(0), Encoding(Encoding),
324 BinPackInconclusiveFunctions(BinPackInconclusiveFunctions) {}
Daniel Jasperf7935112012-12-03 18:12:45 +0000325
Manuel Klimek1abf7892013-01-04 23:34:14 +0000326 /// \brief Formats an \c UnwrappedLine.
Manuel Klimek4fe43002013-05-22 12:51:29 +0000327 void format(const AnnotatedLine *NextLine) {
Daniel Jaspere9de2602012-12-06 09:56:08 +0000328 // Initialize state dependent on indent.
Daniel Jasper337816e2013-01-11 10:22:12 +0000329 LineState State;
Manuel Klimek0b689fd2013-01-10 18:45:26 +0000330 State.Column = FirstIndent;
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000331 State.NextToken = RootToken;
Daniel Jasper3ac9b9e2013-07-08 14:34:09 +0000332 State.Stack.push_back(ParenState(FirstIndent, FirstIndent,
333 /*AvoidBinPacking=*/false,
334 /*NoLineBreak=*/false));
Daniel Jasperfbde69e2012-12-21 14:37:20 +0000335 State.LineContainsContinuedForLoopSection = false;
Daniel Jasper400adc62013-02-08 15:28:42 +0000336 State.ParenLevel = 0;
Manuel Klimek02f640a2013-02-20 15:25:48 +0000337 State.StartOfStringLiteral = 0;
Daniel Jasper40c36c52013-02-18 11:05:07 +0000338 State.StartOfLineLevel = State.ParenLevel;
Daniel Jasper0e90c3d2013-07-05 09:14:35 +0000339 State.LowestLevelOnLine = State.ParenLevel;
Daniel Jasperf8114cf2013-05-22 05:27:42 +0000340 State.IgnoreStackForComparison = false;
Daniel Jaspere9de2602012-12-06 09:56:08 +0000341
342 // The first token has already been indented and thus consumed.
Daniel Jasper5aad4e52013-07-12 11:37:05 +0000343 moveStateToNextToken(State, /*DryRun=*/false, /*Newline=*/false);
Daniel Jasperf7935112012-12-03 18:12:45 +0000344
Daniel Jasperffefb3d2013-07-24 13:10:59 +0000345 if (Style.ColumnLimit == 0) {
346 formatWithoutColumnLimit(State);
347 return;
348 }
349
Daniel Jasper4b866272013-02-01 11:00:45 +0000350 // If everything fits on a single line, just put it there.
Daniel Jasperc22f5b42013-02-28 11:05:57 +0000351 unsigned ColumnLimit = Style.ColumnLimit;
352 if (NextLine && NextLine->InPPDirective &&
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000353 !NextLine->First->HasUnescapedNewline)
Daniel Jasperc22f5b42013-02-28 11:05:57 +0000354 ColumnLimit = getColumnLimit();
355 if (Line.Last->TotalLength <= ColumnLimit - FirstIndent) {
Daniel Jasper4b866272013-02-01 11:00:45 +0000356 while (State.NextToken != NULL) {
Daniel Jasper2af6bbe2012-12-18 21:05:13 +0000357 addTokenToState(false, false, State);
Daniel Jasper2af6bbe2012-12-18 21:05:13 +0000358 }
Daniel Jasperf7935112012-12-03 18:12:45 +0000359 }
Daniel Jasper4b866272013-02-01 11:00:45 +0000360
Daniel Jasperacc33662013-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 Jasper4b866272013-02-01 11:00:45 +0000366 // Find best solution in solution space.
Manuel Klimek4fe43002013-05-22 12:51:29 +0000367 analyzeSolutionSpace(State);
Daniel Jasperf7935112012-12-03 18:12:45 +0000368 }
369
370private:
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000371 void DebugTokenState(const FormatToken &FormatTok) {
372 const Token &Tok = FormatTok.Tok;
Alexander Kornienko49149672013-05-10 11:56:10 +0000373 llvm::dbgs() << StringRef(SourceMgr.getCharacterData(Tok.getLocation()),
Daniel Jasperbbc84152013-01-29 11:27:30 +0000374 Tok.getLength());
Alexander Kornienko49149672013-05-10 11:56:10 +0000375 llvm::dbgs();
Manuel Klimek24998102013-01-16 14:55:28 +0000376 }
377
Daniel Jasper337816e2013-01-11 10:22:12 +0000378 struct ParenState {
Daniel Jasperb9ebd5d2013-02-05 09:41:21 +0000379 ParenState(unsigned Indent, unsigned LastSpace, bool AvoidBinPacking,
Daniel Jaspercc960fa2013-04-22 07:59:53 +0000380 bool NoLineBreak)
Daniel Jasper400adc62013-02-08 15:28:42 +0000381 : Indent(Indent), LastSpace(LastSpace), FirstLessLess(0),
382 BreakBeforeClosingBrace(false), QuestionColumn(0),
Daniel Jasperacc33662013-02-08 08:22:00 +0000383 AvoidBinPacking(AvoidBinPacking), BreakBeforeParameter(false),
Daniel Jaspercc960fa2013-04-22 07:59:53 +0000384 NoLineBreak(NoLineBreak), ColonPos(0), StartOfFunctionCall(0),
Daniel Jasperaea3bde2013-07-12 11:19:37 +0000385 StartOfArraySubscripts(0), NestedNameSpecifierContinuation(0),
386 CallContinuation(0), VariablePos(0), ContainsLineBreak(false) {}
Daniel Jasper6d822722012-12-24 16:43:00 +0000387
Daniel Jasperf7935112012-12-03 18:12:45 +0000388 /// \brief The position to which a specific parenthesis level needs to be
389 /// indented.
Daniel Jasper337816e2013-01-11 10:22:12 +0000390 unsigned Indent;
Daniel Jasperf7935112012-12-03 18:12:45 +0000391
Daniel Jaspere9de2602012-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 Jasper337816e2013-01-11 10:22:12 +0000397 unsigned LastSpace;
Daniel Jasperf7935112012-12-03 18:12:45 +0000398
Daniel Jaspere9de2602012-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 Jasper337816e2013-01-11 10:22:12 +0000403 unsigned FirstLessLess;
Daniel Jaspere9de2602012-12-06 09:56:08 +0000404
Manuel Klimek0ddd57a2013-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 Jasper337816e2013-01-11 10:22:12 +0000410 bool BreakBeforeClosingBrace;
411
Daniel Jasperca6623b2013-01-28 12:45:14 +0000412 /// \brief The column of a \c ? in a conditional expression;
413 unsigned QuestionColumn;
414
Daniel Jasper8a8ce242013-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 Jasperacc33662013-02-08 08:22:00 +0000421 bool BreakBeforeParameter;
Daniel Jasper8a8ce242013-01-31 14:59:26 +0000422
Daniel Jaspercc960fa2013-04-22 07:59:53 +0000423 /// \brief Line breaking in this context would break a formatting rule.
424 bool NoLineBreak;
Daniel Jasper2408a8c2013-01-11 11:37:55 +0000425
Daniel Jasper1ac3e052013-02-05 10:07:47 +0000426 /// \brief The position of the colon in an ObjC method declaration/call.
427 unsigned ColonPos;
Daniel Jasperdc7d5812013-02-20 12:56:39 +0000428
Daniel Jasperf9a84b52013-03-01 16:48:32 +0000429 /// \brief The start of the most recent function in a builder-type call.
430 unsigned StartOfFunctionCall;
431
Daniel Jasperaea3bde2013-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 Jasperc238c872013-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 Jaspera628c982013-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 Jasperee7539a2013-07-08 14:25:23 +0000449 /// \brief \c true if this \c ParenState already contains a line-break.
Daniel Jaspercc3044c2013-05-13 09:19:24 +0000450 ///
Daniel Jasperee7539a2013-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 Jaspercc3044c2013-05-13 09:19:24 +0000455
Daniel Jasper337816e2013-01-11 10:22:12 +0000456 bool operator<(const ParenState &Other) const {
457 if (Indent != Other.Indent)
Daniel Jasperfd8c4b12013-01-11 14:23:32 +0000458 return Indent < Other.Indent;
Daniel Jasper337816e2013-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 Jasper2408a8c2013-01-11 11:37:55 +0000463 if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
464 return BreakBeforeClosingBrace;
Daniel Jasperca6623b2013-01-28 12:45:14 +0000465 if (QuestionColumn != Other.QuestionColumn)
466 return QuestionColumn < Other.QuestionColumn;
Daniel Jasper8a8ce242013-01-31 14:59:26 +0000467 if (AvoidBinPacking != Other.AvoidBinPacking)
468 return AvoidBinPacking;
Daniel Jasperacc33662013-02-08 08:22:00 +0000469 if (BreakBeforeParameter != Other.BreakBeforeParameter)
470 return BreakBeforeParameter;
Daniel Jaspercc960fa2013-04-22 07:59:53 +0000471 if (NoLineBreak != Other.NoLineBreak)
472 return NoLineBreak;
Daniel Jasper1ac3e052013-02-05 10:07:47 +0000473 if (ColonPos != Other.ColonPos)
474 return ColonPos < Other.ColonPos;
Daniel Jasperf9a84b52013-03-01 16:48:32 +0000475 if (StartOfFunctionCall != Other.StartOfFunctionCall)
476 return StartOfFunctionCall < Other.StartOfFunctionCall;
Daniel Jasperaea3bde2013-07-12 11:19:37 +0000477 if (StartOfArraySubscripts != Other.StartOfArraySubscripts)
478 return StartOfArraySubscripts < Other.StartOfArraySubscripts;
Daniel Jasperc238c872013-04-02 14:33:13 +0000479 if (CallContinuation != Other.CallContinuation)
480 return CallContinuation < Other.CallContinuation;
Daniel Jaspera628c982013-04-03 13:36:17 +0000481 if (VariablePos != Other.VariablePos)
482 return VariablePos < Other.VariablePos;
Daniel Jasperee7539a2013-07-08 14:25:23 +0000483 if (ContainsLineBreak != Other.ContainsLineBreak)
484 return ContainsLineBreak < Other.ContainsLineBreak;
Daniel Jasper7b7877a2013-01-12 07:36:22 +0000485 return false;
Daniel Jasper337816e2013-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 Klimek6e6310e2013-05-29 14:47:47 +0000497 const FormatToken *NextToken;
Daniel Jasper337816e2013-01-11 10:22:12 +0000498
Daniel Jasperfbde69e2012-12-21 14:37:20 +0000499 /// \brief \c true if this line contains a continued for-loop section.
500 bool LineContainsContinuedForLoopSection;
501
Daniel Jasper400adc62013-02-08 15:28:42 +0000502 /// \brief The level of nesting inside (), [], <> and {}.
503 unsigned ParenLevel;
504
Daniel Jasper40c36c52013-02-18 11:05:07 +0000505 /// \brief The \c ParenLevel at the start of this line.
506 unsigned StartOfLineLevel;
507
Daniel Jasper0e90c3d2013-07-05 09:14:35 +0000508 /// \brief The lowest \c ParenLevel on the current line.
509 unsigned LowestLevelOnLine;
Daniel Jasper32a796b2013-05-27 11:50:16 +0000510
Manuel Klimek02f640a2013-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 Jasper337816e2013-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 Jasperf8114cf2013-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 Jasper337816e2013-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 Jasper58f427e2013-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 Jasper58f427e2013-02-19 09:28:55 +0000540 if (LineContainsContinuedForLoopSection !=
Alexander Kornienkocb45bc12013-04-15 14:28:00 +0000541 Other.LineContainsContinuedForLoopSection)
Daniel Jasperfbde69e2012-12-21 14:37:20 +0000542 return LineContainsContinuedForLoopSection;
Daniel Jasper58f427e2013-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 Jasper0e90c3d2013-07-05 09:14:35 +0000547 if (LowestLevelOnLine != Other.LowestLevelOnLine)
548 return LowestLevelOnLine < Other.LowestLevelOnLine;
Manuel Klimek02f640a2013-02-20 15:25:48 +0000549 if (StartOfStringLiteral != Other.StartOfStringLiteral)
550 return StartOfStringLiteral < Other.StartOfStringLiteral;
Daniel Jasperf8114cf2013-05-22 05:27:42 +0000551 if (IgnoreStackForComparison || Other.IgnoreStackForComparison)
552 return false;
Daniel Jasper58f427e2013-02-19 09:28:55 +0000553 return Stack < Other.Stack;
Daniel Jasperf7935112012-12-03 18:12:45 +0000554 }
555 };
556
Daniel Jasperffefb3d2013-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 Jaspere33d4af2013-07-26 16:56:36 +0000561 bool Newline = mustBreak(State) ||
562 (canBreak(State) && State.NextToken->NewlinesBefore > 0);
Daniel Jasperffefb3d2013-07-24 13:10:59 +0000563 addTokenToState(Newline, /*DryRun=*/false, State);
564 }
565 }
566
Daniel Jasper6021c4a2012-12-04 14:54:30 +0000567 /// \brief Appends the next token to \p State and updates information
568 /// necessary for indentation.
569 ///
Nico Weberf579ab32013-06-26 02:42:46 +0000570 /// Puts the token on the current line if \p Newline is \c false and adds a
Daniel Jasper6021c4a2012-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 Klimek1998ea22013-02-20 10:15:13 +0000575 unsigned addTokenToState(bool Newline, bool DryRun, LineState &State) {
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000576 const FormatToken &Current = *State.NextToken;
577 const FormatToken &Previous = *State.NextToken->Previous;
Daniel Jasperf7935112012-12-03 18:12:45 +0000578
Daniel Jasper4e9678f2013-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 Jasper291f9362013-03-20 15:58:10 +0000583 if (State.Stack.size() == 0 || Current.Type == TT_ImplicitStringLiteral) {
Manuel Klimek5c24cca2013-05-23 10:56:37 +0000584 // FIXME: Is this correct?
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000585 int WhitespaceLength = SourceMgr.getSpellingColumnNumber(
586 State.NextToken->WhitespaceRange.getEnd()) -
587 SourceMgr.getSpellingColumnNumber(
588 State.NextToken->WhitespaceRange.getBegin());
Alexander Kornienkoffcc0102013-06-05 14:09:10 +0000589 State.Column += WhitespaceLength + State.NextToken->CodePointCount;
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000590 State.NextToken = State.NextToken->Next;
Manuel Klimek1998ea22013-02-20 10:15:13 +0000591 return 0;
Daniel Jasper4b866272013-02-01 11:00:45 +0000592 }
593
Daniel Jasper5188e6b2013-04-03 07:21:51 +0000594 // If we are continuing an expression, we want to indent an extra 4 spaces.
595 unsigned ContinuationIndent =
Daniel Jasperc238c872013-04-02 14:33:13 +0000596 std::max(State.Stack.back().LastSpace, State.Stack.back().Indent) + 4;
Daniel Jasperf7935112012-12-03 18:12:45 +0000597 if (Newline) {
Daniel Jasperee7539a2013-07-08 14:25:23 +0000598 State.Stack.back().ContainsLineBreak = true;
Manuel Klimek8e07a1b2013-01-10 11:52:21 +0000599 if (Current.is(tok::r_brace)) {
Daniel Jasperb1f74a82013-07-09 09:06:29 +0000600 if (Current.BlockKind == BK_BracedInit)
601 State.Column = State.Stack[State.Stack.size() - 2].LastSpace;
602 else
Daniel Jasper51efbad2013-07-11 21:27:40 +0000603 State.Column = FirstIndent;
Daniel Jasper399d24b2013-01-09 07:06:56 +0000604 } else if (Current.is(tok::string_literal) &&
Manuel Klimek02f640a2013-02-20 15:25:48 +0000605 State.StartOfStringLiteral != 0) {
606 State.Column = State.StartOfStringLiteral;
Daniel Jasper2ec3ffb82013-02-18 11:59:17 +0000607 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasper399d24b2013-01-09 07:06:56 +0000608 } else if (Current.is(tok::lessless) &&
Daniel Jasper400adc62013-02-08 15:28:42 +0000609 State.Stack.back().FirstLessLess != 0) {
610 State.Column = State.Stack.back().FirstLessLess;
Daniel Jasperbca4bbe2013-05-28 11:30:49 +0000611 } else if (Current.isOneOf(tok::period, tok::arrow) &&
612 Current.Type != TT_DesignatedInitializerPeriod) {
Daniel Jasper5188e6b2013-04-03 07:21:51 +0000613 if (State.Stack.back().CallContinuation == 0) {
614 State.Column = ContinuationIndent;
Daniel Jasperc238c872013-04-02 14:33:13 +0000615 State.Stack.back().CallContinuation = State.Column;
Daniel Jasper5188e6b2013-04-03 07:21:51 +0000616 } else {
617 State.Column = State.Stack.back().CallContinuation;
618 }
Daniel Jasperca6623b2013-01-28 12:45:14 +0000619 } else if (Current.Type == TT_ConditionalExpr) {
620 State.Column = State.Stack.back().QuestionColumn;
Daniel Jaspera628c982013-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 Jasper26d1b1d2013-02-24 18:54:32 +0000624 } else if (Previous.ClosesTemplateDeclaration ||
Daniel Jasper6331da02013-07-09 07:43:55 +0000625 ((Current.Type == TT_StartOfName ||
626 Current.is(tok::kw_operator)) &&
627 State.ParenLevel == 0 &&
Manuel Klimek836c2862013-06-21 17:25:42 +0000628 (!Style.IndentFunctionDeclarationAfterType ||
629 Line.StartsDefinition))) {
Daniel Jasperc238c872013-04-02 14:33:13 +0000630 State.Column = State.Stack.back().Indent;
Daniel Jasper1ac3e052013-02-05 10:07:47 +0000631 } else if (Current.Type == TT_ObjCSelectorName) {
Alexander Kornienkoffcc0102013-06-05 14:09:10 +0000632 if (State.Stack.back().ColonPos > Current.CodePointCount) {
633 State.Column = State.Stack.back().ColonPos - Current.CodePointCount;
Daniel Jasper1ac3e052013-02-05 10:07:47 +0000634 } else {
635 State.Column = State.Stack.back().Indent;
Alexander Kornienkoffcc0102013-06-05 14:09:10 +0000636 State.Stack.back().ColonPos = State.Column + Current.CodePointCount;
Daniel Jasper1ac3e052013-02-05 10:07:47 +0000637 }
Daniel Jasperaea3bde2013-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 Jasper0f0234e2013-05-08 10:00:18 +0000644 } else if (Current.Type == TT_StartOfName ||
645 Previous.isOneOf(tok::coloncolon, tok::equal) ||
Daniel Jasperc238c872013-04-02 14:33:13 +0000646 Previous.Type == TT_ObjCMethodExpr) {
Daniel Jasper5188e6b2013-04-03 07:21:51 +0000647 State.Column = ContinuationIndent;
Daniel Jasperfbde69e2012-12-21 14:37:20 +0000648 } else {
Daniel Jasper400adc62013-02-08 15:28:42 +0000649 State.Column = State.Stack.back().Indent;
Daniel Jasper5188e6b2013-04-03 07:21:51 +0000650 // Ensure that we fall back to indenting 4 spaces instead of just
651 // flushing continuations left.
Daniel Jasperc238c872013-04-02 14:33:13 +0000652 if (State.Column == FirstIndent)
653 State.Column += 4;
Daniel Jasperfbde69e2012-12-21 14:37:20 +0000654 }
655
Daniel Jasper54a86022013-02-15 11:07:25 +0000656 if (Current.is(tok::question))
Daniel Jaspercd8599e2013-02-23 21:01:55 +0000657 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasperd69fc772013-05-08 14:12:04 +0000658 if ((Previous.isOneOf(tok::comma, tok::semi) &&
659 !State.Stack.back().AvoidBinPacking) ||
660 Previous.Type == TT_BinaryOperator)
Daniel Jasperacc33662013-02-08 08:22:00 +0000661 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasperc6fbc212013-05-15 09:35:08 +0000662 if (Previous.Type == TT_TemplateCloser && State.ParenLevel == 0)
663 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasper8a8ce242013-01-31 14:59:26 +0000664
Manuel Klimekb69e3c62013-01-02 18:33:23 +0000665 if (!DryRun) {
Daniel Jasperfb5e2412013-02-26 13:10:34 +0000666 unsigned NewLines = 1;
Alexander Kornienkof370ad92013-06-12 19:04:12 +0000667 if (Current.is(tok::comment))
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000668 NewLines = std::max(
669 NewLines,
670 std::min(Current.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1));
Manuel Klimek4fe43002013-05-22 12:51:29 +0000671 Whitespaces.replaceWhitespace(Current, NewLines, State.Column,
672 State.Column, Line.InPPDirective);
Manuel Klimekb69e3c62013-01-02 18:33:23 +0000673 }
Daniel Jasperf7935112012-12-03 18:12:45 +0000674
Daniel Jasper185de242013-07-11 13:48:16 +0000675 if (!Current.isTrailingComment())
676 State.Stack.back().LastSpace = State.Column;
Daniel Jasperbca4bbe2013-05-28 11:30:49 +0000677 if (Current.isOneOf(tok::arrow, tok::period) &&
678 Current.Type != TT_DesignatedInitializerPeriod)
Alexander Kornienkoffcc0102013-06-05 14:09:10 +0000679 State.Stack.back().LastSpace += Current.CodePointCount;
Daniel Jasper40c36c52013-02-18 11:05:07 +0000680 State.StartOfLineLevel = State.ParenLevel;
Daniel Jasper0e90c3d2013-07-05 09:14:35 +0000681 State.LowestLevelOnLine = State.ParenLevel;
Daniel Jaspercd8599e2013-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 Kornienko1efe0a02013-07-04 14:47:51 +0000688 const FormatToken *TokenBefore = Current.getPreviousNonComment();
Daniel Jasper1b8e76f2013-04-15 22:36:37 +0000689 if (TokenBefore && !TokenBefore->isOneOf(tok::comma, tok::semi) &&
Daniel Jasperc6fbc212013-05-15 09:35:08 +0000690 TokenBefore->Type != TT_TemplateCloser &&
Daniel Jasperd69fc772013-05-08 14:12:04 +0000691 TokenBefore->Type != TT_BinaryOperator && !TokenBefore->opensScope())
Daniel Jasper2cf17bf2013-02-27 09:47:53 +0000692 State.Stack.back().BreakBeforeParameter = true;
693
Daniel Jaspercd8599e2013-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 Jasper571f1af2013-05-14 20:39:56 +0000701 if (!(Previous.isOneOf(tok::l_paren, tok::l_brace) ||
702 Previous.Type == TT_BinaryOperator) ||
Daniel Jaspercd8599e2013-02-23 21:01:55 +0000703 (!Style.AllowAllParametersOfDeclarationOnNextLine &&
704 Line.MustBeDeclaration))
705 State.Stack.back().BreakBeforeParameter = true;
706 }
Daniel Jasper4e9678f2013-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 Jasperf7935112012-12-03 18:12:45 +0000712 } else {
Daniel Jasper62e68172013-02-25 15:59:54 +0000713 if (Current.is(tok::equal) &&
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000714 (RootToken->is(tok::kw_for) || State.ParenLevel == 0) &&
Daniel Jasper31c96b92013-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 Klimek6e6310e2013-05-29 14:47:47 +0000718 const FormatToken *Tok = &Previous;
Alexander Kornienkoffcc0102013-06-05 14:09:10 +0000719 while (Tok && State.Stack.back().VariablePos >= Tok->CodePointCount) {
720 State.Stack.back().VariablePos -= Tok->CodePointCount;
Daniel Jasper31c96b92013-04-05 09:38:50 +0000721 if (Tok->SpacesRequiredBefore != 0)
722 break;
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000723 Tok = Tok->Previous;
Daniel Jasper31c96b92013-04-05 09:38:50 +0000724 }
Daniel Jaspera628c982013-04-03 13:36:17 +0000725 if (Previous.PartOfMultiVariableDeclStmt)
726 State.Stack.back().LastSpace = State.Stack.back().VariablePos;
727 }
Daniel Jasperfbde69e2012-12-21 14:37:20 +0000728
Daniel Jaspereef30492013-02-11 12:36:37 +0000729 unsigned Spaces = State.NextToken->SpacesRequiredBefore;
Daniel Jasper6021c4a2012-12-04 14:54:30 +0000730
Daniel Jasperf7935112012-12-03 18:12:45 +0000731 if (!DryRun)
Manuel Klimek4fe43002013-05-22 12:51:29 +0000732 Whitespaces.replaceWhitespace(Current, 0, Spaces,
733 State.Column + Spaces);
Daniel Jasper6021c4a2012-12-04 14:54:30 +0000734
Daniel Jasper1ac3e052013-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 Kornienkoffcc0102013-06-05 14:09:10 +0000738 State.Column + Spaces + Current.CodePointCount)
Daniel Jasper1ac3e052013-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 Kornienkoffcc0102013-06-05 14:09:10 +0000743 State.Column + Spaces + Current.CodePointCount;
Daniel Jasper1ac3e052013-02-05 10:07:47 +0000744 }
745
Daniel Jasperc04baae2013-04-10 09:49:49 +0000746 if (Previous.opensScope() && Previous.Type != TT_ObjCMethodExpr &&
Daniel Jasper6bee6822013-04-08 20:33:42 +0000747 Current.Type != TT_LineComment)
Daniel Jasper400adc62013-02-08 15:28:42 +0000748 State.Stack.back().Indent = State.Column + Spaces;
Daniel Jaspercc960fa2013-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 Jasper9278eb92013-01-16 14:59:02 +0000752
Daniel Jaspere9de2602012-12-06 09:56:08 +0000753 State.Column += Spaces;
Daniel Jaspera628c982013-04-03 13:36:17 +0000754 if (Current.is(tok::l_paren) && Previous.isOneOf(tok::kw_if, tok::kw_for))
Daniel Jasper39e27382013-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 Jasperd1ae3582013-03-20 12:37:50 +0000758 else if (Previous.is(tok::comma))
Daniel Jasper39e27382013-01-23 20:41:06 +0000759 State.Stack.back().LastSpace = State.Column;
Daniel Jasperca6623b2013-01-28 12:45:14 +0000760 else if ((Previous.Type == TT_BinaryOperator ||
Daniel Jasper65585ed2013-01-28 13:31:35 +0000761 Previous.Type == TT_ConditionalExpr ||
762 Previous.Type == TT_CtorInitializerColon) &&
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000763 !(Previous.getPrecedence() == prec::Assignment &&
Daniel Jasper7b27a102013-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 Jasper20b09ef2013-01-28 09:35:24 +0000767 State.Stack.back().LastSpace = State.Column;
Daniel Jaspereead02b2013-02-14 08:42:54 +0000768 else if (Previous.Type == TT_InheritanceColon)
769 State.Stack.back().Indent = State.Column;
Daniel Jasperbd058882013-07-09 11:57:27 +0000770 else if (Previous.opensScope()) {
771 // If a function has multiple parameters (including a single parameter
Daniel Jasper6cdec7c2013-07-09 14:36:48 +0000772 // that is a binary expression) or a trailing call, indent all
Daniel Jasperbd058882013-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 Jasperf7935112012-12-03 18:12:45 +0000788 }
Daniel Jasper9278eb92013-01-16 14:59:02 +0000789
Daniel Jasper5aad4e52013-07-12 11:37:05 +0000790 return moveStateToNextToken(State, DryRun, Newline) + ExtraPenalty;
Daniel Jasper6021c4a2012-12-04 14:54:30 +0000791 }
Daniel Jasperf7935112012-12-03 18:12:45 +0000792
Daniel Jasper6021c4a2012-12-04 14:54:30 +0000793 /// \brief Mark the next token as consumed in \p State and modify its stacks
794 /// accordingly.
Daniel Jasper5aad4e52013-07-12 11:37:05 +0000795 unsigned moveStateToNextToken(LineState &State, bool DryRun, bool Newline) {
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000796 const FormatToken &Current = *State.NextToken;
Daniel Jasper337816e2013-01-11 10:22:12 +0000797 assert(State.Stack.size());
Daniel Jaspere9de2602012-12-06 09:56:08 +0000798
Daniel Jaspereead02b2013-02-14 08:42:54 +0000799 if (Current.Type == TT_InheritanceColon)
800 State.Stack.back().AvoidBinPacking = true;
Daniel Jasper337816e2013-01-11 10:22:12 +0000801 if (Current.is(tok::lessless) && State.Stack.back().FirstLessLess == 0)
802 State.Stack.back().FirstLessLess = State.Column;
Daniel Jasperaea3bde2013-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 Jasperca6623b2013-01-28 12:45:14 +0000806 if (Current.is(tok::question))
807 State.Stack.back().QuestionColumn = State.Column;
Daniel Jasper0e90c3d2013-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 Jasper37905f72013-02-21 15:00:29 +0000816 if (Current.Type == TT_CtorInitializerColon) {
Manuel Klimek13b97d82013-05-13 08:42:42 +0000817 // Indent 2 from the column, so:
818 // SomeClass::SomeClass()
819 // : First(...), ...
820 // Next(...)
821 // ^ line up here.
Daniel Jaspere33d4af2013-07-26 16:56:36 +0000822 if (!Style.BreakConstructorInitializersBeforeComma)
823 State.Stack.back().Indent = State.Column + 2;
Daniel Jasper37905f72013-02-21 15:00:29 +0000824 if (Style.ConstructorInitializerAllOnOneLineOrOnePerLine)
825 State.Stack.back().AvoidBinPacking = true;
826 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasper8a8ce242013-01-31 14:59:26 +0000827 }
Daniel Jasper5188e6b2013-04-03 07:21:51 +0000828
Daniel Jasper6bee6822013-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 Jasper5188e6b2013-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 Jasperc238c872013-04-02 14:33:13 +0000835 if (Current.Type == TT_ObjCMethodSpecifier)
836 State.Stack.back().Indent += 4;
Daniel Jaspere9de2602012-12-06 09:56:08 +0000837
Daniel Jasper400adc62013-02-08 15:28:42 +0000838 // Insert scopes created by fake parenthesis.
Alexander Kornienko1efe0a02013-07-04 14:47:51 +0000839 const FormatToken *Previous = Current.getPreviousNonComment();
Daniel Jasper6bee6822013-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 Jasperc04baae2013-04-10 09:49:49 +0000845 (Previous && (Previous->opensScope() ||
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000846 Previous->getPrecedence() == prec::Assignment));
Craig Topper61ac9062013-07-08 03:55:09 +0000847 for (SmallVectorImpl<prec::Level>::const_reverse_iterator
Daniel Jasper6bee6822013-04-08 20:33:42 +0000848 I = Current.FakeLParens.rbegin(),
849 E = Current.FakeLParens.rend();
850 I != E; ++I) {
Daniel Jasper400adc62013-02-08 15:28:42 +0000851 ParenState NewParenState = State.Stack.back();
Daniel Jasperee7539a2013-07-08 14:25:23 +0000852 NewParenState.ContainsLineBreak = false;
Daniel Jasper6bee6822013-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 Jaspere33d4af2013-07-26 16:56:36 +0000862 (!SkipFirstExtraIndent && *I > prec::Assignment &&
863 !Style.BreakBeforeBinaryOperators))
Daniel Jasper6bee6822013-04-08 20:33:42 +0000864 NewParenState.Indent += 4;
Daniel Jasperc04baae2013-04-10 09:49:49 +0000865 if (Previous && !Previous->opensScope())
Daniel Jasper6bee6822013-04-08 20:33:42 +0000866 NewParenState.BreakBeforeParameter = false;
Daniel Jasper400adc62013-02-08 15:28:42 +0000867 State.Stack.push_back(NewParenState);
Daniel Jasper6bee6822013-04-08 20:33:42 +0000868 SkipFirstExtraIndent = false;
Daniel Jasper400adc62013-02-08 15:28:42 +0000869 }
870
Daniel Jasper2eda23e2012-12-24 13:43:52 +0000871 // If we encounter an opening (, [, { or <, we add a level to our stacks to
Daniel Jasper6021c4a2012-12-04 14:54:30 +0000872 // prepare for the following tokens.
Daniel Jasperc04baae2013-04-10 09:49:49 +0000873 if (Current.opensScope()) {
Daniel Jasper337816e2013-01-11 10:22:12 +0000874 unsigned NewIndent;
Daniel Jaspercc3044c2013-05-13 09:19:24 +0000875 unsigned LastSpace = State.Stack.back().LastSpace;
Daniel Jasper8a8ce242013-01-31 14:59:26 +0000876 bool AvoidBinPacking;
Manuel Klimek73a2fdf2013-01-10 14:36:46 +0000877 if (Current.is(tok::l_brace)) {
Daniel Jasper6ab54682013-07-16 18:22:10 +0000878 NewIndent =
879 LastSpace + (Style.Cpp11BracedListStyle ? 4 : Style.IndentWidth);
Alexander Kornienko1efe0a02013-07-04 14:47:51 +0000880 const FormatToken *NextNoComment = Current.getNextNonComment();
Daniel Jasperbca4bbe2013-05-28 11:30:49 +0000881 AvoidBinPacking = NextNoComment &&
882 NextNoComment->Type == TT_DesignatedInitializerPeriod;
Manuel Klimek73a2fdf2013-01-10 14:36:46 +0000883 } else {
Daniel Jaspercc3044c2013-05-13 09:19:24 +0000884 NewIndent =
885 4 + std::max(LastSpace, State.Stack.back().StartOfFunctionCall);
Daniel Jasperb10cbc42013-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 Klimek73a2fdf2013-01-10 14:36:46 +0000891 }
Daniel Jaspere3c0e012013-04-25 13:31:51 +0000892
Daniel Jaspercc3044c2013-05-13 09:19:24 +0000893 State.Stack.push_back(ParenState(NewIndent, LastSpace, AvoidBinPacking,
894 State.Stack.back().NoLineBreak));
Daniel Jasper400adc62013-02-08 15:28:42 +0000895 ++State.ParenLevel;
Daniel Jasper6021c4a2012-12-04 14:54:30 +0000896 }
897
Daniel Jasperacc33662013-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 Jasper2eda23e2012-12-24 13:43:52 +0000906 // If we encounter a closing ), ], } or >, we can remove a level from our
Daniel Jasper6021c4a2012-12-04 14:54:30 +0000907 // stacks.
Alexander Kornienko62b85b92013-03-13 14:41:29 +0000908 if (Current.isOneOf(tok::r_paren, tok::r_square) ||
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000909 (Current.is(tok::r_brace) && State.NextToken != RootToken) ||
Daniel Jasper7c85fde2013-01-08 14:56:18 +0000910 State.NextToken->Type == TT_TemplateCloser) {
Daniel Jasper337816e2013-01-11 10:22:12 +0000911 State.Stack.pop_back();
Daniel Jasper400adc62013-02-08 15:28:42 +0000912 --State.ParenLevel;
913 }
Daniel Jasperaea3bde2013-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 Jasperfa21c072013-07-15 14:33:14 +0000918 State.Stack.back().StartOfArraySubscripts = 0;
Daniel Jasperaea3bde2013-07-12 11:19:37 +0000919 }
Daniel Jasper400adc62013-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 Jasper6daabe32013-04-04 19:31:00 +0000923 unsigned VariablePos = State.Stack.back().VariablePos;
Daniel Jasper400adc62013-02-08 15:28:42 +0000924 State.Stack.pop_back();
Daniel Jasper6daabe32013-04-04 19:31:00 +0000925 State.Stack.back().VariablePos = VariablePos;
Daniel Jasperf7935112012-12-03 18:12:45 +0000926 }
Manuel Klimek73a2fdf2013-01-10 14:36:46 +0000927
Daniel Jasper47a04442013-05-13 20:50:15 +0000928 if (Current.is(tok::string_literal) && State.StartOfStringLiteral == 0) {
Manuel Klimek02f640a2013-02-20 15:25:48 +0000929 State.StartOfStringLiteral = State.Column;
Daniel Jasper47a04442013-05-13 20:50:15 +0000930 } else if (!Current.isOneOf(tok::comment, tok::identifier, tok::hash,
931 tok::string_literal)) {
Daniel Jasper7dd22c51b2013-05-16 04:26:02 +0000932 State.StartOfStringLiteral = 0;
Manuel Klimek02f640a2013-02-20 15:25:48 +0000933 }
934
Alexander Kornienkoffcc0102013-06-05 14:09:10 +0000935 State.Column += Current.CodePointCount;
Manuel Klimek1998ea22013-02-20 10:15:13 +0000936
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000937 State.NextToken = State.NextToken->Next;
Manuel Klimek73a2fdf2013-01-10 14:36:46 +0000938
Daniel Jasper5aad4e52013-07-12 11:37:05 +0000939 if (!Newline && Style.AlwaysBreakBeforeMultilineStrings &&
Daniel Jasper3dcd7ec2013-08-02 11:01:15 +0000940 Current.is(tok::string_literal) && Current.CanBreakBefore)
Daniel Jasper5aad4e52013-07-12 11:37:05 +0000941 return 0;
942
Manuel Klimek1998ea22013-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 Klimek5ecb5fd2013-05-14 09:04:24 +0000948 ///
949 /// \returns An extra penalty if a token was broken, otherwise 0.
950 ///
Alexander Kornienkoaa620e12013-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 Klimek6e6310e2013-05-29 14:47:47 +0000955 unsigned breakProtrudingToken(const FormatToken &Current, LineState &State,
Manuel Klimek4fe43002013-05-22 12:51:29 +0000956 bool DryRun) {
Alexander Kornienkocb45bc12013-04-15 14:28:00 +0000957 llvm::OwningPtr<BreakableToken> Token;
Alexander Kornienkoffcc0102013-06-05 14:09:10 +0000958 unsigned StartColumn = State.Column - Current.CodePointCount;
Manuel Klimek591ab5a2013-05-28 13:42:28 +0000959 unsigned OriginalStartColumn =
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000960 SourceMgr.getSpellingColumnNumber(Current.getStartOfNonWhitespace()) -
Manuel Klimek591ab5a2013-05-28 13:42:28 +0000961 1;
Manuel Klimek9043c742013-05-27 15:23:34 +0000962
Daniel Jasper8bb99e82013-05-16 12:59:13 +0000963 if (Current.is(tok::string_literal) &&
964 Current.Type != TT_ImplicitStringLiteral) {
Alexander Kornienkocb45bc12013-04-15 14:28:00 +0000965 // Only break up default narrow strings.
Alexander Kornienkobe633902013-06-14 11:46:10 +0000966 if (!Current.TokenText.startswith("\""))
Alexander Kornienkocb45bc12013-04-15 14:28:00 +0000967 return 0;
Alexander Kornienko657c67b2013-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 Jasper8369aa52013-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 Kornienkocb45bc12013-04-15 14:28:00 +0000977
Alexander Kornienkobe633902013-06-14 11:46:10 +0000978 Token.reset(new BreakableStringLiteral(Current, StartColumn,
979 Line.InPPDirective, Encoding));
Alexander Kornienko94042342013-07-16 23:47:22 +0000980 } else if (Current.Type == TT_BlockComment && Current.isTrailingComment()) {
Alexander Kornienkobe633902013-06-14 11:46:10 +0000981 Token.reset(new BreakableBlockComment(
Alexander Kornienkoffcc0102013-06-05 14:09:10 +0000982 Style, Current, StartColumn, OriginalStartColumn, !Current.Previous,
Alexander Kornienkobe633902013-06-14 11:46:10 +0000983 Line.InPPDirective, Encoding));
Daniel Jasper4a4be012013-05-06 10:24:51 +0000984 } else if (Current.Type == TT_LineComment &&
Manuel Klimek6e6310e2013-05-29 14:47:47 +0000985 (Current.Previous == NULL ||
986 Current.Previous->Type != TT_ImplicitStringLiteral)) {
Alexander Kornienko657c67b2013-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 Kornienkobe633902013-06-14 11:46:10 +00001004 Token.reset(new BreakableLineComment(Current, StartColumn,
1005 Line.InPPDirective, Encoding));
Alexander Kornienkocb45bc12013-04-15 14:28:00 +00001006 } else {
Manuel Klimek4fe43002013-05-22 12:51:29 +00001007 return 0;
Alexander Kornienkocb45bc12013-04-15 14:28:00 +00001008 }
Alexander Kornienkobe633902013-06-14 11:46:10 +00001009 if (Current.UnbreakableTailLength >= getColumnLimit())
Manuel Klimek5ecb5fd2013-05-14 09:04:24 +00001010 return 0;
Alexander Kornienkocb45bc12013-04-15 14:28:00 +00001011
Alexander Kornienkoa3555e22013-06-19 19:50:11 +00001012 unsigned RemainingSpace = getColumnLimit() - Current.UnbreakableTailLength;
Alexander Kornienkocb45bc12013-04-15 14:28:00 +00001013 bool BreakInserted = false;
1014 unsigned Penalty = 0;
Alexander Kornienkoa3555e22013-06-19 19:50:11 +00001015 unsigned RemainingTokenColumns = 0;
Manuel Klimek9043c742013-05-27 15:23:34 +00001016 for (unsigned LineIndex = 0, EndIndex = Token->getLineCount();
1017 LineIndex != EndIndex; ++LineIndex) {
Alexander Kornienkobe633902013-06-14 11:46:10 +00001018 if (!DryRun)
1019 Token->replaceWhitespaceBefore(LineIndex, Whitespaces);
Alexander Kornienkocb45bc12013-04-15 14:28:00 +00001020 unsigned TailOffset = 0;
Alexander Kornienkoa3555e22013-06-19 19:50:11 +00001021 RemainingTokenColumns = Token->getLineLengthAfterSplit(
Alexander Kornienkodd7ece52013-06-07 16:02:52 +00001022 LineIndex, TailOffset, StringRef::npos);
Alexander Kornienkoffcc0102013-06-05 14:09:10 +00001023 while (RemainingTokenColumns > RemainingSpace) {
Alexander Kornienkocb45bc12013-04-15 14:28:00 +00001024 BreakableToken::Split Split =
Manuel Klimek4fe43002013-05-22 12:51:29 +00001025 Token->getSplit(LineIndex, TailOffset, getColumnLimit());
Alexander Kornienkoaa620e12013-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 Kornienkocb45bc12013-04-15 14:28:00 +00001031 break;
Alexander Kornienkoaa620e12013-07-01 13:42:42 +00001032 }
Alexander Kornienkocb45bc12013-04-15 14:28:00 +00001033 assert(Split.first != 0);
Alexander Kornienkoffcc0102013-06-05 14:09:10 +00001034 unsigned NewRemainingTokenColumns = Token->getLineLengthAfterSplit(
Alexander Kornienkodd7ece52013-06-07 16:02:52 +00001035 LineIndex, TailOffset + Split.first + Split.second,
1036 StringRef::npos);
Alexander Kornienkoffcc0102013-06-05 14:09:10 +00001037 assert(NewRemainingTokenColumns < RemainingTokenColumns);
Alexander Kornienkobe633902013-06-14 11:46:10 +00001038 if (!DryRun)
1039 Token->insertBreak(LineIndex, TailOffset, Split, Whitespaces);
Alexander Kornienkodd7ece52013-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 Kornienkocb45bc12013-04-15 14:28:00 +00001048 TailOffset += Split.first + Split.second;
Alexander Kornienkoffcc0102013-06-05 14:09:10 +00001049 RemainingTokenColumns = NewRemainingTokenColumns;
Alexander Kornienkocb45bc12013-04-15 14:28:00 +00001050 BreakInserted = true;
Manuel Klimek1998ea22013-02-20 10:15:13 +00001051 }
Alexander Kornienkocb45bc12013-04-15 14:28:00 +00001052 }
1053
Alexander Kornienkoa3555e22013-06-19 19:50:11 +00001054 State.Column = RemainingTokenColumns;
1055
Alexander Kornienkocb45bc12013-04-15 14:28:00 +00001056 if (BreakInserted) {
Alexander Kornienko4d26b6e2013-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 Kornienkocb45bc12013-04-15 14:28:00 +00001065 State.Stack.back().LastSpace = StartColumn;
Manuel Klimek1998ea22013-02-20 10:15:13 +00001066 }
Manuel Klimek1998ea22013-02-20 10:15:13 +00001067 return Penalty;
1068 }
1069
Daniel Jasper2df93312013-01-09 10:16:05 +00001070 unsigned getColumnLimit() {
Alexander Kornienkocb45bc12013-04-15 14:28:00 +00001071 // In preprocessor directives reserve two chars for trailing " \"
1072 return Style.ColumnLimit - (Line.InPPDirective ? 2 : 0);
Daniel Jasper2df93312013-01-09 10:16:05 +00001073 }
1074
Manuel Klimek2ef908e2013-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 Jasper12ef4e52013-02-21 21:33:55 +00001079 : State(State), NewLine(NewLine), Previous(Previous) {}
Manuel Klimek2ef908e2013-02-13 10:46:36 +00001080 LineState State;
1081 bool NewLine;
1082 StateNode *Previous;
1083 };
Daniel Jasper4b866272013-02-01 11:00:45 +00001084
Manuel Klimek2ef908e2013-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 Jasper4b866272013-02-01 11:00:45 +00001099
1100 /// \brief Analyze the entire solution space starting from \p InitialState.
Daniel Jasperf7935112012-12-03 18:12:45 +00001101 ///
Daniel Jasper4b866272013-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 Klimek4fe43002013-05-22 12:51:29 +00001106 void analyzeSolutionSpace(LineState &InitialState) {
Manuel Klimek2ef908e2013-02-13 10:46:36 +00001107 std::set<LineState> Seen;
1108
Daniel Jasper4b866272013-02-01 11:00:45 +00001109 // Insert start element into queue.
Daniel Jasper687af3b2013-02-14 14:26:07 +00001110 StateNode *Node =
Manuel Klimek2ef908e2013-02-13 10:46:36 +00001111 new (Allocator.Allocate()) StateNode(InitialState, false, NULL);
1112 Queue.push(QueueItem(OrderedPenalty(0, Count), Node));
1113 ++Count;
Daniel Jasper4b866272013-02-01 11:00:45 +00001114
1115 // While not empty, take first element and follow edges.
1116 while (!Queue.empty()) {
Manuel Klimek2ef908e2013-02-13 10:46:36 +00001117 unsigned Penalty = Queue.top().first.first;
Daniel Jasper687af3b2013-02-14 14:26:07 +00001118 StateNode *Node = Queue.top().second;
Manuel Klimek2ef908e2013-02-13 10:46:36 +00001119 if (Node->State.NextToken == NULL) {
Alexander Kornienko49149672013-05-10 11:56:10 +00001120 DEBUG(llvm::dbgs() << "\n---\nPenalty for line: " << Penalty << "\n");
Daniel Jasper4b866272013-02-01 11:00:45 +00001121 break;
Daniel Jasper3a9370c2013-02-04 07:21:18 +00001122 }
Manuel Klimek2ef908e2013-02-13 10:46:36 +00001123 Queue.pop();
Daniel Jasper4b866272013-02-01 11:00:45 +00001124
Daniel Jasperf8114cf2013-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 Klimek2ef908e2013-02-13 10:46:36 +00001130 if (!Seen.insert(Node->State).second)
1131 // State already examined with lower penalty.
1132 continue;
Daniel Jasper4b866272013-02-01 11:00:45 +00001133
Nico Weber9096fc02013-06-26 00:30:14 +00001134 addNextStateToQueue(Penalty, Node, /*NewLine=*/false);
1135 addNextStateToQueue(Penalty, Node, /*NewLine=*/true);
Daniel Jasper4b866272013-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 Klimek4fe43002013-05-22 12:51:29 +00001141 return;
Daniel Jasperf7935112012-12-03 18:12:45 +00001142
Daniel Jasper4b866272013-02-01 11:00:45 +00001143 // Reconstruct the solution.
Manuel Klimek2ef908e2013-02-13 10:46:36 +00001144 reconstructPath(InitialState, Queue.top().second);
Alexander Kornienko49149672013-05-10 11:56:10 +00001145 DEBUG(llvm::dbgs() << "Total number of analyzed states: " << Count << "\n");
1146 DEBUG(llvm::dbgs() << "---\n");
Manuel Klimek2ef908e2013-02-13 10:46:36 +00001147 }
1148
1149 void reconstructPath(LineState &State, StateNode *Current) {
Manuel Klimek4c5c28b2013-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 Jasper4b866272013-02-01 11:00:45 +00001167 }
1168
Manuel Klimekaf491072013-02-13 10:54:19 +00001169 /// \brief Add the following state to the analysis queue \c Queue.
Daniel Jasper4b866272013-02-01 11:00:45 +00001170 ///
Manuel Klimekaf491072013-02-13 10:54:19 +00001171 /// Assume the current state is \p PreviousNode and has been reached with a
Daniel Jasper4b866272013-02-01 11:00:45 +00001172 /// penalty of \p Penalty. Insert a line break if \p NewLine is \c true.
Manuel Klimekaf491072013-02-13 10:54:19 +00001173 void addNextStateToQueue(unsigned Penalty, StateNode *PreviousNode,
1174 bool NewLine) {
Manuel Klimek2ef908e2013-02-13 10:46:36 +00001175 if (NewLine && !canBreak(PreviousNode->State))
Daniel Jasper4b866272013-02-01 11:00:45 +00001176 return;
Manuel Klimek2ef908e2013-02-13 10:46:36 +00001177 if (!NewLine && mustBreak(PreviousNode->State))
Daniel Jasper4b866272013-02-01 11:00:45 +00001178 return;
Daniel Jasperee7539a2013-07-08 14:25:23 +00001179 if (NewLine) {
1180 if (!PreviousNode->State.Stack.back().ContainsLineBreak)
1181 Penalty += 15;
Manuel Klimek2ef908e2013-02-13 10:46:36 +00001182 Penalty += PreviousNode->State.NextToken->SplitPenalty;
Daniel Jasperee7539a2013-07-08 14:25:23 +00001183 }
Manuel Klimek2ef908e2013-02-13 10:46:36 +00001184
1185 StateNode *Node = new (Allocator.Allocate())
1186 StateNode(PreviousNode->State, NewLine, PreviousNode);
Manuel Klimek1998ea22013-02-20 10:15:13 +00001187 Penalty += addTokenToState(NewLine, true, Node->State);
Manuel Klimek2ef908e2013-02-13 10:46:36 +00001188 if (Node->State.Column > getColumnLimit()) {
1189 unsigned ExcessCharacters = Node->State.Column - getColumnLimit();
Daniel Jasper3a9370c2013-02-04 07:21:18 +00001190 Penalty += Style.PenaltyExcessCharacter * ExcessCharacters;
Daniel Jasper2df93312013-01-09 10:16:05 +00001191 }
Manuel Klimek2ef908e2013-02-13 10:46:36 +00001192
1193 Queue.push(QueueItem(OrderedPenalty(Penalty, Count), Node));
1194 ++Count;
Daniel Jasper4b866272013-02-01 11:00:45 +00001195 }
Daniel Jasperf7935112012-12-03 18:12:45 +00001196
Daniel Jasper4b866272013-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 Klimek6e6310e2013-05-29 14:47:47 +00001199 const FormatToken &Current = *State.NextToken;
1200 const FormatToken &Previous = *Current.Previous;
1201 assert(&Previous == Current.Previous);
Daniel Jasper473c62c2013-05-17 09:35:01 +00001202 if (!Current.CanBreakBefore &&
1203 !(Current.is(tok::r_brace) &&
Daniel Jasper4b866272013-02-01 11:00:45 +00001204 State.Stack.back().BreakBeforeClosingBrace))
1205 return false;
Daniel Jasper473c62c2013-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 Klimek6e6310e2013-05-29 14:47:47 +00001209 Previous.Previous &&
1210 Previous.Previous->isOneOf(tok::l_brace, tok::l_paren, tok::comma))
Daniel Jasper473c62c2013-05-17 09:35:01 +00001211 return false;
Daniel Jasper32a796b2013-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 Jasper0e90c3d2013-07-05 09:14:35 +00001217 if (Previous.opensScope() &&
1218 State.LowestLevelOnLine < State.StartOfLineLevel)
Daniel Jasper32a796b2013-05-27 11:50:16 +00001219 return false;
Daniel Jaspercc960fa2013-04-22 07:59:53 +00001220 return !State.Stack.back().NoLineBreak;
Daniel Jasper4b866272013-02-01 11:00:45 +00001221 }
Daniel Jasperf7935112012-12-03 18:12:45 +00001222
Daniel Jasper4b866272013-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 Klimek6e6310e2013-05-29 14:47:47 +00001225 const FormatToken &Current = *State.NextToken;
1226 const FormatToken &Previous = *Current.Previous;
Daniel Jasperd69fc772013-05-08 14:12:04 +00001227 if (Current.MustBreakBefore || Current.Type == TT_InlineASMColon)
Daniel Jasper4b866272013-02-01 11:00:45 +00001228 return true;
Daniel Jasper6ab54682013-07-16 18:22:10 +00001229 if (!Style.Cpp11BracedListStyle && Current.is(tok::r_brace) &&
1230 State.Stack.back().BreakBeforeClosingBrace)
1231 return true;
Daniel Jasperd69fc772013-05-08 14:12:04 +00001232 if (Previous.is(tok::semi) && State.LineContainsContinuedForLoopSection)
Daniel Jasper4b866272013-02-01 11:00:45 +00001233 return true;
Daniel Jaspere33d4af2013-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 Jasperd69fc772013-05-08 14:12:04 +00001240 if ((Previous.isOneOf(tok::comma, tok::semi) || Current.is(tok::question) ||
Daniel Jasperb1ae7342013-08-01 22:05:00 +00001241 (Current.Type == TT_ConditionalExpr &&
1242 !(Current.is(tok::colon) && Previous.is(tok::question)))) &&
Daniel Jasperacc33662013-02-08 08:22:00 +00001243 State.Stack.back().BreakBeforeParameter &&
Daniel Jasperd69fc772013-05-08 14:12:04 +00001244 !Current.isTrailingComment() &&
1245 !Current.isOneOf(tok::r_paren, tok::r_brace))
Daniel Jasper4b866272013-02-01 11:00:45 +00001246 return true;
Daniel Jasperc834c702013-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 Jasperd69fc772013-05-08 14:12:04 +00001255
Daniel Jaspere33d4af2013-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 Jasperd69fc772013-05-08 14:12:04 +00001284
Daniel Jasper77d5d312013-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 Jasperd69fc772013-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 Jasper4b866272013-02-01 11:00:45 +00001295 return true;
Daniel Jasperd69fc772013-05-08 14:12:04 +00001296 if ((Current.Type == TT_CtorInitializerColon ||
1297 (Previous.ClosesTemplateDeclaration && State.ParenLevel == 0)))
Daniel Jasper40aacf42013-03-14 13:45:21 +00001298 return true;
Daniel Jasperd69fc772013-05-08 14:12:04 +00001299
Daniel Jasper6331da02013-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 Jasperc6fbc212013-05-15 09:35:08 +00001303 return true;
Daniel Jasper4b866272013-02-01 11:00:45 +00001304 return false;
Daniel Jasperf7935112012-12-03 18:12:45 +00001305 }
1306
Daniel Jasper9b334242013-03-15 14:57:30 +00001307 // Returns the total number of columns required for the remaining tokens.
1308 unsigned getRemainingLength(const LineState &State) {
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001309 if (State.NextToken && State.NextToken->Previous)
1310 return Line.Last->TotalLength - State.NextToken->Previous->TotalLength;
Daniel Jasper9b334242013-03-15 14:57:30 +00001311 return 0;
1312 }
1313
Daniel Jasperf7935112012-12-03 18:12:45 +00001314 FormatStyle Style;
1315 SourceManager &SourceMgr;
Daniel Jasperf1e4b7d2013-01-14 13:08:07 +00001316 const AnnotatedLine &Line;
Manuel Klimek0b689fd2013-01-10 18:45:26 +00001317 const unsigned FirstIndent;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001318 const FormatToken *RootToken;
Daniel Jasperaa701fa2013-01-18 08:44:07 +00001319 WhitespaceManager &Whitespaces;
Manuel Klimekaf491072013-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 Kornienkoffcc0102013-06-05 14:09:10 +00001326 encoding::Encoding Encoding;
Daniel Jasperb10cbc42013-07-10 14:02:49 +00001327 bool BinPackInconclusiveFunctions;
Daniel Jasperf7935112012-12-03 18:12:45 +00001328};
1329
Manuel Klimek15dfe7a2013-05-28 11:55:06 +00001330class FormatTokenLexer {
Alexander Kornienkoe3276842012-12-07 16:15:44 +00001331public:
Alexander Kornienkoffcc0102013-06-05 14:09:10 +00001332 FormatTokenLexer(Lexer &Lex, SourceManager &SourceMgr,
1333 encoding::Encoding Encoding)
Manuel Klimek15dfe7a2013-05-28 11:55:06 +00001334 : FormatTok(NULL), GreaterStashed(false), TrailingWhitespace(0), Lex(Lex),
Daniel Jasper8b1c6352013-08-01 17:58:23 +00001335 SourceMgr(SourceMgr), IdentTable(getFormattingLangOpts()),
Alexander Kornienkoffcc0102013-06-05 14:09:10 +00001336 Encoding(Encoding) {
Alexander Kornienkoe3276842012-12-07 16:15:44 +00001337 Lex.SetKeepWhitespaceMode(true);
1338 }
1339
Manuel Klimek15dfe7a2013-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 Kornienkoe3276842012-12-07 16:15:44 +00001352 if (GreaterStashed) {
Manuel Klimek591ab5a2013-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 Klimek5c24cca2013-05-23 10:56:37 +00001357 SourceLocation GreaterLocation =
Manuel Klimek15dfe7a2013-05-28 11:55:06 +00001358 FormatTok->Tok.getLocation().getLocWithOffset(1);
1359 FormatTok->WhitespaceRange =
1360 SourceRange(GreaterLocation, GreaterLocation);
Alexander Kornienkoee4ca9b2013-06-07 17:45:07 +00001361 FormatTok->TokenText = ">";
Alexander Kornienkoffcc0102013-06-05 14:09:10 +00001362 FormatTok->CodePointCount = 1;
Alexander Kornienkoe3276842012-12-07 16:15:44 +00001363 GreaterStashed = false;
1364 return FormatTok;
1365 }
1366
Manuel Klimek15dfe7a2013-05-28 11:55:06 +00001367 FormatTok = new (Allocator.Allocate()) FormatToken;
Daniel Jasper8369aa52013-07-16 20:28:33 +00001368 readRawToken(*FormatTok);
Manuel Klimek9043c742013-05-27 15:23:34 +00001369 SourceLocation WhitespaceStart =
Manuel Klimek15dfe7a2013-05-28 11:55:06 +00001370 FormatTok->Tok.getLocation().getLocWithOffset(-TrailingWhitespace);
Manuel Klimek5c24cca2013-05-23 10:56:37 +00001371 if (SourceMgr.getFileOffset(WhitespaceStart) == 0)
Manuel Klimek15dfe7a2013-05-28 11:55:06 +00001372 FormatTok->IsFirst = true;
Alexander Kornienkoe3276842012-12-07 16:15:44 +00001373
1374 // Consume and record whitespace until we find a significant token.
Manuel Klimek9043c742013-05-27 15:23:34 +00001375 unsigned WhitespaceLength = TrailingWhitespace;
Manuel Klimek15dfe7a2013-05-28 11:55:06 +00001376 while (FormatTok->Tok.is(tok::unknown)) {
Daniel Jasper8369aa52013-07-16 20:28:33 +00001377 unsigned Newlines = FormatTok->TokenText.count('\n');
Daniel Jasper973c9422013-03-04 13:43:19 +00001378 if (Newlines > 0)
Daniel Jasper8369aa52013-07-16 20:28:33 +00001379 FormatTok->LastNewlineOffset =
1380 WhitespaceLength + FormatTok->TokenText.rfind('\n') + 1;
Manuel Klimek15dfe7a2013-05-28 11:55:06 +00001381 FormatTok->NewlinesBefore += Newlines;
Daniel Jasper8369aa52013-07-16 20:28:33 +00001382 unsigned EscapedNewlines = FormatTok->TokenText.count("\\\n");
Manuel Klimek15dfe7a2013-05-28 11:55:06 +00001383 FormatTok->HasUnescapedNewline |= EscapedNewlines != Newlines;
1384 WhitespaceLength += FormatTok->Tok.getLength();
Alexander Kornienkoe3276842012-12-07 16:15:44 +00001385
Daniel Jasper8369aa52013-07-16 20:28:33 +00001386 readRawToken(*FormatTok);
Manuel Klimek1abf7892013-01-04 23:34:14 +00001387 }
Manuel Klimekef920692013-01-07 07:56:50 +00001388
Manuel Klimek1abf7892013-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 Jasper8369aa52013-07-16 20:28:33 +00001395 while (FormatTok->TokenText.size() > 1 && FormatTok->TokenText[0] == '\\' &&
1396 FormatTok->TokenText[1] == '\n') {
Manuel Klimek15dfe7a2013-05-28 11:55:06 +00001397 // FIXME: ++FormatTok->NewlinesBefore is missing...
Manuel Klimek5c24cca2013-05-23 10:56:37 +00001398 WhitespaceLength += 2;
Daniel Jasper8369aa52013-07-16 20:28:33 +00001399 FormatTok->TokenText = FormatTok->TokenText.substr(2);
Alexander Kornienkoe3276842012-12-07 16:15:44 +00001400 }
1401
Alexander Kornienkoee4ca9b2013-06-07 17:45:07 +00001402 TrailingWhitespace = 0;
1403 if (FormatTok->Tok.is(tok::comment)) {
Daniel Jasper8369aa52013-07-16 20:28:33 +00001404 StringRef UntrimmedText = FormatTok->TokenText;
1405 FormatTok->TokenText = FormatTok->TokenText.rtrim();
1406 TrailingWhitespace = UntrimmedText.size() - FormatTok->TokenText.size();
Alexander Kornienkoee4ca9b2013-06-07 17:45:07 +00001407 } else if (FormatTok->Tok.is(tok::raw_identifier)) {
Daniel Jasper8369aa52013-07-16 20:28:33 +00001408 IdentifierInfo &Info = IdentTable.get(FormatTok->TokenText);
Manuel Klimek15dfe7a2013-05-28 11:55:06 +00001409 FormatTok->Tok.setIdentifierInfo(&Info);
1410 FormatTok->Tok.setKind(Info.getTokenID());
Alexander Kornienkoee4ca9b2013-06-07 17:45:07 +00001411 } else if (FormatTok->Tok.is(tok::greatergreater)) {
Manuel Klimek15dfe7a2013-05-28 11:55:06 +00001412 FormatTok->Tok.setKind(tok::greater);
Daniel Jasper8369aa52013-07-16 20:28:33 +00001413 FormatTok->TokenText = FormatTok->TokenText.substr(0, 1);
Alexander Kornienkoe3276842012-12-07 16:15:44 +00001414 GreaterStashed = true;
1415 }
1416
Alexander Kornienkoee4ca9b2013-06-07 17:45:07 +00001417 // Now FormatTok is the next non-whitespace token.
Daniel Jasper8369aa52013-07-16 20:28:33 +00001418 FormatTok->CodePointCount =
1419 encoding::getCodePointCount(FormatTok->TokenText, Encoding);
Alexander Kornienkoffcc0102013-06-05 14:09:10 +00001420
Manuel Klimek15dfe7a2013-05-28 11:55:06 +00001421 FormatTok->WhitespaceRange = SourceRange(
Manuel Klimek5c24cca2013-05-23 10:56:37 +00001422 WhitespaceStart, WhitespaceStart.getLocWithOffset(WhitespaceLength));
Alexander Kornienkoe3276842012-12-07 16:15:44 +00001423 return FormatTok;
1424 }
1425
Manuel Klimek15dfe7a2013-05-28 11:55:06 +00001426 FormatToken *FormatTok;
Alexander Kornienkoe3276842012-12-07 16:15:44 +00001427 bool GreaterStashed;
Manuel Klimek9043c742013-05-27 15:23:34 +00001428 unsigned TrailingWhitespace;
Alexander Kornienkoe3276842012-12-07 16:15:44 +00001429 Lexer &Lex;
1430 SourceManager &SourceMgr;
1431 IdentifierTable IdentTable;
Alexander Kornienkoffcc0102013-06-05 14:09:10 +00001432 encoding::Encoding Encoding;
Manuel Klimek15dfe7a2013-05-28 11:55:06 +00001433 llvm::SpecificBumpPtrAllocator<FormatToken> Allocator;
1434 SmallVector<FormatToken *, 16> Tokens;
Alexander Kornienkoe3276842012-12-07 16:15:44 +00001435
Daniel Jasper8369aa52013-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 Kornienkoe3276842012-12-07 16:15:44 +00001448 }
1449};
1450
Daniel Jasperf7935112012-12-03 18:12:45 +00001451class Formatter : public UnwrappedLineConsumer {
1452public:
Daniel Jasperd2ae41a2013-05-15 08:14:19 +00001453 Formatter(const FormatStyle &Style, Lexer &Lex, SourceManager &SourceMgr,
Daniel Jasperf7935112012-12-03 18:12:45 +00001454 const std::vector<CharSourceRange> &Ranges)
Daniel Jasperd2ae41a2013-05-15 08:14:19 +00001455 : Style(Style), Lex(Lex), SourceMgr(SourceMgr),
Alexander Kornienkoffcc0102013-06-05 14:09:10 +00001456 Whitespaces(SourceMgr, Style), Ranges(Ranges),
1457 Encoding(encoding::detectEncoding(Lex.getBuffer())) {
Daniel Jasperfa21c072013-07-15 14:33:14 +00001458 DEBUG(llvm::dbgs() << "File encoding: "
1459 << (Encoding == encoding::Encoding_UTF8 ? "UTF8"
1460 : "unknown")
1461 << "\n");
Alexander Kornienkoffcc0102013-06-05 14:09:10 +00001462 }
Daniel Jasperf7935112012-12-03 18:12:45 +00001463
Daniel Jasperfd8c4b12013-01-11 14:23:32 +00001464 virtual ~Formatter() {}
Daniel Jasper61bd3a12012-12-04 21:05:31 +00001465
Alexander Kornienko62b85b92013-03-13 14:41:29 +00001466 tooling::Replacements format() {
Alexander Kornienkoffcc0102013-06-05 14:09:10 +00001467 FormatTokenLexer Tokens(Lex, SourceMgr, Encoding);
Manuel Klimek15dfe7a2013-05-28 11:55:06 +00001468
1469 UnwrappedLineParser Parser(Style, Tokens.lex(), *this);
Manuel Klimek1a18c402013-04-12 14:13:36 +00001470 bool StructuralError = Parser.parse();
Alexander Kornienkoffcc0102013-06-05 14:09:10 +00001471 TokenAnnotator Annotator(Style, Tokens.getIdentTable().get("in"));
Alexander Kornienko62b85b92013-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 Jasperb67cc422013-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 Kornienko1efe0a02013-07-04 14:47:51 +00001482 const AnnotatedLine *NextNonCommentLine = NULL;
Daniel Jasperb67cc422013-04-09 17:46:55 +00001483 for (unsigned i = AnnotatedLines.size() - 1; i > 0; --i) {
Alexander Kornienko1efe0a02013-07-04 14:47:51 +00001484 if (NextNonCommentLine && AnnotatedLines[i].First->is(tok::comment) &&
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001485 !AnnotatedLines[i].First->Next)
Alexander Kornienko1efe0a02013-07-04 14:47:51 +00001486 AnnotatedLines[i].Level = NextNonCommentLine->Level;
Daniel Jasperb67cc422013-04-09 17:46:55 +00001487 else
Daniel Jasper3ac9b9e2013-07-08 14:34:09 +00001488 NextNonCommentLine = AnnotatedLines[i].First->isNot(tok::r_brace)
1489 ? &AnnotatedLines[i]
1490 : NULL;
Daniel Jasperb67cc422013-04-09 17:46:55 +00001491 }
1492
Alexander Kornienko62b85b92013-03-13 14:41:29 +00001493 std::vector<int> IndentForLevel;
1494 bool PreviousLineWasTouched = false;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001495 const FormatToken *PreviousLineLastToken = 0;
Daniel Jasper1cb530f2013-05-10 13:00:49 +00001496 bool FormatPPDirective = false;
Alexander Kornienko62b85b92013-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 Klimek6e6310e2013-05-29 14:47:47 +00001501 const FormatToken *FirstTok = TheLine.First;
1502 int Offset = getIndentOffset(*TheLine.First);
Daniel Jasper1cb530f2013-05-10 13:00:49 +00001503
1504 // Check whether this line is part of a formatted preprocessor directive.
Manuel Klimek591ab5a2013-05-28 13:42:28 +00001505 if (FirstTok->HasUnescapedNewline)
Daniel Jasper1cb530f2013-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 Jasper12f9d8e2013-05-14 09:30:02 +00001511 // Determine indent and try to merge multiple unwrapped lines.
Alexander Kornienko62b85b92013-03-13 14:41:29 +00001512 while (IndentForLevel.size() <= TheLine.Level)
1513 IndentForLevel.push_back(-1);
1514 IndentForLevel.resize(TheLine.Level + 1);
Daniel Jasper12f9d8e2013-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 Klimek591ab5a2013-05-28 13:42:28 +00001520 bool WasMoved = PreviousLineWasTouched && FirstTok->NewlinesBefore == 0;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001521 if (TheLine.First->is(tok::eof)) {
Alexander Kornienko62b85b92013-03-13 14:41:29 +00001522 if (PreviousLineWasTouched) {
Manuel Klimek591ab5a2013-05-28 13:42:28 +00001523 unsigned NewLines = std::min(FirstTok->NewlinesBefore, 1u);
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001524 Whitespaces.replaceWhitespace(*TheLine.First, NewLines, /*Indent*/ 0,
Manuel Klimek4fe43002013-05-22 12:51:29 +00001525 /*TargetColumn*/ 0);
Alexander Kornienko62b85b92013-03-13 14:41:29 +00001526 }
1527 } else if (TheLine.Type != LT_Invalid &&
Daniel Jasper1cb530f2013-05-10 13:00:49 +00001528 (WasMoved || FormatPPDirective || touchesLine(TheLine))) {
Alexander Kornienko62b85b92013-03-13 14:41:29 +00001529 unsigned LevelIndent = getIndent(IndentForLevel, TheLine.Level);
Manuel Klimek591ab5a2013-05-28 13:42:28 +00001530 if (FirstTok->WhitespaceRange.isValid() &&
Manuel Klimek1a18c402013-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 Klimek591ab5a2013-05-28 13:42:28 +00001533 (FirstTok->NewlinesBefore == 0 || !StructuralError)) {
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001534 formatFirstToken(*TheLine.First, PreviousLineLastToken, Indent,
Manuel Klimek4fe43002013-05-22 12:51:29 +00001535 TheLine.InPPDirective);
Manuel Klimek1a18c402013-04-12 14:13:36 +00001536 } else {
1537 Indent = LevelIndent =
Manuel Klimek591ab5a2013-05-28 13:42:28 +00001538 SourceMgr.getSpellingColumnNumber(FirstTok->Tok.getLocation()) -
1539 1;
Alexander Kornienko62b85b92013-03-13 14:41:29 +00001540 }
Alexander Kornienko62b85b92013-03-13 14:41:29 +00001541 UnwrappedLineFormatter Formatter(Style, SourceMgr, TheLine, Indent,
Daniel Jasperb10cbc42013-07-10 14:02:49 +00001542 TheLine.First, Whitespaces, Encoding,
1543 BinPackInconclusiveFunctions);
Manuel Klimek4fe43002013-05-22 12:51:29 +00001544 Formatter.format(I + 1 != E ? &*(I + 1) : NULL);
Alexander Kornienko62b85b92013-03-13 14:41:29 +00001545 IndentForLevel[TheLine.Level] = LevelIndent;
1546 PreviousLineWasTouched = true;
1547 } else {
Manuel Klimek4fe43002013-05-22 12:51:29 +00001548 // Format the first token if necessary, and notify the WhitespaceManager
1549 // about the unchanged whitespace.
Manuel Klimek6e6310e2013-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 Klimek4fe43002013-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 Klimek6e6310e2013-05-29 14:47:47 +00001562 Whitespaces.addUntouchableToken(*Tok, TheLine.InPPDirective);
Manuel Klimek4fe43002013-05-22 12:51:29 +00001563 }
Daniel Jasper12f9d8e2013-05-14 09:30:02 +00001564
Manuel Klimek4fe43002013-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 Klimek6e6310e2013-05-29 14:47:47 +00001570 Whitespaces.addUntouchableToken(*Tok, TheLine.InPPDirective);
Manuel Klimek4fe43002013-05-22 12:51:29 +00001571 }
Alexander Kornienko62b85b92013-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 Kornienko62b85b92013-03-13 14:41:29 +00001576 PreviousLineWasTouched = false;
1577 }
Alexander Kornienkofd433362013-03-27 17:08:02 +00001578 PreviousLineLastToken = I->Last;
Alexander Kornienko62b85b92013-03-13 14:41:29 +00001579 }
1580 return Whitespaces.generateReplacements();
1581 }
1582
1583private:
Daniel Jasper7fce3ab2013-02-06 14:22:40 +00001584 void deriveLocalStyle() {
1585 unsigned CountBoundToVariable = 0;
1586 unsigned CountBoundToType = 0;
1587 bool HasCpp03IncompatibleFormat = false;
Daniel Jasperb10cbc42013-07-10 14:02:49 +00001588 bool HasBinPackedFunction = false;
1589 bool HasOnePerLineFunction = false;
Daniel Jasper7fce3ab2013-02-06 14:22:40 +00001590 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001591 if (!AnnotatedLines[i].First->Next)
Daniel Jasper7fce3ab2013-02-06 14:22:40 +00001592 continue;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001593 FormatToken *Tok = AnnotatedLines[i].First->Next;
1594 while (Tok->Next) {
Daniel Jasper7fce3ab2013-02-06 14:22:40 +00001595 if (Tok->Type == TT_PointerOrReference) {
Manuel Klimek6e6310e2013-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 Jasper7fce3ab2013-02-06 14:22:40 +00001600 if (SpacesBefore && !SpacesAfter)
1601 ++CountBoundToVariable;
1602 else if (!SpacesBefore && SpacesAfter)
1603 ++CountBoundToType;
1604 }
1605
Daniel Jasper400adc62013-02-08 15:28:42 +00001606 if (Tok->Type == TT_TemplateCloser &&
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001607 Tok->Previous->Type == TT_TemplateCloser &&
1608 Tok->WhitespaceRange.getBegin() == Tok->WhitespaceRange.getEnd())
Daniel Jasper7fce3ab2013-02-06 14:22:40 +00001609 HasCpp03IncompatibleFormat = true;
Daniel Jasperb10cbc42013-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 Klimek6e6310e2013-05-29 14:47:47 +00001616 Tok = Tok->Next;
Daniel Jasper7fce3ab2013-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 Jasperb10cbc42013-07-10 14:02:49 +00001629 BinPackInconclusiveFunctions =
1630 HasBinPackedFunction || !HasOnePerLineFunction;
Daniel Jasper7fce3ab2013-02-06 14:22:40 +00001631 }
1632
Manuel Klimekb95f5452013-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 Jasper687af3b2013-02-14 14:26:07 +00001638 unsigned getIndent(const std::vector<int> IndentForLevel, unsigned Level) {
Manuel Klimekb95f5452013-02-08 17:38:27 +00001639 if (IndentForLevel[Level] != -1)
1640 return IndentForLevel[Level];
Manuel Klimekd076dcd2013-02-08 19:53:32 +00001641 if (Level == 0)
1642 return 0;
Manuel Klimek13b97d82013-05-13 08:42:42 +00001643 return getIndent(IndentForLevel, Level - 1) + Style.IndentWidth;
Manuel Klimekb95f5452013-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 Klimek6e6310e2013-05-29 14:47:47 +00001650 int getIndentOffset(const FormatToken &RootToken) {
Alexander Kornienkofd433362013-03-27 17:08:02 +00001651 if (RootToken.isAccessSpecifier(false) || RootToken.isObjCAccessSpecifier())
Manuel Klimekb95f5452013-02-08 17:38:27 +00001652 return Style.AccessModifierOffset;
1653 return 0;
1654 }
1655
Manuel Klimekf4ab9ef2013-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 Jaspera67a8f02013-01-16 10:41:46 +00001660 void tryFitMultipleLinesInOne(unsigned Indent,
Daniel Jasperf1e4b7d2013-01-14 13:08:07 +00001661 std::vector<AnnotatedLine>::iterator &I,
1662 std::vector<AnnotatedLine>::iterator E) {
Daniel Jaspera67a8f02013-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 Jasperffefb3d2013-07-24 13:10:59 +00001667 if (Indent > Style.ColumnLimit)
1668 return;
1669
Daniel Jasperc22f5b42013-02-28 11:05:57 +00001670 unsigned Limit = Style.ColumnLimit - Indent;
Daniel Jasper12ef4e52013-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 Jasperc36492b2013-01-16 07:02:34 +00001674
Daniel Jasperd41ee2d2013-01-21 14:18:28 +00001675 if (I + 1 == E || (I + 1)->Type == LT_Invalid)
Daniel Jaspera67a8f02013-01-16 10:41:46 +00001676 return;
Manuel Klimekf4ab9ef2013-01-11 17:54:10 +00001677
Daniel Jasperabca58c2013-05-15 14:09:55 +00001678 if (I->Last->is(tok::l_brace)) {
Daniel Jasper25837aa2013-01-14 14:14:23 +00001679 tryMergeSimpleBlock(I, E, Limit);
Daniel Jasper3a685df2013-05-16 12:12:21 +00001680 } else if (Style.AllowShortIfStatementsOnASingleLine &&
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001681 I->First->is(tok::kw_if)) {
Daniel Jasper3a685df2013-05-16 12:12:21 +00001682 tryMergeSimpleControlStatement(I, E, Limit);
1683 } else if (Style.AllowShortLoopsOnASingleLine &&
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001684 I->First->isOneOf(tok::kw_for, tok::kw_while)) {
Daniel Jasper3a685df2013-05-16 12:12:21 +00001685 tryMergeSimpleControlStatement(I, E, Limit);
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001686 } else if (I->InPPDirective &&
1687 (I->First->HasUnescapedNewline || I->First->IsFirst)) {
Daniel Jasper39825ea2013-01-14 15:40:57 +00001688 tryMergeSimplePPDirective(I, E, Limit);
Daniel Jasper25837aa2013-01-14 14:14:23 +00001689 }
Daniel Jasper25837aa2013-01-14 14:14:23 +00001690 }
1691
Daniel Jasper39825ea2013-01-14 15:40:57 +00001692 void tryMergeSimplePPDirective(std::vector<AnnotatedLine>::iterator &I,
1693 std::vector<AnnotatedLine>::iterator E,
1694 unsigned Limit) {
Daniel Jasper12ef4e52013-02-21 21:33:55 +00001695 if (Limit == 0)
1696 return;
Daniel Jasper39825ea2013-01-14 15:40:57 +00001697 AnnotatedLine &Line = *I;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001698 if (!(I + 1)->InPPDirective || (I + 1)->First->HasUnescapedNewline)
Daniel Jasper2ab0d012013-01-14 15:52:06 +00001699 return;
Daniel Jasper39825ea2013-01-14 15:40:57 +00001700 if (I + 2 != E && (I + 2)->InPPDirective &&
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001701 !(I + 2)->First->HasUnescapedNewline)
Daniel Jasper39825ea2013-01-14 15:40:57 +00001702 return;
Manuel Klimeka4fe1c12013-01-21 16:42:44 +00001703 if (1 + (I + 1)->Last->TotalLength > Limit)
Daniel Jaspera67a8f02013-01-16 10:41:46 +00001704 return;
Daniel Jasper39825ea2013-01-14 15:40:57 +00001705 join(Line, *(++I));
1706 }
1707
Daniel Jasper3a685df2013-05-16 12:12:21 +00001708 void tryMergeSimpleControlStatement(std::vector<AnnotatedLine>::iterator &I,
1709 std::vector<AnnotatedLine>::iterator E,
1710 unsigned Limit) {
Daniel Jasper12ef4e52013-02-21 21:33:55 +00001711 if (Limit == 0)
1712 return;
Manuel Klimekda087612013-01-18 14:46:43 +00001713 if ((I + 1)->InPPDirective != I->InPPDirective ||
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001714 ((I + 1)->InPPDirective && (I + 1)->First->HasUnescapedNewline))
Manuel Klimekda087612013-01-18 14:46:43 +00001715 return;
Daniel Jasper25837aa2013-01-14 14:14:23 +00001716 AnnotatedLine &Line = *I;
Daniel Jasperc36492b2013-01-16 07:02:34 +00001717 if (Line.Last->isNot(tok::r_paren))
1718 return;
Manuel Klimeka4fe1c12013-01-21 16:42:44 +00001719 if (1 + (I + 1)->Last->TotalLength > Limit)
Daniel Jasper25837aa2013-01-14 14:14:23 +00001720 return;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001721 if ((I + 1)->First->isOneOf(tok::semi, tok::kw_if, tok::kw_for,
1722 tok::kw_while) ||
1723 (I + 1)->First->Type == TT_LineComment)
Daniel Jasper25837aa2013-01-14 14:14:23 +00001724 return;
1725 // Only inline simple if's (no nested if or else).
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001726 if (I + 2 != E && Line.First->is(tok::kw_if) &&
1727 (I + 2)->First->is(tok::kw_else))
Daniel Jasper25837aa2013-01-14 14:14:23 +00001728 return;
1729 join(Line, *(++I));
1730 }
1731
1732 void tryMergeSimpleBlock(std::vector<AnnotatedLine>::iterator &I,
Daniel Jasperbbc84152013-01-29 11:27:30 +00001733 std::vector<AnnotatedLine>::iterator E,
1734 unsigned Limit) {
Daniel Jasperabca58c2013-05-15 14:09:55 +00001735 // No merging if the brace already is on the next line.
1736 if (Style.BreakBeforeBraces != FormatStyle::BS_Attach)
1737 return;
1738
Manuel Klimekf4ab9ef2013-01-11 17:54:10 +00001739 // First, check that the current line allows merging. This is the case if
1740 // we're not in a control flow statement and the last token is an opening
1741 // brace.
Daniel Jasper25837aa2013-01-14 14:14:23 +00001742 AnnotatedLine &Line = *I;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001743 if (Line.First->isOneOf(tok::kw_if, tok::kw_while, tok::kw_do, tok::r_brace,
1744 tok::kw_else, tok::kw_try, tok::kw_catch,
Daniel Jaspera9eb2aa2013-05-31 14:56:20 +00001745 tok::kw_for,
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001746 // This gets rid of all ObjC @ keywords and methods.
1747 tok::at, tok::minus, tok::plus))
Daniel Jasper25837aa2013-01-14 14:14:23 +00001748 return;
Manuel Klimekf4ab9ef2013-01-11 17:54:10 +00001749
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001750 FormatToken *Tok = (I + 1)->First;
Daniel Jaspera9eb2aa2013-05-31 14:56:20 +00001751 if (Tok->is(tok::r_brace) && !Tok->MustBreakBefore &&
Alexander Kornienko1efe0a02013-07-04 14:47:51 +00001752 (Tok->getNextNonComment() == NULL ||
1753 Tok->getNextNonComment()->is(tok::semi))) {
Daniel Jasper12ef4e52013-02-21 21:33:55 +00001754 // We merge empty blocks even if the line exceeds the column limit.
Daniel Jaspereef30492013-02-11 12:36:37 +00001755 Tok->SpacesRequiredBefore = 0;
Daniel Jasper12ef4e52013-02-21 21:33:55 +00001756 Tok->CanBreakBefore = true;
Manuel Klimeka4fe1c12013-01-21 16:42:44 +00001757 join(Line, *(I + 1));
1758 I += 1;
Daniel Jaspera9eb2aa2013-05-31 14:56:20 +00001759 } else if (Limit != 0 && Line.First->isNot(tok::kw_namespace)) {
Manuel Klimeka4fe1c12013-01-21 16:42:44 +00001760 // Check that we still have three lines and they fit into the limit.
1761 if (I + 2 == E || (I + 2)->Type == LT_Invalid ||
1762 !nextTwoLinesFitInto(I, Limit))
Daniel Jasper25837aa2013-01-14 14:14:23 +00001763 return;
Manuel Klimekf4ab9ef2013-01-11 17:54:10 +00001764
Manuel Klimeka4fe1c12013-01-21 16:42:44 +00001765 // Second, check that the next line does not contain any braces - if it
1766 // does, readability declines when putting it into a single line.
1767 if ((I + 1)->Last->Type == TT_LineComment || Tok->MustBreakBefore)
1768 return;
1769 do {
Alexander Kornienko62b85b92013-03-13 14:41:29 +00001770 if (Tok->isOneOf(tok::l_brace, tok::r_brace))
Manuel Klimeka4fe1c12013-01-21 16:42:44 +00001771 return;
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001772 Tok = Tok->Next;
Manuel Klimeka4fe1c12013-01-21 16:42:44 +00001773 } while (Tok != NULL);
Manuel Klimekf4ab9ef2013-01-11 17:54:10 +00001774
Manuel Klimeka4fe1c12013-01-21 16:42:44 +00001775 // Last, check that the third line contains a single closing brace.
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001776 Tok = (I + 2)->First;
Alexander Kornienko1efe0a02013-07-04 14:47:51 +00001777 if (Tok->getNextNonComment() != NULL || Tok->isNot(tok::r_brace) ||
Manuel Klimeka4fe1c12013-01-21 16:42:44 +00001778 Tok->MustBreakBefore)
1779 return;
1780
1781 join(Line, *(I + 1));
1782 join(Line, *(I + 2));
1783 I += 2;
Manuel Klimekf4ab9ef2013-01-11 17:54:10 +00001784 }
Daniel Jasper25837aa2013-01-14 14:14:23 +00001785 }
1786
1787 bool nextTwoLinesFitInto(std::vector<AnnotatedLine>::iterator I,
1788 unsigned Limit) {
Manuel Klimeka4fe1c12013-01-21 16:42:44 +00001789 return 1 + (I + 1)->Last->TotalLength + 1 + (I + 2)->Last->TotalLength <=
1790 Limit;
Manuel Klimekf4ab9ef2013-01-11 17:54:10 +00001791 }
1792
Daniel Jasperf1e4b7d2013-01-14 13:08:07 +00001793 void join(AnnotatedLine &A, const AnnotatedLine &B) {
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001794 assert(!A.Last->Next);
1795 assert(!B.First->Previous);
1796 A.Last->Next = B.First;
1797 B.First->Previous = A.Last;
1798 unsigned LengthA = A.Last->TotalLength + B.First->SpacesRequiredBefore;
1799 for (FormatToken *Tok = B.First; Tok; Tok = Tok->Next) {
1800 Tok->TotalLength += LengthA;
1801 A.Last = Tok;
Daniel Jasperf1e4b7d2013-01-14 13:08:07 +00001802 }
Manuel Klimek51bd6ec2013-01-10 19:49:59 +00001803 }
1804
Daniel Jasper97b89482013-03-13 07:49:51 +00001805 bool touchesRanges(const CharSourceRange &Range) {
Daniel Jasperf71cf3b2013-03-07 20:50:00 +00001806 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
1807 if (!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),
1808 Ranges[i].getBegin()) &&
1809 !SourceMgr.isBeforeInTranslationUnit(Ranges[i].getEnd(),
1810 Range.getBegin()))
1811 return true;
1812 }
1813 return false;
1814 }
1815
1816 bool touchesLine(const AnnotatedLine &TheLine) {
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001817 const FormatToken *First = TheLine.First;
1818 const FormatToken *Last = TheLine.Last;
Daniel Jaspercdd06622013-05-14 10:31:09 +00001819 CharSourceRange LineRange = CharSourceRange::getCharRange(
Manuel Klimek5c24cca2013-05-23 10:56:37 +00001820 First->WhitespaceRange.getBegin().getLocWithOffset(
1821 First->LastNewlineOffset),
Alexander Kornienkoee4ca9b2013-06-07 17:45:07 +00001822 Last->Tok.getLocation().getLocWithOffset(Last->TokenText.size() - 1));
Daniel Jasperf71cf3b2013-03-07 20:50:00 +00001823 return touchesRanges(LineRange);
1824 }
1825
Daniel Jasper1cb530f2013-05-10 13:00:49 +00001826 bool touchesPPDirective(std::vector<AnnotatedLine>::iterator I,
1827 std::vector<AnnotatedLine>::iterator E) {
1828 for (; I != E; ++I) {
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001829 if (I->First->HasUnescapedNewline)
Daniel Jasper1cb530f2013-05-10 13:00:49 +00001830 return false;
1831 if (touchesLine(*I))
1832 return true;
1833 }
1834 return false;
1835 }
1836
Daniel Jasperf71cf3b2013-03-07 20:50:00 +00001837 bool touchesEmptyLineBefore(const AnnotatedLine &TheLine) {
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001838 const FormatToken *First = TheLine.First;
Daniel Jasperf71cf3b2013-03-07 20:50:00 +00001839 CharSourceRange LineRange = CharSourceRange::getCharRange(
Manuel Klimek5c24cca2013-05-23 10:56:37 +00001840 First->WhitespaceRange.getBegin(),
1841 First->WhitespaceRange.getBegin().getLocWithOffset(
1842 First->LastNewlineOffset));
Daniel Jasperf71cf3b2013-03-07 20:50:00 +00001843 return touchesRanges(LineRange);
Manuel Klimek51bd6ec2013-01-10 19:49:59 +00001844 }
1845
1846 virtual void consumeUnwrappedLine(const UnwrappedLine &TheLine) {
Daniel Jasperdaffc0d2013-01-16 09:10:19 +00001847 AnnotatedLines.push_back(AnnotatedLine(TheLine));
Daniel Jasperf7935112012-12-03 18:12:45 +00001848 }
1849
Manuel Klimek0b689fd2013-01-10 18:45:26 +00001850 /// \brief Add a new line and the required indent before the first Token
1851 /// of the \c UnwrappedLine if there was no structural parsing error.
1852 /// Returns the indent level of the \c UnwrappedLine.
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001853 void formatFirstToken(const FormatToken &RootToken,
1854 const FormatToken *PreviousToken, unsigned Indent,
Manuel Klimek4fe43002013-05-22 12:51:29 +00001855 bool InPPDirective) {
Daniel Jasperbbc84152013-01-29 11:27:30 +00001856 unsigned Newlines =
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001857 std::min(RootToken.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1);
Daniel Jasper1027c6e2013-06-03 16:16:41 +00001858 // Remove empty lines before "}" where applicable.
1859 if (RootToken.is(tok::r_brace) &&
1860 (!RootToken.Next ||
1861 (RootToken.Next->is(tok::semi) && !RootToken.Next->Next)))
1862 Newlines = std::min(Newlines, 1u);
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001863 if (Newlines == 0 && !RootToken.IsFirst)
Manuel Klimek0b689fd2013-01-10 18:45:26 +00001864 Newlines = 1;
Manuel Klimek0b689fd2013-01-10 18:45:26 +00001865
Manuel Klimek4fe43002013-05-22 12:51:29 +00001866 // Insert extra new line before access specifiers.
1867 if (PreviousToken && PreviousToken->isOneOf(tok::semi, tok::r_brace) &&
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001868 RootToken.isAccessSpecifier() && RootToken.NewlinesBefore == 1)
Manuel Klimek4fe43002013-05-22 12:51:29 +00001869 ++Newlines;
Alexander Kornienkofd433362013-03-27 17:08:02 +00001870
Manuel Klimek6e6310e2013-05-29 14:47:47 +00001871 Whitespaces.replaceWhitespace(
1872 RootToken, Newlines, Indent, Indent,
1873 InPPDirective && !RootToken.HasUnescapedNewline);
Manuel Klimek0b689fd2013-01-10 18:45:26 +00001874 }
1875
Daniel Jasperf7935112012-12-03 18:12:45 +00001876 FormatStyle Style;
1877 Lexer &Lex;
1878 SourceManager &SourceMgr;
Daniel Jasperaa701fa2013-01-18 08:44:07 +00001879 WhitespaceManager Whitespaces;
Daniel Jasperf7935112012-12-03 18:12:45 +00001880 std::vector<CharSourceRange> Ranges;
Daniel Jasperf1e4b7d2013-01-14 13:08:07 +00001881 std::vector<AnnotatedLine> AnnotatedLines;
Alexander Kornienkoffcc0102013-06-05 14:09:10 +00001882
1883 encoding::Encoding Encoding;
Daniel Jasperb10cbc42013-07-10 14:02:49 +00001884 bool BinPackInconclusiveFunctions;
Daniel Jasperf7935112012-12-03 18:12:45 +00001885};
1886
Craig Topperaf35e852013-06-30 22:29:28 +00001887} // end anonymous namespace
1888
Alexander Kornienkocb45bc12013-04-15 14:28:00 +00001889tooling::Replacements reformat(const FormatStyle &Style, Lexer &Lex,
1890 SourceManager &SourceMgr,
Daniel Jasperd2ae41a2013-05-15 08:14:19 +00001891 std::vector<CharSourceRange> Ranges) {
1892 Formatter formatter(Style, Lex, SourceMgr, Ranges);
Daniel Jasperf7935112012-12-03 18:12:45 +00001893 return formatter.format();
1894}
1895
Daniel Jasperec04c0d2013-05-16 10:40:07 +00001896tooling::Replacements reformat(const FormatStyle &Style, StringRef Code,
1897 std::vector<tooling::Range> Ranges,
1898 StringRef FileName) {
1899 FileManager Files((FileSystemOptions()));
1900 DiagnosticsEngine Diagnostics(
1901 IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs),
1902 new DiagnosticOptions);
1903 SourceManager SourceMgr(Diagnostics, Files);
1904 llvm::MemoryBuffer *Buf = llvm::MemoryBuffer::getMemBuffer(Code, FileName);
1905 const clang::FileEntry *Entry =
1906 Files.getVirtualFile(FileName, Buf->getBufferSize(), 0);
1907 SourceMgr.overrideFileContents(Entry, Buf);
1908 FileID ID =
1909 SourceMgr.createFileID(Entry, SourceLocation(), clang::SrcMgr::C_User);
Alexander Kornienko1e808872013-06-28 12:51:24 +00001910 Lexer Lex(ID, SourceMgr.getBuffer(ID), SourceMgr,
1911 getFormattingLangOpts(Style.Standard));
Daniel Jasperec04c0d2013-05-16 10:40:07 +00001912 SourceLocation StartOfFile = SourceMgr.getLocForStartOfFile(ID);
1913 std::vector<CharSourceRange> CharRanges;
1914 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
1915 SourceLocation Start = StartOfFile.getLocWithOffset(Ranges[i].getOffset());
1916 SourceLocation End = Start.getLocWithOffset(Ranges[i].getLength());
1917 CharRanges.push_back(CharSourceRange::getCharRange(Start, End));
1918 }
1919 return reformat(Style, Lex, SourceMgr, CharRanges);
1920}
1921
Alexander Kornienko1e808872013-06-28 12:51:24 +00001922LangOptions getFormattingLangOpts(FormatStyle::LanguageStandard Standard) {
Daniel Jasperc1fa2812013-01-10 13:08:12 +00001923 LangOptions LangOpts;
1924 LangOpts.CPlusPlus = 1;
Alexander Kornienko1e808872013-06-28 12:51:24 +00001925 LangOpts.CPlusPlus11 = Standard == FormatStyle::LS_Cpp03 ? 0 : 1;
Daniel Jasper55213652013-03-22 10:01:29 +00001926 LangOpts.LineComment = 1;
Daniel Jasperc1fa2812013-01-10 13:08:12 +00001927 LangOpts.Bool = 1;
1928 LangOpts.ObjC1 = 1;
1929 LangOpts.ObjC2 = 1;
1930 return LangOpts;
1931}
1932
Daniel Jasper8d1832e2013-01-07 13:26:07 +00001933} // namespace format
1934} // namespace clang