blob: f42e371830b3d2d4a58075a0487ecbbf6f7dc780 [file] [log] [blame]
Daniel Jasper6fe2f002013-04-25 08:56:26 +00001//===--- WhitespaceManager.h - Format C++ code ------------------*- C++ -*-===//
Alexander Kornienkocb45bc12013-04-15 14:28:00 +00002//
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 WhitespaceManager class manages whitespace around tokens and their
12/// replacements.
13///
14//===----------------------------------------------------------------------===//
15
Benjamin Kramer2f5db8b2014-08-13 16:25:19 +000016#ifndef LLVM_CLANG_LIB_FORMAT_WHITESPACEMANAGER_H
17#define LLVM_CLANG_LIB_FORMAT_WHITESPACEMANAGER_H
Alexander Kornienkocb45bc12013-04-15 14:28:00 +000018
19#include "TokenAnnotator.h"
20#include "clang/Basic/SourceManager.h"
21#include "clang/Format/Format.h"
22#include <string>
23
24namespace clang {
25namespace format {
26
27/// \brief Manages the whitespaces around tokens and their replacements.
28///
29/// This includes special handling for certain constructs, e.g. the alignment of
30/// trailing line comments.
Manuel Klimek4fe43002013-05-22 12:51:29 +000031///
32/// To guarantee correctness of alignment operations, the \c WhitespaceManager
33/// must be informed about every token in the source file; for each token, there
34/// must be exactly one call to either \c replaceWhitespace or
35/// \c addUntouchableToken.
36///
37/// There may be multiple calls to \c breakToken for a given token.
Alexander Kornienkocb45bc12013-04-15 14:28:00 +000038class WhitespaceManager {
39public:
Eric Liu635423e2016-04-28 07:52:03 +000040 WhitespaceManager(const SourceManager &SourceMgr, const FormatStyle &Style,
Alexander Kornienko9e649af2013-09-11 12:25:57 +000041 bool UseCRLF)
42 : SourceMgr(SourceMgr), Style(Style), UseCRLF(UseCRLF) {}
Alexander Kornienkocb45bc12013-04-15 14:28:00 +000043
44 /// \brief Replaces the whitespace in front of \p Tok. Only call once for
45 /// each \c AnnotatedToken.
Manuel Klimek71814b42013-10-11 21:25:45 +000046 void replaceWhitespace(FormatToken &Tok, unsigned Newlines,
Alexander Kornienko3c3d09c2013-09-27 16:14:22 +000047 unsigned IndentLevel, unsigned Spaces,
48 unsigned StartOfTokenColumn,
Manuel Klimek4fe43002013-05-22 12:51:29 +000049 bool InPPDirective = false);
Alexander Kornienkocb45bc12013-04-15 14:28:00 +000050
Alp Tokerf6a24ce2013-12-05 16:25:25 +000051 /// \brief Adds information about an unchangeable token's whitespace.
Alexander Kornienkocb45bc12013-04-15 14:28:00 +000052 ///
Manuel Klimek4fe43002013-05-22 12:51:29 +000053 /// Needs to be called for every token for which \c replaceWhitespace
54 /// was not called.
55 void addUntouchableToken(const FormatToken &Tok, bool InPPDirective);
Alexander Kornienkocb45bc12013-04-15 14:28:00 +000056
Alexander Kornienko555efc32013-06-11 16:01:49 +000057 /// \brief Inserts or replaces whitespace in the middle of a token.
Alexander Kornienkocb45bc12013-04-15 14:28:00 +000058 ///
Alexander Kornienko555efc32013-06-11 16:01:49 +000059 /// Inserts \p PreviousPostfix, \p Newlines, \p Spaces and \p CurrentPrefix
60 /// (in this order) at \p Offset inside \p Tok, replacing \p ReplaceChars
61 /// characters.
Alexander Kornienkocb45bc12013-04-15 14:28:00 +000062 ///
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +000063 /// Note: \p Spaces can be negative to retain information about initial
64 /// relative column offset between a line of a block comment and the start of
65 /// the comment. This negative offset may be compensated by trailing comment
66 /// alignment here. In all other cases negative \p Spaces will be truncated to
67 /// 0.
68 ///
Alexander Kornienko555efc32013-06-11 16:01:49 +000069 /// When \p InPPDirective is true, escaped newlines are inserted. \p Spaces is
70 /// used to align backslashes correctly.
71 void replaceWhitespaceInToken(const FormatToken &Tok, unsigned Offset,
72 unsigned ReplaceChars,
73 StringRef PreviousPostfix,
74 StringRef CurrentPrefix, bool InPPDirective,
Alexander Kornienko3c3d09c2013-09-27 16:14:22 +000075 unsigned Newlines, unsigned IndentLevel,
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +000076 int Spaces);
Alexander Kornienkocb45bc12013-04-15 14:28:00 +000077
78 /// \brief Returns all the \c Replacements created during formatting.
79 const tooling::Replacements &generateReplacements();
80
Manuel Klimek4fe43002013-05-22 12:51:29 +000081 /// \brief Represents a change before a token, a break inside a token,
82 /// or the layout of an unchanged token (or whitespace within).
83 struct Change {
84 /// \brief Functor to sort changes in original source order.
85 class IsBeforeInFile {
Daniel Jasper3ac9b9e2013-07-08 14:34:09 +000086 public:
Manuel Klimek4fe43002013-05-22 12:51:29 +000087 IsBeforeInFile(const SourceManager &SourceMgr) : SourceMgr(SourceMgr) {}
88 bool operator()(const Change &C1, const Change &C2) const;
Alexander Kornienkocb45bc12013-04-15 14:28:00 +000089
Daniel Jasper3ac9b9e2013-07-08 14:34:09 +000090 private:
Manuel Klimek4fe43002013-05-22 12:51:29 +000091 const SourceManager &SourceMgr;
92 };
93
94 Change() {}
95
96 /// \brief Creates a \c Change.
97 ///
98 /// The generated \c Change will replace the characters at
99 /// \p OriginalWhitespaceRange with a concatenation of
100 /// \p PreviousLinePostfix, \p NewlinesBefore line breaks, \p Spaces spaces
101 /// and \p CurrentLinePrefix.
102 ///
103 /// \p StartOfTokenColumn and \p InPPDirective will be used to lay out
104 /// trailing comments and escaped newlines.
Craig Toppere335f252015-10-04 04:53:55 +0000105 Change(bool CreateReplacement, SourceRange OriginalWhitespaceRange,
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +0000106 unsigned IndentLevel, int Spaces, unsigned StartOfTokenColumn,
Manuel Klimek4fe43002013-05-22 12:51:29 +0000107 unsigned NewlinesBefore, StringRef PreviousLinePostfix,
108 StringRef CurrentLinePrefix, tok::TokenKind Kind,
Benjamin Kramerdab50462016-01-11 16:27:16 +0000109 bool ContinuesPPDirective, bool IsStartOfDeclName,
110 bool IsInsideToken);
Manuel Klimek4fe43002013-05-22 12:51:29 +0000111
112 bool CreateReplacement;
113 // Changes might be in the middle of a token, so we cannot just keep the
114 // FormatToken around to query its information.
115 SourceRange OriginalWhitespaceRange;
116 unsigned StartOfTokenColumn;
117 unsigned NewlinesBefore;
118 std::string PreviousLinePostfix;
119 std::string CurrentLinePrefix;
120 // The kind of the token whose whitespace this change replaces, or in which
121 // this change inserts whitespace.
122 // FIXME: Currently this is not set correctly for breaks inside comments, as
123 // the \c BreakableToken is still doing its own alignment.
124 tok::TokenKind Kind;
125 bool ContinuesPPDirective;
Daniel Jaspere12597c2015-10-01 10:06:54 +0000126 bool IsStartOfDeclName;
Manuel Klimek4fe43002013-05-22 12:51:29 +0000127
Alexander Kornienko3c3d09c2013-09-27 16:14:22 +0000128 // The number of nested blocks the token is in. This is used to add tabs
129 // only for the indentation, and not for alignment, when
130 // UseTab = US_ForIndentation.
131 unsigned IndentLevel;
132
Manuel Klimek4fe43002013-05-22 12:51:29 +0000133 // The number of spaces in front of the token or broken part of the token.
134 // This will be adapted when aligning tokens.
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +0000135 // Can be negative to retain information about the initial relative offset
136 // of the lines in a block comment. This is used when aligning trailing
137 // comments. Uncompensated negative offset is truncated to 0.
138 int Spaces;
Manuel Klimek4fe43002013-05-22 12:51:29 +0000139
Benjamin Kramerdab50462016-01-11 16:27:16 +0000140 // If this change is inside of a token but not at the start of the token or
141 // directly after a newline.
142 bool IsInsideToken;
143
Manuel Klimek4fe43002013-05-22 12:51:29 +0000144 // \c IsTrailingComment, \c TokenLength, \c PreviousEndOfTokenColumn and
145 // \c EscapedNewlineColumn will be calculated in
146 // \c calculateLineBreakInformation.
147 bool IsTrailingComment;
148 unsigned TokenLength;
149 unsigned PreviousEndOfTokenColumn;
150 unsigned EscapedNewlineColumn;
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +0000151
152 // These fields are used to retain correct relative line indentation in a
153 // block comment when aligning trailing comments.
154 //
155 // If this Change represents a continuation of a block comment,
156 // \c StartOfBlockComment is pointer to the first Change in the block
157 // comment. \c IndentationOffset is a relative column offset to this
158 // change, so that the correct column can be reconstructed at the end of
159 // the alignment process.
160 const Change *StartOfBlockComment;
161 int IndentationOffset;
Manuel Klimek4fe43002013-05-22 12:51:29 +0000162 };
163
Daniel Jasperec90e512015-12-01 12:00:43 +0000164private:
Manuel Klimek4fe43002013-05-22 12:51:29 +0000165 /// \brief Calculate \c IsTrailingComment, \c TokenLength for the last tokens
166 /// or token parts in a line and \c PreviousEndOfTokenColumn and
167 /// \c EscapedNewlineColumn for the first tokens or token parts in a line.
168 void calculateLineBreakInformation();
169
Daniel Jaspera44991332015-04-29 13:06:49 +0000170 /// \brief Align consecutive assignments over all \c Changes.
171 void alignConsecutiveAssignments();
172
Daniel Jaspere12597c2015-10-01 10:06:54 +0000173 /// \brief Align consecutive declarations over all \c Changes.
174 void alignConsecutiveDeclarations();
175
Manuel Klimek4fe43002013-05-22 12:51:29 +0000176 /// \brief Align trailing comments over all \c Changes.
177 void alignTrailingComments();
178
179 /// \brief Align trailing comments from change \p Start to change \p End at
180 /// the specified \p Column.
181 void alignTrailingComments(unsigned Start, unsigned End, unsigned Column);
182
183 /// \brief Align escaped newlines over all \c Changes.
Daniel Jasper6fe2f002013-04-25 08:56:26 +0000184 void alignEscapedNewlines();
Daniel Jasper770eb7c2013-04-24 06:33:59 +0000185
Manuel Klimek4fe43002013-05-22 12:51:29 +0000186 /// \brief Align escaped newlines from change \p Start to change \p End at
187 /// the specified \p Column.
188 void alignEscapedNewlines(unsigned Start, unsigned End, unsigned Column);
189
190 /// \brief Fill \c Replaces with the replacements for all effective changes.
191 void generateChanges();
192
193 /// \brief Stores \p Text as the replacement for the whitespace in \p Range.
Craig Toppere335f252015-10-04 04:53:55 +0000194 void storeReplacement(SourceRange Range, StringRef Text);
Alexander Kornienko9e649af2013-09-11 12:25:57 +0000195 void appendNewlineText(std::string &Text, unsigned Newlines);
196 void appendNewlineText(std::string &Text, unsigned Newlines,
197 unsigned PreviousEndOfTokenColumn,
198 unsigned EscapedNewlineColumn);
Alexander Kornienko3c3d09c2013-09-27 16:14:22 +0000199 void appendIndentText(std::string &Text, unsigned IndentLevel,
200 unsigned Spaces, unsigned WhitespaceStartColumn);
Manuel Klimekb9eae4c2013-05-13 09:22:11 +0000201
Manuel Klimek4fe43002013-05-22 12:51:29 +0000202 SmallVector<Change, 16> Changes;
Eric Liu635423e2016-04-28 07:52:03 +0000203 const SourceManager &SourceMgr;
Alexander Kornienkocb45bc12013-04-15 14:28:00 +0000204 tooling::Replacements Replaces;
205 const FormatStyle &Style;
Alexander Kornienko9e649af2013-09-11 12:25:57 +0000206 bool UseCRLF;
Alexander Kornienkocb45bc12013-04-15 14:28:00 +0000207};
208
209} // namespace format
210} // namespace clang
211
Benjamin Kramer2f5db8b2014-08-13 16:25:19 +0000212#endif