1 //===--- Format.cpp - Format C++ code -------------------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 /// 10 /// \file 11 /// \brief This file implements functions declared in Format.h. This will be 12 /// split into separate files as we go. 13 /// 14 /// This is EXPERIMENTAL code under heavy development. It is not in a state yet, 15 /// where it can be used to format real code. 16 /// 17 //===----------------------------------------------------------------------===// 18 19 #include "clang/Format/Format.h" 20 #include "UnwrappedLineParser.h" 21 #include "clang/Basic/SourceManager.h" 22 #include "clang/Lex/Lexer.h" 23 24 #include <string> 25 26 namespace clang { 27 namespace format { 28 29 // FIXME: Move somewhere sane. 30 struct TokenAnnotation { 31 enum TokenType { 32 TT_Unknown, 33 TT_TemplateOpener, 34 TT_TemplateCloser, 35 TT_BinaryOperator, 36 TT_UnaryOperator, 37 TT_OverloadedOperator, 38 TT_PointerOrReference, 39 TT_ConditionalExpr, 40 TT_LineComment, 41 TT_BlockComment 42 }; 43 44 TokenType Type; 45 46 bool SpaceRequiredBefore; 47 bool CanBreakBefore; 48 bool MustBreakBefore; 49 }; 50 51 using llvm::MutableArrayRef; 52 53 FormatStyle getLLVMStyle() { 54 FormatStyle LLVMStyle; 55 LLVMStyle.ColumnLimit = 80; 56 LLVMStyle.MaxEmptyLinesToKeep = 1; 57 LLVMStyle.PointerAndReferenceBindToType = false; 58 LLVMStyle.AccessModifierOffset = -2; 59 LLVMStyle.SplitTemplateClosingGreater = true; 60 LLVMStyle.IndentCaseLabels = false; 61 return LLVMStyle; 62 } 63 64 FormatStyle getGoogleStyle() { 65 FormatStyle GoogleStyle; 66 GoogleStyle.ColumnLimit = 80; 67 GoogleStyle.MaxEmptyLinesToKeep = 1; 68 GoogleStyle.PointerAndReferenceBindToType = true; 69 GoogleStyle.AccessModifierOffset = -1; 70 GoogleStyle.SplitTemplateClosingGreater = false; 71 GoogleStyle.IndentCaseLabels = true; 72 return GoogleStyle; 73 } 74 75 struct OptimizationParameters { 76 unsigned PenaltyExtraLine; 77 unsigned PenaltyIndentLevel; 78 }; 79 80 class UnwrappedLineFormatter { 81 public: 82 UnwrappedLineFormatter(const FormatStyle &Style, SourceManager &SourceMgr, 83 const UnwrappedLine &Line, 84 const std::vector<TokenAnnotation> &Annotations, 85 tooling::Replacements &Replaces, bool StructuralError) 86 : Style(Style), 87 SourceMgr(SourceMgr), 88 Line(Line), 89 Annotations(Annotations), 90 Replaces(Replaces), 91 StructuralError(StructuralError) { 92 Parameters.PenaltyExtraLine = 100; 93 Parameters.PenaltyIndentLevel = 5; 94 } 95 96 void format() { 97 // Format first token and initialize indent. 98 unsigned Indent = formatFirstToken(); 99 100 // Initialize state dependent on indent. 101 IndentState State; 102 State.Column = Indent; 103 State.CtorInitializerOnNewLine = false; 104 State.InCtorInitializer = false; 105 State.ConsumedTokens = 0; 106 State.Indent.push_back(Indent + 4); 107 State.LastSpace.push_back(Indent); 108 State.FirstLessLess.push_back(0); 109 110 // The first token has already been indented and thus consumed. 111 moveStateToNextToken(State); 112 113 // Start iterating at 1 as we have correctly formatted of Token #0 above. 114 for (unsigned i = 1, n = Line.Tokens.size(); i != n; ++i) { 115 unsigned NoBreak = calcPenalty(State, false, UINT_MAX); 116 unsigned Break = calcPenalty(State, true, NoBreak); 117 addTokenToState(Break < NoBreak, false, State); 118 } 119 } 120 121 private: 122 /// \brief The current state when indenting a unwrapped line. 123 /// 124 /// As the indenting tries different combinations this is copied by value. 125 struct IndentState { 126 /// \brief The number of used columns in the current line. 127 unsigned Column; 128 129 /// \brief The number of tokens already consumed. 130 unsigned ConsumedTokens; 131 132 /// \brief The position to which a specific parenthesis level needs to be 133 /// indented. 134 std::vector<unsigned> Indent; 135 136 /// \brief The position of the last space on each level. 137 /// 138 /// Used e.g. to break like: 139 /// functionCall(Parameter, otherCall( 140 /// OtherParameter)); 141 std::vector<unsigned> LastSpace; 142 143 /// \brief The position the first "<<" operator encountered on each level. 144 /// 145 /// Used to align "<<" operators. 0 if no such operator has been encountered 146 /// on a level. 147 std::vector<unsigned> FirstLessLess; 148 149 bool CtorInitializerOnNewLine; 150 bool InCtorInitializer; 151 152 /// \brief Comparison operator to be able to used \c IndentState in \c map. 153 bool operator<(const IndentState &Other) const { 154 if (Other.ConsumedTokens != ConsumedTokens) 155 return Other.ConsumedTokens > ConsumedTokens; 156 if (Other.Column != Column) 157 return Other.Column > Column; 158 if (Other.Indent.size() != Indent.size()) 159 return Other.Indent.size() > Indent.size(); 160 for (int i = 0, e = Indent.size(); i != e; ++i) { 161 if (Other.Indent[i] != Indent[i]) 162 return Other.Indent[i] > Indent[i]; 163 } 164 if (Other.LastSpace.size() != LastSpace.size()) 165 return Other.LastSpace.size() > LastSpace.size(); 166 for (int i = 0, e = LastSpace.size(); i != e; ++i) { 167 if (Other.LastSpace[i] != LastSpace[i]) 168 return Other.LastSpace[i] > LastSpace[i]; 169 } 170 if (Other.FirstLessLess.size() != FirstLessLess.size()) 171 return Other.FirstLessLess.size() > FirstLessLess.size(); 172 for (int i = 0, e = FirstLessLess.size(); i != e; ++i) { 173 if (Other.FirstLessLess[i] != FirstLessLess[i]) 174 return Other.FirstLessLess[i] > FirstLessLess[i]; 175 } 176 return false; 177 } 178 }; 179 180 /// \brief Appends the next token to \p State and updates information 181 /// necessary for indentation. 182 /// 183 /// Puts the token on the current line if \p Newline is \c true and adds a 184 /// line break and necessary indentation otherwise. 185 /// 186 /// If \p DryRun is \c false, also creates and stores the required 187 /// \c Replacement. 188 void addTokenToState(bool Newline, bool DryRun, IndentState &State) { 189 unsigned Index = State.ConsumedTokens; 190 const FormatToken &Current = Line.Tokens[Index]; 191 const FormatToken &Previous = Line.Tokens[Index - 1]; 192 unsigned ParenLevel = State.Indent.size() - 1; 193 194 if (Newline) { 195 if (Current.Tok.is(tok::string_literal) && 196 Previous.Tok.is(tok::string_literal)) 197 State.Column = State.Column - Previous.Tok.getLength(); 198 else if (Current.Tok.is(tok::lessless) && 199 State.FirstLessLess[ParenLevel] != 0) 200 State.Column = State.FirstLessLess[ParenLevel]; 201 else if (Previous.Tok.is(tok::equal) && ParenLevel != 0) 202 // Indent and extra 4 spaces after '=' as it continues an expression. 203 // Don't do that on the top level, as we already indent 4 there. 204 State.Column = State.Indent[ParenLevel] + 4; 205 else 206 State.Column = State.Indent[ParenLevel]; 207 208 if (!DryRun) 209 replaceWhitespace(Current, 1, State.Column); 210 211 State.LastSpace[ParenLevel] = State.Indent[ParenLevel]; 212 if (Current.Tok.is(tok::colon) && 213 Annotations[Index].Type != TokenAnnotation::TT_ConditionalExpr) { 214 State.Indent[ParenLevel] += 2; 215 State.CtorInitializerOnNewLine = true; 216 State.InCtorInitializer = true; 217 } 218 } else { 219 unsigned Spaces = Annotations[Index].SpaceRequiredBefore ? 1 : 0; 220 if (Annotations[Index].Type == TokenAnnotation::TT_LineComment) 221 Spaces = 2; 222 223 if (!DryRun) 224 replaceWhitespace(Current, 0, Spaces); 225 226 if (Previous.Tok.is(tok::l_paren) || 227 Annotations[Index - 1].Type == TokenAnnotation::TT_TemplateOpener) 228 State.Indent[ParenLevel] = State.Column; 229 if (Current.Tok.is(tok::colon)) { 230 State.Indent[ParenLevel] = State.Column + 3; 231 State.InCtorInitializer = true; 232 } 233 // Top-level spaces are exempt as that mostly leads to better results. 234 State.Column += Spaces; 235 if (Spaces > 0 && ParenLevel != 0) 236 State.LastSpace[ParenLevel] = State.Column; 237 } 238 moveStateToNextToken(State); 239 } 240 241 /// \brief Mark the next token as consumed in \p State and modify its stacks 242 /// accordingly. 243 void moveStateToNextToken(IndentState &State) { 244 unsigned Index = State.ConsumedTokens; 245 const FormatToken &Current = Line.Tokens[Index]; 246 unsigned ParenLevel = State.Indent.size() - 1; 247 248 if (Current.Tok.is(tok::lessless) && State.FirstLessLess[ParenLevel] == 0) 249 State.FirstLessLess[ParenLevel] = State.Column; 250 251 State.Column += Current.Tok.getLength(); 252 253 // If we encounter an opening (, [ or <, we add a level to our stacks to 254 // prepare for the following tokens. 255 if (Current.Tok.is(tok::l_paren) || Current.Tok.is(tok::l_square) || 256 Annotations[Index].Type == TokenAnnotation::TT_TemplateOpener) { 257 State.Indent.push_back(4 + State.LastSpace.back()); 258 State.LastSpace.push_back(State.LastSpace.back()); 259 State.FirstLessLess.push_back(0); 260 } 261 262 // If we encounter a closing ), ] or >, we can remove a level from our 263 // stacks. 264 if (Current.Tok.is(tok::r_paren) || Current.Tok.is(tok::r_square) || 265 Annotations[Index].Type == TokenAnnotation::TT_TemplateCloser) { 266 State.Indent.pop_back(); 267 State.LastSpace.pop_back(); 268 State.FirstLessLess.pop_back(); 269 } 270 271 ++State.ConsumedTokens; 272 } 273 274 unsigned splitPenalty(const FormatToken &Token) { 275 if (Token.Tok.is(tok::semi)) 276 return 0; 277 if (Token.Tok.is(tok::comma)) 278 return 1; 279 if (Token.Tok.is(tok::equal) || Token.Tok.is(tok::l_paren) || 280 Token.Tok.is(tok::pipepipe) || Token.Tok.is(tok::ampamp)) 281 return 2; 282 return 3; 283 } 284 285 /// \brief Calculate the number of lines needed to format the remaining part 286 /// of the unwrapped line. 287 /// 288 /// Assumes the formatting so far has led to 289 /// the \c IndentState \p State. If \p NewLine is set, a new line will be 290 /// added after the previous token. 291 /// 292 /// \param StopAt is used for optimization. If we can determine that we'll 293 /// definitely need at least \p StopAt additional lines, we already know of a 294 /// better solution. 295 unsigned calcPenalty(IndentState State, bool NewLine, unsigned StopAt) { 296 // We are at the end of the unwrapped line, so we don't need any more lines. 297 if (State.ConsumedTokens >= Line.Tokens.size()) 298 return 0; 299 300 if (!NewLine && Annotations[State.ConsumedTokens].MustBreakBefore) 301 return UINT_MAX; 302 if (NewLine && !Annotations[State.ConsumedTokens].CanBreakBefore) 303 return UINT_MAX; 304 305 if (State.ConsumedTokens > 0 && !NewLine && 306 State.CtorInitializerOnNewLine && 307 Line.Tokens[State.ConsumedTokens - 1].Tok.is(tok::comma)) 308 return UINT_MAX; 309 310 if (NewLine && State.InCtorInitializer && !State.CtorInitializerOnNewLine) 311 return UINT_MAX; 312 313 unsigned CurrentPenalty = 0; 314 if (NewLine) { 315 CurrentPenalty += Parameters.PenaltyIndentLevel * State.Indent.size() + 316 Parameters.PenaltyExtraLine + 317 splitPenalty(Line.Tokens[State.ConsumedTokens - 1]); 318 } 319 320 addTokenToState(NewLine, true, State); 321 322 // Exceeding column limit is bad. 323 if (State.Column > Style.ColumnLimit) 324 return UINT_MAX; 325 326 if (StopAt <= CurrentPenalty) 327 return UINT_MAX; 328 StopAt -= CurrentPenalty; 329 330 StateMap::iterator I = Memory.find(State); 331 if (I != Memory.end()) { 332 // If this state has already been examined, we can safely return the 333 // previous result if we 334 // - have not hit the optimatization (and thus returned UINT_MAX) OR 335 // - are now computing for a smaller or equal StopAt. 336 unsigned SavedResult = I->second.first; 337 unsigned SavedStopAt = I->second.second; 338 if (SavedResult != UINT_MAX || StopAt <= SavedStopAt) 339 return SavedResult; 340 } 341 342 unsigned NoBreak = calcPenalty(State, false, StopAt); 343 unsigned WithBreak = calcPenalty(State, true, std::min(StopAt, NoBreak)); 344 unsigned Result = std::min(NoBreak, WithBreak); 345 if (Result != UINT_MAX) 346 Result += CurrentPenalty; 347 Memory[State] = std::pair<unsigned, unsigned>(Result, StopAt); 348 return Result; 349 } 350 351 /// \brief Replaces the whitespace in front of \p Tok. Only call once for 352 /// each \c FormatToken. 353 void replaceWhitespace(const FormatToken &Tok, unsigned NewLines, 354 unsigned Spaces) { 355 Replaces.insert(tooling::Replacement( 356 SourceMgr, Tok.WhiteSpaceStart, Tok.WhiteSpaceLength, 357 std::string(NewLines, '\n') + std::string(Spaces, ' '))); 358 } 359 360 /// \brief Add a new line and the required indent before the first Token 361 /// of the \c UnwrappedLine if there was no structural parsing error. 362 /// Returns the indent level of the \c UnwrappedLine. 363 unsigned formatFirstToken() { 364 const FormatToken &Token = Line.Tokens[0]; 365 if (!Token.WhiteSpaceStart.isValid() || StructuralError) 366 return SourceMgr.getSpellingColumnNumber(Token.Tok.getLocation()) - 1; 367 368 unsigned Newlines = 369 std::min(Token.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1); 370 unsigned Offset = SourceMgr.getFileOffset(Token.WhiteSpaceStart); 371 if (Newlines == 0 && Offset != 0) 372 Newlines = 1; 373 unsigned Indent = Line.Level * 2; 374 if (Token.Tok.is(tok::kw_public) || Token.Tok.is(tok::kw_protected) || 375 Token.Tok.is(tok::kw_private)) 376 Indent += Style.AccessModifierOffset; 377 replaceWhitespace(Token, Newlines, Indent); 378 return Indent; 379 } 380 381 FormatStyle Style; 382 SourceManager &SourceMgr; 383 const UnwrappedLine &Line; 384 const std::vector<TokenAnnotation> &Annotations; 385 tooling::Replacements &Replaces; 386 bool StructuralError; 387 388 // A map from an indent state to a pair (Result, Used-StopAt). 389 typedef std::map<IndentState, std::pair<unsigned, unsigned> > StateMap; 390 StateMap Memory; 391 392 OptimizationParameters Parameters; 393 }; 394 395 /// \brief Determines extra information about the tokens comprising an 396 /// \c UnwrappedLine. 397 class TokenAnnotator { 398 public: 399 TokenAnnotator(const UnwrappedLine &Line, const FormatStyle &Style, 400 SourceManager &SourceMgr) 401 : Line(Line), 402 Style(Style), 403 SourceMgr(SourceMgr) { 404 } 405 406 /// \brief A parser that gathers additional information about tokens. 407 /// 408 /// The \c TokenAnnotator tries to matches parenthesis and square brakets and 409 /// store a parenthesis levels. It also tries to resolve matching "<" and ">" 410 /// into template parameter lists. 411 class AnnotatingParser { 412 public: 413 AnnotatingParser(const SmallVector<FormatToken, 16> &Tokens, 414 std::vector<TokenAnnotation> &Annotations) 415 : Tokens(Tokens), 416 Annotations(Annotations), 417 Index(0) { 418 } 419 420 bool parseAngle() { 421 while (Index < Tokens.size()) { 422 if (Tokens[Index].Tok.is(tok::greater)) { 423 Annotations[Index].Type = TokenAnnotation::TT_TemplateCloser; 424 next(); 425 return true; 426 } 427 if (Tokens[Index].Tok.is(tok::r_paren) || 428 Tokens[Index].Tok.is(tok::r_square)) 429 return false; 430 if (Tokens[Index].Tok.is(tok::pipepipe) || 431 Tokens[Index].Tok.is(tok::ampamp) || 432 Tokens[Index].Tok.is(tok::question) || 433 Tokens[Index].Tok.is(tok::colon)) 434 return false; 435 consumeToken(); 436 } 437 return false; 438 } 439 440 bool parseParens() { 441 while (Index < Tokens.size()) { 442 if (Tokens[Index].Tok.is(tok::r_paren)) { 443 next(); 444 return true; 445 } 446 if (Tokens[Index].Tok.is(tok::r_square)) 447 return false; 448 consumeToken(); 449 } 450 return false; 451 } 452 453 bool parseSquare() { 454 while (Index < Tokens.size()) { 455 if (Tokens[Index].Tok.is(tok::r_square)) { 456 next(); 457 return true; 458 } 459 if (Tokens[Index].Tok.is(tok::r_paren)) 460 return false; 461 consumeToken(); 462 } 463 return false; 464 } 465 466 bool parseConditional() { 467 while (Index < Tokens.size()) { 468 if (Tokens[Index].Tok.is(tok::colon)) { 469 Annotations[Index].Type = TokenAnnotation::TT_ConditionalExpr; 470 next(); 471 return true; 472 } 473 consumeToken(); 474 } 475 return false; 476 } 477 478 void consumeToken() { 479 unsigned CurrentIndex = Index; 480 next(); 481 switch (Tokens[CurrentIndex].Tok.getKind()) { 482 case tok::l_paren: 483 parseParens(); 484 break; 485 case tok::l_square: 486 parseSquare(); 487 break; 488 case tok::less: 489 if (parseAngle()) 490 Annotations[CurrentIndex].Type = TokenAnnotation::TT_TemplateOpener; 491 else { 492 Annotations[CurrentIndex].Type = TokenAnnotation::TT_BinaryOperator; 493 Index = CurrentIndex + 1; 494 } 495 break; 496 case tok::greater: 497 Annotations[CurrentIndex].Type = TokenAnnotation::TT_BinaryOperator; 498 break; 499 case tok::kw_operator: 500 if (!Tokens[Index].Tok.is(tok::l_paren)) 501 Annotations[Index].Type = TokenAnnotation::TT_OverloadedOperator; 502 next(); 503 break; 504 case tok::question: 505 parseConditional(); 506 break; 507 default: 508 break; 509 } 510 } 511 512 void parseLine() { 513 while (Index < Tokens.size()) { 514 consumeToken(); 515 } 516 } 517 518 void next() { 519 ++Index; 520 } 521 522 private: 523 const SmallVector<FormatToken, 16> &Tokens; 524 std::vector<TokenAnnotation> &Annotations; 525 unsigned Index; 526 }; 527 528 void annotate() { 529 Annotations.clear(); 530 for (int i = 0, e = Line.Tokens.size(); i != e; ++i) { 531 Annotations.push_back(TokenAnnotation()); 532 } 533 534 AnnotatingParser Parser(Line.Tokens, Annotations); 535 Parser.parseLine(); 536 537 determineTokenTypes(); 538 539 for (int i = 1, e = Line.Tokens.size(); i != e; ++i) { 540 TokenAnnotation &Annotation = Annotations[i]; 541 542 Annotation.CanBreakBefore = 543 canBreakBetween(Line.Tokens[i - 1], Line.Tokens[i]); 544 545 if (Line.Tokens[i].Tok.is(tok::colon)) { 546 Annotation.SpaceRequiredBefore = 547 Line.Tokens[0].Tok.isNot(tok::kw_case) && i != e - 1; 548 } else if (Annotations[i - 1].Type == TokenAnnotation::TT_UnaryOperator) { 549 Annotation.SpaceRequiredBefore = false; 550 } else if (Annotation.Type == TokenAnnotation::TT_UnaryOperator) { 551 Annotation.SpaceRequiredBefore = 552 Line.Tokens[i - 1].Tok.isNot(tok::l_paren) && 553 Line.Tokens[i - 1].Tok.isNot(tok::l_square); 554 } else if (Line.Tokens[i - 1].Tok.is(tok::greater) && 555 Line.Tokens[i].Tok.is(tok::greater)) { 556 if (Annotation.Type == TokenAnnotation::TT_TemplateCloser && 557 Annotations[i - 1].Type == TokenAnnotation::TT_TemplateCloser) 558 Annotation.SpaceRequiredBefore = Style.SplitTemplateClosingGreater; 559 else 560 Annotation.SpaceRequiredBefore = false; 561 } else if ( 562 Annotation.Type == TokenAnnotation::TT_BinaryOperator || 563 Annotations[i - 1].Type == TokenAnnotation::TT_BinaryOperator) { 564 Annotation.SpaceRequiredBefore = true; 565 } else if ( 566 Annotations[i - 1].Type == TokenAnnotation::TT_TemplateCloser && 567 Line.Tokens[i].Tok.is(tok::l_paren)) { 568 Annotation.SpaceRequiredBefore = false; 569 } else if (Line.Tokens[i].Tok.is(tok::less) && 570 Line.Tokens[0].Tok.is(tok::hash)) { 571 Annotation.SpaceRequiredBefore = true; 572 } else { 573 Annotation.SpaceRequiredBefore = 574 spaceRequiredBetween(Line.Tokens[i - 1].Tok, Line.Tokens[i].Tok); 575 } 576 577 if (Annotations[i - 1].Type == TokenAnnotation::TT_LineComment || 578 (Line.Tokens[i].Tok.is(tok::string_literal) && 579 Line.Tokens[i - 1].Tok.is(tok::string_literal))) { 580 Annotation.MustBreakBefore = true; 581 } 582 583 if (Annotation.MustBreakBefore) 584 Annotation.CanBreakBefore = true; 585 } 586 } 587 588 const std::vector<TokenAnnotation> &getAnnotations() { 589 return Annotations; 590 } 591 592 private: 593 void determineTokenTypes() { 594 bool AssignmentEncountered = false; 595 for (int i = 0, e = Line.Tokens.size(); i != e; ++i) { 596 TokenAnnotation &Annotation = Annotations[i]; 597 const FormatToken &Tok = Line.Tokens[i]; 598 599 if (Tok.Tok.is(tok::equal) || Tok.Tok.is(tok::plusequal) || 600 Tok.Tok.is(tok::minusequal) || Tok.Tok.is(tok::starequal) || 601 Tok.Tok.is(tok::slashequal)) 602 AssignmentEncountered = true; 603 604 if (Tok.Tok.is(tok::star) || Tok.Tok.is(tok::amp)) 605 Annotation.Type = determineStarAmpUsage(i, AssignmentEncountered); 606 else if (isUnaryOperator(i)) 607 Annotation.Type = TokenAnnotation::TT_UnaryOperator; 608 else if (isBinaryOperator(Line.Tokens[i])) 609 Annotation.Type = TokenAnnotation::TT_BinaryOperator; 610 else if (Tok.Tok.is(tok::comment)) { 611 StringRef Data(SourceMgr.getCharacterData(Tok.Tok.getLocation()), 612 Tok.Tok.getLength()); 613 if (Data.startswith("//")) 614 Annotation.Type = TokenAnnotation::TT_LineComment; 615 else 616 Annotation.Type = TokenAnnotation::TT_BlockComment; 617 } 618 } 619 } 620 621 bool isUnaryOperator(unsigned Index) { 622 const Token &Tok = Line.Tokens[Index].Tok; 623 624 // '++', '--' and '!' are always unary operators. 625 if (Tok.is(tok::minusminus) || Tok.is(tok::plusplus) || 626 Tok.is(tok::exclaim)) 627 return true; 628 629 // The other possible unary operators are '+' and '-' as we 630 // determine the usage of '*' and '&' in determineStarAmpUsage(). 631 if (Tok.isNot(tok::minus) && Tok.isNot(tok::plus)) 632 return false; 633 634 // Use heuristics to recognize unary operators. 635 const Token &PreviousTok = Line.Tokens[Index - 1].Tok; 636 if (PreviousTok.is(tok::equal) || PreviousTok.is(tok::l_paren) || 637 PreviousTok.is(tok::comma) || PreviousTok.is(tok::l_square)) 638 return true; 639 640 // Fall back to marking the token as binary operator. 641 return Annotations[Index - 1].Type == TokenAnnotation::TT_BinaryOperator; 642 } 643 644 bool isBinaryOperator(const FormatToken &Tok) { 645 switch (Tok.Tok.getKind()) { 646 case tok::equal: 647 case tok::equalequal: 648 case tok::exclaimequal: 649 case tok::star: 650 //case tok::amp: 651 case tok::plus: 652 case tok::slash: 653 case tok::minus: 654 case tok::ampamp: 655 case tok::pipe: 656 case tok::pipepipe: 657 case tok::percent: 658 return true; 659 default: 660 return false; 661 } 662 } 663 664 TokenAnnotation::TokenType determineStarAmpUsage(unsigned Index, 665 bool AssignmentEncountered) { 666 if (Index == Annotations.size()) 667 return TokenAnnotation::TT_Unknown; 668 669 if (Index == 0 || Line.Tokens[Index - 1].Tok.is(tok::l_paren) || 670 Line.Tokens[Index - 1].Tok.is(tok::comma) || 671 Annotations[Index - 1].Type == TokenAnnotation::TT_BinaryOperator) 672 return TokenAnnotation::TT_UnaryOperator; 673 674 if (Line.Tokens[Index - 1].Tok.isLiteral() || 675 Line.Tokens[Index + 1].Tok.isLiteral()) 676 return TokenAnnotation::TT_BinaryOperator; 677 678 // It is very unlikely that we are going to find a pointer or reference type 679 // definition on the RHS of an assignment. 680 if (AssignmentEncountered) 681 return TokenAnnotation::TT_BinaryOperator; 682 683 return TokenAnnotation::TT_PointerOrReference; 684 } 685 686 bool isIfForOrWhile(Token Tok) { 687 return Tok.is(tok::kw_if) || Tok.is(tok::kw_for) || Tok.is(tok::kw_while); 688 } 689 690 bool spaceRequiredBetween(Token Left, Token Right) { 691 if (Left.is(tok::kw_template) && Right.is(tok::less)) 692 return true; 693 if (Left.is(tok::arrow) || Right.is(tok::arrow)) 694 return false; 695 if (Left.is(tok::exclaim) || Left.is(tok::tilde)) 696 return false; 697 if (Left.is(tok::less) || Right.is(tok::greater) || Right.is(tok::less)) 698 return false; 699 if (Left.is(tok::amp) || Left.is(tok::star)) 700 return Right.isLiteral() || Style.PointerAndReferenceBindToType; 701 if (Right.is(tok::star) && Left.is(tok::l_paren)) 702 return false; 703 if (Right.is(tok::amp) || Right.is(tok::star)) 704 return Left.isLiteral() || !Style.PointerAndReferenceBindToType; 705 if (Left.is(tok::l_square) || Right.is(tok::l_square) || 706 Right.is(tok::r_square)) 707 return false; 708 if (Left.is(tok::coloncolon) || Right.is(tok::coloncolon)) 709 return false; 710 if (Left.is(tok::period) || Right.is(tok::period)) 711 return false; 712 if (Left.is(tok::colon) || Right.is(tok::colon)) 713 return true; 714 if ((Left.is(tok::plusplus) && Right.isAnyIdentifier()) || 715 (Left.isAnyIdentifier() && Right.is(tok::plusplus)) || 716 (Left.is(tok::minusminus) && Right.isAnyIdentifier()) || 717 (Left.isAnyIdentifier() && Right.is(tok::minusminus))) 718 return false; 719 if (Left.is(tok::l_paren)) 720 return false; 721 if (Left.is(tok::hash)) 722 return false; 723 if (Right.is(tok::r_paren) || Right.is(tok::semi) || Right.is(tok::comma)) 724 return false; 725 if (Right.is(tok::l_paren)) { 726 return !Left.isAnyIdentifier() || isIfForOrWhile(Left); 727 } 728 return true; 729 } 730 731 bool canBreakBetween(const FormatToken &Left, const FormatToken &Right) { 732 if (Right.Tok.is(tok::r_paren)) 733 return false; 734 if (isBinaryOperator(Left)) 735 return true; 736 if (Right.Tok.is(tok::lessless)) 737 return true; 738 return Right.Tok.is(tok::colon) || Left.Tok.is(tok::comma) || 739 Left.Tok.is(tok::semi) || Left.Tok.is(tok::equal) || 740 Left.Tok.is(tok::ampamp) || Left.Tok.is(tok::pipepipe) || 741 (Left.Tok.is(tok::l_paren) && !Right.Tok.is(tok::r_paren)); 742 } 743 744 const UnwrappedLine &Line; 745 FormatStyle Style; 746 SourceManager &SourceMgr; 747 std::vector<TokenAnnotation> Annotations; 748 }; 749 750 class Formatter : public UnwrappedLineConsumer { 751 public: 752 Formatter(const FormatStyle &Style, Lexer &Lex, SourceManager &SourceMgr, 753 const std::vector<CharSourceRange> &Ranges) 754 : Style(Style), 755 Lex(Lex), 756 SourceMgr(SourceMgr), 757 Ranges(Ranges), 758 StructuralError(false) { 759 } 760 761 virtual ~Formatter() { 762 } 763 764 tooling::Replacements format() { 765 UnwrappedLineParser Parser(Style, Lex, SourceMgr, *this); 766 StructuralError = Parser.parse(); 767 for (std::vector<UnwrappedLine>::iterator I = UnwrappedLines.begin(), 768 E = UnwrappedLines.end(); 769 I != E; ++I) 770 formatUnwrappedLine(*I); 771 return Replaces; 772 } 773 774 private: 775 virtual void consumeUnwrappedLine(const UnwrappedLine &TheLine) { 776 UnwrappedLines.push_back(TheLine); 777 } 778 779 void formatUnwrappedLine(const UnwrappedLine &TheLine) { 780 if (TheLine.Tokens.size() == 0) 781 return; 782 783 CharSourceRange LineRange = 784 CharSourceRange::getTokenRange(TheLine.Tokens.front().Tok.getLocation(), 785 TheLine.Tokens.back().Tok.getLocation()); 786 787 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) { 788 if (SourceMgr.isBeforeInTranslationUnit(LineRange.getEnd(), 789 Ranges[i].getBegin()) || 790 SourceMgr.isBeforeInTranslationUnit(Ranges[i].getEnd(), 791 LineRange.getBegin())) 792 continue; 793 794 TokenAnnotator Annotator(TheLine, Style, SourceMgr); 795 Annotator.annotate(); 796 UnwrappedLineFormatter Formatter(Style, SourceMgr, TheLine, 797 Annotator.getAnnotations(), Replaces, 798 StructuralError); 799 Formatter.format(); 800 return; 801 } 802 } 803 804 FormatStyle Style; 805 Lexer &Lex; 806 SourceManager &SourceMgr; 807 tooling::Replacements Replaces; 808 std::vector<CharSourceRange> Ranges; 809 std::vector<UnwrappedLine> UnwrappedLines; 810 bool StructuralError; 811 }; 812 813 tooling::Replacements reformat(const FormatStyle &Style, Lexer &Lex, 814 SourceManager &SourceMgr, 815 std::vector<CharSourceRange> Ranges) { 816 Formatter formatter(Style, Lex, SourceMgr, Ranges); 817 return formatter.format(); 818 } 819 820 } // namespace format 821 } // namespace clang 822