2012-12-04 02:12:45 +08:00
|
|
|
//===--- Format.cpp - Format C++ code -------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// \file
|
|
|
|
/// \brief This file implements functions declared in Format.h. This will be
|
|
|
|
/// split into separate files as we go.
|
|
|
|
///
|
|
|
|
/// This is EXPERIMENTAL code under heavy development. It is not in a state yet,
|
|
|
|
/// where it can be used to format real code.
|
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/Format/Format.h"
|
2012-12-04 17:13:33 +08:00
|
|
|
#include "UnwrappedLineParser.h"
|
2013-01-10 23:05:09 +08:00
|
|
|
#include "clang/Basic/Diagnostic.h"
|
2012-12-21 18:20:02 +08:00
|
|
|
#include "clang/Basic/OperatorPrecedence.h"
|
2013-01-02 18:28:36 +08:00
|
|
|
#include "clang/Basic/SourceManager.h"
|
2013-01-10 23:05:09 +08:00
|
|
|
#include "clang/Frontend/TextDiagnosticPrinter.h"
|
2012-12-04 02:12:45 +08:00
|
|
|
#include "clang/Lex/Lexer.h"
|
2012-12-04 21:02:32 +08:00
|
|
|
#include <string>
|
|
|
|
|
2012-12-04 02:12:45 +08:00
|
|
|
namespace clang {
|
|
|
|
namespace format {
|
|
|
|
|
2013-01-07 18:48:50 +08:00
|
|
|
enum TokenType {
|
|
|
|
TT_BinaryOperator,
|
2013-01-10 19:14:08 +08:00
|
|
|
TT_BlockComment,
|
|
|
|
TT_CastRParen,
|
2013-01-07 18:48:50 +08:00
|
|
|
TT_ConditionalExpr,
|
|
|
|
TT_CtorInitializerColon,
|
|
|
|
TT_DirectorySeparator,
|
2013-01-10 19:14:08 +08:00
|
|
|
TT_LineComment,
|
2013-01-10 21:08:12 +08:00
|
|
|
TT_ObjCBlockLParen,
|
2013-01-11 03:19:14 +08:00
|
|
|
TT_ObjCDecl,
|
2013-01-10 19:14:08 +08:00
|
|
|
TT_ObjCMethodSpecifier,
|
2013-01-11 07:11:41 +08:00
|
|
|
TT_ObjCSelectorStart,
|
2013-01-11 05:30:42 +08:00
|
|
|
TT_ObjCProperty,
|
2013-01-10 19:14:08 +08:00
|
|
|
TT_OverloadedOperator,
|
|
|
|
TT_PointerOrReference,
|
2013-01-07 18:48:50 +08:00
|
|
|
TT_PureVirtualSpecifier,
|
2013-01-10 19:14:08 +08:00
|
|
|
TT_TemplateCloser,
|
|
|
|
TT_TemplateOpener,
|
|
|
|
TT_TrailingUnaryOperator,
|
|
|
|
TT_UnaryOperator,
|
|
|
|
TT_Unknown
|
2013-01-07 18:48:50 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
enum LineType {
|
|
|
|
LT_Invalid,
|
|
|
|
LT_Other,
|
|
|
|
LT_PreprocessorDirective,
|
|
|
|
LT_VirtualFunctionDecl,
|
2013-01-11 03:19:14 +08:00
|
|
|
LT_ObjCDecl, // An @interface, @implementation, or @protocol line.
|
2013-01-11 05:30:42 +08:00
|
|
|
LT_ObjCMethodDecl,
|
|
|
|
LT_ObjCProperty // An @property line.
|
2013-01-07 18:48:50 +08:00
|
|
|
};
|
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
class AnnotatedToken {
|
|
|
|
public:
|
|
|
|
AnnotatedToken(const FormatToken &FormatTok)
|
2013-01-11 03:17:33 +08:00
|
|
|
: FormatTok(FormatTok), Type(TT_Unknown), SpaceRequiredBefore(false),
|
|
|
|
CanBreakBefore(false), MustBreakBefore(false),
|
|
|
|
ClosesTemplateDeclaration(false), Parent(NULL) {}
|
2013-01-08 22:56:18 +08:00
|
|
|
|
|
|
|
bool is(tok::TokenKind Kind) const {
|
|
|
|
return FormatTok.Tok.is(Kind);
|
|
|
|
}
|
|
|
|
bool isNot(tok::TokenKind Kind) const {
|
|
|
|
return FormatTok.Tok.isNot(Kind);
|
|
|
|
}
|
|
|
|
bool isObjCAtKeyword(tok::ObjCKeywordKind Kind) const {
|
|
|
|
return FormatTok.Tok.isObjCAtKeyword(Kind);
|
|
|
|
}
|
|
|
|
|
|
|
|
FormatToken FormatTok;
|
|
|
|
|
2012-12-04 02:12:45 +08:00
|
|
|
TokenType Type;
|
|
|
|
|
|
|
|
bool SpaceRequiredBefore;
|
|
|
|
bool CanBreakBefore;
|
|
|
|
bool MustBreakBefore;
|
2013-01-02 23:08:56 +08:00
|
|
|
|
|
|
|
bool ClosesTemplateDeclaration;
|
2013-01-08 22:56:18 +08:00
|
|
|
|
|
|
|
std::vector<AnnotatedToken> Children;
|
|
|
|
AnnotatedToken *Parent;
|
2012-12-04 02:12:45 +08:00
|
|
|
};
|
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
static prec::Level getPrecedence(const AnnotatedToken &Tok) {
|
|
|
|
return getBinOpPrecedence(Tok.FormatTok.Tok.getKind(), true, true);
|
2012-12-24 21:43:52 +08:00
|
|
|
}
|
|
|
|
|
2012-12-04 02:12:45 +08:00
|
|
|
FormatStyle getLLVMStyle() {
|
|
|
|
FormatStyle LLVMStyle;
|
|
|
|
LLVMStyle.ColumnLimit = 80;
|
|
|
|
LLVMStyle.MaxEmptyLinesToKeep = 1;
|
|
|
|
LLVMStyle.PointerAndReferenceBindToType = false;
|
|
|
|
LLVMStyle.AccessModifierOffset = -2;
|
|
|
|
LLVMStyle.SplitTemplateClosingGreater = true;
|
2012-12-07 02:03:27 +08:00
|
|
|
LLVMStyle.IndentCaseLabels = false;
|
2013-01-07 19:09:06 +08:00
|
|
|
LLVMStyle.SpacesBeforeTrailingComments = 1;
|
2013-01-11 19:37:55 +08:00
|
|
|
LLVMStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = false;
|
2013-01-11 04:12:55 +08:00
|
|
|
LLVMStyle.ObjCSpaceBeforeProtocolList = true;
|
2013-01-11 07:11:41 +08:00
|
|
|
LLVMStyle.ObjCSpaceBeforeReturnType = true;
|
2012-12-04 02:12:45 +08:00
|
|
|
return LLVMStyle;
|
|
|
|
}
|
|
|
|
|
|
|
|
FormatStyle getGoogleStyle() {
|
|
|
|
FormatStyle GoogleStyle;
|
|
|
|
GoogleStyle.ColumnLimit = 80;
|
|
|
|
GoogleStyle.MaxEmptyLinesToKeep = 1;
|
|
|
|
GoogleStyle.PointerAndReferenceBindToType = true;
|
|
|
|
GoogleStyle.AccessModifierOffset = -1;
|
|
|
|
GoogleStyle.SplitTemplateClosingGreater = false;
|
2012-12-07 02:03:27 +08:00
|
|
|
GoogleStyle.IndentCaseLabels = true;
|
2013-01-07 19:09:06 +08:00
|
|
|
GoogleStyle.SpacesBeforeTrailingComments = 2;
|
2013-01-11 19:37:55 +08:00
|
|
|
GoogleStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true;
|
2013-01-11 04:12:55 +08:00
|
|
|
GoogleStyle.ObjCSpaceBeforeProtocolList = false;
|
2013-01-11 07:11:41 +08:00
|
|
|
GoogleStyle.ObjCSpaceBeforeReturnType = false;
|
2012-12-04 02:12:45 +08:00
|
|
|
return GoogleStyle;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct OptimizationParameters {
|
|
|
|
unsigned PenaltyIndentLevel;
|
2012-12-25 00:43:00 +08:00
|
|
|
unsigned PenaltyLevelDecrease;
|
2013-01-09 18:16:05 +08:00
|
|
|
unsigned PenaltyExcessCharacter;
|
2012-12-04 02:12:45 +08:00
|
|
|
};
|
|
|
|
|
2013-01-11 02:45:26 +08:00
|
|
|
/// \brief Replaces the whitespace in front of \p Tok. Only call once for
|
|
|
|
/// each \c FormatToken.
|
|
|
|
static void replaceWhitespace(const AnnotatedToken &Tok, unsigned NewLines,
|
|
|
|
unsigned Spaces, const FormatStyle &Style,
|
|
|
|
SourceManager &SourceMgr,
|
|
|
|
tooling::Replacements &Replaces) {
|
|
|
|
Replaces.insert(tooling::Replacement(
|
|
|
|
SourceMgr, Tok.FormatTok.WhiteSpaceStart, Tok.FormatTok.WhiteSpaceLength,
|
|
|
|
std::string(NewLines, '\n') + std::string(Spaces, ' ')));
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief Like \c replaceWhitespace, but additionally adds right-aligned
|
|
|
|
/// backslashes to escape newlines inside a preprocessor directive.
|
|
|
|
///
|
|
|
|
/// This function and \c replaceWhitespace have the same behavior if
|
|
|
|
/// \c Newlines == 0.
|
|
|
|
static void replacePPWhitespace(
|
|
|
|
const AnnotatedToken &Tok, unsigned NewLines, unsigned Spaces,
|
|
|
|
unsigned WhitespaceStartColumn, const FormatStyle &Style,
|
|
|
|
SourceManager &SourceMgr, tooling::Replacements &Replaces) {
|
|
|
|
std::string NewLineText;
|
|
|
|
if (NewLines > 0) {
|
|
|
|
unsigned Offset = std::min<int>(Style.ColumnLimit - 1,
|
|
|
|
WhitespaceStartColumn);
|
|
|
|
for (unsigned i = 0; i < NewLines; ++i) {
|
|
|
|
NewLineText += std::string(Style.ColumnLimit - Offset - 1, ' ');
|
|
|
|
NewLineText += "\\\n";
|
|
|
|
Offset = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Replaces.insert(tooling::Replacement(SourceMgr, Tok.FormatTok.WhiteSpaceStart,
|
|
|
|
Tok.FormatTok.WhiteSpaceLength,
|
|
|
|
NewLineText + std::string(Spaces, ' ')));
|
|
|
|
}
|
|
|
|
|
2013-01-11 19:37:55 +08:00
|
|
|
/// \brief Checks whether the (remaining) \c UnwrappedLine starting with
|
|
|
|
/// \p RootToken fits into \p Limit columns.
|
|
|
|
bool fitsIntoLimit(const AnnotatedToken &RootToken, unsigned Limit) {
|
|
|
|
unsigned Columns = RootToken.FormatTok.TokenLength;
|
|
|
|
bool FitsOnALine = true;
|
|
|
|
const AnnotatedToken *Tok = &RootToken;
|
|
|
|
while (!Tok->Children.empty()) {
|
|
|
|
Tok = &Tok->Children[0];
|
|
|
|
Columns += (Tok->SpaceRequiredBefore ? 1 : 0) + Tok->FormatTok.TokenLength;
|
|
|
|
// A special case for the colon of a constructor initializer as this only
|
|
|
|
// needs to be put on a new line if the line needs to be split.
|
|
|
|
if (Columns > Limit ||
|
|
|
|
(Tok->MustBreakBefore && Tok->Type != TT_CtorInitializerColon)) {
|
|
|
|
FitsOnALine = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
return FitsOnALine;
|
|
|
|
}
|
|
|
|
|
2012-12-04 02:12:45 +08:00
|
|
|
class UnwrappedLineFormatter {
|
|
|
|
public:
|
2013-01-11 03:17:33 +08:00
|
|
|
UnwrappedLineFormatter(const FormatStyle &Style, SourceManager &SourceMgr,
|
|
|
|
const UnwrappedLine &Line, unsigned FirstIndent,
|
|
|
|
bool FitsOnALine, LineType CurrentLineType,
|
|
|
|
const AnnotatedToken &RootToken,
|
|
|
|
tooling::Replacements &Replaces, bool StructuralError)
|
2012-12-19 05:05:13 +08:00
|
|
|
: Style(Style), SourceMgr(SourceMgr), Line(Line),
|
2013-01-11 03:17:33 +08:00
|
|
|
FirstIndent(FirstIndent), FitsOnALine(FitsOnALine),
|
2013-01-08 22:56:18 +08:00
|
|
|
CurrentLineType(CurrentLineType), RootToken(RootToken),
|
2013-01-11 02:45:26 +08:00
|
|
|
Replaces(Replaces) {
|
2012-12-24 08:13:23 +08:00
|
|
|
Parameters.PenaltyIndentLevel = 15;
|
2013-01-07 15:13:20 +08:00
|
|
|
Parameters.PenaltyLevelDecrease = 30;
|
2013-01-09 18:16:05 +08:00
|
|
|
Parameters.PenaltyExcessCharacter = 1000000;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
2013-01-05 07:34:14 +08:00
|
|
|
/// \brief Formats an \c UnwrappedLine.
|
|
|
|
///
|
|
|
|
/// \returns The column after the last token in the last line of the
|
|
|
|
/// \c UnwrappedLine.
|
|
|
|
unsigned format() {
|
2012-12-06 17:56:08 +08:00
|
|
|
// Initialize state dependent on indent.
|
2013-01-11 18:22:12 +08:00
|
|
|
LineState State;
|
2013-01-11 02:45:26 +08:00
|
|
|
State.Column = FirstIndent;
|
2013-01-08 22:56:18 +08:00
|
|
|
State.NextToken = &RootToken;
|
2013-01-11 19:37:55 +08:00
|
|
|
State.Stack.push_back(ParenState(FirstIndent + 4, FirstIndent));
|
2012-12-21 22:37:20 +08:00
|
|
|
State.ForLoopVariablePos = 0;
|
|
|
|
State.LineContainsContinuedForLoopSection = false;
|
2012-12-25 00:43:00 +08:00
|
|
|
State.StartOfLineLevel = 1;
|
2012-12-06 17:56:08 +08:00
|
|
|
|
|
|
|
// The first token has already been indented and thus consumed.
|
|
|
|
moveStateToNextToken(State);
|
2012-12-04 02:12:45 +08:00
|
|
|
|
|
|
|
// Start iterating at 1 as we have correctly formatted of Token #0 above.
|
2013-01-08 22:56:18 +08:00
|
|
|
while (State.NextToken != NULL) {
|
2012-12-19 05:05:13 +08:00
|
|
|
if (FitsOnALine) {
|
|
|
|
addTokenToState(false, false, State);
|
|
|
|
} else {
|
|
|
|
unsigned NoBreak = calcPenalty(State, false, UINT_MAX);
|
|
|
|
unsigned Break = calcPenalty(State, true, NoBreak);
|
|
|
|
addTokenToState(Break < NoBreak, false, State);
|
2013-01-11 19:37:55 +08:00
|
|
|
if (State.NextToken != NULL &&
|
|
|
|
State.NextToken->Parent->Type == TT_CtorInitializerColon) {
|
|
|
|
if (Style.ConstructorInitializerAllOnOneLineOrOnePerLine &&
|
|
|
|
!fitsIntoLimit(*State.NextToken,
|
|
|
|
getColumnLimit() - State.Column - 1))
|
|
|
|
State.Stack.back().BreakAfterComma = true;
|
|
|
|
}
|
2012-12-19 05:05:13 +08:00
|
|
|
}
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
2013-01-05 07:34:14 +08:00
|
|
|
return State.Column;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2013-01-11 18:22:12 +08:00
|
|
|
struct ParenState {
|
2013-01-11 19:37:55 +08:00
|
|
|
ParenState(unsigned Indent, unsigned LastSpace)
|
|
|
|
: Indent(Indent), LastSpace(LastSpace), FirstLessLess(0),
|
|
|
|
BreakBeforeClosingBrace(false), BreakAfterComma(false) {}
|
2012-12-25 00:43:00 +08:00
|
|
|
|
2012-12-04 02:12:45 +08:00
|
|
|
/// \brief The position to which a specific parenthesis level needs to be
|
|
|
|
/// indented.
|
2013-01-11 18:22:12 +08:00
|
|
|
unsigned Indent;
|
2012-12-04 02:12:45 +08:00
|
|
|
|
2012-12-06 17:56:08 +08:00
|
|
|
/// \brief The position of the last space on each level.
|
|
|
|
///
|
|
|
|
/// Used e.g. to break like:
|
|
|
|
/// functionCall(Parameter, otherCall(
|
|
|
|
/// OtherParameter));
|
2013-01-11 18:22:12 +08:00
|
|
|
unsigned LastSpace;
|
2012-12-04 02:12:45 +08:00
|
|
|
|
2012-12-06 17:56:08 +08:00
|
|
|
/// \brief The position the first "<<" operator encountered on each level.
|
|
|
|
///
|
|
|
|
/// Used to align "<<" operators. 0 if no such operator has been encountered
|
|
|
|
/// on a level.
|
2013-01-11 18:22:12 +08:00
|
|
|
unsigned FirstLessLess;
|
2012-12-06 17:56:08 +08:00
|
|
|
|
Fixes layout of right braces.
We now decide whether a newline should go before the closing brace
depending on whether a newline was inserted after the opening brace.
For example, we now insert a newline before '};' in:
static SomeClass WithALoooooooooooooooooooongName = {
100000000, \"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\"
};
... while not inserting a newline here:
static SomeClass = { a, b, c, d, e, f, g, h, i, j,
looooooooooooooooooooooooooooooooooongname,
looooooooooooooooooooooooooooooong };
Also fixes the formating of (column limit 25):
int x = {
avariable,
b(alongervariable)
};
llvm-svn: 172076
2013-01-10 23:58:26 +08:00
|
|
|
/// \brief Whether a newline needs to be inserted before the block's closing
|
|
|
|
/// brace.
|
|
|
|
///
|
|
|
|
/// We only want to insert a newline before the closing brace if there also
|
|
|
|
/// was a newline after the beginning left brace.
|
2013-01-11 18:22:12 +08:00
|
|
|
bool BreakBeforeClosingBrace;
|
|
|
|
|
2013-01-11 19:37:55 +08:00
|
|
|
bool BreakAfterComma;
|
|
|
|
|
2013-01-11 18:22:12 +08:00
|
|
|
bool operator<(const ParenState &Other) const {
|
|
|
|
if (Indent != Other.Indent)
|
|
|
|
return Indent < Other.Indent;
|
|
|
|
if (LastSpace != Other.LastSpace)
|
|
|
|
return LastSpace < Other.LastSpace;
|
|
|
|
if (FirstLessLess != Other.FirstLessLess)
|
|
|
|
return FirstLessLess < Other.FirstLessLess;
|
2013-01-11 19:37:55 +08:00
|
|
|
if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
|
|
|
|
return BreakBeforeClosingBrace;
|
|
|
|
return BreakAfterComma;
|
2013-01-11 18:22:12 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// \brief The current state when indenting a unwrapped line.
|
|
|
|
///
|
|
|
|
/// As the indenting tries different combinations this is copied by value.
|
|
|
|
struct LineState {
|
|
|
|
/// \brief The number of used columns in the current line.
|
|
|
|
unsigned Column;
|
|
|
|
|
|
|
|
/// \brief The token that needs to be next formatted.
|
|
|
|
const AnnotatedToken *NextToken;
|
|
|
|
|
|
|
|
/// \brief The parenthesis level of the first token on the current line.
|
|
|
|
unsigned StartOfLineLevel;
|
Fixes layout of right braces.
We now decide whether a newline should go before the closing brace
depending on whether a newline was inserted after the opening brace.
For example, we now insert a newline before '};' in:
static SomeClass WithALoooooooooooooooooooongName = {
100000000, \"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\"
};
... while not inserting a newline here:
static SomeClass = { a, b, c, d, e, f, g, h, i, j,
looooooooooooooooooooooooooooooooooongname,
looooooooooooooooooooooooooooooong };
Also fixes the formating of (column limit 25):
int x = {
avariable,
b(alongervariable)
};
llvm-svn: 172076
2013-01-10 23:58:26 +08:00
|
|
|
|
2012-12-21 22:37:20 +08:00
|
|
|
/// \brief The column of the first variable in a for-loop declaration.
|
|
|
|
///
|
|
|
|
/// Used to align the second variable if necessary.
|
|
|
|
unsigned ForLoopVariablePos;
|
|
|
|
|
|
|
|
/// \brief \c true if this line contains a continued for-loop section.
|
|
|
|
bool LineContainsContinuedForLoopSection;
|
|
|
|
|
2013-01-11 18:22:12 +08:00
|
|
|
/// \brief A stack keeping track of properties applying to parenthesis
|
|
|
|
/// levels.
|
|
|
|
std::vector<ParenState> Stack;
|
|
|
|
|
|
|
|
/// \brief Comparison operator to be able to used \c LineState in \c map.
|
|
|
|
bool operator<(const LineState &Other) const {
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Other.NextToken != NextToken)
|
|
|
|
return Other.NextToken > NextToken;
|
2012-12-04 02:12:45 +08:00
|
|
|
if (Other.Column != Column)
|
|
|
|
return Other.Column > Column;
|
2012-12-25 00:43:00 +08:00
|
|
|
if (Other.StartOfLineLevel != StartOfLineLevel)
|
|
|
|
return Other.StartOfLineLevel > StartOfLineLevel;
|
2012-12-21 22:37:20 +08:00
|
|
|
if (Other.ForLoopVariablePos != ForLoopVariablePos)
|
|
|
|
return Other.ForLoopVariablePos < ForLoopVariablePos;
|
|
|
|
if (Other.LineContainsContinuedForLoopSection !=
|
|
|
|
LineContainsContinuedForLoopSection)
|
|
|
|
return LineContainsContinuedForLoopSection;
|
2013-01-11 18:22:12 +08:00
|
|
|
return Other.Stack < Stack;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-12-04 22:54:30 +08:00
|
|
|
/// \brief Appends the next token to \p State and updates information
|
|
|
|
/// necessary for indentation.
|
|
|
|
///
|
|
|
|
/// Puts the token on the current line if \p Newline is \c true and adds a
|
|
|
|
/// line break and necessary indentation otherwise.
|
|
|
|
///
|
|
|
|
/// If \p DryRun is \c false, also creates and stores the required
|
|
|
|
/// \c Replacement.
|
2013-01-11 18:22:12 +08:00
|
|
|
void addTokenToState(bool Newline, bool DryRun, LineState &State) {
|
2013-01-09 15:06:56 +08:00
|
|
|
const AnnotatedToken &Current = *State.NextToken;
|
|
|
|
const AnnotatedToken &Previous = *State.NextToken->Parent;
|
2013-01-11 18:22:12 +08:00
|
|
|
assert(State.Stack.size());
|
|
|
|
unsigned ParenLevel = State.Stack.size() - 1;
|
2012-12-04 02:12:45 +08:00
|
|
|
|
|
|
|
if (Newline) {
|
2013-01-03 02:33:23 +08:00
|
|
|
unsigned WhitespaceStartColumn = State.Column;
|
2013-01-10 19:52:21 +08:00
|
|
|
if (Current.is(tok::r_brace)) {
|
|
|
|
State.Column = Line.Level * 2;
|
2013-01-09 15:06:56 +08:00
|
|
|
} else if (Current.is(tok::string_literal) &&
|
|
|
|
Previous.is(tok::string_literal)) {
|
|
|
|
State.Column = State.Column - Previous.FormatTok.TokenLength;
|
|
|
|
} else if (Current.is(tok::lessless) &&
|
2013-01-11 18:22:12 +08:00
|
|
|
State.Stack[ParenLevel].FirstLessLess != 0) {
|
|
|
|
State.Column = State.Stack[ParenLevel].FirstLessLess;
|
2012-12-21 22:37:20 +08:00
|
|
|
} else if (ParenLevel != 0 &&
|
2013-01-09 15:06:56 +08:00
|
|
|
(Previous.is(tok::equal) || Current.is(tok::arrow) ||
|
|
|
|
Current.is(tok::period) || Previous.is(tok::question) ||
|
|
|
|
Previous.Type == TT_ConditionalExpr)) {
|
|
|
|
// Indent and extra 4 spaces after if we know the current expression is
|
|
|
|
// continued. Don't do that on the top level, as we already indent 4
|
|
|
|
// there.
|
2013-01-11 18:22:12 +08:00
|
|
|
State.Column = State.Stack[ParenLevel].Indent + 4;
|
2013-01-09 15:06:56 +08:00
|
|
|
} else if (RootToken.is(tok::kw_for) && Previous.is(tok::comma)) {
|
2012-12-21 22:37:20 +08:00
|
|
|
State.Column = State.ForLoopVariablePos;
|
2013-01-08 22:56:18 +08:00
|
|
|
} else if (State.NextToken->Parent->ClosesTemplateDeclaration) {
|
2013-01-11 18:22:12 +08:00
|
|
|
State.Column = State.Stack[ParenLevel].Indent - 4;
|
2012-12-21 22:37:20 +08:00
|
|
|
} else {
|
2013-01-11 18:22:12 +08:00
|
|
|
State.Column = State.Stack[ParenLevel].Indent;
|
2012-12-21 22:37:20 +08:00
|
|
|
}
|
|
|
|
|
2013-01-10 22:36:46 +08:00
|
|
|
// A line starting with a closing brace is assumed to be correct for the
|
|
|
|
// same level as before the opening brace.
|
|
|
|
State.StartOfLineLevel = ParenLevel + (Current.is(tok::r_brace) ? 0 : 1);
|
2012-12-25 00:43:00 +08:00
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
if (RootToken.is(tok::kw_for))
|
2013-01-09 15:06:56 +08:00
|
|
|
State.LineContainsContinuedForLoopSection = Previous.isNot(tok::semi);
|
2012-12-04 22:54:30 +08:00
|
|
|
|
2013-01-03 02:33:23 +08:00
|
|
|
if (!DryRun) {
|
|
|
|
if (!Line.InPPDirective)
|
2013-01-11 02:45:26 +08:00
|
|
|
replaceWhitespace(Current.FormatTok, 1, State.Column, Style,
|
|
|
|
SourceMgr, Replaces);
|
2013-01-03 02:33:23 +08:00
|
|
|
else
|
2013-01-09 15:06:56 +08:00
|
|
|
replacePPWhitespace(Current.FormatTok, 1, State.Column,
|
2013-01-11 02:45:26 +08:00
|
|
|
WhitespaceStartColumn, Style, SourceMgr,
|
|
|
|
Replaces);
|
2013-01-03 02:33:23 +08:00
|
|
|
}
|
2012-12-04 02:12:45 +08:00
|
|
|
|
2013-01-11 18:22:12 +08:00
|
|
|
State.Stack[ParenLevel].LastSpace = State.Column;
|
2013-01-09 15:06:56 +08:00
|
|
|
if (Current.is(tok::colon) && CurrentLineType != LT_ObjCMethodDecl &&
|
2013-01-08 22:56:18 +08:00
|
|
|
State.NextToken->Type != TT_ConditionalExpr)
|
2013-01-11 18:22:12 +08:00
|
|
|
State.Stack[ParenLevel].Indent += 2;
|
2012-12-04 02:12:45 +08:00
|
|
|
} else {
|
2013-01-09 15:06:56 +08:00
|
|
|
if (Current.is(tok::equal) && RootToken.is(tok::kw_for))
|
|
|
|
State.ForLoopVariablePos = State.Column -
|
|
|
|
Previous.FormatTok.TokenLength;
|
2012-12-21 22:37:20 +08:00
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
unsigned Spaces = State.NextToken->SpaceRequiredBefore ? 1 : 0;
|
|
|
|
if (State.NextToken->Type == TT_LineComment)
|
2013-01-07 19:09:06 +08:00
|
|
|
Spaces = Style.SpacesBeforeTrailingComments;
|
2012-12-04 22:54:30 +08:00
|
|
|
|
2012-12-04 02:12:45 +08:00
|
|
|
if (!DryRun)
|
2013-01-11 02:45:26 +08:00
|
|
|
replaceWhitespace(Current, 0, Spaces, Style, SourceMgr, Replaces);
|
2012-12-04 22:54:30 +08:00
|
|
|
|
2013-01-09 18:40:23 +08:00
|
|
|
// FIXME: Do we need to do this for assignments nested in other
|
|
|
|
// expressions?
|
|
|
|
if (RootToken.isNot(tok::kw_for) && ParenLevel == 0 &&
|
2013-01-07 21:08:40 +08:00
|
|
|
(getPrecedence(Previous) == prec::Assignment ||
|
2013-01-09 15:06:56 +08:00
|
|
|
Previous.is(tok::kw_return)))
|
2013-01-11 18:22:12 +08:00
|
|
|
State.Stack[ParenLevel].Indent = State.Column + Spaces;
|
2013-01-09 15:06:56 +08:00
|
|
|
if (Previous.is(tok::l_paren) ||
|
2013-01-10 22:36:46 +08:00
|
|
|
Previous.is(tok::l_brace) ||
|
2013-01-08 22:56:18 +08:00
|
|
|
State.NextToken->Parent->Type == TT_TemplateOpener)
|
2013-01-11 18:22:12 +08:00
|
|
|
State.Stack[ParenLevel].Indent = State.Column + Spaces;
|
2012-12-19 05:05:13 +08:00
|
|
|
|
2013-01-07 21:08:40 +08:00
|
|
|
// Top-level spaces that are not part of assignments are exempt as that
|
|
|
|
// mostly leads to better results.
|
2012-12-06 17:56:08 +08:00
|
|
|
State.Column += Spaces;
|
2013-01-07 21:08:40 +08:00
|
|
|
if (Spaces > 0 &&
|
|
|
|
(ParenLevel != 0 || getPrecedence(Previous) == prec::Assignment))
|
2013-01-11 18:22:12 +08:00
|
|
|
State.Stack[ParenLevel].LastSpace = State.Column;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
2012-12-04 22:54:30 +08:00
|
|
|
moveStateToNextToken(State);
|
Fixes layout of right braces.
We now decide whether a newline should go before the closing brace
depending on whether a newline was inserted after the opening brace.
For example, we now insert a newline before '};' in:
static SomeClass WithALoooooooooooooooooooongName = {
100000000, \"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\"
};
... while not inserting a newline here:
static SomeClass = { a, b, c, d, e, f, g, h, i, j,
looooooooooooooooooooooooooooooooooongname,
looooooooooooooooooooooooooooooong };
Also fixes the formating of (column limit 25):
int x = {
avariable,
b(alongervariable)
};
llvm-svn: 172076
2013-01-10 23:58:26 +08:00
|
|
|
if (Newline && Previous.is(tok::l_brace)) {
|
2013-01-11 18:22:12 +08:00
|
|
|
State.Stack.back().BreakBeforeClosingBrace = true;
|
Fixes layout of right braces.
We now decide whether a newline should go before the closing brace
depending on whether a newline was inserted after the opening brace.
For example, we now insert a newline before '};' in:
static SomeClass WithALoooooooooooooooooooongName = {
100000000, \"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\"
};
... while not inserting a newline here:
static SomeClass = { a, b, c, d, e, f, g, h, i, j,
looooooooooooooooooooooooooooooooooongname,
looooooooooooooooooooooooooooooong };
Also fixes the formating of (column limit 25):
int x = {
avariable,
b(alongervariable)
};
llvm-svn: 172076
2013-01-10 23:58:26 +08:00
|
|
|
}
|
2012-12-04 22:54:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief Mark the next token as consumed in \p State and modify its stacks
|
|
|
|
/// accordingly.
|
2013-01-11 18:22:12 +08:00
|
|
|
void moveStateToNextToken(LineState &State) {
|
2013-01-08 22:56:18 +08:00
|
|
|
const AnnotatedToken &Current = *State.NextToken;
|
2013-01-11 18:22:12 +08:00
|
|
|
assert(State.Stack.size());
|
2012-12-06 17:56:08 +08:00
|
|
|
|
2013-01-11 18:22:12 +08:00
|
|
|
if (Current.is(tok::lessless) && State.Stack.back().FirstLessLess == 0)
|
|
|
|
State.Stack.back().FirstLessLess = State.Column;
|
2012-12-06 17:56:08 +08:00
|
|
|
|
2012-12-24 21:43:52 +08:00
|
|
|
// If we encounter an opening (, [, { or <, we add a level to our stacks to
|
2012-12-04 22:54:30 +08:00
|
|
|
// prepare for the following tokens.
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Current.is(tok::l_paren) || Current.is(tok::l_square) ||
|
|
|
|
Current.is(tok::l_brace) ||
|
|
|
|
State.NextToken->Type == TT_TemplateOpener) {
|
2013-01-11 18:22:12 +08:00
|
|
|
unsigned NewIndent;
|
2013-01-10 22:36:46 +08:00
|
|
|
if (Current.is(tok::l_brace)) {
|
|
|
|
// FIXME: This does not work with nested static initializers.
|
|
|
|
// Implement a better handling for static initializers and similar
|
|
|
|
// constructs.
|
2013-01-11 18:22:12 +08:00
|
|
|
NewIndent = Line.Level * 2 + 2;
|
2013-01-10 22:36:46 +08:00
|
|
|
} else {
|
2013-01-11 18:22:12 +08:00
|
|
|
NewIndent = 4 + State.Stack.back().LastSpace;
|
2013-01-10 22:36:46 +08:00
|
|
|
}
|
2013-01-11 18:22:12 +08:00
|
|
|
State.Stack.push_back(
|
2013-01-11 19:37:55 +08:00
|
|
|
ParenState(NewIndent, State.Stack.back().LastSpace));
|
2012-12-04 22:54:30 +08:00
|
|
|
}
|
2012-12-04 02:12:45 +08:00
|
|
|
|
2012-12-24 21:43:52 +08:00
|
|
|
// If we encounter a closing ), ], } or >, we can remove a level from our
|
2012-12-04 22:54:30 +08:00
|
|
|
// stacks.
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Current.is(tok::r_paren) || Current.is(tok::r_square) ||
|
|
|
|
(Current.is(tok::r_brace) && State.NextToken != &RootToken) ||
|
|
|
|
State.NextToken->Type == TT_TemplateCloser) {
|
2013-01-11 18:22:12 +08:00
|
|
|
State.Stack.pop_back();
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
2013-01-10 22:36:46 +08:00
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
if (State.NextToken->Children.empty())
|
|
|
|
State.NextToken = NULL;
|
|
|
|
else
|
|
|
|
State.NextToken = &State.NextToken->Children[0];
|
2013-01-10 22:36:46 +08:00
|
|
|
|
|
|
|
State.Column += Current.FormatTok.TokenLength;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
2013-01-07 23:15:29 +08:00
|
|
|
/// \brief Calculate the penalty for splitting after the token at \p Index.
|
2013-01-08 22:56:18 +08:00
|
|
|
unsigned splitPenalty(const AnnotatedToken &Tok) {
|
|
|
|
const AnnotatedToken &Left = Tok;
|
|
|
|
const AnnotatedToken &Right = Tok.Children[0];
|
2012-12-21 22:37:20 +08:00
|
|
|
|
|
|
|
// In for-loops, prefer breaking at ',' and ';'.
|
2013-01-08 22:56:18 +08:00
|
|
|
if (RootToken.is(tok::kw_for) &&
|
|
|
|
(Left.isNot(tok::comma) && Left.isNot(tok::semi)))
|
2012-12-21 22:37:20 +08:00
|
|
|
return 20;
|
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Left.is(tok::semi) || Left.is(tok::comma) ||
|
|
|
|
Left.ClosesTemplateDeclaration)
|
2012-12-04 02:12:45 +08:00
|
|
|
return 0;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Left.is(tok::l_paren))
|
2013-01-02 22:40:02 +08:00
|
|
|
return 20;
|
2012-12-17 22:34:14 +08:00
|
|
|
|
2013-01-09 15:06:56 +08:00
|
|
|
if (Left.is(tok::question) || Left.Type == TT_ConditionalExpr)
|
|
|
|
return prec::Assignment;
|
2013-01-07 21:08:40 +08:00
|
|
|
prec::Level Level = getPrecedence(Left);
|
|
|
|
|
|
|
|
// Breaking after an assignment leads to a bad result as the two sides of
|
|
|
|
// the assignment are visually very close together.
|
|
|
|
if (Level == prec::Assignment)
|
|
|
|
return 50;
|
|
|
|
|
2012-12-24 08:13:23 +08:00
|
|
|
if (Level != prec::Unknown)
|
|
|
|
return Level;
|
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Right.is(tok::arrow) || Right.is(tok::period))
|
2013-01-07 15:13:20 +08:00
|
|
|
return 150;
|
2012-12-17 22:34:14 +08:00
|
|
|
|
2012-12-04 02:12:45 +08:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
2013-01-09 18:16:05 +08:00
|
|
|
unsigned getColumnLimit() {
|
|
|
|
return Style.ColumnLimit - (Line.InPPDirective ? 1 : 0);
|
|
|
|
}
|
|
|
|
|
2012-12-04 02:12:45 +08:00
|
|
|
/// \brief Calculate the number of lines needed to format the remaining part
|
|
|
|
/// of the unwrapped line.
|
|
|
|
///
|
|
|
|
/// Assumes the formatting so far has led to
|
2013-01-11 18:22:12 +08:00
|
|
|
/// the \c LineSta \p State. If \p NewLine is set, a new line will be
|
2012-12-04 02:12:45 +08:00
|
|
|
/// added after the previous token.
|
|
|
|
///
|
|
|
|
/// \param StopAt is used for optimization. If we can determine that we'll
|
|
|
|
/// definitely need at least \p StopAt additional lines, we already know of a
|
|
|
|
/// better solution.
|
2013-01-11 18:22:12 +08:00
|
|
|
unsigned calcPenalty(LineState State, bool NewLine, unsigned StopAt) {
|
2012-12-04 02:12:45 +08:00
|
|
|
// We are at the end of the unwrapped line, so we don't need any more lines.
|
2013-01-08 22:56:18 +08:00
|
|
|
if (State.NextToken == NULL)
|
2012-12-04 02:12:45 +08:00
|
|
|
return 0;
|
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
if (!NewLine && State.NextToken->MustBreakBefore)
|
2012-12-04 02:12:45 +08:00
|
|
|
return UINT_MAX;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (NewLine && !State.NextToken->CanBreakBefore)
|
2012-12-04 02:12:45 +08:00
|
|
|
return UINT_MAX;
|
Fixes layout of right braces.
We now decide whether a newline should go before the closing brace
depending on whether a newline was inserted after the opening brace.
For example, we now insert a newline before '};' in:
static SomeClass WithALoooooooooooooooooooongName = {
100000000, \"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\"
};
... while not inserting a newline here:
static SomeClass = { a, b, c, d, e, f, g, h, i, j,
looooooooooooooooooooooooooooooooooongname,
looooooooooooooooooooooooooooooong };
Also fixes the formating of (column limit 25):
int x = {
avariable,
b(alongervariable)
};
llvm-svn: 172076
2013-01-10 23:58:26 +08:00
|
|
|
if (!NewLine && State.NextToken->is(tok::r_brace) &&
|
2013-01-11 18:22:12 +08:00
|
|
|
State.Stack.back().BreakBeforeClosingBrace)
|
Fixes layout of right braces.
We now decide whether a newline should go before the closing brace
depending on whether a newline was inserted after the opening brace.
For example, we now insert a newline before '};' in:
static SomeClass WithALoooooooooooooooooooongName = {
100000000, \"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\"
};
... while not inserting a newline here:
static SomeClass = { a, b, c, d, e, f, g, h, i, j,
looooooooooooooooooooooooooooooooooongname,
looooooooooooooooooooooooooooooong };
Also fixes the formating of (column limit 25):
int x = {
avariable,
b(alongervariable)
};
llvm-svn: 172076
2013-01-10 23:58:26 +08:00
|
|
|
return UINT_MAX;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (!NewLine && State.NextToken->Parent->is(tok::semi) &&
|
2012-12-21 22:37:20 +08:00
|
|
|
State.LineContainsContinuedForLoopSection)
|
|
|
|
return UINT_MAX;
|
2013-01-11 19:37:55 +08:00
|
|
|
if (!NewLine && State.NextToken->Parent->is(tok::comma) &&
|
|
|
|
State.NextToken->Type != TT_LineComment &&
|
|
|
|
State.Stack.back().BreakAfterComma)
|
|
|
|
return UINT_MAX;
|
2012-12-04 02:12:45 +08:00
|
|
|
|
|
|
|
unsigned CurrentPenalty = 0;
|
|
|
|
if (NewLine) {
|
2013-01-11 18:22:12 +08:00
|
|
|
CurrentPenalty += Parameters.PenaltyIndentLevel * State.Stack.size() +
|
2013-01-08 22:56:18 +08:00
|
|
|
splitPenalty(*State.NextToken->Parent);
|
2012-12-25 00:43:00 +08:00
|
|
|
} else {
|
2013-01-11 18:22:12 +08:00
|
|
|
if (State.Stack.size() < State.StartOfLineLevel)
|
2012-12-25 00:43:00 +08:00
|
|
|
CurrentPenalty += Parameters.PenaltyLevelDecrease *
|
2013-01-11 18:22:12 +08:00
|
|
|
(State.StartOfLineLevel - State.Stack.size());
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
2012-12-05 22:57:28 +08:00
|
|
|
addTokenToState(NewLine, true, State);
|
|
|
|
|
2013-01-09 18:16:05 +08:00
|
|
|
// Exceeding column limit is bad, assign penalty.
|
|
|
|
if (State.Column > getColumnLimit()) {
|
|
|
|
unsigned ExcessCharacters = State.Column - getColumnLimit();
|
|
|
|
CurrentPenalty += Parameters.PenaltyExcessCharacter * ExcessCharacters;
|
|
|
|
}
|
2012-12-05 22:57:28 +08:00
|
|
|
|
2012-12-04 02:12:45 +08:00
|
|
|
if (StopAt <= CurrentPenalty)
|
|
|
|
return UINT_MAX;
|
|
|
|
StopAt -= CurrentPenalty;
|
|
|
|
StateMap::iterator I = Memory.find(State);
|
2012-12-05 22:57:28 +08:00
|
|
|
if (I != Memory.end()) {
|
|
|
|
// If this state has already been examined, we can safely return the
|
|
|
|
// previous result if we
|
|
|
|
// - have not hit the optimatization (and thus returned UINT_MAX) OR
|
|
|
|
// - are now computing for a smaller or equal StopAt.
|
|
|
|
unsigned SavedResult = I->second.first;
|
|
|
|
unsigned SavedStopAt = I->second.second;
|
2012-12-17 22:34:14 +08:00
|
|
|
if (SavedResult != UINT_MAX)
|
|
|
|
return SavedResult + CurrentPenalty;
|
|
|
|
else if (StopAt <= SavedStopAt)
|
|
|
|
return UINT_MAX;
|
2012-12-05 22:57:28 +08:00
|
|
|
}
|
2012-12-04 02:12:45 +08:00
|
|
|
|
|
|
|
unsigned NoBreak = calcPenalty(State, false, StopAt);
|
|
|
|
unsigned WithBreak = calcPenalty(State, true, std::min(StopAt, NoBreak));
|
|
|
|
unsigned Result = std::min(NoBreak, WithBreak);
|
2012-12-17 22:34:14 +08:00
|
|
|
|
|
|
|
// We have to store 'Result' without adding 'CurrentPenalty' as the latter
|
|
|
|
// can depend on 'NewLine'.
|
2012-12-05 22:57:28 +08:00
|
|
|
Memory[State] = std::pair<unsigned, unsigned>(Result, StopAt);
|
2012-12-17 22:34:14 +08:00
|
|
|
|
|
|
|
return Result == UINT_MAX ? UINT_MAX : Result + CurrentPenalty;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
FormatStyle Style;
|
|
|
|
SourceManager &SourceMgr;
|
|
|
|
const UnwrappedLine &Line;
|
2013-01-11 02:45:26 +08:00
|
|
|
const unsigned FirstIndent;
|
2013-01-11 03:17:33 +08:00
|
|
|
const bool FitsOnALine;
|
2013-01-07 18:48:50 +08:00
|
|
|
const LineType CurrentLineType;
|
2013-01-08 22:56:18 +08:00
|
|
|
const AnnotatedToken &RootToken;
|
2012-12-04 02:12:45 +08:00
|
|
|
tooling::Replacements &Replaces;
|
|
|
|
|
2012-12-05 22:57:28 +08:00
|
|
|
// A map from an indent state to a pair (Result, Used-StopAt).
|
2013-01-11 18:22:12 +08:00
|
|
|
typedef std::map<LineState, std::pair<unsigned, unsigned> > StateMap;
|
2012-12-05 22:57:28 +08:00
|
|
|
StateMap Memory;
|
|
|
|
|
2012-12-04 02:12:45 +08:00
|
|
|
OptimizationParameters Parameters;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// \brief Determines extra information about the tokens comprising an
|
|
|
|
/// \c UnwrappedLine.
|
|
|
|
class TokenAnnotator {
|
|
|
|
public:
|
|
|
|
TokenAnnotator(const UnwrappedLine &Line, const FormatStyle &Style,
|
2013-01-07 16:54:53 +08:00
|
|
|
SourceManager &SourceMgr, Lexer &Lex)
|
2013-01-08 22:56:18 +08:00
|
|
|
: Style(Style), SourceMgr(SourceMgr), Lex(Lex),
|
|
|
|
RootToken(Line.RootToken) {
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief A parser that gathers additional information about tokens.
|
|
|
|
///
|
|
|
|
/// The \c TokenAnnotator tries to matches parenthesis and square brakets and
|
|
|
|
/// store a parenthesis levels. It also tries to resolve matching "<" and ">"
|
|
|
|
/// into template parameter lists.
|
|
|
|
class AnnotatingParser {
|
|
|
|
public:
|
2013-01-08 22:56:18 +08:00
|
|
|
AnnotatingParser(AnnotatedToken &RootToken)
|
|
|
|
: CurrentToken(&RootToken), KeywordVirtualFound(false) {
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
2012-12-04 22:54:30 +08:00
|
|
|
bool parseAngle() {
|
2013-01-08 22:56:18 +08:00
|
|
|
while (CurrentToken != NULL) {
|
|
|
|
if (CurrentToken->is(tok::greater)) {
|
|
|
|
CurrentToken->Type = TT_TemplateCloser;
|
2012-12-04 02:12:45 +08:00
|
|
|
next();
|
|
|
|
return true;
|
|
|
|
}
|
2013-01-08 22:56:18 +08:00
|
|
|
if (CurrentToken->is(tok::r_paren) || CurrentToken->is(tok::r_square) ||
|
|
|
|
CurrentToken->is(tok::r_brace))
|
2012-12-04 02:12:45 +08:00
|
|
|
return false;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (CurrentToken->is(tok::pipepipe) || CurrentToken->is(tok::ampamp) ||
|
|
|
|
CurrentToken->is(tok::question) || CurrentToken->is(tok::colon))
|
2012-12-04 02:12:45 +08:00
|
|
|
return false;
|
2013-01-05 02:52:56 +08:00
|
|
|
if (!consumeToken())
|
|
|
|
return false;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-12-04 22:54:30 +08:00
|
|
|
bool parseParens() {
|
2013-01-10 21:08:12 +08:00
|
|
|
if (CurrentToken != NULL && CurrentToken->is(tok::caret))
|
|
|
|
CurrentToken->Parent->Type = TT_ObjCBlockLParen;
|
2013-01-08 22:56:18 +08:00
|
|
|
while (CurrentToken != NULL) {
|
|
|
|
if (CurrentToken->is(tok::r_paren)) {
|
2012-12-04 02:12:45 +08:00
|
|
|
next();
|
|
|
|
return true;
|
|
|
|
}
|
2013-01-08 22:56:18 +08:00
|
|
|
if (CurrentToken->is(tok::r_square) || CurrentToken->is(tok::r_brace))
|
2013-01-05 02:52:56 +08:00
|
|
|
return false;
|
|
|
|
if (!consumeToken())
|
2012-12-04 02:12:45 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-12-04 22:54:30 +08:00
|
|
|
bool parseSquare() {
|
2013-01-08 22:56:18 +08:00
|
|
|
while (CurrentToken != NULL) {
|
|
|
|
if (CurrentToken->is(tok::r_square)) {
|
2012-12-04 02:12:45 +08:00
|
|
|
next();
|
|
|
|
return true;
|
|
|
|
}
|
2013-01-08 22:56:18 +08:00
|
|
|
if (CurrentToken->is(tok::r_paren) || CurrentToken->is(tok::r_brace))
|
2013-01-05 02:52:56 +08:00
|
|
|
return false;
|
|
|
|
if (!consumeToken())
|
2012-12-04 02:12:45 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-10 17:26:47 +08:00
|
|
|
bool parseBrace() {
|
|
|
|
while (CurrentToken != NULL) {
|
|
|
|
if (CurrentToken->is(tok::r_brace)) {
|
|
|
|
next();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (CurrentToken->is(tok::r_paren) || CurrentToken->is(tok::r_square))
|
|
|
|
return false;
|
|
|
|
if (!consumeToken())
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Lines can currently end with '{'.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-12-04 22:54:30 +08:00
|
|
|
bool parseConditional() {
|
2013-01-08 22:56:18 +08:00
|
|
|
while (CurrentToken != NULL) {
|
|
|
|
if (CurrentToken->is(tok::colon)) {
|
|
|
|
CurrentToken->Type = TT_ConditionalExpr;
|
2012-12-04 02:12:45 +08:00
|
|
|
next();
|
|
|
|
return true;
|
|
|
|
}
|
2013-01-05 02:52:56 +08:00
|
|
|
if (!consumeToken())
|
|
|
|
return false;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-02 23:08:56 +08:00
|
|
|
bool parseTemplateDeclaration() {
|
2013-01-08 22:56:18 +08:00
|
|
|
if (CurrentToken != NULL && CurrentToken->is(tok::less)) {
|
|
|
|
CurrentToken->Type = TT_TemplateOpener;
|
2013-01-02 23:08:56 +08:00
|
|
|
next();
|
|
|
|
if (!parseAngle())
|
|
|
|
return false;
|
2013-01-08 22:56:18 +08:00
|
|
|
CurrentToken->Parent->ClosesTemplateDeclaration = true;
|
2013-01-02 23:08:56 +08:00
|
|
|
parseLine();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-05 02:52:56 +08:00
|
|
|
bool consumeToken() {
|
2013-01-08 22:56:18 +08:00
|
|
|
AnnotatedToken *Tok = CurrentToken;
|
2012-12-04 02:12:45 +08:00
|
|
|
next();
|
2013-01-08 22:56:18 +08:00
|
|
|
switch (Tok->FormatTok.Tok.getKind()) {
|
2013-01-11 07:11:41 +08:00
|
|
|
case tok::plus:
|
|
|
|
case tok::minus:
|
|
|
|
// At the start of the line, +/- specific ObjectiveC method
|
|
|
|
// declarations.
|
|
|
|
if (Tok->Parent == NULL)
|
|
|
|
Tok->Type = TT_ObjCMethodSpecifier;
|
|
|
|
break;
|
|
|
|
case tok::l_paren: {
|
|
|
|
bool ParensWereObjCReturnType =
|
|
|
|
Tok->Parent && Tok->Parent->Type == TT_ObjCMethodSpecifier;
|
2013-01-05 02:52:56 +08:00
|
|
|
if (!parseParens())
|
|
|
|
return false;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (CurrentToken != NULL && CurrentToken->is(tok::colon)) {
|
|
|
|
CurrentToken->Type = TT_CtorInitializerColon;
|
2012-12-19 05:05:13 +08:00
|
|
|
next();
|
2013-01-11 07:11:41 +08:00
|
|
|
} else if (CurrentToken != NULL && ParensWereObjCReturnType) {
|
|
|
|
CurrentToken->Type = TT_ObjCSelectorStart;
|
|
|
|
next();
|
2012-12-19 05:05:13 +08:00
|
|
|
}
|
2013-01-11 07:11:41 +08:00
|
|
|
} break;
|
2012-12-04 02:12:45 +08:00
|
|
|
case tok::l_square:
|
2013-01-05 02:52:56 +08:00
|
|
|
if (!parseSquare())
|
|
|
|
return false;
|
2012-12-04 02:12:45 +08:00
|
|
|
break;
|
2013-01-10 17:26:47 +08:00
|
|
|
case tok::l_brace:
|
|
|
|
if (!parseBrace())
|
|
|
|
return false;
|
|
|
|
break;
|
2012-12-04 02:12:45 +08:00
|
|
|
case tok::less:
|
2012-12-04 22:54:30 +08:00
|
|
|
if (parseAngle())
|
2013-01-08 22:56:18 +08:00
|
|
|
Tok->Type = TT_TemplateOpener;
|
2012-12-04 02:12:45 +08:00
|
|
|
else {
|
2013-01-08 22:56:18 +08:00
|
|
|
Tok->Type = TT_BinaryOperator;
|
|
|
|
CurrentToken = Tok;
|
|
|
|
next();
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
break;
|
2013-01-05 02:52:56 +08:00
|
|
|
case tok::r_paren:
|
|
|
|
case tok::r_square:
|
|
|
|
return false;
|
2013-01-10 17:26:47 +08:00
|
|
|
case tok::r_brace:
|
|
|
|
// Lines can start with '}'.
|
|
|
|
if (Tok->Parent != NULL)
|
|
|
|
return false;
|
|
|
|
break;
|
2012-12-04 02:12:45 +08:00
|
|
|
case tok::greater:
|
2013-01-08 22:56:18 +08:00
|
|
|
Tok->Type = TT_BinaryOperator;
|
2012-12-04 02:12:45 +08:00
|
|
|
break;
|
|
|
|
case tok::kw_operator:
|
2013-01-08 22:56:18 +08:00
|
|
|
if (CurrentToken->is(tok::l_paren)) {
|
|
|
|
CurrentToken->Type = TT_OverloadedOperator;
|
2012-12-24 18:56:04 +08:00
|
|
|
next();
|
2013-01-08 22:56:18 +08:00
|
|
|
if (CurrentToken != NULL && CurrentToken->is(tok::r_paren)) {
|
|
|
|
CurrentToken->Type = TT_OverloadedOperator;
|
2012-12-24 18:56:04 +08:00
|
|
|
next();
|
|
|
|
}
|
|
|
|
} else {
|
2013-01-08 22:56:18 +08:00
|
|
|
while (CurrentToken != NULL && CurrentToken->isNot(tok::l_paren)) {
|
|
|
|
CurrentToken->Type = TT_OverloadedOperator;
|
2012-12-24 18:56:04 +08:00
|
|
|
next();
|
|
|
|
}
|
|
|
|
}
|
2012-12-04 02:12:45 +08:00
|
|
|
break;
|
|
|
|
case tok::question:
|
2012-12-04 22:54:30 +08:00
|
|
|
parseConditional();
|
2012-12-04 02:12:45 +08:00
|
|
|
break;
|
2013-01-02 23:08:56 +08:00
|
|
|
case tok::kw_template:
|
|
|
|
parseTemplateDeclaration();
|
|
|
|
break;
|
2012-12-04 02:12:45 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2013-01-05 02:52:56 +08:00
|
|
|
return true;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
2012-12-22 01:58:39 +08:00
|
|
|
void parseIncludeDirective() {
|
2013-01-08 22:56:18 +08:00
|
|
|
while (CurrentToken != NULL) {
|
|
|
|
if (CurrentToken->is(tok::slash))
|
|
|
|
CurrentToken->Type = TT_DirectorySeparator;
|
|
|
|
else if (CurrentToken->is(tok::less))
|
|
|
|
CurrentToken->Type = TT_TemplateOpener;
|
|
|
|
else if (CurrentToken->is(tok::greater))
|
|
|
|
CurrentToken->Type = TT_TemplateCloser;
|
2012-12-22 01:58:39 +08:00
|
|
|
next();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void parsePreprocessorDirective() {
|
|
|
|
next();
|
2013-01-08 22:56:18 +08:00
|
|
|
if (CurrentToken == NULL)
|
2012-12-22 01:58:39 +08:00
|
|
|
return;
|
2013-01-06 06:56:06 +08:00
|
|
|
// Hashes in the middle of a line can lead to any strange token
|
|
|
|
// sequence.
|
2013-01-08 22:56:18 +08:00
|
|
|
if (CurrentToken->FormatTok.Tok.getIdentifierInfo() == NULL)
|
2013-01-06 06:56:06 +08:00
|
|
|
return;
|
2013-01-08 22:56:18 +08:00
|
|
|
switch (
|
|
|
|
CurrentToken->FormatTok.Tok.getIdentifierInfo()->getPPKeywordID()) {
|
2012-12-22 01:58:39 +08:00
|
|
|
case tok::pp_include:
|
2012-12-22 02:21:56 +08:00
|
|
|
case tok::pp_import:
|
2012-12-22 01:58:39 +08:00
|
|
|
parseIncludeDirective();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-07 18:48:50 +08:00
|
|
|
LineType parseLine() {
|
2013-01-08 22:56:18 +08:00
|
|
|
if (CurrentToken->is(tok::hash)) {
|
2012-12-22 01:58:39 +08:00
|
|
|
parsePreprocessorDirective();
|
2013-01-07 18:48:50 +08:00
|
|
|
return LT_PreprocessorDirective;
|
2012-12-22 01:58:39 +08:00
|
|
|
}
|
2013-01-08 22:56:18 +08:00
|
|
|
while (CurrentToken != NULL) {
|
|
|
|
if (CurrentToken->is(tok::kw_virtual))
|
2013-01-07 18:48:50 +08:00
|
|
|
KeywordVirtualFound = true;
|
2013-01-05 02:52:56 +08:00
|
|
|
if (!consumeToken())
|
2013-01-07 18:48:50 +08:00
|
|
|
return LT_Invalid;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
2013-01-07 18:48:50 +08:00
|
|
|
if (KeywordVirtualFound)
|
|
|
|
return LT_VirtualFunctionDecl;
|
|
|
|
return LT_Other;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void next() {
|
2013-01-08 22:56:18 +08:00
|
|
|
if (CurrentToken != NULL && !CurrentToken->Children.empty())
|
|
|
|
CurrentToken = &CurrentToken->Children[0];
|
|
|
|
else
|
|
|
|
CurrentToken = NULL;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2013-01-08 22:56:18 +08:00
|
|
|
AnnotatedToken *CurrentToken;
|
2013-01-07 18:48:50 +08:00
|
|
|
bool KeywordVirtualFound;
|
2012-12-04 02:12:45 +08:00
|
|
|
};
|
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
void createAnnotatedTokens(AnnotatedToken &Current) {
|
|
|
|
if (!Current.FormatTok.Children.empty()) {
|
|
|
|
Current.Children.push_back(AnnotatedToken(Current.FormatTok.Children[0]));
|
|
|
|
Current.Children.back().Parent = &Current;
|
|
|
|
createAnnotatedTokens(Current.Children.back());
|
|
|
|
}
|
|
|
|
}
|
2013-01-07 18:48:50 +08:00
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
void calculateExtraInformation(AnnotatedToken &Current) {
|
|
|
|
Current.SpaceRequiredBefore = spaceRequiredBefore(Current);
|
|
|
|
|
2013-01-09 23:25:02 +08:00
|
|
|
if (Current.FormatTok.MustBreakBefore) {
|
2013-01-08 22:56:18 +08:00
|
|
|
Current.MustBreakBefore = true;
|
|
|
|
} else {
|
2013-01-09 23:25:02 +08:00
|
|
|
if (Current.Type == TT_CtorInitializerColon || Current.Parent->Type ==
|
|
|
|
TT_LineComment || (Current.is(tok::string_literal) &&
|
|
|
|
Current.Parent->is(tok::string_literal))) {
|
|
|
|
Current.MustBreakBefore = true;
|
|
|
|
} else {
|
|
|
|
Current.MustBreakBefore = false;
|
|
|
|
}
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
2013-01-08 22:56:18 +08:00
|
|
|
Current.CanBreakBefore = Current.MustBreakBefore || canBreakBefore(Current);
|
|
|
|
if (!Current.Children.empty())
|
|
|
|
calculateExtraInformation(Current.Children[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool annotate() {
|
|
|
|
createAnnotatedTokens(RootToken);
|
|
|
|
|
|
|
|
AnnotatingParser Parser(RootToken);
|
2013-01-07 18:48:50 +08:00
|
|
|
CurrentLineType = Parser.parseLine();
|
|
|
|
if (CurrentLineType == LT_Invalid)
|
2013-01-05 02:52:56 +08:00
|
|
|
return false;
|
2012-12-04 02:12:45 +08:00
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
determineTokenTypes(RootToken, /*IsRHS=*/false);
|
2013-01-07 18:48:50 +08:00
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
if (RootToken.Type == TT_ObjCMethodSpecifier)
|
2013-01-07 18:48:50 +08:00
|
|
|
CurrentLineType = LT_ObjCMethodDecl;
|
2013-01-11 03:19:14 +08:00
|
|
|
else if (RootToken.Type == TT_ObjCDecl)
|
|
|
|
CurrentLineType = LT_ObjCDecl;
|
2013-01-11 05:30:42 +08:00
|
|
|
else if (RootToken.Type == TT_ObjCProperty)
|
|
|
|
CurrentLineType = LT_ObjCProperty;
|
2013-01-07 18:48:50 +08:00
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
if (!RootToken.Children.empty())
|
|
|
|
calculateExtraInformation(RootToken.Children[0]);
|
2013-01-05 02:52:56 +08:00
|
|
|
return true;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
2013-01-07 18:48:50 +08:00
|
|
|
LineType getLineType() {
|
|
|
|
return CurrentLineType;
|
|
|
|
}
|
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
const AnnotatedToken &getRootToken() {
|
|
|
|
return RootToken;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2013-01-08 22:56:18 +08:00
|
|
|
void determineTokenTypes(AnnotatedToken &Current, bool IsRHS) {
|
|
|
|
if (getPrecedence(Current) == prec::Assignment ||
|
|
|
|
Current.is(tok::kw_return) || Current.is(tok::kw_throw))
|
|
|
|
IsRHS = true;
|
|
|
|
|
|
|
|
if (Current.Type == TT_Unknown) {
|
|
|
|
if (Current.is(tok::star) || Current.is(tok::amp)) {
|
|
|
|
Current.Type = determineStarAmpUsage(Current, IsRHS);
|
2013-01-09 16:36:49 +08:00
|
|
|
} else if (Current.is(tok::minus) || Current.is(tok::plus) ||
|
|
|
|
Current.is(tok::caret)) {
|
|
|
|
Current.Type = determinePlusMinusCaretUsage(Current);
|
2013-01-08 22:56:18 +08:00
|
|
|
} else if (Current.is(tok::minusminus) || Current.is(tok::plusplus)) {
|
|
|
|
Current.Type = determineIncrementUsage(Current);
|
|
|
|
} else if (Current.is(tok::exclaim)) {
|
|
|
|
Current.Type = TT_UnaryOperator;
|
|
|
|
} else if (isBinaryOperator(Current)) {
|
|
|
|
Current.Type = TT_BinaryOperator;
|
|
|
|
} else if (Current.is(tok::comment)) {
|
|
|
|
std::string Data(Lexer::getSpelling(Current.FormatTok.Tok, SourceMgr,
|
|
|
|
Lex.getLangOpts()));
|
2013-01-07 16:54:53 +08:00
|
|
|
if (StringRef(Data).startswith("//"))
|
2013-01-08 22:56:18 +08:00
|
|
|
Current.Type = TT_LineComment;
|
2012-12-04 02:12:45 +08:00
|
|
|
else
|
2013-01-08 22:56:18 +08:00
|
|
|
Current.Type = TT_BlockComment;
|
2013-01-10 19:14:08 +08:00
|
|
|
} else if (Current.is(tok::r_paren) &&
|
|
|
|
(Current.Parent->Type == TT_PointerOrReference ||
|
|
|
|
Current.Parent->Type == TT_TemplateCloser)) {
|
|
|
|
// FIXME: We need to get smarter and understand more cases of casts.
|
|
|
|
Current.Type = TT_CastRParen;
|
2013-01-11 03:19:14 +08:00
|
|
|
} else if (Current.is(tok::at) && Current.Children.size()) {
|
|
|
|
switch (Current.Children[0].FormatTok.Tok.getObjCKeywordID()) {
|
|
|
|
case tok::objc_interface:
|
|
|
|
case tok::objc_implementation:
|
|
|
|
case tok::objc_protocol:
|
|
|
|
Current.Type = TT_ObjCDecl;
|
2013-01-11 05:30:42 +08:00
|
|
|
break;
|
|
|
|
case tok::objc_property:
|
|
|
|
Current.Type = TT_ObjCProperty;
|
|
|
|
break;
|
2013-01-11 03:19:14 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
}
|
2013-01-08 22:56:18 +08:00
|
|
|
|
|
|
|
if (!Current.Children.empty())
|
|
|
|
determineTokenTypes(Current.Children[0], IsRHS);
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
bool isBinaryOperator(const AnnotatedToken &Tok) {
|
2012-12-22 01:58:39 +08:00
|
|
|
// Comma is a binary operator, but does not behave as such wrt. formatting.
|
2012-12-24 21:43:52 +08:00
|
|
|
return getPrecedence(Tok) > prec::Comma;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
TokenType determineStarAmpUsage(const AnnotatedToken &Tok, bool IsRHS) {
|
|
|
|
if (Tok.Parent == NULL)
|
2013-01-07 18:48:50 +08:00
|
|
|
return TT_UnaryOperator;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.Children.size() == 0)
|
2013-01-07 18:48:50 +08:00
|
|
|
return TT_Unknown;
|
2013-01-08 22:56:18 +08:00
|
|
|
const FormatToken &PrevToken = Tok.Parent->FormatTok;
|
|
|
|
const FormatToken &NextToken = Tok.Children[0].FormatTok;
|
2012-12-04 02:12:45 +08:00
|
|
|
|
2013-01-05 04:46:38 +08:00
|
|
|
if (PrevToken.Tok.is(tok::l_paren) || PrevToken.Tok.is(tok::l_square) ||
|
|
|
|
PrevToken.Tok.is(tok::comma) || PrevToken.Tok.is(tok::kw_return) ||
|
2013-01-10 19:14:08 +08:00
|
|
|
PrevToken.Tok.is(tok::colon) || Tok.Parent->Type == TT_BinaryOperator ||
|
|
|
|
Tok.Parent->Type == TT_CastRParen)
|
2013-01-07 18:48:50 +08:00
|
|
|
return TT_UnaryOperator;
|
2012-12-04 02:12:45 +08:00
|
|
|
|
2013-01-02 23:46:59 +08:00
|
|
|
if (PrevToken.Tok.isLiteral() || NextToken.Tok.isLiteral() ||
|
2013-01-03 01:21:36 +08:00
|
|
|
NextToken.Tok.is(tok::plus) || NextToken.Tok.is(tok::minus) ||
|
|
|
|
NextToken.Tok.is(tok::plusplus) || NextToken.Tok.is(tok::minusminus) ||
|
|
|
|
NextToken.Tok.is(tok::tilde) || NextToken.Tok.is(tok::exclaim) ||
|
|
|
|
NextToken.Tok.is(tok::kw_alignof) || NextToken.Tok.is(tok::kw_sizeof))
|
2013-01-07 18:48:50 +08:00
|
|
|
return TT_BinaryOperator;
|
2012-12-04 02:12:45 +08:00
|
|
|
|
2013-01-02 23:46:59 +08:00
|
|
|
if (NextToken.Tok.is(tok::comma) || NextToken.Tok.is(tok::r_paren) ||
|
|
|
|
NextToken.Tok.is(tok::greater))
|
2013-01-07 18:48:50 +08:00
|
|
|
return TT_PointerOrReference;
|
2013-01-02 23:46:59 +08:00
|
|
|
|
2012-12-05 15:51:39 +08:00
|
|
|
// It is very unlikely that we are going to find a pointer or reference type
|
|
|
|
// definition on the RHS of an assignment.
|
2012-12-23 09:07:46 +08:00
|
|
|
if (IsRHS)
|
2013-01-07 18:48:50 +08:00
|
|
|
return TT_BinaryOperator;
|
2012-12-05 15:51:39 +08:00
|
|
|
|
2013-01-07 18:48:50 +08:00
|
|
|
return TT_PointerOrReference;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
2013-01-09 16:36:49 +08:00
|
|
|
TokenType determinePlusMinusCaretUsage(const AnnotatedToken &Tok) {
|
2012-12-21 17:41:31 +08:00
|
|
|
// Use heuristics to recognize unary operators.
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.Parent->is(tok::equal) || Tok.Parent->is(tok::l_paren) ||
|
|
|
|
Tok.Parent->is(tok::comma) || Tok.Parent->is(tok::l_square) ||
|
|
|
|
Tok.Parent->is(tok::question) || Tok.Parent->is(tok::colon) ||
|
2013-01-11 03:36:35 +08:00
|
|
|
Tok.Parent->is(tok::kw_return) || Tok.Parent->is(tok::kw_case) ||
|
|
|
|
Tok.Parent->is(tok::at))
|
2013-01-07 18:48:50 +08:00
|
|
|
return TT_UnaryOperator;
|
2012-12-21 17:41:31 +08:00
|
|
|
|
|
|
|
// There can't be to consecutive binary operators.
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.Parent->Type == TT_BinaryOperator)
|
2013-01-07 18:48:50 +08:00
|
|
|
return TT_UnaryOperator;
|
2012-12-21 17:41:31 +08:00
|
|
|
|
|
|
|
// Fall back to marking the token as binary operator.
|
2013-01-07 18:48:50 +08:00
|
|
|
return TT_BinaryOperator;
|
2012-12-21 17:41:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief Determine whether ++/-- are pre- or post-increments/-decrements.
|
2013-01-08 22:56:18 +08:00
|
|
|
TokenType determineIncrementUsage(const AnnotatedToken &Tok) {
|
|
|
|
if (Tok.Parent != NULL && Tok.Parent->is(tok::identifier))
|
2013-01-07 18:48:50 +08:00
|
|
|
return TT_TrailingUnaryOperator;
|
2012-12-21 17:41:31 +08:00
|
|
|
|
2013-01-07 18:48:50 +08:00
|
|
|
return TT_UnaryOperator;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
bool spaceRequiredBetween(const AnnotatedToken &Left,
|
|
|
|
const AnnotatedToken &Right) {
|
2013-01-09 00:17:54 +08:00
|
|
|
if (Right.is(tok::hashhash))
|
|
|
|
return Left.is(tok::hash);
|
|
|
|
if (Left.is(tok::hashhash) || Left.is(tok::hash))
|
|
|
|
return Right.is(tok::hash);
|
2012-12-11 02:59:13 +08:00
|
|
|
if (Right.is(tok::r_paren) || Right.is(tok::semi) || Right.is(tok::comma))
|
|
|
|
return false;
|
2013-01-11 04:12:55 +08:00
|
|
|
if (Right.is(tok::less) &&
|
|
|
|
(Left.is(tok::kw_template) ||
|
|
|
|
(CurrentLineType == LT_ObjCDecl && Style.ObjCSpaceBeforeProtocolList)))
|
2012-12-04 02:12:45 +08:00
|
|
|
return true;
|
|
|
|
if (Left.is(tok::arrow) || Right.is(tok::arrow))
|
|
|
|
return false;
|
|
|
|
if (Left.is(tok::exclaim) || Left.is(tok::tilde))
|
|
|
|
return false;
|
2013-01-09 03:40:21 +08:00
|
|
|
if (Left.is(tok::at) &&
|
|
|
|
(Right.is(tok::identifier) || Right.is(tok::string_literal) ||
|
|
|
|
Right.is(tok::char_constant) || Right.is(tok::numeric_constant) ||
|
2013-01-10 21:08:12 +08:00
|
|
|
Right.is(tok::l_paren) || Right.is(tok::l_brace) ||
|
|
|
|
Right.is(tok::kw_true) || Right.is(tok::kw_false)))
|
2012-12-21 03:54:13 +08:00
|
|
|
return false;
|
2012-12-04 02:12:45 +08:00
|
|
|
if (Left.is(tok::less) || Right.is(tok::greater) || Right.is(tok::less))
|
|
|
|
return false;
|
2012-12-07 17:52:15 +08:00
|
|
|
if (Right.is(tok::amp) || Right.is(tok::star))
|
2013-01-08 22:56:18 +08:00
|
|
|
return Left.FormatTok.Tok.isLiteral() ||
|
2012-12-25 00:51:15 +08:00
|
|
|
(Left.isNot(tok::star) && Left.isNot(tok::amp) &&
|
|
|
|
!Style.PointerAndReferenceBindToType);
|
2012-12-04 02:12:45 +08:00
|
|
|
if (Left.is(tok::amp) || Left.is(tok::star))
|
2013-01-08 22:56:18 +08:00
|
|
|
return Right.FormatTok.Tok.isLiteral() ||
|
|
|
|
Style.PointerAndReferenceBindToType;
|
2012-12-04 02:12:45 +08:00
|
|
|
if (Right.is(tok::star) && Left.is(tok::l_paren))
|
|
|
|
return false;
|
|
|
|
if (Left.is(tok::l_square) || Right.is(tok::l_square) ||
|
|
|
|
Right.is(tok::r_square))
|
|
|
|
return false;
|
2012-12-07 17:52:15 +08:00
|
|
|
if (Left.is(tok::coloncolon) ||
|
|
|
|
(Right.is(tok::coloncolon) &&
|
|
|
|
(Left.is(tok::identifier) || Left.is(tok::greater))))
|
2012-12-04 02:12:45 +08:00
|
|
|
return false;
|
|
|
|
if (Left.is(tok::period) || Right.is(tok::period))
|
|
|
|
return false;
|
|
|
|
if (Left.is(tok::colon) || Right.is(tok::colon))
|
|
|
|
return true;
|
|
|
|
if (Left.is(tok::l_paren))
|
|
|
|
return false;
|
|
|
|
if (Right.is(tok::l_paren)) {
|
2013-01-11 03:19:14 +08:00
|
|
|
return CurrentLineType == LT_ObjCDecl || Left.is(tok::kw_if) ||
|
|
|
|
Left.is(tok::kw_for) || Left.is(tok::kw_while) ||
|
|
|
|
Left.is(tok::kw_switch) ||
|
2013-01-10 21:08:12 +08:00
|
|
|
Left.is(tok::kw_return) || Left.is(tok::kw_catch);
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Left.is(tok::at) &&
|
|
|
|
Right.FormatTok.Tok.getObjCKeywordID() != tok::objc_not_keyword)
|
2013-01-08 00:14:28 +08:00
|
|
|
return false;
|
2013-01-10 21:24:24 +08:00
|
|
|
if (Left.is(tok::l_brace) && Right.is(tok::r_brace))
|
|
|
|
return false;
|
2012-12-04 02:12:45 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
bool spaceRequiredBefore(const AnnotatedToken &Tok) {
|
2013-01-07 23:36:15 +08:00
|
|
|
if (CurrentLineType == LT_ObjCMethodDecl) {
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.is(tok::identifier) && !Tok.Children.empty() &&
|
|
|
|
Tok.Children[0].is(tok::colon) && Tok.Parent->is(tok::identifier))
|
2013-01-07 23:36:15 +08:00
|
|
|
return true;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.is(tok::colon))
|
2013-01-07 23:36:15 +08:00
|
|
|
return false;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.Parent->Type == TT_ObjCMethodSpecifier)
|
2013-01-11 07:11:41 +08:00
|
|
|
return Style.ObjCSpaceBeforeReturnType || Tok.isNot(tok::l_paren);
|
|
|
|
if (Tok.Type == TT_ObjCSelectorStart)
|
|
|
|
return !Style.ObjCSpaceBeforeReturnType;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.Parent->is(tok::r_paren) && Tok.is(tok::identifier))
|
2013-01-07 23:36:15 +08:00
|
|
|
// Don't space between ')' and <id>
|
|
|
|
return false;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.Parent->is(tok::colon) && Tok.is(tok::l_paren))
|
2013-01-07 23:36:15 +08:00
|
|
|
// Don't space between ':' and '('
|
|
|
|
return false;
|
|
|
|
}
|
2013-01-11 05:30:42 +08:00
|
|
|
if (CurrentLineType == LT_ObjCProperty &&
|
|
|
|
(Tok.is(tok::equal) || Tok.Parent->is(tok::equal)))
|
|
|
|
return false;
|
2013-01-07 23:36:15 +08:00
|
|
|
|
2013-01-10 21:08:12 +08:00
|
|
|
if (Tok.Type == TT_CtorInitializerColon || Tok.Type == TT_ObjCBlockLParen)
|
2013-01-07 23:36:15 +08:00
|
|
|
return true;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.Type == TT_OverloadedOperator)
|
|
|
|
return Tok.is(tok::identifier) || Tok.is(tok::kw_new) ||
|
2013-01-10 21:08:12 +08:00
|
|
|
Tok.is(tok::kw_delete) || Tok.is(tok::kw_bool);
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.Parent->Type == TT_OverloadedOperator)
|
2013-01-07 23:36:15 +08:00
|
|
|
return false;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.is(tok::colon))
|
|
|
|
return RootToken.isNot(tok::kw_case) && (!Tok.Children.empty());
|
2013-01-10 19:14:08 +08:00
|
|
|
if (Tok.Parent->Type == TT_UnaryOperator ||
|
|
|
|
Tok.Parent->Type == TT_CastRParen)
|
2013-01-07 23:36:15 +08:00
|
|
|
return false;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.Type == TT_UnaryOperator)
|
|
|
|
return Tok.Parent->isNot(tok::l_paren) &&
|
2013-01-11 03:36:35 +08:00
|
|
|
Tok.Parent->isNot(tok::l_square) &&
|
|
|
|
Tok.Parent->isNot(tok::at);
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.Parent->is(tok::greater) && Tok.is(tok::greater)) {
|
|
|
|
return Tok.Type == TT_TemplateCloser && Tok.Parent->Type ==
|
2013-01-07 23:36:15 +08:00
|
|
|
TT_TemplateCloser && Style.SplitTemplateClosingGreater;
|
|
|
|
}
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.Type == TT_DirectorySeparator ||
|
|
|
|
Tok.Parent->Type == TT_DirectorySeparator)
|
2013-01-07 23:36:15 +08:00
|
|
|
return false;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.Type == TT_BinaryOperator || Tok.Parent->Type == TT_BinaryOperator)
|
2013-01-07 23:36:15 +08:00
|
|
|
return true;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.Parent->Type == TT_TemplateCloser && Tok.is(tok::l_paren))
|
2013-01-07 23:36:15 +08:00
|
|
|
return false;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.is(tok::less) && RootToken.is(tok::hash))
|
2013-01-07 23:36:15 +08:00
|
|
|
return true;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Tok.Type == TT_TrailingUnaryOperator)
|
2013-01-07 23:36:15 +08:00
|
|
|
return false;
|
2013-01-08 22:56:18 +08:00
|
|
|
return spaceRequiredBetween(*Tok.Parent, Tok);
|
2013-01-07 23:36:15 +08:00
|
|
|
}
|
|
|
|
|
2013-01-08 22:56:18 +08:00
|
|
|
bool canBreakBefore(const AnnotatedToken &Right) {
|
|
|
|
const AnnotatedToken &Left = *Right.Parent;
|
2013-01-07 23:36:15 +08:00
|
|
|
if (CurrentLineType == LT_ObjCMethodDecl) {
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Right.is(tok::identifier) && !Right.Children.empty() &&
|
|
|
|
Right.Children[0].is(tok::colon) && Left.is(tok::identifier))
|
2013-01-07 23:36:15 +08:00
|
|
|
return true;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (CurrentLineType == LT_ObjCMethodDecl && Right.is(tok::identifier) &&
|
|
|
|
Left.is(tok::l_paren) && Left.Parent->is(tok::colon))
|
2013-01-07 23:36:15 +08:00
|
|
|
// Don't break this identifier as ':' or identifier
|
|
|
|
// before it will break.
|
|
|
|
return false;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Right.is(tok::colon) && Left.is(tok::identifier) &&
|
|
|
|
Left.CanBreakBefore)
|
2013-01-07 23:36:15 +08:00
|
|
|
// Don't break at ':' if identifier before it can beak.
|
|
|
|
return false;
|
|
|
|
}
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Left.ClosesTemplateDeclaration)
|
2013-01-03 02:30:06 +08:00
|
|
|
return true;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Left.Type == TT_PointerOrReference || Left.Type == TT_TemplateCloser ||
|
2013-01-09 04:03:18 +08:00
|
|
|
Left.Type == TT_UnaryOperator || Right.Type == TT_ConditionalExpr)
|
2013-01-02 16:44:14 +08:00
|
|
|
return false;
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Left.is(tok::equal) && CurrentLineType == LT_VirtualFunctionDecl)
|
2013-01-07 18:48:50 +08:00
|
|
|
return false;
|
|
|
|
|
2013-01-09 17:33:39 +08:00
|
|
|
if (Right.is(tok::comment))
|
|
|
|
return !Right.Children.empty();
|
2013-01-08 22:56:18 +08:00
|
|
|
if (Right.is(tok::r_paren) || Right.is(tok::l_brace) ||
|
2013-01-09 17:33:39 +08:00
|
|
|
Right.is(tok::greater))
|
2012-12-04 02:12:45 +08:00
|
|
|
return false;
|
2013-01-08 22:56:18 +08:00
|
|
|
return (isBinaryOperator(Left) && Left.isNot(tok::lessless)) ||
|
|
|
|
Left.is(tok::comma) || Right.is(tok::lessless) ||
|
|
|
|
Right.is(tok::arrow) || Right.is(tok::period) ||
|
|
|
|
Right.is(tok::colon) || Left.is(tok::semi) ||
|
2013-01-09 15:06:56 +08:00
|
|
|
Left.is(tok::l_brace) || Left.is(tok::question) ||
|
Fixes layout of right braces.
We now decide whether a newline should go before the closing brace
depending on whether a newline was inserted after the opening brace.
For example, we now insert a newline before '};' in:
static SomeClass WithALoooooooooooooooooooongName = {
100000000, \"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\"
};
... while not inserting a newline here:
static SomeClass = { a, b, c, d, e, f, g, h, i, j,
looooooooooooooooooooooooooooooooooongname,
looooooooooooooooooooooooooooooong };
Also fixes the formating of (column limit 25):
int x = {
avariable,
b(alongervariable)
};
llvm-svn: 172076
2013-01-10 23:58:26 +08:00
|
|
|
Right.is(tok::r_brace) || Left.Type == TT_ConditionalExpr ||
|
2013-01-08 22:56:18 +08:00
|
|
|
(Left.is(tok::l_paren) && !Right.is(tok::r_paren));
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
FormatStyle Style;
|
|
|
|
SourceManager &SourceMgr;
|
2013-01-07 16:54:53 +08:00
|
|
|
Lexer &Lex;
|
2013-01-07 18:48:50 +08:00
|
|
|
LineType CurrentLineType;
|
2013-01-08 22:56:18 +08:00
|
|
|
AnnotatedToken RootToken;
|
2012-12-04 02:12:45 +08:00
|
|
|
};
|
|
|
|
|
2012-12-08 00:15:44 +08:00
|
|
|
class LexerBasedFormatTokenSource : public FormatTokenSource {
|
|
|
|
public:
|
|
|
|
LexerBasedFormatTokenSource(Lexer &Lex, SourceManager &SourceMgr)
|
2012-12-19 05:05:13 +08:00
|
|
|
: GreaterStashed(false), Lex(Lex), SourceMgr(SourceMgr),
|
2012-12-08 00:15:44 +08:00
|
|
|
IdentTable(Lex.getLangOpts()) {
|
|
|
|
Lex.SetKeepWhitespaceMode(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual FormatToken getNextToken() {
|
|
|
|
if (GreaterStashed) {
|
|
|
|
FormatTok.NewlinesBefore = 0;
|
|
|
|
FormatTok.WhiteSpaceStart =
|
|
|
|
FormatTok.Tok.getLocation().getLocWithOffset(1);
|
|
|
|
FormatTok.WhiteSpaceLength = 0;
|
|
|
|
GreaterStashed = false;
|
|
|
|
return FormatTok;
|
|
|
|
}
|
|
|
|
|
|
|
|
FormatTok = FormatToken();
|
|
|
|
Lex.LexFromRawLexer(FormatTok.Tok);
|
2013-01-07 15:56:50 +08:00
|
|
|
StringRef Text = rawTokenText(FormatTok.Tok);
|
2012-12-08 00:15:44 +08:00
|
|
|
FormatTok.WhiteSpaceStart = FormatTok.Tok.getLocation();
|
2013-01-06 06:56:06 +08:00
|
|
|
if (SourceMgr.getFileOffset(FormatTok.WhiteSpaceStart) == 0)
|
|
|
|
FormatTok.IsFirst = true;
|
2012-12-08 00:15:44 +08:00
|
|
|
|
|
|
|
// Consume and record whitespace until we find a significant token.
|
|
|
|
while (FormatTok.Tok.is(tok::unknown)) {
|
2013-01-03 00:30:12 +08:00
|
|
|
FormatTok.NewlinesBefore += Text.count('\n');
|
2013-01-07 21:26:07 +08:00
|
|
|
FormatTok.HasUnescapedNewline = Text.count("\\\n") !=
|
|
|
|
FormatTok.NewlinesBefore;
|
2012-12-08 00:15:44 +08:00
|
|
|
FormatTok.WhiteSpaceLength += FormatTok.Tok.getLength();
|
|
|
|
|
|
|
|
if (FormatTok.Tok.is(tok::eof))
|
|
|
|
return FormatTok;
|
|
|
|
Lex.LexFromRawLexer(FormatTok.Tok);
|
2013-01-07 15:56:50 +08:00
|
|
|
Text = rawTokenText(FormatTok.Tok);
|
2013-01-05 07:34:14 +08:00
|
|
|
}
|
2013-01-07 15:56:50 +08:00
|
|
|
|
|
|
|
// Now FormatTok is the next non-whitespace token.
|
|
|
|
FormatTok.TokenLength = Text.size();
|
|
|
|
|
2013-01-05 07:34:14 +08:00
|
|
|
// In case the token starts with escaped newlines, we want to
|
|
|
|
// take them into account as whitespace - this pattern is quite frequent
|
|
|
|
// in macro definitions.
|
|
|
|
// FIXME: What do we want to do with other escaped spaces, and escaped
|
|
|
|
// spaces or newlines in the middle of tokens?
|
|
|
|
// FIXME: Add a more explicit test.
|
|
|
|
unsigned i = 0;
|
2013-01-07 18:48:50 +08:00
|
|
|
while (i + 1 < Text.size() && Text[i] == '\\' && Text[i + 1] == '\n') {
|
2013-01-05 07:34:14 +08:00
|
|
|
FormatTok.WhiteSpaceLength += 2;
|
2013-01-07 15:56:50 +08:00
|
|
|
FormatTok.TokenLength -= 2;
|
2013-01-05 07:34:14 +08:00
|
|
|
i += 2;
|
2012-12-08 00:15:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (FormatTok.Tok.is(tok::raw_identifier)) {
|
2013-01-05 07:34:14 +08:00
|
|
|
IdentifierInfo &Info = IdentTable.get(Text);
|
2012-12-22 01:58:39 +08:00
|
|
|
FormatTok.Tok.setIdentifierInfo(&Info);
|
2012-12-08 00:15:44 +08:00
|
|
|
FormatTok.Tok.setKind(Info.getTokenID());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FormatTok.Tok.is(tok::greatergreater)) {
|
|
|
|
FormatTok.Tok.setKind(tok::greater);
|
|
|
|
GreaterStashed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FormatTok;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
FormatToken FormatTok;
|
|
|
|
bool GreaterStashed;
|
|
|
|
Lexer &Lex;
|
|
|
|
SourceManager &SourceMgr;
|
|
|
|
IdentifierTable IdentTable;
|
|
|
|
|
|
|
|
/// Returns the text of \c FormatTok.
|
2013-01-07 15:56:50 +08:00
|
|
|
StringRef rawTokenText(Token &Tok) {
|
2012-12-08 00:15:44 +08:00
|
|
|
return StringRef(SourceMgr.getCharacterData(Tok.getLocation()),
|
|
|
|
Tok.getLength());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-12-04 02:12:45 +08:00
|
|
|
class Formatter : public UnwrappedLineConsumer {
|
|
|
|
public:
|
2013-01-10 23:05:09 +08:00
|
|
|
Formatter(clang::DiagnosticsEngine &Diag, const FormatStyle &Style,
|
|
|
|
Lexer &Lex, SourceManager &SourceMgr,
|
2012-12-04 02:12:45 +08:00
|
|
|
const std::vector<CharSourceRange> &Ranges)
|
2013-01-10 23:05:09 +08:00
|
|
|
: Diag(Diag), Style(Style), Lex(Lex), SourceMgr(SourceMgr),
|
2013-01-11 02:45:26 +08:00
|
|
|
Ranges(Ranges) {}
|
2012-12-04 02:12:45 +08:00
|
|
|
|
2012-12-05 05:05:31 +08:00
|
|
|
virtual ~Formatter() {
|
|
|
|
}
|
|
|
|
|
2012-12-04 02:12:45 +08:00
|
|
|
tooling::Replacements format() {
|
2012-12-08 00:15:44 +08:00
|
|
|
LexerBasedFormatTokenSource Tokens(Lex, SourceMgr);
|
2013-01-10 23:05:09 +08:00
|
|
|
UnwrappedLineParser Parser(Diag, Style, Tokens, *this);
|
2012-12-05 01:27:50 +08:00
|
|
|
StructuralError = Parser.parse();
|
2013-01-05 07:34:14 +08:00
|
|
|
unsigned PreviousEndOfLineColumn = 0;
|
2012-12-05 01:27:50 +08:00
|
|
|
for (std::vector<UnwrappedLine>::iterator I = UnwrappedLines.begin(),
|
|
|
|
E = UnwrappedLines.end();
|
2013-01-11 03:49:59 +08:00
|
|
|
I != E; ++I) {
|
|
|
|
const UnwrappedLine &TheLine = *I;
|
|
|
|
if (touchesRanges(TheLine)) {
|
|
|
|
TokenAnnotator Annotator(TheLine, Style, SourceMgr, Lex);
|
|
|
|
if (!Annotator.annotate())
|
|
|
|
break;
|
|
|
|
unsigned Indent = formatFirstToken(Annotator.getRootToken(),
|
|
|
|
TheLine.Level, TheLine.InPPDirective,
|
|
|
|
PreviousEndOfLineColumn);
|
2013-01-11 19:37:55 +08:00
|
|
|
unsigned Limit = Style.ColumnLimit - (TheLine.InPPDirective ? 1 : 0) -
|
|
|
|
Indent;
|
|
|
|
// Check whether the UnwrappedLine can be put onto a single line. If
|
|
|
|
// so, this is bound to be the optimal solution (by definition) and we
|
|
|
|
// don't need to analyze the entire solution space.
|
|
|
|
bool FitsOnALine = fitsIntoLimit(Annotator.getRootToken(), Limit);
|
2013-01-11 03:49:59 +08:00
|
|
|
UnwrappedLineFormatter Formatter(Style, SourceMgr, TheLine, Indent,
|
|
|
|
FitsOnALine, Annotator.getLineType(),
|
|
|
|
Annotator.getRootToken(), Replaces,
|
|
|
|
StructuralError);
|
|
|
|
PreviousEndOfLineColumn = Formatter.format();
|
|
|
|
} else {
|
|
|
|
// If we did not reformat this unwrapped line, the column at the end of
|
|
|
|
// the last token is unchanged - thus, we can calculate the end of the
|
|
|
|
// last token, and return the result.
|
|
|
|
const FormatToken *Last = getLastLine(TheLine);
|
|
|
|
PreviousEndOfLineColumn =
|
|
|
|
SourceMgr.getSpellingColumnNumber(Last->Tok.getLocation()) +
|
|
|
|
Lex.MeasureTokenLength(Last->Tok.getLocation(), SourceMgr,
|
|
|
|
Lex.getLangOpts()) -
|
|
|
|
1;
|
|
|
|
}
|
|
|
|
}
|
2012-12-04 02:12:45 +08:00
|
|
|
return Replaces;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2013-01-11 03:49:59 +08:00
|
|
|
const FormatToken *getLastLine(const UnwrappedLine &TheLine) {
|
|
|
|
const FormatToken *Last = &TheLine.RootToken;
|
|
|
|
while (!Last->Children.empty())
|
|
|
|
Last = &Last->Children.back();
|
|
|
|
return Last;
|
2012-12-05 01:27:50 +08:00
|
|
|
}
|
|
|
|
|
2013-01-11 03:49:59 +08:00
|
|
|
bool touchesRanges(const UnwrappedLine &TheLine) {
|
2013-01-08 22:56:18 +08:00
|
|
|
const FormatToken *First = &TheLine.RootToken;
|
2013-01-11 03:49:59 +08:00
|
|
|
const FormatToken *Last = getLastLine(TheLine);
|
2013-01-07 21:26:07 +08:00
|
|
|
CharSourceRange LineRange = CharSourceRange::getTokenRange(
|
2013-01-08 22:56:18 +08:00
|
|
|
First->Tok.getLocation(),
|
|
|
|
Last->Tok.getLocation());
|
2012-12-04 02:12:45 +08:00
|
|
|
for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
|
2013-01-11 03:49:59 +08:00
|
|
|
if (!SourceMgr.isBeforeInTranslationUnit(LineRange.getEnd(),
|
|
|
|
Ranges[i].getBegin()) &&
|
|
|
|
!SourceMgr.isBeforeInTranslationUnit(Ranges[i].getEnd(),
|
|
|
|
LineRange.getBegin()))
|
|
|
|
return true;
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
2013-01-11 03:49:59 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void consumeUnwrappedLine(const UnwrappedLine &TheLine) {
|
|
|
|
UnwrappedLines.push_back(TheLine);
|
2012-12-04 02:12:45 +08:00
|
|
|
}
|
|
|
|
|
2013-01-11 02:45:26 +08:00
|
|
|
/// \brief Add a new line and the required indent before the first Token
|
|
|
|
/// of the \c UnwrappedLine if there was no structural parsing error.
|
|
|
|
/// Returns the indent level of the \c UnwrappedLine.
|
|
|
|
unsigned formatFirstToken(const AnnotatedToken &RootToken, unsigned Level,
|
|
|
|
bool InPPDirective,
|
|
|
|
unsigned PreviousEndOfLineColumn) {
|
|
|
|
const FormatToken& Tok = RootToken.FormatTok;
|
|
|
|
if (!Tok.WhiteSpaceStart.isValid() || StructuralError)
|
|
|
|
return SourceMgr.getSpellingColumnNumber(Tok.Tok.getLocation()) - 1;
|
|
|
|
|
|
|
|
unsigned Newlines = std::min(Tok.NewlinesBefore,
|
|
|
|
Style.MaxEmptyLinesToKeep + 1);
|
|
|
|
if (Newlines == 0 && !Tok.IsFirst)
|
|
|
|
Newlines = 1;
|
|
|
|
unsigned Indent = Level * 2;
|
|
|
|
|
|
|
|
bool IsAccessModifier = false;
|
|
|
|
if (RootToken.is(tok::kw_public) || RootToken.is(tok::kw_protected) ||
|
|
|
|
RootToken.is(tok::kw_private))
|
|
|
|
IsAccessModifier = true;
|
|
|
|
else if (RootToken.is(tok::at) && !RootToken.Children.empty() &&
|
|
|
|
(RootToken.Children[0].isObjCAtKeyword(tok::objc_public) ||
|
|
|
|
RootToken.Children[0].isObjCAtKeyword(tok::objc_protected) ||
|
|
|
|
RootToken.Children[0].isObjCAtKeyword(tok::objc_package) ||
|
|
|
|
RootToken.Children[0].isObjCAtKeyword(tok::objc_private)))
|
|
|
|
IsAccessModifier = true;
|
|
|
|
|
|
|
|
if (IsAccessModifier &&
|
|
|
|
static_cast<int>(Indent) + Style.AccessModifierOffset >= 0)
|
|
|
|
Indent += Style.AccessModifierOffset;
|
|
|
|
if (!InPPDirective || Tok.HasUnescapedNewline) {
|
|
|
|
replaceWhitespace(Tok, Newlines, Indent, Style, SourceMgr, Replaces);
|
|
|
|
} else {
|
|
|
|
replacePPWhitespace(Tok, Newlines, Indent, PreviousEndOfLineColumn, Style,
|
|
|
|
SourceMgr, Replaces);
|
|
|
|
}
|
|
|
|
return Indent;
|
|
|
|
}
|
|
|
|
|
2013-01-10 23:05:09 +08:00
|
|
|
clang::DiagnosticsEngine &Diag;
|
2012-12-04 02:12:45 +08:00
|
|
|
FormatStyle Style;
|
|
|
|
Lexer &Lex;
|
|
|
|
SourceManager &SourceMgr;
|
|
|
|
tooling::Replacements Replaces;
|
|
|
|
std::vector<CharSourceRange> Ranges;
|
2012-12-05 01:27:50 +08:00
|
|
|
std::vector<UnwrappedLine> UnwrappedLines;
|
|
|
|
bool StructuralError;
|
2012-12-04 02:12:45 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
tooling::Replacements reformat(const FormatStyle &Style, Lexer &Lex,
|
|
|
|
SourceManager &SourceMgr,
|
|
|
|
std::vector<CharSourceRange> Ranges) {
|
2013-01-10 23:05:09 +08:00
|
|
|
IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions();
|
|
|
|
TextDiagnosticPrinter DiagnosticPrinter(llvm::errs(), &*DiagOpts);
|
|
|
|
DiagnosticPrinter.BeginSourceFile(Lex.getLangOpts(), Lex.getPP());
|
|
|
|
DiagnosticsEngine Diagnostics(
|
|
|
|
llvm::IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs()), &*DiagOpts,
|
|
|
|
&DiagnosticPrinter, false);
|
|
|
|
Diagnostics.setSourceManager(&SourceMgr);
|
|
|
|
Formatter formatter(Diagnostics, Style, Lex, SourceMgr, Ranges);
|
2012-12-04 02:12:45 +08:00
|
|
|
return formatter.format();
|
|
|
|
}
|
|
|
|
|
2013-01-10 21:08:12 +08:00
|
|
|
LangOptions getFormattingLangOpts() {
|
|
|
|
LangOptions LangOpts;
|
|
|
|
LangOpts.CPlusPlus = 1;
|
|
|
|
LangOpts.CPlusPlus11 = 1;
|
|
|
|
LangOpts.Bool = 1;
|
|
|
|
LangOpts.ObjC1 = 1;
|
|
|
|
LangOpts.ObjC2 = 1;
|
|
|
|
return LangOpts;
|
|
|
|
}
|
|
|
|
|
2013-01-07 21:26:07 +08:00
|
|
|
} // namespace format
|
|
|
|
} // namespace clang
|