blob: 01813ef6c85957f8363d15cd504eeae4d1575cbb [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 Jasperfaab0d32013-02-27 09:47:53 +000064 GoogleStyle.BinPackParameters = true;
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 Jasperfaab0d32013-02-27 09:47:53 +000077 ChromiumStyle.BinPackParameters = false;
Daniel Jasper8ff690a2013-02-06 14:22:40 +000078 ChromiumStyle.Standard = FormatStyle::LS_Cpp03;
79 ChromiumStyle.DerivePointerBinding = false;
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +000080 return ChromiumStyle;
81}
82
Daniel Jasper15417ef2013-02-06 20:07:35 +000083static bool isTrailingComment(const AnnotatedToken &Tok) {
84 return Tok.is(tok::comment) &&
85 (Tok.Children.empty() || Tok.Children[0].MustBreakBefore);
86}
87
Daniel Jasperce3d1a62013-02-08 08:22:00 +000088// Returns the length of everything up to the first possible line break after
89// the ), ], } or > matching \c Tok.
90static unsigned getLengthToMatchingParen(const AnnotatedToken &Tok) {
91 if (Tok.MatchingParen == NULL)
92 return 0;
93 AnnotatedToken *End = Tok.MatchingParen;
94 while (!End->Children.empty() && !End->Children[0].CanBreakBefore) {
95 End = &End->Children[0];
96 }
97 return End->TotalLength - Tok.TotalLength + 1;
98}
99
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000100/// \brief Manages the whitespaces around tokens and their replacements.
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000101///
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000102/// This includes special handling for certain constructs, e.g. the alignment of
103/// trailing line comments.
104class WhitespaceManager {
105public:
106 WhitespaceManager(SourceManager &SourceMgr) : SourceMgr(SourceMgr) {}
107
108 /// \brief Replaces the whitespace in front of \p Tok. Only call once for
109 /// each \c AnnotatedToken.
110 void replaceWhitespace(const AnnotatedToken &Tok, unsigned NewLines,
111 unsigned Spaces, unsigned WhitespaceStartColumn,
112 const FormatStyle &Style) {
Daniel Jasper821627e2013-01-21 22:49:20 +0000113 // 2+ newlines mean an empty line separating logic scopes.
114 if (NewLines >= 2)
115 alignComments();
116
117 // Align line comments if they are trailing or if they continue other
118 // trailing comments.
Daniel Jasper15417ef2013-02-06 20:07:35 +0000119 if (isTrailingComment(Tok) && (Tok.Parent != NULL || !Comments.empty())) {
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000120 if (Style.ColumnLimit >=
121 Spaces + WhitespaceStartColumn + Tok.FormatTok.TokenLength) {
122 Comments.push_back(StoredComment());
123 Comments.back().Tok = Tok.FormatTok;
124 Comments.back().Spaces = Spaces;
125 Comments.back().NewLines = NewLines;
Daniel Jasper474e4622013-02-06 22:04:05 +0000126 if (NewLines == 0)
127 Comments.back().MinColumn = WhitespaceStartColumn + Spaces;
128 else
129 Comments.back().MinColumn = Spaces;
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000130 Comments.back().MaxColumn =
Daniel Jasper42f458d2013-02-13 19:25:54 +0000131 Style.ColumnLimit - Tok.FormatTok.TokenLength;
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000132 return;
133 }
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000134 }
Daniel Jasper821627e2013-01-21 22:49:20 +0000135
136 // If this line does not have a trailing comment, align the stored comments.
Daniel Jasper15417ef2013-02-06 20:07:35 +0000137 if (Tok.Children.empty() && !isTrailingComment(Tok))
Daniel Jasper821627e2013-01-21 22:49:20 +0000138 alignComments();
Manuel Klimek8092a942013-02-20 10:15:13 +0000139 storeReplacement(Tok.FormatTok, getNewLineText(NewLines, Spaces));
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000140 }
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) {
Manuel Klimek8092a942013-02-20 10:15:13 +0000150 storeReplacement(
151 Tok.FormatTok,
152 getNewLineText(NewLines, Spaces, WhitespaceStartColumn, Style));
153 }
154
155 /// \brief Inserts a line break into the middle of a token.
156 ///
157 /// Will break at \p Offset inside \p Tok, putting \p Prefix before the line
158 /// break and \p Postfix before the rest of the token starts in the next line.
159 ///
160 /// \p InPPDirective, \p Spaces, \p WhitespaceStartColumn and \p Style are
161 /// used to generate the correct line break.
162 void breakToken(const AnnotatedToken &Tok, unsigned Offset, StringRef Prefix,
163 StringRef Postfix, bool InPPDirective, unsigned Spaces,
164 unsigned WhitespaceStartColumn, const FormatStyle &Style) {
165 std::string NewLineText;
166 if (!InPPDirective)
167 NewLineText = getNewLineText(1, Spaces);
168 else
169 NewLineText = getNewLineText(1, Spaces, WhitespaceStartColumn, Style);
170 std::string ReplacementText = (Prefix + NewLineText + Postfix).str();
171 SourceLocation InsertAt = Tok.FormatTok.WhiteSpaceStart
172 .getLocWithOffset(Tok.FormatTok.WhiteSpaceLength + Offset);
173 Replaces.insert(
174 tooling::Replacement(SourceMgr, InsertAt, 0, ReplacementText));
175 }
176
177 /// \brief Returns all the \c Replacements created during formatting.
178 const tooling::Replacements &generateReplacements() {
179 alignComments();
180 return Replaces;
181 }
182
183private:
184 std::string getNewLineText(unsigned NewLines, unsigned Spaces) {
185 return std::string(NewLines, '\n') + std::string(Spaces, ' ');
186 }
187
188 std::string
189 getNewLineText(unsigned NewLines, unsigned Spaces,
190 unsigned WhitespaceStartColumn, const FormatStyle &Style) {
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000191 std::string NewLineText;
192 if (NewLines > 0) {
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000193 unsigned Offset =
194 std::min<int>(Style.ColumnLimit - 1, WhitespaceStartColumn);
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000195 for (unsigned i = 0; i < NewLines; ++i) {
196 NewLineText += std::string(Style.ColumnLimit - Offset - 1, ' ');
197 NewLineText += "\\\n";
198 Offset = 0;
199 }
200 }
Manuel Klimek8092a942013-02-20 10:15:13 +0000201 return NewLineText + std::string(Spaces, ' ');
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000202 }
203
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000204 /// \brief Structure to store a comment for later layout and alignment.
205 struct StoredComment {
206 FormatToken Tok;
207 unsigned MinColumn;
208 unsigned MaxColumn;
209 unsigned NewLines;
210 unsigned Spaces;
211 };
212 SmallVector<StoredComment, 16> Comments;
213 typedef SmallVector<StoredComment, 16>::iterator comment_iterator;
214
215 /// \brief Try to align all stashed comments.
216 void alignComments() {
217 unsigned MinColumn = 0;
218 unsigned MaxColumn = UINT_MAX;
219 comment_iterator Start = Comments.begin();
220 for (comment_iterator I = Comments.begin(), E = Comments.end(); I != E;
221 ++I) {
222 if (I->MinColumn > MaxColumn || I->MaxColumn < MinColumn) {
223 alignComments(Start, I, MinColumn);
224 MinColumn = I->MinColumn;
225 MaxColumn = I->MaxColumn;
226 Start = I;
227 } else {
228 MinColumn = std::max(MinColumn, I->MinColumn);
229 MaxColumn = std::min(MaxColumn, I->MaxColumn);
230 }
231 }
232 alignComments(Start, Comments.end(), MinColumn);
233 Comments.clear();
234 }
235
236 /// \brief Put all the comments between \p I and \p E into \p Column.
237 void alignComments(comment_iterator I, comment_iterator E, unsigned Column) {
238 while (I != E) {
239 unsigned Spaces = I->Spaces + Column - I->MinColumn;
240 storeReplacement(I->Tok, std::string(I->NewLines, '\n') +
Daniel Jasper29f123b2013-02-08 15:28:42 +0000241 std::string(Spaces, ' '));
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000242 ++I;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000243 }
244 }
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000245
246 /// \brief Stores \p Text as the replacement for the whitespace in front of
247 /// \p Tok.
248 void storeReplacement(const FormatToken &Tok, const std::string Text) {
Daniel Jasperafcbd852013-01-30 09:46:12 +0000249 // Don't create a replacement, if it does not change anything.
250 if (StringRef(SourceMgr.getCharacterData(Tok.WhiteSpaceStart),
251 Tok.WhiteSpaceLength) == Text)
252 return;
253
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000254 Replaces.insert(tooling::Replacement(SourceMgr, Tok.WhiteSpaceStart,
255 Tok.WhiteSpaceLength, Text));
256 }
257
258 SourceManager &SourceMgr;
259 tooling::Replacements Replaces;
260};
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000261
Daniel Jasperbac016b2012-12-03 18:12:45 +0000262class UnwrappedLineFormatter {
263public:
Manuel Klimek94fc6f12013-01-10 19:17:33 +0000264 UnwrappedLineFormatter(const FormatStyle &Style, SourceManager &SourceMgr,
Daniel Jasper995e8202013-01-14 13:08:07 +0000265 const AnnotatedLine &Line, unsigned FirstIndent,
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +0000266 const AnnotatedToken &RootToken,
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000267 WhitespaceManager &Whitespaces, bool StructuralError)
Daniel Jasper1321eb52012-12-18 21:05:13 +0000268 : Style(Style), SourceMgr(SourceMgr), Line(Line),
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000269 FirstIndent(FirstIndent), RootToken(RootToken),
Daniel Jasperf11a7052013-02-21 21:33:55 +0000270 Whitespaces(Whitespaces), Count(0) {}
Daniel Jasperbac016b2012-12-03 18:12:45 +0000271
Manuel Klimekd4397b92013-01-04 23:34:14 +0000272 /// \brief Formats an \c UnwrappedLine.
273 ///
274 /// \returns The column after the last token in the last line of the
275 /// \c UnwrappedLine.
Daniel Jaspera4d46212013-02-28 11:05:57 +0000276 unsigned format(const AnnotatedLine *NextLine) {
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000277 // Initialize state dependent on indent.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000278 LineState State;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000279 State.Column = FirstIndent;
Daniel Jasper26f7e782013-01-08 14:56:18 +0000280 State.NextToken = &RootToken;
Daniel Jasperc4615b72013-02-20 12:56:39 +0000281 State.Stack.push_back(ParenState(FirstIndent + 4, FirstIndent,
282 !Style.BinPackParameters,
283 /*HasMultiParameterLine=*/ false));
Daniel Jasper2e603772013-01-29 11:21:01 +0000284 State.VariablePos = 0;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000285 State.LineContainsContinuedForLoopSection = false;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000286 State.ParenLevel = 0;
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000287 State.StartOfStringLiteral = 0;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000288 State.StartOfLineLevel = State.ParenLevel;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000289
Manuel Klimekca547db2013-01-16 14:55:28 +0000290 DEBUG({
291 DebugTokenState(*State.NextToken);
292 });
293
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000294 // The first token has already been indented and thus consumed.
Manuel Klimek8092a942013-02-20 10:15:13 +0000295 moveStateToNextToken(State, /*DryRun=*/ false);
Daniel Jasperbac016b2012-12-03 18:12:45 +0000296
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000297 // If everything fits on a single line, just put it there.
Daniel Jaspera4d46212013-02-28 11:05:57 +0000298 unsigned ColumnLimit = Style.ColumnLimit;
299 if (NextLine && NextLine->InPPDirective &&
300 !NextLine->First.FormatTok.HasUnescapedNewline)
301 ColumnLimit = getColumnLimit();
302 if (Line.Last->TotalLength <= ColumnLimit - FirstIndent) {
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000303 while (State.NextToken != NULL) {
Daniel Jasper1321eb52012-12-18 21:05:13 +0000304 addTokenToState(false, false, State);
Daniel Jasper1321eb52012-12-18 21:05:13 +0000305 }
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000306 return State.Column;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000307 }
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000308
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000309 // If the ObjC method declaration does not fit on a line, we should format
310 // it with one arg per line.
311 if (Line.Type == LT_ObjCMethodDecl)
312 State.Stack.back().BreakBeforeParameter = true;
313
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000314 // Find best solution in solution space.
315 return analyzeSolutionSpace(State);
Daniel Jasperbac016b2012-12-03 18:12:45 +0000316 }
317
318private:
Manuel Klimekca547db2013-01-16 14:55:28 +0000319 void DebugTokenState(const AnnotatedToken &AnnotatedTok) {
320 const Token &Tok = AnnotatedTok.FormatTok.Tok;
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000321 llvm::errs() << StringRef(SourceMgr.getCharacterData(Tok.getLocation()),
322 Tok.getLength());
Manuel Klimekca547db2013-01-16 14:55:28 +0000323 llvm::errs();
324 }
325
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000326 struct ParenState {
Daniel Jasperd399bff2013-02-05 09:41:21 +0000327 ParenState(unsigned Indent, unsigned LastSpace, bool AvoidBinPacking,
328 bool HasMultiParameterLine)
Daniel Jasper29f123b2013-02-08 15:28:42 +0000329 : Indent(Indent), LastSpace(LastSpace), FirstLessLess(0),
330 BreakBeforeClosingBrace(false), QuestionColumn(0),
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000331 AvoidBinPacking(AvoidBinPacking), BreakBeforeParameter(false),
Daniel Jasper237d4c12013-02-23 21:01:55 +0000332 HasMultiParameterLine(HasMultiParameterLine), ColonPos(0) {}
Daniel Jaspera4974cf2012-12-24 16:43:00 +0000333
Daniel Jasperbac016b2012-12-03 18:12:45 +0000334 /// \brief The position to which a specific parenthesis level needs to be
335 /// indented.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000336 unsigned Indent;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000337
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000338 /// \brief The position of the last space on each level.
339 ///
340 /// Used e.g. to break like:
341 /// functionCall(Parameter, otherCall(
342 /// OtherParameter));
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000343 unsigned LastSpace;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000344
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000345 /// \brief The position the first "<<" operator encountered on each level.
346 ///
347 /// Used to align "<<" operators. 0 if no such operator has been encountered
348 /// on a level.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000349 unsigned FirstLessLess;
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000350
Manuel Klimekc8c8a472013-01-10 15:58:26 +0000351 /// \brief Whether a newline needs to be inserted before the block's closing
352 /// brace.
353 ///
354 /// We only want to insert a newline before the closing brace if there also
355 /// was a newline after the beginning left brace.
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000356 bool BreakBeforeClosingBrace;
357
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000358 /// \brief The column of a \c ? in a conditional expression;
359 unsigned QuestionColumn;
360
Daniel Jasperf343cab2013-01-31 14:59:26 +0000361 /// \brief Avoid bin packing, i.e. multiple parameters/elements on multiple
362 /// lines, in this context.
363 bool AvoidBinPacking;
364
365 /// \brief Break after the next comma (or all the commas in this context if
366 /// \c AvoidBinPacking is \c true).
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000367 bool BreakBeforeParameter;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000368
369 /// \brief This context already has a line with more than one parameter.
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000370 bool HasMultiParameterLine;
Daniel Jasper7e9bf8c2013-01-11 11:37:55 +0000371
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000372 /// \brief The position of the colon in an ObjC method declaration/call.
373 unsigned ColonPos;
Daniel Jasperc4615b72013-02-20 12:56:39 +0000374
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000375 bool operator<(const ParenState &Other) const {
376 if (Indent != Other.Indent)
Daniel Jasper7d19bc22013-01-11 14:23:32 +0000377 return Indent < Other.Indent;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000378 if (LastSpace != Other.LastSpace)
379 return LastSpace < Other.LastSpace;
380 if (FirstLessLess != Other.FirstLessLess)
381 return FirstLessLess < Other.FirstLessLess;
Daniel Jasper7e9bf8c2013-01-11 11:37:55 +0000382 if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
383 return BreakBeforeClosingBrace;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000384 if (QuestionColumn != Other.QuestionColumn)
385 return QuestionColumn < Other.QuestionColumn;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000386 if (AvoidBinPacking != Other.AvoidBinPacking)
387 return AvoidBinPacking;
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000388 if (BreakBeforeParameter != Other.BreakBeforeParameter)
389 return BreakBeforeParameter;
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000390 if (HasMultiParameterLine != Other.HasMultiParameterLine)
391 return HasMultiParameterLine;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000392 if (ColonPos != Other.ColonPos)
393 return ColonPos < Other.ColonPos;
Daniel Jasperb3123142013-01-12 07:36:22 +0000394 return false;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000395 }
396 };
397
398 /// \brief The current state when indenting a unwrapped line.
399 ///
400 /// As the indenting tries different combinations this is copied by value.
401 struct LineState {
402 /// \brief The number of used columns in the current line.
403 unsigned Column;
404
405 /// \brief The token that needs to be next formatted.
406 const AnnotatedToken *NextToken;
407
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000408 /// \brief The column of the first variable name in a variable declaration.
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000409 ///
Daniel Jasper1a1ce832013-01-29 11:27:30 +0000410 /// Used to align further variables if necessary.
Daniel Jasper2e603772013-01-29 11:21:01 +0000411 unsigned VariablePos;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000412
413 /// \brief \c true if this line contains a continued for-loop section.
414 bool LineContainsContinuedForLoopSection;
415
Daniel Jasper29f123b2013-02-08 15:28:42 +0000416 /// \brief The level of nesting inside (), [], <> and {}.
417 unsigned ParenLevel;
418
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000419 /// \brief The \c ParenLevel at the start of this line.
420 unsigned StartOfLineLevel;
421
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000422 /// \brief The start column of the string literal, if we're in a string
423 /// literal sequence, 0 otherwise.
424 unsigned StartOfStringLiteral;
425
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000426 /// \brief A stack keeping track of properties applying to parenthesis
427 /// levels.
428 std::vector<ParenState> Stack;
429
430 /// \brief Comparison operator to be able to used \c LineState in \c map.
431 bool operator<(const LineState &Other) const {
Daniel Jasperd7896702013-02-19 09:28:55 +0000432 if (NextToken != Other.NextToken)
433 return NextToken < Other.NextToken;
434 if (Column != Other.Column)
435 return Column < Other.Column;
436 if (VariablePos != Other.VariablePos)
437 return VariablePos < Other.VariablePos;
438 if (LineContainsContinuedForLoopSection !=
439 Other.LineContainsContinuedForLoopSection)
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000440 return LineContainsContinuedForLoopSection;
Daniel Jasperd7896702013-02-19 09:28:55 +0000441 if (ParenLevel != Other.ParenLevel)
442 return ParenLevel < Other.ParenLevel;
443 if (StartOfLineLevel != Other.StartOfLineLevel)
444 return StartOfLineLevel < Other.StartOfLineLevel;
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000445 if (StartOfStringLiteral != Other.StartOfStringLiteral)
446 return StartOfStringLiteral < Other.StartOfStringLiteral;
Daniel Jasperd7896702013-02-19 09:28:55 +0000447 return Stack < Other.Stack;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000448 }
449 };
450
Daniel Jasper20409152012-12-04 14:54:30 +0000451 /// \brief Appends the next token to \p State and updates information
452 /// necessary for indentation.
453 ///
454 /// Puts the token on the current line if \p Newline is \c true and adds a
455 /// line break and necessary indentation otherwise.
456 ///
457 /// If \p DryRun is \c false, also creates and stores the required
458 /// \c Replacement.
Manuel Klimek8092a942013-02-20 10:15:13 +0000459 unsigned addTokenToState(bool Newline, bool DryRun, LineState &State) {
Daniel Jasper9c837d02013-01-09 07:06:56 +0000460 const AnnotatedToken &Current = *State.NextToken;
461 const AnnotatedToken &Previous = *State.NextToken->Parent;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000462 assert(State.Stack.size());
Daniel Jasperbac016b2012-12-03 18:12:45 +0000463
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000464 if (Current.Type == TT_ImplicitStringLiteral) {
465 State.Column += State.NextToken->FormatTok.WhiteSpaceLength +
466 State.NextToken->FormatTok.TokenLength;
467 if (State.NextToken->Children.empty())
468 State.NextToken = NULL;
469 else
470 State.NextToken = &State.NextToken->Children[0];
Manuel Klimek8092a942013-02-20 10:15:13 +0000471 return 0;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000472 }
473
Daniel Jasperbac016b2012-12-03 18:12:45 +0000474 if (Newline) {
Manuel Klimek060143e2013-01-02 18:33:23 +0000475 unsigned WhitespaceStartColumn = State.Column;
Manuel Klimekbb42bf12013-01-10 11:52:21 +0000476 if (Current.is(tok::r_brace)) {
477 State.Column = Line.Level * 2;
Daniel Jasper9c837d02013-01-09 07:06:56 +0000478 } else if (Current.is(tok::string_literal) &&
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000479 State.StartOfStringLiteral != 0) {
480 State.Column = State.StartOfStringLiteral;
Daniel Jasper66d19bd2013-02-18 11:59:17 +0000481 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasper9c837d02013-01-09 07:06:56 +0000482 } else if (Current.is(tok::lessless) &&
Daniel Jasper29f123b2013-02-08 15:28:42 +0000483 State.Stack.back().FirstLessLess != 0) {
484 State.Column = State.Stack.back().FirstLessLess;
485 } else if (State.ParenLevel != 0 &&
Daniel Jasper5f2173e2013-01-28 07:43:15 +0000486 (Previous.is(tok::equal) || Previous.is(tok::coloncolon) ||
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000487 Current.is(tok::period) || Current.is(tok::arrow) ||
488 Current.is(tok::question))) {
Daniel Jasper9c837d02013-01-09 07:06:56 +0000489 // Indent and extra 4 spaces after if we know the current expression is
490 // continued. Don't do that on the top level, as we already indent 4
491 // there.
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000492 State.Column = std::max(State.Stack.back().LastSpace,
493 State.Stack.back().Indent) + 4;
494 } else if (Current.Type == TT_ConditionalExpr) {
495 State.Column = State.Stack.back().QuestionColumn;
Daniel Jasper2e603772013-01-29 11:21:01 +0000496 } else if (Previous.is(tok::comma) && State.VariablePos != 0 &&
Daniel Jasper29f123b2013-02-08 15:28:42 +0000497 ((RootToken.is(tok::kw_for) && State.ParenLevel == 1) ||
498 State.ParenLevel == 0)) {
Daniel Jasper2e603772013-01-29 11:21:01 +0000499 State.Column = State.VariablePos;
Daniel Jasper3c08a812013-02-24 18:54:32 +0000500 } else if (Previous.ClosesTemplateDeclaration ||
501 (Current.Type == TT_StartOfName && State.ParenLevel == 0)) {
Daniel Jasper29f123b2013-02-08 15:28:42 +0000502 State.Column = State.Stack.back().Indent - 4;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000503 } else if (Current.Type == TT_ObjCSelectorName) {
504 if (State.Stack.back().ColonPos > Current.FormatTok.TokenLength) {
505 State.Column =
506 State.Stack.back().ColonPos - Current.FormatTok.TokenLength;
507 } else {
508 State.Column = State.Stack.back().Indent;
509 State.Stack.back().ColonPos =
510 State.Column + Current.FormatTok.TokenLength;
511 }
Daniel Jasper3c08a812013-02-24 18:54:32 +0000512 } else if (Previous.Type == TT_ObjCMethodExpr ||
513 Current.Type == TT_StartOfName) {
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000514 State.Column = State.Stack.back().Indent + 4;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000515 } else {
Daniel Jasper29f123b2013-02-08 15:28:42 +0000516 State.Column = State.Stack.back().Indent;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000517 }
518
Daniel Jasper7878a7b2013-02-15 11:07:25 +0000519 if (Current.is(tok::question))
Daniel Jasper237d4c12013-02-23 21:01:55 +0000520 State.Stack.back().BreakBeforeParameter = true;
521 if ((Previous.is(tok::comma) || Previous.is(tok::semi)) &&
522 !State.Stack.back().AvoidBinPacking)
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000523 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000524
Manuel Klimek060143e2013-01-02 18:33:23 +0000525 if (!DryRun) {
Daniel Jasper1ef81d52013-02-26 13:10:34 +0000526 unsigned NewLines = 1;
527 if (Current.Type == TT_LineComment)
528 NewLines =
529 std::max(NewLines, std::min(Current.FormatTok.NewlinesBefore,
530 Style.MaxEmptyLinesToKeep + 1));
Manuel Klimek060143e2013-01-02 18:33:23 +0000531 if (!Line.InPPDirective)
Daniel Jasperc4615b72013-02-20 12:56:39 +0000532 Whitespaces.replaceWhitespace(Current, NewLines, State.Column,
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000533 WhitespaceStartColumn, Style);
Manuel Klimek060143e2013-01-02 18:33:23 +0000534 else
Daniel Jasperc4615b72013-02-20 12:56:39 +0000535 Whitespaces.replacePPWhitespace(Current, NewLines, State.Column,
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000536 WhitespaceStartColumn, Style);
Manuel Klimek060143e2013-01-02 18:33:23 +0000537 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000538
Daniel Jasper29f123b2013-02-08 15:28:42 +0000539 State.Stack.back().LastSpace = State.Column;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000540 State.StartOfLineLevel = State.ParenLevel;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000541 if (Current.is(tok::colon) && Current.Type != TT_ConditionalExpr)
Daniel Jasper29f123b2013-02-08 15:28:42 +0000542 State.Stack.back().Indent += 2;
Daniel Jasper237d4c12013-02-23 21:01:55 +0000543
544 // Any break on this level means that the parent level has been broken
545 // and we need to avoid bin packing there.
546 for (unsigned i = 0, e = State.Stack.size() - 1; i != e; ++i) {
547 State.Stack[i].BreakBeforeParameter = true;
548 }
Daniel Jasperfaab0d32013-02-27 09:47:53 +0000549 if (Current.is(tok::period) || Current.is(tok::arrow))
550 State.Stack.back().BreakBeforeParameter = true;
551
Daniel Jasper237d4c12013-02-23 21:01:55 +0000552 // If we break after {, we should also break before the corresponding }.
553 if (Previous.is(tok::l_brace))
554 State.Stack.back().BreakBeforeClosingBrace = true;
555
556 if (State.Stack.back().AvoidBinPacking) {
557 // If we are breaking after '(', '{', '<', this is not bin packing
558 // unless AllowAllParametersOfDeclarationOnNextLine is false.
Daniel Jasper3c08a812013-02-24 18:54:32 +0000559 if ((Previous.isNot(tok::l_paren) && Previous.isNot(tok::l_brace)) ||
Daniel Jasper237d4c12013-02-23 21:01:55 +0000560 (!Style.AllowAllParametersOfDeclarationOnNextLine &&
561 Line.MustBeDeclaration))
562 State.Stack.back().BreakBeforeParameter = true;
563 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000564 } else {
Daniel Jasper9c3e71a2013-02-25 15:59:54 +0000565 // FIXME: Put VariablePos into ParenState and remove second part of if().
566 if (Current.is(tok::equal) &&
567 (RootToken.is(tok::kw_for) || State.ParenLevel == 0))
Daniel Jasper2e603772013-01-29 11:21:01 +0000568 State.VariablePos = State.Column - Previous.FormatTok.TokenLength;
Daniel Jaspera324a0e2012-12-21 14:37:20 +0000569
Daniel Jasper729a7432013-02-11 12:36:37 +0000570 unsigned Spaces = State.NextToken->SpacesRequiredBefore;
Daniel Jasper20409152012-12-04 14:54:30 +0000571
Daniel Jasperbac016b2012-12-03 18:12:45 +0000572 if (!DryRun)
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000573 Whitespaces.replaceWhitespace(Current, 0, Spaces, State.Column, Style);
Daniel Jasper20409152012-12-04 14:54:30 +0000574
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000575 if (Current.Type == TT_ObjCSelectorName &&
576 State.Stack.back().ColonPos == 0) {
577 if (State.Stack.back().Indent + Current.LongestObjCSelectorName >
578 State.Column + Spaces + Current.FormatTok.TokenLength)
579 State.Stack.back().ColonPos =
580 State.Stack.back().Indent + Current.LongestObjCSelectorName;
581 else
582 State.Stack.back().ColonPos =
Daniel Jasper9e9e6e02013-02-06 16:00:26 +0000583 State.Column + Spaces + Current.FormatTok.TokenLength;
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000584 }
585
Daniel Jasperd4f2c2e2013-01-29 19:41:55 +0000586 if (Current.Type != TT_LineComment &&
587 (Previous.is(tok::l_paren) || Previous.is(tok::l_brace) ||
588 State.NextToken->Parent->Type == TT_TemplateOpener))
Daniel Jasper29f123b2013-02-08 15:28:42 +0000589 State.Stack.back().Indent = State.Column + Spaces;
Daniel Jaspercda16502013-02-04 08:34:57 +0000590 if (Previous.is(tok::comma) && !isTrailingComment(Current))
Daniel Jasper29f123b2013-02-08 15:28:42 +0000591 State.Stack.back().HasMultiParameterLine = true;
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000592
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000593 State.Column += Spaces;
Daniel Jaspere438bac2013-01-23 20:41:06 +0000594 if (Current.is(tok::l_paren) && Previous.is(tok::kw_if))
595 // Treat the condition inside an if as if it was a second function
596 // parameter, i.e. let nested calls have an indent of 4.
597 State.Stack.back().LastSpace = State.Column + 1; // 1 is length of "(".
Daniel Jasper29f123b2013-02-08 15:28:42 +0000598 else if (Previous.is(tok::comma) && State.ParenLevel != 0)
Daniel Jaspere438bac2013-01-23 20:41:06 +0000599 // Top-level spaces are exempt as that mostly leads to better results.
600 State.Stack.back().LastSpace = State.Column;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000601 else if ((Previous.Type == TT_BinaryOperator ||
Daniel Jasper02b771e2013-01-28 13:31:35 +0000602 Previous.Type == TT_ConditionalExpr ||
603 Previous.Type == TT_CtorInitializerColon) &&
Daniel Jasperae8699b2013-01-28 09:35:24 +0000604 getPrecedence(Previous) != prec::Assignment)
605 State.Stack.back().LastSpace = State.Column;
Daniel Jasper6cabab42013-02-14 08:42:54 +0000606 else if (Previous.Type == TT_InheritanceColon)
607 State.Stack.back().Indent = State.Column;
Daniel Jasper986e17f2013-01-28 07:35:34 +0000608 else if (Previous.ParameterCount > 1 &&
609 (Previous.is(tok::l_paren) || Previous.is(tok::l_square) ||
Daniel Jasperf343cab2013-01-31 14:59:26 +0000610 Previous.is(tok::l_brace) ||
Daniel Jasper986e17f2013-01-28 07:35:34 +0000611 Previous.Type == TT_TemplateOpener))
612 // If this function has multiple parameters, indent nested calls from
613 // the start of the first parameter.
614 State.Stack.back().LastSpace = State.Column;
Daniel Jasper82282dc2013-02-18 13:52:06 +0000615 else if ((Current.is(tok::period) || Current.is(tok::arrow)) &&
616 Line.Type == LT_BuilderTypeCall && State.ParenLevel == 0)
617 State.Stack.back().LastSpace = State.Column;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000618 }
Daniel Jasper0df6acd2013-01-16 14:59:02 +0000619
Manuel Klimek8092a942013-02-20 10:15:13 +0000620 return moveStateToNextToken(State, DryRun);
Daniel Jasper20409152012-12-04 14:54:30 +0000621 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000622
Daniel Jasper20409152012-12-04 14:54:30 +0000623 /// \brief Mark the next token as consumed in \p State and modify its stacks
624 /// accordingly.
Manuel Klimek8092a942013-02-20 10:15:13 +0000625 unsigned moveStateToNextToken(LineState &State, bool DryRun) {
Daniel Jasper26f7e782013-01-08 14:56:18 +0000626 const AnnotatedToken &Current = *State.NextToken;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000627 assert(State.Stack.size());
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000628
Daniel Jasper6cabab42013-02-14 08:42:54 +0000629 if (Current.Type == TT_InheritanceColon)
630 State.Stack.back().AvoidBinPacking = true;
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000631 if (Current.is(tok::lessless) && State.Stack.back().FirstLessLess == 0)
632 State.Stack.back().FirstLessLess = State.Column;
Daniel Jasperbfe6fd42013-01-28 12:45:14 +0000633 if (Current.is(tok::question))
634 State.Stack.back().QuestionColumn = State.Column;
Daniel Jasper7d812812013-02-21 15:00:29 +0000635 if (Current.Type == TT_CtorInitializerColon) {
636 if (Style.ConstructorInitializerAllOnOneLineOrOnePerLine)
637 State.Stack.back().AvoidBinPacking = true;
638 State.Stack.back().BreakBeforeParameter = false;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000639 }
Daniel Jasper3b5943f2012-12-06 09:56:08 +0000640
Daniel Jasper29f123b2013-02-08 15:28:42 +0000641 // Insert scopes created by fake parenthesis.
642 for (unsigned i = 0, e = Current.FakeLParens; i != e; ++i) {
643 ParenState NewParenState = State.Stack.back();
644 NewParenState.Indent = std::max(State.Column, State.Stack.back().Indent);
Daniel Jasper237d4c12013-02-23 21:01:55 +0000645 NewParenState.BreakBeforeParameter = false;
Daniel Jasper29f123b2013-02-08 15:28:42 +0000646 State.Stack.push_back(NewParenState);
647 }
648
Daniel Jaspercf225b62012-12-24 13:43:52 +0000649 // If we encounter an opening (, [, { or <, we add a level to our stacks to
Daniel Jasper20409152012-12-04 14:54:30 +0000650 // prepare for the following tokens.
Daniel Jasper26f7e782013-01-08 14:56:18 +0000651 if (Current.is(tok::l_paren) || Current.is(tok::l_square) ||
652 Current.is(tok::l_brace) ||
653 State.NextToken->Type == TT_TemplateOpener) {
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000654 unsigned NewIndent;
Daniel Jasperf343cab2013-01-31 14:59:26 +0000655 bool AvoidBinPacking;
Manuel Klimek2851c162013-01-10 14:36:46 +0000656 if (Current.is(tok::l_brace)) {
Daniel Jasperf343cab2013-01-31 14:59:26 +0000657 NewIndent = 2 + State.Stack.back().LastSpace;
658 AvoidBinPacking = false;
Manuel Klimek2851c162013-01-10 14:36:46 +0000659 } else {
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000660 NewIndent = 4 + State.Stack.back().LastSpace;
Daniel Jasper3a39ac72013-02-28 09:39:12 +0000661 AvoidBinPacking =
662 !Style.BinPackParameters || State.Stack.back().AvoidBinPacking;
Manuel Klimek2851c162013-01-10 14:36:46 +0000663 }
Daniel Jasperd399bff2013-02-05 09:41:21 +0000664 State.Stack.push_back(
665 ParenState(NewIndent, State.Stack.back().LastSpace, AvoidBinPacking,
666 State.Stack.back().HasMultiParameterLine));
Daniel Jasper29f123b2013-02-08 15:28:42 +0000667 ++State.ParenLevel;
Daniel Jasper20409152012-12-04 14:54:30 +0000668 }
669
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000670 // If this '[' opens an ObjC call, determine whether all parameters fit into
671 // one line and put one per line if they don't.
672 if (Current.is(tok::l_square) && Current.Type == TT_ObjCMethodExpr &&
673 Current.MatchingParen != NULL) {
674 if (getLengthToMatchingParen(Current) + State.Column > getColumnLimit())
675 State.Stack.back().BreakBeforeParameter = true;
676 }
677
Daniel Jaspercf225b62012-12-24 13:43:52 +0000678 // If we encounter a closing ), ], } or >, we can remove a level from our
Daniel Jasper20409152012-12-04 14:54:30 +0000679 // stacks.
Daniel Jasper26f7e782013-01-08 14:56:18 +0000680 if (Current.is(tok::r_paren) || Current.is(tok::r_square) ||
681 (Current.is(tok::r_brace) && State.NextToken != &RootToken) ||
682 State.NextToken->Type == TT_TemplateCloser) {
Daniel Jasper604eb4c2013-01-11 10:22:12 +0000683 State.Stack.pop_back();
Daniel Jasper29f123b2013-02-08 15:28:42 +0000684 --State.ParenLevel;
685 }
686
687 // Remove scopes created by fake parenthesis.
688 for (unsigned i = 0, e = Current.FakeRParens; i != e; ++i) {
689 State.Stack.pop_back();
Daniel Jasperbac016b2012-12-03 18:12:45 +0000690 }
Manuel Klimek2851c162013-01-10 14:36:46 +0000691
Manuel Klimeke9a62262013-02-20 15:32:58 +0000692 if (Current.is(tok::string_literal)) {
Manuel Klimekb56b6d12013-02-20 15:25:48 +0000693 State.StartOfStringLiteral = State.Column;
694 } else if (Current.isNot(tok::comment)) {
695 State.StartOfStringLiteral = 0;
696 }
697
Manuel Klimek8092a942013-02-20 10:15:13 +0000698 State.Column += Current.FormatTok.TokenLength;
699
Daniel Jasper26f7e782013-01-08 14:56:18 +0000700 if (State.NextToken->Children.empty())
701 State.NextToken = NULL;
702 else
703 State.NextToken = &State.NextToken->Children[0];
Manuel Klimek2851c162013-01-10 14:36:46 +0000704
Manuel Klimek8092a942013-02-20 10:15:13 +0000705 return breakProtrudingToken(Current, State, DryRun);
706 }
707
708 /// \brief If the current token sticks out over the end of the line, break
709 /// it if possible.
710 unsigned breakProtrudingToken(const AnnotatedToken &Current, LineState &State,
711 bool DryRun) {
712 if (Current.isNot(tok::string_literal))
713 return 0;
714
715 unsigned Penalty = 0;
716 unsigned TailOffset = 0;
717 unsigned TailLength = Current.FormatTok.TokenLength;
718 unsigned StartColumn = State.Column - Current.FormatTok.TokenLength;
719 unsigned OffsetFromStart = 0;
720 while (StartColumn + TailLength > getColumnLimit()) {
721 StringRef Text = StringRef(Current.FormatTok.Tok.getLiteralData() +
722 TailOffset, TailLength);
Manuel Klimekbc30c712013-03-01 13:29:19 +0000723 if (StartColumn + OffsetFromStart + 1 > getColumnLimit())
Manuel Klimekaf31fd72013-03-01 13:14:08 +0000724 break;
Manuel Klimekbc30c712013-03-01 13:29:19 +0000725 StringRef::size_type SplitPoint = getSplitPoint(
726 Text, getColumnLimit() - StartColumn - OffsetFromStart - 1);
Manuel Klimek8092a942013-02-20 10:15:13 +0000727 if (SplitPoint == StringRef::npos)
728 break;
729 assert(SplitPoint != 0);
730 // +2, because 'Text' starts after the opening quotes, and does not
731 // include the closing quote we need to insert.
732 unsigned WhitespaceStartColumn =
733 StartColumn + OffsetFromStart + SplitPoint + 2;
734 State.Stack.back().LastSpace = StartColumn;
735 if (!DryRun) {
736 Whitespaces.breakToken(Current, TailOffset + SplitPoint + 1, "\"", "\"",
737 Line.InPPDirective, StartColumn,
738 WhitespaceStartColumn, Style);
739 }
740 TailOffset += SplitPoint + 1;
741 TailLength -= SplitPoint + 1;
742 OffsetFromStart = 1;
Daniel Jasper0fb382b2013-02-26 12:52:34 +0000743 Penalty += Style.PenaltyExcessCharacter;
Daniel Jasperfaab0d32013-02-27 09:47:53 +0000744 for (unsigned i = 0, e = State.Stack.size(); i != e; ++i)
745 State.Stack[i].BreakBeforeParameter = true;
Manuel Klimek8092a942013-02-20 10:15:13 +0000746 }
747 State.Column = StartColumn + TailLength;
748 return Penalty;
749 }
750
751 StringRef::size_type
752 getSplitPoint(StringRef Text, StringRef::size_type Offset) {
Manuel Klimekaf31fd72013-03-01 13:14:08 +0000753 StringRef::size_type SpaceOffset = Text.rfind(' ', Offset);
Manuel Klimekbc30c712013-03-01 13:29:19 +0000754 if (SpaceOffset != StringRef::npos)
755 return SpaceOffset;
756 StringRef::size_type SlashOffset = Text.rfind('/', Offset);
757 if (SlashOffset != StringRef::npos)
758 return SlashOffset;
759 if (Offset > 1)
760 // Do not split at 0.
Manuel Klimekaf31fd72013-03-01 13:14:08 +0000761 return Offset - 1;
Manuel Klimekbc30c712013-03-01 13:29:19 +0000762 return StringRef::npos;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000763 }
764
Daniel Jasperceb99ab2013-01-09 10:16:05 +0000765 unsigned getColumnLimit() {
Daniel Jaspera4d46212013-02-28 11:05:57 +0000766 return Style.ColumnLimit - (Line.InPPDirective ? 2 : 0);
Daniel Jasperceb99ab2013-01-09 10:16:05 +0000767 }
768
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000769 /// \brief An edge in the solution space from \c Previous->State to \c State,
770 /// inserting a newline dependent on the \c NewLine.
771 struct StateNode {
772 StateNode(const LineState &State, bool NewLine, StateNode *Previous)
Daniel Jasperf11a7052013-02-21 21:33:55 +0000773 : State(State), NewLine(NewLine), Previous(Previous) {}
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000774 LineState State;
775 bool NewLine;
776 StateNode *Previous;
777 };
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000778
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000779 /// \brief A pair of <penalty, count> that is used to prioritize the BFS on.
780 ///
781 /// In case of equal penalties, we want to prefer states that were inserted
782 /// first. During state generation we make sure that we insert states first
783 /// that break the line as late as possible.
784 typedef std::pair<unsigned, unsigned> OrderedPenalty;
785
786 /// \brief An item in the prioritized BFS search queue. The \c StateNode's
787 /// \c State has the given \c OrderedPenalty.
788 typedef std::pair<OrderedPenalty, StateNode *> QueueItem;
789
790 /// \brief The BFS queue type.
791 typedef std::priority_queue<QueueItem, std::vector<QueueItem>,
792 std::greater<QueueItem> > QueueType;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000793
794 /// \brief Analyze the entire solution space starting from \p InitialState.
Daniel Jasperbac016b2012-12-03 18:12:45 +0000795 ///
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000796 /// This implements a variant of Dijkstra's algorithm on the graph that spans
797 /// the solution space (\c LineStates are the nodes). The algorithm tries to
798 /// find the shortest path (the one with lowest penalty) from \p InitialState
799 /// to a state where all tokens are placed.
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000800 unsigned analyzeSolutionSpace(LineState &InitialState) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000801 std::set<LineState> Seen;
802
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000803 // Insert start element into queue.
Daniel Jasperfc759082013-02-14 14:26:07 +0000804 StateNode *Node =
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000805 new (Allocator.Allocate()) StateNode(InitialState, false, NULL);
806 Queue.push(QueueItem(OrderedPenalty(0, Count), Node));
807 ++Count;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000808
809 // While not empty, take first element and follow edges.
810 while (!Queue.empty()) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000811 unsigned Penalty = Queue.top().first.first;
Daniel Jasperfc759082013-02-14 14:26:07 +0000812 StateNode *Node = Queue.top().second;
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000813 if (Node->State.NextToken == NULL) {
Daniel Jasper01786732013-02-04 07:21:18 +0000814 DEBUG(llvm::errs() << "\n---\nPenalty for line: " << Penalty << "\n");
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000815 break;
Daniel Jasper01786732013-02-04 07:21:18 +0000816 }
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000817 Queue.pop();
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000818
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000819 if (!Seen.insert(Node->State).second)
820 // State already examined with lower penalty.
821 continue;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000822
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000823 addNextStateToQueue(Penalty, Node, /*NewLine=*/ false);
824 addNextStateToQueue(Penalty, Node, /*NewLine=*/ true);
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000825 }
826
827 if (Queue.empty())
828 // We were unable to find a solution, do nothing.
829 // FIXME: Add diagnostic?
Daniel Jasperbac016b2012-12-03 18:12:45 +0000830 return 0;
831
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000832 // Reconstruct the solution.
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000833 reconstructPath(InitialState, Queue.top().second);
Daniel Jasper01786732013-02-04 07:21:18 +0000834 DEBUG(llvm::errs() << "---\n");
Daniel Jasperbac016b2012-12-03 18:12:45 +0000835
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000836 // Return the column after the last token of the solution.
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000837 return Queue.top().second->State.Column;
838 }
839
840 void reconstructPath(LineState &State, StateNode *Current) {
841 // FIXME: This recursive implementation limits the possible number
842 // of tokens per line if compiled into a binary with small stack space.
843 // To become more independent of stack frame limitations we would need
844 // to also change the TokenAnnotator.
845 if (Current->Previous == NULL)
846 return;
847 reconstructPath(State, Current->Previous);
848 DEBUG({
849 if (Current->NewLine) {
Daniel Jaspera03ab102013-02-13 20:33:44 +0000850 llvm::errs()
851 << "Penalty for splitting before "
852 << Current->Previous->State.NextToken->FormatTok.Tok.getName()
853 << ": " << Current->Previous->State.NextToken->SplitPenalty << "\n";
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000854 }
855 });
856 addTokenToState(Current->NewLine, false, State);
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000857 }
858
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000859 /// \brief Add the following state to the analysis queue \c Queue.
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000860 ///
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000861 /// Assume the current state is \p PreviousNode and has been reached with a
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000862 /// penalty of \p Penalty. Insert a line break if \p NewLine is \c true.
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000863 void addNextStateToQueue(unsigned Penalty, StateNode *PreviousNode,
864 bool NewLine) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000865 if (NewLine && !canBreak(PreviousNode->State))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000866 return;
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000867 if (!NewLine && mustBreak(PreviousNode->State))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000868 return;
Daniel Jasperae8699b2013-01-28 09:35:24 +0000869 if (NewLine)
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000870 Penalty += PreviousNode->State.NextToken->SplitPenalty;
871
872 StateNode *Node = new (Allocator.Allocate())
873 StateNode(PreviousNode->State, NewLine, PreviousNode);
Manuel Klimek8092a942013-02-20 10:15:13 +0000874 Penalty += addTokenToState(NewLine, true, Node->State);
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000875 if (Node->State.Column > getColumnLimit()) {
876 unsigned ExcessCharacters = Node->State.Column - getColumnLimit();
Daniel Jasper01786732013-02-04 07:21:18 +0000877 Penalty += Style.PenaltyExcessCharacter * ExcessCharacters;
Daniel Jasperceb99ab2013-01-09 10:16:05 +0000878 }
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000879
880 Queue.push(QueueItem(OrderedPenalty(Penalty, Count), Node));
881 ++Count;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000882 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000883
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000884 /// \brief Returns \c true, if a line break after \p State is allowed.
885 bool canBreak(const LineState &State) {
886 if (!State.NextToken->CanBreakBefore &&
887 !(State.NextToken->is(tok::r_brace) &&
888 State.Stack.back().BreakBeforeClosingBrace))
889 return false;
Daniel Jaspercf5767d2013-02-18 11:05:07 +0000890 // This prevents breaks like:
891 // ...
892 // SomeParameter, OtherParameter).DoSomething(
893 // ...
894 // As they hide "DoSomething" and generally bad for readability.
895 if (State.NextToken->Parent->is(tok::l_paren) &&
896 State.ParenLevel <= State.StartOfLineLevel)
897 return false;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000898 // Trying to insert a parameter on a new line if there are already more than
899 // one parameter on the current line is bin packing.
Daniel Jasperd399bff2013-02-05 09:41:21 +0000900 if (State.Stack.back().HasMultiParameterLine &&
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000901 State.Stack.back().AvoidBinPacking)
902 return false;
903 return true;
904 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000905
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000906 /// \brief Returns \c true, if a line break after \p State is mandatory.
907 bool mustBreak(const LineState &State) {
908 if (State.NextToken->MustBreakBefore)
909 return true;
910 if (State.NextToken->is(tok::r_brace) &&
911 State.Stack.back().BreakBeforeClosingBrace)
912 return true;
913 if (State.NextToken->Parent->is(tok::semi) &&
914 State.LineContainsContinuedForLoopSection)
915 return true;
Daniel Jasper237d4c12013-02-23 21:01:55 +0000916 if ((State.NextToken->Parent->is(tok::comma) ||
917 State.NextToken->Parent->is(tok::semi) ||
918 State.NextToken->is(tok::question) ||
919 State.NextToken->Type == TT_ConditionalExpr) &&
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000920 State.Stack.back().BreakBeforeParameter &&
Daniel Jasperc5cfa492013-02-14 09:19:04 +0000921 !isTrailingComment(*State.NextToken) &&
Daniel Jasper7d812812013-02-21 15:00:29 +0000922 State.NextToken->isNot(tok::r_paren) &&
923 State.NextToken->isNot(tok::r_brace))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000924 return true;
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000925 // FIXME: Comparing LongestObjCSelectorName to 0 is a hacky way of finding
926 // out whether it is the first parameter. Clean this up.
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000927 if (State.NextToken->Type == TT_ObjCSelectorName &&
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000928 State.NextToken->LongestObjCSelectorName == 0 &&
929 State.Stack.back().BreakBeforeParameter)
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000930 return true;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000931 if ((State.NextToken->Type == TT_CtorInitializerColon ||
932 (State.NextToken->Parent->ClosesTemplateDeclaration &&
Daniel Jasper29f123b2013-02-08 15:28:42 +0000933 State.ParenLevel == 0)))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000934 return true;
935 return false;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000936 }
937
Daniel Jasperbac016b2012-12-03 18:12:45 +0000938 FormatStyle Style;
939 SourceManager &SourceMgr;
Daniel Jasper995e8202013-01-14 13:08:07 +0000940 const AnnotatedLine &Line;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +0000941 const unsigned FirstIndent;
Daniel Jasper26f7e782013-01-08 14:56:18 +0000942 const AnnotatedToken &RootToken;
Daniel Jasperdcc2a622013-01-18 08:44:07 +0000943 WhitespaceManager &Whitespaces;
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000944
945 llvm::SpecificBumpPtrAllocator<StateNode> Allocator;
946 QueueType Queue;
947 // Increasing count of \c StateNode items we have created. This is used
948 // to create a deterministic order independent of the container.
949 unsigned Count;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000950};
951
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000952class LexerBasedFormatTokenSource : public FormatTokenSource {
953public:
954 LexerBasedFormatTokenSource(Lexer &Lex, SourceManager &SourceMgr)
Daniel Jasper1321eb52012-12-18 21:05:13 +0000955 : GreaterStashed(false), Lex(Lex), SourceMgr(SourceMgr),
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000956 IdentTable(Lex.getLangOpts()) {
957 Lex.SetKeepWhitespaceMode(true);
958 }
959
960 virtual FormatToken getNextToken() {
961 if (GreaterStashed) {
962 FormatTok.NewlinesBefore = 0;
963 FormatTok.WhiteSpaceStart =
964 FormatTok.Tok.getLocation().getLocWithOffset(1);
965 FormatTok.WhiteSpaceLength = 0;
966 GreaterStashed = false;
967 return FormatTok;
968 }
969
970 FormatTok = FormatToken();
971 Lex.LexFromRawLexer(FormatTok.Tok);
Manuel Klimek95419382013-01-07 07:56:50 +0000972 StringRef Text = rawTokenText(FormatTok.Tok);
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000973 FormatTok.WhiteSpaceStart = FormatTok.Tok.getLocation();
Manuel Klimekf6fd00b2013-01-05 22:56:06 +0000974 if (SourceMgr.getFileOffset(FormatTok.WhiteSpaceStart) == 0)
975 FormatTok.IsFirst = true;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000976
977 // Consume and record whitespace until we find a significant token.
978 while (FormatTok.Tok.is(tok::unknown)) {
Manuel Klimeka28fc062013-02-11 12:33:24 +0000979 unsigned Newlines = Text.count('\n');
980 unsigned EscapedNewlines = Text.count("\\\n");
981 FormatTok.NewlinesBefore += Newlines;
982 FormatTok.HasUnescapedNewline |= EscapedNewlines != Newlines;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000983 FormatTok.WhiteSpaceLength += FormatTok.Tok.getLength();
984
985 if (FormatTok.Tok.is(tok::eof))
986 return FormatTok;
987 Lex.LexFromRawLexer(FormatTok.Tok);
Manuel Klimek95419382013-01-07 07:56:50 +0000988 Text = rawTokenText(FormatTok.Tok);
Manuel Klimekd4397b92013-01-04 23:34:14 +0000989 }
Manuel Klimek95419382013-01-07 07:56:50 +0000990
991 // Now FormatTok is the next non-whitespace token.
992 FormatTok.TokenLength = Text.size();
993
Manuel Klimekd4397b92013-01-04 23:34:14 +0000994 // In case the token starts with escaped newlines, we want to
995 // take them into account as whitespace - this pattern is quite frequent
996 // in macro definitions.
997 // FIXME: What do we want to do with other escaped spaces, and escaped
998 // spaces or newlines in the middle of tokens?
999 // FIXME: Add a more explicit test.
1000 unsigned i = 0;
Daniel Jasper71607512013-01-07 10:48:50 +00001001 while (i + 1 < Text.size() && Text[i] == '\\' && Text[i + 1] == '\n') {
Manuel Klimek86721d22013-01-22 16:31:55 +00001002 // FIXME: ++FormatTok.NewlinesBefore is missing...
Manuel Klimekd4397b92013-01-04 23:34:14 +00001003 FormatTok.WhiteSpaceLength += 2;
Manuel Klimek95419382013-01-07 07:56:50 +00001004 FormatTok.TokenLength -= 2;
Manuel Klimekd4397b92013-01-04 23:34:14 +00001005 i += 2;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001006 }
1007
1008 if (FormatTok.Tok.is(tok::raw_identifier)) {
Manuel Klimekd4397b92013-01-04 23:34:14 +00001009 IdentifierInfo &Info = IdentTable.get(Text);
Daniel Jaspercd1a32b2012-12-21 17:58:39 +00001010 FormatTok.Tok.setIdentifierInfo(&Info);
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001011 FormatTok.Tok.setKind(Info.getTokenID());
1012 }
1013
1014 if (FormatTok.Tok.is(tok::greatergreater)) {
1015 FormatTok.Tok.setKind(tok::greater);
Daniel Jasperb6f02f32013-02-28 10:06:05 +00001016 FormatTok.TokenLength = 1;
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001017 GreaterStashed = true;
1018 }
1019
1020 return FormatTok;
1021 }
1022
Nico Weberc2e6d2a2013-02-11 15:32:15 +00001023 IdentifierTable &getIdentTable() { return IdentTable; }
1024
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001025private:
1026 FormatToken FormatTok;
1027 bool GreaterStashed;
1028 Lexer &Lex;
1029 SourceManager &SourceMgr;
1030 IdentifierTable IdentTable;
1031
1032 /// Returns the text of \c FormatTok.
Manuel Klimek95419382013-01-07 07:56:50 +00001033 StringRef rawTokenText(Token &Tok) {
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001034 return StringRef(SourceMgr.getCharacterData(Tok.getLocation()),
1035 Tok.getLength());
1036 }
1037};
1038
Daniel Jasperbac016b2012-12-03 18:12:45 +00001039class Formatter : public UnwrappedLineConsumer {
1040public:
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001041 Formatter(DiagnosticsEngine &Diag, const FormatStyle &Style, Lexer &Lex,
1042 SourceManager &SourceMgr,
Daniel Jasperbac016b2012-12-03 18:12:45 +00001043 const std::vector<CharSourceRange> &Ranges)
Alexander Kornienko3048aea2013-01-10 15:05:09 +00001044 : Diag(Diag), Style(Style), Lex(Lex), SourceMgr(SourceMgr),
Daniel Jasperf11a7052013-02-21 21:33:55 +00001045 Whitespaces(SourceMgr), Ranges(Ranges) {}
Daniel Jasperbac016b2012-12-03 18:12:45 +00001046
Daniel Jasper7d19bc22013-01-11 14:23:32 +00001047 virtual ~Formatter() {}
Daniel Jasperaccb0b02012-12-04 21:05:31 +00001048
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001049 void deriveLocalStyle() {
1050 unsigned CountBoundToVariable = 0;
1051 unsigned CountBoundToType = 0;
1052 bool HasCpp03IncompatibleFormat = false;
1053 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
1054 if (AnnotatedLines[i].First.Children.empty())
1055 continue;
1056 AnnotatedToken *Tok = &AnnotatedLines[i].First.Children[0];
1057 while (!Tok->Children.empty()) {
1058 if (Tok->Type == TT_PointerOrReference) {
1059 bool SpacesBefore = Tok->FormatTok.WhiteSpaceLength > 0;
1060 bool SpacesAfter = Tok->Children[0].FormatTok.WhiteSpaceLength > 0;
1061 if (SpacesBefore && !SpacesAfter)
1062 ++CountBoundToVariable;
1063 else if (!SpacesBefore && SpacesAfter)
1064 ++CountBoundToType;
1065 }
1066
Daniel Jasper29f123b2013-02-08 15:28:42 +00001067 if (Tok->Type == TT_TemplateCloser &&
1068 Tok->Parent->Type == TT_TemplateCloser &&
1069 Tok->FormatTok.WhiteSpaceLength == 0)
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001070 HasCpp03IncompatibleFormat = true;
1071 Tok = &Tok->Children[0];
1072 }
1073 }
1074 if (Style.DerivePointerBinding) {
1075 if (CountBoundToType > CountBoundToVariable)
1076 Style.PointerBindsToType = true;
1077 else if (CountBoundToType < CountBoundToVariable)
1078 Style.PointerBindsToType = false;
1079 }
1080 if (Style.Standard == FormatStyle::LS_Auto) {
1081 Style.Standard = HasCpp03IncompatibleFormat ? FormatStyle::LS_Cpp11
1082 : FormatStyle::LS_Cpp03;
1083 }
1084 }
1085
Daniel Jasperbac016b2012-12-03 18:12:45 +00001086 tooling::Replacements format() {
Alexander Kornienko469a21b2012-12-07 16:15:44 +00001087 LexerBasedFormatTokenSource Tokens(Lex, SourceMgr);
Alexander Kornienko3048aea2013-01-10 15:05:09 +00001088 UnwrappedLineParser Parser(Diag, Style, Tokens, *this);
Alexander Kornienkocff563c2012-12-04 17:27:50 +00001089 StructuralError = Parser.parse();
Manuel Klimekd4397b92013-01-04 23:34:14 +00001090 unsigned PreviousEndOfLineColumn = 0;
Nico Weberc2e6d2a2013-02-11 15:32:15 +00001091 TokenAnnotator Annotator(Style, SourceMgr, Lex,
1092 Tokens.getIdentTable().get("in"));
Daniel Jasper995e8202013-01-14 13:08:07 +00001093 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001094 Annotator.annotate(AnnotatedLines[i]);
1095 }
1096 deriveLocalStyle();
1097 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
1098 Annotator.calculateFormattingInformation(AnnotatedLines[i]);
Daniel Jasper995e8202013-01-14 13:08:07 +00001099 }
Manuel Klimek547d5db2013-02-08 17:38:27 +00001100 std::vector<int> IndentForLevel;
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001101 bool PreviousLineWasTouched = false;
Daniel Jasper995e8202013-01-14 13:08:07 +00001102 for (std::vector<AnnotatedLine>::iterator I = AnnotatedLines.begin(),
1103 E = AnnotatedLines.end();
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001104 I != E; ++I) {
Daniel Jasper995e8202013-01-14 13:08:07 +00001105 const AnnotatedLine &TheLine = *I;
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001106 int Offset = getIndentOffset(TheLine.First);
Manuel Klimek547d5db2013-02-08 17:38:27 +00001107 while (IndentForLevel.size() <= TheLine.Level)
1108 IndentForLevel.push_back(-1);
1109 IndentForLevel.resize(TheLine.Level + 1);
Daniel Jasper29333162013-02-18 13:08:03 +00001110 bool WasMoved =
1111 PreviousLineWasTouched && TheLine.First.FormatTok.NewlinesBefore == 0;
1112 if (TheLine.Type != LT_Invalid && (WasMoved || touchesRanges(TheLine))) {
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001113 unsigned LevelIndent = getIndent(IndentForLevel, TheLine.Level);
Manuel Klimek547d5db2013-02-08 17:38:27 +00001114 unsigned Indent = LevelIndent;
1115 if (static_cast<int>(Indent) + Offset >= 0)
1116 Indent += Offset;
1117 if (!TheLine.First.FormatTok.WhiteSpaceStart.isValid() ||
1118 StructuralError) {
1119 Indent = LevelIndent = SourceMgr.getSpellingColumnNumber(
1120 TheLine.First.FormatTok.Tok.getLocation()) - 1;
1121 } else {
1122 formatFirstToken(TheLine.First, Indent, TheLine.InPPDirective,
1123 PreviousEndOfLineColumn);
1124 }
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001125 tryFitMultipleLinesInOne(Indent, I, E);
Daniel Jasper995e8202013-01-14 13:08:07 +00001126 UnwrappedLineFormatter Formatter(Style, SourceMgr, TheLine, Indent,
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001127 TheLine.First, Whitespaces,
Daniel Jasper995e8202013-01-14 13:08:07 +00001128 StructuralError);
Daniel Jaspera4d46212013-02-28 11:05:57 +00001129 PreviousEndOfLineColumn =
1130 Formatter.format(I + 1 != E ? &*(I + 1) : NULL);
Manuel Klimek547d5db2013-02-08 17:38:27 +00001131 IndentForLevel[TheLine.Level] = LevelIndent;
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001132 PreviousLineWasTouched = true;
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001133 } else {
Daniel Jasper9ece2bb2013-02-12 16:51:23 +00001134 if (TheLine.First.FormatTok.NewlinesBefore > 0 ||
1135 TheLine.First.FormatTok.IsFirst) {
1136 unsigned Indent = SourceMgr.getSpellingColumnNumber(
1137 TheLine.First.FormatTok.Tok.getLocation()) - 1;
1138 unsigned LevelIndent = Indent;
1139 if (static_cast<int>(LevelIndent) - Offset >= 0)
1140 LevelIndent -= Offset;
1141 IndentForLevel[TheLine.Level] = LevelIndent;
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001142
1143 // Remove trailing whitespace of the previous line if it was touched.
1144 if (PreviousLineWasTouched)
1145 formatFirstToken(TheLine.First, Indent, TheLine.InPPDirective,
1146 PreviousEndOfLineColumn);
Daniel Jasper9ece2bb2013-02-12 16:51:23 +00001147 }
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001148 // If we did not reformat this unwrapped line, the column at the end of
1149 // the last token is unchanged - thus, we can calculate the end of the
1150 // last token.
1151 PreviousEndOfLineColumn =
1152 SourceMgr.getSpellingColumnNumber(
1153 TheLine.Last->FormatTok.Tok.getLocation()) +
1154 Lex.MeasureTokenLength(TheLine.Last->FormatTok.Tok.getLocation(),
1155 SourceMgr, Lex.getLangOpts()) - 1;
1156 PreviousLineWasTouched = false;
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001157 }
1158 }
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001159 return Whitespaces.generateReplacements();
Daniel Jasperbac016b2012-12-03 18:12:45 +00001160 }
1161
1162private:
Manuel Klimek547d5db2013-02-08 17:38:27 +00001163 /// \brief Get the indent of \p Level from \p IndentForLevel.
1164 ///
1165 /// \p IndentForLevel must contain the indent for the level \c l
1166 /// at \p IndentForLevel[l], or a value < 0 if the indent for
1167 /// that level is unknown.
Daniel Jasperfc759082013-02-14 14:26:07 +00001168 unsigned getIndent(const std::vector<int> IndentForLevel, unsigned Level) {
Manuel Klimek547d5db2013-02-08 17:38:27 +00001169 if (IndentForLevel[Level] != -1)
1170 return IndentForLevel[Level];
Manuel Klimek52635ff2013-02-08 19:53:32 +00001171 if (Level == 0)
1172 return 0;
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001173 return getIndent(IndentForLevel, Level - 1) + 2;
Manuel Klimek547d5db2013-02-08 17:38:27 +00001174 }
1175
1176 /// \brief Get the offset of the line relatively to the level.
1177 ///
1178 /// For example, 'public:' labels in classes are offset by 1 or 2
1179 /// characters to the left from their level.
Daniel Jasperc78c6b32013-02-14 09:58:41 +00001180 int getIndentOffset(const AnnotatedToken &RootToken) {
Manuel Klimek547d5db2013-02-08 17:38:27 +00001181 bool IsAccessModifier = false;
1182 if (RootToken.is(tok::kw_public) || RootToken.is(tok::kw_protected) ||
1183 RootToken.is(tok::kw_private))
1184 IsAccessModifier = true;
1185 else if (RootToken.is(tok::at) && !RootToken.Children.empty() &&
1186 (RootToken.Children[0].isObjCAtKeyword(tok::objc_public) ||
1187 RootToken.Children[0].isObjCAtKeyword(tok::objc_protected) ||
1188 RootToken.Children[0].isObjCAtKeyword(tok::objc_package) ||
1189 RootToken.Children[0].isObjCAtKeyword(tok::objc_private)))
1190 IsAccessModifier = true;
1191
1192 if (IsAccessModifier)
1193 return Style.AccessModifierOffset;
1194 return 0;
1195 }
1196
Manuel Klimek517e8942013-01-11 17:54:10 +00001197 /// \brief Tries to merge lines into one.
1198 ///
1199 /// This will change \c Line and \c AnnotatedLine to contain the merged line,
1200 /// if possible; note that \c I will be incremented when lines are merged.
1201 ///
1202 /// Returns whether the resulting \c Line can fit in a single line.
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001203 void tryFitMultipleLinesInOne(unsigned Indent,
Daniel Jasper995e8202013-01-14 13:08:07 +00001204 std::vector<AnnotatedLine>::iterator &I,
1205 std::vector<AnnotatedLine>::iterator E) {
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001206 // We can never merge stuff if there are trailing line comments.
1207 if (I->Last->Type == TT_LineComment)
1208 return;
1209
Daniel Jaspera4d46212013-02-28 11:05:57 +00001210 unsigned Limit = Style.ColumnLimit - Indent;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001211 // If we already exceed the column limit, we set 'Limit' to 0. The different
1212 // tryMerge..() functions can then decide whether to still do merging.
1213 Limit = I->Last->TotalLength > Limit ? 0 : Limit - I->Last->TotalLength;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001214
Daniel Jasper9c8c40e2013-01-21 14:18:28 +00001215 if (I + 1 == E || (I + 1)->Type == LT_Invalid)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001216 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001217
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001218 if (I->Last->is(tok::l_brace)) {
1219 tryMergeSimpleBlock(I, E, Limit);
1220 } else if (I->First.is(tok::kw_if)) {
1221 tryMergeSimpleIf(I, E, Limit);
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001222 } else if (I->InPPDirective && (I->First.FormatTok.HasUnescapedNewline ||
1223 I->First.FormatTok.IsFirst)) {
1224 tryMergeSimplePPDirective(I, E, Limit);
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001225 }
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001226 return;
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001227 }
1228
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001229 void tryMergeSimplePPDirective(std::vector<AnnotatedLine>::iterator &I,
1230 std::vector<AnnotatedLine>::iterator E,
1231 unsigned Limit) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001232 if (Limit == 0)
1233 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001234 AnnotatedLine &Line = *I;
Daniel Jasper2b9c10b2013-01-14 15:52:06 +00001235 if (!(I + 1)->InPPDirective || (I + 1)->First.FormatTok.HasUnescapedNewline)
1236 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001237 if (I + 2 != E && (I + 2)->InPPDirective &&
1238 !(I + 2)->First.FormatTok.HasUnescapedNewline)
1239 return;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001240 if (1 + (I + 1)->Last->TotalLength > Limit)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001241 return;
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001242 join(Line, *(++I));
1243 }
1244
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001245 void tryMergeSimpleIf(std::vector<AnnotatedLine>::iterator &I,
1246 std::vector<AnnotatedLine>::iterator E,
1247 unsigned Limit) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001248 if (Limit == 0)
1249 return;
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +00001250 if (!Style.AllowShortIfStatementsOnASingleLine)
1251 return;
Manuel Klimek4c128122013-01-18 14:46:43 +00001252 if ((I + 1)->InPPDirective != I->InPPDirective ||
1253 ((I + 1)->InPPDirective &&
1254 (I + 1)->First.FormatTok.HasUnescapedNewline))
1255 return;
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001256 AnnotatedLine &Line = *I;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001257 if (Line.Last->isNot(tok::r_paren))
1258 return;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001259 if (1 + (I + 1)->Last->TotalLength > Limit)
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001260 return;
1261 if ((I + 1)->First.is(tok::kw_if) || (I + 1)->First.Type == TT_LineComment)
1262 return;
1263 // Only inline simple if's (no nested if or else).
1264 if (I + 2 != E && (I + 2)->First.is(tok::kw_else))
1265 return;
1266 join(Line, *(++I));
1267 }
1268
1269 void tryMergeSimpleBlock(std::vector<AnnotatedLine>::iterator &I,
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001270 std::vector<AnnotatedLine>::iterator E,
1271 unsigned Limit) {
Manuel Klimek517e8942013-01-11 17:54:10 +00001272 // First, check that the current line allows merging. This is the case if
1273 // we're not in a control flow statement and the last token is an opening
1274 // brace.
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001275 AnnotatedLine &Line = *I;
Manuel Klimek517e8942013-01-11 17:54:10 +00001276 bool AllowedTokens =
Daniel Jasper995e8202013-01-14 13:08:07 +00001277 Line.First.isNot(tok::kw_if) && Line.First.isNot(tok::kw_while) &&
1278 Line.First.isNot(tok::kw_do) && Line.First.isNot(tok::r_brace) &&
1279 Line.First.isNot(tok::kw_else) && Line.First.isNot(tok::kw_try) &&
1280 Line.First.isNot(tok::kw_catch) && Line.First.isNot(tok::kw_for) &&
Nico Weber67015ed2013-01-11 21:14:08 +00001281 // This gets rid of all ObjC @ keywords and methods.
Daniel Jasper995e8202013-01-14 13:08:07 +00001282 Line.First.isNot(tok::at) && Line.First.isNot(tok::minus) &&
1283 Line.First.isNot(tok::plus);
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001284 if (!AllowedTokens)
1285 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001286
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001287 AnnotatedToken *Tok = &(I + 1)->First;
1288 if (Tok->Children.empty() && Tok->is(tok::r_brace) &&
Daniel Jasperf11a7052013-02-21 21:33:55 +00001289 !Tok->MustBreakBefore) {
1290 // We merge empty blocks even if the line exceeds the column limit.
Daniel Jasper729a7432013-02-11 12:36:37 +00001291 Tok->SpacesRequiredBefore = 0;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001292 Tok->CanBreakBefore = true;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001293 join(Line, *(I + 1));
1294 I += 1;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001295 } else if (Limit != 0) {
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001296 // Check that we still have three lines and they fit into the limit.
1297 if (I + 2 == E || (I + 2)->Type == LT_Invalid ||
1298 !nextTwoLinesFitInto(I, Limit))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001299 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001300
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001301 // Second, check that the next line does not contain any braces - if it
1302 // does, readability declines when putting it into a single line.
1303 if ((I + 1)->Last->Type == TT_LineComment || Tok->MustBreakBefore)
1304 return;
1305 do {
1306 if (Tok->is(tok::l_brace) || Tok->is(tok::r_brace))
1307 return;
1308 Tok = Tok->Children.empty() ? NULL : &Tok->Children.back();
1309 } while (Tok != NULL);
Manuel Klimek517e8942013-01-11 17:54:10 +00001310
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001311 // Last, check that the third line contains a single closing brace.
1312 Tok = &(I + 2)->First;
1313 if (!Tok->Children.empty() || Tok->isNot(tok::r_brace) ||
1314 Tok->MustBreakBefore)
1315 return;
1316
1317 join(Line, *(I + 1));
1318 join(Line, *(I + 2));
1319 I += 2;
Manuel Klimek517e8942013-01-11 17:54:10 +00001320 }
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001321 }
1322
1323 bool nextTwoLinesFitInto(std::vector<AnnotatedLine>::iterator I,
1324 unsigned Limit) {
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001325 return 1 + (I + 1)->Last->TotalLength + 1 + (I + 2)->Last->TotalLength <=
1326 Limit;
Manuel Klimek517e8942013-01-11 17:54:10 +00001327 }
1328
Daniel Jasper995e8202013-01-14 13:08:07 +00001329 void join(AnnotatedLine &A, const AnnotatedLine &B) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001330 unsigned LengthA = A.Last->TotalLength + B.First.SpacesRequiredBefore;
Daniel Jasper995e8202013-01-14 13:08:07 +00001331 A.Last->Children.push_back(B.First);
1332 while (!A.Last->Children.empty()) {
1333 A.Last->Children[0].Parent = A.Last;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001334 A.Last->Children[0].TotalLength += LengthA;
Daniel Jasper995e8202013-01-14 13:08:07 +00001335 A.Last = &A.Last->Children[0];
1336 }
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001337 }
1338
Daniel Jasper995e8202013-01-14 13:08:07 +00001339 bool touchesRanges(const AnnotatedLine &TheLine) {
1340 const FormatToken *First = &TheLine.First.FormatTok;
1341 const FormatToken *Last = &TheLine.Last->FormatTok;
Daniel Jaspercd162382013-01-07 13:26:07 +00001342 CharSourceRange LineRange = CharSourceRange::getTokenRange(
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001343 First->Tok.getLocation(), Last->Tok.getLocation());
Daniel Jasperbac016b2012-12-03 18:12:45 +00001344 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001345 if (!SourceMgr.isBeforeInTranslationUnit(LineRange.getEnd(),
1346 Ranges[i].getBegin()) &&
1347 !SourceMgr.isBeforeInTranslationUnit(Ranges[i].getEnd(),
1348 LineRange.getBegin()))
1349 return true;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001350 }
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001351 return false;
1352 }
1353
1354 virtual void consumeUnwrappedLine(const UnwrappedLine &TheLine) {
Daniel Jaspercbb6c412013-01-16 09:10:19 +00001355 AnnotatedLines.push_back(AnnotatedLine(TheLine));
Daniel Jasperbac016b2012-12-03 18:12:45 +00001356 }
1357
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001358 /// \brief Add a new line and the required indent before the first Token
1359 /// of the \c UnwrappedLine if there was no structural parsing error.
1360 /// Returns the indent level of the \c UnwrappedLine.
Manuel Klimek547d5db2013-02-08 17:38:27 +00001361 void formatFirstToken(const AnnotatedToken &RootToken, unsigned Indent,
1362 bool InPPDirective, unsigned PreviousEndOfLineColumn) {
Daniel Jasper7d19bc22013-01-11 14:23:32 +00001363 const FormatToken &Tok = RootToken.FormatTok;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001364
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001365 unsigned Newlines =
1366 std::min(Tok.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001367 if (Newlines == 0 && !Tok.IsFirst)
1368 Newlines = 1;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001369
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001370 if (!InPPDirective || Tok.HasUnescapedNewline) {
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001371 Whitespaces.replaceWhitespace(RootToken, Newlines, Indent, 0, Style);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001372 } else {
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001373 Whitespaces.replacePPWhitespace(RootToken, Newlines, Indent,
1374 PreviousEndOfLineColumn, Style);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001375 }
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001376 }
1377
Alexander Kornienkoa4ae9f32013-01-14 11:34:14 +00001378 DiagnosticsEngine &Diag;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001379 FormatStyle Style;
1380 Lexer &Lex;
1381 SourceManager &SourceMgr;
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001382 WhitespaceManager Whitespaces;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001383 std::vector<CharSourceRange> Ranges;
Daniel Jasper995e8202013-01-14 13:08:07 +00001384 std::vector<AnnotatedLine> AnnotatedLines;
Alexander Kornienkocff563c2012-12-04 17:27:50 +00001385 bool StructuralError;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001386};
1387
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001388tooling::Replacements
1389reformat(const FormatStyle &Style, Lexer &Lex, SourceManager &SourceMgr,
1390 std::vector<CharSourceRange> Ranges, DiagnosticConsumer *DiagClient) {
Alexander Kornienko3048aea2013-01-10 15:05:09 +00001391 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions();
Alexander Kornienkoa4ae9f32013-01-14 11:34:14 +00001392 OwningPtr<DiagnosticConsumer> DiagPrinter;
1393 if (DiagClient == 0) {
1394 DiagPrinter.reset(new TextDiagnosticPrinter(llvm::errs(), &*DiagOpts));
1395 DiagPrinter->BeginSourceFile(Lex.getLangOpts(), Lex.getPP());
1396 DiagClient = DiagPrinter.get();
1397 }
Alexander Kornienko3048aea2013-01-10 15:05:09 +00001398 DiagnosticsEngine Diagnostics(
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001399 IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs()), &*DiagOpts,
Alexander Kornienkoa4ae9f32013-01-14 11:34:14 +00001400 DiagClient, false);
Alexander Kornienko3048aea2013-01-10 15:05:09 +00001401 Diagnostics.setSourceManager(&SourceMgr);
1402 Formatter formatter(Diagnostics, Style, Lex, SourceMgr, Ranges);
Daniel Jasperbac016b2012-12-03 18:12:45 +00001403 return formatter.format();
1404}
1405
Daniel Jasper46ef8522013-01-10 13:08:12 +00001406LangOptions getFormattingLangOpts() {
1407 LangOptions LangOpts;
1408 LangOpts.CPlusPlus = 1;
1409 LangOpts.CPlusPlus11 = 1;
1410 LangOpts.Bool = 1;
1411 LangOpts.ObjC1 = 1;
1412 LangOpts.ObjC2 = 1;
1413 return LangOpts;
1414}
1415
Daniel Jaspercd162382013-01-07 13:26:07 +00001416} // namespace format
1417} // namespace clang