blob: d8ef5cf785cac4edfa5e8ce0bc9cf20853aa733a [file] [log] [blame]
Daniel Jasperbac016b2012-12-03 18:12:45 +00001//===--- Format.cpp - Format C++ code -------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9///
10/// \file
11/// \brief This file implements functions declared in Format.h. This will be
12/// split into separate files as we go.
13///
Daniel Jasperbac016b2012-12-03 18:12:45 +000014//===----------------------------------------------------------------------===//
15
Manuel Klimekca547db2013-01-16 14:55:28 +000016#define DEBUG_TYPE "format-formatter"
17
Daniel Jasper32d28ee2013-01-29 21:01:14 +000018#include "TokenAnnotator.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000019#include "UnwrappedLineParser.h"
Alexander Kornienko3048aea2013-01-10 15:05:09 +000020#include "clang/Basic/Diagnostic.h"
Daniel Jasper675d2e32012-12-21 10:20:02 +000021#include "clang/Basic/OperatorPrecedence.h"
Chandler Carruthb99083e2013-01-02 10:28:36 +000022#include "clang/Basic/SourceManager.h"
Manuel Klimekca547db2013-01-16 14:55:28 +000023#include "clang/Format/Format.h"
Alexander Kornienko3048aea2013-01-10 15:05:09 +000024#include "clang/Frontend/TextDiagnosticPrinter.h"
Daniel Jasperbac016b2012-12-03 18:12:45 +000025#include "clang/Lex/Lexer.h"
Manuel Klimek32a2fd72013-02-13 10:46:36 +000026#include "llvm/Support/Allocator.h"
Manuel Klimekca547db2013-01-16 14:55:28 +000027#include "llvm/Support/Debug.h"
Manuel Klimek32a2fd72013-02-13 10:46:36 +000028#include <queue>
Daniel Jasper8822d3a2012-12-04 13:02:32 +000029#include <string>
30
Daniel Jasperbac016b2012-12-03 18:12:45 +000031namespace clang {
32namespace format {
33
Daniel Jasperbac016b2012-12-03 18:12:45 +000034FormatStyle getLLVMStyle() {
35 FormatStyle LLVMStyle;
36 LLVMStyle.ColumnLimit = 80;
37 LLVMStyle.MaxEmptyLinesToKeep = 1;
Daniel Jasper8ff690a2013-02-06 14:22:40 +000038 LLVMStyle.PointerBindsToType = false;
39 LLVMStyle.DerivePointerBinding = false;
Daniel Jasperbac016b2012-12-03 18:12:45 +000040 LLVMStyle.AccessModifierOffset = -2;
Daniel Jasper8ff690a2013-02-06 14:22:40 +000041 LLVMStyle.Standard = FormatStyle::LS_Cpp03;
Alexander Kornienko15757312012-12-06 18:03:27 +000042 LLVMStyle.IndentCaseLabels = false;
Daniel Jasper7ad4eff2013-01-07 11:09:06 +000043 LLVMStyle.SpacesBeforeTrailingComments = 1;
Daniel Jasper0df6acd2013-01-16 14:59:02 +000044 LLVMStyle.BinPackParameters = true;
Daniel Jasperf1579602013-01-29 16:03:49 +000045 LLVMStyle.AllowAllParametersOfDeclarationOnNextLine = true;
Daniel Jasper7e9bf8c2013-01-11 11:37:55 +000046 LLVMStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = false;
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +000047 LLVMStyle.AllowShortIfStatementsOnASingleLine = false;
Nico Weber5f500df2013-01-10 20:12:55 +000048 LLVMStyle.ObjCSpaceBeforeProtocolList = true;
Daniel Jasper01786732013-02-04 07:21:18 +000049 LLVMStyle.PenaltyExcessCharacter = 1000000;
Daniel Jaspera03ab102013-02-13 20:33:44 +000050 LLVMStyle.PenaltyReturnTypeOnItsOwnLine = 5;
Daniel Jasperbac016b2012-12-03 18:12:45 +000051 return LLVMStyle;
52}
53
54FormatStyle getGoogleStyle() {
55 FormatStyle GoogleStyle;
56 GoogleStyle.ColumnLimit = 80;
57 GoogleStyle.MaxEmptyLinesToKeep = 1;
Daniel Jasper8ff690a2013-02-06 14:22:40 +000058 GoogleStyle.PointerBindsToType = true;
59 GoogleStyle.DerivePointerBinding = true;
Daniel Jasperbac016b2012-12-03 18:12:45 +000060 GoogleStyle.AccessModifierOffset = -1;
Daniel Jasper8ff690a2013-02-06 14:22:40 +000061 GoogleStyle.Standard = FormatStyle::LS_Auto;
Alexander Kornienko15757312012-12-06 18:03:27 +000062 GoogleStyle.IndentCaseLabels = true;
Daniel Jasper7ad4eff2013-01-07 11:09:06 +000063 GoogleStyle.SpacesBeforeTrailingComments = 2;
Daniel Jasper0df6acd2013-01-16 14:59:02 +000064 GoogleStyle.BinPackParameters = false;
Daniel Jasperf1579602013-01-29 16:03:49 +000065 GoogleStyle.AllowAllParametersOfDeclarationOnNextLine = true;
Daniel Jasper7e9bf8c2013-01-11 11:37:55 +000066 GoogleStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true;
Daniel Jasperdf3736a2013-01-16 15:44:34 +000067 GoogleStyle.AllowShortIfStatementsOnASingleLine = false;
Nico Weber5f500df2013-01-10 20:12:55 +000068 GoogleStyle.ObjCSpaceBeforeProtocolList = false;
Daniel Jasper01786732013-02-04 07:21:18 +000069 GoogleStyle.PenaltyExcessCharacter = 1000000;
Daniel Jaspera03ab102013-02-13 20:33:44 +000070 GoogleStyle.PenaltyReturnTypeOnItsOwnLine = 100;
Daniel Jasperbac016b2012-12-03 18:12:45 +000071 return GoogleStyle;
72}
73
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +000074FormatStyle getChromiumStyle() {
75 FormatStyle ChromiumStyle = getGoogleStyle();
Daniel Jasperf1579602013-01-29 16:03:49 +000076 ChromiumStyle.AllowAllParametersOfDeclarationOnNextLine = false;
Daniel Jasper8ff690a2013-02-06 14:22:40 +000077 ChromiumStyle.Standard = FormatStyle::LS_Cpp03;
78 ChromiumStyle.DerivePointerBinding = false;
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +000079 return ChromiumStyle;
80}
81
Daniel Jasper15417ef2013-02-06 20:07:35 +000082static bool isTrailingComment(const AnnotatedToken &Tok) {
83 return Tok.is(tok::comment) &&
84 (Tok.Children.empty() || Tok.Children[0].MustBreakBefore);
85}
86
Daniel Jasperce3d1a62013-02-08 08:22:00 +000087// Returns the length of everything up to the first possible line break after
88// the ), ], } or > matching \c Tok.
89static unsigned getLengthToMatchingParen(const AnnotatedToken &Tok) {
90 if (Tok.MatchingParen == NULL)
91 return 0;
92 AnnotatedToken *End = Tok.MatchingParen;
93 while (!End->Children.empty() && !End->Children[0].CanBreakBefore) {
94 End = &End->Children[0];
95 }
96 return End->TotalLength - Tok.TotalLength + 1;
97}
98
Daniel Jasperdcc2a622013-01-18 08:44:07 +000099/// \brief Manages the whitespaces around tokens and their replacements.
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000100///
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000101/// This includes special handling for certain constructs, e.g. the alignment of
102/// trailing line comments.
103class WhitespaceManager {
104public:
105 WhitespaceManager(SourceManager &SourceMgr) : SourceMgr(SourceMgr) {}
106
107 /// \brief Replaces the whitespace in front of \p Tok. Only call once for
108 /// each \c AnnotatedToken.
109 void replaceWhitespace(const AnnotatedToken &Tok, unsigned NewLines,
110 unsigned Spaces, unsigned WhitespaceStartColumn,
111 const FormatStyle &Style) {
Daniel Jasper821627e2013-01-21 22:49:20 +0000112 // 2+ newlines mean an empty line separating logic scopes.
113 if (NewLines >= 2)
114 alignComments();
115
116 // Align line comments if they are trailing or if they continue other
117 // trailing comments.
Daniel Jasper15417ef2013-02-06 20:07:35 +0000118 if (isTrailingComment(Tok) && (Tok.Parent != NULL || !Comments.empty())) {
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000119 if (Style.ColumnLimit >=
120 Spaces + WhitespaceStartColumn + Tok.FormatTok.TokenLength) {
121 Comments.push_back(StoredComment());
122 Comments.back().Tok = Tok.FormatTok;
123 Comments.back().Spaces = Spaces;
124 Comments.back().NewLines = NewLines;
Daniel Jasper474e4622013-02-06 22:04:05 +0000125 if (NewLines == 0)
126 Comments.back().MinColumn = WhitespaceStartColumn + Spaces;
127 else
128 Comments.back().MinColumn = Spaces;
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000129 Comments.back().MaxColumn =
Daniel Jasper42f458d2013-02-13 19:25:54 +0000130 Style.ColumnLimit - Tok.FormatTok.TokenLength;
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000131 return;
132 }
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000133 }
Daniel Jasper821627e2013-01-21 22:49:20 +0000134
135 // If this line does not have a trailing comment, align the stored comments.
Daniel Jasper15417ef2013-02-06 20:07:35 +0000136 if (Tok.Children.empty() && !isTrailingComment(Tok))
Daniel Jasper821627e2013-01-21 22:49:20 +0000137 alignComments();
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000138 storeReplacement(Tok.FormatTok,
139 std::string(NewLines, '\n') + std::string(Spaces, ' '));
140 }
141
142 /// \brief Like \c replaceWhitespace, but additionally adds right-aligned
143 /// backslashes to escape newlines inside a preprocessor directive.
144 ///
145 /// This function and \c replaceWhitespace have the same behavior if
146 /// \c Newlines == 0.
147 void replacePPWhitespace(const AnnotatedToken &Tok, unsigned NewLines,
148 unsigned Spaces, unsigned WhitespaceStartColumn,
149 const FormatStyle &Style) {
150 std::string NewLineText;
151 if (NewLines > 0) {
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000152 unsigned Offset =
153 std::min<int>(Style.ColumnLimit - 1, WhitespaceStartColumn);
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000154 for (unsigned i = 0; i < NewLines; ++i) {
155 NewLineText += std::string(Style.ColumnLimit - Offset - 1, ' ');
156 NewLineText += "\\\n";
157 Offset = 0;
158 }
159 }
160 storeReplacement(Tok.FormatTok, NewLineText + std::string(Spaces, ' '));
161 }
162
163 /// \brief Returns all the \c Replacements created during formatting.
164 const tooling::Replacements &generateReplacements() {
165 alignComments();
166 return Replaces;
167 }
168
169private:
170 /// \brief Structure to store a comment for later layout and alignment.
171 struct StoredComment {
172 FormatToken Tok;
173 unsigned MinColumn;
174 unsigned MaxColumn;
175 unsigned NewLines;
176 unsigned Spaces;
177 };
178 SmallVector<StoredComment, 16> Comments;
179 typedef SmallVector<StoredComment, 16>::iterator comment_iterator;
180
181 /// \brief Try to align all stashed comments.
182 void alignComments() {
183 unsigned MinColumn = 0;
184 unsigned MaxColumn = UINT_MAX;
185 comment_iterator Start = Comments.begin();
186 for (comment_iterator I = Comments.begin(), E = Comments.end(); I != E;
187 ++I) {
188 if (I->MinColumn > MaxColumn || I->MaxColumn < MinColumn) {
189 alignComments(Start, I, MinColumn);
190 MinColumn = I->MinColumn;
191 MaxColumn = I->MaxColumn;
192 Start = I;
193 } else {
194 MinColumn = std::max(MinColumn, I->MinColumn);
195 MaxColumn = std::min(MaxColumn, I->MaxColumn);
196 }
197 }
198 alignComments(Start, Comments.end(), MinColumn);
199 Comments.clear();
200 }
201
202 /// \brief Put all the comments between \p I and \p E into \p Column.
203 void alignComments(comment_iterator I, comment_iterator E, unsigned Column) {
204 while (I != E) {
205 unsigned Spaces = I->Spaces + Column - I->MinColumn;
206 storeReplacement(I->Tok, std::string(I->NewLines, '\n') +
Daniel Jasper29f123b2013-02-08 15:28:42 +0000207 std::string(Spaces, ' '));
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000208 ++I;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000209 }
210 }
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000211
212 /// \brief Stores \p Text as the replacement for the whitespace in front of
213 /// \p Tok.
214 void storeReplacement(const FormatToken &Tok, const std::string Text) {
Daniel Jasperafcbd852013-01-30 09:46:12 +0000215 // Don't create a replacement, if it does not change anything.
216 if (StringRef(SourceMgr.getCharacterData(Tok.WhiteSpaceStart),
217 Tok.WhiteSpaceLength) == Text)
218 return;
219
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000220 Replaces.insert(tooling::Replacement(SourceMgr, Tok.WhiteSpaceStart,
221 Tok.WhiteSpaceLength, Text));
222 }
223
224 SourceManager &SourceMgr;
225 tooling::Replacements Replaces;
226};
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000227
Daniel Jasperbac016b2012-12-03 18:12:45 +0000228class UnwrappedLineFormatter {
229public:
Manuel Klimek94fc6f12013-01-10 19:17:33 +0000230 UnwrappedLineFormatter(const FormatStyle &Style, SourceManager &SourceMgr,
Daniel Jasper995e8202013-01-14 13:08:07 +0000231 const AnnotatedLine &Line, unsigned FirstIndent,
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +0000232 const AnnotatedToken &RootToken,
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000233 WhitespaceManager &Whitespaces, bool StructuralError)
Daniel Jasper1321eb52012-12-18 21:05:13 +0000234 : Style(Style), SourceMgr(SourceMgr), Line(Line),
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000235 FirstIndent(FirstIndent), RootToken(RootToken),
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000236 Whitespaces(Whitespaces), Count(0) {
Daniel Jasperbac016b2012-12-03 18:12:45 +0000237 }
238
Manuel Klimekd4397b92013-01-04 23:34:14 +0000239 /// \brief Formats an \c UnwrappedLine.
240 ///
241 /// \returns The column after the last token in the last line of the
242 /// \c UnwrappedLine.
243 unsigned format() {
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000244 // Initialize state dependent on indent.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000245 LineState State;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000246 State.Column = FirstIndent;
Daniel Jasper26f7e782013-01-08 14:56:18 +0000247 State.NextToken = &RootToken;
Daniel Jasperd399bff2013-02-05 09:41:21 +0000248 State.Stack.push_back(
249 ParenState(FirstIndent + 4, FirstIndent, !Style.BinPackParameters,
250 /*HasMultiParameterLine=*/ false));
Daniel Jasper2e603772013-01-29 11:21:01 +0000251 State.VariablePos = 0;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000252 State.LineContainsContinuedForLoopSection = false;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000253 State.ParenLevel = 0;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000254 State.StartOfLineLevel = State.ParenLevel;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000255
Manuel Klimekca547db2013-01-16 14:55:28 +0000256 DEBUG({
257 DebugTokenState(*State.NextToken);
258 });
259
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000260 // The first token has already been indented and thus consumed.
261 moveStateToNextToken(State);
Daniel Jasperbac016b2012-12-03 18:12:45 +0000262
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000263 // If everything fits on a single line, just put it there.
264 if (Line.Last->TotalLength <= getColumnLimit() - FirstIndent) {
265 while (State.NextToken != NULL) {
Daniel Jasper1321eb52012-12-18 21:05:13 +0000266 addTokenToState(false, false, State);
Daniel Jasper1321eb52012-12-18 21:05:13 +0000267 }
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000268 return State.Column;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000269 }
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000270
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000271 // If the ObjC method declaration does not fit on a line, we should format
272 // it with one arg per line.
273 if (Line.Type == LT_ObjCMethodDecl)
274 State.Stack.back().BreakBeforeParameter = true;
275
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000276 // Find best solution in solution space.
277 return analyzeSolutionSpace(State);
Daniel Jasperbac016b2012-12-03 18:12:45 +0000278 }
279
280private:
Manuel Klimekca547db2013-01-16 14:55:28 +0000281 void DebugTokenState(const AnnotatedToken &AnnotatedTok) {
282 const Token &Tok = AnnotatedTok.FormatTok.Tok;
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000283 llvm::errs() << StringRef(SourceMgr.getCharacterData(Tok.getLocation()),
284 Tok.getLength());
Manuel Klimekca547db2013-01-16 14:55:28 +0000285 llvm::errs();
286 }
287
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000288 struct ParenState {
Daniel Jasperd399bff2013-02-05 09:41:21 +0000289 ParenState(unsigned Indent, unsigned LastSpace, bool AvoidBinPacking,
290 bool HasMultiParameterLine)
Daniel Jasper29f123b2013-02-08 15:28:42 +0000291 : Indent(Indent), LastSpace(LastSpace), FirstLessLess(0),
292 BreakBeforeClosingBrace(false), QuestionColumn(0),
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000293 AvoidBinPacking(AvoidBinPacking), BreakBeforeParameter(false),
Daniel Jasper7878a7b2013-02-15 11:07:25 +0000294 HasMultiParameterLine(HasMultiParameterLine), ColonPos(0),
295 BreakBeforeThirdOperand(false) {
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000296 }
Daniel Jaspera4974cf2012-12-24 16:43:00 +0000297
Daniel Jasperbac016b2012-12-03 18:12:45 +0000298 /// \brief The position to which a specific parenthesis level needs to be
299 /// indented.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000300 unsigned Indent;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000301
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000302 /// \brief The position of the last space on each level.
303 ///
304 /// Used e.g. to break like:
305 /// functionCall(Parameter, otherCall(
306 /// OtherParameter));
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000307 unsigned LastSpace;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000308
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000309 /// \brief The position the first "<<" operator encountered on each level.
310 ///
311 /// Used to align "<<" operators. 0 if no such operator has been encountered
312 /// on a level.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000313 unsigned FirstLessLess;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000314
Manuel Klimekc8c8a472013-01-10 15:58:26 +0000315 /// \brief Whether a newline needs to be inserted before the block's closing
316 /// brace.
317 ///
318 /// We only want to insert a newline before the closing brace if there also
319 /// was a newline after the beginning left brace.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000320 bool BreakBeforeClosingBrace;
321
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000322 /// \brief The column of a \c ? in a conditional expression;
323 unsigned QuestionColumn;
324
Daniel Jasperf343cab2013-01-31 14:59:26 +0000325 /// \brief Avoid bin packing, i.e. multiple parameters/elements on multiple
326 /// lines, in this context.
327 bool AvoidBinPacking;
328
329 /// \brief Break after the next comma (or all the commas in this context if
330 /// \c AvoidBinPacking is \c true).
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000331 bool BreakBeforeParameter;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000332
333 /// \brief This context already has a line with more than one parameter.
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000334 bool HasMultiParameterLine;
Daniel Jasper7e9bf8c2013-01-11 11:37:55 +0000335
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000336 /// \brief The position of the colon in an ObjC method declaration/call.
337 unsigned ColonPos;
Daniel Jasper7878a7b2013-02-15 11:07:25 +0000338
339 /// \brief Break before third operand in ternary expression.
340 bool BreakBeforeThirdOperand;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000341
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000342 bool operator<(const ParenState &Other) const {
343 if (Indent != Other.Indent)
Daniel Jasper7d19bc22013-01-11 14:23:32 +0000344 return Indent < Other.Indent;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000345 if (LastSpace != Other.LastSpace)
346 return LastSpace < Other.LastSpace;
347 if (FirstLessLess != Other.FirstLessLess)
348 return FirstLessLess < Other.FirstLessLess;
Daniel Jasper7e9bf8c2013-01-11 11:37:55 +0000349 if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
350 return BreakBeforeClosingBrace;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000351 if (QuestionColumn != Other.QuestionColumn)
352 return QuestionColumn < Other.QuestionColumn;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000353 if (AvoidBinPacking != Other.AvoidBinPacking)
354 return AvoidBinPacking;
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000355 if (BreakBeforeParameter != Other.BreakBeforeParameter)
356 return BreakBeforeParameter;
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000357 if (HasMultiParameterLine != Other.HasMultiParameterLine)
358 return HasMultiParameterLine;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000359 if (ColonPos != Other.ColonPos)
360 return ColonPos < Other.ColonPos;
Daniel Jasper7878a7b2013-02-15 11:07:25 +0000361 if (BreakBeforeThirdOperand != Other.BreakBeforeThirdOperand)
362 return BreakBeforeThirdOperand;
Daniel Jasperb3123142013-01-12 07:36:22 +0000363 return false;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000364 }
365 };
366
367 /// \brief The current state when indenting a unwrapped line.
368 ///
369 /// As the indenting tries different combinations this is copied by value.
370 struct LineState {
371 /// \brief The number of used columns in the current line.
372 unsigned Column;
373
374 /// \brief The token that needs to be next formatted.
375 const AnnotatedToken *NextToken;
376
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000377 /// \brief The column of the first variable name in a variable declaration.
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000378 ///
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000379 /// Used to align further variables if necessary.
Daniel Jasper2e603772013-01-29 11:21:01 +0000380 unsigned VariablePos;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000381
382 /// \brief \c true if this line contains a continued for-loop section.
383 bool LineContainsContinuedForLoopSection;
384
Daniel Jasper29f123b2013-02-08 15:28:42 +0000385 /// \brief The level of nesting inside (), [], <> and {}.
386 unsigned ParenLevel;
387
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000388 /// \brief The \c ParenLevel at the start of this line.
389 unsigned StartOfLineLevel;
390
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000391 /// \brief A stack keeping track of properties applying to parenthesis
392 /// levels.
393 std::vector<ParenState> Stack;
394
395 /// \brief Comparison operator to be able to used \c LineState in \c map.
396 bool operator<(const LineState &Other) const {
Daniel Jasper26f7e782013-01-08 14:56:18 +0000397 if (Other.NextToken != NextToken)
398 return Other.NextToken > NextToken;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000399 if (Other.Column != Column)
400 return Other.Column > Column;
Daniel Jasper2e603772013-01-29 11:21:01 +0000401 if (Other.VariablePos != VariablePos)
402 return Other.VariablePos < VariablePos;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000403 if (Other.LineContainsContinuedForLoopSection !=
404 LineContainsContinuedForLoopSection)
405 return LineContainsContinuedForLoopSection;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000406 if (Other.ParenLevel != ParenLevel)
407 return Other.ParenLevel < ParenLevel;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000408 if (Other.StartOfLineLevel < StartOfLineLevel)
409 return Other.StartOfLineLevel < StartOfLineLevel;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000410 return Other.Stack < Stack;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000411 }
412 };
413
Daniel Jasper20409152012-12-04 14:54:30 +0000414 /// \brief Appends the next token to \p State and updates information
415 /// necessary for indentation.
416 ///
417 /// Puts the token on the current line if \p Newline is \c true and adds a
418 /// line break and necessary indentation otherwise.
419 ///
420 /// If \p DryRun is \c false, also creates and stores the required
421 /// \c Replacement.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000422 void addTokenToState(bool Newline, bool DryRun, LineState &State) {
Daniel Jasper9c837d02013-01-09 07:06:56 +0000423 const AnnotatedToken &Current = *State.NextToken;
424 const AnnotatedToken &Previous = *State.NextToken->Parent;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000425 assert(State.Stack.size());
Daniel Jasperbac016b2012-12-03 18:12:45 +0000426
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000427 if (Current.Type == TT_ImplicitStringLiteral) {
428 State.Column += State.NextToken->FormatTok.WhiteSpaceLength +
429 State.NextToken->FormatTok.TokenLength;
430 if (State.NextToken->Children.empty())
431 State.NextToken = NULL;
432 else
433 State.NextToken = &State.NextToken->Children[0];
434 return;
435 }
436
Daniel Jasperbac016b2012-12-03 18:12:45 +0000437 if (Newline) {
Manuel Klimek060143e2013-01-02 18:33:23 +0000438 unsigned WhitespaceStartColumn = State.Column;
Manuel Klimekbb42bf12013-01-10 11:52:21 +0000439 if (Current.is(tok::r_brace)) {
440 State.Column = Line.Level * 2;
Daniel Jasper9c837d02013-01-09 07:06:56 +0000441 } else if (Current.is(tok::string_literal) &&
442 Previous.is(tok::string_literal)) {
443 State.Column = State.Column - Previous.FormatTok.TokenLength;
Daniel Jasper66d19bd2013-02-18 11:59:17 +0000444 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasper9c837d02013-01-09 07:06:56 +0000445 } else if (Current.is(tok::lessless) &&
Daniel Jasper29f123b2013-02-08 15:28:42 +0000446 State.Stack.back().FirstLessLess != 0) {
447 State.Column = State.Stack.back().FirstLessLess;
448 } else if (State.ParenLevel != 0 &&
Daniel Jasper5f2173e2013-01-28 07:43:15 +0000449 (Previous.is(tok::equal) || Previous.is(tok::coloncolon) ||
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000450 Current.is(tok::period) || Current.is(tok::arrow) ||
451 Current.is(tok::question))) {
Daniel Jasper9c837d02013-01-09 07:06:56 +0000452 // Indent and extra 4 spaces after if we know the current expression is
453 // continued. Don't do that on the top level, as we already indent 4
454 // there.
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000455 State.Column = std::max(State.Stack.back().LastSpace,
456 State.Stack.back().Indent) + 4;
457 } else if (Current.Type == TT_ConditionalExpr) {
458 State.Column = State.Stack.back().QuestionColumn;
Daniel Jasper2e603772013-01-29 11:21:01 +0000459 } else if (Previous.is(tok::comma) && State.VariablePos != 0 &&
Daniel Jasper29f123b2013-02-08 15:28:42 +0000460 ((RootToken.is(tok::kw_for) && State.ParenLevel == 1) ||
461 State.ParenLevel == 0)) {
Daniel Jasper2e603772013-01-29 11:21:01 +0000462 State.Column = State.VariablePos;
Daniel Jasper83f25ba2013-01-28 15:16:31 +0000463 } else if (State.NextToken->Parent->ClosesTemplateDeclaration ||
464 Current.Type == TT_StartOfName) {
Daniel Jasper29f123b2013-02-08 15:28:42 +0000465 State.Column = State.Stack.back().Indent - 4;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000466 } else if (Current.Type == TT_ObjCSelectorName) {
467 if (State.Stack.back().ColonPos > Current.FormatTok.TokenLength) {
468 State.Column =
469 State.Stack.back().ColonPos - Current.FormatTok.TokenLength;
470 } else {
471 State.Column = State.Stack.back().Indent;
472 State.Stack.back().ColonPos =
473 State.Column + Current.FormatTok.TokenLength;
474 }
475 } else if (Previous.Type == TT_ObjCMethodExpr) {
476 State.Column = State.Stack.back().Indent + 4;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000477 } else {
Daniel Jasper29f123b2013-02-08 15:28:42 +0000478 State.Column = State.Stack.back().Indent;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000479 }
480
Daniel Jasper7878a7b2013-02-15 11:07:25 +0000481 if (Current.is(tok::question))
482 State.Stack.back().BreakBeforeThirdOperand = true;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000483 if (Previous.is(tok::comma) && !State.Stack.back().AvoidBinPacking)
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000484 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000485
Daniel Jasper26f7e782013-01-08 14:56:18 +0000486 if (RootToken.is(tok::kw_for))
Daniel Jasper9c837d02013-01-09 07:06:56 +0000487 State.LineContainsContinuedForLoopSection = Previous.isNot(tok::semi);
Daniel Jasper20409152012-12-04 14:54:30 +0000488
Manuel Klimek060143e2013-01-02 18:33:23 +0000489 if (!DryRun) {
490 if (!Line.InPPDirective)
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000491 Whitespaces.replaceWhitespace(Current, 1, State.Column,
492 WhitespaceStartColumn, Style);
Manuel Klimek060143e2013-01-02 18:33:23 +0000493 else
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000494 Whitespaces.replacePPWhitespace(Current, 1, State.Column,
495 WhitespaceStartColumn, Style);
Manuel Klimek060143e2013-01-02 18:33:23 +0000496 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000497
Daniel Jasper29f123b2013-02-08 15:28:42 +0000498 State.Stack.back().LastSpace = State.Column;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000499 State.StartOfLineLevel = State.ParenLevel;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000500 if (Current.is(tok::colon) && Current.Type != TT_ConditionalExpr)
Daniel Jasper29f123b2013-02-08 15:28:42 +0000501 State.Stack.back().Indent += 2;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000502 } else {
Daniel Jasper2e603772013-01-29 11:21:01 +0000503 if (Current.is(tok::equal) &&
Daniel Jasper29f123b2013-02-08 15:28:42 +0000504 (RootToken.is(tok::kw_for) || State.ParenLevel == 0))
Daniel Jasper2e603772013-01-29 11:21:01 +0000505 State.VariablePos = State.Column - Previous.FormatTok.TokenLength;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000506
Daniel Jasper729a7432013-02-11 12:36:37 +0000507 unsigned Spaces = State.NextToken->SpacesRequiredBefore;
Daniel Jasper20409152012-12-04 14:54:30 +0000508
Daniel Jasperbac016b2012-12-03 18:12:45 +0000509 if (!DryRun)
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000510 Whitespaces.replaceWhitespace(Current, 0, Spaces, State.Column, Style);
Daniel Jasper20409152012-12-04 14:54:30 +0000511
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000512 if (Current.Type == TT_ObjCSelectorName &&
513 State.Stack.back().ColonPos == 0) {
514 if (State.Stack.back().Indent + Current.LongestObjCSelectorName >
515 State.Column + Spaces + Current.FormatTok.TokenLength)
516 State.Stack.back().ColonPos =
517 State.Stack.back().Indent + Current.LongestObjCSelectorName;
518 else
519 State.Stack.back().ColonPos =
Daniel Jasper9e9e6e02013-02-06 16:00:26 +0000520 State.Column + Spaces + Current.FormatTok.TokenLength;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000521 }
522
Daniel Jasperd4f2c2e2013-01-29 19:41:55 +0000523 if (Current.Type != TT_LineComment &&
524 (Previous.is(tok::l_paren) || Previous.is(tok::l_brace) ||
525 State.NextToken->Parent->Type == TT_TemplateOpener))
Daniel Jasper29f123b2013-02-08 15:28:42 +0000526 State.Stack.back().Indent = State.Column + Spaces;
Daniel Jaspercda16502013-02-04 08:34:57 +0000527 if (Previous.is(tok::comma) && !isTrailingComment(Current))
Daniel Jasper29f123b2013-02-08 15:28:42 +0000528 State.Stack.back().HasMultiParameterLine = true;
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000529
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000530 State.Column += Spaces;
Daniel Jaspere438bac2013-01-23 20:41:06 +0000531 if (Current.is(tok::l_paren) && Previous.is(tok::kw_if))
532 // Treat the condition inside an if as if it was a second function
533 // parameter, i.e. let nested calls have an indent of 4.
534 State.Stack.back().LastSpace = State.Column + 1; // 1 is length of "(".
Daniel Jasper29f123b2013-02-08 15:28:42 +0000535 else if (Previous.is(tok::comma) && State.ParenLevel != 0)
Daniel Jaspere438bac2013-01-23 20:41:06 +0000536 // Top-level spaces are exempt as that mostly leads to better results.
537 State.Stack.back().LastSpace = State.Column;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000538 else if ((Previous.Type == TT_BinaryOperator ||
Daniel Jasper02b771e2013-01-28 13:31:35 +0000539 Previous.Type == TT_ConditionalExpr ||
540 Previous.Type == TT_CtorInitializerColon) &&
Daniel Jasperae8699b2013-01-28 09:35:24 +0000541 getPrecedence(Previous) != prec::Assignment)
542 State.Stack.back().LastSpace = State.Column;
Daniel Jasper6cabab42013-02-14 08:42:54 +0000543 else if (Previous.Type == TT_InheritanceColon)
544 State.Stack.back().Indent = State.Column;
Daniel Jasper986e17f2013-01-28 07:35:34 +0000545 else if (Previous.ParameterCount > 1 &&
546 (Previous.is(tok::l_paren) || Previous.is(tok::l_square) ||
Daniel Jasperf343cab2013-01-31 14:59:26 +0000547 Previous.is(tok::l_brace) ||
Daniel Jasper986e17f2013-01-28 07:35:34 +0000548 Previous.Type == TT_TemplateOpener))
549 // If this function has multiple parameters, indent nested calls from
550 // the start of the first parameter.
551 State.Stack.back().LastSpace = State.Column;
Daniel Jasper82282dc2013-02-18 13:52:06 +0000552 else if ((Current.is(tok::period) || Current.is(tok::arrow)) &&
553 Line.Type == LT_BuilderTypeCall && State.ParenLevel == 0)
554 State.Stack.back().LastSpace = State.Column;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000555 }
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000556
557 // If we break after an {, we should also break before the corresponding }.
558 if (Newline && Previous.is(tok::l_brace))
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000559 State.Stack.back().BreakBeforeClosingBrace = true;
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000560
Daniel Jasper8159d2f2013-02-04 07:30:30 +0000561 if (State.Stack.back().AvoidBinPacking && Newline &&
Daniel Jasper29f123b2013-02-08 15:28:42 +0000562 (Line.First.isNot(tok::kw_for) || State.ParenLevel != 1)) {
Daniel Jasper8f4bd7a2013-01-23 10:08:28 +0000563 // If we are breaking after '(', '{', '<', this is not bin packing unless
Daniel Jasperf1579602013-01-29 16:03:49 +0000564 // AllowAllParametersOfDeclarationOnNextLine is false.
Daniel Jasper8f4bd7a2013-01-23 10:08:28 +0000565 if ((Previous.isNot(tok::l_paren) && Previous.isNot(tok::l_brace) &&
566 Previous.Type != TT_TemplateOpener) ||
Daniel Jasperf1579602013-01-29 16:03:49 +0000567 (!Style.AllowAllParametersOfDeclarationOnNextLine &&
568 Line.MustBeDeclaration))
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000569 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasper2e603772013-01-29 11:21:01 +0000570
Daniel Jasper8f4bd7a2013-01-23 10:08:28 +0000571 // Any break on this level means that the parent level has been broken
572 // and we need to avoid bin packing there.
573 for (unsigned i = 0, e = State.Stack.size() - 1; i != e; ++i) {
Daniel Jasper8159d2f2013-02-04 07:30:30 +0000574 if (Line.First.isNot(tok::kw_for) || i != 1)
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000575 State.Stack[i].BreakBeforeParameter = true;
Daniel Jasper8f4bd7a2013-01-23 10:08:28 +0000576 }
577 }
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000578
Manuel Klimek2c7739e2013-01-14 16:41:43 +0000579 moveStateToNextToken(State);
Daniel Jasper20409152012-12-04 14:54:30 +0000580 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000581
Daniel Jasper20409152012-12-04 14:54:30 +0000582 /// \brief Mark the next token as consumed in \p State and modify its stacks
583 /// accordingly.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000584 void moveStateToNextToken(LineState &State) {
Daniel Jasper26f7e782013-01-08 14:56:18 +0000585 const AnnotatedToken &Current = *State.NextToken;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000586 assert(State.Stack.size());
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000587
Daniel Jasper6cabab42013-02-14 08:42:54 +0000588 if (Current.Type == TT_InheritanceColon)
589 State.Stack.back().AvoidBinPacking = true;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000590 if (Current.is(tok::lessless) && State.Stack.back().FirstLessLess == 0)
591 State.Stack.back().FirstLessLess = State.Column;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000592 if (Current.is(tok::question))
593 State.Stack.back().QuestionColumn = State.Column;
Daniel Jasperb130a542013-02-15 16:49:44 +0000594 if (Current.Type == TT_CtorInitializerColon &&
595 Style.ConstructorInitializerAllOnOneLineOrOnePerLine)
596 State.Stack.back().AvoidBinPacking = true;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000597 if (Current.is(tok::l_brace) && Current.MatchingParen != NULL &&
Daniel Jasperf343cab2013-01-31 14:59:26 +0000598 !Current.MatchingParen->MustBreakBefore) {
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000599 if (getLengthToMatchingParen(Current) + State.Column > getColumnLimit())
600 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000601 }
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000602
Daniel Jasper29f123b2013-02-08 15:28:42 +0000603 // Insert scopes created by fake parenthesis.
604 for (unsigned i = 0, e = Current.FakeLParens; i != e; ++i) {
605 ParenState NewParenState = State.Stack.back();
606 NewParenState.Indent = std::max(State.Column, State.Stack.back().Indent);
607 State.Stack.push_back(NewParenState);
608 }
609
Daniel Jaspercf225b62012-12-24 13:43:52 +0000610 // If we encounter an opening (, [, { or <, we add a level to our stacks to
Daniel Jasper20409152012-12-04 14:54:30 +0000611 // prepare for the following tokens.
Daniel Jasper26f7e782013-01-08 14:56:18 +0000612 if (Current.is(tok::l_paren) || Current.is(tok::l_square) ||
613 Current.is(tok::l_brace) ||
614 State.NextToken->Type == TT_TemplateOpener) {
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000615 unsigned NewIndent;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000616 bool AvoidBinPacking;
Manuel Klimek2851c162013-01-10 14:36:46 +0000617 if (Current.is(tok::l_brace)) {
Daniel Jasperf343cab2013-01-31 14:59:26 +0000618 NewIndent = 2 + State.Stack.back().LastSpace;
619 AvoidBinPacking = false;
Manuel Klimek2851c162013-01-10 14:36:46 +0000620 } else {
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000621 NewIndent = 4 + State.Stack.back().LastSpace;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000622 AvoidBinPacking = !Style.BinPackParameters;
Manuel Klimek2851c162013-01-10 14:36:46 +0000623 }
Daniel Jasperd399bff2013-02-05 09:41:21 +0000624 State.Stack.push_back(
625 ParenState(NewIndent, State.Stack.back().LastSpace, AvoidBinPacking,
626 State.Stack.back().HasMultiParameterLine));
Daniel Jasper29f123b2013-02-08 15:28:42 +0000627 ++State.ParenLevel;
Daniel Jasper20409152012-12-04 14:54:30 +0000628 }
629
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000630 // If this '[' opens an ObjC call, determine whether all parameters fit into
631 // one line and put one per line if they don't.
632 if (Current.is(tok::l_square) && Current.Type == TT_ObjCMethodExpr &&
633 Current.MatchingParen != NULL) {
634 if (getLengthToMatchingParen(Current) + State.Column > getColumnLimit())
635 State.Stack.back().BreakBeforeParameter = true;
636 }
637
Daniel Jaspercf225b62012-12-24 13:43:52 +0000638 // If we encounter a closing ), ], } or >, we can remove a level from our
Daniel Jasper20409152012-12-04 14:54:30 +0000639 // stacks.
Daniel Jasper26f7e782013-01-08 14:56:18 +0000640 if (Current.is(tok::r_paren) || Current.is(tok::r_square) ||
641 (Current.is(tok::r_brace) && State.NextToken != &RootToken) ||
642 State.NextToken->Type == TT_TemplateCloser) {
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000643 State.Stack.pop_back();
Daniel Jasper29f123b2013-02-08 15:28:42 +0000644 --State.ParenLevel;
645 }
646
647 // Remove scopes created by fake parenthesis.
648 for (unsigned i = 0, e = Current.FakeRParens; i != e; ++i) {
649 State.Stack.pop_back();
Daniel Jasperbac016b2012-12-03 18:12:45 +0000650 }
Manuel Klimek2851c162013-01-10 14:36:46 +0000651
Daniel Jasper26f7e782013-01-08 14:56:18 +0000652 if (State.NextToken->Children.empty())
653 State.NextToken = NULL;
654 else
655 State.NextToken = &State.NextToken->Children[0];
Manuel Klimek2851c162013-01-10 14:36:46 +0000656
657 State.Column += Current.FormatTok.TokenLength;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000658 }
659
Daniel Jasperceb99ab2013-01-09 10:16:05 +0000660 unsigned getColumnLimit() {
661 return Style.ColumnLimit - (Line.InPPDirective ? 1 : 0);
662 }
663
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000664 /// \brief An edge in the solution space from \c Previous->State to \c State,
665 /// inserting a newline dependent on the \c NewLine.
666 struct StateNode {
667 StateNode(const LineState &State, bool NewLine, StateNode *Previous)
668 : State(State), NewLine(NewLine), Previous(Previous) {
669 }
670 LineState State;
671 bool NewLine;
672 StateNode *Previous;
673 };
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000674
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000675 /// \brief A pair of <penalty, count> that is used to prioritize the BFS on.
676 ///
677 /// In case of equal penalties, we want to prefer states that were inserted
678 /// first. During state generation we make sure that we insert states first
679 /// that break the line as late as possible.
680 typedef std::pair<unsigned, unsigned> OrderedPenalty;
681
682 /// \brief An item in the prioritized BFS search queue. The \c StateNode's
683 /// \c State has the given \c OrderedPenalty.
684 typedef std::pair<OrderedPenalty, StateNode *> QueueItem;
685
686 /// \brief The BFS queue type.
687 typedef std::priority_queue<QueueItem, std::vector<QueueItem>,
688 std::greater<QueueItem> > QueueType;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000689
690 /// \brief Analyze the entire solution space starting from \p InitialState.
Daniel Jasperbac016b2012-12-03 18:12:45 +0000691 ///
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000692 /// This implements a variant of Dijkstra's algorithm on the graph that spans
693 /// the solution space (\c LineStates are the nodes). The algorithm tries to
694 /// find the shortest path (the one with lowest penalty) from \p InitialState
695 /// to a state where all tokens are placed.
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000696 unsigned analyzeSolutionSpace(LineState &InitialState) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000697 std::set<LineState> Seen;
698
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000699 // Insert start element into queue.
Daniel Jasperfc759082013-02-14 14:26:07 +0000700 StateNode *Node =
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000701 new (Allocator.Allocate()) StateNode(InitialState, false, NULL);
702 Queue.push(QueueItem(OrderedPenalty(0, Count), Node));
703 ++Count;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000704
705 // While not empty, take first element and follow edges.
706 while (!Queue.empty()) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000707 unsigned Penalty = Queue.top().first.first;
Daniel Jasperfc759082013-02-14 14:26:07 +0000708 StateNode *Node = Queue.top().second;
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000709 if (Node->State.NextToken == NULL) {
Daniel Jasper01786732013-02-04 07:21:18 +0000710 DEBUG(llvm::errs() << "\n---\nPenalty for line: " << Penalty << "\n");
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000711 break;
Daniel Jasper01786732013-02-04 07:21:18 +0000712 }
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000713 Queue.pop();
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000714
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000715 if (!Seen.insert(Node->State).second)
716 // State already examined with lower penalty.
717 continue;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000718
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000719 addNextStateToQueue(Penalty, Node, /*NewLine=*/ false);
720 addNextStateToQueue(Penalty, Node, /*NewLine=*/ true);
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000721 }
722
723 if (Queue.empty())
724 // We were unable to find a solution, do nothing.
725 // FIXME: Add diagnostic?
Daniel Jasperbac016b2012-12-03 18:12:45 +0000726 return 0;
727
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000728 // Reconstruct the solution.
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000729 reconstructPath(InitialState, Queue.top().second);
Daniel Jasper01786732013-02-04 07:21:18 +0000730 DEBUG(llvm::errs() << "---\n");
Daniel Jasperbac016b2012-12-03 18:12:45 +0000731
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000732 // Return the column after the last token of the solution.
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000733 return Queue.top().second->State.Column;
734 }
735
736 void reconstructPath(LineState &State, StateNode *Current) {
737 // FIXME: This recursive implementation limits the possible number
738 // of tokens per line if compiled into a binary with small stack space.
739 // To become more independent of stack frame limitations we would need
740 // to also change the TokenAnnotator.
741 if (Current->Previous == NULL)
742 return;
743 reconstructPath(State, Current->Previous);
744 DEBUG({
745 if (Current->NewLine) {
Daniel Jaspera03ab102013-02-13 20:33:44 +0000746 llvm::errs()
747 << "Penalty for splitting before "
748 << Current->Previous->State.NextToken->FormatTok.Tok.getName()
749 << ": " << Current->Previous->State.NextToken->SplitPenalty << "\n";
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000750 }
751 });
752 addTokenToState(Current->NewLine, false, State);
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000753 }
754
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000755 /// \brief Add the following state to the analysis queue \c Queue.
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000756 ///
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000757 /// Assume the current state is \p PreviousNode and has been reached with a
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000758 /// penalty of \p Penalty. Insert a line break if \p NewLine is \c true.
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000759 void addNextStateToQueue(unsigned Penalty, StateNode *PreviousNode,
760 bool NewLine) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000761 if (NewLine && !canBreak(PreviousNode->State))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000762 return;
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000763 if (!NewLine && mustBreak(PreviousNode->State))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000764 return;
Daniel Jasperae8699b2013-01-28 09:35:24 +0000765 if (NewLine)
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000766 Penalty += PreviousNode->State.NextToken->SplitPenalty;
767
768 StateNode *Node = new (Allocator.Allocate())
769 StateNode(PreviousNode->State, NewLine, PreviousNode);
770 addTokenToState(NewLine, true, Node->State);
771 if (Node->State.Column > getColumnLimit()) {
772 unsigned ExcessCharacters = Node->State.Column - getColumnLimit();
Daniel Jasper01786732013-02-04 07:21:18 +0000773 Penalty += Style.PenaltyExcessCharacter * ExcessCharacters;
Daniel Jasperceb99ab2013-01-09 10:16:05 +0000774 }
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000775
776 Queue.push(QueueItem(OrderedPenalty(Penalty, Count), Node));
777 ++Count;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000778 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000779
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000780 /// \brief Returns \c true, if a line break after \p State is allowed.
781 bool canBreak(const LineState &State) {
782 if (!State.NextToken->CanBreakBefore &&
783 !(State.NextToken->is(tok::r_brace) &&
784 State.Stack.back().BreakBeforeClosingBrace))
785 return false;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000786 // This prevents breaks like:
787 // ...
788 // SomeParameter, OtherParameter).DoSomething(
789 // ...
790 // As they hide "DoSomething" and generally bad for readability.
791 if (State.NextToken->Parent->is(tok::l_paren) &&
792 State.ParenLevel <= State.StartOfLineLevel)
793 return false;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000794 // Trying to insert a parameter on a new line if there are already more than
795 // one parameter on the current line is bin packing.
Daniel Jasperd399bff2013-02-05 09:41:21 +0000796 if (State.Stack.back().HasMultiParameterLine &&
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000797 State.Stack.back().AvoidBinPacking)
798 return false;
799 return true;
800 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000801
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000802 /// \brief Returns \c true, if a line break after \p State is mandatory.
803 bool mustBreak(const LineState &State) {
804 if (State.NextToken->MustBreakBefore)
805 return true;
806 if (State.NextToken->is(tok::r_brace) &&
807 State.Stack.back().BreakBeforeClosingBrace)
808 return true;
809 if (State.NextToken->Parent->is(tok::semi) &&
810 State.LineContainsContinuedForLoopSection)
811 return true;
812 if (State.NextToken->Parent->is(tok::comma) &&
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000813 State.Stack.back().BreakBeforeParameter &&
Daniel Jasperc5cfa492013-02-14 09:19:04 +0000814 !isTrailingComment(*State.NextToken) &&
815 State.NextToken->isNot(tok::r_paren))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000816 return true;
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000817 // FIXME: Comparing LongestObjCSelectorName to 0 is a hacky way of finding
818 // out whether it is the first parameter. Clean this up.
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000819 if (State.NextToken->Type == TT_ObjCSelectorName &&
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000820 State.NextToken->LongestObjCSelectorName == 0 &&
821 State.Stack.back().BreakBeforeParameter)
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000822 return true;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000823 if ((State.NextToken->Type == TT_CtorInitializerColon ||
824 (State.NextToken->Parent->ClosesTemplateDeclaration &&
Daniel Jasper29f123b2013-02-08 15:28:42 +0000825 State.ParenLevel == 0)))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000826 return true;
Daniel Jasper7878a7b2013-02-15 11:07:25 +0000827 if (State.NextToken->is(tok::colon) &&
828 State.Stack.back().BreakBeforeThirdOperand)
829 return true;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000830 return false;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000831 }
832
Daniel Jasperbac016b2012-12-03 18:12:45 +0000833 FormatStyle Style;
834 SourceManager &SourceMgr;
Daniel Jasper995e8202013-01-14 13:08:07 +0000835 const AnnotatedLine &Line;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000836 const unsigned FirstIndent;
Daniel Jasper26f7e782013-01-08 14:56:18 +0000837 const AnnotatedToken &RootToken;
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000838 WhitespaceManager &Whitespaces;
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000839
840 llvm::SpecificBumpPtrAllocator<StateNode> Allocator;
841 QueueType Queue;
842 // Increasing count of \c StateNode items we have created. This is used
843 // to create a deterministic order independent of the container.
844 unsigned Count;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000845};
846
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000847class LexerBasedFormatTokenSource : public FormatTokenSource {
848public:
849 LexerBasedFormatTokenSource(Lexer &Lex, SourceManager &SourceMgr)
Daniel Jasper1321eb52012-12-18 21:05:13 +0000850 : GreaterStashed(false), Lex(Lex), SourceMgr(SourceMgr),
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000851 IdentTable(Lex.getLangOpts()) {
852 Lex.SetKeepWhitespaceMode(true);
853 }
854
855 virtual FormatToken getNextToken() {
856 if (GreaterStashed) {
857 FormatTok.NewlinesBefore = 0;
858 FormatTok.WhiteSpaceStart =
859 FormatTok.Tok.getLocation().getLocWithOffset(1);
860 FormatTok.WhiteSpaceLength = 0;
861 GreaterStashed = false;
862 return FormatTok;
863 }
864
865 FormatTok = FormatToken();
866 Lex.LexFromRawLexer(FormatTok.Tok);
Manuel Klimek95419382013-01-07 07:56:50 +0000867 StringRef Text = rawTokenText(FormatTok.Tok);
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000868 FormatTok.WhiteSpaceStart = FormatTok.Tok.getLocation();
Manuel Klimekf6fd00b2013-01-05 22:56:06 +0000869 if (SourceMgr.getFileOffset(FormatTok.WhiteSpaceStart) == 0)
870 FormatTok.IsFirst = true;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000871
872 // Consume and record whitespace until we find a significant token.
873 while (FormatTok.Tok.is(tok::unknown)) {
Manuel Klimeka28fc062013-02-11 12:33:24 +0000874 unsigned Newlines = Text.count('\n');
875 unsigned EscapedNewlines = Text.count("\\\n");
876 FormatTok.NewlinesBefore += Newlines;
877 FormatTok.HasUnescapedNewline |= EscapedNewlines != Newlines;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000878 FormatTok.WhiteSpaceLength += FormatTok.Tok.getLength();
879
880 if (FormatTok.Tok.is(tok::eof))
881 return FormatTok;
882 Lex.LexFromRawLexer(FormatTok.Tok);
Manuel Klimek95419382013-01-07 07:56:50 +0000883 Text = rawTokenText(FormatTok.Tok);
Manuel Klimekd4397b92013-01-04 23:34:14 +0000884 }
Manuel Klimek95419382013-01-07 07:56:50 +0000885
886 // Now FormatTok is the next non-whitespace token.
887 FormatTok.TokenLength = Text.size();
888
Manuel Klimekd4397b92013-01-04 23:34:14 +0000889 // In case the token starts with escaped newlines, we want to
890 // take them into account as whitespace - this pattern is quite frequent
891 // in macro definitions.
892 // FIXME: What do we want to do with other escaped spaces, and escaped
893 // spaces or newlines in the middle of tokens?
894 // FIXME: Add a more explicit test.
895 unsigned i = 0;
Daniel Jasper71607512013-01-07 10:48:50 +0000896 while (i + 1 < Text.size() && Text[i] == '\\' && Text[i + 1] == '\n') {
Manuel Klimek86721d22013-01-22 16:31:55 +0000897 // FIXME: ++FormatTok.NewlinesBefore is missing...
Manuel Klimekd4397b92013-01-04 23:34:14 +0000898 FormatTok.WhiteSpaceLength += 2;
Manuel Klimek95419382013-01-07 07:56:50 +0000899 FormatTok.TokenLength -= 2;
Manuel Klimekd4397b92013-01-04 23:34:14 +0000900 i += 2;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000901 }
902
903 if (FormatTok.Tok.is(tok::raw_identifier)) {
Manuel Klimekd4397b92013-01-04 23:34:14 +0000904 IdentifierInfo &Info = IdentTable.get(Text);
Daniel Jaspercd1a32b2012-12-21 17:58:39 +0000905 FormatTok.Tok.setIdentifierInfo(&Info);
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000906 FormatTok.Tok.setKind(Info.getTokenID());
907 }
908
909 if (FormatTok.Tok.is(tok::greatergreater)) {
910 FormatTok.Tok.setKind(tok::greater);
911 GreaterStashed = true;
912 }
913
914 return FormatTok;
915 }
916
Nico Weberc2e6d2a2013-02-11 15:32:15 +0000917 IdentifierTable &getIdentTable() { return IdentTable; }
918
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000919private:
920 FormatToken FormatTok;
921 bool GreaterStashed;
922 Lexer &Lex;
923 SourceManager &SourceMgr;
924 IdentifierTable IdentTable;
925
926 /// Returns the text of \c FormatTok.
Manuel Klimek95419382013-01-07 07:56:50 +0000927 StringRef rawTokenText(Token &Tok) {
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000928 return StringRef(SourceMgr.getCharacterData(Tok.getLocation()),
929 Tok.getLength());
930 }
931};
932
Daniel Jasperbac016b2012-12-03 18:12:45 +0000933class Formatter : public UnwrappedLineConsumer {
934public:
Daniel Jasperfeb18f52013-01-14 14:14:23 +0000935 Formatter(DiagnosticsEngine &Diag, const FormatStyle &Style, Lexer &Lex,
936 SourceManager &SourceMgr,
Daniel Jasperbac016b2012-12-03 18:12:45 +0000937 const std::vector<CharSourceRange> &Ranges)
Alexander Kornienko3048aea2013-01-10 15:05:09 +0000938 : Diag(Diag), Style(Style), Lex(Lex), SourceMgr(SourceMgr),
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000939 Whitespaces(SourceMgr), Ranges(Ranges) {
940 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000941
Daniel Jasper7d19bc22013-01-11 14:23:32 +0000942 virtual ~Formatter() {}
Daniel Jasperaccb0b02012-12-04 21:05:31 +0000943
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000944 void deriveLocalStyle() {
945 unsigned CountBoundToVariable = 0;
946 unsigned CountBoundToType = 0;
947 bool HasCpp03IncompatibleFormat = false;
948 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
949 if (AnnotatedLines[i].First.Children.empty())
950 continue;
951 AnnotatedToken *Tok = &AnnotatedLines[i].First.Children[0];
952 while (!Tok->Children.empty()) {
953 if (Tok->Type == TT_PointerOrReference) {
954 bool SpacesBefore = Tok->FormatTok.WhiteSpaceLength > 0;
955 bool SpacesAfter = Tok->Children[0].FormatTok.WhiteSpaceLength > 0;
956 if (SpacesBefore && !SpacesAfter)
957 ++CountBoundToVariable;
958 else if (!SpacesBefore && SpacesAfter)
959 ++CountBoundToType;
960 }
961
Daniel Jasper29f123b2013-02-08 15:28:42 +0000962 if (Tok->Type == TT_TemplateCloser &&
963 Tok->Parent->Type == TT_TemplateCloser &&
964 Tok->FormatTok.WhiteSpaceLength == 0)
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000965 HasCpp03IncompatibleFormat = true;
966 Tok = &Tok->Children[0];
967 }
968 }
969 if (Style.DerivePointerBinding) {
970 if (CountBoundToType > CountBoundToVariable)
971 Style.PointerBindsToType = true;
972 else if (CountBoundToType < CountBoundToVariable)
973 Style.PointerBindsToType = false;
974 }
975 if (Style.Standard == FormatStyle::LS_Auto) {
976 Style.Standard = HasCpp03IncompatibleFormat ? FormatStyle::LS_Cpp11
977 : FormatStyle::LS_Cpp03;
978 }
979 }
980
Daniel Jasperbac016b2012-12-03 18:12:45 +0000981 tooling::Replacements format() {
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000982 LexerBasedFormatTokenSource Tokens(Lex, SourceMgr);
Alexander Kornienko3048aea2013-01-10 15:05:09 +0000983 UnwrappedLineParser Parser(Diag, Style, Tokens, *this);
Alexander Kornienkocff563c2012-12-04 17:27:50 +0000984 StructuralError = Parser.parse();
Manuel Klimekd4397b92013-01-04 23:34:14 +0000985 unsigned PreviousEndOfLineColumn = 0;
Nico Weberc2e6d2a2013-02-11 15:32:15 +0000986 TokenAnnotator Annotator(Style, SourceMgr, Lex,
987 Tokens.getIdentTable().get("in"));
Daniel Jasper995e8202013-01-14 13:08:07 +0000988 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000989 Annotator.annotate(AnnotatedLines[i]);
990 }
991 deriveLocalStyle();
992 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
993 Annotator.calculateFormattingInformation(AnnotatedLines[i]);
Daniel Jasper995e8202013-01-14 13:08:07 +0000994 }
Manuel Klimek547d5db2013-02-08 17:38:27 +0000995 std::vector<int> IndentForLevel;
Daniel Jasperc78c6b32013-02-14 09:58:41 +0000996 bool PreviousLineWasTouched = false;
Daniel Jasper995e8202013-01-14 13:08:07 +0000997 for (std::vector<AnnotatedLine>::iterator I = AnnotatedLines.begin(),
998 E = AnnotatedLines.end();
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +0000999 I != E; ++I) {
Daniel Jasper995e8202013-01-14 13:08:07 +00001000 const AnnotatedLine &TheLine = *I;
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001001 int Offset = getIndentOffset(TheLine.First);
Manuel Klimek547d5db2013-02-08 17:38:27 +00001002 while (IndentForLevel.size() <= TheLine.Level)
1003 IndentForLevel.push_back(-1);
1004 IndentForLevel.resize(TheLine.Level + 1);
Daniel Jasper29333162013-02-18 13:08:03 +00001005 bool WasMoved =
1006 PreviousLineWasTouched && TheLine.First.FormatTok.NewlinesBefore == 0;
1007 if (TheLine.Type != LT_Invalid && (WasMoved || touchesRanges(TheLine))) {
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001008 unsigned LevelIndent = getIndent(IndentForLevel, TheLine.Level);
Manuel Klimek547d5db2013-02-08 17:38:27 +00001009 unsigned Indent = LevelIndent;
1010 if (static_cast<int>(Indent) + Offset >= 0)
1011 Indent += Offset;
1012 if (!TheLine.First.FormatTok.WhiteSpaceStart.isValid() ||
1013 StructuralError) {
1014 Indent = LevelIndent = SourceMgr.getSpellingColumnNumber(
1015 TheLine.First.FormatTok.Tok.getLocation()) - 1;
1016 } else {
1017 formatFirstToken(TheLine.First, Indent, TheLine.InPPDirective,
1018 PreviousEndOfLineColumn);
1019 }
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001020 tryFitMultipleLinesInOne(Indent, I, E);
Daniel Jasper995e8202013-01-14 13:08:07 +00001021 UnwrappedLineFormatter Formatter(Style, SourceMgr, TheLine, Indent,
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001022 TheLine.First, Whitespaces,
Daniel Jasper995e8202013-01-14 13:08:07 +00001023 StructuralError);
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001024 PreviousEndOfLineColumn = Formatter.format();
Manuel Klimek547d5db2013-02-08 17:38:27 +00001025 IndentForLevel[TheLine.Level] = LevelIndent;
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001026 PreviousLineWasTouched = true;
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001027 } else {
Daniel Jasper9ece2bb2013-02-12 16:51:23 +00001028 if (TheLine.First.FormatTok.NewlinesBefore > 0 ||
1029 TheLine.First.FormatTok.IsFirst) {
1030 unsigned Indent = SourceMgr.getSpellingColumnNumber(
1031 TheLine.First.FormatTok.Tok.getLocation()) - 1;
1032 unsigned LevelIndent = Indent;
1033 if (static_cast<int>(LevelIndent) - Offset >= 0)
1034 LevelIndent -= Offset;
1035 IndentForLevel[TheLine.Level] = LevelIndent;
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001036
1037 // Remove trailing whitespace of the previous line if it was touched.
1038 if (PreviousLineWasTouched)
1039 formatFirstToken(TheLine.First, Indent, TheLine.InPPDirective,
1040 PreviousEndOfLineColumn);
Daniel Jasper9ece2bb2013-02-12 16:51:23 +00001041 }
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001042 // If we did not reformat this unwrapped line, the column at the end of
1043 // the last token is unchanged - thus, we can calculate the end of the
1044 // last token.
1045 PreviousEndOfLineColumn =
1046 SourceMgr.getSpellingColumnNumber(
1047 TheLine.Last->FormatTok.Tok.getLocation()) +
1048 Lex.MeasureTokenLength(TheLine.Last->FormatTok.Tok.getLocation(),
1049 SourceMgr, Lex.getLangOpts()) - 1;
1050 PreviousLineWasTouched = false;
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001051 }
1052 }
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001053 return Whitespaces.generateReplacements();
Daniel Jasperbac016b2012-12-03 18:12:45 +00001054 }
1055
1056private:
Manuel Klimek547d5db2013-02-08 17:38:27 +00001057 /// \brief Get the indent of \p Level from \p IndentForLevel.
1058 ///
1059 /// \p IndentForLevel must contain the indent for the level \c l
1060 /// at \p IndentForLevel[l], or a value < 0 if the indent for
1061 /// that level is unknown.
Daniel Jasperfc759082013-02-14 14:26:07 +00001062 unsigned getIndent(const std::vector<int> IndentForLevel, unsigned Level) {
Manuel Klimek547d5db2013-02-08 17:38:27 +00001063 if (IndentForLevel[Level] != -1)
1064 return IndentForLevel[Level];
Manuel Klimek52635ff2013-02-08 19:53:32 +00001065 if (Level == 0)
1066 return 0;
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001067 return getIndent(IndentForLevel, Level - 1) + 2;
Manuel Klimek547d5db2013-02-08 17:38:27 +00001068 }
1069
1070 /// \brief Get the offset of the line relatively to the level.
1071 ///
1072 /// For example, 'public:' labels in classes are offset by 1 or 2
1073 /// characters to the left from their level.
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001074 int getIndentOffset(const AnnotatedToken &RootToken) {
Manuel Klimek547d5db2013-02-08 17:38:27 +00001075 bool IsAccessModifier = false;
1076 if (RootToken.is(tok::kw_public) || RootToken.is(tok::kw_protected) ||
1077 RootToken.is(tok::kw_private))
1078 IsAccessModifier = true;
1079 else if (RootToken.is(tok::at) && !RootToken.Children.empty() &&
1080 (RootToken.Children[0].isObjCAtKeyword(tok::objc_public) ||
1081 RootToken.Children[0].isObjCAtKeyword(tok::objc_protected) ||
1082 RootToken.Children[0].isObjCAtKeyword(tok::objc_package) ||
1083 RootToken.Children[0].isObjCAtKeyword(tok::objc_private)))
1084 IsAccessModifier = true;
1085
1086 if (IsAccessModifier)
1087 return Style.AccessModifierOffset;
1088 return 0;
1089 }
1090
Manuel Klimek517e8942013-01-11 17:54:10 +00001091 /// \brief Tries to merge lines into one.
1092 ///
1093 /// This will change \c Line and \c AnnotatedLine to contain the merged line,
1094 /// if possible; note that \c I will be incremented when lines are merged.
1095 ///
1096 /// Returns whether the resulting \c Line can fit in a single line.
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001097 void tryFitMultipleLinesInOne(unsigned Indent,
Daniel Jasper995e8202013-01-14 13:08:07 +00001098 std::vector<AnnotatedLine>::iterator &I,
1099 std::vector<AnnotatedLine>::iterator E) {
Manuel Klimek517e8942013-01-11 17:54:10 +00001100 unsigned Limit = Style.ColumnLimit - (I->InPPDirective ? 1 : 0) - Indent;
1101
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001102 // We can never merge stuff if there are trailing line comments.
1103 if (I->Last->Type == TT_LineComment)
1104 return;
1105
Manuel Klimek517e8942013-01-11 17:54:10 +00001106 // Check whether the UnwrappedLine can be put onto a single line. If
1107 // so, this is bound to be the optimal solution (by definition) and we
1108 // don't need to analyze the entire solution space.
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001109 if (I->Last->TotalLength > Limit)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001110 return;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001111 Limit -= I->Last->TotalLength;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001112
Daniel Jasper9c8c40e2013-01-21 14:18:28 +00001113 if (I + 1 == E || (I + 1)->Type == LT_Invalid)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001114 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001115
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001116 if (I->Last->is(tok::l_brace)) {
1117 tryMergeSimpleBlock(I, E, Limit);
1118 } else if (I->First.is(tok::kw_if)) {
1119 tryMergeSimpleIf(I, E, Limit);
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001120 } else if (I->InPPDirective && (I->First.FormatTok.HasUnescapedNewline ||
1121 I->First.FormatTok.IsFirst)) {
1122 tryMergeSimplePPDirective(I, E, Limit);
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001123 }
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001124 return;
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001125 }
1126
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001127 void tryMergeSimplePPDirective(std::vector<AnnotatedLine>::iterator &I,
1128 std::vector<AnnotatedLine>::iterator E,
1129 unsigned Limit) {
1130 AnnotatedLine &Line = *I;
Daniel Jasper2b9c10b2013-01-14 15:52:06 +00001131 if (!(I + 1)->InPPDirective || (I + 1)->First.FormatTok.HasUnescapedNewline)
1132 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001133 if (I + 2 != E && (I + 2)->InPPDirective &&
1134 !(I + 2)->First.FormatTok.HasUnescapedNewline)
1135 return;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001136 if (1 + (I + 1)->Last->TotalLength > Limit)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001137 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001138 join(Line, *(++I));
1139 }
1140
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001141 void tryMergeSimpleIf(std::vector<AnnotatedLine>::iterator &I,
1142 std::vector<AnnotatedLine>::iterator E,
1143 unsigned Limit) {
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +00001144 if (!Style.AllowShortIfStatementsOnASingleLine)
1145 return;
Manuel Klimek4c128122013-01-18 14:46:43 +00001146 if ((I + 1)->InPPDirective != I->InPPDirective ||
1147 ((I + 1)->InPPDirective &&
1148 (I + 1)->First.FormatTok.HasUnescapedNewline))
1149 return;
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001150 AnnotatedLine &Line = *I;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001151 if (Line.Last->isNot(tok::r_paren))
1152 return;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001153 if (1 + (I + 1)->Last->TotalLength > Limit)
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001154 return;
1155 if ((I + 1)->First.is(tok::kw_if) || (I + 1)->First.Type == TT_LineComment)
1156 return;
1157 // Only inline simple if's (no nested if or else).
1158 if (I + 2 != E && (I + 2)->First.is(tok::kw_else))
1159 return;
1160 join(Line, *(++I));
1161 }
1162
1163 void tryMergeSimpleBlock(std::vector<AnnotatedLine>::iterator &I,
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001164 std::vector<AnnotatedLine>::iterator E,
1165 unsigned Limit) {
Manuel Klimek517e8942013-01-11 17:54:10 +00001166 // First, check that the current line allows merging. This is the case if
1167 // we're not in a control flow statement and the last token is an opening
1168 // brace.
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001169 AnnotatedLine &Line = *I;
Manuel Klimek517e8942013-01-11 17:54:10 +00001170 bool AllowedTokens =
Daniel Jasper995e8202013-01-14 13:08:07 +00001171 Line.First.isNot(tok::kw_if) && Line.First.isNot(tok::kw_while) &&
1172 Line.First.isNot(tok::kw_do) && Line.First.isNot(tok::r_brace) &&
1173 Line.First.isNot(tok::kw_else) && Line.First.isNot(tok::kw_try) &&
1174 Line.First.isNot(tok::kw_catch) && Line.First.isNot(tok::kw_for) &&
Nico Weber67015ed2013-01-11 21:14:08 +00001175 // This gets rid of all ObjC @ keywords and methods.
Daniel Jasper995e8202013-01-14 13:08:07 +00001176 Line.First.isNot(tok::at) && Line.First.isNot(tok::minus) &&
1177 Line.First.isNot(tok::plus);
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001178 if (!AllowedTokens)
1179 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001180
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001181 AnnotatedToken *Tok = &(I + 1)->First;
1182 if (Tok->Children.empty() && Tok->is(tok::r_brace) &&
1183 !Tok->MustBreakBefore && Tok->TotalLength <= Limit) {
Daniel Jasper729a7432013-02-11 12:36:37 +00001184 Tok->SpacesRequiredBefore = 0;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001185 join(Line, *(I + 1));
1186 I += 1;
1187 } else {
1188 // Check that we still have three lines and they fit into the limit.
1189 if (I + 2 == E || (I + 2)->Type == LT_Invalid ||
1190 !nextTwoLinesFitInto(I, Limit))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001191 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001192
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001193 // Second, check that the next line does not contain any braces - if it
1194 // does, readability declines when putting it into a single line.
1195 if ((I + 1)->Last->Type == TT_LineComment || Tok->MustBreakBefore)
1196 return;
1197 do {
1198 if (Tok->is(tok::l_brace) || Tok->is(tok::r_brace))
1199 return;
1200 Tok = Tok->Children.empty() ? NULL : &Tok->Children.back();
1201 } while (Tok != NULL);
Manuel Klimek517e8942013-01-11 17:54:10 +00001202
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001203 // Last, check that the third line contains a single closing brace.
1204 Tok = &(I + 2)->First;
1205 if (!Tok->Children.empty() || Tok->isNot(tok::r_brace) ||
1206 Tok->MustBreakBefore)
1207 return;
1208
1209 join(Line, *(I + 1));
1210 join(Line, *(I + 2));
1211 I += 2;
Manuel Klimek517e8942013-01-11 17:54:10 +00001212 }
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001213 }
1214
1215 bool nextTwoLinesFitInto(std::vector<AnnotatedLine>::iterator I,
1216 unsigned Limit) {
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001217 return 1 + (I + 1)->Last->TotalLength + 1 + (I + 2)->Last->TotalLength <=
1218 Limit;
Manuel Klimek517e8942013-01-11 17:54:10 +00001219 }
1220
Daniel Jasper995e8202013-01-14 13:08:07 +00001221 void join(AnnotatedLine &A, const AnnotatedLine &B) {
1222 A.Last->Children.push_back(B.First);
1223 while (!A.Last->Children.empty()) {
1224 A.Last->Children[0].Parent = A.Last;
1225 A.Last = &A.Last->Children[0];
1226 }
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001227 }
1228
Daniel Jasper995e8202013-01-14 13:08:07 +00001229 bool touchesRanges(const AnnotatedLine &TheLine) {
1230 const FormatToken *First = &TheLine.First.FormatTok;
1231 const FormatToken *Last = &TheLine.Last->FormatTok;
Daniel Jaspercd162382013-01-07 13:26:07 +00001232 CharSourceRange LineRange = CharSourceRange::getTokenRange(
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001233 First->Tok.getLocation(), Last->Tok.getLocation());
Daniel Jasperbac016b2012-12-03 18:12:45 +00001234 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001235 if (!SourceMgr.isBeforeInTranslationUnit(LineRange.getEnd(),
1236 Ranges[i].getBegin()) &&
1237 !SourceMgr.isBeforeInTranslationUnit(Ranges[i].getEnd(),
1238 LineRange.getBegin()))
1239 return true;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001240 }
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001241 return false;
1242 }
1243
1244 virtual void consumeUnwrappedLine(const UnwrappedLine &TheLine) {
Daniel Jaspercbb6c412013-01-16 09:10:19 +00001245 AnnotatedLines.push_back(AnnotatedLine(TheLine));
Daniel Jasperbac016b2012-12-03 18:12:45 +00001246 }
1247
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001248 /// \brief Add a new line and the required indent before the first Token
1249 /// of the \c UnwrappedLine if there was no structural parsing error.
1250 /// Returns the indent level of the \c UnwrappedLine.
Manuel Klimek547d5db2013-02-08 17:38:27 +00001251 void formatFirstToken(const AnnotatedToken &RootToken, unsigned Indent,
1252 bool InPPDirective, unsigned PreviousEndOfLineColumn) {
Daniel Jasper7d19bc22013-01-11 14:23:32 +00001253 const FormatToken &Tok = RootToken.FormatTok;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001254
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001255 unsigned Newlines =
1256 std::min(Tok.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001257 if (Newlines == 0 && !Tok.IsFirst)
1258 Newlines = 1;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001259
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001260 if (!InPPDirective || Tok.HasUnescapedNewline) {
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001261 Whitespaces.replaceWhitespace(RootToken, Newlines, Indent, 0, Style);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001262 } else {
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001263 Whitespaces.replacePPWhitespace(RootToken, Newlines, Indent,
1264 PreviousEndOfLineColumn, Style);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001265 }
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001266 }
1267
Alexander Kornienkoa4ae9f32013-01-14 11:34:14 +00001268 DiagnosticsEngine &Diag;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001269 FormatStyle Style;
1270 Lexer &Lex;
1271 SourceManager &SourceMgr;
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001272 WhitespaceManager Whitespaces;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001273 std::vector<CharSourceRange> Ranges;
Daniel Jasper995e8202013-01-14 13:08:07 +00001274 std::vector<AnnotatedLine> AnnotatedLines;
Alexander Kornienkocff563c2012-12-04 17:27:50 +00001275 bool StructuralError;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001276};
1277
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001278tooling::Replacements
1279reformat(const FormatStyle &Style, Lexer &Lex, SourceManager &SourceMgr,
1280 std::vector<CharSourceRange> Ranges, DiagnosticConsumer *DiagClient) {
Alexander Kornienko3048aea2013-01-10 15:05:09 +00001281 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions();
Alexander Kornienkoa4ae9f32013-01-14 11:34:14 +00001282 OwningPtr<DiagnosticConsumer> DiagPrinter;
1283 if (DiagClient == 0) {
1284 DiagPrinter.reset(new TextDiagnosticPrinter(llvm::errs(), &*DiagOpts));
1285 DiagPrinter->BeginSourceFile(Lex.getLangOpts(), Lex.getPP());
1286 DiagClient = DiagPrinter.get();
1287 }
Alexander Kornienko3048aea2013-01-10 15:05:09 +00001288 DiagnosticsEngine Diagnostics(
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001289 IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs()), &*DiagOpts,
Alexander Kornienkoa4ae9f32013-01-14 11:34:14 +00001290 DiagClient, false);
Alexander Kornienko3048aea2013-01-10 15:05:09 +00001291 Diagnostics.setSourceManager(&SourceMgr);
1292 Formatter formatter(Diagnostics, Style, Lex, SourceMgr, Ranges);
Daniel Jasperbac016b2012-12-03 18:12:45 +00001293 return formatter.format();
1294}
1295
Daniel Jasper46ef8522013-01-10 13:08:12 +00001296LangOptions getFormattingLangOpts() {
1297 LangOptions LangOpts;
1298 LangOpts.CPlusPlus = 1;
1299 LangOpts.CPlusPlus11 = 1;
1300 LangOpts.Bool = 1;
1301 LangOpts.ObjC1 = 1;
1302 LangOpts.ObjC2 = 1;
1303 return LangOpts;
1304}
1305
Daniel Jaspercd162382013-01-07 13:26:07 +00001306} // namespace format
1307} // namespace clang