blob: f7472bcd083fc3c0bc89c18173700f1ec8bae1b2 [file] [log] [blame]
Daniel Jasperde0328a2013-08-16 11:20:30 +00001//===--- ContinuationIndenter.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 the continuation indenter.
12///
13//===----------------------------------------------------------------------===//
14
Daniel Jasperde0328a2013-08-16 11:20:30 +000015#include "ContinuationIndenter.h"
Manuel Klimek89628f62017-09-20 09:51:03 +000016#include "BreakableToken.h"
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +000017#include "FormatInternal.h"
Daniel Jasperde0328a2013-08-16 11:20:30 +000018#include "WhitespaceManager.h"
19#include "clang/Basic/OperatorPrecedence.h"
20#include "clang/Basic/SourceManager.h"
21#include "clang/Format/Format.h"
22#include "llvm/Support/Debug.h"
Daniel Jasperde0328a2013-08-16 11:20:30 +000023
Krasimir Georgiev91834222017-01-25 13:58:58 +000024#define DEBUG_TYPE "format-indenter"
Chandler Carruth10346662014-04-22 03:17:02 +000025
Daniel Jasperde0328a2013-08-16 11:20:30 +000026namespace clang {
27namespace format {
28
29// Returns the length of everything up to the first possible line break after
30// the ), ], } or > matching \c Tok.
31static unsigned getLengthToMatchingParen(const FormatToken &Tok) {
Craig Topper2145bc02014-05-09 08:15:10 +000032 if (!Tok.MatchingParen)
Daniel Jasperde0328a2013-08-16 11:20:30 +000033 return 0;
34 FormatToken *End = Tok.MatchingParen;
35 while (End->Next && !End->Next->CanBreakBefore) {
36 End = End->Next;
37 }
38 return End->TotalLength - Tok.TotalLength + 1;
39}
40
Daniel Jasper801cdb22016-01-05 13:03:59 +000041static unsigned getLengthToNextOperator(const FormatToken &Tok) {
42 if (!Tok.NextOperator)
43 return 0;
44 return Tok.NextOperator->TotalLength - Tok.TotalLength;
45}
46
Daniel Jasper4c6e0052013-08-27 14:24:43 +000047// Returns \c true if \c Tok is the "." or "->" of a call and starts the next
48// segment of a builder type call.
49static bool startsSegmentOfBuilderTypeCall(const FormatToken &Tok) {
50 return Tok.isMemberAccess() && Tok.Previous && Tok.Previous->closesScope();
51}
52
Daniel Jasperec01cd62013-10-08 05:11:18 +000053// Returns \c true if \c Current starts a new parameter.
54static bool startsNextParameter(const FormatToken &Current,
55 const FormatStyle &Style) {
56 const FormatToken &Previous = *Current.Previous;
Daniel Jaspera98b7b02014-11-25 10:05:17 +000057 if (Current.is(TT_CtorInitializerComma) &&
Francois Ferranda6b6d512017-05-24 11:36:58 +000058 Style.BreakConstructorInitializers == FormatStyle::BCIS_BeforeComma)
Daniel Jasperec01cd62013-10-08 05:11:18 +000059 return true;
Krasimir Georgievff747be2017-06-27 13:43:07 +000060 if (Style.Language == FormatStyle::LK_Proto && Current.is(TT_SelectorName))
61 return true;
Daniel Jasperec01cd62013-10-08 05:11:18 +000062 return Previous.is(tok::comma) && !Current.isTrailingComment() &&
Andi-Bogdan Postelnicu0ef8ee12017-03-10 15:10:37 +000063 ((Previous.isNot(TT_CtorInitializerComma) ||
Francois Ferranda6b6d512017-05-24 11:36:58 +000064 Style.BreakConstructorInitializers !=
65 FormatStyle::BCIS_BeforeComma) &&
Andi-Bogdan Postelnicu0ef8ee12017-03-10 15:10:37 +000066 (Previous.isNot(TT_InheritanceComma) ||
Francois Ferranda6b6d512017-05-24 11:36:58 +000067 !Style.BreakBeforeInheritanceComma));
Daniel Jasperec01cd62013-10-08 05:11:18 +000068}
69
Krasimir Georgiev26b144c2017-07-03 15:05:14 +000070static bool opensProtoMessageField(const FormatToken &LessTok,
71 const FormatStyle &Style) {
72 if (LessTok.isNot(tok::less))
73 return false;
74 return Style.Language == FormatStyle::LK_TextProto ||
75 (Style.Language == FormatStyle::LK_Proto &&
76 (LessTok.NestingLevel > 0 ||
77 (LessTok.Previous && LessTok.Previous->is(tok::equal))));
78}
79
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +000080// Returns the delimiter of a raw string literal, or None if TokenText is not
81// the text of a raw string literal. The delimiter could be the empty string.
82// For example, the delimiter of R"deli(cont)deli" is deli.
83static llvm::Optional<StringRef> getRawStringDelimiter(StringRef TokenText) {
84 if (TokenText.size() < 5 // The smallest raw string possible is 'R"()"'.
85 || !TokenText.startswith("R\"") || !TokenText.endswith("\""))
86 return None;
87
88 // A raw string starts with 'R"<delimiter>(' and delimiter is ascii and has
89 // size at most 16 by the standard, so the first '(' must be among the first
90 // 19 bytes.
91 size_t LParenPos = TokenText.substr(0, 19).find_first_of('(');
92 if (LParenPos == StringRef::npos)
93 return None;
94 StringRef Delimiter = TokenText.substr(2, LParenPos - 2);
95
96 // Check that the string ends in ')Delimiter"'.
97 size_t RParenPos = TokenText.size() - Delimiter.size() - 2;
98 if (TokenText[RParenPos] != ')')
99 return None;
100 if (!TokenText.substr(RParenPos + 1).startswith(Delimiter))
101 return None;
102 return Delimiter;
103}
104
Krasimir Georgiev412ed092018-01-19 16:18:47 +0000105// Returns the canonical delimiter for \p Language, or the empty string if no
106// canonical delimiter is specified.
107static StringRef
108getCanonicalRawStringDelimiter(const FormatStyle &Style,
109 FormatStyle::LanguageKind Language) {
110 for (const auto &Format : Style.RawStringFormats) {
111 if (Format.Language == Language)
112 return StringRef(Format.CanonicalDelimiter);
113 }
114 return "";
115}
116
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +0000117RawStringFormatStyleManager::RawStringFormatStyleManager(
118 const FormatStyle &CodeStyle) {
119 for (const auto &RawStringFormat : CodeStyle.RawStringFormats) {
Krasimir Georgiev2537e222018-01-17 16:17:26 +0000120 llvm::Optional<FormatStyle> LanguageStyle =
121 CodeStyle.GetLanguageStyle(RawStringFormat.Language);
122 if (!LanguageStyle) {
123 FormatStyle PredefinedStyle;
124 if (!getPredefinedStyle(RawStringFormat.BasedOnStyle,
125 RawStringFormat.Language, &PredefinedStyle)) {
126 PredefinedStyle = getLLVMStyle();
127 PredefinedStyle.Language = RawStringFormat.Language;
Krasimir Georgiev4527f132018-01-17 12:24:59 +0000128 }
Krasimir Georgiev2537e222018-01-17 16:17:26 +0000129 LanguageStyle = PredefinedStyle;
130 }
131 LanguageStyle->ColumnLimit = CodeStyle.ColumnLimit;
132 for (StringRef Delimiter : RawStringFormat.Delimiters) {
Krasimir Georgiev4527f132018-01-17 12:24:59 +0000133 DelimiterStyle.insert({Delimiter, *LanguageStyle});
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +0000134 }
Krasimir Georgiev2537e222018-01-17 16:17:26 +0000135 for (StringRef EnclosingFunction : RawStringFormat.EnclosingFunctions) {
136 EnclosingFunctionStyle.insert({EnclosingFunction, *LanguageStyle});
137 }
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +0000138 }
139}
140
141llvm::Optional<FormatStyle>
Krasimir Georgiev2537e222018-01-17 16:17:26 +0000142RawStringFormatStyleManager::getDelimiterStyle(StringRef Delimiter) const {
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +0000143 auto It = DelimiterStyle.find(Delimiter);
144 if (It == DelimiterStyle.end())
145 return None;
146 return It->second;
147}
148
Krasimir Georgiev2537e222018-01-17 16:17:26 +0000149llvm::Optional<FormatStyle>
150RawStringFormatStyleManager::getEnclosingFunctionStyle(
151 StringRef EnclosingFunction) const {
152 auto It = EnclosingFunctionStyle.find(EnclosingFunction);
153 if (It == EnclosingFunctionStyle.end())
154 return None;
155 return It->second;
156}
157
Daniel Jasperde0328a2013-08-16 11:20:30 +0000158ContinuationIndenter::ContinuationIndenter(const FormatStyle &Style,
Daniel Jasperd0ec0d62014-11-04 12:41:02 +0000159 const AdditionalKeywords &Keywords,
Eric Liu635423e2016-04-28 07:52:03 +0000160 const SourceManager &SourceMgr,
Daniel Jasperde0328a2013-08-16 11:20:30 +0000161 WhitespaceManager &Whitespaces,
162 encoding::Encoding Encoding,
163 bool BinPackInconclusiveFunctions)
Daniel Jasperd0ec0d62014-11-04 12:41:02 +0000164 : Style(Style), Keywords(Keywords), SourceMgr(SourceMgr),
165 Whitespaces(Whitespaces), Encoding(Encoding),
Alexander Kornienkoce9161a2014-01-02 15:13:14 +0000166 BinPackInconclusiveFunctions(BinPackInconclusiveFunctions),
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +0000167 CommentPragmasRegex(Style.CommentPragmas), RawStringFormats(Style) {}
Daniel Jasperde0328a2013-08-16 11:20:30 +0000168
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +0000169LineState ContinuationIndenter::getInitialState(unsigned FirstIndent,
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +0000170 unsigned FirstStartColumn,
Daniel Jasper1c5d9df2013-09-06 07:54:20 +0000171 const AnnotatedLine *Line,
172 bool DryRun) {
Daniel Jasperde0328a2013-08-16 11:20:30 +0000173 LineState State;
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +0000174 State.FirstIndent = FirstIndent;
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +0000175 if (FirstStartColumn && Line->First->NewlinesBefore == 0)
176 State.Column = FirstStartColumn;
177 else
178 State.Column = FirstIndent;
Krasimir Georgievad47c902017-08-30 14:34:57 +0000179 // With preprocessor directive indentation, the line starts on column 0
180 // since it's indented after the hash, but FirstIndent is set to the
181 // preprocessor indent.
182 if (Style.IndentPPDirectives == FormatStyle::PPDIS_AfterHash &&
183 (Line->Type == LT_PreprocessorDirective ||
184 Line->Type == LT_ImportStatement))
185 State.Column = 0;
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +0000186 State.Line = Line;
187 State.NextToken = Line->First;
Daniel Jasper7d42f3f2017-01-31 11:25:01 +0000188 State.Stack.push_back(ParenState(FirstIndent, FirstIndent,
Daniel Jasperde0328a2013-08-16 11:20:30 +0000189 /*AvoidBinPacking=*/false,
190 /*NoLineBreak=*/false));
191 State.LineContainsContinuedForLoopSection = false;
Krasimir Georgiev35599fd2017-10-16 09:08:53 +0000192 State.NoContinuation = false;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000193 State.StartOfStringLiteral = 0;
Daniel Jasper05cd5862014-05-08 12:21:30 +0000194 State.StartOfLineLevel = 0;
195 State.LowestLevelOnLine = 0;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000196 State.IgnoreStackForComparison = false;
197
Krasimir Georgiev26b144c2017-07-03 15:05:14 +0000198 if (Style.Language == FormatStyle::LK_TextProto) {
199 // We need this in order to deal with the bin packing of text fields at
200 // global scope.
201 State.Stack.back().AvoidBinPacking = true;
202 State.Stack.back().BreakBeforeParameter = true;
203 }
204
Daniel Jasperde0328a2013-08-16 11:20:30 +0000205 // The first token has already been indented and thus consumed.
Daniel Jasper1c5d9df2013-09-06 07:54:20 +0000206 moveStateToNextToken(State, DryRun, /*Newline=*/false);
Daniel Jasperde0328a2013-08-16 11:20:30 +0000207 return State;
208}
209
210bool ContinuationIndenter::canBreak(const LineState &State) {
211 const FormatToken &Current = *State.NextToken;
212 const FormatToken &Previous = *Current.Previous;
213 assert(&Previous == Current.Previous);
Manuel Klimek89628f62017-09-20 09:51:03 +0000214 if (!Current.CanBreakBefore && !(State.Stack.back().BreakBeforeClosingBrace &&
215 Current.closesBlockOrBlockTypeList(Style)))
Daniel Jasperde0328a2013-08-16 11:20:30 +0000216 return false;
217 // The opening "{" of a braced list has to be on the same line as the first
218 // element if it is nested in another braced init list or function call.
219 if (!Current.MustBreakBefore && Previous.is(tok::l_brace) &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000220 Previous.isNot(TT_DictLiteral) && Previous.BlockKind == BK_BracedInit &&
Daniel Jasperb05a81d2014-05-09 13:11:16 +0000221 Previous.Previous &&
Daniel Jasperde0328a2013-08-16 11:20:30 +0000222 Previous.Previous->isOneOf(tok::l_brace, tok::l_paren, tok::comma))
223 return false;
224 // This prevents breaks like:
225 // ...
226 // SomeParameter, OtherParameter).DoSomething(
227 // ...
228 // As they hide "DoSomething" and are generally bad for readability.
Daniel Jasper8f59ae52014-03-11 11:03:26 +0000229 if (Previous.opensScope() && Previous.isNot(tok::l_brace) &&
Daniel Jasperfcfac102014-07-15 09:00:34 +0000230 State.LowestLevelOnLine < State.StartOfLineLevel &&
231 State.LowestLevelOnLine < Current.NestingLevel)
Daniel Jasperde0328a2013-08-16 11:20:30 +0000232 return false;
Daniel Jasper4c6e0052013-08-27 14:24:43 +0000233 if (Current.isMemberAccess() && State.Stack.back().ContainsUnwrappedBuilder)
234 return false;
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000235
236 // Don't create a 'hanging' indent if there are multiple blocks in a single
237 // statement.
Daniel Jasper4b444492014-11-21 13:38:53 +0000238 if (Previous.is(tok::l_brace) && State.Stack.size() > 1 &&
239 State.Stack[State.Stack.size() - 2].NestedBlockInlined &&
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000240 State.Stack[State.Stack.size() - 2].HasMultipleNestedBlocks)
241 return false;
242
Daniel Jaspere068ac72014-10-27 17:13:59 +0000243 // Don't break after very short return types (e.g. "void") as that is often
244 // unexpected.
Zachary Turner448592e2015-12-18 22:20:15 +0000245 if (Current.is(TT_FunctionDeclarationName) && State.Column < 6) {
246 if (Style.AlwaysBreakAfterReturnType == FormatStyle::RTBS_None)
247 return false;
248 }
Daniel Jaspere068ac72014-10-27 17:13:59 +0000249
Daniel Jasper240527c2017-01-16 13:13:15 +0000250 // If binary operators are moved to the next line (including commas for some
251 // styles of constructor initializers), that's always ok.
252 if (!Current.isOneOf(TT_BinaryOperator, tok::comma) &&
253 State.Stack.back().NoLineBreakInOperand)
254 return false;
255
Daniel Jasperde0328a2013-08-16 11:20:30 +0000256 return !State.Stack.back().NoLineBreak;
257}
258
259bool ContinuationIndenter::mustBreak(const LineState &State) {
260 const FormatToken &Current = *State.NextToken;
261 const FormatToken &Previous = *Current.Previous;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000262 if (Current.MustBreakBefore || Current.is(TT_InlineASMColon))
Daniel Jasperde0328a2013-08-16 11:20:30 +0000263 return true;
Daniel Jasper1db6c382013-10-22 15:30:28 +0000264 if (State.Stack.back().BreakBeforeClosingBrace &&
Daniel Jasperbd73bcf2015-10-27 13:42:08 +0000265 Current.closesBlockOrBlockTypeList(Style))
Daniel Jasperde0328a2013-08-16 11:20:30 +0000266 return true;
267 if (Previous.is(tok::semi) && State.LineContainsContinuedForLoopSection)
268 return true;
Daniel Jasperec01cd62013-10-08 05:11:18 +0000269 if ((startsNextParameter(Current, Style) || Previous.is(tok::semi) ||
Daniel Jasper00693b082016-01-09 15:56:47 +0000270 (Previous.is(TT_TemplateCloser) && Current.is(TT_StartOfName) &&
Daniel Jasper1dbc2102017-03-31 13:30:24 +0000271 Style.isCpp() &&
Daniel Jasper06ca0fc2016-01-11 11:01:05 +0000272 // FIXME: This is a temporary workaround for the case where clang-format
273 // sets BreakBeforeParameter to avoid bin packing and this creates a
274 // completely unnecessary line break after a template type that isn't
275 // line-wrapped.
276 (Previous.NestingLevel == 1 || Style.BinPackParameters)) ||
Daniel Jasper3e0dcc22015-05-27 05:37:40 +0000277 (Style.BreakBeforeTernaryOperators && Current.is(TT_ConditionalExpr) &&
278 Previous.isNot(tok::question)) ||
Daniel Jasper165b29e2013-11-08 00:57:11 +0000279 (!Style.BreakBeforeTernaryOperators &&
Daniel Jasper3e0dcc22015-05-27 05:37:40 +0000280 Previous.is(TT_ConditionalExpr))) &&
Daniel Jasperde0328a2013-08-16 11:20:30 +0000281 State.Stack.back().BreakBeforeParameter && !Current.isTrailingComment() &&
282 !Current.isOneOf(tok::r_paren, tok::r_brace))
283 return true;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000284 if (((Previous.is(TT_DictLiteral) && Previous.is(tok::l_brace)) ||
Daniel Jasperccff4d12016-01-04 07:27:33 +0000285 (Previous.is(TT_ArrayInitializerLSquare) &&
Krasimir Georgiev26b144c2017-07-03 15:05:14 +0000286 Previous.ParameterCount > 1) ||
287 opensProtoMessageField(Previous, Style)) &&
Daniel Jasperdb8804b2014-04-14 12:11:07 +0000288 Style.ColumnLimit > 0 &&
Daniel Jasper199d0c92015-06-02 15:14:21 +0000289 getLengthToMatchingParen(Previous) + State.Column - 1 >
290 getColumnLimit(State))
Daniel Jasperd489dd32013-10-20 16:45:46 +0000291 return true;
Francois Ferranda6b6d512017-05-24 11:36:58 +0000292
293 const FormatToken &BreakConstructorInitializersToken =
294 Style.BreakConstructorInitializers == FormatStyle::BCIS_AfterColon
295 ? Previous
296 : Current;
297 if (BreakConstructorInitializersToken.is(TT_CtorInitializerColon) &&
298 (State.Column + State.Line->Last->TotalLength - Previous.TotalLength >
Daniel Jasper7b259cd2015-08-27 11:59:31 +0000299 getColumnLimit(State) ||
300 State.Stack.back().BreakBeforeParameter) &&
Francois Ferranda6b6d512017-05-24 11:36:58 +0000301 (Style.AllowShortFunctionsOnASingleLine != FormatStyle::SFS_All ||
302 Style.BreakConstructorInitializers != FormatStyle::BCIS_BeforeColon ||
303 Style.ColumnLimit != 0))
Daniel Jasper5d2587d2014-03-27 16:14:13 +0000304 return true;
Francois Ferranda6b6d512017-05-24 11:36:58 +0000305
Daniel Jasperfd36f0b2016-11-12 07:38:22 +0000306 if (Current.is(TT_ObjCMethodExpr) && !Previous.is(TT_SelectorName) &&
307 State.Line->startsWith(TT_ObjCMethodSpecifier))
308 return true;
Daniel Jasper2746a302015-05-06 13:13:03 +0000309 if (Current.is(TT_SelectorName) && State.Stack.back().ObjCSelectorNameFound &&
310 State.Stack.back().BreakBeforeParameter)
311 return true;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000312
Daniel Jasper2aaedd32015-06-18 09:12:47 +0000313 unsigned NewLineColumn = getNewLineColumn(State);
Daniel Jaspera3cd21642016-01-14 13:36:46 +0000314 if (Current.isMemberAccess() && Style.ColumnLimit != 0 &&
Daniel Jasper28024562016-01-11 11:00:58 +0000315 State.Column + getLengthToNextOperator(Current) > Style.ColumnLimit &&
316 (State.Column > NewLineColumn ||
317 Current.NestingLevel < State.StartOfLineLevel))
318 return true;
319
Daniel Jaspere61f9f92017-01-13 23:18:16 +0000320 if (startsSegmentOfBuilderTypeCall(Current) &&
321 (State.Stack.back().CallContinuation != 0 ||
Daniel Jasper51c868e2017-01-30 07:08:40 +0000322 State.Stack.back().BreakBeforeParameter) &&
323 // JavaScript is treated different here as there is a frequent pattern:
324 // SomeFunction(function() {
325 // ...
326 // }.bind(...));
327 // FIXME: We should find a more generic solution to this problem.
Martin Probstb2f06ea2017-05-29 07:50:52 +0000328 !(State.Column <= NewLineColumn &&
Daniel Jasper51c868e2017-01-30 07:08:40 +0000329 Style.Language == FormatStyle::LK_JavaScript))
Daniel Jaspere61f9f92017-01-13 23:18:16 +0000330 return true;
331
Daniel Jasper411af722016-01-05 16:10:39 +0000332 if (State.Column <= NewLineColumn)
Daniel Jasper5d2587d2014-03-27 16:14:13 +0000333 return false;
Daniel Jasper173504e2015-05-10 21:15:07 +0000334
Daniel Jasper2aaedd32015-06-18 09:12:47 +0000335 if (Style.AlwaysBreakBeforeMultilineStrings &&
Daniel Jasper1bf729c2015-06-18 16:05:17 +0000336 (NewLineColumn == State.FirstIndent + Style.ContinuationIndentWidth ||
Daniel Jasper9fb676a2015-06-19 10:32:28 +0000337 Previous.is(tok::comma) || Current.NestingLevel < 2) &&
Daniel Jasper2aaedd32015-06-18 09:12:47 +0000338 !Previous.isOneOf(tok::kw_return, tok::lessless, tok::at) &&
339 !Previous.isOneOf(TT_InlineASMColon, TT_ConditionalExpr) &&
340 nextIsMultilineString(State))
341 return true;
342
Daniel Jasper173504e2015-05-10 21:15:07 +0000343 // Using CanBreakBefore here and below takes care of the decision whether the
344 // current style uses wrapping before or after operators for the given
345 // operator.
346 if (Previous.is(TT_BinaryOperator) && Current.CanBreakBefore) {
Daniel Jasperde0328a2013-08-16 11:20:30 +0000347 // If we need to break somewhere inside the LHS of a binary expression, we
348 // should also break after the operator. Otherwise, the formatting would
349 // hide the operator precedence, e.g. in:
350 // if (aaaaaaaaaaaaaa ==
351 // bbbbbbbbbbbbbb && c) {..
352 // For comparisons, we only apply this rule, if the LHS is a binary
353 // expression itself as otherwise, the line breaks seem superfluous.
354 // We need special cases for ">>" which we have split into two ">" while
355 // lexing in order to make template parsing easier.
Daniel Jasperde0328a2013-08-16 11:20:30 +0000356 bool IsComparison = (Previous.getPrecedence() == prec::Relational ||
Richard Smithc70f1d62017-12-14 15:16:18 +0000357 Previous.getPrecedence() == prec::Equality ||
358 Previous.getPrecedence() == prec::Spaceship) &&
Daniel Jasperde0328a2013-08-16 11:20:30 +0000359 Previous.Previous &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000360 Previous.Previous->isNot(TT_BinaryOperator); // For >>.
Daniel Jasperde0328a2013-08-16 11:20:30 +0000361 bool LHSIsBinaryExpr =
Daniel Jasper562ecd42013-09-06 08:08:14 +0000362 Previous.Previous && Previous.Previous->EndsBinaryExpression;
Daniel Jasper173504e2015-05-10 21:15:07 +0000363 if ((!IsComparison || LHSIsBinaryExpr) && !Current.isTrailingComment() &&
Daniel Jasperde0328a2013-08-16 11:20:30 +0000364 Previous.getPrecedence() != prec::Assignment &&
365 State.Stack.back().BreakBeforeParameter)
366 return true;
Daniel Jasper173504e2015-05-10 21:15:07 +0000367 } else if (Current.is(TT_BinaryOperator) && Current.CanBreakBefore &&
368 State.Stack.back().BreakBeforeParameter) {
369 return true;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000370 }
371
372 // Same as above, but for the first "<<" operator.
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000373 if (Current.is(tok::lessless) && Current.isNot(TT_OverloadedOperator) &&
Alexander Kornienko86b2dfd2014-03-06 15:13:08 +0000374 State.Stack.back().BreakBeforeParameter &&
Daniel Jasperde0328a2013-08-16 11:20:30 +0000375 State.Stack.back().FirstLessLess == 0)
376 return true;
377
Daniel Jasper211e1322014-12-08 20:08:04 +0000378 if (Current.NestingLevel == 0 && !Current.isTrailingComment()) {
Daniel Jasperf090f032015-05-18 09:47:22 +0000379 // Always break after "template <...>" and leading annotations. This is only
380 // for cases where the entire line does not fit on a single line as a
381 // different LineFormatter would be used otherwise.
Daniel Jasper211e1322014-12-08 20:08:04 +0000382 if (Previous.ClosesTemplateDeclaration)
383 return true;
Daniel Jasper47bbda02015-05-18 13:47:23 +0000384 if (Previous.is(TT_FunctionAnnotationRParen))
Daniel Jasperf090f032015-05-18 09:47:22 +0000385 return true;
Nico Weberbeb03932015-01-09 23:25:06 +0000386 if (Previous.is(TT_LeadingJavaAnnotation) && Current.isNot(tok::l_paren) &&
387 Current.isNot(TT_LeadingJavaAnnotation))
Daniel Jasper211e1322014-12-08 20:08:04 +0000388 return true;
389 }
Daniel Jasperde0328a2013-08-16 11:20:30 +0000390
Daniel Jasper4355e7f2014-07-09 07:50:33 +0000391 // If the return type spans multiple lines, wrap before the function name.
Birunthan Mohanathas525579d2015-07-15 19:11:58 +0000392 if ((Current.is(TT_FunctionDeclarationName) ||
393 (Current.is(tok::kw_operator) && !Previous.is(tok::coloncolon))) &&
Daniel Jasper0c9772e2016-02-05 14:17:16 +0000394 !Previous.is(tok::kw_template) && State.Stack.back().BreakBeforeParameter)
Daniel Jasperde0328a2013-08-16 11:20:30 +0000395 return true;
Daniel Jasper4355e7f2014-07-09 07:50:33 +0000396
Daniel Jasper96972812014-01-05 12:38:10 +0000397 // The following could be precomputed as they do not depend on the state.
398 // However, as they should take effect only if the UnwrappedLine does not fit
399 // into the ColumnLimit, they are checked here in the ContinuationIndenter.
Daniel Jasper35995672014-04-29 14:05:20 +0000400 if (Style.ColumnLimit != 0 && Previous.BlockKind == BK_Block &&
401 Previous.is(tok::l_brace) && !Current.isOneOf(tok::r_brace, tok::comment))
Daniel Jasper96972812014-01-05 12:38:10 +0000402 return true;
Daniel Jasper96972812014-01-05 12:38:10 +0000403
Daniel Jasper0a589412016-01-05 13:06:27 +0000404 if (Current.is(tok::lessless) &&
405 ((Previous.is(tok::identifier) && Previous.TokenText == "endl") ||
406 (Previous.Tok.isLiteral() && (Previous.TokenText.endswith("\\n\"") ||
407 Previous.TokenText == "\'\\n\'"))))
Daniel Jasper69963122015-02-17 10:05:15 +0000408 return true;
409
Krasimir Georgiev35599fd2017-10-16 09:08:53 +0000410 if (Previous.is(TT_BlockComment) && Previous.IsMultiline)
411 return true;
412
413 if (State.NoContinuation)
414 return true;
415
Daniel Jasperde0328a2013-08-16 11:20:30 +0000416 return false;
417}
418
419unsigned ContinuationIndenter::addTokenToState(LineState &State, bool Newline,
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000420 bool DryRun,
421 unsigned ExtraSpaces) {
Daniel Jasperde0328a2013-08-16 11:20:30 +0000422 const FormatToken &Current = *State.NextToken;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000423
Manuel Klimek819788d2014-03-18 11:22:45 +0000424 assert(!State.Stack.empty());
Krasimir Georgiev35599fd2017-10-16 09:08:53 +0000425 State.NoContinuation = false;
426
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000427 if ((Current.is(TT_ImplicitStringLiteral) &&
Craig Topper2145bc02014-05-09 08:15:10 +0000428 (Current.Previous->Tok.getIdentifierInfo() == nullptr ||
Daniel Jasper98857842013-10-30 13:54:53 +0000429 Current.Previous->Tok.getIdentifierInfo()->getPPKeywordID() ==
430 tok::pp_not_keyword))) {
Daniel Jasper30526e72015-01-31 07:05:46 +0000431 unsigned EndColumn =
432 SourceMgr.getSpellingColumnNumber(Current.WhitespaceRange.getEnd());
433 if (Current.LastNewlineOffset != 0) {
434 // If there is a newline within this token, the final column will solely
435 // determined by the current end column.
436 State.Column = EndColumn;
437 } else {
438 unsigned StartColumn =
439 SourceMgr.getSpellingColumnNumber(Current.WhitespaceRange.getBegin());
440 assert(EndColumn >= StartColumn);
441 State.Column += EndColumn - StartColumn;
442 }
Daniel Jasper240dfda2014-03-31 14:23:49 +0000443 moveStateToNextToken(State, DryRun, /*Newline=*/false);
Daniel Jasperde0328a2013-08-16 11:20:30 +0000444 return 0;
445 }
446
Alexander Kornienko1f803962013-10-01 14:41:18 +0000447 unsigned Penalty = 0;
448 if (Newline)
449 Penalty = addTokenOnNewLine(State, DryRun);
450 else
Daniel Jasper48437ce2013-11-20 14:54:39 +0000451 addTokenOnCurrentLine(State, DryRun, ExtraSpaces);
Alexander Kornienko1f803962013-10-01 14:41:18 +0000452
453 return moveStateToNextToken(State, DryRun, Newline) + Penalty;
454}
455
Daniel Jasper48437ce2013-11-20 14:54:39 +0000456void ContinuationIndenter::addTokenOnCurrentLine(LineState &State, bool DryRun,
457 unsigned ExtraSpaces) {
Manuel Klimek71814b42013-10-11 21:25:45 +0000458 FormatToken &Current = *State.NextToken;
Alexander Kornienko1f803962013-10-01 14:41:18 +0000459 const FormatToken &Previous = *State.NextToken->Previous;
460 if (Current.is(tok::equal) &&
Daniel Jasper05cd5862014-05-08 12:21:30 +0000461 (State.Line->First->is(tok::kw_for) || Current.NestingLevel == 0) &&
Alexander Kornienko1f803962013-10-01 14:41:18 +0000462 State.Stack.back().VariablePos == 0) {
463 State.Stack.back().VariablePos = State.Column;
464 // Move over * and & if they are bound to the variable name.
465 const FormatToken *Tok = &Previous;
466 while (Tok && State.Stack.back().VariablePos >= Tok->ColumnWidth) {
467 State.Stack.back().VariablePos -= Tok->ColumnWidth;
468 if (Tok->SpacesRequiredBefore != 0)
469 break;
470 Tok = Tok->Previous;
471 }
472 if (Previous.PartOfMultiVariableDeclStmt)
473 State.Stack.back().LastSpace = State.Stack.back().VariablePos;
474 }
475
476 unsigned Spaces = Current.SpacesRequiredBefore + ExtraSpaces;
477
Krasimir Georgievad47c902017-08-30 14:34:57 +0000478 // Indent preprocessor directives after the hash if required.
479 int PPColumnCorrection = 0;
480 if (Style.IndentPPDirectives == FormatStyle::PPDIS_AfterHash &&
481 Previous.is(tok::hash) && State.FirstIndent > 0 &&
482 (State.Line->Type == LT_PreprocessorDirective ||
483 State.Line->Type == LT_ImportStatement)) {
484 Spaces += State.FirstIndent;
485
486 // For preprocessor indent with tabs, State.Column will be 1 because of the
487 // hash. This causes second-level indents onward to have an extra space
488 // after the tabs. We avoid this misalignment by subtracting 1 from the
489 // column value passed to replaceWhitespace().
490 if (Style.UseTab != FormatStyle::UT_Never)
491 PPColumnCorrection = -1;
492 }
493
Alexander Kornienko1f803962013-10-01 14:41:18 +0000494 if (!DryRun)
Daniel Jasper7d42f3f2017-01-31 11:25:01 +0000495 Whitespaces.replaceWhitespace(Current, /*Newlines=*/0, Spaces,
Krasimir Georgievad47c902017-08-30 14:34:57 +0000496 State.Column + Spaces + PPColumnCorrection);
Alexander Kornienko1f803962013-10-01 14:41:18 +0000497
Andi-Bogdan Postelnicu0ef8ee12017-03-10 15:10:37 +0000498 // If "BreakBeforeInheritanceComma" mode, don't break within the inheritance
499 // declaration unless there is multiple inheritance.
500 if (Style.BreakBeforeInheritanceComma && Current.is(TT_InheritanceColon))
501 State.Stack.back().NoLineBreak = true;
502
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000503 if (Current.is(TT_SelectorName) &&
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000504 !State.Stack.back().ObjCSelectorNameFound) {
Daniel Jasper06a26952016-01-04 07:29:07 +0000505 unsigned MinIndent =
506 std::max(State.FirstIndent + Style.ContinuationIndentWidth,
507 State.Stack.back().Indent);
508 unsigned FirstColonPos = State.Column + Spaces + Current.ColumnWidth;
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000509 if (Current.LongestObjCSelectorName == 0)
510 State.Stack.back().AlignColons = false;
Daniel Jasper06a26952016-01-04 07:29:07 +0000511 else if (MinIndent + Current.LongestObjCSelectorName > FirstColonPos)
512 State.Stack.back().ColonPos = MinIndent + Current.LongestObjCSelectorName;
Alexander Kornienko1f803962013-10-01 14:41:18 +0000513 else
Daniel Jasper06a26952016-01-04 07:29:07 +0000514 State.Stack.back().ColonPos = FirstColonPos;
Alexander Kornienko1f803962013-10-01 14:41:18 +0000515 }
516
Daniel Jasper6501f7e2015-10-27 12:38:37 +0000517 // In "AlwaysBreak" mode, enforce wrapping directly after the parenthesis by
518 // disallowing any further line breaks if there is no line break after the
519 // opening parenthesis. Don't break if it doesn't conserve columns.
520 if (Style.AlignAfterOpenBracket == FormatStyle::BAS_AlwaysBreak &&
Daniel Jasperb618a982016-02-02 10:28:11 +0000521 Previous.isOneOf(tok::l_paren, TT_TemplateOpener, tok::l_square) &&
522 State.Column > getNewLineColumn(State) &&
Manuel Klimek89628f62017-09-20 09:51:03 +0000523 (!Previous.Previous || !Previous.Previous->isOneOf(
524 tok::kw_for, tok::kw_while, tok::kw_switch)) &&
Daniel Jasper710f8492016-03-17 12:00:22 +0000525 // Don't do this for simple (no expressions) one-argument function calls
526 // as that feels like needlessly wasting whitespace, e.g.:
527 //
528 // caaaaaaaaaaaall(
529 // caaaaaaaaaaaall(
530 // caaaaaaaaaaaall(
531 // caaaaaaaaaaaaaaaaaaaaaaall(aaaaaaaaaaaaaa, aaaaaaaaa))));
532 Current.FakeLParens.size() > 0 &&
533 Current.FakeLParens.back() > prec::Unknown)
Daniel Jasper6501f7e2015-10-27 12:38:37 +0000534 State.Stack.back().NoLineBreak = true;
Daniel Jasper98e0b122017-02-20 14:51:16 +0000535 if (Previous.is(TT_TemplateString) && Previous.opensScope())
536 State.Stack.back().NoLineBreak = true;
Daniel Jasper6501f7e2015-10-27 12:38:37 +0000537
538 if (Style.AlignAfterOpenBracket != FormatStyle::BAS_DontAlign &&
539 Previous.opensScope() && Previous.isNot(TT_ObjCMethodExpr) &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000540 (Current.isNot(TT_LineComment) || Previous.BlockKind == BK_BracedInit))
Alexander Kornienko1f803962013-10-01 14:41:18 +0000541 State.Stack.back().Indent = State.Column + Spaces;
Daniel Jasperec01cd62013-10-08 05:11:18 +0000542 if (State.Stack.back().AvoidBinPacking && startsNextParameter(Current, Style))
Alexander Kornienko1f803962013-10-01 14:41:18 +0000543 State.Stack.back().NoLineBreak = true;
Daniel Jasper775954b2015-04-24 10:08:09 +0000544 if (startsSegmentOfBuilderTypeCall(Current) &&
545 State.Column > getNewLineColumn(State))
Alexander Kornienko1f803962013-10-01 14:41:18 +0000546 State.Stack.back().ContainsUnwrappedBuilder = true;
547
Daniel Jasper6f2b88a2015-06-05 13:18:09 +0000548 if (Current.is(TT_LambdaArrow) && Style.Language == FormatStyle::LK_Java)
Daniel Jasper05cd9292015-03-26 18:46:28 +0000549 State.Stack.back().NoLineBreak = true;
Daniel Jasperd6f17d82014-09-12 16:35:28 +0000550 if (Current.isMemberAccess() && Previous.is(tok::r_paren) &&
551 (Previous.MatchingParen &&
Daniel Jasper98e0b122017-02-20 14:51:16 +0000552 (Previous.TotalLength - Previous.MatchingParen->TotalLength > 10)))
Daniel Jasperd6f17d82014-09-12 16:35:28 +0000553 // If there is a function call with long parameters, break before trailing
554 // calls. This prevents things like:
555 // EXPECT_CALL(SomeLongParameter).Times(
556 // 2);
557 // We don't want to do this for short parameters as they can just be
558 // indexes.
559 State.Stack.back().NoLineBreak = true;
Daniel Jasperd6f17d82014-09-12 16:35:28 +0000560
Daniel Jasper240527c2017-01-16 13:13:15 +0000561 // Don't allow the RHS of an operator to be split over multiple lines unless
562 // there is a line-break right after the operator.
563 // Exclude relational operators, as there, it is always more desirable to
564 // have the LHS 'left' of the RHS.
565 const FormatToken *P = Current.getPreviousNonComment();
566 if (!Current.is(tok::comment) && P &&
567 (P->isOneOf(TT_BinaryOperator, tok::comma) ||
568 (P->is(TT_ConditionalExpr) && P->is(tok::colon))) &&
569 !P->isOneOf(TT_OverloadedOperator, TT_CtorInitializerComma) &&
570 P->getPrecedence() != prec::Assignment &&
Richard Smithc70f1d62017-12-14 15:16:18 +0000571 P->getPrecedence() != prec::Relational &&
572 P->getPrecedence() != prec::Spaceship) {
Daniel Jasper240527c2017-01-16 13:13:15 +0000573 bool BreakBeforeOperator =
Daniel Jasperb1270392017-02-01 23:27:37 +0000574 P->MustBreakBefore || P->is(tok::lessless) ||
Daniel Jasper240527c2017-01-16 13:13:15 +0000575 (P->is(TT_BinaryOperator) &&
576 Style.BreakBeforeBinaryOperators != FormatStyle::BOS_None) ||
577 (P->is(TT_ConditionalExpr) && Style.BreakBeforeTernaryOperators);
Daniel Jasper21f7dea2017-02-01 09:23:39 +0000578 // Don't do this if there are only two operands. In these cases, there is
579 // always a nice vertical separation between them and the extra line break
580 // does not help.
581 bool HasTwoOperands =
582 P->OperatorIndex == 0 && !P->NextOperator && !P->is(TT_ConditionalExpr);
Daniel Jasperc3aa05c2017-02-02 08:30:21 +0000583 if ((!BreakBeforeOperator && !(HasTwoOperands && Style.AlignOperands)) ||
Daniel Jasper240527c2017-01-16 13:13:15 +0000584 (!State.Stack.back().LastOperatorWrapped && BreakBeforeOperator))
585 State.Stack.back().NoLineBreakInOperand = true;
586 }
587
Alexander Kornienko1f803962013-10-01 14:41:18 +0000588 State.Column += Spaces;
Daniel Jasper8acf8222014-05-07 09:23:05 +0000589 if (Current.isNot(tok::comment) && Previous.is(tok::l_paren) &&
Daniel Jasper11a0ac62014-12-12 09:40:58 +0000590 Previous.Previous &&
Daniel Jasper6a7d5a72017-06-19 07:40:49 +0000591 (Previous.Previous->isOneOf(tok::kw_if, tok::kw_for) ||
592 Previous.Previous->endsSequence(tok::kw_constexpr, tok::kw_if))) {
Alexander Kornienko1f803962013-10-01 14:41:18 +0000593 // Treat the condition inside an if as if it was a second function
Daniel Jasper6633ab82013-10-18 10:38:14 +0000594 // parameter, i.e. let nested calls have a continuation indent.
Daniel Jasper8acf8222014-05-07 09:23:05 +0000595 State.Stack.back().LastSpace = State.Column;
Daniel Jasper11a0ac62014-12-12 09:40:58 +0000596 State.Stack.back().NestedBlockIndent = State.Column;
597 } else if (!Current.isOneOf(tok::comment, tok::caret) &&
Daniel Jasper804a2762016-01-09 15:56:40 +0000598 ((Previous.is(tok::comma) &&
599 !Previous.is(TT_OverloadedOperator)) ||
Daniel Jasper11a0ac62014-12-12 09:40:58 +0000600 (Previous.is(tok::colon) && Previous.is(TT_ObjCMethodExpr)))) {
Alexander Kornienko1f803962013-10-01 14:41:18 +0000601 State.Stack.back().LastSpace = State.Column;
Francois Ferranda6b6d512017-05-24 11:36:58 +0000602 } else if (Previous.is(TT_CtorInitializerColon) &&
603 Style.BreakConstructorInitializers ==
604 FormatStyle::BCIS_AfterColon) {
605 State.Stack.back().Indent = State.Column;
606 State.Stack.back().LastSpace = State.Column;
Daniel Jasper11a0ac62014-12-12 09:40:58 +0000607 } else if ((Previous.isOneOf(TT_BinaryOperator, TT_ConditionalExpr,
608 TT_CtorInitializerColon)) &&
609 ((Previous.getPrecedence() != prec::Assignment &&
610 (Previous.isNot(tok::lessless) || Previous.OperatorIndex != 0 ||
Daniel Jasper00492f92016-01-05 13:03:50 +0000611 Previous.NextOperator)) ||
Daniel Jasper11a0ac62014-12-12 09:40:58 +0000612 Current.StartsBinaryExpression)) {
Daniel Jasper602a7272016-02-11 13:15:14 +0000613 // Indent relative to the RHS of the expression unless this is a simple
614 // assignment without binary expression on the RHS. Also indent relative to
615 // unary operators and the colons of constructor initializers.
Alexander Kornienko1f803962013-10-01 14:41:18 +0000616 State.Stack.back().LastSpace = State.Column;
Daniel Jasper11a0ac62014-12-12 09:40:58 +0000617 } else if (Previous.is(TT_InheritanceColon)) {
Alexander Kornienko1f803962013-10-01 14:41:18 +0000618 State.Stack.back().Indent = State.Column;
Daniel Jasperf9a5e402013-10-08 16:24:07 +0000619 State.Stack.back().LastSpace = State.Column;
620 } else if (Previous.opensScope()) {
Alexander Kornienko1f803962013-10-01 14:41:18 +0000621 // If a function has a trailing call, indent all parameters from the
622 // opening parenthesis. This avoids confusing indents like:
623 // OuterFunction(InnerFunctionCall( // break
624 // ParameterToInnerFunction)) // break
625 // .SecondInnerFunctionCall();
626 bool HasTrailingCall = false;
627 if (Previous.MatchingParen) {
628 const FormatToken *Next = Previous.MatchingParen->getNextNonComment();
629 HasTrailingCall = Next && Next->isMemberAccess();
630 }
Daniel Jasperd97d5d52015-02-17 09:58:03 +0000631 if (HasTrailingCall && State.Stack.size() > 1 &&
Alexander Kornienko1f803962013-10-01 14:41:18 +0000632 State.Stack[State.Stack.size() - 2].CallContinuation == 0)
633 State.Stack.back().LastSpace = State.Column;
634 }
635}
636
637unsigned ContinuationIndenter::addTokenOnNewLine(LineState &State,
638 bool DryRun) {
Manuel Klimek71814b42013-10-11 21:25:45 +0000639 FormatToken &Current = *State.NextToken;
Alexander Kornienko1f803962013-10-01 14:41:18 +0000640 const FormatToken &Previous = *State.NextToken->Previous;
Daniel Jasper9f388d02014-03-27 14:33:30 +0000641
Alexander Kornienko1f803962013-10-01 14:41:18 +0000642 // Extra penalty that needs to be added because of the way certain line
643 // breaks are chosen.
644 unsigned Penalty = 0;
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000645
Daniel Jaspera0407742014-02-11 10:08:11 +0000646 const FormatToken *PreviousNonComment = Current.getPreviousNonComment();
647 const FormatToken *NextNonComment = Previous.getNextNonComment();
648 if (!NextNonComment)
649 NextNonComment = &Current;
Daniel Jasper05cd5862014-05-08 12:21:30 +0000650 // The first line break on any NestingLevel causes an extra penalty in order
Alexander Kornienko1f803962013-10-01 14:41:18 +0000651 // prefer similar line breaks.
652 if (!State.Stack.back().ContainsLineBreak)
653 Penalty += 15;
654 State.Stack.back().ContainsLineBreak = true;
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000655
Alexander Kornienko1f803962013-10-01 14:41:18 +0000656 Penalty += State.NextToken->SplitPenalty;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000657
Alexander Kornienko1f803962013-10-01 14:41:18 +0000658 // Breaking before the first "<<" is generally not desirable if the LHS is
Daniel Jasper7aacf462016-12-19 11:14:23 +0000659 // short. Also always add the penalty if the LHS is split over multiple lines
Daniel Jasper2b7556e2014-04-03 12:00:27 +0000660 // to avoid unnecessary line breaks that just work around this penalty.
Daniel Jaspera0407742014-02-11 10:08:11 +0000661 if (NextNonComment->is(tok::lessless) &&
662 State.Stack.back().FirstLessLess == 0 &&
Daniel Jasper004177e2013-12-19 16:06:40 +0000663 (State.Column <= Style.ColumnLimit / 3 ||
Daniel Jasper48437ce2013-11-20 14:54:39 +0000664 State.Stack.back().BreakBeforeParameter))
Alexander Kornienko1f803962013-10-01 14:41:18 +0000665 Penalty += Style.PenaltyBreakFirstLessLess;
666
Daniel Jasper9f388d02014-03-27 14:33:30 +0000667 State.Column = getNewLineColumn(State);
Daniel Jaspered3f3952015-06-18 12:32:59 +0000668
669 // Indent nested blocks relative to this column, unless in a very specific
670 // JavaScript special case where:
671 //
672 // var loooooong_name =
673 // function() {
674 // // code
675 // }
676 //
Daniel Jasper87448c52016-06-13 07:48:45 +0000677 // is common and should be formatted like a free-standing function. The same
678 // goes for wrapping before the lambda return type arrow.
679 if (!Current.is(TT_LambdaArrow) &&
680 (Style.Language != FormatStyle::LK_JavaScript ||
681 Current.NestingLevel != 0 || !PreviousNonComment ||
682 !PreviousNonComment->is(tok::equal) ||
683 !Current.isOneOf(Keywords.kw_async, Keywords.kw_function)))
Daniel Jaspered3f3952015-06-18 12:32:59 +0000684 State.Stack.back().NestedBlockIndent = State.Column;
685
Daniel Jasper9f388d02014-03-27 14:33:30 +0000686 if (NextNonComment->isMemberAccess()) {
687 if (State.Stack.back().CallContinuation == 0)
Alexander Kornienko1f803962013-10-01 14:41:18 +0000688 State.Stack.back().CallContinuation = State.Column;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000689 } else if (NextNonComment->is(TT_SelectorName)) {
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000690 if (!State.Stack.back().ObjCSelectorNameFound) {
Daniel Jaspera0407742014-02-11 10:08:11 +0000691 if (NextNonComment->LongestObjCSelectorName == 0) {
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000692 State.Stack.back().AlignColons = false;
693 } else {
694 State.Stack.back().ColonPos =
Daniel Jaspera2a4d9c2015-05-13 09:38:25 +0000695 (Style.IndentWrappedFunctionNames
696 ? std::max(State.Stack.back().Indent,
697 State.FirstIndent + Style.ContinuationIndentWidth)
698 : State.Stack.back().Indent) +
699 NextNonComment->LongestObjCSelectorName;
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000700 }
Daniel Jasper9f388d02014-03-27 14:33:30 +0000701 } else if (State.Stack.back().AlignColons &&
702 State.Stack.back().ColonPos <= NextNonComment->ColumnWidth) {
Daniel Jaspera0407742014-02-11 10:08:11 +0000703 State.Stack.back().ColonPos = State.Column + NextNonComment->ColumnWidth;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000704 }
Daniel Jasper1fd6f1f2014-03-17 14:32:47 +0000705 } else if (PreviousNonComment && PreviousNonComment->is(tok::colon) &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000706 PreviousNonComment->isOneOf(TT_ObjCMethodExpr, TT_DictLiteral)) {
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000707 // FIXME: This is hacky, find a better way. The problem is that in an ObjC
708 // method expression, the block should be aligned to the line starting it,
709 // e.g.:
710 // [aaaaaaaaaaaaaaa aaaaaaaaa: \\ break for some reason
711 // ^(int *i) {
712 // // ...
713 // }];
Daniel Jasper05cd5862014-05-08 12:21:30 +0000714 // Thus, we set LastSpace of the next higher NestingLevel, to which we move
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000715 // when we consume all of the "}"'s FakeRParens at the "{".
Daniel Jasper9a26e772013-12-23 11:25:40 +0000716 if (State.Stack.size() > 1)
Daniel Jasper9f388d02014-03-27 14:33:30 +0000717 State.Stack[State.Stack.size() - 2].LastSpace =
718 std::max(State.Stack.back().LastSpace, State.Stack.back().Indent) +
719 Style.ContinuationIndentWidth;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000720 }
721
Daniel Jasper35e41222016-11-29 09:40:01 +0000722 if ((PreviousNonComment &&
723 PreviousNonComment->isOneOf(tok::comma, tok::semi) &&
Alexander Kornienko1f803962013-10-01 14:41:18 +0000724 !State.Stack.back().AvoidBinPacking) ||
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000725 Previous.is(TT_BinaryOperator))
Alexander Kornienko1f803962013-10-01 14:41:18 +0000726 State.Stack.back().BreakBeforeParameter = false;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000727 if (Previous.isOneOf(TT_TemplateCloser, TT_JavaAnnotation) &&
Daniel Jasper39af6cd2014-11-03 02:27:28 +0000728 Current.NestingLevel == 0)
Alexander Kornienko1f803962013-10-01 14:41:18 +0000729 State.Stack.back().BreakBeforeParameter = false;
Daniel Jaspera0407742014-02-11 10:08:11 +0000730 if (NextNonComment->is(tok::question) ||
Daniel Jasper165b29e2013-11-08 00:57:11 +0000731 (PreviousNonComment && PreviousNonComment->is(tok::question)))
732 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasper5962fa82015-06-03 09:26:03 +0000733 if (Current.is(TT_BinaryOperator) && Current.CanBreakBefore)
734 State.Stack.back().BreakBeforeParameter = false;
Alexander Kornienko1f803962013-10-01 14:41:18 +0000735
736 if (!DryRun) {
Martin Probsta004b3f2017-11-17 18:06:33 +0000737 unsigned MaxEmptyLinesToKeep = Style.MaxEmptyLinesToKeep + 1;
738 if (Current.is(tok::r_brace) && Current.MatchingParen &&
739 // Only strip trailing empty lines for l_braces that have children, i.e.
740 // for function expressions (lambdas, arrows, etc).
741 !Current.MatchingParen->Children.empty()) {
742 // lambdas and arrow functions are expressions, thus their r_brace is not
743 // on its own line, and thus not covered by UnwrappedLineFormatter's logic
744 // about removing empty lines on closing blocks. Special case them here.
745 MaxEmptyLinesToKeep = 1;
746 }
Daniel Jaspera69ca9b2014-06-04 12:40:57 +0000747 unsigned Newlines = std::max(
Martin Probsta004b3f2017-11-17 18:06:33 +0000748 1u, std::min(Current.NewlinesBefore, MaxEmptyLinesToKeep));
Krasimir Georgieva1c30932017-05-19 10:34:57 +0000749 bool ContinuePPDirective =
750 State.Line->InPPDirective && State.Line->Type != LT_ImportStatement;
Daniel Jasper7d42f3f2017-01-31 11:25:01 +0000751 Whitespaces.replaceWhitespace(Current, Newlines, State.Column, State.Column,
Krasimir Georgieva1c30932017-05-19 10:34:57 +0000752 ContinuePPDirective);
Alexander Kornienko1f803962013-10-01 14:41:18 +0000753 }
754
755 if (!Current.isTrailingComment())
756 State.Stack.back().LastSpace = State.Column;
Daniel Jasper602a7272016-02-11 13:15:14 +0000757 if (Current.is(tok::lessless))
758 // If we are breaking before a "<<", we always want to indent relative to
759 // RHS. This is necessary only for "<<", as we special-case it and don't
760 // always indent relative to the RHS.
761 State.Stack.back().LastSpace += 3; // 3 -> width of "<< ".
762
Daniel Jasper05cd5862014-05-08 12:21:30 +0000763 State.StartOfLineLevel = Current.NestingLevel;
764 State.LowestLevelOnLine = Current.NestingLevel;
Alexander Kornienko1f803962013-10-01 14:41:18 +0000765
766 // Any break on this level means that the parent level has been broken
767 // and we need to avoid bin packing there.
Daniel Jasper4b444492014-11-21 13:38:53 +0000768 bool NestedBlockSpecialCase =
Daniel Jasper1dbc2102017-03-31 13:30:24 +0000769 !Style.isCpp() && Current.is(tok::r_brace) && State.Stack.size() > 1 &&
Daniel Jasper4b444492014-11-21 13:38:53 +0000770 State.Stack[State.Stack.size() - 2].NestedBlockInlined;
Daniel Jasper1699eca2015-06-01 09:56:32 +0000771 if (!NestedBlockSpecialCase)
772 for (unsigned i = 0, e = State.Stack.size() - 1; i != e; ++i)
Daniel Jasperb16b9692014-05-21 12:51:23 +0000773 State.Stack[i].BreakBeforeParameter = true;
Daniel Jasperb16b9692014-05-21 12:51:23 +0000774
Daniel Jasper9e5ede02013-11-08 19:56:28 +0000775 if (PreviousNonComment &&
Francois Ferranda6b6d512017-05-24 11:36:58 +0000776 !PreviousNonComment->isOneOf(tok::comma, tok::colon, tok::semi) &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000777 (PreviousNonComment->isNot(TT_TemplateCloser) ||
Daniel Jasper6c0ee172014-11-14 13:14:45 +0000778 Current.NestingLevel != 0) &&
Daniel Jasper47bbda02015-05-18 13:47:23 +0000779 !PreviousNonComment->isOneOf(
780 TT_BinaryOperator, TT_FunctionAnnotationRParen, TT_JavaAnnotation,
781 TT_LeadingJavaAnnotation) &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000782 Current.isNot(TT_BinaryOperator) && !PreviousNonComment->opensScope())
Alexander Kornienko1f803962013-10-01 14:41:18 +0000783 State.Stack.back().BreakBeforeParameter = true;
784
Daniel Jasper1db6c382013-10-22 15:30:28 +0000785 // If we break after { or the [ of an array initializer, we should also break
786 // before the corresponding } or ].
Daniel Jasper90818052014-06-10 10:42:26 +0000787 if (PreviousNonComment &&
Daniel Jasper98e0b122017-02-20 14:51:16 +0000788 (PreviousNonComment->isOneOf(tok::l_brace, TT_ArrayInitializerLSquare) ||
Martin Probstc10d97f2017-08-29 08:30:07 +0000789 opensProtoMessageField(*PreviousNonComment, Style)))
Alexander Kornienko1f803962013-10-01 14:41:18 +0000790 State.Stack.back().BreakBeforeClosingBrace = true;
791
792 if (State.Stack.back().AvoidBinPacking) {
793 // If we are breaking after '(', '{', '<', this is not bin packing
Daniel Jasper2a958322014-05-21 13:26:58 +0000794 // unless AllowAllParametersOfDeclarationOnNextLine is false or this is a
795 // dict/object literal.
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000796 if (!Previous.isOneOf(tok::l_paren, tok::l_brace, TT_BinaryOperator) ||
Alexander Kornienko1f803962013-10-01 14:41:18 +0000797 (!Style.AllowAllParametersOfDeclarationOnNextLine &&
Daniel Jasper2a958322014-05-21 13:26:58 +0000798 State.Line->MustBeDeclaration) ||
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000799 Previous.is(TT_DictLiteral))
Alexander Kornienko1f803962013-10-01 14:41:18 +0000800 State.Stack.back().BreakBeforeParameter = true;
801 }
802
803 return Penalty;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000804}
805
Daniel Jasper9f388d02014-03-27 14:33:30 +0000806unsigned ContinuationIndenter::getNewLineColumn(const LineState &State) {
Daniel Jasper5d2587d2014-03-27 16:14:13 +0000807 if (!State.NextToken || !State.NextToken->Previous)
808 return 0;
Daniel Jasper9f388d02014-03-27 14:33:30 +0000809 FormatToken &Current = *State.NextToken;
Daniel Jasper4281c5a2014-10-07 14:45:34 +0000810 const FormatToken &Previous = *Current.Previous;
Daniel Jasper9f388d02014-03-27 14:33:30 +0000811 // If we are continuing an expression, we want to use the continuation indent.
812 unsigned ContinuationIndent =
813 std::max(State.Stack.back().LastSpace, State.Stack.back().Indent) +
814 Style.ContinuationIndentWidth;
815 const FormatToken *PreviousNonComment = Current.getPreviousNonComment();
816 const FormatToken *NextNonComment = Previous.getNextNonComment();
817 if (!NextNonComment)
818 NextNonComment = &Current;
Daniel Jasper50b4bd72014-11-02 19:16:41 +0000819
820 // Java specific bits.
Daniel Jasperd0ec0d62014-11-04 12:41:02 +0000821 if (Style.Language == FormatStyle::LK_Java &&
822 Current.isOneOf(Keywords.kw_implements, Keywords.kw_extends))
Daniel Jasper50b4bd72014-11-02 19:16:41 +0000823 return std::max(State.Stack.back().LastSpace,
824 State.Stack.back().Indent + Style.ContinuationIndentWidth);
825
Daniel Jasperb05a81d2014-05-09 13:11:16 +0000826 if (NextNonComment->is(tok::l_brace) && NextNonComment->BlockKind == BK_Block)
Daniel Jasper05cd5862014-05-08 12:21:30 +0000827 return Current.NestingLevel == 0 ? State.FirstIndent
828 : State.Stack.back().Indent;
Krasimir Georgievff747be2017-06-27 13:43:07 +0000829 if ((Current.isOneOf(tok::r_brace, tok::r_square) ||
Krasimir Georgiev26b144c2017-07-03 15:05:14 +0000830 (Current.is(tok::greater) &&
831 (Style.Language == FormatStyle::LK_Proto ||
832 Style.Language == FormatStyle::LK_TextProto))) &&
Krasimir Georgievff747be2017-06-27 13:43:07 +0000833 State.Stack.size() > 1) {
Daniel Jasperbd73bcf2015-10-27 13:42:08 +0000834 if (Current.closesBlockOrBlockTypeList(Style))
Daniel Jasper11a0ac62014-12-12 09:40:58 +0000835 return State.Stack[State.Stack.size() - 2].NestedBlockIndent;
836 if (Current.MatchingParen &&
837 Current.MatchingParen->BlockKind == BK_BracedInit)
Daniel Jasper9f388d02014-03-27 14:33:30 +0000838 return State.Stack[State.Stack.size() - 2].LastSpace;
Daniel Jasper24a14772014-12-10 17:24:34 +0000839 return State.FirstIndent;
Daniel Jasper9f388d02014-03-27 14:33:30 +0000840 }
Martin Probstb2f06ea2017-05-29 07:50:52 +0000841 // Indent a closing parenthesis at the previous level if followed by a semi or
842 // opening brace. This allows indentations such as:
843 // foo(
844 // a,
845 // );
846 // function foo(
847 // a,
848 // ) {
849 // code(); //
850 // }
851 if (Current.is(tok::r_paren) && State.Stack.size() > 1 &&
852 (!Current.Next || Current.Next->isOneOf(tok::semi, tok::l_brace)))
Martin Probst2c1cdae2017-05-15 11:15:29 +0000853 return State.Stack[State.Stack.size() - 2].LastSpace;
Daniel Jasper98e0b122017-02-20 14:51:16 +0000854 if (NextNonComment->is(TT_TemplateString) && NextNonComment->closesScope())
855 return State.Stack[State.Stack.size() - 2].LastSpace;
Daniel Jasper783bac62014-04-15 09:54:30 +0000856 if (Current.is(tok::identifier) && Current.Next &&
Krasimir Georgievddb19242017-08-03 14:17:29 +0000857 (Current.Next->is(TT_DictLiteral) ||
858 ((Style.Language == FormatStyle::LK_Proto ||
859 Style.Language == FormatStyle::LK_TextProto) &&
860 Current.Next->isOneOf(TT_TemplateOpener, tok::l_brace))))
Daniel Jasper783bac62014-04-15 09:54:30 +0000861 return State.Stack.back().Indent;
Daniel Jasper09285532015-05-17 08:13:23 +0000862 if (NextNonComment->is(TT_ObjCStringLiteral) &&
863 State.StartOfStringLiteral != 0)
864 return State.StartOfStringLiteral - 1;
Alexander Kornienkod4fa2e62017-04-11 09:55:00 +0000865 if (NextNonComment->isStringLiteral() && State.StartOfStringLiteral != 0)
866 return State.StartOfStringLiteral;
Daniel Jasper9f388d02014-03-27 14:33:30 +0000867 if (NextNonComment->is(tok::lessless) &&
868 State.Stack.back().FirstLessLess != 0)
869 return State.Stack.back().FirstLessLess;
870 if (NextNonComment->isMemberAccess()) {
Daniel Jasper24a14772014-12-10 17:24:34 +0000871 if (State.Stack.back().CallContinuation == 0)
Daniel Jasper9f388d02014-03-27 14:33:30 +0000872 return ContinuationIndent;
Daniel Jasper24a14772014-12-10 17:24:34 +0000873 return State.Stack.back().CallContinuation;
Daniel Jasper9f388d02014-03-27 14:33:30 +0000874 }
875 if (State.Stack.back().QuestionColumn != 0 &&
Daniel Jasperc0d606a2014-04-14 11:08:45 +0000876 ((NextNonComment->is(tok::colon) &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000877 NextNonComment->is(TT_ConditionalExpr)) ||
878 Previous.is(TT_ConditionalExpr)))
Daniel Jasper9f388d02014-03-27 14:33:30 +0000879 return State.Stack.back().QuestionColumn;
880 if (Previous.is(tok::comma) && State.Stack.back().VariablePos != 0)
881 return State.Stack.back().VariablePos;
Daniel Jaspere9ab42d2014-10-31 18:23:49 +0000882 if ((PreviousNonComment &&
883 (PreviousNonComment->ClosesTemplateDeclaration ||
Daniel Jasper47bbda02015-05-18 13:47:23 +0000884 PreviousNonComment->isOneOf(
885 TT_AttributeParen, TT_FunctionAnnotationRParen, TT_JavaAnnotation,
886 TT_LeadingJavaAnnotation))) ||
Daniel Jasperc75e1ef2014-07-09 08:42:42 +0000887 (!Style.IndentWrappedFunctionNames &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000888 NextNonComment->isOneOf(tok::kw_operator, TT_FunctionDeclarationName)))
Daniel Jasper9f388d02014-03-27 14:33:30 +0000889 return std::max(State.Stack.back().LastSpace, State.Stack.back().Indent);
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000890 if (NextNonComment->is(TT_SelectorName)) {
Daniel Jasper9f388d02014-03-27 14:33:30 +0000891 if (!State.Stack.back().ObjCSelectorNameFound) {
Daniel Jasper24a14772014-12-10 17:24:34 +0000892 if (NextNonComment->LongestObjCSelectorName == 0)
Daniel Jasper9f388d02014-03-27 14:33:30 +0000893 return State.Stack.back().Indent;
Daniel Jaspera2a4d9c2015-05-13 09:38:25 +0000894 return (Style.IndentWrappedFunctionNames
895 ? std::max(State.Stack.back().Indent,
896 State.FirstIndent + Style.ContinuationIndentWidth)
897 : State.Stack.back().Indent) +
Daniel Jasper24a14772014-12-10 17:24:34 +0000898 NextNonComment->LongestObjCSelectorName -
899 NextNonComment->ColumnWidth;
Daniel Jasper9f388d02014-03-27 14:33:30 +0000900 }
Daniel Jasper24a14772014-12-10 17:24:34 +0000901 if (!State.Stack.back().AlignColons)
902 return State.Stack.back().Indent;
903 if (State.Stack.back().ColonPos > NextNonComment->ColumnWidth)
904 return State.Stack.back().ColonPos - NextNonComment->ColumnWidth;
905 return State.Stack.back().Indent;
Daniel Jasper9f388d02014-03-27 14:33:30 +0000906 }
Daniel Jasperfd36f0b2016-11-12 07:38:22 +0000907 if (NextNonComment->is(tok::colon) && NextNonComment->is(TT_ObjCMethodExpr))
908 return State.Stack.back().ColonPos;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000909 if (NextNonComment->is(TT_ArraySubscriptLSquare)) {
Daniel Jasper9f388d02014-03-27 14:33:30 +0000910 if (State.Stack.back().StartOfArraySubscripts != 0)
911 return State.Stack.back().StartOfArraySubscripts;
Daniel Jasper24a14772014-12-10 17:24:34 +0000912 return ContinuationIndent;
Daniel Jasper9f388d02014-03-27 14:33:30 +0000913 }
Daniel Jasper9c950132015-05-07 14:19:59 +0000914
915 // This ensure that we correctly format ObjC methods calls without inputs,
916 // i.e. where the last element isn't selector like: [callee method];
917 if (NextNonComment->is(tok::identifier) && NextNonComment->FakeRParens == 0 &&
918 NextNonComment->Next && NextNonComment->Next->is(TT_ObjCMethodExpr))
Daniel Jaspereb536682015-05-06 12:48:06 +0000919 return State.Stack.back().Indent;
Daniel Jasper9c950132015-05-07 14:19:59 +0000920
Daniel Jasperb754a742015-03-12 15:04:53 +0000921 if (NextNonComment->isOneOf(TT_StartOfName, TT_PointerOrReference) ||
Daniel Jasperb2328b12015-07-06 14:07:51 +0000922 Previous.isOneOf(tok::coloncolon, tok::equal, TT_JsTypeColon))
Daniel Jasper9f388d02014-03-27 14:33:30 +0000923 return ContinuationIndent;
Daniel Jasper9f388d02014-03-27 14:33:30 +0000924 if (PreviousNonComment && PreviousNonComment->is(tok::colon) &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000925 PreviousNonComment->isOneOf(TT_ObjCMethodExpr, TT_DictLiteral))
Daniel Jasper9f388d02014-03-27 14:33:30 +0000926 return ContinuationIndent;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000927 if (NextNonComment->is(TT_CtorInitializerComma))
Daniel Jasper9f388d02014-03-27 14:33:30 +0000928 return State.Stack.back().Indent;
Francois Ferranda6b6d512017-05-24 11:36:58 +0000929 if (PreviousNonComment && PreviousNonComment->is(TT_CtorInitializerColon) &&
930 Style.BreakConstructorInitializers == FormatStyle::BCIS_AfterColon)
931 return State.Stack.back().Indent;
Andi-Bogdan Postelnicu0ef8ee12017-03-10 15:10:37 +0000932 if (NextNonComment->isOneOf(TT_CtorInitializerColon, TT_InheritanceColon,
933 TT_InheritanceComma))
934 return State.FirstIndent + Style.ConstructorInitializerIndentWidth;
Daniel Jasper316ab382014-08-06 13:14:58 +0000935 if (Previous.is(tok::r_paren) && !Current.isBinaryOperator() &&
Daniel Jasper119ff532014-11-14 12:31:14 +0000936 !Current.isOneOf(tok::colon, tok::comment))
Daniel Jasper316ab382014-08-06 13:14:58 +0000937 return ContinuationIndent;
Daniel Jasper5d2587d2014-03-27 16:14:13 +0000938 if (State.Stack.back().Indent == State.FirstIndent && PreviousNonComment &&
Daniel Jasper9f388d02014-03-27 14:33:30 +0000939 PreviousNonComment->isNot(tok::r_brace))
940 // Ensure that we fall back to the continuation indent width instead of
941 // just flushing continuations left.
942 return State.Stack.back().Indent + Style.ContinuationIndentWidth;
943 return State.Stack.back().Indent;
944}
945
Daniel Jasperde0328a2013-08-16 11:20:30 +0000946unsigned ContinuationIndenter::moveStateToNextToken(LineState &State,
947 bool DryRun, bool Newline) {
Daniel Jasperde0328a2013-08-16 11:20:30 +0000948 assert(State.Stack.size());
Daniel Jasper60553be2014-05-26 13:10:39 +0000949 const FormatToken &Current = *State.NextToken;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000950
Daniel Jasper240527c2017-01-16 13:13:15 +0000951 if (Current.isOneOf(tok::comma, TT_BinaryOperator))
952 State.Stack.back().NoLineBreakInOperand = false;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000953 if (Current.is(TT_InheritanceColon))
Daniel Jasperde0328a2013-08-16 11:20:30 +0000954 State.Stack.back().AvoidBinPacking = true;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000955 if (Current.is(tok::lessless) && Current.isNot(TT_OverloadedOperator)) {
Daniel Jasperc0d606a2014-04-14 11:08:45 +0000956 if (State.Stack.back().FirstLessLess == 0)
957 State.Stack.back().FirstLessLess = State.Column;
958 else
959 State.Stack.back().LastOperatorWrapped = Newline;
960 }
Daniel Jasper240527c2017-01-16 13:13:15 +0000961 if (Current.is(TT_BinaryOperator) && Current.isNot(tok::lessless))
962 State.Stack.back().LastOperatorWrapped = Newline;
963 if (Current.is(TT_ConditionalExpr) && Current.Previous &&
964 !Current.Previous->is(TT_ConditionalExpr))
Daniel Jasperc0d606a2014-04-14 11:08:45 +0000965 State.Stack.back().LastOperatorWrapped = Newline;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000966 if (Current.is(TT_ArraySubscriptLSquare) &&
Daniel Jasperde0328a2013-08-16 11:20:30 +0000967 State.Stack.back().StartOfArraySubscripts == 0)
968 State.Stack.back().StartOfArraySubscripts = State.Column;
Daniel Jasper45860fa2016-02-03 17:27:10 +0000969 if (Style.BreakBeforeTernaryOperators && Current.is(tok::question))
Daniel Jasperde0328a2013-08-16 11:20:30 +0000970 State.Stack.back().QuestionColumn = State.Column;
Daniel Jasper45860fa2016-02-03 17:27:10 +0000971 if (!Style.BreakBeforeTernaryOperators && Current.isNot(tok::colon)) {
972 const FormatToken *Previous = Current.Previous;
973 while (Previous && Previous->isTrailingComment())
974 Previous = Previous->Previous;
975 if (Previous && Previous->is(tok::question))
976 State.Stack.back().QuestionColumn = State.Column;
977 }
Daniel Jaspercab46172017-04-24 14:28:49 +0000978 if (!Current.opensScope() && !Current.closesScope() &&
979 !Current.is(TT_PointerOrReference))
Daniel Jasperde0328a2013-08-16 11:20:30 +0000980 State.LowestLevelOnLine =
Daniel Jasper05cd5862014-05-08 12:21:30 +0000981 std::min(State.LowestLevelOnLine, Current.NestingLevel);
Daniel Jasper4c6e0052013-08-27 14:24:43 +0000982 if (Current.isMemberAccess())
Daniel Jasperde0328a2013-08-16 11:20:30 +0000983 State.Stack.back().StartOfFunctionCall =
Daniel Jasper00492f92016-01-05 13:03:50 +0000984 !Current.NextOperator ? 0 : State.Column;
Daniel Jasper3c44c222015-07-16 22:58:24 +0000985 if (Current.is(TT_SelectorName)) {
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000986 State.Stack.back().ObjCSelectorNameFound = true;
Daniel Jasper3c44c222015-07-16 22:58:24 +0000987 if (Style.IndentWrappedFunctionNames) {
988 State.Stack.back().Indent =
989 State.FirstIndent + Style.ContinuationIndentWidth;
990 }
991 }
Francois Ferranda6b6d512017-05-24 11:36:58 +0000992 if (Current.is(TT_CtorInitializerColon) &&
993 Style.BreakConstructorInitializers != FormatStyle::BCIS_AfterColon) {
Daniel Jasperde0328a2013-08-16 11:20:30 +0000994 // Indent 2 from the column, so:
995 // SomeClass::SomeClass()
996 // : First(...), ...
997 // Next(...)
998 // ^ line up here.
999 State.Stack.back().Indent =
Manuel Klimek89628f62017-09-20 09:51:03 +00001000 State.Column +
1001 (Style.BreakConstructorInitializers == FormatStyle::BCIS_BeforeComma
1002 ? 0
1003 : 2);
Daniel Jasperd6a1cab2015-01-12 10:23:24 +00001004 State.Stack.back().NestedBlockIndent = State.Stack.back().Indent;
Daniel Jasperde0328a2013-08-16 11:20:30 +00001005 if (Style.ConstructorInitializerAllOnOneLineOrOnePerLine)
1006 State.Stack.back().AvoidBinPacking = true;
1007 State.Stack.back().BreakBeforeParameter = false;
1008 }
Francois Ferranda6b6d512017-05-24 11:36:58 +00001009 if (Current.is(TT_CtorInitializerColon) &&
1010 Style.BreakConstructorInitializers == FormatStyle::BCIS_AfterColon) {
1011 State.Stack.back().Indent =
1012 State.FirstIndent + Style.ConstructorInitializerIndentWidth;
1013 State.Stack.back().NestedBlockIndent = State.Stack.back().Indent;
1014 if (Style.ConstructorInitializerAllOnOneLineOrOnePerLine)
Manuel Klimek89628f62017-09-20 09:51:03 +00001015 State.Stack.back().AvoidBinPacking = true;
Francois Ferranda6b6d512017-05-24 11:36:58 +00001016 }
Andi-Bogdan Postelnicu0ef8ee12017-03-10 15:10:37 +00001017 if (Current.is(TT_InheritanceColon))
1018 State.Stack.back().Indent =
1019 State.FirstIndent + Style.ContinuationIndentWidth;
Daniel Jasperc4144ea2015-05-13 16:09:21 +00001020 if (Current.isOneOf(TT_BinaryOperator, TT_ConditionalExpr) && Newline)
1021 State.Stack.back().NestedBlockIndent =
1022 State.Column + Current.ColumnWidth + 1;
Daniel Jasperd9b319e2017-02-20 12:43:48 +00001023 if (Current.isOneOf(TT_LambdaLSquare, TT_LambdaArrow))
1024 State.Stack.back().LastSpace = State.Column;
Daniel Jasperde0328a2013-08-16 11:20:30 +00001025
Daniel Jasperde0328a2013-08-16 11:20:30 +00001026 // Insert scopes created by fake parenthesis.
1027 const FormatToken *Previous = Current.getPreviousNonComment();
Daniel Jasperb16b9692014-05-21 12:51:23 +00001028
1029 // Add special behavior to support a format commonly used for JavaScript
1030 // closures:
1031 // SomeFunction(function() {
1032 // foo();
1033 // bar();
1034 // }, a, b, c);
Daniel Jasperb2ad4d42015-06-15 09:23:17 +00001035 if (Current.isNot(tok::comment) && Previous &&
1036 Previous->isOneOf(tok::l_brace, TT_ArrayInitializerLSquare) &&
Daniel Jasperccff4d12016-01-04 07:27:33 +00001037 !Previous->is(TT_DictLiteral) && State.Stack.size() > 1) {
Daniel Jasper1699eca2015-06-01 09:56:32 +00001038 if (State.Stack[State.Stack.size() - 2].NestedBlockInlined && Newline)
1039 for (unsigned i = 0, e = State.Stack.size() - 1; i != e; ++i)
Daniel Jasper4b444492014-11-21 13:38:53 +00001040 State.Stack[i].NoLineBreak = true;
Daniel Jasper4b444492014-11-21 13:38:53 +00001041 State.Stack[State.Stack.size() - 2].NestedBlockInlined = false;
1042 }
Manuel Klimek89628f62017-09-20 09:51:03 +00001043 if (Previous &&
1044 (Previous->isOneOf(tok::l_paren, tok::comma, tok::colon) ||
1045 Previous->isOneOf(TT_BinaryOperator, TT_ConditionalExpr)) &&
Daniel Jasper4b444492014-11-21 13:38:53 +00001046 !Previous->isOneOf(TT_DictLiteral, TT_ObjCMethodExpr)) {
1047 State.Stack.back().NestedBlockInlined =
1048 !Newline &&
Daniel Jasper11a0ac62014-12-12 09:40:58 +00001049 (Previous->isNot(tok::l_paren) || Previous->ParameterCount > 1);
Daniel Jasperb16b9692014-05-21 12:51:23 +00001050 }
1051
Daniel Jasper60553be2014-05-26 13:10:39 +00001052 moveStatePastFakeLParens(State, Newline);
Daniel Jasper60553be2014-05-26 13:10:39 +00001053 moveStatePastScopeCloser(State);
Manuel Klimek45ab5592017-11-14 09:19:53 +00001054 bool AllowBreak = !State.Stack.back().NoLineBreak &&
1055 !State.Stack.back().NoLineBreakInOperand;
Daniel Jasperc06f6da2017-02-03 14:32:38 +00001056 moveStatePastScopeOpener(State, Newline);
Daniel Jasper60553be2014-05-26 13:10:39 +00001057 moveStatePastFakeRParens(State);
1058
Daniel Jasper09285532015-05-17 08:13:23 +00001059 if (Current.is(TT_ObjCStringLiteral) && State.StartOfStringLiteral == 0)
1060 State.StartOfStringLiteral = State.Column + 1;
Alexander Kornienkod4fa2e62017-04-11 09:55:00 +00001061 else if (Current.isStringLiteral() && State.StartOfStringLiteral == 0)
1062 State.StartOfStringLiteral = State.Column;
Daniel Jasper09285532015-05-17 08:13:23 +00001063 else if (!Current.isOneOf(tok::comment, tok::identifier, tok::hash) &&
Daniel Jaspere6fcf7d2015-06-17 13:08:06 +00001064 !Current.isStringLiteral())
Daniel Jasper60553be2014-05-26 13:10:39 +00001065 State.StartOfStringLiteral = 0;
Daniel Jasper60553be2014-05-26 13:10:39 +00001066
1067 State.Column += Current.ColumnWidth;
1068 State.NextToken = State.NextToken->Next;
Manuel Klimek45ab5592017-11-14 09:19:53 +00001069
1070 unsigned Penalty =
1071 handleEndOfLine(Current, State, DryRun, AllowBreak);
Daniel Jasper60553be2014-05-26 13:10:39 +00001072
1073 if (Current.Role)
1074 Current.Role->formatFromToken(State, this, DryRun);
1075 // If the previous has a special role, let it consume tokens as appropriate.
1076 // It is necessary to start at the previous token for the only implemented
1077 // role (comma separated list). That way, the decision whether or not to break
1078 // after the "{" is already done and both options are tried and evaluated.
1079 // FIXME: This is ugly, find a better way.
1080 if (Previous && Previous->Role)
1081 Penalty += Previous->Role->formatAfterToken(State, this, DryRun);
1082
1083 return Penalty;
1084}
1085
1086void ContinuationIndenter::moveStatePastFakeLParens(LineState &State,
1087 bool Newline) {
1088 const FormatToken &Current = *State.NextToken;
1089 const FormatToken *Previous = Current.getPreviousNonComment();
1090
Daniel Jasperde0328a2013-08-16 11:20:30 +00001091 // Don't add extra indentation for the first fake parenthesis after
Dinesh Dwivedi0db806b2014-05-01 17:19:34 +00001092 // 'return', assignments or opening <({[. The indentation for these cases
Daniel Jasperde0328a2013-08-16 11:20:30 +00001093 // is special cased.
1094 bool SkipFirstExtraIndent =
Daniel Jasper98f8ae32015-03-06 10:57:12 +00001095 (Previous && (Previous->opensScope() ||
1096 Previous->isOneOf(tok::semi, tok::kw_return) ||
Daniel Jasper3219e432014-12-02 13:24:51 +00001097 (Previous->getPrecedence() == prec::Assignment &&
1098 Style.AlignOperands) ||
Daniel Jaspera98b7b02014-11-25 10:05:17 +00001099 Previous->is(TT_ObjCMethodExpr)));
Daniel Jasperde0328a2013-08-16 11:20:30 +00001100 for (SmallVectorImpl<prec::Level>::const_reverse_iterator
1101 I = Current.FakeLParens.rbegin(),
1102 E = Current.FakeLParens.rend();
1103 I != E; ++I) {
1104 ParenState NewParenState = State.Stack.back();
1105 NewParenState.ContainsLineBreak = false;
Daniel Jasper04bbda92017-03-16 07:54:11 +00001106 NewParenState.LastOperatorWrapped = true;
Daniel Jasper240527c2017-01-16 13:13:15 +00001107 NewParenState.NoLineBreak =
1108 NewParenState.NoLineBreak || State.Stack.back().NoLineBreakInOperand;
Daniel Jaspereabede62013-09-30 08:29:03 +00001109
Daniel Jasper988e7e42017-05-08 15:07:52 +00001110 // Don't propagate AvoidBinPacking into subexpressions of arg/param lists.
1111 if (*I > prec::Comma)
1112 NewParenState.AvoidBinPacking = false;
1113
Daniel Jasper3aa9a6a2014-11-18 23:55:27 +00001114 // Indent from 'LastSpace' unless these are fake parentheses encapsulating
1115 // a builder type call after 'return' or, if the alignment after opening
1116 // brackets is disabled.
Daniel Jasper4281c5a2014-10-07 14:45:34 +00001117 if (!Current.isTrailingComment() &&
Daniel Jasper3219e432014-12-02 13:24:51 +00001118 (Style.AlignOperands || *I < prec::Assignment) &&
Daniel Jasper6cab6782014-11-20 09:54:49 +00001119 (!Previous || Previous->isNot(tok::kw_return) ||
1120 (Style.Language != FormatStyle::LK_Java && *I > 0)) &&
Daniel Jasper6501f7e2015-10-27 12:38:37 +00001121 (Style.AlignAfterOpenBracket != FormatStyle::BAS_DontAlign ||
1122 *I != prec::Comma || Current.NestingLevel == 0))
Daniel Jaspereabede62013-09-30 08:29:03 +00001123 NewParenState.Indent =
1124 std::max(std::max(State.Column, NewParenState.Indent),
1125 State.Stack.back().LastSpace);
1126
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +00001127 // Do not indent relative to the fake parentheses inserted for "." or "->".
1128 // This is a special case to make the following to statements consistent:
1129 // OuterFunction(InnerFunctionCall( // break
1130 // ParameterToInnerFunction));
1131 // OuterFunction(SomeObject.InnerFunctionCall( // break
1132 // ParameterToInnerFunction));
1133 if (*I > prec::Unknown)
1134 NewParenState.LastSpace = std::max(NewParenState.LastSpace, State.Column);
Daniel Jasper2a9f7202016-02-08 09:52:54 +00001135 if (*I != prec::Conditional && !Current.is(TT_UnaryOperator) &&
1136 Style.AlignAfterOpenBracket != FormatStyle::BAS_DontAlign)
Daniel Jaspera536df42014-12-08 21:28:31 +00001137 NewParenState.StartOfFunctionCall = State.Column;
Daniel Jasperde0328a2013-08-16 11:20:30 +00001138
1139 // Always indent conditional expressions. Never indent expression where
1140 // the 'operator' is ',', ';' or an assignment (i.e. *I <=
1141 // prec::Assignment) as those have different indentation rules. Indent
1142 // other expression, unless the indentation needs to be skipped.
1143 if (*I == prec::Conditional ||
1144 (!SkipFirstExtraIndent && *I > prec::Assignment &&
Daniel Jasper8c6e9ef2014-12-02 09:46:56 +00001145 !Current.isTrailingComment()))
Daniel Jasper6633ab82013-10-18 10:38:14 +00001146 NewParenState.Indent += Style.ContinuationIndentWidth;
Daniel Jasper7bec87c2016-01-07 18:11:54 +00001147 if ((Previous && !Previous->opensScope()) || *I != prec::Comma)
Daniel Jasperde0328a2013-08-16 11:20:30 +00001148 NewParenState.BreakBeforeParameter = false;
1149 State.Stack.push_back(NewParenState);
1150 SkipFirstExtraIndent = false;
1151 }
Daniel Jasper60553be2014-05-26 13:10:39 +00001152}
Daniel Jasperde0328a2013-08-16 11:20:30 +00001153
Daniel Jasper11a0ac62014-12-12 09:40:58 +00001154void ContinuationIndenter::moveStatePastFakeRParens(LineState &State) {
1155 for (unsigned i = 0, e = State.NextToken->FakeRParens; i != e; ++i) {
Daniel Jasper335ff262014-05-28 09:11:53 +00001156 unsigned VariablePos = State.Stack.back().VariablePos;
Daniel Jasper335ff262014-05-28 09:11:53 +00001157 if (State.Stack.size() == 1) {
1158 // Do not pop the last element.
1159 break;
1160 }
1161 State.Stack.pop_back();
1162 State.Stack.back().VariablePos = VariablePos;
1163 }
1164}
1165
Daniel Jasper60553be2014-05-26 13:10:39 +00001166void ContinuationIndenter::moveStatePastScopeOpener(LineState &State,
1167 bool Newline) {
1168 const FormatToken &Current = *State.NextToken;
1169 if (!Current.opensScope())
1170 return;
1171
1172 if (Current.MatchingParen && Current.BlockKind == BK_Block) {
1173 moveStateToNewBlock(State);
1174 return;
Daniel Jasperde0328a2013-08-16 11:20:30 +00001175 }
1176
Daniel Jasper60553be2014-05-26 13:10:39 +00001177 unsigned NewIndent;
Daniel Jasperde7ca752015-05-04 07:39:00 +00001178 unsigned LastSpace = State.Stack.back().LastSpace;
Daniel Jasper60553be2014-05-26 13:10:39 +00001179 bool AvoidBinPacking;
1180 bool BreakBeforeParameter = false;
Daniel Jasperea40cee2015-07-14 11:26:14 +00001181 unsigned NestedBlockIndent = std::max(State.Stack.back().StartOfFunctionCall,
1182 State.Stack.back().NestedBlockIndent);
Krasimir Georgievff747be2017-06-27 13:43:07 +00001183 if (Current.isOneOf(tok::l_brace, TT_ArrayInitializerLSquare) ||
Krasimir Georgiev26b144c2017-07-03 15:05:14 +00001184 opensProtoMessageField(Current, Style)) {
Daniel Jasperbd73bcf2015-10-27 13:42:08 +00001185 if (Current.opensBlockOrBlockTypeList(Style)) {
Martin Probst38423272017-06-06 12:38:29 +00001186 NewIndent = Style.IndentWidth +
1187 std::min(State.Column, State.Stack.back().NestedBlockIndent);
Daniel Jasper60553be2014-05-26 13:10:39 +00001188 } else {
Daniel Jasper11a0ac62014-12-12 09:40:58 +00001189 NewIndent = State.Stack.back().LastSpace + Style.ContinuationIndentWidth;
Daniel Jasper60553be2014-05-26 13:10:39 +00001190 }
1191 const FormatToken *NextNoComment = Current.getNextNonComment();
Daniel Jasper50780ce2016-01-13 16:41:34 +00001192 bool EndsInComma = Current.MatchingParen &&
1193 Current.MatchingParen->Previous &&
1194 Current.MatchingParen->Previous->is(tok::comma);
Manuel Klimek89628f62017-09-20 09:51:03 +00001195 AvoidBinPacking = EndsInComma || Current.is(TT_DictLiteral) ||
1196 Style.Language == FormatStyle::LK_Proto ||
1197 Style.Language == FormatStyle::LK_TextProto ||
1198 !Style.BinPackArguments ||
1199 (NextNoComment &&
1200 NextNoComment->isOneOf(TT_DesignatedInitializerPeriod,
1201 TT_DesignatedInitializerLSquare));
Francois Ferrandd2130f52017-06-30 20:00:02 +00001202 BreakBeforeParameter = EndsInComma;
Daniel Jasperea40cee2015-07-14 11:26:14 +00001203 if (Current.ParameterCount > 1)
1204 NestedBlockIndent = std::max(NestedBlockIndent, State.Column + 1);
Daniel Jasper60553be2014-05-26 13:10:39 +00001205 } else {
1206 NewIndent = Style.ContinuationIndentWidth +
1207 std::max(State.Stack.back().LastSpace,
1208 State.Stack.back().StartOfFunctionCall);
Daniel Jasperde7ca752015-05-04 07:39:00 +00001209
1210 // Ensure that different different brackets force relative alignment, e.g.:
1211 // void SomeFunction(vector< // break
1212 // int> v);
1213 // FIXME: We likely want to do this for more combinations of brackets.
1214 // Verify that it is wanted for ObjC, too.
Daniel Jasper3f119412017-01-31 14:39:33 +00001215 if (Current.is(tok::less) && Current.ParentBracket == tok::l_paren) {
Daniel Jasperde7ca752015-05-04 07:39:00 +00001216 NewIndent = std::max(NewIndent, State.Stack.back().Indent);
1217 LastSpace = std::max(LastSpace, State.Stack.back().Indent);
1218 }
1219
Martin Probst2c1cdae2017-05-15 11:15:29 +00001220 bool EndsInComma =
1221 Current.MatchingParen &&
1222 Current.MatchingParen->getPreviousNonComment() &&
1223 Current.MatchingParen->getPreviousNonComment()->is(tok::comma);
1224
Daniel Jasper18210d72014-10-09 09:52:05 +00001225 AvoidBinPacking =
Martin Probst2c1cdae2017-05-15 11:15:29 +00001226 (Style.Language == FormatStyle::LK_JavaScript && EndsInComma) ||
Daniel Jasper18210d72014-10-09 09:52:05 +00001227 (State.Line->MustBeDeclaration && !Style.BinPackParameters) ||
1228 (!State.Line->MustBeDeclaration && !Style.BinPackArguments) ||
1229 (Style.ExperimentalAutoDetectBinPacking &&
1230 (Current.PackingKind == PPK_OnePerLine ||
1231 (!BinPackInconclusiveFunctions &&
1232 Current.PackingKind == PPK_Inconclusive)));
Martin Probst2c1cdae2017-05-15 11:15:29 +00001233
Daniel Jasper289afc02015-04-23 09:23:17 +00001234 if (Current.is(TT_ObjCMethodExpr) && Current.MatchingParen) {
1235 if (Style.ColumnLimit) {
1236 // If this '[' opens an ObjC call, determine whether all parameters fit
1237 // into one line and put one per line if they don't.
1238 if (getLengthToMatchingParen(Current) + State.Column >
Daniel Jasper60553be2014-05-26 13:10:39 +00001239 getColumnLimit(State))
Daniel Jasper289afc02015-04-23 09:23:17 +00001240 BreakBeforeParameter = true;
1241 } else {
1242 // For ColumnLimit = 0, we have to figure out whether there is or has to
1243 // be a line break within this call.
1244 for (const FormatToken *Tok = &Current;
1245 Tok && Tok != Current.MatchingParen; Tok = Tok->Next) {
Daniel Jaspere6fcf7d2015-06-17 13:08:06 +00001246 if (Tok->MustBreakBefore ||
Daniel Jasper289afc02015-04-23 09:23:17 +00001247 (Tok->CanBreakBefore && Tok->NewlinesBefore > 0)) {
1248 BreakBeforeParameter = true;
1249 break;
1250 }
1251 }
1252 }
1253 }
Martin Probst2c1cdae2017-05-15 11:15:29 +00001254
1255 if (Style.Language == FormatStyle::LK_JavaScript && EndsInComma)
1256 BreakBeforeParameter = true;
Daniel Jasper60553be2014-05-26 13:10:39 +00001257 }
Daniel Jasperbd73bcf2015-10-27 13:42:08 +00001258 // Generally inherit NoLineBreak from the current scope to nested scope.
1259 // However, don't do this for non-empty nested blocks, dict literals and
1260 // array literals as these follow different indentation rules.
1261 bool NoLineBreak =
1262 Current.Children.empty() &&
1263 !Current.isOneOf(TT_DictLiteral, TT_ArrayInitializerLSquare) &&
1264 (State.Stack.back().NoLineBreak ||
Daniel Jasper240527c2017-01-16 13:13:15 +00001265 State.Stack.back().NoLineBreakInOperand ||
Daniel Jasperbd73bcf2015-10-27 13:42:08 +00001266 (Current.is(TT_TemplateOpener) &&
Daniel Jasper240527c2017-01-16 13:13:15 +00001267 State.Stack.back().ContainsUnwrappedBuilder));
Daniel Jasper7d42f3f2017-01-31 11:25:01 +00001268 State.Stack.push_back(
1269 ParenState(NewIndent, LastSpace, AvoidBinPacking, NoLineBreak));
Daniel Jasper11a0ac62014-12-12 09:40:58 +00001270 State.Stack.back().NestedBlockIndent = NestedBlockIndent;
Daniel Jasper60553be2014-05-26 13:10:39 +00001271 State.Stack.back().BreakBeforeParameter = BreakBeforeParameter;
Daniel Jasper114a2bc2014-06-03 12:02:45 +00001272 State.Stack.back().HasMultipleNestedBlocks = Current.BlockParameterCount > 1;
Daniel Jasper60553be2014-05-26 13:10:39 +00001273}
1274
1275void ContinuationIndenter::moveStatePastScopeCloser(LineState &State) {
1276 const FormatToken &Current = *State.NextToken;
1277 if (!Current.closesScope())
1278 return;
1279
1280 // If we encounter a closing ), ], } or >, we can remove a level from our
1281 // stacks.
1282 if (State.Stack.size() > 1 &&
Daniel Jasperc06f6da2017-02-03 14:32:38 +00001283 (Current.isOneOf(tok::r_paren, tok::r_square, TT_TemplateString) ||
Daniel Jasper60553be2014-05-26 13:10:39 +00001284 (Current.is(tok::r_brace) && State.NextToken != State.Line->First) ||
Daniel Jaspera98b7b02014-11-25 10:05:17 +00001285 State.NextToken->is(TT_TemplateCloser)))
Daniel Jasper60553be2014-05-26 13:10:39 +00001286 State.Stack.pop_back();
Daniel Jasper335ff262014-05-28 09:11:53 +00001287
Daniel Jasper60553be2014-05-26 13:10:39 +00001288 if (Current.is(tok::r_square)) {
1289 // If this ends the array subscript expr, reset the corresponding value.
1290 const FormatToken *NextNonComment = Current.getNextNonComment();
1291 if (NextNonComment && NextNonComment->isNot(tok::l_square))
1292 State.Stack.back().StartOfArraySubscripts = 0;
1293 }
1294}
1295
1296void ContinuationIndenter::moveStateToNewBlock(LineState &State) {
Daniel Jasper11a0ac62014-12-12 09:40:58 +00001297 unsigned NestedBlockIndent = State.Stack.back().NestedBlockIndent;
Daniel Jasper50d634b2014-10-28 16:53:38 +00001298 // ObjC block sometimes follow special indentation rules.
Daniel Jaspera98b7b02014-11-25 10:05:17 +00001299 unsigned NewIndent =
Daniel Jasper11a0ac62014-12-12 09:40:58 +00001300 NestedBlockIndent + (State.NextToken->is(TT_ObjCBlockLBrace)
1301 ? Style.ObjCBlockIndentWidth
1302 : Style.IndentWidth);
Daniel Jasper7d42f3f2017-01-31 11:25:01 +00001303 State.Stack.push_back(ParenState(NewIndent, State.Stack.back().LastSpace,
1304 /*AvoidBinPacking=*/true,
1305 /*NoLineBreak=*/false));
Daniel Jasper11a0ac62014-12-12 09:40:58 +00001306 State.Stack.back().NestedBlockIndent = NestedBlockIndent;
Daniel Jasper60553be2014-05-26 13:10:39 +00001307 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasperde0328a2013-08-16 11:20:30 +00001308}
1309
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001310static unsigned getLastLineEndColumn(StringRef Text, unsigned StartColumn,
1311 unsigned TabWidth,
1312 encoding::Encoding Encoding) {
1313 size_t LastNewlinePos = Text.find_last_of("\n");
1314 if (LastNewlinePos == StringRef::npos) {
1315 return StartColumn +
1316 encoding::columnWidthWithTabs(Text, StartColumn, TabWidth, Encoding);
1317 } else {
1318 return encoding::columnWidthWithTabs(Text.substr(LastNewlinePos),
1319 /*StartColumn=*/0, TabWidth, Encoding);
1320 }
1321}
1322
1323unsigned ContinuationIndenter::reformatRawStringLiteral(
Manuel Klimek45ab5592017-11-14 09:19:53 +00001324 const FormatToken &Current, LineState &State,
1325 const FormatStyle &RawStringStyle, bool DryRun) {
1326 unsigned StartColumn = State.Column - Current.ColumnWidth;
Krasimir Georgiev412ed092018-01-19 16:18:47 +00001327 StringRef OldDelimiter = *getRawStringDelimiter(Current.TokenText);
1328 StringRef NewDelimiter =
1329 getCanonicalRawStringDelimiter(Style, RawStringStyle.Language);
1330 if (NewDelimiter.empty() || OldDelimiter.empty())
1331 NewDelimiter = OldDelimiter;
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001332 // The text of a raw string is between the leading 'R"delimiter(' and the
1333 // trailing 'delimiter)"'.
Krasimir Georgiev412ed092018-01-19 16:18:47 +00001334 unsigned OldPrefixSize = 3 + OldDelimiter.size();
1335 unsigned OldSuffixSize = 2 + OldDelimiter.size();
1336 // We create a virtual text environment which expects a null-terminated
1337 // string, so we cannot use StringRef.
1338 std::string RawText =
1339 Current.TokenText.substr(OldPrefixSize).drop_back(OldSuffixSize);
1340 if (NewDelimiter != OldDelimiter) {
1341 // Don't update to the canonical delimiter 'deli' if ')deli"' occurs in the
1342 // raw string.
1343 std::string CanonicalDelimiterSuffix = (")" + NewDelimiter + "\"").str();
1344 if (StringRef(RawText).contains(CanonicalDelimiterSuffix))
1345 NewDelimiter = OldDelimiter;
1346 }
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001347
Krasimir Georgiev412ed092018-01-19 16:18:47 +00001348 unsigned NewPrefixSize = 3 + NewDelimiter.size();
1349 unsigned NewSuffixSize = 2 + NewDelimiter.size();
1350
1351 // The first start column is the column the raw text starts after formatting.
1352 unsigned FirstStartColumn = StartColumn + NewPrefixSize;
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001353
1354 // The next start column is the intended indentation a line break inside
1355 // the raw string at level 0. It is determined by the following rules:
1356 // - if the content starts on newline, it is one level more than the current
1357 // indent, and
1358 // - if the content does not start on a newline, it is the first start
1359 // column.
1360 // These rules have the advantage that the formatted content both does not
1361 // violate the rectangle rule and visually flows within the surrounding
1362 // source.
Krasimir Georgiev412ed092018-01-19 16:18:47 +00001363 bool ContentStartsOnNewline = Current.TokenText[OldPrefixSize] == '\n';
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001364 unsigned NextStartColumn = ContentStartsOnNewline
1365 ? State.Stack.back().Indent + Style.IndentWidth
1366 : FirstStartColumn;
1367
1368 // The last start column is the column the raw string suffix starts if it is
1369 // put on a newline.
1370 // The last start column is the intended indentation of the raw string postfix
1371 // if it is put on a newline. It is determined by the following rules:
1372 // - if the raw string prefix starts on a newline, it is the column where
1373 // that raw string prefix starts, and
1374 // - if the raw string prefix does not start on a newline, it is the current
1375 // indent.
1376 unsigned LastStartColumn = Current.NewlinesBefore
Krasimir Georgiev412ed092018-01-19 16:18:47 +00001377 ? FirstStartColumn - NewPrefixSize
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001378 : State.Stack.back().Indent;
1379
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001380 std::pair<tooling::Replacements, unsigned> Fixes = internal::reformat(
1381 RawStringStyle, RawText, {tooling::Range(0, RawText.size())},
1382 FirstStartColumn, NextStartColumn, LastStartColumn, "<stdin>",
Krasimir Georgiev0fcb5802017-11-09 13:19:14 +00001383 /*Status=*/nullptr);
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001384
1385 auto NewCode = applyAllReplacements(RawText, Fixes.first);
1386 tooling::Replacements NoFixes;
1387 if (!NewCode) {
1388 State.Column += Current.ColumnWidth;
1389 return 0;
1390 }
1391 if (!DryRun) {
Krasimir Georgiev412ed092018-01-19 16:18:47 +00001392 if (NewDelimiter != OldDelimiter) {
1393 // In 'R"delimiter(...', the delimiter starts 2 characters after the start
1394 // of the token.
1395 SourceLocation PrefixDelimiterStart =
1396 Current.Tok.getLocation().getLocWithOffset(2);
1397 auto PrefixErr = Whitespaces.addReplacement(tooling::Replacement(
1398 SourceMgr, PrefixDelimiterStart, OldDelimiter.size(), NewDelimiter));
1399 if (PrefixErr) {
1400 llvm::errs()
1401 << "Failed to update the prefix delimiter of a raw string: "
1402 << llvm::toString(std::move(PrefixErr)) << "\n";
1403 }
1404 // In 'R"delimiter(...)delimiter"', the suffix delimiter starts at
1405 // position length - 1 - |delimiter|.
1406 SourceLocation SuffixDelimiterStart =
1407 Current.Tok.getLocation().getLocWithOffset(Current.TokenText.size() -
1408 1 - OldDelimiter.size());
1409 auto SuffixErr = Whitespaces.addReplacement(tooling::Replacement(
1410 SourceMgr, SuffixDelimiterStart, OldDelimiter.size(), NewDelimiter));
1411 if (SuffixErr) {
1412 llvm::errs()
1413 << "Failed to update the suffix delimiter of a raw string: "
1414 << llvm::toString(std::move(SuffixErr)) << "\n";
1415 }
1416 }
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001417 SourceLocation OriginLoc =
Krasimir Georgiev412ed092018-01-19 16:18:47 +00001418 Current.Tok.getLocation().getLocWithOffset(OldPrefixSize);
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001419 for (const tooling::Replacement &Fix : Fixes.first) {
1420 auto Err = Whitespaces.addReplacement(tooling::Replacement(
1421 SourceMgr, OriginLoc.getLocWithOffset(Fix.getOffset()),
1422 Fix.getLength(), Fix.getReplacementText()));
1423 if (Err) {
1424 llvm::errs() << "Failed to reformat raw string: "
1425 << llvm::toString(std::move(Err)) << "\n";
1426 }
1427 }
1428 }
1429 unsigned RawLastLineEndColumn = getLastLineEndColumn(
1430 *NewCode, FirstStartColumn, Style.TabWidth, Encoding);
Krasimir Georgiev412ed092018-01-19 16:18:47 +00001431 State.Column = RawLastLineEndColumn + NewSuffixSize;
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001432 return Fixes.second;
1433}
1434
Alexander Kornienko917f9e02013-09-10 12:29:48 +00001435unsigned ContinuationIndenter::addMultilineToken(const FormatToken &Current,
1436 LineState &State) {
Alexander Kornienkod7b837e2013-08-29 17:32:57 +00001437 // Break before further function parameters on all levels.
1438 for (unsigned i = 0, e = State.Stack.size(); i != e; ++i)
1439 State.Stack[i].BreakBeforeParameter = true;
1440
Alexander Kornienko39856b72013-09-10 09:38:25 +00001441 unsigned ColumnsUsed = State.Column;
Alexander Kornienko632abb92013-09-02 13:58:14 +00001442 // We can only affect layout of the first and the last line, so the penalty
1443 // for all other lines is constant, and we ignore it.
Alexander Kornienkoebb43ca2013-09-05 14:08:34 +00001444 State.Column = Current.LastLineColumnWidth;
Alexander Kornienko632abb92013-09-02 13:58:14 +00001445
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +00001446 if (ColumnsUsed > getColumnLimit(State))
1447 return Style.PenaltyExcessCharacter * (ColumnsUsed - getColumnLimit(State));
Alexander Kornienkod7b837e2013-08-29 17:32:57 +00001448 return 0;
1449}
1450
Manuel Klimek45ab5592017-11-14 09:19:53 +00001451unsigned ContinuationIndenter::handleEndOfLine(const FormatToken &Current,
1452 LineState &State, bool DryRun,
1453 bool AllowBreak) {
1454 unsigned Penalty = 0;
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001455 // Compute the raw string style to use in case this is a raw string literal
1456 // that can be reformatted.
Manuel Klimek45ab5592017-11-14 09:19:53 +00001457 auto RawStringStyle = getRawStringStyle(Current, State);
1458 if (RawStringStyle) {
1459 Penalty = reformatRawStringLiteral(Current, State, *RawStringStyle, DryRun);
1460 } else if (Current.IsMultiline && Current.isNot(TT_BlockComment)) {
1461 // Don't break multi-line tokens other than block comments and raw string
1462 // literals. Instead, just update the state.
1463 Penalty = addMultilineToken(Current, State);
1464 } else if (State.Line->Type != LT_ImportStatement) {
1465 // We generally don't break import statements.
Manuel Klimek0b58c322017-12-01 13:28:08 +00001466 LineState OriginalState = State;
1467
1468 // Whether we force the reflowing algorithm to stay strictly within the
1469 // column limit.
1470 bool Strict = false;
1471 // Whether the first non-strict attempt at reflowing did intentionally
1472 // exceed the column limit.
1473 bool Exceeded = false;
1474 std::tie(Penalty, Exceeded) = breakProtrudingToken(
1475 Current, State, AllowBreak, /*DryRun=*/true, Strict);
1476 if (Exceeded) {
1477 // If non-strict reflowing exceeds the column limit, try whether strict
1478 // reflowing leads to an overall lower penalty.
1479 LineState StrictState = OriginalState;
1480 unsigned StrictPenalty =
1481 breakProtrudingToken(Current, StrictState, AllowBreak,
1482 /*DryRun=*/true, /*Strict=*/true)
1483 .first;
1484 Strict = StrictPenalty <= Penalty;
1485 if (Strict) {
1486 Penalty = StrictPenalty;
1487 State = StrictState;
1488 }
1489 }
1490 if (!DryRun) {
1491 // If we're not in dry-run mode, apply the changes with the decision on
1492 // strictness made above.
1493 breakProtrudingToken(Current, OriginalState, AllowBreak, /*DryRun=*/false,
1494 Strict);
1495 }
Manuel Klimek45ab5592017-11-14 09:19:53 +00001496 }
1497 if (State.Column > getColumnLimit(State)) {
1498 unsigned ExcessCharacters = State.Column - getColumnLimit(State);
1499 Penalty += Style.PenaltyExcessCharacter * ExcessCharacters;
1500 }
1501 return Penalty;
1502}
Krasimir Georgiev9ad83fe2017-10-30 14:01:50 +00001503
Krasimir Georgiev2537e222018-01-17 16:17:26 +00001504// Returns the enclosing function name of a token, or the empty string if not
1505// found.
1506static StringRef getEnclosingFunctionName(const FormatToken &Current) {
1507 // Look for: 'function(' or 'function<templates>(' before Current.
1508 auto Tok = Current.getPreviousNonComment();
1509 if (!Tok || !Tok->is(tok::l_paren))
1510 return "";
1511 Tok = Tok->getPreviousNonComment();
1512 if (!Tok)
1513 return "";
1514 if (Tok->is(TT_TemplateCloser)) {
1515 Tok = Tok->MatchingParen;
1516 if (Tok)
1517 Tok = Tok->getPreviousNonComment();
1518 }
1519 if (!Tok || !Tok->is(tok::identifier))
1520 return "";
1521 return Tok->TokenText;
1522}
1523
Manuel Klimek45ab5592017-11-14 09:19:53 +00001524llvm::Optional<FormatStyle>
1525ContinuationIndenter::getRawStringStyle(const FormatToken &Current,
1526 const LineState &State) {
1527 if (!Current.isStringLiteral())
1528 return None;
1529 auto Delimiter = getRawStringDelimiter(Current.TokenText);
1530 if (!Delimiter)
1531 return None;
Krasimir Georgiev2537e222018-01-17 16:17:26 +00001532 auto RawStringStyle = RawStringFormats.getDelimiterStyle(*Delimiter);
1533 if (!RawStringStyle)
1534 RawStringStyle = RawStringFormats.getEnclosingFunctionStyle(
1535 getEnclosingFunctionName(Current));
Manuel Klimek45ab5592017-11-14 09:19:53 +00001536 if (!RawStringStyle)
1537 return None;
1538 RawStringStyle->ColumnLimit = getColumnLimit(State);
1539 return RawStringStyle;
1540}
Alexander Kornienko917f9e02013-09-10 12:29:48 +00001541
Manuel Klimek45ab5592017-11-14 09:19:53 +00001542std::unique_ptr<BreakableToken> ContinuationIndenter::createBreakableToken(
1543 const FormatToken &Current, LineState &State, bool AllowBreak) {
Alexander Kornienko39856b72013-09-10 09:38:25 +00001544 unsigned StartColumn = State.Column - Current.ColumnWidth;
Daniel Jasper04b6a082013-12-20 06:22:01 +00001545 if (Current.isStringLiteral()) {
Daniel Jasper428f0b12015-01-04 09:11:17 +00001546 // FIXME: String literal breaking is currently disabled for Java and JS, as
1547 // it requires strings to be merged using "+" which we don't support.
1548 if (Style.Language == FormatStyle::LK_Java ||
Daniel Jaspere1a7b762016-02-01 11:21:02 +00001549 Style.Language == FormatStyle::LK_JavaScript ||
Manuel Klimek45ab5592017-11-14 09:19:53 +00001550 !Style.BreakStringLiterals ||
1551 !AllowBreak)
1552 return nullptr;
Daniel Jasper428f0b12015-01-04 09:11:17 +00001553
Alexander Kornienko384b40b2013-10-11 21:43:05 +00001554 // Don't break string literals inside preprocessor directives (except for
1555 // #define directives, as their contents are stored in separate lines and
1556 // are not affected by this check).
1557 // This way we avoid breaking code with line directives and unknown
1558 // preprocessor directives that contain long string literals.
1559 if (State.Line->Type == LT_PreprocessorDirective)
Manuel Klimek45ab5592017-11-14 09:19:53 +00001560 return nullptr;
Daniel Jasperde0328a2013-08-16 11:20:30 +00001561 // Exempts unterminated string literals from line breaking. The user will
1562 // likely want to terminate the string before any line breaking is done.
1563 if (Current.IsUnterminatedLiteral)
Manuel Klimek45ab5592017-11-14 09:19:53 +00001564 return nullptr;
Daniel Jasperde0328a2013-08-16 11:20:30 +00001565
Alexander Kornienko81e32942013-09-16 20:20:49 +00001566 StringRef Text = Current.TokenText;
1567 StringRef Prefix;
1568 StringRef Postfix;
1569 // FIXME: Handle whitespace between '_T', '(', '"..."', and ')'.
1570 // FIXME: Store Prefix and Suffix (or PrefixLength and SuffixLength to
1571 // reduce the overhead) for each FormatToken, which is a string, so that we
1572 // don't run multiple checks here on the hot path.
1573 if ((Text.endswith(Postfix = "\"") &&
Alexander Kornienkod4fa2e62017-04-11 09:55:00 +00001574 (Text.startswith(Prefix = "@\"") || Text.startswith(Prefix = "\"") ||
Daniel Jasper174b0122014-01-09 14:18:12 +00001575 Text.startswith(Prefix = "u\"") || Text.startswith(Prefix = "U\"") ||
1576 Text.startswith(Prefix = "u8\"") ||
Alexander Kornienko81e32942013-09-16 20:20:49 +00001577 Text.startswith(Prefix = "L\""))) ||
Alexander Kornienko732b6bd2014-12-14 20:47:11 +00001578 (Text.startswith(Prefix = "_T(\"") && Text.endswith(Postfix = "\")"))) {
Manuel Klimek45ab5592017-11-14 09:19:53 +00001579 return llvm::make_unique<BreakableStringLiteral>(
1580 Current, StartColumn, Prefix, Postfix, State.Line->InPPDirective,
1581 Encoding, Style);
Alexander Kornienko81e32942013-09-16 20:20:49 +00001582 }
Daniel Jasperacadc8e2016-06-08 09:45:08 +00001583 } else if (Current.is(TT_BlockComment)) {
Krasimir Georgiev35599fd2017-10-16 09:08:53 +00001584 if (!Style.ReflowComments ||
Krasimir Georgiev91834222017-01-25 13:58:58 +00001585 // If a comment token switches formatting, like
1586 // /* clang-format on */, we don't want to break it further,
1587 // but we may still want to adjust its indentation.
Manuel Klimek45ab5592017-11-14 09:19:53 +00001588 switchesFormatting(Current)) {
1589 return nullptr;
1590 }
1591 return llvm::make_unique<BreakableBlockComment>(
Daniel Jasper7d42f3f2017-01-31 11:25:01 +00001592 Current, StartColumn, Current.OriginalColumn, !Current.Previous,
Manuel Klimek45ab5592017-11-14 09:19:53 +00001593 State.Line->InPPDirective, Encoding, Style);
Daniel Jaspera98b7b02014-11-25 10:05:17 +00001594 } else if (Current.is(TT_LineComment) &&
Craig Topper2145bc02014-05-09 08:15:10 +00001595 (Current.Previous == nullptr ||
Daniel Jaspera98b7b02014-11-25 10:05:17 +00001596 Current.Previous->isNot(TT_ImplicitStringLiteral))) {
Daniel Jaspera0a50392015-12-01 13:28:53 +00001597 if (!Style.ReflowComments ||
Krasimir Georgiev91834222017-01-25 13:58:58 +00001598 CommentPragmasRegex.match(Current.TokenText.substr(2)) ||
1599 switchesFormatting(Current))
Manuel Klimek45ab5592017-11-14 09:19:53 +00001600 return nullptr;
1601 return llvm::make_unique<BreakableLineCommentSection>(
Daniel Jasper7d42f3f2017-01-31 11:25:01 +00001602 Current, StartColumn, Current.OriginalColumn, !Current.Previous,
Manuel Klimek45ab5592017-11-14 09:19:53 +00001603 /*InPPDirective=*/false, Encoding, Style);
1604 }
1605 return nullptr;
1606}
1607
Manuel Klimek0b58c322017-12-01 13:28:08 +00001608std::pair<unsigned, bool>
1609ContinuationIndenter::breakProtrudingToken(const FormatToken &Current,
1610 LineState &State, bool AllowBreak,
1611 bool DryRun, bool Strict) {
Manuel Klimek93699f42017-11-29 14:29:43 +00001612 std::unique_ptr<const BreakableToken> Token =
Manuel Klimek45ab5592017-11-14 09:19:53 +00001613 createBreakableToken(Current, State, AllowBreak);
1614 if (!Token)
Manuel Klimek0b58c322017-12-01 13:28:08 +00001615 return {0, false};
Manuel Klimek93699f42017-11-29 14:29:43 +00001616 assert(Token->getLineCount() > 0);
Manuel Klimek45ab5592017-11-14 09:19:53 +00001617 unsigned ColumnLimit = getColumnLimit(State);
Manuel Klimek45ab5592017-11-14 09:19:53 +00001618 if (Current.is(TT_LineComment)) {
Alexander Kornienko3abbb8a2013-11-12 17:30:49 +00001619 // We don't insert backslashes when breaking line comments.
1620 ColumnLimit = Style.ColumnLimit;
Daniel Jasperde0328a2013-08-16 11:20:30 +00001621 }
Alexander Kornienko3abbb8a2013-11-12 17:30:49 +00001622 if (Current.UnbreakableTailLength >= ColumnLimit)
Manuel Klimek0b58c322017-12-01 13:28:08 +00001623 return {0, false};
Manuel Klimek93699f42017-11-29 14:29:43 +00001624 // ColumnWidth was already accounted into State.Column before calling
1625 // breakProtrudingToken.
1626 unsigned StartColumn = State.Column - Current.ColumnWidth;
Manuel Klimek77866142017-11-17 11:17:15 +00001627 unsigned NewBreakPenalty = Current.isStringLiteral()
1628 ? Style.PenaltyBreakString
1629 : Style.PenaltyBreakComment;
Manuel Klimek0b58c322017-12-01 13:28:08 +00001630 // Stores whether we intentionally decide to let a line exceed the column
1631 // limit.
1632 bool Exceeded = false;
Manuel Klimek93699f42017-11-29 14:29:43 +00001633 // Stores whether we introduce a break anywhere in the token.
Manuel Klimek77866142017-11-17 11:17:15 +00001634 bool BreakInserted = Token->introducesBreakBeforeToken();
1635 // Store whether we inserted a new line break at the end of the previous
1636 // logical line.
1637 bool NewBreakBefore = false;
Krasimir Georgiev91834222017-01-25 13:58:58 +00001638 // We use a conservative reflowing strategy. Reflow starts after a line is
1639 // broken or the corresponding whitespace compressed. Reflow ends as soon as a
1640 // line that doesn't get reflown with the previous line is reached.
Manuel Klimek93699f42017-11-29 14:29:43 +00001641 bool Reflow = false;
1642 // Keep track of where we are in the token:
1643 // Where we are in the content of the current logical line.
Krasimir Georgiev22d7e6b2017-07-20 22:29:39 +00001644 unsigned TailOffset = 0;
Manuel Klimek93699f42017-11-29 14:29:43 +00001645 // The column number we're currently at.
1646 unsigned ContentStartColumn =
1647 Token->getContentStartColumn(0, /*Break=*/false);
1648 // The number of columns left in the current logical line after TailOffset.
1649 unsigned RemainingTokenColumns =
1650 Token->getRemainingLength(0, TailOffset, ContentStartColumn);
1651 // Adapt the start of the token, for example indent.
1652 if (!DryRun)
1653 Token->adaptStartOfLine(0, Whitespaces);
1654
1655 unsigned Penalty = 0;
Manuel Klimek77866142017-11-17 11:17:15 +00001656 DEBUG(llvm::dbgs() << "Breaking protruding token at column " << StartColumn
1657 << ".\n");
Daniel Jasperde0328a2013-08-16 11:20:30 +00001658 for (unsigned LineIndex = 0, EndIndex = Token->getLineCount();
1659 LineIndex != EndIndex; ++LineIndex) {
Manuel Klimek93699f42017-11-29 14:29:43 +00001660 DEBUG(llvm::dbgs() << " Line: " << LineIndex << " (Reflow: " << Reflow
1661 << ")\n");
Manuel Klimek77866142017-11-17 11:17:15 +00001662 NewBreakBefore = false;
Manuel Klimek93699f42017-11-29 14:29:43 +00001663 // If we did reflow the previous line, we'll try reflowing again. Otherwise
1664 // we'll start reflowing if the current line is broken or whitespace is
1665 // compressed.
1666 bool TryReflow = Reflow;
1667 // Break the current token until we can fit the rest of the line.
1668 while (ContentStartColumn + RemainingTokenColumns > ColumnLimit) {
1669 DEBUG(llvm::dbgs() << " Over limit, need: "
1670 << (ContentStartColumn + RemainingTokenColumns)
1671 << ", space: " << ColumnLimit
1672 << ", reflown prefix: " << ContentStartColumn
1673 << ", offset in line: " << TailOffset << "\n");
1674 // If the current token doesn't fit, find the latest possible split in the
1675 // current line so that breaking at it will be under the column limit.
1676 // FIXME: Use the earliest possible split while reflowing to correctly
1677 // compress whitespace within a line.
1678 BreakableToken::Split Split =
1679 Token->getSplit(LineIndex, TailOffset, ColumnLimit,
1680 ContentStartColumn, CommentPragmasRegex);
Daniel Jasperde0328a2013-08-16 11:20:30 +00001681 if (Split.first == StringRef::npos) {
Manuel Klimek93699f42017-11-29 14:29:43 +00001682 // No break opportunity - update the penalty and continue with the next
1683 // logical line.
Daniel Jasperde0328a2013-08-16 11:20:30 +00001684 if (LineIndex < EndIndex - 1)
Manuel Klimek93699f42017-11-29 14:29:43 +00001685 // The last line's penalty is handled in addNextStateToQueue().
Daniel Jasperde0328a2013-08-16 11:20:30 +00001686 Penalty += Style.PenaltyExcessCharacter *
Manuel Klimek93699f42017-11-29 14:29:43 +00001687 (ContentStartColumn + RemainingTokenColumns - ColumnLimit);
Manuel Klimek77866142017-11-17 11:17:15 +00001688 DEBUG(llvm::dbgs() << " No break opportunity.\n");
Daniel Jasperde0328a2013-08-16 11:20:30 +00001689 break;
1690 }
1691 assert(Split.first != 0);
Alexander Kornienko875395f2013-11-12 17:50:13 +00001692
Manuel Klimek93699f42017-11-29 14:29:43 +00001693 if (Token->supportsReflow()) {
1694 // Check whether the next natural split point after the current one can
1695 // still fit the line, either because we can compress away whitespace,
1696 // or because the penalty the excess characters introduce is lower than
1697 // the break penalty.
1698 // We only do this for tokens that support reflowing, and thus allow us
1699 // to change the whitespace arbitrarily (e.g. comments).
1700 // Other tokens, like string literals, can be broken on arbitrary
1701 // positions.
1702
1703 // First, compute the columns from TailOffset to the next possible split
1704 // position.
1705 // For example:
1706 // ColumnLimit: |
1707 // // Some text that breaks
1708 // ^ tail offset
1709 // ^-- split
1710 // ^-------- to split columns
1711 // ^--- next split
1712 // ^--------------- to next split columns
1713 unsigned ToSplitColumns = Token->getRangeLength(
1714 LineIndex, TailOffset, Split.first, ContentStartColumn);
1715 DEBUG(llvm::dbgs() << " ToSplit: " << ToSplitColumns << "\n");
1716
1717 BreakableToken::Split NextSplit = Token->getSplit(
1718 LineIndex, TailOffset + Split.first + Split.second, ColumnLimit,
1719 ContentStartColumn + ToSplitColumns + 1, CommentPragmasRegex);
1720 // Compute the columns necessary to fit the next non-breakable sequence
1721 // into the current line.
1722 unsigned ToNextSplitColumns = 0;
1723 if (NextSplit.first == StringRef::npos) {
1724 ToNextSplitColumns = Token->getRemainingLength(LineIndex, TailOffset,
1725 ContentStartColumn);
1726 } else {
1727 ToNextSplitColumns = Token->getRangeLength(
1728 LineIndex, TailOffset,
1729 Split.first + Split.second + NextSplit.first, ContentStartColumn);
1730 }
1731 // Compress the whitespace between the break and the start of the next
1732 // unbreakable sequence.
1733 ToNextSplitColumns =
1734 Token->getLengthAfterCompression(ToNextSplitColumns, Split);
1735 DEBUG(llvm::dbgs() << " ContentStartColumn: " << ContentStartColumn
1736 << "\n");
1737 DEBUG(llvm::dbgs() << " ToNextSplit: " << ToNextSplitColumns << "\n");
1738 // If the whitespace compression makes us fit, continue on the current
1739 // line.
1740 bool ContinueOnLine =
1741 ContentStartColumn + ToNextSplitColumns <= ColumnLimit;
1742 unsigned ExcessCharactersPenalty = 0;
Manuel Klimek0b58c322017-12-01 13:28:08 +00001743 if (!ContinueOnLine && !Strict) {
Manuel Klimek93699f42017-11-29 14:29:43 +00001744 // Similarly, if the excess characters' penalty is lower than the
1745 // penalty of introducing a new break, continue on the current line.
1746 ExcessCharactersPenalty =
1747 (ContentStartColumn + ToNextSplitColumns - ColumnLimit) *
1748 Style.PenaltyExcessCharacter;
1749 DEBUG(llvm::dbgs()
1750 << " Penalty excess: " << ExcessCharactersPenalty
1751 << "\n break : " << NewBreakPenalty << "\n");
Manuel Klimek0b58c322017-12-01 13:28:08 +00001752 if (ExcessCharactersPenalty < NewBreakPenalty) {
1753 Exceeded = true;
Manuel Klimek93699f42017-11-29 14:29:43 +00001754 ContinueOnLine = true;
Manuel Klimek0b58c322017-12-01 13:28:08 +00001755 }
Manuel Klimek93699f42017-11-29 14:29:43 +00001756 }
1757 if (ContinueOnLine) {
1758 DEBUG(llvm::dbgs() << " Continuing on line...\n");
1759 // The current line fits after compressing the whitespace - reflow
1760 // the next line into it if possible.
1761 TryReflow = true;
1762 if (!DryRun)
1763 Token->compressWhitespace(LineIndex, TailOffset, Split,
1764 Whitespaces);
1765 // When we continue on the same line, leave one space between content.
1766 ContentStartColumn += ToSplitColumns + 1;
1767 Penalty += ExcessCharactersPenalty;
1768 TailOffset += Split.first + Split.second;
1769 RemainingTokenColumns = Token->getRemainingLength(
1770 LineIndex, TailOffset, ContentStartColumn);
1771 continue;
1772 }
Manuel Klimek77866142017-11-17 11:17:15 +00001773 }
Manuel Klimek93699f42017-11-29 14:29:43 +00001774 DEBUG(llvm::dbgs() << " Breaking...\n");
1775 ContentStartColumn =
1776 Token->getContentStartColumn(LineIndex, /*Break=*/true);
1777 unsigned NewRemainingTokenColumns = Token->getRemainingLength(
1778 LineIndex, TailOffset + Split.first + Split.second,
1779 ContentStartColumn);
Krasimir Georgiev91834222017-01-25 13:58:58 +00001780
Alexander Kornienko64a42b82014-04-15 14:52:43 +00001781 // When breaking before a tab character, it may be moved by a few columns,
1782 // but will still be expanded to the next tab stop, so we don't save any
1783 // columns.
Manuel Klimek93699f42017-11-29 14:29:43 +00001784 if (NewRemainingTokenColumns == RemainingTokenColumns) {
Manuel Klimek77866142017-11-17 11:17:15 +00001785 // FIXME: Do we need to adjust the penalty?
Alexander Kornienko64a42b82014-04-15 14:52:43 +00001786 break;
Manuel Klimek93699f42017-11-29 14:29:43 +00001787 }
Daniel Jasperde0328a2013-08-16 11:20:30 +00001788 assert(NewRemainingTokenColumns < RemainingTokenColumns);
Manuel Klimek77866142017-11-17 11:17:15 +00001789
Manuel Klimek93699f42017-11-29 14:29:43 +00001790 DEBUG(llvm::dbgs() << " Breaking at: " << TailOffset + Split.first
1791 << ", " << Split.second << "\n");
Daniel Jasperde0328a2013-08-16 11:20:30 +00001792 if (!DryRun)
1793 Token->insertBreak(LineIndex, TailOffset, Split, Whitespaces);
Manuel Klimek77866142017-11-17 11:17:15 +00001794
Manuel Klimek93699f42017-11-29 14:29:43 +00001795 Penalty += NewBreakPenalty;
Daniel Jasperde0328a2013-08-16 11:20:30 +00001796 TailOffset += Split.first + Split.second;
1797 RemainingTokenColumns = NewRemainingTokenColumns;
1798 BreakInserted = true;
Manuel Klimek77866142017-11-17 11:17:15 +00001799 NewBreakBefore = true;
Daniel Jasperde0328a2013-08-16 11:20:30 +00001800 }
Manuel Klimek93699f42017-11-29 14:29:43 +00001801 // In case there's another line, prepare the state for the start of the next
1802 // line.
1803 if (LineIndex + 1 != EndIndex) {
1804 unsigned NextLineIndex = LineIndex + 1;
1805 if (NewBreakBefore)
1806 // After breaking a line, try to reflow the next line into the current
1807 // one once RemainingTokenColumns fits.
1808 TryReflow = true;
1809 if (TryReflow) {
1810 // We decided that we want to try reflowing the next line into the
1811 // current one.
1812 // We will now adjust the state as if the reflow is successful (in
1813 // preparation for the next line), and see whether that works. If we
1814 // decide that we cannot reflow, we will later reset the state to the
1815 // start of the next line.
1816 Reflow = false;
1817 // As we did not continue breaking the line, RemainingTokenColumns is
1818 // known to fit after ContentStartColumn. Adapt ContentStartColumn to
1819 // the position at which we want to format the next line if we do
1820 // actually reflow.
1821 // When we reflow, we need to add a space between the end of the current
1822 // line and the next line's start column.
1823 ContentStartColumn += RemainingTokenColumns + 1;
1824 // Get the split that we need to reflow next logical line into the end
1825 // of the current one; the split will include any leading whitespace of
1826 // the next logical line.
1827 BreakableToken::Split SplitBeforeNext =
1828 Token->getReflowSplit(NextLineIndex, CommentPragmasRegex);
1829 DEBUG(llvm::dbgs() << " Size of reflown text: " << ContentStartColumn
1830 << "\n Potential reflow split: ");
1831 if (SplitBeforeNext.first != StringRef::npos) {
1832 DEBUG(llvm::dbgs() << SplitBeforeNext.first << ", "
1833 << SplitBeforeNext.second << "\n");
1834 TailOffset = SplitBeforeNext.first + SplitBeforeNext.second;
1835 // If the rest of the next line fits into the current line below the
1836 // column limit, we can safely reflow.
1837 RemainingTokenColumns = Token->getRemainingLength(
1838 NextLineIndex, TailOffset, ContentStartColumn);
1839 Reflow = true;
1840 if (ContentStartColumn + RemainingTokenColumns > ColumnLimit) {
1841 DEBUG(llvm::dbgs() << " Over limit after reflow, need: "
1842 << (ContentStartColumn + RemainingTokenColumns)
1843 << ", space: " << ColumnLimit
1844 << ", reflown prefix: " << ContentStartColumn
1845 << ", offset in line: " << TailOffset << "\n");
1846 // If the whole next line does not fit, try to find a point in
1847 // the next line at which we can break so that attaching the part
1848 // of the next line to that break point onto the current line is
1849 // below the column limit.
1850 BreakableToken::Split Split =
1851 Token->getSplit(NextLineIndex, TailOffset, ColumnLimit,
1852 ContentStartColumn, CommentPragmasRegex);
1853 if (Split.first == StringRef::npos) {
1854 DEBUG(llvm::dbgs() << " Did not find later break\n");
1855 Reflow = false;
1856 } else {
1857 // Check whether the first split point gets us below the column
1858 // limit. Note that we will execute this split below as part of
1859 // the normal token breaking and reflow logic within the line.
1860 unsigned ToSplitColumns = Token->getRangeLength(
1861 NextLineIndex, TailOffset, Split.first, ContentStartColumn);
1862 if (ContentStartColumn + ToSplitColumns > ColumnLimit) {
1863 DEBUG(llvm::dbgs() << " Next split protrudes, need: "
1864 << (ContentStartColumn + ToSplitColumns)
1865 << ", space: " << ColumnLimit);
1866 unsigned ExcessCharactersPenalty =
1867 (ContentStartColumn + ToSplitColumns - ColumnLimit) *
1868 Style.PenaltyExcessCharacter;
1869 if (NewBreakPenalty < ExcessCharactersPenalty) {
1870 Reflow = false;
1871 }
1872 }
1873 }
1874 }
1875 } else {
1876 DEBUG(llvm::dbgs() << "not found.\n");
1877 }
1878 }
1879 if (!Reflow) {
1880 // If we didn't reflow into the next line, the only space to consider is
1881 // the next logical line. Reset our state to match the start of the next
1882 // line.
1883 TailOffset = 0;
1884 ContentStartColumn =
1885 Token->getContentStartColumn(NextLineIndex, /*Break=*/false);
1886 RemainingTokenColumns = Token->getRemainingLength(
1887 NextLineIndex, TailOffset, ContentStartColumn);
1888 // Adapt the start of the token, for example indent.
1889 if (!DryRun)
1890 Token->adaptStartOfLine(NextLineIndex, Whitespaces);
1891 } else {
1892 // If we found a reflow split and have added a new break before the next
1893 // line, we are going to remove the line break at the start of the next
1894 // logical line. For example, here we'll add a new line break after
1895 // 'text', and subsequently delete the line break between 'that' and
1896 // 'reflows'.
1897 // // some text that
1898 // // reflows
1899 // ->
1900 // // some text
1901 // // that reflows
1902 // When adding the line break, we also added the penalty for it, so we
1903 // need to subtract that penalty again when we remove the line break due
1904 // to reflowing.
1905 if (NewBreakBefore) {
1906 assert(Penalty >= NewBreakPenalty);
1907 Penalty -= NewBreakPenalty;
1908 }
1909 if (!DryRun)
1910 Token->reflow(NextLineIndex, Whitespaces);
1911 }
1912 }
Daniel Jasperde0328a2013-08-16 11:20:30 +00001913 }
1914
Krasimir Georgiev3b865342017-08-09 09:42:32 +00001915 BreakableToken::Split SplitAfterLastLine =
Manuel Klimek93699f42017-11-29 14:29:43 +00001916 Token->getSplitAfterLastLine(TailOffset);
Krasimir Georgiev22d7e6b2017-07-20 22:29:39 +00001917 if (SplitAfterLastLine.first != StringRef::npos) {
Manuel Klimek77866142017-11-17 11:17:15 +00001918 DEBUG(llvm::dbgs() << "Replacing whitespace after last line.\n");
Krasimir Georgiev22d7e6b2017-07-20 22:29:39 +00001919 if (!DryRun)
1920 Token->replaceWhitespaceAfterLastLine(TailOffset, SplitAfterLastLine,
1921 Whitespaces);
Manuel Klimek93699f42017-11-29 14:29:43 +00001922 ContentStartColumn =
1923 Token->getContentStartColumn(Token->getLineCount() - 1, /*Break=*/true);
1924 RemainingTokenColumns = Token->getRemainingLength(
1925 Token->getLineCount() - 1,
1926 TailOffset + SplitAfterLastLine.first + SplitAfterLastLine.second,
1927 ContentStartColumn);
Krasimir Georgiev22d7e6b2017-07-20 22:29:39 +00001928 }
1929
Manuel Klimek93699f42017-11-29 14:29:43 +00001930 State.Column = ContentStartColumn + RemainingTokenColumns -
1931 Current.UnbreakableTailLength;
Daniel Jasperde0328a2013-08-16 11:20:30 +00001932
1933 if (BreakInserted) {
1934 // If we break the token inside a parameter list, we need to break before
1935 // the next parameter on all levels, so that the next parameter is clearly
1936 // visible. Line comments already introduce a break.
Daniel Jaspera98b7b02014-11-25 10:05:17 +00001937 if (Current.isNot(TT_LineComment)) {
Daniel Jasperde0328a2013-08-16 11:20:30 +00001938 for (unsigned i = 0, e = State.Stack.size(); i != e; ++i)
1939 State.Stack[i].BreakBeforeParameter = true;
1940 }
1941
Krasimir Georgiev35599fd2017-10-16 09:08:53 +00001942 if (Current.is(TT_BlockComment))
1943 State.NoContinuation = true;
1944
Daniel Jasperde0328a2013-08-16 11:20:30 +00001945 State.Stack.back().LastSpace = StartColumn;
1946 }
Krasimir Georgiev91834222017-01-25 13:58:58 +00001947
1948 Token->updateNextToken(State);
1949
Manuel Klimek0b58c322017-12-01 13:28:08 +00001950 return {Penalty, Exceeded};
Daniel Jasperde0328a2013-08-16 11:20:30 +00001951}
1952
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +00001953unsigned ContinuationIndenter::getColumnLimit(const LineState &State) const {
Daniel Jasperde0328a2013-08-16 11:20:30 +00001954 // In preprocessor directives reserve two chars for trailing " \"
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +00001955 return Style.ColumnLimit - (State.Line->InPPDirective ? 2 : 0);
Daniel Jasperde0328a2013-08-16 11:20:30 +00001956}
1957
Daniel Jasperc39b56f2013-12-16 07:23:08 +00001958bool ContinuationIndenter::nextIsMultilineString(const LineState &State) {
Daniel Jasperf438cb72013-08-23 11:57:34 +00001959 const FormatToken &Current = *State.NextToken;
Daniel Jaspera98b7b02014-11-25 10:05:17 +00001960 if (!Current.isStringLiteral() || Current.is(TT_ImplicitStringLiteral))
Daniel Jasperf438cb72013-08-23 11:57:34 +00001961 return false;
Alexander Kornienkod7b837e2013-08-29 17:32:57 +00001962 // We never consider raw string literals "multiline" for the purpose of
Daniel Jasperc39b56f2013-12-16 07:23:08 +00001963 // AlwaysBreakBeforeMultilineStrings implementation as they are special-cased
1964 // (see TokenAnnotator::mustBreakBefore().
Alexander Kornienkod7b837e2013-08-29 17:32:57 +00001965 if (Current.TokenText.startswith("R\""))
1966 return false;
Alexander Kornienko39856b72013-09-10 09:38:25 +00001967 if (Current.IsMultiline)
Alexander Kornienkod7b837e2013-08-29 17:32:57 +00001968 return true;
Daniel Jasperf438cb72013-08-23 11:57:34 +00001969 if (Current.getNextNonComment() &&
Daniel Jasper04b6a082013-12-20 06:22:01 +00001970 Current.getNextNonComment()->isStringLiteral())
Daniel Jasperf438cb72013-08-23 11:57:34 +00001971 return true; // Implicit concatenation.
Daniel Jasper6fd5d642015-01-20 12:59:20 +00001972 if (Style.ColumnLimit != 0 &&
1973 State.Column + Current.ColumnWidth + Current.UnbreakableTailLength >
1974 Style.ColumnLimit)
Daniel Jasperf438cb72013-08-23 11:57:34 +00001975 return true; // String will be split.
Alexander Kornienkod7b837e2013-08-29 17:32:57 +00001976 return false;
Daniel Jasperf438cb72013-08-23 11:57:34 +00001977}
1978
Daniel Jasperde0328a2013-08-16 11:20:30 +00001979} // namespace format
1980} // namespace clang