blob: 81d660d947015a68d480464c2b514d606d00bba6 [file] [log] [blame]
Daniel Jasper32d28ee2013-01-29 21:01:14 +00001//===--- TokenAnnotator.h - Format C++ code ---------------------*- C++ -*-===//
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 a token annotator, i.e. creates
12/// \c AnnotatedTokens out of \c FormatTokens with required extra information.
13///
14//===----------------------------------------------------------------------===//
15
16#ifndef LLVM_CLANG_FORMAT_TOKEN_ANNOTATOR_H
17#define LLVM_CLANG_FORMAT_TOKEN_ANNOTATOR_H
18
19#include "UnwrappedLineParser.h"
20#include "clang/Basic/OperatorPrecedence.h"
21#include "clang/Format/Format.h"
22#include <string>
23
24namespace clang {
25class Lexer;
26class SourceManager;
27
28namespace format {
29
30enum TokenType {
31 TT_BinaryOperator,
32 TT_BlockComment,
33 TT_CastRParen,
34 TT_ConditionalExpr,
35 TT_CtorInitializerColon,
36 TT_ImplicitStringLiteral,
Daniel Jasper923ebef2013-03-14 13:45:21 +000037 TT_InlineASMColon,
Daniel Jasper6cabab42013-02-14 08:42:54 +000038 TT_InheritanceColon,
Daniel Jasper431f5912013-05-28 08:33:00 +000039 TT_FunctionTypeLParen,
Daniel Jasper32d28ee2013-01-29 21:01:14 +000040 TT_LineComment,
Nico Weber051860e2013-02-10 02:08:05 +000041 TT_ObjCArrayLiteral,
Daniel Jasper32d28ee2013-01-29 21:01:14 +000042 TT_ObjCBlockLParen,
43 TT_ObjCDecl,
Nico Weberf2ff8122013-05-26 05:39:26 +000044 TT_ObjCDictLiteral,
Nico Weberc2e6d2a2013-02-11 15:32:15 +000045 TT_ObjCForIn,
Daniel Jasper32d28ee2013-01-29 21:01:14 +000046 TT_ObjCMethodExpr,
Nico Weber051860e2013-02-10 02:08:05 +000047 TT_ObjCMethodSpecifier,
Daniel Jasper32d28ee2013-01-29 21:01:14 +000048 TT_ObjCProperty,
Daniel Jasper63d7ced2013-02-05 10:07:47 +000049 TT_ObjCSelectorName,
Daniel Jasper6ea933c2013-05-10 07:59:58 +000050 TT_OverloadedOperator,
Daniel Jasper2b4c9242013-02-11 08:01:18 +000051 TT_OverloadedOperatorLParen,
Daniel Jasper32d28ee2013-01-29 21:01:14 +000052 TT_PointerOrReference,
53 TT_PureVirtualSpecifier,
54 TT_RangeBasedForLoopColon,
55 TT_StartOfName,
56 TT_TemplateCloser,
57 TT_TemplateOpener,
58 TT_TrailingUnaryOperator,
59 TT_UnaryOperator,
60 TT_Unknown
61};
62
63enum LineType {
64 LT_Invalid,
65 LT_Other,
66 LT_BuilderTypeCall,
67 LT_PreprocessorDirective,
68 LT_VirtualFunctionDecl,
69 LT_ObjCDecl, // An @interface, @implementation, or @protocol line.
70 LT_ObjCMethodDecl,
71 LT_ObjCProperty // An @property line.
72};
73
74class AnnotatedToken {
75public:
76 explicit AnnotatedToken(const FormatToken &FormatTok)
Daniel Jasper729a7432013-02-11 12:36:37 +000077 : FormatTok(FormatTok), Type(TT_Unknown), SpacesRequiredBefore(0),
Daniel Jasper32d28ee2013-01-29 21:01:14 +000078 CanBreakBefore(false), MustBreakBefore(false),
79 ClosesTemplateDeclaration(false), MatchingParen(NULL),
Daniel Jasper089f78d2013-05-14 10:44:17 +000080 ParameterCount(0), TotalLength(FormatTok.TokenLength),
Manuel Klimeke573c3f2013-05-22 12:51:29 +000081 UnbreakableTailLength(0), BindingStrength(0), SplitPenalty(0),
Daniel Jasper431f5912013-05-28 08:33:00 +000082 LongestObjCSelectorName(0), Parent(NULL), FakeRParens(0),
83 LastInChainOfCalls(false), PartOfMultiVariableDeclStmt(false) {}
Daniel Jasper32d28ee2013-01-29 21:01:14 +000084
85 bool is(tok::TokenKind Kind) const { return FormatTok.Tok.is(Kind); }
Alexander Kornienkoe74de282013-03-13 14:41:29 +000086
87 bool isOneOf(tok::TokenKind K1, tok::TokenKind K2) const {
88 return is(K1) || is(K2);
89 }
90
91 bool isOneOf(tok::TokenKind K1, tok::TokenKind K2, tok::TokenKind K3) const {
92 return is(K1) || is(K2) || is(K3);
93 }
94
95 bool isOneOf(
96 tok::TokenKind K1, tok::TokenKind K2, tok::TokenKind K3,
97 tok::TokenKind K4, tok::TokenKind K5 = tok::NUM_TOKENS,
98 tok::TokenKind K6 = tok::NUM_TOKENS, tok::TokenKind K7 = tok::NUM_TOKENS,
99 tok::TokenKind K8 = tok::NUM_TOKENS, tok::TokenKind K9 = tok::NUM_TOKENS,
100 tok::TokenKind K10 = tok::NUM_TOKENS,
101 tok::TokenKind K11 = tok::NUM_TOKENS,
102 tok::TokenKind K12 = tok::NUM_TOKENS) const {
103 return is(K1) || is(K2) || is(K3) || is(K4) || is(K5) || is(K6) || is(K7) ||
104 is(K8) || is(K9) || is(K10) || is(K11) || is(K12);
105 }
106
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000107 bool isNot(tok::TokenKind Kind) const { return FormatTok.Tok.isNot(Kind); }
108
109 bool isObjCAtKeyword(tok::ObjCKeywordKind Kind) const {
110 return FormatTok.Tok.isObjCAtKeyword(Kind);
111 }
112
Alexander Kornienko94b748f2013-03-27 17:08:02 +0000113 bool isAccessSpecifier(bool ColonRequired = true) const {
114 return isOneOf(tok::kw_public, tok::kw_protected, tok::kw_private) &&
115 (!ColonRequired ||
116 (!Children.empty() && Children[0].is(tok::colon)));
117 }
118
119 bool isObjCAccessSpecifier() const {
120 return is(tok::at) && !Children.empty() &&
121 (Children[0].isObjCAtKeyword(tok::objc_public) ||
122 Children[0].isObjCAtKeyword(tok::objc_protected) ||
123 Children[0].isObjCAtKeyword(tok::objc_package) ||
124 Children[0].isObjCAtKeyword(tok::objc_private));
125 }
126
Daniel Jasperac3223e2013-04-10 09:49:49 +0000127 /// \brief Returns whether \p Tok is ([{ or a template opening <.
128 bool opensScope() const;
129 /// \brief Returns whether \p Tok is )]} or a template opening >.
130 bool closesScope() const;
131
132 bool isUnaryOperator() const;
133 bool isBinaryOperator() const;
134 bool isTrailingComment() const;
135
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000136 FormatToken FormatTok;
137
138 TokenType Type;
139
Daniel Jasper729a7432013-02-11 12:36:37 +0000140 unsigned SpacesRequiredBefore;
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000141 bool CanBreakBefore;
142 bool MustBreakBefore;
143
144 bool ClosesTemplateDeclaration;
145
146 AnnotatedToken *MatchingParen;
147
148 /// \brief Number of parameters, if this is "(", "[" or "<".
149 ///
150 /// This is initialized to 1 as we don't need to distinguish functions with
151 /// 0 parameters from functions with 1 parameter. Thus, we can simply count
152 /// the number of commas.
153 unsigned ParameterCount;
154
155 /// \brief The total length of the line up to and including this token.
156 unsigned TotalLength;
157
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000158 /// \brief The length of following tokens until the next natural split point,
159 /// or the next token that can be broken.
160 unsigned UnbreakableTailLength;
161
Daniel Jasper01786732013-02-04 07:21:18 +0000162 // FIXME: Come up with a 'cleaner' concept.
163 /// \brief The binding strength of a token. This is a combined value of
164 /// operator precedence, parenthesis nesting, etc.
165 unsigned BindingStrength;
166
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000167 /// \brief Penalty for inserting a line break before this token.
168 unsigned SplitPenalty;
169
Daniel Jasper63d7ced2013-02-05 10:07:47 +0000170 /// \brief If this is the first ObjC selector name in an ObjC method
171 /// definition or call, this contains the length of the longest name.
172 unsigned LongestObjCSelectorName;
173
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000174 std::vector<AnnotatedToken> Children;
175 AnnotatedToken *Parent;
176
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000177 /// \brief Stores the number of required fake parentheses and the
178 /// corresponding operator precedence.
179 ///
180 /// If multiple fake parentheses start at a token, this vector stores them in
181 /// reverse order, i.e. inner fake parenthesis first.
182 SmallVector<prec::Level, 4> FakeLParens;
Daniel Jasper087387a2013-02-08 16:49:27 +0000183 /// \brief Insert this many fake ) after this token for correct indentation.
Daniel Jasper29f123b2013-02-08 15:28:42 +0000184 unsigned FakeRParens;
185
Daniel Jasper24849712013-03-01 16:48:32 +0000186 /// \brief Is this the last "." or "->" in a builder-type call?
187 bool LastInChainOfCalls;
188
Daniel Jasper8ed9f2b2013-04-03 13:36:17 +0000189 /// \brief Is this token part of a \c DeclStmt defining multiple variables?
190 ///
191 /// Only set if \c Type == \c TT_StartOfName.
192 bool PartOfMultiVariableDeclStmt;
193
Daniel Jasperac3223e2013-04-10 09:49:49 +0000194 /// \brief Returns the previous token ignoring comments.
195 AnnotatedToken *getPreviousNoneComment() const;
196
197 /// \brief Returns the next token ignoring comments.
198 const AnnotatedToken *getNextNoneComment() const;
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000199};
200
201class AnnotatedLine {
202public:
203 AnnotatedLine(const UnwrappedLine &Line)
204 : First(Line.Tokens.front()), Level(Line.Level),
205 InPPDirective(Line.InPPDirective),
Daniel Jasper53e72cd2013-05-06 08:27:33 +0000206 MustBeDeclaration(Line.MustBeDeclaration), MightBeFunctionDecl(false),
207 StartsDefinition(false) {
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000208 assert(!Line.Tokens.empty());
209 AnnotatedToken *Current = &First;
210 for (std::list<FormatToken>::const_iterator I = ++Line.Tokens.begin(),
211 E = Line.Tokens.end();
212 I != E; ++I) {
213 Current->Children.push_back(AnnotatedToken(*I));
214 Current->Children[0].Parent = Current;
215 Current = &Current->Children[0];
216 }
217 Last = Current;
218 }
219 AnnotatedLine(const AnnotatedLine &Other)
220 : First(Other.First), Type(Other.Type), Level(Other.Level),
221 InPPDirective(Other.InPPDirective),
Daniel Jasper3c08a812013-02-24 18:54:32 +0000222 MustBeDeclaration(Other.MustBeDeclaration),
Daniel Jasper53e72cd2013-05-06 08:27:33 +0000223 MightBeFunctionDecl(Other.MightBeFunctionDecl),
224 StartsDefinition(Other.StartsDefinition) {
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000225 Last = &First;
226 while (!Last->Children.empty()) {
227 Last->Children[0].Parent = Last;
228 Last = &Last->Children[0];
229 }
230 }
231
232 AnnotatedToken First;
233 AnnotatedToken *Last;
234
235 LineType Type;
236 unsigned Level;
237 bool InPPDirective;
238 bool MustBeDeclaration;
Daniel Jasper3c08a812013-02-24 18:54:32 +0000239 bool MightBeFunctionDecl;
Daniel Jasper53e72cd2013-05-06 08:27:33 +0000240 bool StartsDefinition;
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000241};
242
243inline prec::Level getPrecedence(const AnnotatedToken &Tok) {
244 return getBinOpPrecedence(Tok.FormatTok.Tok.getKind(), true, true);
245}
246
247/// \brief Determines extra information about the tokens comprising an
248/// \c UnwrappedLine.
249class TokenAnnotator {
250public:
Nico Weberc2e6d2a2013-02-11 15:32:15 +0000251 TokenAnnotator(const FormatStyle &Style, SourceManager &SourceMgr, Lexer &Lex,
252 IdentifierInfo &Ident_in)
253 : Style(Style), SourceMgr(SourceMgr), Lex(Lex), Ident_in(Ident_in) {
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000254 }
255
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000256 void annotate(AnnotatedLine &Line);
257 void calculateFormattingInformation(AnnotatedLine &Line);
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000258
259private:
260 /// \brief Calculate the penalty for splitting before \c Tok.
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000261 unsigned splitPenalty(const AnnotatedLine &Line, const AnnotatedToken &Tok);
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000262
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000263 bool spaceRequiredBetween(const AnnotatedLine &Line,
264 const AnnotatedToken &Left,
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000265 const AnnotatedToken &Right);
266
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000267 bool spaceRequiredBefore(const AnnotatedLine &Line,
268 const AnnotatedToken &Tok);
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000269
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000270 bool canBreakBefore(const AnnotatedLine &Line, const AnnotatedToken &Right);
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000271
Daniel Jasperbf71ba22013-04-08 20:33:42 +0000272 void printDebugInfo(const AnnotatedLine &Line);
273
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000274 void calculateUnbreakableTailLengths(AnnotatedLine &Line);
275
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000276 const FormatStyle &Style;
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000277 SourceManager &SourceMgr;
278 Lexer &Lex;
Nico Weberc2e6d2a2013-02-11 15:32:15 +0000279
280 // Contextual keywords:
281 IdentifierInfo &Ident_in;
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000282};
283
Daniel Jasper32d28ee2013-01-29 21:01:14 +0000284} // end namespace format
285} // end namespace clang
286
287#endif // LLVM_CLANG_FORMAT_TOKEN_ANNOTATOR_H