blob: e053d4c1aace7e901368f3346036b69d7a8ace3d [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 "BreakableToken.h"
16#include "ContinuationIndenter.h"
17#include "WhitespaceManager.h"
18#include "clang/Basic/OperatorPrecedence.h"
19#include "clang/Basic/SourceManager.h"
20#include "clang/Format/Format.h"
21#include "llvm/Support/Debug.h"
22#include <string>
23
Chandler Carruth10346662014-04-22 03:17:02 +000024#define DEBUG_TYPE "format-formatter"
25
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 Jasper4c6e0052013-08-27 14:24:43 +000041// Returns \c true if \c Tok is the "." or "->" of a call and starts the next
42// segment of a builder type call.
43static bool startsSegmentOfBuilderTypeCall(const FormatToken &Tok) {
44 return Tok.isMemberAccess() && Tok.Previous && Tok.Previous->closesScope();
45}
46
Daniel Jasperec01cd62013-10-08 05:11:18 +000047// Returns \c true if \c Current starts a new parameter.
48static bool startsNextParameter(const FormatToken &Current,
49 const FormatStyle &Style) {
50 const FormatToken &Previous = *Current.Previous;
Daniel Jaspera98b7b02014-11-25 10:05:17 +000051 if (Current.is(TT_CtorInitializerComma) &&
Daniel Jasperec01cd62013-10-08 05:11:18 +000052 Style.BreakConstructorInitializersBeforeComma)
53 return true;
54 return Previous.is(tok::comma) && !Current.isTrailingComment() &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +000055 (Previous.isNot(TT_CtorInitializerComma) ||
Daniel Jasperec01cd62013-10-08 05:11:18 +000056 !Style.BreakConstructorInitializersBeforeComma);
57}
58
Daniel Jasperde0328a2013-08-16 11:20:30 +000059ContinuationIndenter::ContinuationIndenter(const FormatStyle &Style,
Daniel Jasperd0ec0d62014-11-04 12:41:02 +000060 const AdditionalKeywords &Keywords,
Daniel Jasperde0328a2013-08-16 11:20:30 +000061 SourceManager &SourceMgr,
Daniel Jasperde0328a2013-08-16 11:20:30 +000062 WhitespaceManager &Whitespaces,
63 encoding::Encoding Encoding,
64 bool BinPackInconclusiveFunctions)
Daniel Jasperd0ec0d62014-11-04 12:41:02 +000065 : Style(Style), Keywords(Keywords), SourceMgr(SourceMgr),
66 Whitespaces(Whitespaces), Encoding(Encoding),
Alexander Kornienkoce9161a2014-01-02 15:13:14 +000067 BinPackInconclusiveFunctions(BinPackInconclusiveFunctions),
68 CommentPragmasRegex(Style.CommentPragmas) {}
Daniel Jasperde0328a2013-08-16 11:20:30 +000069
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +000070LineState ContinuationIndenter::getInitialState(unsigned FirstIndent,
Daniel Jasper1c5d9df2013-09-06 07:54:20 +000071 const AnnotatedLine *Line,
72 bool DryRun) {
Daniel Jasperde0328a2013-08-16 11:20:30 +000073 LineState State;
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +000074 State.FirstIndent = FirstIndent;
Daniel Jasperde0328a2013-08-16 11:20:30 +000075 State.Column = FirstIndent;
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +000076 State.Line = Line;
77 State.NextToken = Line->First;
Alexander Kornienkoe2e03872013-10-14 00:46:35 +000078 State.Stack.push_back(ParenState(FirstIndent, Line->Level, FirstIndent,
Daniel Jasperde0328a2013-08-16 11:20:30 +000079 /*AvoidBinPacking=*/false,
80 /*NoLineBreak=*/false));
81 State.LineContainsContinuedForLoopSection = false;
Daniel Jasperde0328a2013-08-16 11:20:30 +000082 State.StartOfStringLiteral = 0;
Daniel Jasper05cd5862014-05-08 12:21:30 +000083 State.StartOfLineLevel = 0;
84 State.LowestLevelOnLine = 0;
Daniel Jasperde0328a2013-08-16 11:20:30 +000085 State.IgnoreStackForComparison = false;
86
87 // The first token has already been indented and thus consumed.
Daniel Jasper1c5d9df2013-09-06 07:54:20 +000088 moveStateToNextToken(State, DryRun, /*Newline=*/false);
Daniel Jasperde0328a2013-08-16 11:20:30 +000089 return State;
90}
91
92bool ContinuationIndenter::canBreak(const LineState &State) {
93 const FormatToken &Current = *State.NextToken;
94 const FormatToken &Previous = *Current.Previous;
95 assert(&Previous == Current.Previous);
Daniel Jasper1db6c382013-10-22 15:30:28 +000096 if (!Current.CanBreakBefore && !(State.Stack.back().BreakBeforeClosingBrace &&
97 Current.closesBlockTypeList(Style)))
Daniel Jasperde0328a2013-08-16 11:20:30 +000098 return false;
99 // The opening "{" of a braced list has to be on the same line as the first
100 // element if it is nested in another braced init list or function call.
101 if (!Current.MustBreakBefore && Previous.is(tok::l_brace) &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000102 Previous.isNot(TT_DictLiteral) && Previous.BlockKind == BK_BracedInit &&
Daniel Jasperb05a81d2014-05-09 13:11:16 +0000103 Previous.Previous &&
Daniel Jasperde0328a2013-08-16 11:20:30 +0000104 Previous.Previous->isOneOf(tok::l_brace, tok::l_paren, tok::comma))
105 return false;
106 // This prevents breaks like:
107 // ...
108 // SomeParameter, OtherParameter).DoSomething(
109 // ...
110 // As they hide "DoSomething" and are generally bad for readability.
Daniel Jasper8f59ae52014-03-11 11:03:26 +0000111 if (Previous.opensScope() && Previous.isNot(tok::l_brace) &&
Daniel Jasperfcfac102014-07-15 09:00:34 +0000112 State.LowestLevelOnLine < State.StartOfLineLevel &&
113 State.LowestLevelOnLine < Current.NestingLevel)
Daniel Jasperde0328a2013-08-16 11:20:30 +0000114 return false;
Daniel Jasper4c6e0052013-08-27 14:24:43 +0000115 if (Current.isMemberAccess() && State.Stack.back().ContainsUnwrappedBuilder)
116 return false;
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000117
118 // Don't create a 'hanging' indent if there are multiple blocks in a single
119 // statement.
Daniel Jasper4b444492014-11-21 13:38:53 +0000120 if (Previous.is(tok::l_brace) && State.Stack.size() > 1 &&
121 State.Stack[State.Stack.size() - 2].NestedBlockInlined &&
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000122 State.Stack[State.Stack.size() - 2].HasMultipleNestedBlocks)
123 return false;
124
Daniel Jaspere068ac72014-10-27 17:13:59 +0000125 // Don't break after very short return types (e.g. "void") as that is often
126 // unexpected.
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000127 if (Current.is(TT_FunctionDeclarationName) &&
Daniel Jaspere068ac72014-10-27 17:13:59 +0000128 !Style.AlwaysBreakAfterDefinitionReturnType && State.Column < 6)
129 return false;
130
Daniel Jasperde0328a2013-08-16 11:20:30 +0000131 return !State.Stack.back().NoLineBreak;
132}
133
134bool ContinuationIndenter::mustBreak(const LineState &State) {
135 const FormatToken &Current = *State.NextToken;
136 const FormatToken &Previous = *Current.Previous;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000137 if (Current.MustBreakBefore || Current.is(TT_InlineASMColon))
Daniel Jasperde0328a2013-08-16 11:20:30 +0000138 return true;
Daniel Jasper1db6c382013-10-22 15:30:28 +0000139 if (State.Stack.back().BreakBeforeClosingBrace &&
140 Current.closesBlockTypeList(Style))
Daniel Jasperde0328a2013-08-16 11:20:30 +0000141 return true;
142 if (Previous.is(tok::semi) && State.LineContainsContinuedForLoopSection)
143 return true;
Daniel Jasperec01cd62013-10-08 05:11:18 +0000144 if ((startsNextParameter(Current, Style) || Previous.is(tok::semi) ||
Daniel Jasper165b29e2013-11-08 00:57:11 +0000145 (Style.BreakBeforeTernaryOperators &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000146 (Current.is(tok::question) ||
147 (Current.is(TT_ConditionalExpr) && Previous.isNot(tok::question)))) ||
Daniel Jasper165b29e2013-11-08 00:57:11 +0000148 (!Style.BreakBeforeTernaryOperators &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000149 (Previous.is(tok::question) || Previous.is(TT_ConditionalExpr)))) &&
Daniel Jasperde0328a2013-08-16 11:20:30 +0000150 State.Stack.back().BreakBeforeParameter && !Current.isTrailingComment() &&
151 !Current.isOneOf(tok::r_paren, tok::r_brace))
152 return true;
153 if (Style.AlwaysBreakBeforeMultilineStrings &&
Daniel Jasperf438cb72013-08-23 11:57:34 +0000154 State.Column > State.Stack.back().Indent && // Breaking saves columns.
Daniel Jasper27943052013-11-09 03:08:25 +0000155 !Previous.isOneOf(tok::kw_return, tok::lessless, tok::at) &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000156 !Previous.isOneOf(TT_InlineASMColon, TT_ConditionalExpr) &&
157 nextIsMultilineString(State))
Daniel Jasperde0328a2013-08-16 11:20:30 +0000158 return true;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000159 if (((Previous.is(TT_DictLiteral) && Previous.is(tok::l_brace)) ||
160 Previous.is(TT_ArrayInitializerLSquare)) &&
Daniel Jasperdb8804b2014-04-14 12:11:07 +0000161 Style.ColumnLimit > 0 &&
Daniel Jasperd489dd32013-10-20 16:45:46 +0000162 getLengthToMatchingParen(Previous) + State.Column > getColumnLimit(State))
163 return true;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000164 if (Current.is(TT_CtorInitializerColon) &&
Daniel Jasperd74cf402014-04-08 12:46:38 +0000165 ((Style.AllowShortFunctionsOnASingleLine != FormatStyle::SFS_All) ||
Daniel Jasper5d2587d2014-03-27 16:14:13 +0000166 Style.BreakConstructorInitializersBeforeComma || Style.ColumnLimit != 0))
167 return true;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000168
Daniel Jasper5d2587d2014-03-27 16:14:13 +0000169 if (State.Column < getNewLineColumn(State))
170 return false;
Daniel Jasper8c6e9ef2014-12-02 09:46:56 +0000171 if (Style.BreakBeforeBinaryOperators == FormatStyle::BOS_None) {
Daniel Jasperde0328a2013-08-16 11:20:30 +0000172 // If we need to break somewhere inside the LHS of a binary expression, we
173 // should also break after the operator. Otherwise, the formatting would
174 // hide the operator precedence, e.g. in:
175 // if (aaaaaaaaaaaaaa ==
176 // bbbbbbbbbbbbbb && c) {..
177 // For comparisons, we only apply this rule, if the LHS is a binary
178 // expression itself as otherwise, the line breaks seem superfluous.
179 // We need special cases for ">>" which we have split into two ">" while
180 // lexing in order to make template parsing easier.
Daniel Jasperde0328a2013-08-16 11:20:30 +0000181 bool IsComparison = (Previous.getPrecedence() == prec::Relational ||
182 Previous.getPrecedence() == prec::Equality) &&
183 Previous.Previous &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000184 Previous.Previous->isNot(TT_BinaryOperator); // For >>.
Daniel Jasperde0328a2013-08-16 11:20:30 +0000185 bool LHSIsBinaryExpr =
Daniel Jasper562ecd42013-09-06 08:08:14 +0000186 Previous.Previous && Previous.Previous->EndsBinaryExpression;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000187 if (Previous.is(TT_BinaryOperator) && (!IsComparison || LHSIsBinaryExpr) &&
188 Current.isNot(TT_BinaryOperator) && // For >>.
Daniel Jasperc0d606a2014-04-14 11:08:45 +0000189 !Current.isTrailingComment() && !Previous.is(tok::lessless) &&
Daniel Jasperde0328a2013-08-16 11:20:30 +0000190 Previous.getPrecedence() != prec::Assignment &&
191 State.Stack.back().BreakBeforeParameter)
192 return true;
Daniel Jasper3219e432014-12-02 13:24:51 +0000193 } else {
194 if (Current.is(TT_BinaryOperator) && Previous.EndsBinaryExpression &&
195 State.Stack.back().BreakBeforeParameter)
196 return true;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000197 }
198
Daniel Jasper3219e432014-12-02 13:24:51 +0000199
Daniel Jasperde0328a2013-08-16 11:20:30 +0000200 // Same as above, but for the first "<<" operator.
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000201 if (Current.is(tok::lessless) && Current.isNot(TT_OverloadedOperator) &&
Alexander Kornienko86b2dfd2014-03-06 15:13:08 +0000202 State.Stack.back().BreakBeforeParameter &&
Daniel Jasperde0328a2013-08-16 11:20:30 +0000203 State.Stack.back().FirstLessLess == 0)
204 return true;
205
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000206 if (Current.is(TT_SelectorName) && State.Stack.back().ObjCSelectorNameFound &&
Daniel Jasperde0328a2013-08-16 11:20:30 +0000207 State.Stack.back().BreakBeforeParameter)
208 return true;
Daniel Jasper05cd5862014-05-08 12:21:30 +0000209 if (Previous.ClosesTemplateDeclaration && Current.NestingLevel == 0 &&
Alexander Kornienkoa594ba82013-12-16 14:35:51 +0000210 !Current.isTrailingComment())
Daniel Jasperde0328a2013-08-16 11:20:30 +0000211 return true;
212
Daniel Jasper4355e7f2014-07-09 07:50:33 +0000213 // If the return type spans multiple lines, wrap before the function name.
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000214 if (Current.isOneOf(TT_FunctionDeclarationName ,tok::kw_operator) &&
Daniel Jasper4355e7f2014-07-09 07:50:33 +0000215 State.Stack.back().BreakBeforeParameter)
Daniel Jasperde0328a2013-08-16 11:20:30 +0000216 return true;
Daniel Jasper4355e7f2014-07-09 07:50:33 +0000217
Daniel Jasper4c6e0052013-08-27 14:24:43 +0000218 if (startsSegmentOfBuilderTypeCall(Current) &&
Daniel Jasperf8151e92013-08-30 07:12:40 +0000219 (State.Stack.back().CallContinuation != 0 ||
220 (State.Stack.back().BreakBeforeParameter &&
221 State.Stack.back().ContainsUnwrappedBuilder)))
Daniel Jasper4c6e0052013-08-27 14:24:43 +0000222 return true;
Daniel Jasper96972812014-01-05 12:38:10 +0000223
224 // The following could be precomputed as they do not depend on the state.
225 // However, as they should take effect only if the UnwrappedLine does not fit
226 // into the ColumnLimit, they are checked here in the ContinuationIndenter.
Daniel Jasper35995672014-04-29 14:05:20 +0000227 if (Style.ColumnLimit != 0 && Previous.BlockKind == BK_Block &&
228 Previous.is(tok::l_brace) && !Current.isOneOf(tok::r_brace, tok::comment))
Daniel Jasper96972812014-01-05 12:38:10 +0000229 return true;
Daniel Jasper96972812014-01-05 12:38:10 +0000230
Daniel Jasperde0328a2013-08-16 11:20:30 +0000231 return false;
232}
233
234unsigned ContinuationIndenter::addTokenToState(LineState &State, bool Newline,
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000235 bool DryRun,
236 unsigned ExtraSpaces) {
Daniel Jasperde0328a2013-08-16 11:20:30 +0000237 const FormatToken &Current = *State.NextToken;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000238
Manuel Klimek819788d2014-03-18 11:22:45 +0000239 assert(!State.Stack.empty());
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000240 if ((Current.is(TT_ImplicitStringLiteral) &&
Craig Topper2145bc02014-05-09 08:15:10 +0000241 (Current.Previous->Tok.getIdentifierInfo() == nullptr ||
Daniel Jasper98857842013-10-30 13:54:53 +0000242 Current.Previous->Tok.getIdentifierInfo()->getPPKeywordID() ==
243 tok::pp_not_keyword))) {
Daniel Jasperde0328a2013-08-16 11:20:30 +0000244 // FIXME: Is this correct?
245 int WhitespaceLength = SourceMgr.getSpellingColumnNumber(
246 State.NextToken->WhitespaceRange.getEnd()) -
247 SourceMgr.getSpellingColumnNumber(
248 State.NextToken->WhitespaceRange.getBegin());
Daniel Jasperda353cd2014-03-12 08:24:47 +0000249 State.Column += WhitespaceLength;
Daniel Jasper240dfda2014-03-31 14:23:49 +0000250 moveStateToNextToken(State, DryRun, /*Newline=*/false);
Daniel Jasperde0328a2013-08-16 11:20:30 +0000251 return 0;
252 }
253
Alexander Kornienko1f803962013-10-01 14:41:18 +0000254 unsigned Penalty = 0;
255 if (Newline)
256 Penalty = addTokenOnNewLine(State, DryRun);
257 else
Daniel Jasper48437ce2013-11-20 14:54:39 +0000258 addTokenOnCurrentLine(State, DryRun, ExtraSpaces);
Alexander Kornienko1f803962013-10-01 14:41:18 +0000259
260 return moveStateToNextToken(State, DryRun, Newline) + Penalty;
261}
262
Daniel Jasper48437ce2013-11-20 14:54:39 +0000263void ContinuationIndenter::addTokenOnCurrentLine(LineState &State, bool DryRun,
264 unsigned ExtraSpaces) {
Manuel Klimek71814b42013-10-11 21:25:45 +0000265 FormatToken &Current = *State.NextToken;
Alexander Kornienko1f803962013-10-01 14:41:18 +0000266 const FormatToken &Previous = *State.NextToken->Previous;
267 if (Current.is(tok::equal) &&
Daniel Jasper05cd5862014-05-08 12:21:30 +0000268 (State.Line->First->is(tok::kw_for) || Current.NestingLevel == 0) &&
Alexander Kornienko1f803962013-10-01 14:41:18 +0000269 State.Stack.back().VariablePos == 0) {
270 State.Stack.back().VariablePos = State.Column;
271 // Move over * and & if they are bound to the variable name.
272 const FormatToken *Tok = &Previous;
273 while (Tok && State.Stack.back().VariablePos >= Tok->ColumnWidth) {
274 State.Stack.back().VariablePos -= Tok->ColumnWidth;
275 if (Tok->SpacesRequiredBefore != 0)
276 break;
277 Tok = Tok->Previous;
278 }
279 if (Previous.PartOfMultiVariableDeclStmt)
280 State.Stack.back().LastSpace = State.Stack.back().VariablePos;
281 }
282
283 unsigned Spaces = Current.SpacesRequiredBefore + ExtraSpaces;
284
285 if (!DryRun)
286 Whitespaces.replaceWhitespace(Current, /*Newlines=*/0, /*IndentLevel=*/0,
287 Spaces, State.Column + Spaces);
288
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000289 if (Current.is(TT_SelectorName) &&
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000290 !State.Stack.back().ObjCSelectorNameFound) {
291 if (Current.LongestObjCSelectorName == 0)
292 State.Stack.back().AlignColons = false;
293 else if (State.Stack.back().Indent + Current.LongestObjCSelectorName >
294 State.Column + Spaces + Current.ColumnWidth)
Alexander Kornienko1f803962013-10-01 14:41:18 +0000295 State.Stack.back().ColonPos =
296 State.Stack.back().Indent + Current.LongestObjCSelectorName;
297 else
298 State.Stack.back().ColonPos = State.Column + Spaces + Current.ColumnWidth;
299 }
300
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000301 if (Style.AlignAfterOpenBracket && Previous.opensScope() &&
302 Previous.isNot(TT_ObjCMethodExpr) &&
303 (Current.isNot(TT_LineComment) || Previous.BlockKind == BK_BracedInit))
Alexander Kornienko1f803962013-10-01 14:41:18 +0000304 State.Stack.back().Indent = State.Column + Spaces;
Daniel Jasperec01cd62013-10-08 05:11:18 +0000305 if (State.Stack.back().AvoidBinPacking && startsNextParameter(Current, Style))
Alexander Kornienko1f803962013-10-01 14:41:18 +0000306 State.Stack.back().NoLineBreak = true;
307 if (startsSegmentOfBuilderTypeCall(Current))
308 State.Stack.back().ContainsUnwrappedBuilder = true;
309
Daniel Jasperd6f17d82014-09-12 16:35:28 +0000310 if (Current.isMemberAccess() && Previous.is(tok::r_paren) &&
311 (Previous.MatchingParen &&
312 (Previous.TotalLength - Previous.MatchingParen->TotalLength > 10))) {
313 // If there is a function call with long parameters, break before trailing
314 // calls. This prevents things like:
315 // EXPECT_CALL(SomeLongParameter).Times(
316 // 2);
317 // We don't want to do this for short parameters as they can just be
318 // indexes.
319 State.Stack.back().NoLineBreak = true;
320 }
321
Alexander Kornienko1f803962013-10-01 14:41:18 +0000322 State.Column += Spaces;
Daniel Jasper8acf8222014-05-07 09:23:05 +0000323 if (Current.isNot(tok::comment) && Previous.is(tok::l_paren) &&
324 Previous.Previous && Previous.Previous->isOneOf(tok::kw_if, tok::kw_for))
Alexander Kornienko1f803962013-10-01 14:41:18 +0000325 // Treat the condition inside an if as if it was a second function
Daniel Jasper6633ab82013-10-18 10:38:14 +0000326 // parameter, i.e. let nested calls have a continuation indent.
Daniel Jasper8acf8222014-05-07 09:23:05 +0000327 State.Stack.back().LastSpace = State.Column;
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000328 else if (!Current.isOneOf(tok::comment, tok::caret) &&
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000329 (Previous.is(tok::comma) ||
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000330 (Previous.is(tok::colon) && Previous.is(TT_ObjCMethodExpr))))
Alexander Kornienko1f803962013-10-01 14:41:18 +0000331 State.Stack.back().LastSpace = State.Column;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000332 else if ((Previous.isOneOf(TT_BinaryOperator, TT_ConditionalExpr,
333 TT_CtorInitializerColon)) &&
Daniel Jasper0e617842014-04-16 12:26:54 +0000334 ((Previous.getPrecedence() != prec::Assignment &&
335 (Previous.isNot(tok::lessless) || Previous.OperatorIndex != 0 ||
336 !Previous.LastOperator)) ||
Alexander Kornienko1f803962013-10-01 14:41:18 +0000337 Current.StartsBinaryExpression))
338 // Always indent relative to the RHS of the expression unless this is a
339 // simple assignment without binary expression on the RHS. Also indent
340 // relative to unary operators and the colons of constructor initializers.
341 State.Stack.back().LastSpace = State.Column;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000342 else if (Previous.is(TT_InheritanceColon)) {
Alexander Kornienko1f803962013-10-01 14:41:18 +0000343 State.Stack.back().Indent = State.Column;
Daniel Jasperf9a5e402013-10-08 16:24:07 +0000344 State.Stack.back().LastSpace = State.Column;
345 } else if (Previous.opensScope()) {
Alexander Kornienko1f803962013-10-01 14:41:18 +0000346 // If a function has a trailing call, indent all parameters from the
347 // opening parenthesis. This avoids confusing indents like:
348 // OuterFunction(InnerFunctionCall( // break
349 // ParameterToInnerFunction)) // break
350 // .SecondInnerFunctionCall();
351 bool HasTrailingCall = false;
352 if (Previous.MatchingParen) {
353 const FormatToken *Next = Previous.MatchingParen->getNextNonComment();
354 HasTrailingCall = Next && Next->isMemberAccess();
355 }
356 if (HasTrailingCall &&
357 State.Stack[State.Stack.size() - 2].CallContinuation == 0)
358 State.Stack.back().LastSpace = State.Column;
359 }
360}
361
362unsigned ContinuationIndenter::addTokenOnNewLine(LineState &State,
363 bool DryRun) {
Manuel Klimek71814b42013-10-11 21:25:45 +0000364 FormatToken &Current = *State.NextToken;
Alexander Kornienko1f803962013-10-01 14:41:18 +0000365 const FormatToken &Previous = *State.NextToken->Previous;
Daniel Jasper9f388d02014-03-27 14:33:30 +0000366
Alexander Kornienko1f803962013-10-01 14:41:18 +0000367 // Extra penalty that needs to be added because of the way certain line
368 // breaks are chosen.
369 unsigned Penalty = 0;
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000370
Daniel Jaspera0407742014-02-11 10:08:11 +0000371 const FormatToken *PreviousNonComment = Current.getPreviousNonComment();
372 const FormatToken *NextNonComment = Previous.getNextNonComment();
373 if (!NextNonComment)
374 NextNonComment = &Current;
Daniel Jasper05cd5862014-05-08 12:21:30 +0000375 // The first line break on any NestingLevel causes an extra penalty in order
Alexander Kornienko1f803962013-10-01 14:41:18 +0000376 // prefer similar line breaks.
377 if (!State.Stack.back().ContainsLineBreak)
378 Penalty += 15;
379 State.Stack.back().ContainsLineBreak = true;
Daniel Jasper8de9ed02013-08-22 15:00:41 +0000380
Alexander Kornienko1f803962013-10-01 14:41:18 +0000381 Penalty += State.NextToken->SplitPenalty;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000382
Alexander Kornienko1f803962013-10-01 14:41:18 +0000383 // Breaking before the first "<<" is generally not desirable if the LHS is
Daniel Jasper48437ce2013-11-20 14:54:39 +0000384 // short. Also always add the penalty if the LHS is split over mutliple lines
Daniel Jasper2b7556e2014-04-03 12:00:27 +0000385 // to avoid unnecessary line breaks that just work around this penalty.
Daniel Jaspera0407742014-02-11 10:08:11 +0000386 if (NextNonComment->is(tok::lessless) &&
387 State.Stack.back().FirstLessLess == 0 &&
Daniel Jasper004177e2013-12-19 16:06:40 +0000388 (State.Column <= Style.ColumnLimit / 3 ||
Daniel Jasper48437ce2013-11-20 14:54:39 +0000389 State.Stack.back().BreakBeforeParameter))
Alexander Kornienko1f803962013-10-01 14:41:18 +0000390 Penalty += Style.PenaltyBreakFirstLessLess;
391
Daniel Jasper9f388d02014-03-27 14:33:30 +0000392 State.Column = getNewLineColumn(State);
393 if (NextNonComment->isMemberAccess()) {
394 if (State.Stack.back().CallContinuation == 0)
Alexander Kornienko1f803962013-10-01 14:41:18 +0000395 State.Stack.back().CallContinuation = State.Column;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000396 } else if (NextNonComment->is(TT_SelectorName)) {
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000397 if (!State.Stack.back().ObjCSelectorNameFound) {
Daniel Jaspera0407742014-02-11 10:08:11 +0000398 if (NextNonComment->LongestObjCSelectorName == 0) {
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000399 State.Stack.back().AlignColons = false;
400 } else {
401 State.Stack.back().ColonPos =
Daniel Jaspera0407742014-02-11 10:08:11 +0000402 State.Stack.back().Indent + NextNonComment->LongestObjCSelectorName;
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000403 }
Daniel Jasper9f388d02014-03-27 14:33:30 +0000404 } else if (State.Stack.back().AlignColons &&
405 State.Stack.back().ColonPos <= NextNonComment->ColumnWidth) {
Daniel Jaspera0407742014-02-11 10:08:11 +0000406 State.Stack.back().ColonPos = State.Column + NextNonComment->ColumnWidth;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000407 }
Daniel Jasper1fd6f1f2014-03-17 14:32:47 +0000408 } else if (PreviousNonComment && PreviousNonComment->is(tok::colon) &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000409 PreviousNonComment->isOneOf(TT_ObjCMethodExpr, TT_DictLiteral)) {
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000410 // FIXME: This is hacky, find a better way. The problem is that in an ObjC
411 // method expression, the block should be aligned to the line starting it,
412 // e.g.:
413 // [aaaaaaaaaaaaaaa aaaaaaaaa: \\ break for some reason
414 // ^(int *i) {
415 // // ...
416 // }];
Daniel Jasper05cd5862014-05-08 12:21:30 +0000417 // Thus, we set LastSpace of the next higher NestingLevel, to which we move
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000418 // when we consume all of the "}"'s FakeRParens at the "{".
Daniel Jasper9a26e772013-12-23 11:25:40 +0000419 if (State.Stack.size() > 1)
Daniel Jasper9f388d02014-03-27 14:33:30 +0000420 State.Stack[State.Stack.size() - 2].LastSpace =
421 std::max(State.Stack.back().LastSpace, State.Stack.back().Indent) +
422 Style.ContinuationIndentWidth;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000423 }
424
Alexander Kornienko1f803962013-10-01 14:41:18 +0000425 if ((Previous.isOneOf(tok::comma, tok::semi) &&
426 !State.Stack.back().AvoidBinPacking) ||
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000427 Previous.is(TT_BinaryOperator))
Alexander Kornienko1f803962013-10-01 14:41:18 +0000428 State.Stack.back().BreakBeforeParameter = false;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000429 if (Previous.isOneOf(TT_TemplateCloser, TT_JavaAnnotation) &&
Daniel Jasper39af6cd2014-11-03 02:27:28 +0000430 Current.NestingLevel == 0)
Alexander Kornienko1f803962013-10-01 14:41:18 +0000431 State.Stack.back().BreakBeforeParameter = false;
Daniel Jaspera0407742014-02-11 10:08:11 +0000432 if (NextNonComment->is(tok::question) ||
Daniel Jasper165b29e2013-11-08 00:57:11 +0000433 (PreviousNonComment && PreviousNonComment->is(tok::question)))
434 State.Stack.back().BreakBeforeParameter = true;
Alexander Kornienko1f803962013-10-01 14:41:18 +0000435
436 if (!DryRun) {
Daniel Jaspera69ca9b2014-06-04 12:40:57 +0000437 unsigned Newlines = std::max(
438 1u, std::min(Current.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1));
Alexander Kornienkoe2e03872013-10-14 00:46:35 +0000439 Whitespaces.replaceWhitespace(Current, Newlines,
440 State.Stack.back().IndentLevel, State.Column,
441 State.Column, State.Line->InPPDirective);
Alexander Kornienko1f803962013-10-01 14:41:18 +0000442 }
443
444 if (!Current.isTrailingComment())
445 State.Stack.back().LastSpace = State.Column;
Daniel Jasper05cd5862014-05-08 12:21:30 +0000446 State.StartOfLineLevel = Current.NestingLevel;
447 State.LowestLevelOnLine = Current.NestingLevel;
Alexander Kornienko1f803962013-10-01 14:41:18 +0000448
449 // Any break on this level means that the parent level has been broken
450 // and we need to avoid bin packing there.
Daniel Jasper4b444492014-11-21 13:38:53 +0000451 bool NestedBlockSpecialCase =
452 Current.is(tok::r_brace) && State.Stack.size() > 1 &&
453 State.Stack[State.Stack.size() - 2].NestedBlockInlined;
454 if (!NestedBlockSpecialCase) {
Daniel Jasperb16b9692014-05-21 12:51:23 +0000455 for (unsigned i = 0, e = State.Stack.size() - 1; i != e; ++i) {
456 State.Stack[i].BreakBeforeParameter = true;
457 }
Alexander Kornienko1f803962013-10-01 14:41:18 +0000458 }
Daniel Jasperb16b9692014-05-21 12:51:23 +0000459
Daniel Jasper9e5ede02013-11-08 19:56:28 +0000460 if (PreviousNonComment &&
461 !PreviousNonComment->isOneOf(tok::comma, tok::semi) &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000462 (PreviousNonComment->isNot(TT_TemplateCloser) ||
Daniel Jasper6c0ee172014-11-14 13:14:45 +0000463 Current.NestingLevel != 0) &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000464 !PreviousNonComment->isOneOf(TT_BinaryOperator, TT_JavaAnnotation,
465 TT_LeadingJavaAnnotation) &&
466 Current.isNot(TT_BinaryOperator) && !PreviousNonComment->opensScope())
Alexander Kornienko1f803962013-10-01 14:41:18 +0000467 State.Stack.back().BreakBeforeParameter = true;
468
Daniel Jasper1db6c382013-10-22 15:30:28 +0000469 // If we break after { or the [ of an array initializer, we should also break
470 // before the corresponding } or ].
Daniel Jasper90818052014-06-10 10:42:26 +0000471 if (PreviousNonComment &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000472 (PreviousNonComment->isOneOf(tok::l_brace, TT_ArrayInitializerLSquare)))
Alexander Kornienko1f803962013-10-01 14:41:18 +0000473 State.Stack.back().BreakBeforeClosingBrace = true;
474
475 if (State.Stack.back().AvoidBinPacking) {
476 // If we are breaking after '(', '{', '<', this is not bin packing
Daniel Jasper2a958322014-05-21 13:26:58 +0000477 // unless AllowAllParametersOfDeclarationOnNextLine is false or this is a
478 // dict/object literal.
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000479 if (!Previous.isOneOf(tok::l_paren, tok::l_brace, TT_BinaryOperator) ||
Alexander Kornienko1f803962013-10-01 14:41:18 +0000480 (!Style.AllowAllParametersOfDeclarationOnNextLine &&
Daniel Jasper2a958322014-05-21 13:26:58 +0000481 State.Line->MustBeDeclaration) ||
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000482 Previous.is(TT_DictLiteral))
Alexander Kornienko1f803962013-10-01 14:41:18 +0000483 State.Stack.back().BreakBeforeParameter = true;
484 }
485
486 return Penalty;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000487}
488
Daniel Jasper9f388d02014-03-27 14:33:30 +0000489unsigned ContinuationIndenter::getNewLineColumn(const LineState &State) {
Daniel Jasper5d2587d2014-03-27 16:14:13 +0000490 if (!State.NextToken || !State.NextToken->Previous)
491 return 0;
Daniel Jasper9f388d02014-03-27 14:33:30 +0000492 FormatToken &Current = *State.NextToken;
Daniel Jasper4281c5a2014-10-07 14:45:34 +0000493 const FormatToken &Previous = *Current.Previous;
Daniel Jasper9f388d02014-03-27 14:33:30 +0000494 // If we are continuing an expression, we want to use the continuation indent.
495 unsigned ContinuationIndent =
496 std::max(State.Stack.back().LastSpace, State.Stack.back().Indent) +
497 Style.ContinuationIndentWidth;
498 const FormatToken *PreviousNonComment = Current.getPreviousNonComment();
499 const FormatToken *NextNonComment = Previous.getNextNonComment();
500 if (!NextNonComment)
501 NextNonComment = &Current;
Daniel Jasper50b4bd72014-11-02 19:16:41 +0000502
503 // Java specific bits.
Daniel Jasperd0ec0d62014-11-04 12:41:02 +0000504 if (Style.Language == FormatStyle::LK_Java &&
505 Current.isOneOf(Keywords.kw_implements, Keywords.kw_extends))
Daniel Jasper50b4bd72014-11-02 19:16:41 +0000506 return std::max(State.Stack.back().LastSpace,
507 State.Stack.back().Indent + Style.ContinuationIndentWidth);
508
Daniel Jasperb05a81d2014-05-09 13:11:16 +0000509 if (NextNonComment->is(tok::l_brace) && NextNonComment->BlockKind == BK_Block)
Daniel Jasper05cd5862014-05-08 12:21:30 +0000510 return Current.NestingLevel == 0 ? State.FirstIndent
511 : State.Stack.back().Indent;
Daniel Jasper9f388d02014-03-27 14:33:30 +0000512 if (Current.isOneOf(tok::r_brace, tok::r_square)) {
Daniel Jasperb16b9692014-05-21 12:51:23 +0000513 if (State.Stack.size() > 1 &&
Daniel Jasper4b444492014-11-21 13:38:53 +0000514 State.Stack[State.Stack.size() - 2].NestedBlockInlined)
Daniel Jasperb16b9692014-05-21 12:51:23 +0000515 return State.FirstIndent;
Daniel Jasper9f388d02014-03-27 14:33:30 +0000516 if (Current.closesBlockTypeList(Style) ||
517 (Current.MatchingParen &&
518 Current.MatchingParen->BlockKind == BK_BracedInit))
519 return State.Stack[State.Stack.size() - 2].LastSpace;
520 else
521 return State.FirstIndent;
522 }
Daniel Jasper783bac62014-04-15 09:54:30 +0000523 if (Current.is(tok::identifier) && Current.Next &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000524 Current.Next->is(TT_DictLiteral))
Daniel Jasper783bac62014-04-15 09:54:30 +0000525 return State.Stack.back().Indent;
Daniel Jasper9f388d02014-03-27 14:33:30 +0000526 if (NextNonComment->isStringLiteral() && State.StartOfStringLiteral != 0)
527 return State.StartOfStringLiteral;
528 if (NextNonComment->is(tok::lessless) &&
529 State.Stack.back().FirstLessLess != 0)
530 return State.Stack.back().FirstLessLess;
531 if (NextNonComment->isMemberAccess()) {
532 if (State.Stack.back().CallContinuation == 0) {
533 return ContinuationIndent;
534 } else {
535 return State.Stack.back().CallContinuation;
536 }
537 }
538 if (State.Stack.back().QuestionColumn != 0 &&
Daniel Jasperc0d606a2014-04-14 11:08:45 +0000539 ((NextNonComment->is(tok::colon) &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000540 NextNonComment->is(TT_ConditionalExpr)) ||
541 Previous.is(TT_ConditionalExpr)))
Daniel Jasper9f388d02014-03-27 14:33:30 +0000542 return State.Stack.back().QuestionColumn;
543 if (Previous.is(tok::comma) && State.Stack.back().VariablePos != 0)
544 return State.Stack.back().VariablePos;
Daniel Jaspere9ab42d2014-10-31 18:23:49 +0000545 if ((PreviousNonComment &&
546 (PreviousNonComment->ClosesTemplateDeclaration ||
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000547 PreviousNonComment->isOneOf(TT_AttributeParen, TT_JavaAnnotation,
548 TT_LeadingJavaAnnotation))) ||
Daniel Jasperc75e1ef2014-07-09 08:42:42 +0000549 (!Style.IndentWrappedFunctionNames &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000550 NextNonComment->isOneOf(tok::kw_operator, TT_FunctionDeclarationName)))
Daniel Jasper9f388d02014-03-27 14:33:30 +0000551 return std::max(State.Stack.back().LastSpace, State.Stack.back().Indent);
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000552 if (NextNonComment->is(TT_SelectorName)) {
Daniel Jasper9f388d02014-03-27 14:33:30 +0000553 if (!State.Stack.back().ObjCSelectorNameFound) {
554 if (NextNonComment->LongestObjCSelectorName == 0) {
555 return State.Stack.back().Indent;
556 } else {
557 return State.Stack.back().Indent +
558 NextNonComment->LongestObjCSelectorName -
559 NextNonComment->ColumnWidth;
560 }
561 } else if (!State.Stack.back().AlignColons) {
562 return State.Stack.back().Indent;
563 } else if (State.Stack.back().ColonPos > NextNonComment->ColumnWidth) {
564 return State.Stack.back().ColonPos - NextNonComment->ColumnWidth;
565 } else {
566 return State.Stack.back().Indent;
567 }
568 }
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000569 if (NextNonComment->is(TT_ArraySubscriptLSquare)) {
Daniel Jasper9f388d02014-03-27 14:33:30 +0000570 if (State.Stack.back().StartOfArraySubscripts != 0)
571 return State.Stack.back().StartOfArraySubscripts;
572 else
573 return ContinuationIndent;
574 }
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000575 if (NextNonComment->is(TT_StartOfName) ||
Daniel Jasper9f388d02014-03-27 14:33:30 +0000576 Previous.isOneOf(tok::coloncolon, tok::equal)) {
577 return ContinuationIndent;
578 }
579 if (PreviousNonComment && PreviousNonComment->is(tok::colon) &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000580 PreviousNonComment->isOneOf(TT_ObjCMethodExpr, TT_DictLiteral))
Daniel Jasper9f388d02014-03-27 14:33:30 +0000581 return ContinuationIndent;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000582 if (NextNonComment->is(TT_CtorInitializerColon))
Daniel Jasper9f388d02014-03-27 14:33:30 +0000583 return State.FirstIndent + Style.ConstructorInitializerIndentWidth;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000584 if (NextNonComment->is(TT_CtorInitializerComma))
Daniel Jasper9f388d02014-03-27 14:33:30 +0000585 return State.Stack.back().Indent;
Daniel Jasper316ab382014-08-06 13:14:58 +0000586 if (Previous.is(tok::r_paren) && !Current.isBinaryOperator() &&
Daniel Jasper119ff532014-11-14 12:31:14 +0000587 !Current.isOneOf(tok::colon, tok::comment))
Daniel Jasper316ab382014-08-06 13:14:58 +0000588 return ContinuationIndent;
Daniel Jasper5d2587d2014-03-27 16:14:13 +0000589 if (State.Stack.back().Indent == State.FirstIndent && PreviousNonComment &&
Daniel Jasper9f388d02014-03-27 14:33:30 +0000590 PreviousNonComment->isNot(tok::r_brace))
591 // Ensure that we fall back to the continuation indent width instead of
592 // just flushing continuations left.
593 return State.Stack.back().Indent + Style.ContinuationIndentWidth;
594 return State.Stack.back().Indent;
595}
596
Daniel Jasperde0328a2013-08-16 11:20:30 +0000597unsigned ContinuationIndenter::moveStateToNextToken(LineState &State,
598 bool DryRun, bool Newline) {
Daniel Jasperde0328a2013-08-16 11:20:30 +0000599 assert(State.Stack.size());
Daniel Jasper60553be2014-05-26 13:10:39 +0000600 const FormatToken &Current = *State.NextToken;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000601
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000602 if (Current.is(TT_InheritanceColon))
Daniel Jasperde0328a2013-08-16 11:20:30 +0000603 State.Stack.back().AvoidBinPacking = true;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000604 if (Current.is(tok::lessless) && Current.isNot(TT_OverloadedOperator)) {
Daniel Jasperc0d606a2014-04-14 11:08:45 +0000605 if (State.Stack.back().FirstLessLess == 0)
606 State.Stack.back().FirstLessLess = State.Column;
607 else
608 State.Stack.back().LastOperatorWrapped = Newline;
609 }
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000610 if ((Current.is(TT_BinaryOperator) && Current.isNot(tok::lessless)) ||
611 Current.is(TT_ConditionalExpr))
Daniel Jasperc0d606a2014-04-14 11:08:45 +0000612 State.Stack.back().LastOperatorWrapped = Newline;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000613 if (Current.is(TT_ArraySubscriptLSquare) &&
Daniel Jasperde0328a2013-08-16 11:20:30 +0000614 State.Stack.back().StartOfArraySubscripts == 0)
615 State.Stack.back().StartOfArraySubscripts = State.Column;
Daniel Jasper165b29e2013-11-08 00:57:11 +0000616 if ((Current.is(tok::question) && Style.BreakBeforeTernaryOperators) ||
617 (Current.getPreviousNonComment() && Current.isNot(tok::colon) &&
618 Current.getPreviousNonComment()->is(tok::question) &&
619 !Style.BreakBeforeTernaryOperators))
Daniel Jasperde0328a2013-08-16 11:20:30 +0000620 State.Stack.back().QuestionColumn = State.Column;
621 if (!Current.opensScope() && !Current.closesScope())
622 State.LowestLevelOnLine =
Daniel Jasper05cd5862014-05-08 12:21:30 +0000623 std::min(State.LowestLevelOnLine, Current.NestingLevel);
Daniel Jasper4c6e0052013-08-27 14:24:43 +0000624 if (Current.isMemberAccess())
Daniel Jasperde0328a2013-08-16 11:20:30 +0000625 State.Stack.back().StartOfFunctionCall =
Daniel Jasper0e617842014-04-16 12:26:54 +0000626 Current.LastOperator ? 0 : State.Column + Current.ColumnWidth;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000627 if (Current.is(TT_SelectorName))
Daniel Jasperb88b25f2013-12-23 07:29:06 +0000628 State.Stack.back().ObjCSelectorNameFound = true;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000629 if (Current.is(TT_CtorInitializerColon)) {
Daniel Jasperde0328a2013-08-16 11:20:30 +0000630 // Indent 2 from the column, so:
631 // SomeClass::SomeClass()
632 // : First(...), ...
633 // Next(...)
634 // ^ line up here.
635 State.Stack.back().Indent =
636 State.Column + (Style.BreakConstructorInitializersBeforeComma ? 0 : 2);
637 if (Style.ConstructorInitializerAllOnOneLineOrOnePerLine)
638 State.Stack.back().AvoidBinPacking = true;
639 State.Stack.back().BreakBeforeParameter = false;
640 }
641
Daniel Jasperde0328a2013-08-16 11:20:30 +0000642 // In ObjC method declaration we align on the ":" of parameters, but we need
Daniel Jasper6633ab82013-10-18 10:38:14 +0000643 // to ensure that we indent parameters on subsequent lines by at least our
644 // continuation indent width.
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000645 if (Current.is(TT_ObjCMethodSpecifier))
Daniel Jasper6633ab82013-10-18 10:38:14 +0000646 State.Stack.back().Indent += Style.ContinuationIndentWidth;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000647
648 // Insert scopes created by fake parenthesis.
649 const FormatToken *Previous = Current.getPreviousNonComment();
Daniel Jasperb16b9692014-05-21 12:51:23 +0000650
651 // Add special behavior to support a format commonly used for JavaScript
652 // closures:
653 // SomeFunction(function() {
654 // foo();
655 // bar();
656 // }, a, b, c);
Daniel Jasper4b444492014-11-21 13:38:53 +0000657 if (Current.isNot(tok::comment) && Previous && Previous->is(tok::l_brace) &&
658 State.Stack.size() > 1) {
659 if (State.Stack[State.Stack.size() - 2].NestedBlockInlined && Newline) {
660 for (unsigned i = 0, e = State.Stack.size() - 1; i != e; ++i) {
661 State.Stack[i].NoLineBreak = true;
Daniel Jasperb16b9692014-05-21 12:51:23 +0000662 }
Daniel Jasperb16b9692014-05-21 12:51:23 +0000663 }
Daniel Jasper4b444492014-11-21 13:38:53 +0000664 State.Stack[State.Stack.size() - 2].NestedBlockInlined = false;
665 }
666 if (Previous && (Previous->isOneOf(tok::l_paren, tok::comma, tok::colon) ||
667 Previous->isOneOf(TT_BinaryOperator, TT_ConditionalExpr)) &&
668 !Previous->isOneOf(TT_DictLiteral, TT_ObjCMethodExpr)) {
669 State.Stack.back().NestedBlockInlined =
670 !Newline &&
671 (Previous->isNot(tok::l_paren) || Previous->ParameterCount > 1) && !Newline;
Daniel Jasperb16b9692014-05-21 12:51:23 +0000672 }
673
Daniel Jasper60553be2014-05-26 13:10:39 +0000674 moveStatePastFakeLParens(State, Newline);
675 moveStatePastScopeOpener(State, Newline);
676 moveStatePastScopeCloser(State);
677 moveStatePastFakeRParens(State);
678
679 if (Current.isStringLiteral() && State.StartOfStringLiteral == 0) {
680 State.StartOfStringLiteral = State.Column;
681 } else if (!Current.isOneOf(tok::comment, tok::identifier, tok::hash) &&
682 !Current.isStringLiteral()) {
683 State.StartOfStringLiteral = 0;
684 }
685
686 State.Column += Current.ColumnWidth;
687 State.NextToken = State.NextToken->Next;
688 unsigned Penalty = breakProtrudingToken(Current, State, DryRun);
689 if (State.Column > getColumnLimit(State)) {
690 unsigned ExcessCharacters = State.Column - getColumnLimit(State);
691 Penalty += Style.PenaltyExcessCharacter * ExcessCharacters;
692 }
693
694 if (Current.Role)
695 Current.Role->formatFromToken(State, this, DryRun);
696 // If the previous has a special role, let it consume tokens as appropriate.
697 // It is necessary to start at the previous token for the only implemented
698 // role (comma separated list). That way, the decision whether or not to break
699 // after the "{" is already done and both options are tried and evaluated.
700 // FIXME: This is ugly, find a better way.
701 if (Previous && Previous->Role)
702 Penalty += Previous->Role->formatAfterToken(State, this, DryRun);
703
704 return Penalty;
705}
706
707void ContinuationIndenter::moveStatePastFakeLParens(LineState &State,
708 bool Newline) {
709 const FormatToken &Current = *State.NextToken;
710 const FormatToken *Previous = Current.getPreviousNonComment();
711
Daniel Jasperde0328a2013-08-16 11:20:30 +0000712 // Don't add extra indentation for the first fake parenthesis after
Dinesh Dwivedi0db806b2014-05-01 17:19:34 +0000713 // 'return', assignments or opening <({[. The indentation for these cases
Daniel Jasperde0328a2013-08-16 11:20:30 +0000714 // is special cased.
715 bool SkipFirstExtraIndent =
Daniel Jaspereabede62013-09-30 08:29:03 +0000716 (Previous && (Previous->opensScope() || Previous->is(tok::kw_return) ||
Daniel Jasper3219e432014-12-02 13:24:51 +0000717 (Previous->getPrecedence() == prec::Assignment &&
718 Style.AlignOperands) ||
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000719 Previous->is(TT_ObjCMethodExpr)));
Daniel Jasperde0328a2013-08-16 11:20:30 +0000720 for (SmallVectorImpl<prec::Level>::const_reverse_iterator
721 I = Current.FakeLParens.rbegin(),
722 E = Current.FakeLParens.rend();
723 I != E; ++I) {
724 ParenState NewParenState = State.Stack.back();
725 NewParenState.ContainsLineBreak = false;
Daniel Jaspereabede62013-09-30 08:29:03 +0000726
Daniel Jasper3aa9a6a2014-11-18 23:55:27 +0000727 // Indent from 'LastSpace' unless these are fake parentheses encapsulating
728 // a builder type call after 'return' or, if the alignment after opening
729 // brackets is disabled.
Daniel Jasper4281c5a2014-10-07 14:45:34 +0000730 if (!Current.isTrailingComment() &&
Daniel Jasper3219e432014-12-02 13:24:51 +0000731 (Style.AlignOperands || *I < prec::Assignment) &&
Daniel Jasper6cab6782014-11-20 09:54:49 +0000732 (!Previous || Previous->isNot(tok::kw_return) ||
733 (Style.Language != FormatStyle::LK_Java && *I > 0)) &&
Daniel Jasper3aa9a6a2014-11-18 23:55:27 +0000734 (Style.AlignAfterOpenBracket || *I != prec::Comma ||
735 Current.NestingLevel == 0))
Daniel Jaspereabede62013-09-30 08:29:03 +0000736 NewParenState.Indent =
737 std::max(std::max(State.Column, NewParenState.Indent),
738 State.Stack.back().LastSpace);
739
Daniel Jasper5c332652014-04-03 12:00:33 +0000740 // Don't allow the RHS of an operator to be split over multiple lines unless
741 // there is a line-break right after the operator.
742 // Exclude relational operators, as there, it is always more desirable to
743 // have the LHS 'left' of the RHS.
Daniel Jasperc0d606a2014-04-14 11:08:45 +0000744 if (Previous && Previous->getPrecedence() > prec::Assignment &&
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000745 Previous->isOneOf(TT_BinaryOperator, TT_ConditionalExpr) &&
Daniel Jasperc0d606a2014-04-14 11:08:45 +0000746 Previous->getPrecedence() != prec::Relational) {
Daniel Jasper8c6e9ef2014-12-02 09:46:56 +0000747 bool BreakBeforeOperator =
748 Previous->is(tok::lessless) ||
749 (Previous->is(TT_BinaryOperator) &&
750 Style.BreakBeforeBinaryOperators != FormatStyle::BOS_None) ||
751 (Previous->is(TT_ConditionalExpr) &&
752 Style.BreakBeforeTernaryOperators);
Daniel Jasperc0d606a2014-04-14 11:08:45 +0000753 if ((!Newline && !BreakBeforeOperator) ||
754 (!State.Stack.back().LastOperatorWrapped && BreakBeforeOperator))
755 NewParenState.NoLineBreak = true;
756 }
Daniel Jasper5c332652014-04-03 12:00:33 +0000757
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +0000758 // Do not indent relative to the fake parentheses inserted for "." or "->".
759 // This is a special case to make the following to statements consistent:
760 // OuterFunction(InnerFunctionCall( // break
761 // ParameterToInnerFunction));
762 // OuterFunction(SomeObject.InnerFunctionCall( // break
763 // ParameterToInnerFunction));
764 if (*I > prec::Unknown)
765 NewParenState.LastSpace = std::max(NewParenState.LastSpace, State.Column);
Daniel Jasper96964352013-12-18 10:44:36 +0000766 NewParenState.StartOfFunctionCall = State.Column;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000767
768 // Always indent conditional expressions. Never indent expression where
769 // the 'operator' is ',', ';' or an assignment (i.e. *I <=
770 // prec::Assignment) as those have different indentation rules. Indent
771 // other expression, unless the indentation needs to be skipped.
772 if (*I == prec::Conditional ||
773 (!SkipFirstExtraIndent && *I > prec::Assignment &&
Daniel Jasper8c6e9ef2014-12-02 09:46:56 +0000774 !Current.isTrailingComment()))
Daniel Jasper6633ab82013-10-18 10:38:14 +0000775 NewParenState.Indent += Style.ContinuationIndentWidth;
Daniel Jasper1db6c382013-10-22 15:30:28 +0000776 if ((Previous && !Previous->opensScope()) || *I > prec::Comma)
Daniel Jasperde0328a2013-08-16 11:20:30 +0000777 NewParenState.BreakBeforeParameter = false;
778 State.Stack.push_back(NewParenState);
779 SkipFirstExtraIndent = false;
780 }
Daniel Jasper60553be2014-05-26 13:10:39 +0000781}
Daniel Jasperde0328a2013-08-16 11:20:30 +0000782
Daniel Jasper335ff262014-05-28 09:11:53 +0000783// Remove the fake r_parens after 'Tok'.
784static void consumeRParens(LineState& State, const FormatToken &Tok) {
785 for (unsigned i = 0, e = Tok.FakeRParens; i != e; ++i) {
786 unsigned VariablePos = State.Stack.back().VariablePos;
787 assert(State.Stack.size() > 1);
788 if (State.Stack.size() == 1) {
789 // Do not pop the last element.
790 break;
791 }
792 State.Stack.pop_back();
793 State.Stack.back().VariablePos = VariablePos;
794 }
795}
796
797// Returns whether 'Tok' opens or closes a scope requiring special handling
798// of the subsequent fake r_parens.
799//
800// For example, if this is an l_brace starting a nested block, we pretend (wrt.
801// to indentation) that we already consumed the corresponding r_brace. Thus, we
802// remove all ParenStates caused by fake parentheses that end at the r_brace.
803// The net effect of this is that we don't indent relative to the l_brace, if
804// the nested block is the last parameter of a function. This formats:
805//
806// SomeFunction(a, [] {
807// f(); // break
808// });
809//
810// instead of:
811// SomeFunction(a, [] {
812// f(); // break
813// });
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000814static bool fakeRParenSpecialCase(const LineState &State) {
815 const FormatToken &Tok = *State.NextToken;
Daniel Jasper335ff262014-05-28 09:11:53 +0000816 if (!Tok.MatchingParen)
817 return false;
818 const FormatToken *Left = &Tok;
819 if (Tok.isOneOf(tok::r_brace, tok::r_square))
820 Left = Tok.MatchingParen;
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000821 return !State.Stack.back().HasMultipleNestedBlocks &&
822 Left->isOneOf(tok::l_brace, tok::l_square) &&
Daniel Jasper335ff262014-05-28 09:11:53 +0000823 (Left->BlockKind == BK_Block ||
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000824 Left->isOneOf(TT_ArrayInitializerLSquare, TT_DictLiteral));
Daniel Jasper335ff262014-05-28 09:11:53 +0000825}
826
Daniel Jasper60553be2014-05-26 13:10:39 +0000827void ContinuationIndenter::moveStatePastFakeRParens(LineState &State) {
Daniel Jasper335ff262014-05-28 09:11:53 +0000828 // Don't remove FakeRParens attached to r_braces that surround nested blocks
829 // as they will have been removed early (see above).
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000830 if (fakeRParenSpecialCase(State))
Daniel Jasper335ff262014-05-28 09:11:53 +0000831 return;
832
833 consumeRParens(State, *State.NextToken);
Daniel Jasper60553be2014-05-26 13:10:39 +0000834}
Daniel Jasperde0328a2013-08-16 11:20:30 +0000835
Daniel Jasper60553be2014-05-26 13:10:39 +0000836void ContinuationIndenter::moveStatePastScopeOpener(LineState &State,
837 bool Newline) {
838 const FormatToken &Current = *State.NextToken;
839 if (!Current.opensScope())
840 return;
841
842 if (Current.MatchingParen && Current.BlockKind == BK_Block) {
843 moveStateToNewBlock(State);
844 return;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000845 }
846
Daniel Jasper60553be2014-05-26 13:10:39 +0000847 unsigned NewIndent;
848 unsigned NewIndentLevel = State.Stack.back().IndentLevel;
849 bool AvoidBinPacking;
850 bool BreakBeforeParameter = false;
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000851 if (Current.isOneOf(tok::l_brace, TT_ArrayInitializerLSquare)) {
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000852 if (fakeRParenSpecialCase(State))
Daniel Jasper335ff262014-05-28 09:11:53 +0000853 consumeRParens(State, *Current.MatchingParen);
854
Daniel Jasper60553be2014-05-26 13:10:39 +0000855 NewIndent = State.Stack.back().LastSpace;
856 if (Current.opensBlockTypeList(Style)) {
857 NewIndent += Style.IndentWidth;
858 NewIndent = std::min(State.Column + 2, NewIndent);
859 ++NewIndentLevel;
860 } else {
861 NewIndent += Style.ContinuationIndentWidth;
862 NewIndent = std::min(State.Column + 1, NewIndent);
863 }
864 const FormatToken *NextNoComment = Current.getNextNonComment();
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000865 AvoidBinPacking =
866 Current.isOneOf(TT_ArrayInitializerLSquare, TT_DictLiteral) ||
867 Style.Language == FormatStyle::LK_Proto || !Style.BinPackParameters ||
868 (NextNoComment && NextNoComment->is(TT_DesignatedInitializerPeriod));
Daniel Jasper60553be2014-05-26 13:10:39 +0000869 } else {
870 NewIndent = Style.ContinuationIndentWidth +
871 std::max(State.Stack.back().LastSpace,
872 State.Stack.back().StartOfFunctionCall);
Daniel Jasper18210d72014-10-09 09:52:05 +0000873 AvoidBinPacking =
874 (State.Line->MustBeDeclaration && !Style.BinPackParameters) ||
875 (!State.Line->MustBeDeclaration && !Style.BinPackArguments) ||
876 (Style.ExperimentalAutoDetectBinPacking &&
877 (Current.PackingKind == PPK_OnePerLine ||
878 (!BinPackInconclusiveFunctions &&
879 Current.PackingKind == PPK_Inconclusive)));
Daniel Jasper60553be2014-05-26 13:10:39 +0000880 // If this '[' opens an ObjC call, determine whether all parameters fit
881 // into one line and put one per line if they don't.
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000882 if (Current.is(TT_ObjCMethodExpr) && Style.ColumnLimit != 0 &&
Daniel Jasper60553be2014-05-26 13:10:39 +0000883 getLengthToMatchingParen(Current) + State.Column >
884 getColumnLimit(State))
885 BreakBeforeParameter = true;
886 }
Daniel Jaspera41aa532014-09-19 08:01:25 +0000887 bool NoLineBreak = State.Stack.back().NoLineBreak ||
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000888 (Current.is(TT_TemplateOpener) &&
Daniel Jaspera41aa532014-09-19 08:01:25 +0000889 State.Stack.back().ContainsUnwrappedBuilder);
Daniel Jasper60553be2014-05-26 13:10:39 +0000890 State.Stack.push_back(ParenState(NewIndent, NewIndentLevel,
891 State.Stack.back().LastSpace,
892 AvoidBinPacking, NoLineBreak));
893 State.Stack.back().BreakBeforeParameter = BreakBeforeParameter;
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000894 State.Stack.back().HasMultipleNestedBlocks = Current.BlockParameterCount > 1;
Daniel Jasper60553be2014-05-26 13:10:39 +0000895}
896
897void ContinuationIndenter::moveStatePastScopeCloser(LineState &State) {
898 const FormatToken &Current = *State.NextToken;
899 if (!Current.closesScope())
900 return;
901
902 // If we encounter a closing ), ], } or >, we can remove a level from our
903 // stacks.
904 if (State.Stack.size() > 1 &&
905 (Current.isOneOf(tok::r_paren, tok::r_square) ||
906 (Current.is(tok::r_brace) && State.NextToken != State.Line->First) ||
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000907 State.NextToken->is(TT_TemplateCloser)))
Daniel Jasper60553be2014-05-26 13:10:39 +0000908 State.Stack.pop_back();
Daniel Jasper335ff262014-05-28 09:11:53 +0000909
Daniel Jasper60553be2014-05-26 13:10:39 +0000910 if (Current.is(tok::r_square)) {
911 // If this ends the array subscript expr, reset the corresponding value.
912 const FormatToken *NextNonComment = Current.getNextNonComment();
913 if (NextNonComment && NextNonComment->isNot(tok::l_square))
914 State.Stack.back().StartOfArraySubscripts = 0;
915 }
916}
917
918void ContinuationIndenter::moveStateToNewBlock(LineState &State) {
Daniel Jasper60553be2014-05-26 13:10:39 +0000919 // If we have already found more than one lambda introducers on this level, we
920 // opt out of this because similarity between the lambdas is more important.
Daniel Jasper114a2bc2014-06-03 12:02:45 +0000921 if (fakeRParenSpecialCase(State))
Daniel Jasper335ff262014-05-28 09:11:53 +0000922 consumeRParens(State, *State.NextToken->MatchingParen);
Daniel Jasperde0328a2013-08-16 11:20:30 +0000923
Daniel Jasper50d634b2014-10-28 16:53:38 +0000924 // ObjC block sometimes follow special indentation rules.
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000925 unsigned NewIndent =
926 State.Stack.back().LastSpace + (State.NextToken->is(TT_ObjCBlockLBrace)
927 ? Style.ObjCBlockIndentWidth
928 : Style.IndentWidth);
Daniel Jasper60553be2014-05-26 13:10:39 +0000929 State.Stack.push_back(ParenState(
930 NewIndent, /*NewIndentLevel=*/State.Stack.back().IndentLevel + 1,
931 State.Stack.back().LastSpace, /*AvoidBinPacking=*/true,
932 State.Stack.back().NoLineBreak));
933 State.Stack.back().BreakBeforeParameter = true;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000934}
935
Alexander Kornienko917f9e02013-09-10 12:29:48 +0000936unsigned ContinuationIndenter::addMultilineToken(const FormatToken &Current,
937 LineState &State) {
Alexander Kornienkod7b837e2013-08-29 17:32:57 +0000938 // Break before further function parameters on all levels.
939 for (unsigned i = 0, e = State.Stack.size(); i != e; ++i)
940 State.Stack[i].BreakBeforeParameter = true;
941
Alexander Kornienko39856b72013-09-10 09:38:25 +0000942 unsigned ColumnsUsed = State.Column;
Alexander Kornienko632abb92013-09-02 13:58:14 +0000943 // We can only affect layout of the first and the last line, so the penalty
944 // for all other lines is constant, and we ignore it.
Alexander Kornienkoebb43ca2013-09-05 14:08:34 +0000945 State.Column = Current.LastLineColumnWidth;
Alexander Kornienko632abb92013-09-02 13:58:14 +0000946
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +0000947 if (ColumnsUsed > getColumnLimit(State))
948 return Style.PenaltyExcessCharacter * (ColumnsUsed - getColumnLimit(State));
Alexander Kornienkod7b837e2013-08-29 17:32:57 +0000949 return 0;
950}
951
Daniel Jasperb05a81d2014-05-09 13:11:16 +0000952static bool getRawStringLiteralPrefixPostfix(StringRef Text, StringRef &Prefix,
Alexander Kornienko81e32942013-09-16 20:20:49 +0000953 StringRef &Postfix) {
954 if (Text.startswith(Prefix = "R\"") || Text.startswith(Prefix = "uR\"") ||
955 Text.startswith(Prefix = "UR\"") || Text.startswith(Prefix = "u8R\"") ||
956 Text.startswith(Prefix = "LR\"")) {
957 size_t ParenPos = Text.find('(');
958 if (ParenPos != StringRef::npos) {
959 StringRef Delimiter =
960 Text.substr(Prefix.size(), ParenPos - Prefix.size());
961 Prefix = Text.substr(0, ParenPos + 1);
962 Postfix = Text.substr(Text.size() - 2 - Delimiter.size());
963 return Postfix.front() == ')' && Postfix.back() == '"' &&
964 Postfix.substr(1).startswith(Delimiter);
965 }
966 }
967 return false;
968}
969
Daniel Jasperde0328a2013-08-16 11:20:30 +0000970unsigned ContinuationIndenter::breakProtrudingToken(const FormatToken &Current,
971 LineState &State,
972 bool DryRun) {
Alexander Kornienko917f9e02013-09-10 12:29:48 +0000973 // Don't break multi-line tokens other than block comments. Instead, just
974 // update the state.
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000975 if (Current.isNot(TT_BlockComment) && Current.IsMultiline)
Alexander Kornienko917f9e02013-09-10 12:29:48 +0000976 return addMultilineToken(Current, State);
977
Daniel Jasper616de8642014-11-23 16:46:28 +0000978 // Don't break implicit string literals or import statements.
Daniel Jaspera98b7b02014-11-25 10:05:17 +0000979 if (Current.is(TT_ImplicitStringLiteral) ||
Daniel Jasper616de8642014-11-23 16:46:28 +0000980 State.Line->Type == LT_ImportStatement)
Daniel Jasper98857842013-10-30 13:54:53 +0000981 return 0;
982
Daniel Jasper04b6a082013-12-20 06:22:01 +0000983 if (!Current.isStringLiteral() && !Current.is(tok::comment))
Daniel Jasperf93551c2013-08-23 10:05:49 +0000984 return 0;
985
Ahmed Charlesb8984322014-03-07 20:03:18 +0000986 std::unique_ptr<BreakableToken> Token;
Alexander Kornienko39856b72013-09-10 09:38:25 +0000987 unsigned StartColumn = State.Column - Current.ColumnWidth;
Alexander Kornienko3abbb8a2013-11-12 17:30:49 +0000988 unsigned ColumnLimit = getColumnLimit(State);
Daniel Jasperde0328a2013-08-16 11:20:30 +0000989
Daniel Jasper04b6a082013-12-20 06:22:01 +0000990 if (Current.isStringLiteral()) {
Alexander Kornienko384b40b2013-10-11 21:43:05 +0000991 // Don't break string literals inside preprocessor directives (except for
992 // #define directives, as their contents are stored in separate lines and
993 // are not affected by this check).
994 // This way we avoid breaking code with line directives and unknown
995 // preprocessor directives that contain long string literals.
996 if (State.Line->Type == LT_PreprocessorDirective)
997 return 0;
Daniel Jasperde0328a2013-08-16 11:20:30 +0000998 // Exempts unterminated string literals from line breaking. The user will
999 // likely want to terminate the string before any line breaking is done.
1000 if (Current.IsUnterminatedLiteral)
1001 return 0;
1002
Alexander Kornienko81e32942013-09-16 20:20:49 +00001003 StringRef Text = Current.TokenText;
1004 StringRef Prefix;
1005 StringRef Postfix;
Daniel Jasper174b0122014-01-09 14:18:12 +00001006 bool IsNSStringLiteral = false;
Alexander Kornienko81e32942013-09-16 20:20:49 +00001007 // FIXME: Handle whitespace between '_T', '(', '"..."', and ')'.
1008 // FIXME: Store Prefix and Suffix (or PrefixLength and SuffixLength to
1009 // reduce the overhead) for each FormatToken, which is a string, so that we
1010 // don't run multiple checks here on the hot path.
Daniel Jasper174b0122014-01-09 14:18:12 +00001011 if (Text.startswith("\"") && Current.Previous &&
1012 Current.Previous->is(tok::at)) {
1013 IsNSStringLiteral = true;
1014 Prefix = "@\"";
Daniel Jasper174b0122014-01-09 14:18:12 +00001015 }
Alexander Kornienko81e32942013-09-16 20:20:49 +00001016 if ((Text.endswith(Postfix = "\"") &&
Daniel Jasper174b0122014-01-09 14:18:12 +00001017 (IsNSStringLiteral || Text.startswith(Prefix = "\"") ||
1018 Text.startswith(Prefix = "u\"") || Text.startswith(Prefix = "U\"") ||
1019 Text.startswith(Prefix = "u8\"") ||
Alexander Kornienko81e32942013-09-16 20:20:49 +00001020 Text.startswith(Prefix = "L\""))) ||
1021 (Text.startswith(Prefix = "_T(\"") && Text.endswith(Postfix = "\")")) ||
1022 getRawStringLiteralPrefixPostfix(Text, Prefix, Postfix)) {
Alexander Kornienko3c3d09c2013-09-27 16:14:22 +00001023 Token.reset(new BreakableStringLiteral(
1024 Current, State.Line->Level, StartColumn, Prefix, Postfix,
1025 State.Line->InPPDirective, Encoding, Style));
Alexander Kornienko81e32942013-09-16 20:20:49 +00001026 } else {
1027 return 0;
1028 }
Daniel Jaspera98b7b02014-11-25 10:05:17 +00001029 } else if (Current.is(TT_BlockComment) && Current.isTrailingComment()) {
Alexander Kornienkoce9161a2014-01-02 15:13:14 +00001030 if (CommentPragmasRegex.match(Current.TokenText.substr(2)))
1031 return 0;
Daniel Jasperde0328a2013-08-16 11:20:30 +00001032 Token.reset(new BreakableBlockComment(
Alexander Kornienko3c3d09c2013-09-27 16:14:22 +00001033 Current, State.Line->Level, StartColumn, Current.OriginalColumn,
1034 !Current.Previous, State.Line->InPPDirective, Encoding, Style));
Daniel Jaspera98b7b02014-11-25 10:05:17 +00001035 } else if (Current.is(TT_LineComment) &&
Craig Topper2145bc02014-05-09 08:15:10 +00001036 (Current.Previous == nullptr ||
Daniel Jaspera98b7b02014-11-25 10:05:17 +00001037 Current.Previous->isNot(TT_ImplicitStringLiteral))) {
Alexander Kornienkoce9161a2014-01-02 15:13:14 +00001038 if (CommentPragmasRegex.match(Current.TokenText.substr(2)))
1039 return 0;
Alexander Kornienko3c3d09c2013-09-27 16:14:22 +00001040 Token.reset(new BreakableLineComment(Current, State.Line->Level,
Alexander Kornienko3abbb8a2013-11-12 17:30:49 +00001041 StartColumn, /*InPPDirective=*/false,
Alexander Kornienko3c3d09c2013-09-27 16:14:22 +00001042 Encoding, Style));
Alexander Kornienko3abbb8a2013-11-12 17:30:49 +00001043 // We don't insert backslashes when breaking line comments.
1044 ColumnLimit = Style.ColumnLimit;
Daniel Jasperde0328a2013-08-16 11:20:30 +00001045 } else {
1046 return 0;
1047 }
Alexander Kornienko3abbb8a2013-11-12 17:30:49 +00001048 if (Current.UnbreakableTailLength >= ColumnLimit)
Daniel Jasperde0328a2013-08-16 11:20:30 +00001049 return 0;
1050
Alexander Kornienko3abbb8a2013-11-12 17:30:49 +00001051 unsigned RemainingSpace = ColumnLimit - Current.UnbreakableTailLength;
Daniel Jasperde0328a2013-08-16 11:20:30 +00001052 bool BreakInserted = false;
1053 unsigned Penalty = 0;
1054 unsigned RemainingTokenColumns = 0;
1055 for (unsigned LineIndex = 0, EndIndex = Token->getLineCount();
1056 LineIndex != EndIndex; ++LineIndex) {
1057 if (!DryRun)
1058 Token->replaceWhitespaceBefore(LineIndex, Whitespaces);
1059 unsigned TailOffset = 0;
1060 RemainingTokenColumns =
1061 Token->getLineLengthAfterSplit(LineIndex, TailOffset, StringRef::npos);
1062 while (RemainingTokenColumns > RemainingSpace) {
1063 BreakableToken::Split Split =
Alexander Kornienko3abbb8a2013-11-12 17:30:49 +00001064 Token->getSplit(LineIndex, TailOffset, ColumnLimit);
Daniel Jasperde0328a2013-08-16 11:20:30 +00001065 if (Split.first == StringRef::npos) {
1066 // The last line's penalty is handled in addNextStateToQueue().
1067 if (LineIndex < EndIndex - 1)
1068 Penalty += Style.PenaltyExcessCharacter *
1069 (RemainingTokenColumns - RemainingSpace);
1070 break;
1071 }
1072 assert(Split.first != 0);
1073 unsigned NewRemainingTokenColumns = Token->getLineLengthAfterSplit(
1074 LineIndex, TailOffset + Split.first + Split.second, StringRef::npos);
Alexander Kornienko875395f2013-11-12 17:50:13 +00001075
1076 // We can remove extra whitespace instead of breaking the line.
1077 if (RemainingTokenColumns + 1 - Split.second <= RemainingSpace) {
1078 RemainingTokenColumns = 0;
1079 if (!DryRun)
1080 Token->replaceWhitespace(LineIndex, TailOffset, Split, Whitespaces);
1081 break;
1082 }
1083
Alexander Kornienko64a42b82014-04-15 14:52:43 +00001084 // When breaking before a tab character, it may be moved by a few columns,
1085 // but will still be expanded to the next tab stop, so we don't save any
1086 // columns.
1087 if (NewRemainingTokenColumns == RemainingTokenColumns)
1088 break;
1089
Daniel Jasperde0328a2013-08-16 11:20:30 +00001090 assert(NewRemainingTokenColumns < RemainingTokenColumns);
1091 if (!DryRun)
1092 Token->insertBreak(LineIndex, TailOffset, Split, Whitespaces);
Daniel Jasper2739af32013-08-28 10:03:58 +00001093 Penalty += Current.SplitPenalty;
Daniel Jasperde0328a2013-08-16 11:20:30 +00001094 unsigned ColumnsUsed =
1095 Token->getLineLengthAfterSplit(LineIndex, TailOffset, Split.first);
Alexander Kornienko3abbb8a2013-11-12 17:30:49 +00001096 if (ColumnsUsed > ColumnLimit) {
1097 Penalty += Style.PenaltyExcessCharacter * (ColumnsUsed - ColumnLimit);
Daniel Jasperde0328a2013-08-16 11:20:30 +00001098 }
1099 TailOffset += Split.first + Split.second;
1100 RemainingTokenColumns = NewRemainingTokenColumns;
1101 BreakInserted = true;
1102 }
1103 }
1104
1105 State.Column = RemainingTokenColumns;
1106
1107 if (BreakInserted) {
1108 // If we break the token inside a parameter list, we need to break before
1109 // the next parameter on all levels, so that the next parameter is clearly
1110 // visible. Line comments already introduce a break.
Daniel Jaspera98b7b02014-11-25 10:05:17 +00001111 if (Current.isNot(TT_LineComment)) {
Daniel Jasperde0328a2013-08-16 11:20:30 +00001112 for (unsigned i = 0, e = State.Stack.size(); i != e; ++i)
1113 State.Stack[i].BreakBeforeParameter = true;
1114 }
1115
Daniel Jasper04b6a082013-12-20 06:22:01 +00001116 Penalty += Current.isStringLiteral() ? Style.PenaltyBreakString
1117 : Style.PenaltyBreakComment;
Daniel Jasper2739af32013-08-28 10:03:58 +00001118
Daniel Jasperde0328a2013-08-16 11:20:30 +00001119 State.Stack.back().LastSpace = StartColumn;
1120 }
1121 return Penalty;
1122}
1123
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +00001124unsigned ContinuationIndenter::getColumnLimit(const LineState &State) const {
Daniel Jasperde0328a2013-08-16 11:20:30 +00001125 // In preprocessor directives reserve two chars for trailing " \"
Daniel Jasper9fe0e8d2013-09-05 09:29:45 +00001126 return Style.ColumnLimit - (State.Line->InPPDirective ? 2 : 0);
Daniel Jasperde0328a2013-08-16 11:20:30 +00001127}
1128
Daniel Jasperc39b56f2013-12-16 07:23:08 +00001129bool ContinuationIndenter::nextIsMultilineString(const LineState &State) {
Daniel Jasperf438cb72013-08-23 11:57:34 +00001130 const FormatToken &Current = *State.NextToken;
Daniel Jaspera98b7b02014-11-25 10:05:17 +00001131 if (!Current.isStringLiteral() || Current.is(TT_ImplicitStringLiteral))
Daniel Jasperf438cb72013-08-23 11:57:34 +00001132 return false;
Alexander Kornienkod7b837e2013-08-29 17:32:57 +00001133 // We never consider raw string literals "multiline" for the purpose of
Daniel Jasperc39b56f2013-12-16 07:23:08 +00001134 // AlwaysBreakBeforeMultilineStrings implementation as they are special-cased
1135 // (see TokenAnnotator::mustBreakBefore().
Alexander Kornienkod7b837e2013-08-29 17:32:57 +00001136 if (Current.TokenText.startswith("R\""))
1137 return false;
Alexander Kornienko39856b72013-09-10 09:38:25 +00001138 if (Current.IsMultiline)
Alexander Kornienkod7b837e2013-08-29 17:32:57 +00001139 return true;
Daniel Jasperf438cb72013-08-23 11:57:34 +00001140 if (Current.getNextNonComment() &&
Daniel Jasper04b6a082013-12-20 06:22:01 +00001141 Current.getNextNonComment()->isStringLiteral())
Daniel Jasperf438cb72013-08-23 11:57:34 +00001142 return true; // Implicit concatenation.
Alexander Kornienko39856b72013-09-10 09:38:25 +00001143 if (State.Column + Current.ColumnWidth + Current.UnbreakableTailLength >
Daniel Jasperf438cb72013-08-23 11:57:34 +00001144 Style.ColumnLimit)
1145 return true; // String will be split.
Alexander Kornienkod7b837e2013-08-29 17:32:57 +00001146 return false;
Daniel Jasperf438cb72013-08-23 11:57:34 +00001147}
1148
Daniel Jasperde0328a2013-08-16 11:20:30 +00001149} // namespace format
1150} // namespace clang