blob: 60dc1a7169d12d9f2bdc0f3a3298fdf2098be49a [file] [log] [blame]
Daniel Jasper0df50932014-12-10 19:00:42 +00001//===--- UnwrappedLineFormatter.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#include "UnwrappedLineFormatter.h"
11#include "WhitespaceManager.h"
12#include "llvm/Support/Debug.h"
Mehdi Amini9670f842016-07-18 19:02:11 +000013#include <queue>
Daniel Jasper0df50932014-12-10 19:00:42 +000014
15#define DEBUG_TYPE "format-formatter"
16
17namespace clang {
18namespace format {
19
20namespace {
21
22bool startsExternCBlock(const AnnotatedLine &Line) {
23 const FormatToken *Next = Line.First->getNextNonComment();
24 const FormatToken *NextNext = Next ? Next->getNextNonComment() : nullptr;
Daniel Jaspere285b8d2015-06-17 09:43:56 +000025 return Line.startsWith(tok::kw_extern) && Next && Next->isStringLiteral() &&
Daniel Jasper0df50932014-12-10 19:00:42 +000026 NextNext && NextNext->is(tok::l_brace);
27}
28
Manuel Klimek3d3ea842015-05-12 09:23:57 +000029/// \brief Tracks the indent level of \c AnnotatedLines across levels.
30///
31/// \c nextLine must be called for each \c AnnotatedLine, after which \c
32/// getIndent() will return the indent for the last line \c nextLine was called
33/// with.
34/// If the line is not formatted (and thus the indent does not change), calling
35/// \c adjustToUnmodifiedLine after the call to \c nextLine will cause
36/// subsequent lines on the same level to be indented at the same level as the
37/// given line.
38class LevelIndentTracker {
39public:
40 LevelIndentTracker(const FormatStyle &Style,
41 const AdditionalKeywords &Keywords, unsigned StartLevel,
42 int AdditionalIndent)
Daniel Jasper5fc133e2015-05-12 10:16:02 +000043 : Style(Style), Keywords(Keywords), AdditionalIndent(AdditionalIndent) {
Manuel Klimek3d3ea842015-05-12 09:23:57 +000044 for (unsigned i = 0; i != StartLevel; ++i)
45 IndentForLevel.push_back(Style.IndentWidth * i + AdditionalIndent);
46 }
47
48 /// \brief Returns the indent for the current line.
49 unsigned getIndent() const { return Indent; }
50
51 /// \brief Update the indent state given that \p Line is going to be formatted
52 /// next.
53 void nextLine(const AnnotatedLine &Line) {
54 Offset = getIndentOffset(*Line.First);
Manuel Klimekf0c95b32015-06-11 10:14:13 +000055 // Update the indent level cache size so that we can rely on it
56 // having the right size in adjustToUnmodifiedline.
57 while (IndentForLevel.size() <= Line.Level)
58 IndentForLevel.push_back(-1);
Manuel Klimek3d3ea842015-05-12 09:23:57 +000059 if (Line.InPPDirective) {
Daniel Jasper5fc133e2015-05-12 10:16:02 +000060 Indent = Line.Level * Style.IndentWidth + AdditionalIndent;
Manuel Klimek3d3ea842015-05-12 09:23:57 +000061 } else {
Manuel Klimek3d3ea842015-05-12 09:23:57 +000062 IndentForLevel.resize(Line.Level + 1);
63 Indent = getIndent(IndentForLevel, Line.Level);
64 }
65 if (static_cast<int>(Indent) + Offset >= 0)
66 Indent += Offset;
67 }
68
Francois Ferrande56a8292017-06-14 12:29:47 +000069 /// \brief Update the indent state given that \p Line indent should be
70 /// skipped.
71 void skipLine(const AnnotatedLine &Line) {
72 while (IndentForLevel.size() <= Line.Level)
73 IndentForLevel.push_back(Indent);
74 }
75
Manuel Klimek3d3ea842015-05-12 09:23:57 +000076 /// \brief Update the level indent to adapt to the given \p Line.
77 ///
78 /// When a line is not formatted, we move the subsequent lines on the same
79 /// level to the same indent.
80 /// Note that \c nextLine must have been called before this method.
81 void adjustToUnmodifiedLine(const AnnotatedLine &Line) {
82 unsigned LevelIndent = Line.First->OriginalColumn;
83 if (static_cast<int>(LevelIndent) - Offset >= 0)
84 LevelIndent -= Offset;
Daniel Jaspere285b8d2015-06-17 09:43:56 +000085 if ((!Line.First->is(tok::comment) || IndentForLevel[Line.Level] == -1) &&
Manuel Klimek3d3ea842015-05-12 09:23:57 +000086 !Line.InPPDirective)
87 IndentForLevel[Line.Level] = LevelIndent;
88 }
89
90private:
91 /// \brief Get the offset of the line relatively to the level.
92 ///
93 /// For example, 'public:' labels in classes are offset by 1 or 2
94 /// characters to the left from their level.
95 int getIndentOffset(const FormatToken &RootToken) {
96 if (Style.Language == FormatStyle::LK_Java ||
97 Style.Language == FormatStyle::LK_JavaScript)
98 return 0;
99 if (RootToken.isAccessSpecifier(false) ||
100 RootToken.isObjCAccessSpecifier() ||
Daniel Jaspera00de632015-12-01 12:05:04 +0000101 (RootToken.isOneOf(Keywords.kw_signals, Keywords.kw_qsignals) &&
102 RootToken.Next && RootToken.Next->is(tok::colon)))
Manuel Klimek3d3ea842015-05-12 09:23:57 +0000103 return Style.AccessModifierOffset;
104 return 0;
105 }
106
107 /// \brief Get the indent of \p Level from \p IndentForLevel.
108 ///
109 /// \p IndentForLevel must contain the indent for the level \c l
110 /// at \p IndentForLevel[l], or a value < 0 if the indent for
111 /// that level is unknown.
112 unsigned getIndent(ArrayRef<int> IndentForLevel, unsigned Level) {
113 if (IndentForLevel[Level] != -1)
114 return IndentForLevel[Level];
115 if (Level == 0)
116 return 0;
117 return getIndent(IndentForLevel, Level - 1) + Style.IndentWidth;
118 }
119
120 const FormatStyle &Style;
121 const AdditionalKeywords &Keywords;
Daniel Jasper56807c12015-05-12 11:14:06 +0000122 const unsigned AdditionalIndent;
Daniel Jasper5fc133e2015-05-12 10:16:02 +0000123
Manuel Klimek3d3ea842015-05-12 09:23:57 +0000124 /// \brief The indent in characters for each level.
125 std::vector<int> IndentForLevel;
126
127 /// \brief Offset of the current line relative to the indent level.
128 ///
129 /// For example, the 'public' keywords is often indented with a negative
130 /// offset.
131 int Offset = 0;
132
133 /// \brief The current line's indent.
134 unsigned Indent = 0;
135};
136
Francois Ferrande56a8292017-06-14 12:29:47 +0000137bool isNamespaceDeclaration(const AnnotatedLine *Line) {
138 const FormatToken *NamespaceTok = Line->First;
Francois Ferrandad722562017-06-30 20:25:55 +0000139 return NamespaceTok && NamespaceTok->getNamespaceToken();
Francois Ferrande56a8292017-06-14 12:29:47 +0000140}
141
142bool isEndOfNamespace(const AnnotatedLine *Line,
143 const SmallVectorImpl<AnnotatedLine *> &AnnotatedLines) {
144 if (!Line->startsWith(tok::r_brace))
145 return false;
146 size_t StartLineIndex = Line->MatchingOpeningBlockLineIndex;
147 if (StartLineIndex == UnwrappedLine::kInvalidIndex)
148 return false;
149 assert(StartLineIndex < AnnotatedLines.size());
150 return isNamespaceDeclaration(AnnotatedLines[StartLineIndex]);
151}
152
Daniel Jasper0df50932014-12-10 19:00:42 +0000153class LineJoiner {
154public:
Manuel Klimek3d3ea842015-05-12 09:23:57 +0000155 LineJoiner(const FormatStyle &Style, const AdditionalKeywords &Keywords,
156 const SmallVectorImpl<AnnotatedLine *> &Lines)
Francois Ferrande56a8292017-06-14 12:29:47 +0000157 : Style(Style), Keywords(Keywords), End(Lines.end()), Next(Lines.begin()),
158 AnnotatedLines(Lines) {}
Daniel Jasper0df50932014-12-10 19:00:42 +0000159
Manuel Klimek3d3ea842015-05-12 09:23:57 +0000160 /// \brief Returns the next line, merging multiple lines into one if possible.
161 const AnnotatedLine *getNextMergedLine(bool DryRun,
162 LevelIndentTracker &IndentTracker) {
163 if (Next == End)
164 return nullptr;
165 const AnnotatedLine *Current = *Next;
166 IndentTracker.nextLine(*Current);
Manuel Klimek89628f62017-09-20 09:51:03 +0000167 unsigned MergedLines = tryFitMultipleLinesInOne(IndentTracker, Next, End);
Manuel Klimek3d3ea842015-05-12 09:23:57 +0000168 if (MergedLines > 0 && Style.ColumnLimit == 0)
169 // Disallow line merging if there is a break at the start of one of the
170 // input lines.
171 for (unsigned i = 0; i < MergedLines; ++i)
172 if (Next[i + 1]->First->NewlinesBefore > 0)
173 MergedLines = 0;
174 if (!DryRun)
175 for (unsigned i = 0; i < MergedLines; ++i)
Cameron Desrochers1991e5d2016-11-15 15:07:07 +0000176 join(*Next[0], *Next[i + 1]);
Manuel Klimek3d3ea842015-05-12 09:23:57 +0000177 Next = Next + MergedLines + 1;
178 return Current;
179 }
180
181private:
Daniel Jasper0df50932014-12-10 19:00:42 +0000182 /// \brief Calculates how many lines can be merged into 1 starting at \p I.
183 unsigned
Francois Ferrande56a8292017-06-14 12:29:47 +0000184 tryFitMultipleLinesInOne(LevelIndentTracker &IndentTracker,
Daniel Jasper0df50932014-12-10 19:00:42 +0000185 SmallVectorImpl<AnnotatedLine *>::const_iterator I,
186 SmallVectorImpl<AnnotatedLine *>::const_iterator E) {
Francois Ferrande56a8292017-06-14 12:29:47 +0000187 const unsigned Indent = IndentTracker.getIndent();
188
Daniel Jasper9ecb0e92015-03-13 13:32:11 +0000189 // Can't join the last line with anything.
190 if (I + 1 == E)
191 return 0;
Daniel Jasper0df50932014-12-10 19:00:42 +0000192 // We can never merge stuff if there are trailing line comments.
193 const AnnotatedLine *TheLine = *I;
194 if (TheLine->Last->is(TT_LineComment))
195 return 0;
Daniel Jasper9ecb0e92015-03-13 13:32:11 +0000196 if (I[1]->Type == LT_Invalid || I[1]->First->MustBreakBefore)
197 return 0;
198 if (TheLine->InPPDirective &&
199 (!I[1]->InPPDirective || I[1]->First->HasUnescapedNewline))
200 return 0;
Daniel Jasper0df50932014-12-10 19:00:42 +0000201
202 if (Style.ColumnLimit > 0 && Indent > Style.ColumnLimit)
203 return 0;
204
205 unsigned Limit =
206 Style.ColumnLimit == 0 ? UINT_MAX : Style.ColumnLimit - Indent;
207 // If we already exceed the column limit, we set 'Limit' to 0. The different
208 // tryMerge..() functions can then decide whether to still do merging.
209 Limit = TheLine->Last->TotalLength > Limit
210 ? 0
211 : Limit - TheLine->Last->TotalLength;
212
Francois Ferrand2a81ca82017-06-13 07:02:43 +0000213 if (TheLine->Last->is(TT_FunctionLBrace) &&
214 TheLine->First == TheLine->Last &&
Francois Ferrandad722562017-06-30 20:25:55 +0000215 !Style.BraceWrapping.SplitEmptyFunction &&
Francois Ferrand2a81ca82017-06-13 07:02:43 +0000216 I[1]->First->is(tok::r_brace))
217 return tryMergeSimpleBlock(I, E, Limit);
218
Francois Ferrandad722562017-06-30 20:25:55 +0000219 // Handle empty record blocks where the brace has already been wrapped
220 if (TheLine->Last->is(tok::l_brace) && TheLine->First == TheLine->Last &&
221 I != AnnotatedLines.begin()) {
222 bool EmptyBlock = I[1]->First->is(tok::r_brace);
223
224 const FormatToken *Tok = I[-1]->First;
225 if (Tok && Tok->is(tok::comment))
226 Tok = Tok->getNextNonComment();
227
228 if (Tok && Tok->getNamespaceToken())
229 return !Style.BraceWrapping.SplitEmptyNamespace && EmptyBlock
Manuel Klimek89628f62017-09-20 09:51:03 +0000230 ? tryMergeSimpleBlock(I, E, Limit)
231 : 0;
Francois Ferrandad722562017-06-30 20:25:55 +0000232
233 if (Tok && Tok->is(tok::kw_typedef))
234 Tok = Tok->getNextNonComment();
235 if (Tok && Tok->isOneOf(tok::kw_class, tok::kw_struct, tok::kw_union,
Krasimir Georgievd6ce9372017-09-15 11:23:50 +0000236 tok::kw_extern, Keywords.kw_interface))
Francois Ferrandad722562017-06-30 20:25:55 +0000237 return !Style.BraceWrapping.SplitEmptyRecord && EmptyBlock
Krasimir Georgievd6ce9372017-09-15 11:23:50 +0000238 ? tryMergeSimpleBlock(I, E, Limit)
239 : 0;
Francois Ferrandad722562017-06-30 20:25:55 +0000240 }
241
Daniel Jasper0df50932014-12-10 19:00:42 +0000242 // FIXME: TheLine->Level != 0 might or might not be the right check to do.
243 // If necessary, change to something smarter.
244 bool MergeShortFunctions =
245 Style.AllowShortFunctionsOnASingleLine == FormatStyle::SFS_All ||
Daniel Jasper20580fd2015-06-11 13:31:45 +0000246 (Style.AllowShortFunctionsOnASingleLine >= FormatStyle::SFS_Empty &&
Daniel Jasper0df50932014-12-10 19:00:42 +0000247 I[1]->First->is(tok::r_brace)) ||
Francois Ferrandd3f0e3d2017-06-21 13:56:02 +0000248 (Style.AllowShortFunctionsOnASingleLine & FormatStyle::SFS_InlineOnly &&
Daniel Jasper0df50932014-12-10 19:00:42 +0000249 TheLine->Level != 0);
250
Francois Ferrande56a8292017-06-14 12:29:47 +0000251 if (Style.CompactNamespaces) {
252 if (isNamespaceDeclaration(TheLine)) {
253 int i = 0;
254 unsigned closingLine = TheLine->MatchingOpeningBlockLineIndex - 1;
255 for (; I + 1 + i != E && isNamespaceDeclaration(I[i + 1]) &&
256 closingLine == I[i + 1]->MatchingOpeningBlockLineIndex &&
257 I[i + 1]->Last->TotalLength < Limit;
258 i++, closingLine--) {
259 // No extra indent for compacted namespaces
260 IndentTracker.skipLine(*I[i + 1]);
261
262 Limit -= I[i + 1]->Last->TotalLength;
263 }
264 return i;
265 }
266
267 if (isEndOfNamespace(TheLine, AnnotatedLines)) {
268 int i = 0;
269 unsigned openingLine = TheLine->MatchingOpeningBlockLineIndex - 1;
270 for (; I + 1 + i != E && isEndOfNamespace(I[i + 1], AnnotatedLines) &&
271 openingLine == I[i + 1]->MatchingOpeningBlockLineIndex;
272 i++, openingLine--) {
273 // No space between consecutive braces
274 I[i + 1]->First->SpacesRequiredBefore = !I[i]->Last->is(tok::r_brace);
275
276 // Indent like the outer-most namespace
277 IndentTracker.nextLine(*I[i + 1]);
278 }
279 return i;
280 }
281 }
282
Krasimir Georgiev3b0b50b2017-09-11 10:12:16 +0000283 // Try to merge a function block with left brace unwrapped
Daniel Jasper0df50932014-12-10 19:00:42 +0000284 if (TheLine->Last->is(TT_FunctionLBrace) &&
285 TheLine->First != TheLine->Last) {
286 return MergeShortFunctions ? tryMergeSimpleBlock(I, E, Limit) : 0;
287 }
Krasimir Georgiev3b0b50b2017-09-11 10:12:16 +0000288 // Try to merge a control statement block with left brace unwrapped
289 if (TheLine->Last->is(tok::l_brace) && TheLine->First != TheLine->Last &&
290 TheLine->First->isOneOf(tok::kw_if, tok::kw_while, tok::kw_for)) {
291 return Style.AllowShortBlocksOnASingleLine
Daniel Jasper0df50932014-12-10 19:00:42 +0000292 ? tryMergeSimpleBlock(I, E, Limit)
293 : 0;
294 }
Krasimir Georgiev3b0b50b2017-09-11 10:12:16 +0000295 // Try to merge a control statement block with left brace wrapped
296 if (I[1]->First->is(tok::l_brace) &&
297 TheLine->First->isOneOf(tok::kw_if, tok::kw_while, tok::kw_for)) {
298 return Style.BraceWrapping.AfterControlStatement
299 ? tryMergeSimpleBlock(I, E, Limit)
300 : 0;
301 }
302 // Try to merge either empty or one-line block if is precedeed by control
303 // statement token
304 if (TheLine->First->is(tok::l_brace) && TheLine->First == TheLine->Last &&
305 I != AnnotatedLines.begin() &&
306 I[-1]->First->isOneOf(tok::kw_if, tok::kw_while, tok::kw_for)) {
307 return Style.AllowShortBlocksOnASingleLine
308 ? tryMergeSimpleBlock(I - 1, E, Limit)
309 : 0;
310 }
311 // Try to merge a block with left brace wrapped that wasn't yet covered
312 if (TheLine->Last->is(tok::l_brace)) {
313 return !Style.BraceWrapping.AfterFunction ||
Manuel Klimek89628f62017-09-20 09:51:03 +0000314 (I[1]->First->is(tok::r_brace) &&
315 !Style.BraceWrapping.SplitEmptyRecord)
Krasimir Georgiev3b0b50b2017-09-11 10:12:16 +0000316 ? tryMergeSimpleBlock(I, E, Limit)
317 : 0;
318 }
319 // Try to merge a function block with left brace wrapped
Daniel Jasper0df50932014-12-10 19:00:42 +0000320 if (I[1]->First->is(TT_FunctionLBrace) &&
Daniel Jasperc1bc38e2015-09-29 14:57:55 +0000321 Style.BraceWrapping.AfterFunction) {
Daniel Jasper0df50932014-12-10 19:00:42 +0000322 if (I[1]->Last->is(TT_LineComment))
323 return 0;
324
325 // Check for Limit <= 2 to account for the " {".
326 if (Limit <= 2 || (Style.ColumnLimit == 0 && containsMustBreak(TheLine)))
327 return 0;
328 Limit -= 2;
329
330 unsigned MergedLines = 0;
Francois Ferrand2a81ca82017-06-13 07:02:43 +0000331 if (MergeShortFunctions ||
332 (Style.AllowShortFunctionsOnASingleLine >= FormatStyle::SFS_Empty &&
333 I[1]->First == I[1]->Last && I + 2 != E &&
334 I[2]->First->is(tok::r_brace))) {
Daniel Jasper0df50932014-12-10 19:00:42 +0000335 MergedLines = tryMergeSimpleBlock(I + 1, E, Limit);
336 // If we managed to merge the block, count the function header, which is
337 // on a separate line.
338 if (MergedLines > 0)
339 ++MergedLines;
340 }
341 return MergedLines;
342 }
343 if (TheLine->First->is(tok::kw_if)) {
344 return Style.AllowShortIfStatementsOnASingleLine
345 ? tryMergeSimpleControlStatement(I, E, Limit)
346 : 0;
347 }
348 if (TheLine->First->isOneOf(tok::kw_for, tok::kw_while)) {
349 return Style.AllowShortLoopsOnASingleLine
350 ? tryMergeSimpleControlStatement(I, E, Limit)
351 : 0;
352 }
353 if (TheLine->First->isOneOf(tok::kw_case, tok::kw_default)) {
354 return Style.AllowShortCaseLabelsOnASingleLine
355 ? tryMergeShortCaseLabels(I, E, Limit)
356 : 0;
357 }
358 if (TheLine->InPPDirective &&
359 (TheLine->First->HasUnescapedNewline || TheLine->First->IsFirst)) {
360 return tryMergeSimplePPDirective(I, E, Limit);
361 }
362 return 0;
363 }
364
Daniel Jasper0df50932014-12-10 19:00:42 +0000365 unsigned
366 tryMergeSimplePPDirective(SmallVectorImpl<AnnotatedLine *>::const_iterator I,
367 SmallVectorImpl<AnnotatedLine *>::const_iterator E,
368 unsigned Limit) {
369 if (Limit == 0)
370 return 0;
Daniel Jasper0df50932014-12-10 19:00:42 +0000371 if (I + 2 != E && I[2]->InPPDirective && !I[2]->First->HasUnescapedNewline)
372 return 0;
373 if (1 + I[1]->Last->TotalLength > Limit)
374 return 0;
375 return 1;
376 }
377
378 unsigned tryMergeSimpleControlStatement(
379 SmallVectorImpl<AnnotatedLine *>::const_iterator I,
380 SmallVectorImpl<AnnotatedLine *>::const_iterator E, unsigned Limit) {
381 if (Limit == 0)
382 return 0;
Daniel Jasperc1bc38e2015-09-29 14:57:55 +0000383 if (Style.BraceWrapping.AfterControlStatement &&
Daniel Jasper0df50932014-12-10 19:00:42 +0000384 (I[1]->First->is(tok::l_brace) && !Style.AllowShortBlocksOnASingleLine))
385 return 0;
386 if (I[1]->InPPDirective != (*I)->InPPDirective ||
387 (I[1]->InPPDirective && I[1]->First->HasUnescapedNewline))
388 return 0;
389 Limit = limitConsideringMacros(I + 1, E, Limit);
390 AnnotatedLine &Line = **I;
391 if (Line.Last->isNot(tok::r_paren))
392 return 0;
393 if (1 + I[1]->Last->TotalLength > Limit)
394 return 0;
Manuel Klimekd3585db2015-05-11 08:21:35 +0000395 if (I[1]->First->isOneOf(tok::semi, tok::kw_if, tok::kw_for, tok::kw_while,
396 TT_LineComment))
Daniel Jasper0df50932014-12-10 19:00:42 +0000397 return 0;
398 // Only inline simple if's (no nested if or else).
Daniel Jaspere285b8d2015-06-17 09:43:56 +0000399 if (I + 2 != E && Line.startsWith(tok::kw_if) &&
Daniel Jasper0df50932014-12-10 19:00:42 +0000400 I[2]->First->is(tok::kw_else))
401 return 0;
402 return 1;
403 }
404
Manuel Klimekd3585db2015-05-11 08:21:35 +0000405 unsigned
406 tryMergeShortCaseLabels(SmallVectorImpl<AnnotatedLine *>::const_iterator I,
407 SmallVectorImpl<AnnotatedLine *>::const_iterator E,
408 unsigned Limit) {
Daniel Jasper0df50932014-12-10 19:00:42 +0000409 if (Limit == 0 || I + 1 == E ||
410 I[1]->First->isOneOf(tok::kw_case, tok::kw_default))
411 return 0;
412 unsigned NumStmts = 0;
413 unsigned Length = 0;
Francois Ferranda64ba702017-07-28 07:56:18 +0000414 bool EndsWithComment = false;
Daniel Jasper0df50932014-12-10 19:00:42 +0000415 bool InPPDirective = I[0]->InPPDirective;
Francois Ferranda64ba702017-07-28 07:56:18 +0000416 const unsigned Level = I[0]->Level;
Daniel Jasper0df50932014-12-10 19:00:42 +0000417 for (; NumStmts < 3; ++NumStmts) {
418 if (I + 1 + NumStmts == E)
419 break;
420 const AnnotatedLine *Line = I[1 + NumStmts];
421 if (Line->InPPDirective != InPPDirective)
422 break;
423 if (Line->First->isOneOf(tok::kw_case, tok::kw_default, tok::r_brace))
424 break;
425 if (Line->First->isOneOf(tok::kw_if, tok::kw_for, tok::kw_switch,
Francois Ferranda64ba702017-07-28 07:56:18 +0000426 tok::kw_while) ||
427 EndsWithComment)
Daniel Jasper0df50932014-12-10 19:00:42 +0000428 return 0;
Francois Ferranda64ba702017-07-28 07:56:18 +0000429 if (Line->First->is(tok::comment)) {
430 if (Level != Line->Level)
431 return 0;
432 SmallVectorImpl<AnnotatedLine *>::const_iterator J = I + 2 + NumStmts;
433 for (; J != E; ++J) {
434 Line = *J;
435 if (Line->InPPDirective != InPPDirective)
436 break;
437 if (Line->First->isOneOf(tok::kw_case, tok::kw_default, tok::r_brace))
438 break;
439 if (Line->First->isNot(tok::comment) || Level != Line->Level)
440 return 0;
441 }
442 break;
443 }
444 if (Line->Last->is(tok::comment))
445 EndsWithComment = true;
Daniel Jasper0df50932014-12-10 19:00:42 +0000446 Length += I[1 + NumStmts]->Last->TotalLength + 1; // 1 for the space.
447 }
448 if (NumStmts == 0 || NumStmts == 3 || Length > Limit)
449 return 0;
450 return NumStmts;
451 }
452
453 unsigned
454 tryMergeSimpleBlock(SmallVectorImpl<AnnotatedLine *>::const_iterator I,
455 SmallVectorImpl<AnnotatedLine *>::const_iterator E,
456 unsigned Limit) {
457 AnnotatedLine &Line = **I;
458
459 // Don't merge ObjC @ keywords and methods.
Nico Weber33381f52015-02-07 01:57:32 +0000460 // FIXME: If an option to allow short exception handling clauses on a single
461 // line is added, change this to not return for @try and friends.
Daniel Jasper0df50932014-12-10 19:00:42 +0000462 if (Style.Language != FormatStyle::LK_Java &&
463 Line.First->isOneOf(tok::at, tok::minus, tok::plus))
464 return 0;
465
466 // Check that the current line allows merging. This depends on whether we
467 // are in a control flow statements as well as several style flags.
Daniel Jaspere9f53572015-04-30 09:24:17 +0000468 if (Line.First->isOneOf(tok::kw_else, tok::kw_case) ||
Krasimir Georgiev6a1c9d52017-10-02 15:53:37 +0000469 (Line.First->Next && Line.First->Next->is(tok::kw_else)))
Daniel Jasper0df50932014-12-10 19:00:42 +0000470 return 0;
471 if (Line.First->isOneOf(tok::kw_if, tok::kw_while, tok::kw_do, tok::kw_try,
Nico Weberfac23712015-02-04 15:26:27 +0000472 tok::kw___try, tok::kw_catch, tok::kw___finally,
Daniel Jaspere285b8d2015-06-17 09:43:56 +0000473 tok::kw_for, tok::r_brace, Keywords.kw___except)) {
Daniel Jasper0df50932014-12-10 19:00:42 +0000474 if (!Style.AllowShortBlocksOnASingleLine)
475 return 0;
Krasimir Georgiev3b0b50b2017-09-11 10:12:16 +0000476 // Don't merge when we can't except the case when
477 // the control statement block is empty
Daniel Jasper0df50932014-12-10 19:00:42 +0000478 if (!Style.AllowShortIfStatementsOnASingleLine &&
Krasimir Georgiev3b0b50b2017-09-11 10:12:16 +0000479 Line.startsWith(tok::kw_if) &&
480 !Style.BraceWrapping.AfterControlStatement &&
481 !I[1]->First->is(tok::r_brace))
482 return 0;
483 if (!Style.AllowShortIfStatementsOnASingleLine &&
484 Line.startsWith(tok::kw_if) &&
485 Style.BraceWrapping.AfterControlStatement && I + 2 != E &&
486 !I[2]->First->is(tok::r_brace))
Daniel Jasper0df50932014-12-10 19:00:42 +0000487 return 0;
488 if (!Style.AllowShortLoopsOnASingleLine &&
Krasimir Georgiev3b0b50b2017-09-11 10:12:16 +0000489 Line.First->isOneOf(tok::kw_while, tok::kw_do, tok::kw_for) &&
490 !Style.BraceWrapping.AfterControlStatement &&
491 !I[1]->First->is(tok::r_brace))
492 return 0;
493 if (!Style.AllowShortLoopsOnASingleLine &&
494 Line.First->isOneOf(tok::kw_while, tok::kw_do, tok::kw_for) &&
495 Style.BraceWrapping.AfterControlStatement && I + 2 != E &&
496 !I[2]->First->is(tok::r_brace))
Daniel Jasper0df50932014-12-10 19:00:42 +0000497 return 0;
498 // FIXME: Consider an option to allow short exception handling clauses on
499 // a single line.
Nico Weberfac23712015-02-04 15:26:27 +0000500 // FIXME: This isn't covered by tests.
501 // FIXME: For catch, __except, __finally the first token on the line
502 // is '}', so this isn't correct here.
503 if (Line.First->isOneOf(tok::kw_try, tok::kw___try, tok::kw_catch,
504 Keywords.kw___except, tok::kw___finally))
Daniel Jasper0df50932014-12-10 19:00:42 +0000505 return 0;
506 }
507
Krasimir Georgiev3b0b50b2017-09-11 10:12:16 +0000508 if (Line.Last->is(tok::l_brace)) {
509 FormatToken *Tok = I[1]->First;
510 if (Tok->is(tok::r_brace) && !Tok->MustBreakBefore &&
511 (Tok->getNextNonComment() == nullptr ||
512 Tok->getNextNonComment()->is(tok::semi))) {
513 // We merge empty blocks even if the line exceeds the column limit.
514 Tok->SpacesRequiredBefore = 0;
515 Tok->CanBreakBefore = true;
516 return 1;
517 } else if (Limit != 0 && !Line.startsWith(tok::kw_namespace) &&
518 !startsExternCBlock(Line)) {
519 // We don't merge short records.
Martin Probstc160cfa2017-11-25 09:35:33 +0000520 FormatToken *RecordTok = Line.First;
521 // Skip record modifiers.
522 while (RecordTok->Next &&
523 RecordTok->isOneOf(tok::kw_typedef, tok::kw_export,
524 Keywords.kw_declare, Keywords.kw_abstract,
525 tok::kw_default))
526 RecordTok = RecordTok->Next;
Krasimir Georgiev3b0b50b2017-09-11 10:12:16 +0000527 if (RecordTok &&
528 RecordTok->isOneOf(tok::kw_class, tok::kw_union, tok::kw_struct,
529 Keywords.kw_interface))
530 return 0;
Daniel Jasper0df50932014-12-10 19:00:42 +0000531
Krasimir Georgiev3b0b50b2017-09-11 10:12:16 +0000532 // Check that we still have three lines and they fit into the limit.
533 if (I + 2 == E || I[2]->Type == LT_Invalid)
534 return 0;
535 Limit = limitConsideringMacros(I + 2, E, Limit);
Daniel Jasper0df50932014-12-10 19:00:42 +0000536
Krasimir Georgiev3b0b50b2017-09-11 10:12:16 +0000537 if (!nextTwoLinesFitInto(I, Limit))
538 return 0;
Daniel Jasper0df50932014-12-10 19:00:42 +0000539
Krasimir Georgiev3b0b50b2017-09-11 10:12:16 +0000540 // Second, check that the next line does not contain any braces - if it
541 // does, readability declines when putting it into a single line.
542 if (I[1]->Last->is(TT_LineComment))
543 return 0;
544 do {
545 if (Tok->is(tok::l_brace) && Tok->BlockKind != BK_BracedInit)
546 return 0;
547 Tok = Tok->Next;
548 } while (Tok);
549
550 // Last, check that the third line starts with a closing brace.
551 Tok = I[2]->First;
552 if (Tok->isNot(tok::r_brace))
553 return 0;
554
555 // Don't merge "if (a) { .. } else {".
556 if (Tok->Next && Tok->Next->is(tok::kw_else))
557 return 0;
558
559 return 2;
560 }
561 } else if (I[1]->First->is(tok::l_brace)) {
Daniel Jasper0df50932014-12-10 19:00:42 +0000562 if (I[1]->Last->is(TT_LineComment))
563 return 0;
Daniel Jasper0df50932014-12-10 19:00:42 +0000564
Krasimir Georgiev3b0b50b2017-09-11 10:12:16 +0000565 // Check for Limit <= 2 to account for the " {".
566 if (Limit <= 2 || (Style.ColumnLimit == 0 && containsMustBreak(*I)))
Daniel Jasper0df50932014-12-10 19:00:42 +0000567 return 0;
Krasimir Georgiev3b0b50b2017-09-11 10:12:16 +0000568 Limit -= 2;
569 unsigned MergedLines = 0;
570 if (Style.AllowShortBlocksOnASingleLine ||
571 (I[1]->First == I[1]->Last && I + 2 != E &&
572 I[2]->First->is(tok::r_brace))) {
573 MergedLines = tryMergeSimpleBlock(I + 1, E, Limit);
574 // If we managed to merge the block, count the statement header, which
575 // is on a separate line.
576 if (MergedLines > 0)
577 ++MergedLines;
578 }
579 return MergedLines;
Daniel Jasper0df50932014-12-10 19:00:42 +0000580 }
581 return 0;
582 }
583
584 /// Returns the modified column limit for \p I if it is inside a macro and
585 /// needs a trailing '\'.
586 unsigned
587 limitConsideringMacros(SmallVectorImpl<AnnotatedLine *>::const_iterator I,
588 SmallVectorImpl<AnnotatedLine *>::const_iterator E,
589 unsigned Limit) {
590 if (I[0]->InPPDirective && I + 1 != E &&
591 !I[1]->First->HasUnescapedNewline && !I[1]->First->is(tok::eof)) {
592 return Limit < 2 ? 0 : Limit - 2;
593 }
594 return Limit;
595 }
596
597 bool nextTwoLinesFitInto(SmallVectorImpl<AnnotatedLine *>::const_iterator I,
598 unsigned Limit) {
599 if (I[1]->First->MustBreakBefore || I[2]->First->MustBreakBefore)
600 return false;
601 return 1 + I[1]->Last->TotalLength + 1 + I[2]->Last->TotalLength <= Limit;
602 }
603
604 bool containsMustBreak(const AnnotatedLine *Line) {
605 for (const FormatToken *Tok = Line->First; Tok; Tok = Tok->Next) {
606 if (Tok->MustBreakBefore)
607 return true;
608 }
609 return false;
610 }
611
Manuel Klimek3d3ea842015-05-12 09:23:57 +0000612 void join(AnnotatedLine &A, const AnnotatedLine &B) {
613 assert(!A.Last->Next);
614 assert(!B.First->Previous);
615 if (B.Affected)
616 A.Affected = true;
617 A.Last->Next = B.First;
618 B.First->Previous = A.Last;
619 B.First->CanBreakBefore = true;
620 unsigned LengthA = A.Last->TotalLength + B.First->SpacesRequiredBefore;
621 for (FormatToken *Tok = B.First; Tok; Tok = Tok->Next) {
622 Tok->TotalLength += LengthA;
623 A.Last = Tok;
624 }
625 }
626
Daniel Jasper0df50932014-12-10 19:00:42 +0000627 const FormatStyle &Style;
Nico Weberfac23712015-02-04 15:26:27 +0000628 const AdditionalKeywords &Keywords;
Daniel Jaspere6fcf7d2015-06-17 13:08:06 +0000629 const SmallVectorImpl<AnnotatedLine *>::const_iterator End;
Manuel Klimek3d3ea842015-05-12 09:23:57 +0000630
Daniel Jaspere6fcf7d2015-06-17 13:08:06 +0000631 SmallVectorImpl<AnnotatedLine *>::const_iterator Next;
Francois Ferrande56a8292017-06-14 12:29:47 +0000632 const SmallVectorImpl<AnnotatedLine *> &AnnotatedLines;
Daniel Jasper0df50932014-12-10 19:00:42 +0000633};
634
Daniel Jasperd1c13732015-01-23 19:37:25 +0000635static void markFinalized(FormatToken *Tok) {
636 for (; Tok; Tok = Tok->Next) {
637 Tok->Finalized = true;
638 for (AnnotatedLine *Child : Tok->Children)
639 markFinalized(Child->First);
640 }
641}
642
Manuel Klimekd3585db2015-05-11 08:21:35 +0000643#ifndef NDEBUG
644static void printLineState(const LineState &State) {
645 llvm::dbgs() << "State: ";
646 for (const ParenState &P : State.Stack) {
647 llvm::dbgs() << P.Indent << "|" << P.LastSpace << "|" << P.NestedBlockIndent
648 << " ";
649 }
650 llvm::dbgs() << State.NextToken->TokenText << "\n";
651}
652#endif
653
654/// \brief Base class for classes that format one \c AnnotatedLine.
655class LineFormatter {
656public:
657 LineFormatter(ContinuationIndenter *Indenter, WhitespaceManager *Whitespaces,
658 const FormatStyle &Style,
659 UnwrappedLineFormatter *BlockFormatter)
660 : Indenter(Indenter), Whitespaces(Whitespaces), Style(Style),
661 BlockFormatter(BlockFormatter) {}
Angel Garcia Gomez637d1e62015-10-20 13:23:58 +0000662 virtual ~LineFormatter() {}
Manuel Klimekd3585db2015-05-11 08:21:35 +0000663
664 /// \brief Formats an \c AnnotatedLine and returns the penalty.
665 ///
666 /// If \p DryRun is \c false, directly applies the changes.
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +0000667 virtual unsigned formatLine(const AnnotatedLine &Line,
668 unsigned FirstIndent,
669 unsigned FirstStartColumn,
Manuel Klimekd3585db2015-05-11 08:21:35 +0000670 bool DryRun) = 0;
671
672protected:
673 /// \brief If the \p State's next token is an r_brace closing a nested block,
674 /// format the nested block before it.
675 ///
676 /// Returns \c true if all children could be placed successfully and adapts
677 /// \p Penalty as well as \p State. If \p DryRun is false, also directly
678 /// creates changes using \c Whitespaces.
679 ///
680 /// The crucial idea here is that children always get formatted upon
681 /// encountering the closing brace right after the nested block. Now, if we
682 /// are currently trying to keep the "}" on the same line (i.e. \p NewLine is
683 /// \c false), the entire block has to be kept on the same line (which is only
684 /// possible if it fits on the line, only contains a single statement, etc.
685 ///
686 /// If \p NewLine is true, we format the nested block on separate lines, i.e.
687 /// break after the "{", format all lines with correct indentation and the put
688 /// the closing "}" on yet another new line.
689 ///
690 /// This enables us to keep the simple structure of the
691 /// \c UnwrappedLineFormatter, where we only have two options for each token:
692 /// break or don't break.
693 bool formatChildren(LineState &State, bool NewLine, bool DryRun,
694 unsigned &Penalty) {
695 const FormatToken *LBrace = State.NextToken->getPreviousNonComment();
696 FormatToken &Previous = *State.NextToken->Previous;
697 if (!LBrace || LBrace->isNot(tok::l_brace) ||
698 LBrace->BlockKind != BK_Block || Previous.Children.size() == 0)
699 // The previous token does not open a block. Nothing to do. We don't
700 // assert so that we can simply call this function for all tokens.
701 return true;
702
703 if (NewLine) {
704 int AdditionalIndent = State.Stack.back().Indent -
705 Previous.Children[0]->Level * Style.IndentWidth;
706
707 Penalty +=
708 BlockFormatter->format(Previous.Children, DryRun, AdditionalIndent,
709 /*FixBadIndentation=*/true);
710 return true;
711 }
712
713 if (Previous.Children[0]->First->MustBreakBefore)
714 return false;
715
Manuel Klimekd3585db2015-05-11 08:21:35 +0000716 // Cannot merge into one line if this line ends on a comment.
717 if (Previous.is(tok::comment))
718 return false;
719
Daniel Jasper7d42f3f2017-01-31 11:25:01 +0000720 // Cannot merge multiple statements into a single line.
721 if (Previous.Children.size() > 1)
722 return false;
723
724 const AnnotatedLine *Child = Previous.Children[0];
Manuel Klimekd3585db2015-05-11 08:21:35 +0000725 // We can't put the closing "}" on a line with a trailing comment.
Daniel Jasper7d42f3f2017-01-31 11:25:01 +0000726 if (Child->Last->isTrailingComment())
Manuel Klimekd3585db2015-05-11 08:21:35 +0000727 return false;
728
729 // If the child line exceeds the column limit, we wouldn't want to merge it.
730 // We add +2 for the trailing " }".
731 if (Style.ColumnLimit > 0 &&
Daniel Jasper7d42f3f2017-01-31 11:25:01 +0000732 Child->Last->TotalLength + State.Column + 2 > Style.ColumnLimit)
Manuel Klimekd3585db2015-05-11 08:21:35 +0000733 return false;
734
735 if (!DryRun) {
736 Whitespaces->replaceWhitespace(
Daniel Jasper7d42f3f2017-01-31 11:25:01 +0000737 *Child->First, /*Newlines=*/0, /*Spaces=*/1,
Manuel Klimekd3585db2015-05-11 08:21:35 +0000738 /*StartOfTokenColumn=*/State.Column, State.Line->InPPDirective);
739 }
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +0000740 Penalty +=
741 formatLine(*Child, State.Column + 1, /*FirstStartColumn=*/0, DryRun);
Manuel Klimekd3585db2015-05-11 08:21:35 +0000742
Daniel Jasper7d42f3f2017-01-31 11:25:01 +0000743 State.Column += 1 + Child->Last->TotalLength;
Manuel Klimekd3585db2015-05-11 08:21:35 +0000744 return true;
745 }
746
747 ContinuationIndenter *Indenter;
748
749private:
750 WhitespaceManager *Whitespaces;
751 const FormatStyle &Style;
752 UnwrappedLineFormatter *BlockFormatter;
753};
754
755/// \brief Formatter that keeps the existing line breaks.
756class NoColumnLimitLineFormatter : public LineFormatter {
757public:
758 NoColumnLimitLineFormatter(ContinuationIndenter *Indenter,
759 WhitespaceManager *Whitespaces,
760 const FormatStyle &Style,
761 UnwrappedLineFormatter *BlockFormatter)
762 : LineFormatter(Indenter, Whitespaces, Style, BlockFormatter) {}
763
764 /// \brief Formats the line, simply keeping all of the input's line breaking
765 /// decisions.
766 unsigned formatLine(const AnnotatedLine &Line, unsigned FirstIndent,
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +0000767 unsigned FirstStartColumn, bool DryRun) override {
Manuel Klimekd3585db2015-05-11 08:21:35 +0000768 assert(!DryRun);
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +0000769 LineState State = Indenter->getInitialState(FirstIndent, FirstStartColumn,
770 &Line, /*DryRun=*/false);
Manuel Klimekd3585db2015-05-11 08:21:35 +0000771 while (State.NextToken) {
772 bool Newline =
773 Indenter->mustBreak(State) ||
774 (Indenter->canBreak(State) && State.NextToken->NewlinesBefore > 0);
775 unsigned Penalty = 0;
776 formatChildren(State, Newline, /*DryRun=*/false, Penalty);
777 Indenter->addTokenToState(State, Newline, /*DryRun=*/false);
778 }
779 return 0;
780 }
781};
782
783/// \brief Formatter that puts all tokens into a single line without breaks.
784class NoLineBreakFormatter : public LineFormatter {
785public:
786 NoLineBreakFormatter(ContinuationIndenter *Indenter,
787 WhitespaceManager *Whitespaces, const FormatStyle &Style,
788 UnwrappedLineFormatter *BlockFormatter)
789 : LineFormatter(Indenter, Whitespaces, Style, BlockFormatter) {}
790
791 /// \brief Puts all tokens into a single line.
792 unsigned formatLine(const AnnotatedLine &Line, unsigned FirstIndent,
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +0000793 unsigned FirstStartColumn, bool DryRun) override {
Manuel Klimekd3585db2015-05-11 08:21:35 +0000794 unsigned Penalty = 0;
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +0000795 LineState State =
796 Indenter->getInitialState(FirstIndent, FirstStartColumn, &Line, DryRun);
Manuel Klimekd3585db2015-05-11 08:21:35 +0000797 while (State.NextToken) {
798 formatChildren(State, /*Newline=*/false, DryRun, Penalty);
Krasimir Georgiev994b6c92017-05-18 08:07:52 +0000799 Indenter->addTokenToState(
800 State, /*Newline=*/State.NextToken->MustBreakBefore, DryRun);
Manuel Klimekd3585db2015-05-11 08:21:35 +0000801 }
802 return Penalty;
803 }
804};
805
806/// \brief Finds the best way to break lines.
807class OptimizingLineFormatter : public LineFormatter {
808public:
809 OptimizingLineFormatter(ContinuationIndenter *Indenter,
810 WhitespaceManager *Whitespaces,
811 const FormatStyle &Style,
812 UnwrappedLineFormatter *BlockFormatter)
813 : LineFormatter(Indenter, Whitespaces, Style, BlockFormatter) {}
814
815 /// \brief Formats the line by finding the best line breaks with line lengths
816 /// below the column limit.
817 unsigned formatLine(const AnnotatedLine &Line, unsigned FirstIndent,
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +0000818 unsigned FirstStartColumn, bool DryRun) override {
819 LineState State =
820 Indenter->getInitialState(FirstIndent, FirstStartColumn, &Line, DryRun);
Manuel Klimekd3585db2015-05-11 08:21:35 +0000821
822 // If the ObjC method declaration does not fit on a line, we should format
823 // it with one arg per line.
824 if (State.Line->Type == LT_ObjCMethodDecl)
825 State.Stack.back().BreakBeforeParameter = true;
826
827 // Find best solution in solution space.
828 return analyzeSolutionSpace(State, DryRun);
829 }
830
831private:
832 struct CompareLineStatePointers {
833 bool operator()(LineState *obj1, LineState *obj2) const {
834 return *obj1 < *obj2;
835 }
836 };
837
838 /// \brief A pair of <penalty, count> that is used to prioritize the BFS on.
839 ///
840 /// In case of equal penalties, we want to prefer states that were inserted
841 /// first. During state generation we make sure that we insert states first
842 /// that break the line as late as possible.
843 typedef std::pair<unsigned, unsigned> OrderedPenalty;
844
845 /// \brief An edge in the solution space from \c Previous->State to \c State,
846 /// inserting a newline dependent on the \c NewLine.
847 struct StateNode {
848 StateNode(const LineState &State, bool NewLine, StateNode *Previous)
849 : State(State), NewLine(NewLine), Previous(Previous) {}
850 LineState State;
851 bool NewLine;
852 StateNode *Previous;
853 };
854
855 /// \brief An item in the prioritized BFS search queue. The \c StateNode's
856 /// \c State has the given \c OrderedPenalty.
857 typedef std::pair<OrderedPenalty, StateNode *> QueueItem;
858
859 /// \brief The BFS queue type.
860 typedef std::priority_queue<QueueItem, std::vector<QueueItem>,
Manuel Klimek89628f62017-09-20 09:51:03 +0000861 std::greater<QueueItem>>
862 QueueType;
Manuel Klimekd3585db2015-05-11 08:21:35 +0000863
864 /// \brief Analyze the entire solution space starting from \p InitialState.
865 ///
866 /// This implements a variant of Dijkstra's algorithm on the graph that spans
867 /// the solution space (\c LineStates are the nodes). The algorithm tries to
868 /// find the shortest path (the one with lowest penalty) from \p InitialState
869 /// to a state where all tokens are placed. Returns the penalty.
870 ///
871 /// If \p DryRun is \c false, directly applies the changes.
872 unsigned analyzeSolutionSpace(LineState &InitialState, bool DryRun) {
873 std::set<LineState *, CompareLineStatePointers> Seen;
874
875 // Increasing count of \c StateNode items we have created. This is used to
876 // create a deterministic order independent of the container.
877 unsigned Count = 0;
878 QueueType Queue;
879
880 // Insert start element into queue.
881 StateNode *Node =
882 new (Allocator.Allocate()) StateNode(InitialState, false, nullptr);
883 Queue.push(QueueItem(OrderedPenalty(0, Count), Node));
884 ++Count;
885
886 unsigned Penalty = 0;
887
888 // While not empty, take first element and follow edges.
889 while (!Queue.empty()) {
890 Penalty = Queue.top().first.first;
891 StateNode *Node = Queue.top().second;
892 if (!Node->State.NextToken) {
893 DEBUG(llvm::dbgs() << "\n---\nPenalty for line: " << Penalty << "\n");
894 break;
895 }
896 Queue.pop();
897
898 // Cut off the analysis of certain solutions if the analysis gets too
899 // complex. See description of IgnoreStackForComparison.
Daniel Jasper75bf2032015-10-27 22:55:55 +0000900 if (Count > 50000)
Manuel Klimekd3585db2015-05-11 08:21:35 +0000901 Node->State.IgnoreStackForComparison = true;
902
903 if (!Seen.insert(&Node->State).second)
904 // State already examined with lower penalty.
905 continue;
906
907 FormatDecision LastFormat = Node->State.NextToken->Decision;
908 if (LastFormat == FD_Unformatted || LastFormat == FD_Continue)
909 addNextStateToQueue(Penalty, Node, /*NewLine=*/false, &Count, &Queue);
910 if (LastFormat == FD_Unformatted || LastFormat == FD_Break)
911 addNextStateToQueue(Penalty, Node, /*NewLine=*/true, &Count, &Queue);
912 }
913
914 if (Queue.empty()) {
915 // We were unable to find a solution, do nothing.
916 // FIXME: Add diagnostic?
917 DEBUG(llvm::dbgs() << "Could not find a solution.\n");
918 return 0;
919 }
920
921 // Reconstruct the solution.
922 if (!DryRun)
923 reconstructPath(InitialState, Queue.top().second);
924
925 DEBUG(llvm::dbgs() << "Total number of analyzed states: " << Count << "\n");
926 DEBUG(llvm::dbgs() << "---\n");
927
928 return Penalty;
929 }
930
931 /// \brief Add the following state to the analysis queue \c Queue.
932 ///
933 /// Assume the current state is \p PreviousNode and has been reached with a
934 /// penalty of \p Penalty. Insert a line break if \p NewLine is \c true.
935 void addNextStateToQueue(unsigned Penalty, StateNode *PreviousNode,
936 bool NewLine, unsigned *Count, QueueType *Queue) {
937 if (NewLine && !Indenter->canBreak(PreviousNode->State))
938 return;
939 if (!NewLine && Indenter->mustBreak(PreviousNode->State))
940 return;
941
942 StateNode *Node = new (Allocator.Allocate())
943 StateNode(PreviousNode->State, NewLine, PreviousNode);
944 if (!formatChildren(Node->State, NewLine, /*DryRun=*/true, Penalty))
945 return;
946
947 Penalty += Indenter->addTokenToState(Node->State, NewLine, true);
948
949 Queue->push(QueueItem(OrderedPenalty(Penalty, *Count), Node));
950 ++(*Count);
951 }
952
953 /// \brief Applies the best formatting by reconstructing the path in the
954 /// solution space that leads to \c Best.
955 void reconstructPath(LineState &State, StateNode *Best) {
956 std::deque<StateNode *> Path;
957 // We do not need a break before the initial token.
958 while (Best->Previous) {
959 Path.push_front(Best);
960 Best = Best->Previous;
961 }
962 for (std::deque<StateNode *>::iterator I = Path.begin(), E = Path.end();
963 I != E; ++I) {
964 unsigned Penalty = 0;
965 formatChildren(State, (*I)->NewLine, /*DryRun=*/false, Penalty);
966 Penalty += Indenter->addTokenToState(State, (*I)->NewLine, false);
967
968 DEBUG({
969 printLineState((*I)->Previous->State);
970 if ((*I)->NewLine) {
971 llvm::dbgs() << "Penalty for placing "
972 << (*I)->Previous->State.NextToken->Tok.getName() << ": "
973 << Penalty << "\n";
974 }
975 });
976 }
977 }
978
979 llvm::SpecificBumpPtrAllocator<StateNode> Allocator;
980};
981
Hans Wennborg7eb54642015-09-10 17:07:54 +0000982} // anonymous namespace
Daniel Jasper0df50932014-12-10 19:00:42 +0000983
984unsigned
985UnwrappedLineFormatter::format(const SmallVectorImpl<AnnotatedLine *> &Lines,
986 bool DryRun, int AdditionalIndent,
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +0000987 bool FixBadIndentation,
988 unsigned FirstStartColumn,
989 unsigned NextStartColumn,
990 unsigned LastStartColumn) {
Manuel Klimek3d3ea842015-05-12 09:23:57 +0000991 LineJoiner Joiner(Style, Keywords, Lines);
Daniel Jasper0df50932014-12-10 19:00:42 +0000992
993 // Try to look up already computed penalty in DryRun-mode.
994 std::pair<const SmallVectorImpl<AnnotatedLine *> *, unsigned> CacheKey(
995 &Lines, AdditionalIndent);
996 auto CacheIt = PenaltyCache.find(CacheKey);
997 if (DryRun && CacheIt != PenaltyCache.end())
998 return CacheIt->second;
999
1000 assert(!Lines.empty());
1001 unsigned Penalty = 0;
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001002 LevelIndentTracker IndentTracker(Style, Keywords, Lines[0]->Level,
1003 AdditionalIndent);
Daniel Jasper0df50932014-12-10 19:00:42 +00001004 const AnnotatedLine *PreviousLine = nullptr;
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001005 const AnnotatedLine *NextLine = nullptr;
Daniel Jasperf67c3242015-11-01 00:27:35 +00001006
1007 // The minimum level of consecutive lines that have been formatted.
1008 unsigned RangeMinLevel = UINT_MAX;
Daniel Jasperf67c3242015-11-01 00:27:35 +00001009
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001010 bool FirstLine = true;
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001011 for (const AnnotatedLine *Line =
1012 Joiner.getNextMergedLine(DryRun, IndentTracker);
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001013 Line; Line = NextLine, FirstLine = false) {
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001014 const AnnotatedLine &TheLine = *Line;
1015 unsigned Indent = IndentTracker.getIndent();
Daniel Jasperf67c3242015-11-01 00:27:35 +00001016
1017 // We continue formatting unchanged lines to adjust their indent, e.g. if a
1018 // scope was added. However, we need to carefully stop doing this when we
1019 // exit the scope of affected lines to prevent indenting a the entire
1020 // remaining file if it currently missing a closing brace.
1021 bool ContinueFormatting =
1022 TheLine.Level > RangeMinLevel ||
Daniel Jasperf83834f2015-11-02 20:02:49 +00001023 (TheLine.Level == RangeMinLevel && !TheLine.startsWith(tok::r_brace));
Daniel Jasperf67c3242015-11-01 00:27:35 +00001024
1025 bool FixIndentation = (FixBadIndentation || ContinueFormatting) &&
Daniel Jaspera1036e52015-10-28 01:08:22 +00001026 Indent != TheLine.First->OriginalColumn;
Manuel Klimekec5c3db2015-05-07 12:26:30 +00001027 bool ShouldFormat = TheLine.Affected || FixIndentation;
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001028 // We cannot format this line; if the reason is that the line had a
1029 // parsing error, remember that.
Krasimir Georgievbcda54b2017-04-21 14:35:20 +00001030 if (ShouldFormat && TheLine.Type == LT_Invalid && Status) {
1031 Status->FormatComplete = false;
1032 Status->Line =
1033 SourceMgr.getSpellingLineNumber(TheLine.First->Tok.getLocation());
1034 }
Daniel Jasper0df50932014-12-10 19:00:42 +00001035
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001036 if (ShouldFormat && TheLine.Type != LT_Invalid) {
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001037 if (!DryRun) {
1038 bool LastLine = Line->First->is(tok::eof);
1039 formatFirstToken(TheLine, PreviousLine,
1040 Indent,
1041 LastLine ? LastStartColumn : NextStartColumn + Indent);
1042 }
Daniel Jasper0df50932014-12-10 19:00:42 +00001043
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001044 NextLine = Joiner.getNextMergedLine(DryRun, IndentTracker);
1045 unsigned ColumnLimit = getColumnLimit(TheLine.InPPDirective, NextLine);
1046 bool FitsIntoOneLine =
1047 TheLine.Last->TotalLength + Indent <= ColumnLimit ||
Martin Probst0cd74ee2016-06-13 16:39:50 +00001048 (TheLine.Type == LT_ImportStatement &&
1049 (Style.Language != FormatStyle::LK_JavaScript ||
1050 !Style.JavaScriptWrapImports));
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001051 if (Style.ColumnLimit == 0)
Manuel Klimekd3585db2015-05-11 08:21:35 +00001052 NoColumnLimitLineFormatter(Indenter, Whitespaces, Style, this)
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001053 .formatLine(TheLine, NextStartColumn + Indent,
1054 FirstLine ? FirstStartColumn : 0, DryRun);
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001055 else if (FitsIntoOneLine)
1056 Penalty += NoLineBreakFormatter(Indenter, Whitespaces, Style, this)
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001057 .formatLine(TheLine, NextStartColumn + Indent,
1058 FirstLine ? FirstStartColumn : 0, DryRun);
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001059 else
Manuel Klimekd3585db2015-05-11 08:21:35 +00001060 Penalty += OptimizingLineFormatter(Indenter, Whitespaces, Style, this)
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001061 .formatLine(TheLine, NextStartColumn + Indent,
1062 FirstLine ? FirstStartColumn : 0, DryRun);
Daniel Jasperf67c3242015-11-01 00:27:35 +00001063 RangeMinLevel = std::min(RangeMinLevel, TheLine.Level);
Daniel Jasper0df50932014-12-10 19:00:42 +00001064 } else {
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001065 // If no token in the current line is affected, we still need to format
1066 // affected children.
1067 if (TheLine.ChildrenAffected)
Daniel Jasper35ca66d2016-02-29 12:26:20 +00001068 for (const FormatToken *Tok = TheLine.First; Tok; Tok = Tok->Next)
1069 if (!Tok->Children.empty())
1070 format(Tok->Children, DryRun);
Daniel Jasper0df50932014-12-10 19:00:42 +00001071
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001072 // Adapt following lines on the current indent level to the same level
1073 // unless the current \c AnnotatedLine is not at the beginning of a line.
1074 bool StartsNewLine =
1075 TheLine.First->NewlinesBefore > 0 || TheLine.First->IsFirst;
1076 if (StartsNewLine)
1077 IndentTracker.adjustToUnmodifiedLine(TheLine);
1078 if (!DryRun) {
1079 bool ReformatLeadingWhitespace =
1080 StartsNewLine && ((PreviousLine && PreviousLine->Affected) ||
1081 TheLine.LeadingEmptyLinesAffected);
1082 // Format the first token.
1083 if (ReformatLeadingWhitespace)
Daniel Jasper7d42f3f2017-01-31 11:25:01 +00001084 formatFirstToken(TheLine, PreviousLine,
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001085 TheLine.First->OriginalColumn,
Daniel Jasper7d42f3f2017-01-31 11:25:01 +00001086 TheLine.First->OriginalColumn);
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001087 else
1088 Whitespaces->addUntouchableToken(*TheLine.First,
1089 TheLine.InPPDirective);
1090
1091 // Notify the WhitespaceManager about the unchanged whitespace.
1092 for (FormatToken *Tok = TheLine.First->Next; Tok; Tok = Tok->Next)
Daniel Jasper0df50932014-12-10 19:00:42 +00001093 Whitespaces->addUntouchableToken(*Tok, TheLine.InPPDirective);
Daniel Jasper0df50932014-12-10 19:00:42 +00001094 }
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001095 NextLine = Joiner.getNextMergedLine(DryRun, IndentTracker);
Daniel Jasperf67c3242015-11-01 00:27:35 +00001096 RangeMinLevel = UINT_MAX;
Daniel Jasper0df50932014-12-10 19:00:42 +00001097 }
Daniel Jasperd1c13732015-01-23 19:37:25 +00001098 if (!DryRun)
1099 markFinalized(TheLine.First);
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001100 PreviousLine = &TheLine;
Daniel Jasper0df50932014-12-10 19:00:42 +00001101 }
1102 PenaltyCache[CacheKey] = Penalty;
1103 return Penalty;
1104}
1105
Daniel Jasper7d42f3f2017-01-31 11:25:01 +00001106void UnwrappedLineFormatter::formatFirstToken(const AnnotatedLine &Line,
Daniel Jasper0df50932014-12-10 19:00:42 +00001107 const AnnotatedLine *PreviousLine,
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001108 unsigned Indent,
1109 unsigned NewlineIndent) {
Manuel Klimek89628f62017-09-20 09:51:03 +00001110 FormatToken &RootToken = *Line.First;
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001111 if (RootToken.is(tok::eof)) {
1112 unsigned Newlines = std::min(RootToken.NewlinesBefore, 1u);
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001113 unsigned TokenIndent = Newlines ? NewlineIndent : 0;
1114 Whitespaces->replaceWhitespace(RootToken, Newlines, TokenIndent,
1115 TokenIndent);
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001116 return;
1117 }
Daniel Jasper0df50932014-12-10 19:00:42 +00001118 unsigned Newlines =
1119 std::min(RootToken.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1);
1120 // Remove empty lines before "}" where applicable.
1121 if (RootToken.is(tok::r_brace) &&
1122 (!RootToken.Next ||
1123 (RootToken.Next->is(tok::semi) && !RootToken.Next->Next)))
1124 Newlines = std::min(Newlines, 1u);
Martin Probsta004b3f2017-11-17 18:06:33 +00001125 // Remove empty lines at the start of nested blocks (lambdas/arrow functions)
1126 if (PreviousLine == nullptr && Line.Level > 0)
1127 Newlines = std::min(Newlines, 1u);
Daniel Jasper0df50932014-12-10 19:00:42 +00001128 if (Newlines == 0 && !RootToken.IsFirst)
1129 Newlines = 1;
1130 if (RootToken.IsFirst && !RootToken.HasUnescapedNewline)
1131 Newlines = 0;
1132
1133 // Remove empty lines after "{".
1134 if (!Style.KeepEmptyLinesAtTheStartOfBlocks && PreviousLine &&
1135 PreviousLine->Last->is(tok::l_brace) &&
1136 PreviousLine->First->isNot(tok::kw_namespace) &&
1137 !startsExternCBlock(*PreviousLine))
1138 Newlines = 1;
1139
1140 // Insert extra new line before access specifiers.
1141 if (PreviousLine && PreviousLine->Last->isOneOf(tok::semi, tok::r_brace) &&
1142 RootToken.isAccessSpecifier() && RootToken.NewlinesBefore == 1)
1143 ++Newlines;
1144
1145 // Remove empty lines after access specifiers.
Daniel Jasperac5c97e32015-03-09 08:13:55 +00001146 if (PreviousLine && PreviousLine->First->isAccessSpecifier() &&
1147 (!PreviousLine->InPPDirective || !RootToken.HasUnescapedNewline))
Daniel Jasper0df50932014-12-10 19:00:42 +00001148 Newlines = std::min(1u, Newlines);
1149
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001150 if (Newlines)
1151 Indent = NewlineIndent;
1152
1153 // Preprocessor directives get indented after the hash, if indented.
1154 if (Line.Type == LT_PreprocessorDirective || Line.Type == LT_ImportStatement)
1155 Indent = 0;
1156
Daniel Jasper7d42f3f2017-01-31 11:25:01 +00001157 Whitespaces->replaceWhitespace(RootToken, Newlines, Indent, Indent,
1158 Line.InPPDirective &&
1159 !RootToken.HasUnescapedNewline);
Daniel Jasper0df50932014-12-10 19:00:42 +00001160}
1161
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001162unsigned
1163UnwrappedLineFormatter::getColumnLimit(bool InPPDirective,
1164 const AnnotatedLine *NextLine) const {
1165 // In preprocessor directives reserve two chars for trailing " \" if the
1166 // next line continues the preprocessor directive.
1167 bool ContinuesPPDirective =
Daniel Jasper1a028222015-05-26 07:03:42 +00001168 InPPDirective &&
1169 // If there is no next line, this is likely a child line and the parent
1170 // continues the preprocessor directive.
1171 (!NextLine ||
1172 (NextLine->InPPDirective &&
1173 // If there is an unescaped newline between this line and the next, the
1174 // next line starts a new preprocessor directive.
1175 !NextLine->First->HasUnescapedNewline));
Manuel Klimek3d3ea842015-05-12 09:23:57 +00001176 return Style.ColumnLimit - (ContinuesPPDirective ? 2 : 0);
Daniel Jasper0df50932014-12-10 19:00:42 +00001177}
1178
Daniel Jasper0df50932014-12-10 19:00:42 +00001179} // namespace format
1180} // namespace clang