Daniel Jasper | 6fe2f00 | 2013-04-25 08:56:26 +0000 | [diff] [blame] | 1 | //===--- WhitespaceManager.h - Format C++ code ------------------*- C++ -*-===// |
Alexander Kornienko | cb45bc1 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 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 WhitespaceManager class manages whitespace around tokens and their |
| 12 | /// replacements. |
| 13 | /// |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Benjamin Kramer | 2f5db8b | 2014-08-13 16:25:19 +0000 | [diff] [blame] | 16 | #ifndef LLVM_CLANG_LIB_FORMAT_WHITESPACEMANAGER_H |
| 17 | #define LLVM_CLANG_LIB_FORMAT_WHITESPACEMANAGER_H |
Alexander Kornienko | cb45bc1 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 18 | |
| 19 | #include "TokenAnnotator.h" |
| 20 | #include "clang/Basic/SourceManager.h" |
| 21 | #include "clang/Format/Format.h" |
| 22 | #include <string> |
| 23 | |
| 24 | namespace clang { |
| 25 | namespace 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 Klimek | 4fe4300 | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 31 | /// |
| 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 Kornienko | cb45bc1 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 38 | class WhitespaceManager { |
| 39 | public: |
Eric Liu | 635423e | 2016-04-28 07:52:03 +0000 | [diff] [blame] | 40 | WhitespaceManager(const SourceManager &SourceMgr, const FormatStyle &Style, |
Alexander Kornienko | 9e649af | 2013-09-11 12:25:57 +0000 | [diff] [blame] | 41 | bool UseCRLF) |
| 42 | : SourceMgr(SourceMgr), Style(Style), UseCRLF(UseCRLF) {} |
Alexander Kornienko | cb45bc1 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 43 | |
Manuel Klimek | 71814b4 | 2013-10-11 21:25:45 +0000 | [diff] [blame] | 44 | /// \brief Prepares the \c WhitespaceManager for another run. |
| 45 | void reset(); |
| 46 | |
Alexander Kornienko | cb45bc1 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 47 | /// \brief Replaces the whitespace in front of \p Tok. Only call once for |
| 48 | /// each \c AnnotatedToken. |
Manuel Klimek | 71814b4 | 2013-10-11 21:25:45 +0000 | [diff] [blame] | 49 | void replaceWhitespace(FormatToken &Tok, unsigned Newlines, |
Alexander Kornienko | 3c3d09c | 2013-09-27 16:14:22 +0000 | [diff] [blame] | 50 | unsigned IndentLevel, unsigned Spaces, |
| 51 | unsigned StartOfTokenColumn, |
Manuel Klimek | 4fe4300 | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 52 | bool InPPDirective = false); |
Alexander Kornienko | cb45bc1 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 53 | |
Alp Toker | f6a24ce | 2013-12-05 16:25:25 +0000 | [diff] [blame] | 54 | /// \brief Adds information about an unchangeable token's whitespace. |
Alexander Kornienko | cb45bc1 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 55 | /// |
Manuel Klimek | 4fe4300 | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 56 | /// Needs to be called for every token for which \c replaceWhitespace |
| 57 | /// was not called. |
| 58 | void addUntouchableToken(const FormatToken &Tok, bool InPPDirective); |
Alexander Kornienko | cb45bc1 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 59 | |
Alexander Kornienko | 555efc3 | 2013-06-11 16:01:49 +0000 | [diff] [blame] | 60 | /// \brief Inserts or replaces whitespace in the middle of a token. |
Alexander Kornienko | cb45bc1 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 61 | /// |
Alexander Kornienko | 555efc3 | 2013-06-11 16:01:49 +0000 | [diff] [blame] | 62 | /// Inserts \p PreviousPostfix, \p Newlines, \p Spaces and \p CurrentPrefix |
| 63 | /// (in this order) at \p Offset inside \p Tok, replacing \p ReplaceChars |
| 64 | /// characters. |
Alexander Kornienko | cb45bc1 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 65 | /// |
Alexander Kornienko | 67d9c8c | 2014-04-17 16:12:46 +0000 | [diff] [blame] | 66 | /// Note: \p Spaces can be negative to retain information about initial |
| 67 | /// relative column offset between a line of a block comment and the start of |
| 68 | /// the comment. This negative offset may be compensated by trailing comment |
| 69 | /// alignment here. In all other cases negative \p Spaces will be truncated to |
| 70 | /// 0. |
| 71 | /// |
Alexander Kornienko | 555efc3 | 2013-06-11 16:01:49 +0000 | [diff] [blame] | 72 | /// When \p InPPDirective is true, escaped newlines are inserted. \p Spaces is |
| 73 | /// used to align backslashes correctly. |
| 74 | void replaceWhitespaceInToken(const FormatToken &Tok, unsigned Offset, |
| 75 | unsigned ReplaceChars, |
| 76 | StringRef PreviousPostfix, |
| 77 | StringRef CurrentPrefix, bool InPPDirective, |
Alexander Kornienko | 3c3d09c | 2013-09-27 16:14:22 +0000 | [diff] [blame] | 78 | unsigned Newlines, unsigned IndentLevel, |
Alexander Kornienko | 67d9c8c | 2014-04-17 16:12:46 +0000 | [diff] [blame] | 79 | int Spaces); |
Alexander Kornienko | cb45bc1 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 80 | |
| 81 | /// \brief Returns all the \c Replacements created during formatting. |
| 82 | const tooling::Replacements &generateReplacements(); |
| 83 | |
Manuel Klimek | 4fe4300 | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 84 | /// \brief Represents a change before a token, a break inside a token, |
| 85 | /// or the layout of an unchanged token (or whitespace within). |
| 86 | struct Change { |
| 87 | /// \brief Functor to sort changes in original source order. |
| 88 | class IsBeforeInFile { |
Daniel Jasper | 3ac9b9e | 2013-07-08 14:34:09 +0000 | [diff] [blame] | 89 | public: |
Manuel Klimek | 4fe4300 | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 90 | IsBeforeInFile(const SourceManager &SourceMgr) : SourceMgr(SourceMgr) {} |
| 91 | bool operator()(const Change &C1, const Change &C2) const; |
Alexander Kornienko | cb45bc1 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 92 | |
Daniel Jasper | 3ac9b9e | 2013-07-08 14:34:09 +0000 | [diff] [blame] | 93 | private: |
Manuel Klimek | 4fe4300 | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 94 | const SourceManager &SourceMgr; |
| 95 | }; |
| 96 | |
| 97 | Change() {} |
| 98 | |
| 99 | /// \brief Creates a \c Change. |
| 100 | /// |
| 101 | /// The generated \c Change will replace the characters at |
| 102 | /// \p OriginalWhitespaceRange with a concatenation of |
| 103 | /// \p PreviousLinePostfix, \p NewlinesBefore line breaks, \p Spaces spaces |
| 104 | /// and \p CurrentLinePrefix. |
| 105 | /// |
| 106 | /// \p StartOfTokenColumn and \p InPPDirective will be used to lay out |
| 107 | /// trailing comments and escaped newlines. |
Craig Topper | e335f25 | 2015-10-04 04:53:55 +0000 | [diff] [blame] | 108 | Change(bool CreateReplacement, SourceRange OriginalWhitespaceRange, |
Alexander Kornienko | 67d9c8c | 2014-04-17 16:12:46 +0000 | [diff] [blame] | 109 | unsigned IndentLevel, int Spaces, unsigned StartOfTokenColumn, |
Manuel Klimek | 4fe4300 | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 110 | unsigned NewlinesBefore, StringRef PreviousLinePostfix, |
| 111 | StringRef CurrentLinePrefix, tok::TokenKind Kind, |
Benjamin Kramer | dab5046 | 2016-01-11 16:27:16 +0000 | [diff] [blame] | 112 | bool ContinuesPPDirective, bool IsStartOfDeclName, |
| 113 | bool IsInsideToken); |
Manuel Klimek | 4fe4300 | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 114 | |
| 115 | bool CreateReplacement; |
| 116 | // Changes might be in the middle of a token, so we cannot just keep the |
| 117 | // FormatToken around to query its information. |
| 118 | SourceRange OriginalWhitespaceRange; |
| 119 | unsigned StartOfTokenColumn; |
| 120 | unsigned NewlinesBefore; |
| 121 | std::string PreviousLinePostfix; |
| 122 | std::string CurrentLinePrefix; |
| 123 | // The kind of the token whose whitespace this change replaces, or in which |
| 124 | // this change inserts whitespace. |
| 125 | // FIXME: Currently this is not set correctly for breaks inside comments, as |
| 126 | // the \c BreakableToken is still doing its own alignment. |
| 127 | tok::TokenKind Kind; |
| 128 | bool ContinuesPPDirective; |
Daniel Jasper | e12597c | 2015-10-01 10:06:54 +0000 | [diff] [blame] | 129 | bool IsStartOfDeclName; |
Manuel Klimek | 4fe4300 | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 130 | |
Alexander Kornienko | 3c3d09c | 2013-09-27 16:14:22 +0000 | [diff] [blame] | 131 | // The number of nested blocks the token is in. This is used to add tabs |
| 132 | // only for the indentation, and not for alignment, when |
| 133 | // UseTab = US_ForIndentation. |
| 134 | unsigned IndentLevel; |
| 135 | |
Manuel Klimek | 4fe4300 | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 136 | // The number of spaces in front of the token or broken part of the token. |
| 137 | // This will be adapted when aligning tokens. |
Alexander Kornienko | 67d9c8c | 2014-04-17 16:12:46 +0000 | [diff] [blame] | 138 | // Can be negative to retain information about the initial relative offset |
| 139 | // of the lines in a block comment. This is used when aligning trailing |
| 140 | // comments. Uncompensated negative offset is truncated to 0. |
| 141 | int Spaces; |
Manuel Klimek | 4fe4300 | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 142 | |
Benjamin Kramer | dab5046 | 2016-01-11 16:27:16 +0000 | [diff] [blame] | 143 | // If this change is inside of a token but not at the start of the token or |
| 144 | // directly after a newline. |
| 145 | bool IsInsideToken; |
| 146 | |
Manuel Klimek | 4fe4300 | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 147 | // \c IsTrailingComment, \c TokenLength, \c PreviousEndOfTokenColumn and |
| 148 | // \c EscapedNewlineColumn will be calculated in |
| 149 | // \c calculateLineBreakInformation. |
| 150 | bool IsTrailingComment; |
| 151 | unsigned TokenLength; |
| 152 | unsigned PreviousEndOfTokenColumn; |
| 153 | unsigned EscapedNewlineColumn; |
Alexander Kornienko | 67d9c8c | 2014-04-17 16:12:46 +0000 | [diff] [blame] | 154 | |
| 155 | // These fields are used to retain correct relative line indentation in a |
| 156 | // block comment when aligning trailing comments. |
| 157 | // |
| 158 | // If this Change represents a continuation of a block comment, |
| 159 | // \c StartOfBlockComment is pointer to the first Change in the block |
| 160 | // comment. \c IndentationOffset is a relative column offset to this |
| 161 | // change, so that the correct column can be reconstructed at the end of |
| 162 | // the alignment process. |
| 163 | const Change *StartOfBlockComment; |
| 164 | int IndentationOffset; |
Manuel Klimek | 4fe4300 | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 165 | }; |
| 166 | |
Daniel Jasper | ec90e51 | 2015-12-01 12:00:43 +0000 | [diff] [blame] | 167 | private: |
Manuel Klimek | 4fe4300 | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 168 | /// \brief Calculate \c IsTrailingComment, \c TokenLength for the last tokens |
| 169 | /// or token parts in a line and \c PreviousEndOfTokenColumn and |
| 170 | /// \c EscapedNewlineColumn for the first tokens or token parts in a line. |
| 171 | void calculateLineBreakInformation(); |
| 172 | |
Daniel Jasper | a4499133 | 2015-04-29 13:06:49 +0000 | [diff] [blame] | 173 | /// \brief Align consecutive assignments over all \c Changes. |
| 174 | void alignConsecutiveAssignments(); |
| 175 | |
Daniel Jasper | e12597c | 2015-10-01 10:06:54 +0000 | [diff] [blame] | 176 | /// \brief Align consecutive declarations over all \c Changes. |
| 177 | void alignConsecutiveDeclarations(); |
| 178 | |
Manuel Klimek | 4fe4300 | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 179 | /// \brief Align trailing comments over all \c Changes. |
| 180 | void alignTrailingComments(); |
| 181 | |
| 182 | /// \brief Align trailing comments from change \p Start to change \p End at |
| 183 | /// the specified \p Column. |
| 184 | void alignTrailingComments(unsigned Start, unsigned End, unsigned Column); |
| 185 | |
| 186 | /// \brief Align escaped newlines over all \c Changes. |
Daniel Jasper | 6fe2f00 | 2013-04-25 08:56:26 +0000 | [diff] [blame] | 187 | void alignEscapedNewlines(); |
Daniel Jasper | 770eb7c | 2013-04-24 06:33:59 +0000 | [diff] [blame] | 188 | |
Manuel Klimek | 4fe4300 | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 189 | /// \brief Align escaped newlines from change \p Start to change \p End at |
| 190 | /// the specified \p Column. |
| 191 | void alignEscapedNewlines(unsigned Start, unsigned End, unsigned Column); |
| 192 | |
| 193 | /// \brief Fill \c Replaces with the replacements for all effective changes. |
| 194 | void generateChanges(); |
| 195 | |
| 196 | /// \brief Stores \p Text as the replacement for the whitespace in \p Range. |
Craig Topper | e335f25 | 2015-10-04 04:53:55 +0000 | [diff] [blame] | 197 | void storeReplacement(SourceRange Range, StringRef Text); |
Alexander Kornienko | 9e649af | 2013-09-11 12:25:57 +0000 | [diff] [blame] | 198 | void appendNewlineText(std::string &Text, unsigned Newlines); |
| 199 | void appendNewlineText(std::string &Text, unsigned Newlines, |
| 200 | unsigned PreviousEndOfTokenColumn, |
| 201 | unsigned EscapedNewlineColumn); |
Alexander Kornienko | 3c3d09c | 2013-09-27 16:14:22 +0000 | [diff] [blame] | 202 | void appendIndentText(std::string &Text, unsigned IndentLevel, |
| 203 | unsigned Spaces, unsigned WhitespaceStartColumn); |
Manuel Klimek | b9eae4c | 2013-05-13 09:22:11 +0000 | [diff] [blame] | 204 | |
Manuel Klimek | 4fe4300 | 2013-05-22 12:51:29 +0000 | [diff] [blame] | 205 | SmallVector<Change, 16> Changes; |
Eric Liu | 635423e | 2016-04-28 07:52:03 +0000 | [diff] [blame] | 206 | const SourceManager &SourceMgr; |
Alexander Kornienko | cb45bc1 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 207 | tooling::Replacements Replaces; |
| 208 | const FormatStyle &Style; |
Alexander Kornienko | 9e649af | 2013-09-11 12:25:57 +0000 | [diff] [blame] | 209 | bool UseCRLF; |
Alexander Kornienko | cb45bc1 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 210 | }; |
| 211 | |
| 212 | } // namespace format |
| 213 | } // namespace clang |
| 214 | |
Benjamin Kramer | 2f5db8b | 2014-08-13 16:25:19 +0000 | [diff] [blame] | 215 | #endif |