blob: 880be39b1c36c6094637d13b60cab29813ab3ba2 [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();
Manuel Klimek8092a942013-02-20 10:15:13 +0000138 storeReplacement(Tok.FormatTok, getNewLineText(NewLines, Spaces));
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000139 }
140
141 /// \brief Like \c replaceWhitespace, but additionally adds right-aligned
142 /// backslashes to escape newlines inside a preprocessor directive.
143 ///
144 /// This function and \c replaceWhitespace have the same behavior if
145 /// \c Newlines == 0.
146 void replacePPWhitespace(const AnnotatedToken &Tok, unsigned NewLines,
147 unsigned Spaces, unsigned WhitespaceStartColumn,
148 const FormatStyle &Style) {
Manuel Klimek8092a942013-02-20 10:15:13 +0000149 storeReplacement(
150 Tok.FormatTok,
151 getNewLineText(NewLines, Spaces, WhitespaceStartColumn, Style));
152 }
153
154 /// \brief Inserts a line break into the middle of a token.
155 ///
156 /// Will break at \p Offset inside \p Tok, putting \p Prefix before the line
157 /// break and \p Postfix before the rest of the token starts in the next line.
158 ///
159 /// \p InPPDirective, \p Spaces, \p WhitespaceStartColumn and \p Style are
160 /// used to generate the correct line break.
161 void breakToken(const AnnotatedToken &Tok, unsigned Offset, StringRef Prefix,
162 StringRef Postfix, bool InPPDirective, unsigned Spaces,
163 unsigned WhitespaceStartColumn, const FormatStyle &Style) {
164 std::string NewLineText;
165 if (!InPPDirective)
166 NewLineText = getNewLineText(1, Spaces);
167 else
168 NewLineText = getNewLineText(1, Spaces, WhitespaceStartColumn, Style);
169 std::string ReplacementText = (Prefix + NewLineText + Postfix).str();
170 SourceLocation InsertAt = Tok.FormatTok.WhiteSpaceStart
171 .getLocWithOffset(Tok.FormatTok.WhiteSpaceLength + Offset);
172 Replaces.insert(
173 tooling::Replacement(SourceMgr, InsertAt, 0, ReplacementText));
174 }
175
176 /// \brief Returns all the \c Replacements created during formatting.
177 const tooling::Replacements &generateReplacements() {
178 alignComments();
179 return Replaces;
180 }
181
182private:
183 std::string getNewLineText(unsigned NewLines, unsigned Spaces) {
184 return std::string(NewLines, '\n') + std::string(Spaces, ' ');
185 }
186
187 std::string
188 getNewLineText(unsigned NewLines, unsigned Spaces,
189 unsigned WhitespaceStartColumn, const FormatStyle &Style) {
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000190 std::string NewLineText;
191 if (NewLines > 0) {
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000192 unsigned Offset =
193 std::min<int>(Style.ColumnLimit - 1, WhitespaceStartColumn);
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000194 for (unsigned i = 0; i < NewLines; ++i) {
195 NewLineText += std::string(Style.ColumnLimit - Offset - 1, ' ');
196 NewLineText += "\\\n";
197 Offset = 0;
198 }
199 }
Manuel Klimek8092a942013-02-20 10:15:13 +0000200 return NewLineText + std::string(Spaces, ' ');
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000201 }
202
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000203 /// \brief Structure to store a comment for later layout and alignment.
204 struct StoredComment {
205 FormatToken Tok;
206 unsigned MinColumn;
207 unsigned MaxColumn;
208 unsigned NewLines;
209 unsigned Spaces;
210 };
211 SmallVector<StoredComment, 16> Comments;
212 typedef SmallVector<StoredComment, 16>::iterator comment_iterator;
213
214 /// \brief Try to align all stashed comments.
215 void alignComments() {
216 unsigned MinColumn = 0;
217 unsigned MaxColumn = UINT_MAX;
218 comment_iterator Start = Comments.begin();
219 for (comment_iterator I = Comments.begin(), E = Comments.end(); I != E;
220 ++I) {
221 if (I->MinColumn > MaxColumn || I->MaxColumn < MinColumn) {
222 alignComments(Start, I, MinColumn);
223 MinColumn = I->MinColumn;
224 MaxColumn = I->MaxColumn;
225 Start = I;
226 } else {
227 MinColumn = std::max(MinColumn, I->MinColumn);
228 MaxColumn = std::min(MaxColumn, I->MaxColumn);
229 }
230 }
231 alignComments(Start, Comments.end(), MinColumn);
232 Comments.clear();
233 }
234
235 /// \brief Put all the comments between \p I and \p E into \p Column.
236 void alignComments(comment_iterator I, comment_iterator E, unsigned Column) {
237 while (I != E) {
238 unsigned Spaces = I->Spaces + Column - I->MinColumn;
239 storeReplacement(I->Tok, std::string(I->NewLines, '\n') +
Daniel Jasper29f123b2013-02-08 15:28:42 +0000240 std::string(Spaces, ' '));
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000241 ++I;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000242 }
243 }
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000244
245 /// \brief Stores \p Text as the replacement for the whitespace in front of
246 /// \p Tok.
247 void storeReplacement(const FormatToken &Tok, const std::string Text) {
Daniel Jasperafcbd852013-01-30 09:46:12 +0000248 // Don't create a replacement, if it does not change anything.
249 if (StringRef(SourceMgr.getCharacterData(Tok.WhiteSpaceStart),
250 Tok.WhiteSpaceLength) == Text)
251 return;
252
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000253 Replaces.insert(tooling::Replacement(SourceMgr, Tok.WhiteSpaceStart,
254 Tok.WhiteSpaceLength, Text));
255 }
256
257 SourceManager &SourceMgr;
258 tooling::Replacements Replaces;
259};
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000260
Daniel Jasper7d812812013-02-21 15:00:29 +0000261static bool isVarDeclName(const AnnotatedToken &Tok) {
262 return Tok.Parent != NULL && Tok.is(tok::identifier) &&
263 (Tok.Parent->Type == TT_PointerOrReference ||
264 Tok.Parent->is(tok::identifier));
265}
266
Daniel Jasperbac016b2012-12-03 18:12:45 +0000267class UnwrappedLineFormatter {
268public:
Manuel Klimek94fc6f12013-01-10 19:17:33 +0000269 UnwrappedLineFormatter(const FormatStyle &Style, SourceManager &SourceMgr,
Daniel Jasper995e8202013-01-14 13:08:07 +0000270 const AnnotatedLine &Line, unsigned FirstIndent,
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +0000271 const AnnotatedToken &RootToken,
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000272 WhitespaceManager &Whitespaces, bool StructuralError)
Daniel Jasper1321eb52012-12-18 21:05:13 +0000273 : Style(Style), SourceMgr(SourceMgr), Line(Line),
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000274 FirstIndent(FirstIndent), RootToken(RootToken),
Daniel Jasperf11a7052013-02-21 21:33:55 +0000275 Whitespaces(Whitespaces), Count(0) {}
Daniel Jasperbac016b2012-12-03 18:12:45 +0000276
Manuel Klimekd4397b92013-01-04 23:34:14 +0000277 /// \brief Formats an \c UnwrappedLine.
278 ///
279 /// \returns The column after the last token in the last line of the
280 /// \c UnwrappedLine.
281 unsigned format() {
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000282 // Initialize state dependent on indent.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000283 LineState State;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000284 State.Column = FirstIndent;
Daniel Jasper26f7e782013-01-08 14:56:18 +0000285 State.NextToken = &RootToken;
Daniel Jasperc4615b72013-02-20 12:56:39 +0000286 State.Stack.push_back(ParenState(FirstIndent + 4, FirstIndent,
287 !Style.BinPackParameters,
288 /*HasMultiParameterLine=*/ false));
Daniel Jasper2e603772013-01-29 11:21:01 +0000289 State.VariablePos = 0;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000290 State.LineContainsContinuedForLoopSection = false;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000291 State.ParenLevel = 0;
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000292 State.StartOfStringLiteral = 0;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000293 State.StartOfLineLevel = State.ParenLevel;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000294
Manuel Klimekca547db2013-01-16 14:55:28 +0000295 DEBUG({
296 DebugTokenState(*State.NextToken);
297 });
298
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000299 // The first token has already been indented and thus consumed.
Manuel Klimek8092a942013-02-20 10:15:13 +0000300 moveStateToNextToken(State, /*DryRun=*/ false);
Daniel Jasperbac016b2012-12-03 18:12:45 +0000301
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000302 // If everything fits on a single line, just put it there.
303 if (Line.Last->TotalLength <= getColumnLimit() - FirstIndent) {
304 while (State.NextToken != NULL) {
Daniel Jasper1321eb52012-12-18 21:05:13 +0000305 addTokenToState(false, false, State);
Daniel Jasper1321eb52012-12-18 21:05:13 +0000306 }
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000307 return State.Column;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000308 }
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000309
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000310 // If the ObjC method declaration does not fit on a line, we should format
311 // it with one arg per line.
312 if (Line.Type == LT_ObjCMethodDecl)
313 State.Stack.back().BreakBeforeParameter = true;
314
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000315 // Find best solution in solution space.
316 return analyzeSolutionSpace(State);
Daniel Jasperbac016b2012-12-03 18:12:45 +0000317 }
318
319private:
Manuel Klimekca547db2013-01-16 14:55:28 +0000320 void DebugTokenState(const AnnotatedToken &AnnotatedTok) {
321 const Token &Tok = AnnotatedTok.FormatTok.Tok;
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000322 llvm::errs() << StringRef(SourceMgr.getCharacterData(Tok.getLocation()),
323 Tok.getLength());
Manuel Klimekca547db2013-01-16 14:55:28 +0000324 llvm::errs();
325 }
326
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000327 struct ParenState {
Daniel Jasperd399bff2013-02-05 09:41:21 +0000328 ParenState(unsigned Indent, unsigned LastSpace, bool AvoidBinPacking,
329 bool HasMultiParameterLine)
Daniel Jasper29f123b2013-02-08 15:28:42 +0000330 : Indent(Indent), LastSpace(LastSpace), FirstLessLess(0),
331 BreakBeforeClosingBrace(false), QuestionColumn(0),
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000332 AvoidBinPacking(AvoidBinPacking), BreakBeforeParameter(false),
Daniel Jasper7878a7b2013-02-15 11:07:25 +0000333 HasMultiParameterLine(HasMultiParameterLine), ColonPos(0),
Daniel Jasperf11a7052013-02-21 21:33:55 +0000334 BreakBeforeThirdOperand(false) {}
Daniel Jaspera4974cf2012-12-24 16:43:00 +0000335
Daniel Jasperbac016b2012-12-03 18:12:45 +0000336 /// \brief The position to which a specific parenthesis level needs to be
337 /// indented.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000338 unsigned Indent;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000339
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000340 /// \brief The position of the last space on each level.
341 ///
342 /// Used e.g. to break like:
343 /// functionCall(Parameter, otherCall(
344 /// OtherParameter));
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000345 unsigned LastSpace;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000346
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000347 /// \brief The position the first "<<" operator encountered on each level.
348 ///
349 /// Used to align "<<" operators. 0 if no such operator has been encountered
350 /// on a level.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000351 unsigned FirstLessLess;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000352
Manuel Klimekc8c8a472013-01-10 15:58:26 +0000353 /// \brief Whether a newline needs to be inserted before the block's closing
354 /// brace.
355 ///
356 /// We only want to insert a newline before the closing brace if there also
357 /// was a newline after the beginning left brace.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000358 bool BreakBeforeClosingBrace;
359
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000360 /// \brief The column of a \c ? in a conditional expression;
361 unsigned QuestionColumn;
362
Daniel Jasperf343cab2013-01-31 14:59:26 +0000363 /// \brief Avoid bin packing, i.e. multiple parameters/elements on multiple
364 /// lines, in this context.
365 bool AvoidBinPacking;
366
367 /// \brief Break after the next comma (or all the commas in this context if
368 /// \c AvoidBinPacking is \c true).
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000369 bool BreakBeforeParameter;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000370
371 /// \brief This context already has a line with more than one parameter.
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000372 bool HasMultiParameterLine;
Daniel Jasper7e9bf8c2013-01-11 11:37:55 +0000373
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000374 /// \brief The position of the colon in an ObjC method declaration/call.
375 unsigned ColonPos;
Daniel Jasperc4615b72013-02-20 12:56:39 +0000376
Daniel Jasper7878a7b2013-02-15 11:07:25 +0000377 /// \brief Break before third operand in ternary expression.
378 bool BreakBeforeThirdOperand;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000379
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000380 bool operator<(const ParenState &Other) const {
381 if (Indent != Other.Indent)
Daniel Jasper7d19bc22013-01-11 14:23:32 +0000382 return Indent < Other.Indent;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000383 if (LastSpace != Other.LastSpace)
384 return LastSpace < Other.LastSpace;
385 if (FirstLessLess != Other.FirstLessLess)
386 return FirstLessLess < Other.FirstLessLess;
Daniel Jasper7e9bf8c2013-01-11 11:37:55 +0000387 if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
388 return BreakBeforeClosingBrace;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000389 if (QuestionColumn != Other.QuestionColumn)
390 return QuestionColumn < Other.QuestionColumn;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000391 if (AvoidBinPacking != Other.AvoidBinPacking)
392 return AvoidBinPacking;
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000393 if (BreakBeforeParameter != Other.BreakBeforeParameter)
394 return BreakBeforeParameter;
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000395 if (HasMultiParameterLine != Other.HasMultiParameterLine)
396 return HasMultiParameterLine;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000397 if (ColonPos != Other.ColonPos)
398 return ColonPos < Other.ColonPos;
Daniel Jasper7878a7b2013-02-15 11:07:25 +0000399 if (BreakBeforeThirdOperand != Other.BreakBeforeThirdOperand)
400 return BreakBeforeThirdOperand;
Daniel Jasperb3123142013-01-12 07:36:22 +0000401 return false;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000402 }
403 };
404
405 /// \brief The current state when indenting a unwrapped line.
406 ///
407 /// As the indenting tries different combinations this is copied by value.
408 struct LineState {
409 /// \brief The number of used columns in the current line.
410 unsigned Column;
411
412 /// \brief The token that needs to be next formatted.
413 const AnnotatedToken *NextToken;
414
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000415 /// \brief The column of the first variable name in a variable declaration.
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000416 ///
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000417 /// Used to align further variables if necessary.
Daniel Jasper2e603772013-01-29 11:21:01 +0000418 unsigned VariablePos;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000419
420 /// \brief \c true if this line contains a continued for-loop section.
421 bool LineContainsContinuedForLoopSection;
422
Daniel Jasper29f123b2013-02-08 15:28:42 +0000423 /// \brief The level of nesting inside (), [], <> and {}.
424 unsigned ParenLevel;
425
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000426 /// \brief The \c ParenLevel at the start of this line.
427 unsigned StartOfLineLevel;
428
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000429 /// \brief The start column of the string literal, if we're in a string
430 /// literal sequence, 0 otherwise.
431 unsigned StartOfStringLiteral;
432
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000433 /// \brief A stack keeping track of properties applying to parenthesis
434 /// levels.
435 std::vector<ParenState> Stack;
436
437 /// \brief Comparison operator to be able to used \c LineState in \c map.
438 bool operator<(const LineState &Other) const {
Daniel Jasperd7896702013-02-19 09:28:55 +0000439 if (NextToken != Other.NextToken)
440 return NextToken < Other.NextToken;
441 if (Column != Other.Column)
442 return Column < Other.Column;
443 if (VariablePos != Other.VariablePos)
444 return VariablePos < Other.VariablePos;
445 if (LineContainsContinuedForLoopSection !=
446 Other.LineContainsContinuedForLoopSection)
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000447 return LineContainsContinuedForLoopSection;
Daniel Jasperd7896702013-02-19 09:28:55 +0000448 if (ParenLevel != Other.ParenLevel)
449 return ParenLevel < Other.ParenLevel;
450 if (StartOfLineLevel != Other.StartOfLineLevel)
451 return StartOfLineLevel < Other.StartOfLineLevel;
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000452 if (StartOfStringLiteral != Other.StartOfStringLiteral)
453 return StartOfStringLiteral < Other.StartOfStringLiteral;
Daniel Jasperd7896702013-02-19 09:28:55 +0000454 return Stack < Other.Stack;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000455 }
456 };
457
Daniel Jasper20409152012-12-04 14:54:30 +0000458 /// \brief Appends the next token to \p State and updates information
459 /// necessary for indentation.
460 ///
461 /// Puts the token on the current line if \p Newline is \c true and adds a
462 /// line break and necessary indentation otherwise.
463 ///
464 /// If \p DryRun is \c false, also creates and stores the required
465 /// \c Replacement.
Manuel Klimek8092a942013-02-20 10:15:13 +0000466 unsigned addTokenToState(bool Newline, bool DryRun, LineState &State) {
Daniel Jasper9c837d02013-01-09 07:06:56 +0000467 const AnnotatedToken &Current = *State.NextToken;
468 const AnnotatedToken &Previous = *State.NextToken->Parent;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000469 assert(State.Stack.size());
Daniel Jasperbac016b2012-12-03 18:12:45 +0000470
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000471 if (Current.Type == TT_ImplicitStringLiteral) {
472 State.Column += State.NextToken->FormatTok.WhiteSpaceLength +
473 State.NextToken->FormatTok.TokenLength;
474 if (State.NextToken->Children.empty())
475 State.NextToken = NULL;
476 else
477 State.NextToken = &State.NextToken->Children[0];
Manuel Klimek8092a942013-02-20 10:15:13 +0000478 return 0;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000479 }
480
Daniel Jasperbac016b2012-12-03 18:12:45 +0000481 if (Newline) {
Manuel Klimek060143e2013-01-02 18:33:23 +0000482 unsigned WhitespaceStartColumn = State.Column;
Manuel Klimekbb42bf12013-01-10 11:52:21 +0000483 if (Current.is(tok::r_brace)) {
484 State.Column = Line.Level * 2;
Daniel Jasper9c837d02013-01-09 07:06:56 +0000485 } else if (Current.is(tok::string_literal) &&
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000486 State.StartOfStringLiteral != 0) {
487 State.Column = State.StartOfStringLiteral;
Daniel Jasper66d19bd2013-02-18 11:59:17 +0000488 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasper9c837d02013-01-09 07:06:56 +0000489 } else if (Current.is(tok::lessless) &&
Daniel Jasper29f123b2013-02-08 15:28:42 +0000490 State.Stack.back().FirstLessLess != 0) {
491 State.Column = State.Stack.back().FirstLessLess;
492 } else if (State.ParenLevel != 0 &&
Daniel Jasper5f2173e2013-01-28 07:43:15 +0000493 (Previous.is(tok::equal) || Previous.is(tok::coloncolon) ||
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000494 Current.is(tok::period) || Current.is(tok::arrow) ||
495 Current.is(tok::question))) {
Daniel Jasper9c837d02013-01-09 07:06:56 +0000496 // Indent and extra 4 spaces after if we know the current expression is
497 // continued. Don't do that on the top level, as we already indent 4
498 // there.
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000499 State.Column = std::max(State.Stack.back().LastSpace,
500 State.Stack.back().Indent) + 4;
501 } else if (Current.Type == TT_ConditionalExpr) {
502 State.Column = State.Stack.back().QuestionColumn;
Daniel Jasper2e603772013-01-29 11:21:01 +0000503 } else if (Previous.is(tok::comma) && State.VariablePos != 0 &&
Daniel Jasper29f123b2013-02-08 15:28:42 +0000504 ((RootToken.is(tok::kw_for) && State.ParenLevel == 1) ||
505 State.ParenLevel == 0)) {
Daniel Jasper2e603772013-01-29 11:21:01 +0000506 State.Column = State.VariablePos;
Daniel Jasper83f25ba2013-01-28 15:16:31 +0000507 } else if (State.NextToken->Parent->ClosesTemplateDeclaration ||
508 Current.Type == TT_StartOfName) {
Daniel Jasper29f123b2013-02-08 15:28:42 +0000509 State.Column = State.Stack.back().Indent - 4;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000510 } else if (Current.Type == TT_ObjCSelectorName) {
511 if (State.Stack.back().ColonPos > Current.FormatTok.TokenLength) {
512 State.Column =
513 State.Stack.back().ColonPos - Current.FormatTok.TokenLength;
514 } else {
515 State.Column = State.Stack.back().Indent;
516 State.Stack.back().ColonPos =
517 State.Column + Current.FormatTok.TokenLength;
518 }
Daniel Jasper7d812812013-02-21 15:00:29 +0000519 } else if (Previous.Type == TT_ObjCMethodExpr || isVarDeclName(Current)) {
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000520 State.Column = State.Stack.back().Indent + 4;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000521 } else {
Daniel Jasper29f123b2013-02-08 15:28:42 +0000522 State.Column = State.Stack.back().Indent;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000523 }
524
Daniel Jasper7878a7b2013-02-15 11:07:25 +0000525 if (Current.is(tok::question))
526 State.Stack.back().BreakBeforeThirdOperand = true;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000527 if (Previous.is(tok::comma) && !State.Stack.back().AvoidBinPacking)
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000528 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000529
Daniel Jasper26f7e782013-01-08 14:56:18 +0000530 if (RootToken.is(tok::kw_for))
Daniel Jasper9c837d02013-01-09 07:06:56 +0000531 State.LineContainsContinuedForLoopSection = Previous.isNot(tok::semi);
Daniel Jasper20409152012-12-04 14:54:30 +0000532
Manuel Klimek060143e2013-01-02 18:33:23 +0000533 if (!DryRun) {
Daniel Jasperc4615b72013-02-20 12:56:39 +0000534 unsigned NewLines =
535 std::max(1u, std::min(Current.FormatTok.NewlinesBefore,
536 Style.MaxEmptyLinesToKeep + 1));
Manuel Klimek060143e2013-01-02 18:33:23 +0000537 if (!Line.InPPDirective)
Daniel Jasperc4615b72013-02-20 12:56:39 +0000538 Whitespaces.replaceWhitespace(Current, NewLines, State.Column,
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000539 WhitespaceStartColumn, Style);
Manuel Klimek060143e2013-01-02 18:33:23 +0000540 else
Daniel Jasperc4615b72013-02-20 12:56:39 +0000541 Whitespaces.replacePPWhitespace(Current, NewLines, State.Column,
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000542 WhitespaceStartColumn, Style);
Manuel Klimek060143e2013-01-02 18:33:23 +0000543 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000544
Daniel Jasper29f123b2013-02-08 15:28:42 +0000545 State.Stack.back().LastSpace = State.Column;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000546 State.StartOfLineLevel = State.ParenLevel;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000547 if (Current.is(tok::colon) && Current.Type != TT_ConditionalExpr)
Daniel Jasper29f123b2013-02-08 15:28:42 +0000548 State.Stack.back().Indent += 2;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000549 } else {
Daniel Jasper2e603772013-01-29 11:21:01 +0000550 if (Current.is(tok::equal) &&
Daniel Jasper29f123b2013-02-08 15:28:42 +0000551 (RootToken.is(tok::kw_for) || State.ParenLevel == 0))
Daniel Jasper2e603772013-01-29 11:21:01 +0000552 State.VariablePos = State.Column - Previous.FormatTok.TokenLength;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000553
Daniel Jasper729a7432013-02-11 12:36:37 +0000554 unsigned Spaces = State.NextToken->SpacesRequiredBefore;
Daniel Jasper20409152012-12-04 14:54:30 +0000555
Daniel Jasperbac016b2012-12-03 18:12:45 +0000556 if (!DryRun)
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000557 Whitespaces.replaceWhitespace(Current, 0, Spaces, State.Column, Style);
Daniel Jasper20409152012-12-04 14:54:30 +0000558
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000559 if (Current.Type == TT_ObjCSelectorName &&
560 State.Stack.back().ColonPos == 0) {
561 if (State.Stack.back().Indent + Current.LongestObjCSelectorName >
562 State.Column + Spaces + Current.FormatTok.TokenLength)
563 State.Stack.back().ColonPos =
564 State.Stack.back().Indent + Current.LongestObjCSelectorName;
565 else
566 State.Stack.back().ColonPos =
Daniel Jasper9e9e6e02013-02-06 16:00:26 +0000567 State.Column + Spaces + Current.FormatTok.TokenLength;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000568 }
569
Daniel Jasperd4f2c2e2013-01-29 19:41:55 +0000570 if (Current.Type != TT_LineComment &&
571 (Previous.is(tok::l_paren) || Previous.is(tok::l_brace) ||
572 State.NextToken->Parent->Type == TT_TemplateOpener))
Daniel Jasper29f123b2013-02-08 15:28:42 +0000573 State.Stack.back().Indent = State.Column + Spaces;
Daniel Jaspercda16502013-02-04 08:34:57 +0000574 if (Previous.is(tok::comma) && !isTrailingComment(Current))
Daniel Jasper29f123b2013-02-08 15:28:42 +0000575 State.Stack.back().HasMultiParameterLine = true;
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000576
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000577 State.Column += Spaces;
Daniel Jaspere438bac2013-01-23 20:41:06 +0000578 if (Current.is(tok::l_paren) && Previous.is(tok::kw_if))
579 // Treat the condition inside an if as if it was a second function
580 // parameter, i.e. let nested calls have an indent of 4.
581 State.Stack.back().LastSpace = State.Column + 1; // 1 is length of "(".
Daniel Jasper29f123b2013-02-08 15:28:42 +0000582 else if (Previous.is(tok::comma) && State.ParenLevel != 0)
Daniel Jaspere438bac2013-01-23 20:41:06 +0000583 // Top-level spaces are exempt as that mostly leads to better results.
584 State.Stack.back().LastSpace = State.Column;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000585 else if ((Previous.Type == TT_BinaryOperator ||
Daniel Jasper02b771e2013-01-28 13:31:35 +0000586 Previous.Type == TT_ConditionalExpr ||
587 Previous.Type == TT_CtorInitializerColon) &&
Daniel Jasperae8699b2013-01-28 09:35:24 +0000588 getPrecedence(Previous) != prec::Assignment)
589 State.Stack.back().LastSpace = State.Column;
Daniel Jasper6cabab42013-02-14 08:42:54 +0000590 else if (Previous.Type == TT_InheritanceColon)
591 State.Stack.back().Indent = State.Column;
Daniel Jasper986e17f2013-01-28 07:35:34 +0000592 else if (Previous.ParameterCount > 1 &&
593 (Previous.is(tok::l_paren) || Previous.is(tok::l_square) ||
Daniel Jasperf343cab2013-01-31 14:59:26 +0000594 Previous.is(tok::l_brace) ||
Daniel Jasper986e17f2013-01-28 07:35:34 +0000595 Previous.Type == TT_TemplateOpener))
596 // If this function has multiple parameters, indent nested calls from
597 // the start of the first parameter.
598 State.Stack.back().LastSpace = State.Column;
Daniel Jasper82282dc2013-02-18 13:52:06 +0000599 else if ((Current.is(tok::period) || Current.is(tok::arrow)) &&
600 Line.Type == LT_BuilderTypeCall && State.ParenLevel == 0)
601 State.Stack.back().LastSpace = State.Column;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000602 }
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000603
604 // If we break after an {, we should also break before the corresponding }.
605 if (Newline && Previous.is(tok::l_brace))
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000606 State.Stack.back().BreakBeforeClosingBrace = true;
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000607
Daniel Jasper8159d2f2013-02-04 07:30:30 +0000608 if (State.Stack.back().AvoidBinPacking && Newline &&
Daniel Jasper29f123b2013-02-08 15:28:42 +0000609 (Line.First.isNot(tok::kw_for) || State.ParenLevel != 1)) {
Daniel Jasper8f4bd7a2013-01-23 10:08:28 +0000610 // If we are breaking after '(', '{', '<', this is not bin packing unless
Daniel Jasperf1579602013-01-29 16:03:49 +0000611 // AllowAllParametersOfDeclarationOnNextLine is false.
Daniel Jasper8f4bd7a2013-01-23 10:08:28 +0000612 if ((Previous.isNot(tok::l_paren) && Previous.isNot(tok::l_brace) &&
613 Previous.Type != TT_TemplateOpener) ||
Daniel Jasperf1579602013-01-29 16:03:49 +0000614 (!Style.AllowAllParametersOfDeclarationOnNextLine &&
615 Line.MustBeDeclaration))
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000616 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasper7d812812013-02-21 15:00:29 +0000617 }
Daniel Jasper2e603772013-01-29 11:21:01 +0000618
Daniel Jasper7d812812013-02-21 15:00:29 +0000619 if (Newline) {
Daniel Jasper8f4bd7a2013-01-23 10:08:28 +0000620 // Any break on this level means that the parent level has been broken
621 // and we need to avoid bin packing there.
622 for (unsigned i = 0, e = State.Stack.size() - 1; i != e; ++i) {
Daniel Jasper8159d2f2013-02-04 07:30:30 +0000623 if (Line.First.isNot(tok::kw_for) || i != 1)
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000624 State.Stack[i].BreakBeforeParameter = true;
Daniel Jasper8f4bd7a2013-01-23 10:08:28 +0000625 }
626 }
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000627
Manuel Klimek8092a942013-02-20 10:15:13 +0000628 return moveStateToNextToken(State, DryRun);
Daniel Jasper20409152012-12-04 14:54:30 +0000629 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000630
Daniel Jasper20409152012-12-04 14:54:30 +0000631 /// \brief Mark the next token as consumed in \p State and modify its stacks
632 /// accordingly.
Manuel Klimek8092a942013-02-20 10:15:13 +0000633 unsigned moveStateToNextToken(LineState &State, bool DryRun) {
Daniel Jasper26f7e782013-01-08 14:56:18 +0000634 const AnnotatedToken &Current = *State.NextToken;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000635 assert(State.Stack.size());
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000636
Daniel Jasper6cabab42013-02-14 08:42:54 +0000637 if (Current.Type == TT_InheritanceColon)
638 State.Stack.back().AvoidBinPacking = true;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000639 if (Current.is(tok::lessless) && State.Stack.back().FirstLessLess == 0)
640 State.Stack.back().FirstLessLess = State.Column;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000641 if (Current.is(tok::question))
642 State.Stack.back().QuestionColumn = State.Column;
Daniel Jasper7d812812013-02-21 15:00:29 +0000643 if (Current.Type == TT_CtorInitializerColon) {
644 if (Style.ConstructorInitializerAllOnOneLineOrOnePerLine)
645 State.Stack.back().AvoidBinPacking = true;
646 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000647 }
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000648
Daniel Jasper29f123b2013-02-08 15:28:42 +0000649 // Insert scopes created by fake parenthesis.
650 for (unsigned i = 0, e = Current.FakeLParens; i != e; ++i) {
651 ParenState NewParenState = State.Stack.back();
652 NewParenState.Indent = std::max(State.Column, State.Stack.back().Indent);
653 State.Stack.push_back(NewParenState);
654 }
655
Daniel Jaspercf225b62012-12-24 13:43:52 +0000656 // If we encounter an opening (, [, { or <, we add a level to our stacks to
Daniel Jasper20409152012-12-04 14:54:30 +0000657 // prepare for the following tokens.
Daniel Jasper26f7e782013-01-08 14:56:18 +0000658 if (Current.is(tok::l_paren) || Current.is(tok::l_square) ||
659 Current.is(tok::l_brace) ||
660 State.NextToken->Type == TT_TemplateOpener) {
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000661 unsigned NewIndent;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000662 bool AvoidBinPacking;
Manuel Klimek2851c162013-01-10 14:36:46 +0000663 if (Current.is(tok::l_brace)) {
Daniel Jasperf343cab2013-01-31 14:59:26 +0000664 NewIndent = 2 + State.Stack.back().LastSpace;
665 AvoidBinPacking = false;
Manuel Klimek2851c162013-01-10 14:36:46 +0000666 } else {
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000667 NewIndent = 4 + State.Stack.back().LastSpace;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000668 AvoidBinPacking = !Style.BinPackParameters;
Manuel Klimek2851c162013-01-10 14:36:46 +0000669 }
Daniel Jasperd399bff2013-02-05 09:41:21 +0000670 State.Stack.push_back(
671 ParenState(NewIndent, State.Stack.back().LastSpace, AvoidBinPacking,
672 State.Stack.back().HasMultiParameterLine));
Daniel Jasper29f123b2013-02-08 15:28:42 +0000673 ++State.ParenLevel;
Daniel Jasper20409152012-12-04 14:54:30 +0000674 }
675
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000676 // If this '[' opens an ObjC call, determine whether all parameters fit into
677 // one line and put one per line if they don't.
678 if (Current.is(tok::l_square) && Current.Type == TT_ObjCMethodExpr &&
679 Current.MatchingParen != NULL) {
680 if (getLengthToMatchingParen(Current) + State.Column > getColumnLimit())
681 State.Stack.back().BreakBeforeParameter = true;
682 }
683
Daniel Jaspercf225b62012-12-24 13:43:52 +0000684 // If we encounter a closing ), ], } or >, we can remove a level from our
Daniel Jasper20409152012-12-04 14:54:30 +0000685 // stacks.
Daniel Jasper26f7e782013-01-08 14:56:18 +0000686 if (Current.is(tok::r_paren) || Current.is(tok::r_square) ||
687 (Current.is(tok::r_brace) && State.NextToken != &RootToken) ||
688 State.NextToken->Type == TT_TemplateCloser) {
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000689 State.Stack.pop_back();
Daniel Jasper29f123b2013-02-08 15:28:42 +0000690 --State.ParenLevel;
691 }
692
693 // Remove scopes created by fake parenthesis.
694 for (unsigned i = 0, e = Current.FakeRParens; i != e; ++i) {
695 State.Stack.pop_back();
Daniel Jasperbac016b2012-12-03 18:12:45 +0000696 }
Manuel Klimek2851c162013-01-10 14:36:46 +0000697
Manuel Klimeke9a62262013-02-20 15:32:58 +0000698 if (Current.is(tok::string_literal)) {
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000699 State.StartOfStringLiteral = State.Column;
700 } else if (Current.isNot(tok::comment)) {
701 State.StartOfStringLiteral = 0;
702 }
703
Manuel Klimek8092a942013-02-20 10:15:13 +0000704 State.Column += Current.FormatTok.TokenLength;
705
Daniel Jasper26f7e782013-01-08 14:56:18 +0000706 if (State.NextToken->Children.empty())
707 State.NextToken = NULL;
708 else
709 State.NextToken = &State.NextToken->Children[0];
Manuel Klimek2851c162013-01-10 14:36:46 +0000710
Manuel Klimek8092a942013-02-20 10:15:13 +0000711 return breakProtrudingToken(Current, State, DryRun);
712 }
713
714 /// \brief If the current token sticks out over the end of the line, break
715 /// it if possible.
716 unsigned breakProtrudingToken(const AnnotatedToken &Current, LineState &State,
717 bool DryRun) {
718 if (Current.isNot(tok::string_literal))
719 return 0;
720
721 unsigned Penalty = 0;
722 unsigned TailOffset = 0;
723 unsigned TailLength = Current.FormatTok.TokenLength;
724 unsigned StartColumn = State.Column - Current.FormatTok.TokenLength;
725 unsigned OffsetFromStart = 0;
726 while (StartColumn + TailLength > getColumnLimit()) {
727 StringRef Text = StringRef(Current.FormatTok.Tok.getLiteralData() +
728 TailOffset, TailLength);
729 StringRef::size_type SplitPoint =
730 getSplitPoint(Text, getColumnLimit() - StartColumn - 1);
731 if (SplitPoint == StringRef::npos)
732 break;
733 assert(SplitPoint != 0);
734 // +2, because 'Text' starts after the opening quotes, and does not
735 // include the closing quote we need to insert.
736 unsigned WhitespaceStartColumn =
737 StartColumn + OffsetFromStart + SplitPoint + 2;
738 State.Stack.back().LastSpace = StartColumn;
739 if (!DryRun) {
740 Whitespaces.breakToken(Current, TailOffset + SplitPoint + 1, "\"", "\"",
741 Line.InPPDirective, StartColumn,
742 WhitespaceStartColumn, Style);
743 }
744 TailOffset += SplitPoint + 1;
745 TailLength -= SplitPoint + 1;
746 OffsetFromStart = 1;
747 Penalty += 100;
748 }
749 State.Column = StartColumn + TailLength;
750 return Penalty;
751 }
752
753 StringRef::size_type
754 getSplitPoint(StringRef Text, StringRef::size_type Offset) {
755 // FIXME: Implement more sophisticated splitting mechanism, and a fallback.
756 return Text.rfind(' ', Offset);
Daniel Jasperbac016b2012-12-03 18:12:45 +0000757 }
758
Daniel Jasperceb99ab2013-01-09 10:16:05 +0000759 unsigned getColumnLimit() {
760 return Style.ColumnLimit - (Line.InPPDirective ? 1 : 0);
761 }
762
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000763 /// \brief An edge in the solution space from \c Previous->State to \c State,
764 /// inserting a newline dependent on the \c NewLine.
765 struct StateNode {
766 StateNode(const LineState &State, bool NewLine, StateNode *Previous)
Daniel Jasperf11a7052013-02-21 21:33:55 +0000767 : State(State), NewLine(NewLine), Previous(Previous) {}
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000768 LineState State;
769 bool NewLine;
770 StateNode *Previous;
771 };
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000772
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000773 /// \brief A pair of <penalty, count> that is used to prioritize the BFS on.
774 ///
775 /// In case of equal penalties, we want to prefer states that were inserted
776 /// first. During state generation we make sure that we insert states first
777 /// that break the line as late as possible.
778 typedef std::pair<unsigned, unsigned> OrderedPenalty;
779
780 /// \brief An item in the prioritized BFS search queue. The \c StateNode's
781 /// \c State has the given \c OrderedPenalty.
782 typedef std::pair<OrderedPenalty, StateNode *> QueueItem;
783
784 /// \brief The BFS queue type.
785 typedef std::priority_queue<QueueItem, std::vector<QueueItem>,
786 std::greater<QueueItem> > QueueType;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000787
788 /// \brief Analyze the entire solution space starting from \p InitialState.
Daniel Jasperbac016b2012-12-03 18:12:45 +0000789 ///
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000790 /// This implements a variant of Dijkstra's algorithm on the graph that spans
791 /// the solution space (\c LineStates are the nodes). The algorithm tries to
792 /// find the shortest path (the one with lowest penalty) from \p InitialState
793 /// to a state where all tokens are placed.
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000794 unsigned analyzeSolutionSpace(LineState &InitialState) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000795 std::set<LineState> Seen;
796
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000797 // Insert start element into queue.
Daniel Jasperfc759082013-02-14 14:26:07 +0000798 StateNode *Node =
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000799 new (Allocator.Allocate()) StateNode(InitialState, false, NULL);
800 Queue.push(QueueItem(OrderedPenalty(0, Count), Node));
801 ++Count;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000802
803 // While not empty, take first element and follow edges.
804 while (!Queue.empty()) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000805 unsigned Penalty = Queue.top().first.first;
Daniel Jasperfc759082013-02-14 14:26:07 +0000806 StateNode *Node = Queue.top().second;
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000807 if (Node->State.NextToken == NULL) {
Daniel Jasper01786732013-02-04 07:21:18 +0000808 DEBUG(llvm::errs() << "\n---\nPenalty for line: " << Penalty << "\n");
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000809 break;
Daniel Jasper01786732013-02-04 07:21:18 +0000810 }
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000811 Queue.pop();
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000812
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000813 if (!Seen.insert(Node->State).second)
814 // State already examined with lower penalty.
815 continue;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000816
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000817 addNextStateToQueue(Penalty, Node, /*NewLine=*/ false);
818 addNextStateToQueue(Penalty, Node, /*NewLine=*/ true);
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000819 }
820
821 if (Queue.empty())
822 // We were unable to find a solution, do nothing.
823 // FIXME: Add diagnostic?
Daniel Jasperbac016b2012-12-03 18:12:45 +0000824 return 0;
825
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000826 // Reconstruct the solution.
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000827 reconstructPath(InitialState, Queue.top().second);
Daniel Jasper01786732013-02-04 07:21:18 +0000828 DEBUG(llvm::errs() << "---\n");
Daniel Jasperbac016b2012-12-03 18:12:45 +0000829
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000830 // Return the column after the last token of the solution.
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000831 return Queue.top().second->State.Column;
832 }
833
834 void reconstructPath(LineState &State, StateNode *Current) {
835 // FIXME: This recursive implementation limits the possible number
836 // of tokens per line if compiled into a binary with small stack space.
837 // To become more independent of stack frame limitations we would need
838 // to also change the TokenAnnotator.
839 if (Current->Previous == NULL)
840 return;
841 reconstructPath(State, Current->Previous);
842 DEBUG({
843 if (Current->NewLine) {
Daniel Jaspera03ab102013-02-13 20:33:44 +0000844 llvm::errs()
845 << "Penalty for splitting before "
846 << Current->Previous->State.NextToken->FormatTok.Tok.getName()
847 << ": " << Current->Previous->State.NextToken->SplitPenalty << "\n";
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000848 }
849 });
850 addTokenToState(Current->NewLine, false, State);
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000851 }
852
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000853 /// \brief Add the following state to the analysis queue \c Queue.
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000854 ///
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000855 /// Assume the current state is \p PreviousNode and has been reached with a
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000856 /// penalty of \p Penalty. Insert a line break if \p NewLine is \c true.
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000857 void addNextStateToQueue(unsigned Penalty, StateNode *PreviousNode,
858 bool NewLine) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000859 if (NewLine && !canBreak(PreviousNode->State))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000860 return;
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000861 if (!NewLine && mustBreak(PreviousNode->State))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000862 return;
Daniel Jasperae8699b2013-01-28 09:35:24 +0000863 if (NewLine)
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000864 Penalty += PreviousNode->State.NextToken->SplitPenalty;
865
866 StateNode *Node = new (Allocator.Allocate())
867 StateNode(PreviousNode->State, NewLine, PreviousNode);
Manuel Klimek8092a942013-02-20 10:15:13 +0000868 Penalty += addTokenToState(NewLine, true, Node->State);
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000869 if (Node->State.Column > getColumnLimit()) {
870 unsigned ExcessCharacters = Node->State.Column - getColumnLimit();
Daniel Jasper01786732013-02-04 07:21:18 +0000871 Penalty += Style.PenaltyExcessCharacter * ExcessCharacters;
Daniel Jasperceb99ab2013-01-09 10:16:05 +0000872 }
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000873
874 Queue.push(QueueItem(OrderedPenalty(Penalty, Count), Node));
875 ++Count;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000876 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000877
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000878 /// \brief Returns \c true, if a line break after \p State is allowed.
879 bool canBreak(const LineState &State) {
880 if (!State.NextToken->CanBreakBefore &&
881 !(State.NextToken->is(tok::r_brace) &&
882 State.Stack.back().BreakBeforeClosingBrace))
883 return false;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000884 // This prevents breaks like:
885 // ...
886 // SomeParameter, OtherParameter).DoSomething(
887 // ...
888 // As they hide "DoSomething" and generally bad for readability.
889 if (State.NextToken->Parent->is(tok::l_paren) &&
890 State.ParenLevel <= State.StartOfLineLevel)
891 return false;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000892 // Trying to insert a parameter on a new line if there are already more than
893 // one parameter on the current line is bin packing.
Daniel Jasperd399bff2013-02-05 09:41:21 +0000894 if (State.Stack.back().HasMultiParameterLine &&
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000895 State.Stack.back().AvoidBinPacking)
896 return false;
897 return true;
898 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000899
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000900 /// \brief Returns \c true, if a line break after \p State is mandatory.
901 bool mustBreak(const LineState &State) {
902 if (State.NextToken->MustBreakBefore)
903 return true;
904 if (State.NextToken->is(tok::r_brace) &&
905 State.Stack.back().BreakBeforeClosingBrace)
906 return true;
907 if (State.NextToken->Parent->is(tok::semi) &&
908 State.LineContainsContinuedForLoopSection)
909 return true;
910 if (State.NextToken->Parent->is(tok::comma) &&
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000911 State.Stack.back().BreakBeforeParameter &&
Daniel Jasperc5cfa492013-02-14 09:19:04 +0000912 !isTrailingComment(*State.NextToken) &&
Daniel Jasper7d812812013-02-21 15:00:29 +0000913 State.NextToken->isNot(tok::r_paren) &&
914 State.NextToken->isNot(tok::r_brace))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000915 return true;
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000916 // FIXME: Comparing LongestObjCSelectorName to 0 is a hacky way of finding
917 // out whether it is the first parameter. Clean this up.
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000918 if (State.NextToken->Type == TT_ObjCSelectorName &&
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000919 State.NextToken->LongestObjCSelectorName == 0 &&
920 State.Stack.back().BreakBeforeParameter)
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000921 return true;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000922 if ((State.NextToken->Type == TT_CtorInitializerColon ||
923 (State.NextToken->Parent->ClosesTemplateDeclaration &&
Daniel Jasper29f123b2013-02-08 15:28:42 +0000924 State.ParenLevel == 0)))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000925 return true;
Daniel Jasper7878a7b2013-02-15 11:07:25 +0000926 if (State.NextToken->is(tok::colon) &&
927 State.Stack.back().BreakBeforeThirdOperand)
928 return true;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000929 return false;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000930 }
931
Daniel Jasperbac016b2012-12-03 18:12:45 +0000932 FormatStyle Style;
933 SourceManager &SourceMgr;
Daniel Jasper995e8202013-01-14 13:08:07 +0000934 const AnnotatedLine &Line;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000935 const unsigned FirstIndent;
Daniel Jasper26f7e782013-01-08 14:56:18 +0000936 const AnnotatedToken &RootToken;
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000937 WhitespaceManager &Whitespaces;
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000938
939 llvm::SpecificBumpPtrAllocator<StateNode> Allocator;
940 QueueType Queue;
941 // Increasing count of \c StateNode items we have created. This is used
942 // to create a deterministic order independent of the container.
943 unsigned Count;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000944};
945
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000946class LexerBasedFormatTokenSource : public FormatTokenSource {
947public:
948 LexerBasedFormatTokenSource(Lexer &Lex, SourceManager &SourceMgr)
Daniel Jasper1321eb52012-12-18 21:05:13 +0000949 : GreaterStashed(false), Lex(Lex), SourceMgr(SourceMgr),
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000950 IdentTable(Lex.getLangOpts()) {
951 Lex.SetKeepWhitespaceMode(true);
952 }
953
954 virtual FormatToken getNextToken() {
955 if (GreaterStashed) {
956 FormatTok.NewlinesBefore = 0;
957 FormatTok.WhiteSpaceStart =
958 FormatTok.Tok.getLocation().getLocWithOffset(1);
959 FormatTok.WhiteSpaceLength = 0;
960 GreaterStashed = false;
961 return FormatTok;
962 }
963
964 FormatTok = FormatToken();
965 Lex.LexFromRawLexer(FormatTok.Tok);
Manuel Klimek95419382013-01-07 07:56:50 +0000966 StringRef Text = rawTokenText(FormatTok.Tok);
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000967 FormatTok.WhiteSpaceStart = FormatTok.Tok.getLocation();
Manuel Klimekf6fd00b2013-01-05 22:56:06 +0000968 if (SourceMgr.getFileOffset(FormatTok.WhiteSpaceStart) == 0)
969 FormatTok.IsFirst = true;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000970
971 // Consume and record whitespace until we find a significant token.
972 while (FormatTok.Tok.is(tok::unknown)) {
Manuel Klimeka28fc062013-02-11 12:33:24 +0000973 unsigned Newlines = Text.count('\n');
974 unsigned EscapedNewlines = Text.count("\\\n");
975 FormatTok.NewlinesBefore += Newlines;
976 FormatTok.HasUnescapedNewline |= EscapedNewlines != Newlines;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000977 FormatTok.WhiteSpaceLength += FormatTok.Tok.getLength();
978
979 if (FormatTok.Tok.is(tok::eof))
980 return FormatTok;
981 Lex.LexFromRawLexer(FormatTok.Tok);
Manuel Klimek95419382013-01-07 07:56:50 +0000982 Text = rawTokenText(FormatTok.Tok);
Manuel Klimekd4397b92013-01-04 23:34:14 +0000983 }
Manuel Klimek95419382013-01-07 07:56:50 +0000984
985 // Now FormatTok is the next non-whitespace token.
986 FormatTok.TokenLength = Text.size();
987
Manuel Klimekd4397b92013-01-04 23:34:14 +0000988 // In case the token starts with escaped newlines, we want to
989 // take them into account as whitespace - this pattern is quite frequent
990 // in macro definitions.
991 // FIXME: What do we want to do with other escaped spaces, and escaped
992 // spaces or newlines in the middle of tokens?
993 // FIXME: Add a more explicit test.
994 unsigned i = 0;
Daniel Jasper71607512013-01-07 10:48:50 +0000995 while (i + 1 < Text.size() && Text[i] == '\\' && Text[i + 1] == '\n') {
Manuel Klimek86721d22013-01-22 16:31:55 +0000996 // FIXME: ++FormatTok.NewlinesBefore is missing...
Manuel Klimekd4397b92013-01-04 23:34:14 +0000997 FormatTok.WhiteSpaceLength += 2;
Manuel Klimek95419382013-01-07 07:56:50 +0000998 FormatTok.TokenLength -= 2;
Manuel Klimekd4397b92013-01-04 23:34:14 +0000999 i += 2;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001000 }
1001
1002 if (FormatTok.Tok.is(tok::raw_identifier)) {
Manuel Klimekd4397b92013-01-04 23:34:14 +00001003 IdentifierInfo &Info = IdentTable.get(Text);
Daniel Jaspercd1a32b2012-12-21 17:58:39 +00001004 FormatTok.Tok.setIdentifierInfo(&Info);
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001005 FormatTok.Tok.setKind(Info.getTokenID());
1006 }
1007
1008 if (FormatTok.Tok.is(tok::greatergreater)) {
1009 FormatTok.Tok.setKind(tok::greater);
1010 GreaterStashed = true;
1011 }
1012
1013 return FormatTok;
1014 }
1015
Nico Weberc2e6d2a2013-02-11 15:32:15 +00001016 IdentifierTable &getIdentTable() { return IdentTable; }
1017
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001018private:
1019 FormatToken FormatTok;
1020 bool GreaterStashed;
1021 Lexer &Lex;
1022 SourceManager &SourceMgr;
1023 IdentifierTable IdentTable;
1024
1025 /// Returns the text of \c FormatTok.
Manuel Klimek95419382013-01-07 07:56:50 +00001026 StringRef rawTokenText(Token &Tok) {
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001027 return StringRef(SourceMgr.getCharacterData(Tok.getLocation()),
1028 Tok.getLength());
1029 }
1030};
1031
Daniel Jasperbac016b2012-12-03 18:12:45 +00001032class Formatter : public UnwrappedLineConsumer {
1033public:
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001034 Formatter(DiagnosticsEngine &Diag, const FormatStyle &Style, Lexer &Lex,
1035 SourceManager &SourceMgr,
Daniel Jasperbac016b2012-12-03 18:12:45 +00001036 const std::vector<CharSourceRange> &Ranges)
Alexander Kornienko3048aea2013-01-10 15:05:09 +00001037 : Diag(Diag), Style(Style), Lex(Lex), SourceMgr(SourceMgr),
Daniel Jasperf11a7052013-02-21 21:33:55 +00001038 Whitespaces(SourceMgr), Ranges(Ranges) {}
Daniel Jasperbac016b2012-12-03 18:12:45 +00001039
Daniel Jasper7d19bc22013-01-11 14:23:32 +00001040 virtual ~Formatter() {}
Daniel Jasperaccb0b02012-12-04 21:05:31 +00001041
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001042 void deriveLocalStyle() {
1043 unsigned CountBoundToVariable = 0;
1044 unsigned CountBoundToType = 0;
1045 bool HasCpp03IncompatibleFormat = false;
1046 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
1047 if (AnnotatedLines[i].First.Children.empty())
1048 continue;
1049 AnnotatedToken *Tok = &AnnotatedLines[i].First.Children[0];
1050 while (!Tok->Children.empty()) {
1051 if (Tok->Type == TT_PointerOrReference) {
1052 bool SpacesBefore = Tok->FormatTok.WhiteSpaceLength > 0;
1053 bool SpacesAfter = Tok->Children[0].FormatTok.WhiteSpaceLength > 0;
1054 if (SpacesBefore && !SpacesAfter)
1055 ++CountBoundToVariable;
1056 else if (!SpacesBefore && SpacesAfter)
1057 ++CountBoundToType;
1058 }
1059
Daniel Jasper29f123b2013-02-08 15:28:42 +00001060 if (Tok->Type == TT_TemplateCloser &&
1061 Tok->Parent->Type == TT_TemplateCloser &&
1062 Tok->FormatTok.WhiteSpaceLength == 0)
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001063 HasCpp03IncompatibleFormat = true;
1064 Tok = &Tok->Children[0];
1065 }
1066 }
1067 if (Style.DerivePointerBinding) {
1068 if (CountBoundToType > CountBoundToVariable)
1069 Style.PointerBindsToType = true;
1070 else if (CountBoundToType < CountBoundToVariable)
1071 Style.PointerBindsToType = false;
1072 }
1073 if (Style.Standard == FormatStyle::LS_Auto) {
1074 Style.Standard = HasCpp03IncompatibleFormat ? FormatStyle::LS_Cpp11
1075 : FormatStyle::LS_Cpp03;
1076 }
1077 }
1078
Daniel Jasperbac016b2012-12-03 18:12:45 +00001079 tooling::Replacements format() {
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001080 LexerBasedFormatTokenSource Tokens(Lex, SourceMgr);
Alexander Kornienko3048aea2013-01-10 15:05:09 +00001081 UnwrappedLineParser Parser(Diag, Style, Tokens, *this);
Alexander Kornienkocff563c2012-12-04 17:27:50 +00001082 StructuralError = Parser.parse();
Manuel Klimekd4397b92013-01-04 23:34:14 +00001083 unsigned PreviousEndOfLineColumn = 0;
Nico Weberc2e6d2a2013-02-11 15:32:15 +00001084 TokenAnnotator Annotator(Style, SourceMgr, Lex,
1085 Tokens.getIdentTable().get("in"));
Daniel Jasper995e8202013-01-14 13:08:07 +00001086 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001087 Annotator.annotate(AnnotatedLines[i]);
1088 }
1089 deriveLocalStyle();
1090 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
1091 Annotator.calculateFormattingInformation(AnnotatedLines[i]);
Daniel Jasper995e8202013-01-14 13:08:07 +00001092 }
Manuel Klimek547d5db2013-02-08 17:38:27 +00001093 std::vector<int> IndentForLevel;
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001094 bool PreviousLineWasTouched = false;
Daniel Jasper995e8202013-01-14 13:08:07 +00001095 for (std::vector<AnnotatedLine>::iterator I = AnnotatedLines.begin(),
1096 E = AnnotatedLines.end();
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001097 I != E; ++I) {
Daniel Jasper995e8202013-01-14 13:08:07 +00001098 const AnnotatedLine &TheLine = *I;
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001099 int Offset = getIndentOffset(TheLine.First);
Manuel Klimek547d5db2013-02-08 17:38:27 +00001100 while (IndentForLevel.size() <= TheLine.Level)
1101 IndentForLevel.push_back(-1);
1102 IndentForLevel.resize(TheLine.Level + 1);
Daniel Jasper29333162013-02-18 13:08:03 +00001103 bool WasMoved =
1104 PreviousLineWasTouched && TheLine.First.FormatTok.NewlinesBefore == 0;
1105 if (TheLine.Type != LT_Invalid && (WasMoved || touchesRanges(TheLine))) {
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001106 unsigned LevelIndent = getIndent(IndentForLevel, TheLine.Level);
Manuel Klimek547d5db2013-02-08 17:38:27 +00001107 unsigned Indent = LevelIndent;
1108 if (static_cast<int>(Indent) + Offset >= 0)
1109 Indent += Offset;
1110 if (!TheLine.First.FormatTok.WhiteSpaceStart.isValid() ||
1111 StructuralError) {
1112 Indent = LevelIndent = SourceMgr.getSpellingColumnNumber(
1113 TheLine.First.FormatTok.Tok.getLocation()) - 1;
1114 } else {
1115 formatFirstToken(TheLine.First, Indent, TheLine.InPPDirective,
1116 PreviousEndOfLineColumn);
1117 }
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001118 tryFitMultipleLinesInOne(Indent, I, E);
Daniel Jasper995e8202013-01-14 13:08:07 +00001119 UnwrappedLineFormatter Formatter(Style, SourceMgr, TheLine, Indent,
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001120 TheLine.First, Whitespaces,
Daniel Jasper995e8202013-01-14 13:08:07 +00001121 StructuralError);
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001122 PreviousEndOfLineColumn = Formatter.format();
Manuel Klimek547d5db2013-02-08 17:38:27 +00001123 IndentForLevel[TheLine.Level] = LevelIndent;
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001124 PreviousLineWasTouched = true;
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001125 } else {
Daniel Jasper9ece2bb2013-02-12 16:51:23 +00001126 if (TheLine.First.FormatTok.NewlinesBefore > 0 ||
1127 TheLine.First.FormatTok.IsFirst) {
1128 unsigned Indent = SourceMgr.getSpellingColumnNumber(
1129 TheLine.First.FormatTok.Tok.getLocation()) - 1;
1130 unsigned LevelIndent = Indent;
1131 if (static_cast<int>(LevelIndent) - Offset >= 0)
1132 LevelIndent -= Offset;
1133 IndentForLevel[TheLine.Level] = LevelIndent;
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001134
1135 // Remove trailing whitespace of the previous line if it was touched.
1136 if (PreviousLineWasTouched)
1137 formatFirstToken(TheLine.First, Indent, TheLine.InPPDirective,
1138 PreviousEndOfLineColumn);
Daniel Jasper9ece2bb2013-02-12 16:51:23 +00001139 }
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001140 // If we did not reformat this unwrapped line, the column at the end of
1141 // the last token is unchanged - thus, we can calculate the end of the
1142 // last token.
1143 PreviousEndOfLineColumn =
1144 SourceMgr.getSpellingColumnNumber(
1145 TheLine.Last->FormatTok.Tok.getLocation()) +
1146 Lex.MeasureTokenLength(TheLine.Last->FormatTok.Tok.getLocation(),
1147 SourceMgr, Lex.getLangOpts()) - 1;
1148 PreviousLineWasTouched = false;
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001149 }
1150 }
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001151 return Whitespaces.generateReplacements();
Daniel Jasperbac016b2012-12-03 18:12:45 +00001152 }
1153
1154private:
Manuel Klimek547d5db2013-02-08 17:38:27 +00001155 /// \brief Get the indent of \p Level from \p IndentForLevel.
1156 ///
1157 /// \p IndentForLevel must contain the indent for the level \c l
1158 /// at \p IndentForLevel[l], or a value < 0 if the indent for
1159 /// that level is unknown.
Daniel Jasperfc759082013-02-14 14:26:07 +00001160 unsigned getIndent(const std::vector<int> IndentForLevel, unsigned Level) {
Manuel Klimek547d5db2013-02-08 17:38:27 +00001161 if (IndentForLevel[Level] != -1)
1162 return IndentForLevel[Level];
Manuel Klimek52635ff2013-02-08 19:53:32 +00001163 if (Level == 0)
1164 return 0;
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001165 return getIndent(IndentForLevel, Level - 1) + 2;
Manuel Klimek547d5db2013-02-08 17:38:27 +00001166 }
1167
1168 /// \brief Get the offset of the line relatively to the level.
1169 ///
1170 /// For example, 'public:' labels in classes are offset by 1 or 2
1171 /// characters to the left from their level.
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001172 int getIndentOffset(const AnnotatedToken &RootToken) {
Manuel Klimek547d5db2013-02-08 17:38:27 +00001173 bool IsAccessModifier = false;
1174 if (RootToken.is(tok::kw_public) || RootToken.is(tok::kw_protected) ||
1175 RootToken.is(tok::kw_private))
1176 IsAccessModifier = true;
1177 else if (RootToken.is(tok::at) && !RootToken.Children.empty() &&
1178 (RootToken.Children[0].isObjCAtKeyword(tok::objc_public) ||
1179 RootToken.Children[0].isObjCAtKeyword(tok::objc_protected) ||
1180 RootToken.Children[0].isObjCAtKeyword(tok::objc_package) ||
1181 RootToken.Children[0].isObjCAtKeyword(tok::objc_private)))
1182 IsAccessModifier = true;
1183
1184 if (IsAccessModifier)
1185 return Style.AccessModifierOffset;
1186 return 0;
1187 }
1188
Manuel Klimek517e8942013-01-11 17:54:10 +00001189 /// \brief Tries to merge lines into one.
1190 ///
1191 /// This will change \c Line and \c AnnotatedLine to contain the merged line,
1192 /// if possible; note that \c I will be incremented when lines are merged.
1193 ///
1194 /// Returns whether the resulting \c Line can fit in a single line.
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001195 void tryFitMultipleLinesInOne(unsigned Indent,
Daniel Jasper995e8202013-01-14 13:08:07 +00001196 std::vector<AnnotatedLine>::iterator &I,
1197 std::vector<AnnotatedLine>::iterator E) {
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001198 // We can never merge stuff if there are trailing line comments.
1199 if (I->Last->Type == TT_LineComment)
1200 return;
1201
Daniel Jasperf11a7052013-02-21 21:33:55 +00001202 unsigned Limit = Style.ColumnLimit - (I->InPPDirective ? 1 : 0) - Indent;
1203 // If we already exceed the column limit, we set 'Limit' to 0. The different
1204 // tryMerge..() functions can then decide whether to still do merging.
1205 Limit = I->Last->TotalLength > Limit ? 0 : Limit - I->Last->TotalLength;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001206
Daniel Jasper9c8c40e2013-01-21 14:18:28 +00001207 if (I + 1 == E || (I + 1)->Type == LT_Invalid)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001208 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001209
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001210 if (I->Last->is(tok::l_brace)) {
1211 tryMergeSimpleBlock(I, E, Limit);
1212 } else if (I->First.is(tok::kw_if)) {
1213 tryMergeSimpleIf(I, E, Limit);
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001214 } else if (I->InPPDirective && (I->First.FormatTok.HasUnescapedNewline ||
1215 I->First.FormatTok.IsFirst)) {
1216 tryMergeSimplePPDirective(I, E, Limit);
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001217 }
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001218 return;
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001219 }
1220
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001221 void tryMergeSimplePPDirective(std::vector<AnnotatedLine>::iterator &I,
1222 std::vector<AnnotatedLine>::iterator E,
1223 unsigned Limit) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001224 if (Limit == 0)
1225 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001226 AnnotatedLine &Line = *I;
Daniel Jasper2b9c10b2013-01-14 15:52:06 +00001227 if (!(I + 1)->InPPDirective || (I + 1)->First.FormatTok.HasUnescapedNewline)
1228 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001229 if (I + 2 != E && (I + 2)->InPPDirective &&
1230 !(I + 2)->First.FormatTok.HasUnescapedNewline)
1231 return;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001232 if (1 + (I + 1)->Last->TotalLength > Limit)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001233 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001234 join(Line, *(++I));
1235 }
1236
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001237 void tryMergeSimpleIf(std::vector<AnnotatedLine>::iterator &I,
1238 std::vector<AnnotatedLine>::iterator E,
1239 unsigned Limit) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001240 if (Limit == 0)
1241 return;
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +00001242 if (!Style.AllowShortIfStatementsOnASingleLine)
1243 return;
Manuel Klimek4c128122013-01-18 14:46:43 +00001244 if ((I + 1)->InPPDirective != I->InPPDirective ||
1245 ((I + 1)->InPPDirective &&
1246 (I + 1)->First.FormatTok.HasUnescapedNewline))
1247 return;
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001248 AnnotatedLine &Line = *I;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001249 if (Line.Last->isNot(tok::r_paren))
1250 return;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001251 if (1 + (I + 1)->Last->TotalLength > Limit)
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001252 return;
1253 if ((I + 1)->First.is(tok::kw_if) || (I + 1)->First.Type == TT_LineComment)
1254 return;
1255 // Only inline simple if's (no nested if or else).
1256 if (I + 2 != E && (I + 2)->First.is(tok::kw_else))
1257 return;
1258 join(Line, *(++I));
1259 }
1260
1261 void tryMergeSimpleBlock(std::vector<AnnotatedLine>::iterator &I,
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001262 std::vector<AnnotatedLine>::iterator E,
1263 unsigned Limit) {
Manuel Klimek517e8942013-01-11 17:54:10 +00001264 // First, check that the current line allows merging. This is the case if
1265 // we're not in a control flow statement and the last token is an opening
1266 // brace.
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001267 AnnotatedLine &Line = *I;
Manuel Klimek517e8942013-01-11 17:54:10 +00001268 bool AllowedTokens =
Daniel Jasper995e8202013-01-14 13:08:07 +00001269 Line.First.isNot(tok::kw_if) && Line.First.isNot(tok::kw_while) &&
1270 Line.First.isNot(tok::kw_do) && Line.First.isNot(tok::r_brace) &&
1271 Line.First.isNot(tok::kw_else) && Line.First.isNot(tok::kw_try) &&
1272 Line.First.isNot(tok::kw_catch) && Line.First.isNot(tok::kw_for) &&
Nico Weber67015ed2013-01-11 21:14:08 +00001273 // This gets rid of all ObjC @ keywords and methods.
Daniel Jasper995e8202013-01-14 13:08:07 +00001274 Line.First.isNot(tok::at) && Line.First.isNot(tok::minus) &&
1275 Line.First.isNot(tok::plus);
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001276 if (!AllowedTokens)
1277 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001278
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001279 AnnotatedToken *Tok = &(I + 1)->First;
1280 if (Tok->Children.empty() && Tok->is(tok::r_brace) &&
Daniel Jasperf11a7052013-02-21 21:33:55 +00001281 !Tok->MustBreakBefore) {
1282 // We merge empty blocks even if the line exceeds the column limit.
Daniel Jasper729a7432013-02-11 12:36:37 +00001283 Tok->SpacesRequiredBefore = 0;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001284 Tok->CanBreakBefore = true;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001285 join(Line, *(I + 1));
1286 I += 1;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001287 } else if (Limit != 0) {
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001288 // Check that we still have three lines and they fit into the limit.
1289 if (I + 2 == E || (I + 2)->Type == LT_Invalid ||
1290 !nextTwoLinesFitInto(I, Limit))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001291 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001292
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001293 // Second, check that the next line does not contain any braces - if it
1294 // does, readability declines when putting it into a single line.
1295 if ((I + 1)->Last->Type == TT_LineComment || Tok->MustBreakBefore)
1296 return;
1297 do {
1298 if (Tok->is(tok::l_brace) || Tok->is(tok::r_brace))
1299 return;
1300 Tok = Tok->Children.empty() ? NULL : &Tok->Children.back();
1301 } while (Tok != NULL);
Manuel Klimek517e8942013-01-11 17:54:10 +00001302
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001303 // Last, check that the third line contains a single closing brace.
1304 Tok = &(I + 2)->First;
1305 if (!Tok->Children.empty() || Tok->isNot(tok::r_brace) ||
1306 Tok->MustBreakBefore)
1307 return;
1308
1309 join(Line, *(I + 1));
1310 join(Line, *(I + 2));
1311 I += 2;
Manuel Klimek517e8942013-01-11 17:54:10 +00001312 }
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001313 }
1314
1315 bool nextTwoLinesFitInto(std::vector<AnnotatedLine>::iterator I,
1316 unsigned Limit) {
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001317 return 1 + (I + 1)->Last->TotalLength + 1 + (I + 2)->Last->TotalLength <=
1318 Limit;
Manuel Klimek517e8942013-01-11 17:54:10 +00001319 }
1320
Daniel Jasper995e8202013-01-14 13:08:07 +00001321 void join(AnnotatedLine &A, const AnnotatedLine &B) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001322 unsigned LengthA = A.Last->TotalLength + B.First.SpacesRequiredBefore;
Daniel Jasper995e8202013-01-14 13:08:07 +00001323 A.Last->Children.push_back(B.First);
1324 while (!A.Last->Children.empty()) {
1325 A.Last->Children[0].Parent = A.Last;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001326 A.Last->Children[0].TotalLength += LengthA;
Daniel Jasper995e8202013-01-14 13:08:07 +00001327 A.Last = &A.Last->Children[0];
1328 }
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001329 }
1330
Daniel Jasper995e8202013-01-14 13:08:07 +00001331 bool touchesRanges(const AnnotatedLine &TheLine) {
1332 const FormatToken *First = &TheLine.First.FormatTok;
1333 const FormatToken *Last = &TheLine.Last->FormatTok;
Daniel Jaspercd162382013-01-07 13:26:07 +00001334 CharSourceRange LineRange = CharSourceRange::getTokenRange(
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001335 First->Tok.getLocation(), Last->Tok.getLocation());
Daniel Jasperbac016b2012-12-03 18:12:45 +00001336 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001337 if (!SourceMgr.isBeforeInTranslationUnit(LineRange.getEnd(),
1338 Ranges[i].getBegin()) &&
1339 !SourceMgr.isBeforeInTranslationUnit(Ranges[i].getEnd(),
1340 LineRange.getBegin()))
1341 return true;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001342 }
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001343 return false;
1344 }
1345
1346 virtual void consumeUnwrappedLine(const UnwrappedLine &TheLine) {
Daniel Jaspercbb6c412013-01-16 09:10:19 +00001347 AnnotatedLines.push_back(AnnotatedLine(TheLine));
Daniel Jasperbac016b2012-12-03 18:12:45 +00001348 }
1349
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001350 /// \brief Add a new line and the required indent before the first Token
1351 /// of the \c UnwrappedLine if there was no structural parsing error.
1352 /// Returns the indent level of the \c UnwrappedLine.
Manuel Klimek547d5db2013-02-08 17:38:27 +00001353 void formatFirstToken(const AnnotatedToken &RootToken, unsigned Indent,
1354 bool InPPDirective, unsigned PreviousEndOfLineColumn) {
Daniel Jasper7d19bc22013-01-11 14:23:32 +00001355 const FormatToken &Tok = RootToken.FormatTok;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001356
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001357 unsigned Newlines =
1358 std::min(Tok.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001359 if (Newlines == 0 && !Tok.IsFirst)
1360 Newlines = 1;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001361
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001362 if (!InPPDirective || Tok.HasUnescapedNewline) {
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001363 Whitespaces.replaceWhitespace(RootToken, Newlines, Indent, 0, Style);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001364 } else {
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001365 Whitespaces.replacePPWhitespace(RootToken, Newlines, Indent,
1366 PreviousEndOfLineColumn, Style);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001367 }
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001368 }
1369
Alexander Kornienkoa4ae9f32013-01-14 11:34:14 +00001370 DiagnosticsEngine &Diag;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001371 FormatStyle Style;
1372 Lexer &Lex;
1373 SourceManager &SourceMgr;
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001374 WhitespaceManager Whitespaces;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001375 std::vector<CharSourceRange> Ranges;
Daniel Jasper995e8202013-01-14 13:08:07 +00001376 std::vector<AnnotatedLine> AnnotatedLines;
Alexander Kornienkocff563c2012-12-04 17:27:50 +00001377 bool StructuralError;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001378};
1379
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001380tooling::Replacements
1381reformat(const FormatStyle &Style, Lexer &Lex, SourceManager &SourceMgr,
1382 std::vector<CharSourceRange> Ranges, DiagnosticConsumer *DiagClient) {
Alexander Kornienko3048aea2013-01-10 15:05:09 +00001383 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions();
Alexander Kornienkoa4ae9f32013-01-14 11:34:14 +00001384 OwningPtr<DiagnosticConsumer> DiagPrinter;
1385 if (DiagClient == 0) {
1386 DiagPrinter.reset(new TextDiagnosticPrinter(llvm::errs(), &*DiagOpts));
1387 DiagPrinter->BeginSourceFile(Lex.getLangOpts(), Lex.getPP());
1388 DiagClient = DiagPrinter.get();
1389 }
Alexander Kornienko3048aea2013-01-10 15:05:09 +00001390 DiagnosticsEngine Diagnostics(
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001391 IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs()), &*DiagOpts,
Alexander Kornienkoa4ae9f32013-01-14 11:34:14 +00001392 DiagClient, false);
Alexander Kornienko3048aea2013-01-10 15:05:09 +00001393 Diagnostics.setSourceManager(&SourceMgr);
1394 Formatter formatter(Diagnostics, Style, Lex, SourceMgr, Ranges);
Daniel Jasperbac016b2012-12-03 18:12:45 +00001395 return formatter.format();
1396}
1397
Daniel Jasper46ef8522013-01-10 13:08:12 +00001398LangOptions getFormattingLangOpts() {
1399 LangOptions LangOpts;
1400 LangOpts.CPlusPlus = 1;
1401 LangOpts.CPlusPlus11 = 1;
1402 LangOpts.Bool = 1;
1403 LangOpts.ObjC1 = 1;
1404 LangOpts.ObjC2 = 1;
1405 return LangOpts;
1406}
1407
Daniel Jaspercd162382013-01-07 13:26:07 +00001408} // namespace format
1409} // namespace clang