Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 1 | //===--- BreakableToken.cpp - Format C++ code -----------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | /// |
| 10 | /// \file |
| 11 | /// \brief Contains implementation of BreakableToken class and classes derived |
| 12 | /// from it. |
| 13 | /// |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 16 | #define DEBUG_TYPE "format-token-breaker" |
| 17 | |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 18 | #include "BreakableToken.h" |
Alexander Kornienko | 2b2faa5 | 2013-06-11 16:01:49 +0000 | [diff] [blame] | 19 | #include "clang/Basic/CharInfo.h" |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 20 | #include "clang/Format/Format.h" |
Alexander Kornienko | 919398b | 2013-04-17 17:34:05 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/STLExtras.h" |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 22 | #include "llvm/Support/Debug.h" |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 23 | #include <algorithm> |
| 24 | |
| 25 | namespace clang { |
| 26 | namespace format { |
| 27 | |
Craig Topper | cf1e216 | 2013-06-30 22:44:02 +0000 | [diff] [blame] | 28 | static const char *const Blanks = " \t\v\f"; |
Alexander Kornienko | 8afa39b | 2013-06-20 13:58:37 +0000 | [diff] [blame] | 29 | static bool IsBlank(char C) { |
| 30 | switch (C) { |
Daniel Jasper | 2a409b6 | 2013-07-08 14:34:09 +0000 | [diff] [blame] | 31 | case ' ': |
| 32 | case '\t': |
| 33 | case '\v': |
| 34 | case '\f': |
| 35 | return true; |
| 36 | default: |
| 37 | return false; |
Alexander Kornienko | 8afa39b | 2013-06-20 13:58:37 +0000 | [diff] [blame] | 38 | } |
| 39 | } |
| 40 | |
Craig Topper | b8f7164 | 2013-07-01 03:38:29 +0000 | [diff] [blame] | 41 | static BreakableToken::Split getCommentSplit(StringRef Text, |
| 42 | unsigned ContentStartColumn, |
| 43 | unsigned ColumnLimit, |
Alexander Kornienko | 0b62cc3 | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 44 | unsigned TabWidth, |
Craig Topper | b8f7164 | 2013-07-01 03:38:29 +0000 | [diff] [blame] | 45 | encoding::Encoding Encoding) { |
Alexander Kornienko | 919398b | 2013-04-17 17:34:05 +0000 | [diff] [blame] | 46 | if (ColumnLimit <= ContentStartColumn + 1) |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 47 | return BreakableToken::Split(StringRef::npos, 0); |
Alexander Kornienko | 919398b | 2013-04-17 17:34:05 +0000 | [diff] [blame] | 48 | |
| 49 | unsigned MaxSplit = ColumnLimit - ContentStartColumn + 1; |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 50 | unsigned MaxSplitBytes = 0; |
| 51 | |
| 52 | for (unsigned NumChars = 0; |
Alexander Kornienko | 0b62cc3 | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 53 | NumChars < MaxSplit && MaxSplitBytes < Text.size();) { |
| 54 | unsigned BytesInChar = |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 55 | encoding::getCodePointNumBytes(Text[MaxSplitBytes], Encoding); |
Alexander Kornienko | 0b62cc3 | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 56 | NumChars += |
| 57 | encoding::columnWidthWithTabs(Text.substr(MaxSplitBytes, BytesInChar), |
| 58 | ContentStartColumn, TabWidth, Encoding); |
| 59 | MaxSplitBytes += BytesInChar; |
| 60 | } |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 61 | |
Alexander Kornienko | 8afa39b | 2013-06-20 13:58:37 +0000 | [diff] [blame] | 62 | StringRef::size_type SpaceOffset = Text.find_last_of(Blanks, MaxSplitBytes); |
Alexander Kornienko | 919398b | 2013-04-17 17:34:05 +0000 | [diff] [blame] | 63 | if (SpaceOffset == StringRef::npos || |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 64 | // Don't break at leading whitespace. |
Alexander Kornienko | 8afa39b | 2013-06-20 13:58:37 +0000 | [diff] [blame] | 65 | Text.find_last_not_of(Blanks, SpaceOffset) == StringRef::npos) { |
Manuel Klimek | be9ed77 | 2013-05-29 22:06:18 +0000 | [diff] [blame] | 66 | // Make sure that we don't break at leading whitespace that |
| 67 | // reaches past MaxSplit. |
Alexander Kornienko | 8afa39b | 2013-06-20 13:58:37 +0000 | [diff] [blame] | 68 | StringRef::size_type FirstNonWhitespace = Text.find_first_not_of(Blanks); |
Manuel Klimek | be9ed77 | 2013-05-29 22:06:18 +0000 | [diff] [blame] | 69 | if (FirstNonWhitespace == StringRef::npos) |
| 70 | // If the comment is only whitespace, we cannot split. |
| 71 | return BreakableToken::Split(StringRef::npos, 0); |
Alexander Kornienko | 8afa39b | 2013-06-20 13:58:37 +0000 | [diff] [blame] | 72 | SpaceOffset = Text.find_first_of( |
| 73 | Blanks, std::max<unsigned>(MaxSplitBytes, FirstNonWhitespace)); |
Manuel Klimek | be9ed77 | 2013-05-29 22:06:18 +0000 | [diff] [blame] | 74 | } |
Alexander Kornienko | 919398b | 2013-04-17 17:34:05 +0000 | [diff] [blame] | 75 | if (SpaceOffset != StringRef::npos && SpaceOffset != 0) { |
Alexander Kornienko | 8afa39b | 2013-06-20 13:58:37 +0000 | [diff] [blame] | 76 | StringRef BeforeCut = Text.substr(0, SpaceOffset).rtrim(Blanks); |
| 77 | StringRef AfterCut = Text.substr(SpaceOffset).ltrim(Blanks); |
Alexander Kornienko | 919398b | 2013-04-17 17:34:05 +0000 | [diff] [blame] | 78 | return BreakableToken::Split(BeforeCut.size(), |
| 79 | AfterCut.begin() - BeforeCut.end()); |
| 80 | } |
| 81 | return BreakableToken::Split(StringRef::npos, 0); |
| 82 | } |
| 83 | |
Craig Topper | b8f7164 | 2013-07-01 03:38:29 +0000 | [diff] [blame] | 84 | static BreakableToken::Split getStringSplit(StringRef Text, |
Alexander Kornienko | 2c2f729 | 2013-09-16 20:20:49 +0000 | [diff] [blame] | 85 | unsigned UsedColumns, |
Craig Topper | b8f7164 | 2013-07-01 03:38:29 +0000 | [diff] [blame] | 86 | unsigned ColumnLimit, |
Alexander Kornienko | 0b62cc3 | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 87 | unsigned TabWidth, |
Craig Topper | b8f7164 | 2013-07-01 03:38:29 +0000 | [diff] [blame] | 88 | encoding::Encoding Encoding) { |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 89 | // FIXME: Reduce unit test case. |
| 90 | if (Text.empty()) |
| 91 | return BreakableToken::Split(StringRef::npos, 0); |
Alexander Kornienko | 2c2f729 | 2013-09-16 20:20:49 +0000 | [diff] [blame] | 92 | if (ColumnLimit <= UsedColumns) |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 93 | return BreakableToken::Split(StringRef::npos, 0); |
Alexander Kornienko | 2c2f729 | 2013-09-16 20:20:49 +0000 | [diff] [blame] | 94 | unsigned MaxSplit = std::min<unsigned>( |
| 95 | ColumnLimit - UsedColumns, |
| 96 | encoding::columnWidthWithTabs(Text, UsedColumns, TabWidth, Encoding) - 1); |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 97 | StringRef::size_type SpaceOffset = 0; |
| 98 | StringRef::size_type SlashOffset = 0; |
Alexander Kornienko | f2b2c7d | 2013-06-19 14:22:47 +0000 | [diff] [blame] | 99 | StringRef::size_type WordStartOffset = 0; |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 100 | StringRef::size_type SplitPoint = 0; |
| 101 | for (unsigned Chars = 0;;) { |
| 102 | unsigned Advance; |
| 103 | if (Text[0] == '\\') { |
| 104 | Advance = encoding::getEscapeSequenceLength(Text); |
| 105 | Chars += Advance; |
| 106 | } else { |
| 107 | Advance = encoding::getCodePointNumBytes(Text[0], Encoding); |
Alexander Kornienko | 2c2f729 | 2013-09-16 20:20:49 +0000 | [diff] [blame] | 108 | Chars += encoding::columnWidthWithTabs( |
| 109 | Text.substr(0, Advance), UsedColumns + Chars, TabWidth, Encoding); |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 110 | } |
| 111 | |
| 112 | if (Chars > MaxSplit) |
| 113 | break; |
| 114 | |
Alexander Kornienko | 8afa39b | 2013-06-20 13:58:37 +0000 | [diff] [blame] | 115 | if (IsBlank(Text[0])) |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 116 | SpaceOffset = SplitPoint; |
| 117 | if (Text[0] == '/') |
| 118 | SlashOffset = SplitPoint; |
Alexander Kornienko | 8afa39b | 2013-06-20 13:58:37 +0000 | [diff] [blame] | 119 | if (Advance == 1 && !isAlphanumeric(Text[0])) |
Alexander Kornienko | f2b2c7d | 2013-06-19 14:22:47 +0000 | [diff] [blame] | 120 | WordStartOffset = SplitPoint; |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 121 | |
| 122 | SplitPoint += Advance; |
| 123 | Text = Text.substr(Advance); |
| 124 | } |
| 125 | |
| 126 | if (SpaceOffset != 0) |
| 127 | return BreakableToken::Split(SpaceOffset + 1, 0); |
| 128 | if (SlashOffset != 0) |
| 129 | return BreakableToken::Split(SlashOffset + 1, 0); |
Alexander Kornienko | f2b2c7d | 2013-06-19 14:22:47 +0000 | [diff] [blame] | 130 | if (WordStartOffset != 0) |
| 131 | return BreakableToken::Split(WordStartOffset + 1, 0); |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 132 | if (SplitPoint != 0) |
| 133 | return BreakableToken::Split(SplitPoint, 0); |
| 134 | return BreakableToken::Split(StringRef::npos, 0); |
Alexander Kornienko | 919398b | 2013-04-17 17:34:05 +0000 | [diff] [blame] | 135 | } |
| 136 | |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 137 | unsigned BreakableSingleLineToken::getLineCount() const { return 1; } |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 138 | |
Alexander Kornienko | 2785b9a | 2013-06-07 16:02:52 +0000 | [diff] [blame] | 139 | unsigned BreakableSingleLineToken::getLineLengthAfterSplit( |
| 140 | unsigned LineIndex, unsigned Offset, StringRef::size_type Length) const { |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 141 | return StartColumn + Prefix.size() + Postfix.size() + |
Alexander Kornienko | 0b62cc3 | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 142 | encoding::columnWidthWithTabs(Line.substr(Offset, Length), |
| 143 | StartColumn + Prefix.size(), |
| 144 | Style.TabWidth, Encoding); |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 145 | } |
| 146 | |
Alexander Kornienko | 16a0ec6 | 2013-06-14 11:46:10 +0000 | [diff] [blame] | 147 | BreakableSingleLineToken::BreakableSingleLineToken( |
| 148 | const FormatToken &Tok, unsigned StartColumn, StringRef Prefix, |
Alexander Kornienko | 0b62cc3 | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 149 | StringRef Postfix, bool InPPDirective, encoding::Encoding Encoding, |
| 150 | const FormatStyle &Style) |
| 151 | : BreakableToken(Tok, InPPDirective, Encoding, Style), |
| 152 | StartColumn(StartColumn), Prefix(Prefix), Postfix(Postfix) { |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 153 | assert(Tok.TokenText.startswith(Prefix) && Tok.TokenText.endswith(Postfix)); |
| 154 | Line = Tok.TokenText.substr( |
| 155 | Prefix.size(), Tok.TokenText.size() - Prefix.size() - Postfix.size()); |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 156 | } |
| 157 | |
Alexander Kornienko | 2c2f729 | 2013-09-16 20:20:49 +0000 | [diff] [blame] | 158 | BreakableStringLiteral::BreakableStringLiteral( |
| 159 | const FormatToken &Tok, unsigned StartColumn, StringRef Prefix, |
| 160 | StringRef Postfix, bool InPPDirective, encoding::Encoding Encoding, |
| 161 | const FormatStyle &Style) |
| 162 | : BreakableSingleLineToken(Tok, StartColumn, Prefix, Postfix, InPPDirective, |
Alexander Kornienko | 0b62cc3 | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 163 | Encoding, Style) {} |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 164 | |
| 165 | BreakableToken::Split |
| 166 | BreakableStringLiteral::getSplit(unsigned LineIndex, unsigned TailOffset, |
| 167 | unsigned ColumnLimit) const { |
Alexander Kornienko | 2c2f729 | 2013-09-16 20:20:49 +0000 | [diff] [blame] | 168 | return getStringSplit(Line.substr(TailOffset), |
| 169 | StartColumn + Prefix.size() + Postfix.size(), |
| 170 | ColumnLimit, Style.TabWidth, Encoding); |
Alexander Kornienko | 919398b | 2013-04-17 17:34:05 +0000 | [diff] [blame] | 171 | } |
| 172 | |
Alexander Kornienko | 2b2faa5 | 2013-06-11 16:01:49 +0000 | [diff] [blame] | 173 | void BreakableStringLiteral::insertBreak(unsigned LineIndex, |
| 174 | unsigned TailOffset, Split Split, |
Alexander Kornienko | 2b2faa5 | 2013-06-11 16:01:49 +0000 | [diff] [blame] | 175 | WhitespaceManager &Whitespaces) { |
| 176 | Whitespaces.replaceWhitespaceInToken( |
| 177 | Tok, Prefix.size() + TailOffset + Split.first, Split.second, Postfix, |
| 178 | Prefix, InPPDirective, 1, StartColumn); |
| 179 | } |
| 180 | |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 181 | static StringRef getLineCommentPrefix(StringRef Comment) { |
Craig Topper | 3aa29df | 2013-07-15 08:24:27 +0000 | [diff] [blame] | 182 | static const char *const KnownPrefixes[] = { "/// ", "///", "// ", "//" }; |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 183 | for (size_t i = 0, e = llvm::array_lengthof(KnownPrefixes); i != e; ++i) |
Alexander Kornienko | 919398b | 2013-04-17 17:34:05 +0000 | [diff] [blame] | 184 | if (Comment.startswith(KnownPrefixes[i])) |
| 185 | return KnownPrefixes[i]; |
| 186 | return ""; |
| 187 | } |
| 188 | |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 189 | BreakableLineComment::BreakableLineComment(const FormatToken &Token, |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 190 | unsigned StartColumn, |
Alexander Kornienko | 16a0ec6 | 2013-06-14 11:46:10 +0000 | [diff] [blame] | 191 | bool InPPDirective, |
Alexander Kornienko | 0b62cc3 | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 192 | encoding::Encoding Encoding, |
| 193 | const FormatStyle &Style) |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 194 | : BreakableSingleLineToken(Token, StartColumn, |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 195 | getLineCommentPrefix(Token.TokenText), "", |
Alexander Kornienko | 0b62cc3 | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 196 | InPPDirective, Encoding, Style) { |
Alexander Kornienko | 2b2faa5 | 2013-06-11 16:01:49 +0000 | [diff] [blame] | 197 | OriginalPrefix = Prefix; |
| 198 | if (Token.TokenText.size() > Prefix.size() && |
| 199 | isAlphanumeric(Token.TokenText[Prefix.size()])) { |
| 200 | if (Prefix == "//") |
| 201 | Prefix = "// "; |
| 202 | else if (Prefix == "///") |
| 203 | Prefix = "/// "; |
| 204 | } |
| 205 | } |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 206 | |
| 207 | BreakableToken::Split |
| 208 | BreakableLineComment::getSplit(unsigned LineIndex, unsigned TailOffset, |
| 209 | unsigned ColumnLimit) const { |
| 210 | return getCommentSplit(Line.substr(TailOffset), StartColumn + Prefix.size(), |
Alexander Kornienko | 0b62cc3 | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 211 | ColumnLimit, Style.TabWidth, Encoding); |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 212 | } |
| 213 | |
Alexander Kornienko | 2b2faa5 | 2013-06-11 16:01:49 +0000 | [diff] [blame] | 214 | void BreakableLineComment::insertBreak(unsigned LineIndex, unsigned TailOffset, |
Alexander Kornienko | 16a0ec6 | 2013-06-14 11:46:10 +0000 | [diff] [blame] | 215 | Split Split, |
Alexander Kornienko | 2b2faa5 | 2013-06-11 16:01:49 +0000 | [diff] [blame] | 216 | WhitespaceManager &Whitespaces) { |
| 217 | Whitespaces.replaceWhitespaceInToken( |
| 218 | Tok, OriginalPrefix.size() + TailOffset + Split.first, Split.second, |
| 219 | Postfix, Prefix, InPPDirective, 1, StartColumn); |
| 220 | } |
| 221 | |
| 222 | void |
| 223 | BreakableLineComment::replaceWhitespaceBefore(unsigned LineIndex, |
Alexander Kornienko | 2b2faa5 | 2013-06-11 16:01:49 +0000 | [diff] [blame] | 224 | WhitespaceManager &Whitespaces) { |
| 225 | if (OriginalPrefix != Prefix) { |
| 226 | Whitespaces.replaceWhitespaceInToken(Tok, OriginalPrefix.size(), 0, "", "", |
| 227 | false, 0, 1); |
| 228 | } |
| 229 | } |
| 230 | |
Alexander Kornienko | 0089510 | 2013-06-05 14:09:10 +0000 | [diff] [blame] | 231 | BreakableBlockComment::BreakableBlockComment( |
Alexander Kornienko | 0b62cc3 | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 232 | const FormatToken &Token, unsigned StartColumn, |
Alexander Kornienko | 16a0ec6 | 2013-06-14 11:46:10 +0000 | [diff] [blame] | 233 | unsigned OriginalStartColumn, bool FirstInLine, bool InPPDirective, |
Alexander Kornienko | 0b62cc3 | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 234 | encoding::Encoding Encoding, const FormatStyle &Style) |
| 235 | : BreakableToken(Token, InPPDirective, Encoding, Style) { |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 236 | StringRef TokenText(Token.TokenText); |
| 237 | assert(TokenText.startswith("/*") && TokenText.endswith("*/")); |
| 238 | TokenText.substr(2, TokenText.size() - 4).split(Lines, "\n"); |
| 239 | |
| 240 | int IndentDelta = StartColumn - OriginalStartColumn; |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 241 | LeadingWhitespace.resize(Lines.size()); |
| 242 | StartOfLineColumn.resize(Lines.size()); |
Alexander Kornienko | 1659ded | 2013-07-08 14:12:07 +0000 | [diff] [blame] | 243 | StartOfLineColumn[0] = StartColumn + 2; |
| 244 | for (size_t i = 1; i < Lines.size(); ++i) |
Alexander Kornienko | 0b62cc3 | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 245 | adjustWhitespace(i, IndentDelta); |
Alexander Kornienko | 1659ded | 2013-07-08 14:12:07 +0000 | [diff] [blame] | 246 | |
| 247 | Decoration = "* "; |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 248 | if (Lines.size() == 1 && !FirstInLine) { |
| 249 | // Comments for which FirstInLine is false can start on arbitrary column, |
| 250 | // and available horizontal space can be too small to align consecutive |
| 251 | // lines with the first one. |
| 252 | // FIXME: We could, probably, align them to current indentation level, but |
| 253 | // now we just wrap them without stars. |
Alexander Kornienko | 1659ded | 2013-07-08 14:12:07 +0000 | [diff] [blame] | 254 | Decoration = ""; |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 255 | } |
Alexander Kornienko | 1659ded | 2013-07-08 14:12:07 +0000 | [diff] [blame] | 256 | for (size_t i = 1, e = Lines.size(); i < e && !Decoration.empty(); ++i) { |
| 257 | // If the last line is empty, the closing "*/" will have a star. |
| 258 | if (i + 1 == e && Lines[i].empty()) |
| 259 | break; |
| 260 | while (!Lines[i].startswith(Decoration)) |
| 261 | Decoration = Decoration.substr(0, Decoration.size() - 1); |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 262 | } |
Alexander Kornienko | 1659ded | 2013-07-08 14:12:07 +0000 | [diff] [blame] | 263 | |
| 264 | LastLineNeedsDecoration = true; |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 265 | IndentAtLineBreak = StartOfLineColumn[0] + 1; |
| 266 | for (size_t i = 1; i < Lines.size(); ++i) { |
| 267 | if (Lines[i].empty()) { |
Alexander Kornienko | 1659ded | 2013-07-08 14:12:07 +0000 | [diff] [blame] | 268 | if (i + 1 == Lines.size()) { |
| 269 | // Empty last line means that we already have a star as a part of the |
| 270 | // trailing */. We also need to preserve whitespace, so that */ is |
| 271 | // correctly indented. |
| 272 | LastLineNeedsDecoration = false; |
| 273 | } else if (Decoration.empty()) { |
| 274 | // For all other lines, set the start column to 0 if they're empty, so |
| 275 | // we do not insert trailing whitespace anywhere. |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 276 | StartOfLineColumn[i] = 0; |
Alexander Kornienko | 1659ded | 2013-07-08 14:12:07 +0000 | [diff] [blame] | 277 | } |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 278 | continue; |
| 279 | } |
Alexander Kornienko | 1659ded | 2013-07-08 14:12:07 +0000 | [diff] [blame] | 280 | // The first line already excludes the star. |
| 281 | // For all other lines, adjust the line to exclude the star and |
| 282 | // (optionally) the first whitespace. |
| 283 | StartOfLineColumn[i] += Decoration.size(); |
| 284 | Lines[i] = Lines[i].substr(Decoration.size()); |
| 285 | LeadingWhitespace[i] += Decoration.size(); |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 286 | IndentAtLineBreak = std::min<int>(IndentAtLineBreak, StartOfLineColumn[i]); |
| 287 | } |
Daniel Jasper | cb4b40b | 2013-05-30 17:27:48 +0000 | [diff] [blame] | 288 | IndentAtLineBreak = std::max<unsigned>(IndentAtLineBreak, Decoration.size()); |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 289 | DEBUG({ |
Alexander Kornienko | 1659ded | 2013-07-08 14:12:07 +0000 | [diff] [blame] | 290 | llvm::dbgs() << "IndentAtLineBreak " << IndentAtLineBreak << "\n"; |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 291 | for (size_t i = 0; i < Lines.size(); ++i) { |
| 292 | llvm::dbgs() << i << " |" << Lines[i] << "| " << LeadingWhitespace[i] |
| 293 | << "\n"; |
| 294 | } |
| 295 | }); |
| 296 | } |
| 297 | |
Alexander Kornienko | 0b62cc3 | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 298 | void BreakableBlockComment::adjustWhitespace(unsigned LineIndex, |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 299 | int IndentDelta) { |
Alexander Kornienko | 16a0ec6 | 2013-06-14 11:46:10 +0000 | [diff] [blame] | 300 | // When in a preprocessor directive, the trailing backslash in a block comment |
| 301 | // is not needed, but can serve a purpose of uniformity with necessary escaped |
| 302 | // newlines outside the comment. In this case we remove it here before |
| 303 | // trimming the trailing whitespace. The backslash will be re-added later when |
| 304 | // inserting a line break. |
| 305 | size_t EndOfPreviousLine = Lines[LineIndex - 1].size(); |
| 306 | if (InPPDirective && Lines[LineIndex - 1].endswith("\\")) |
| 307 | --EndOfPreviousLine; |
| 308 | |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 309 | // Calculate the end of the non-whitespace text in the previous line. |
Alexander Kornienko | 16a0ec6 | 2013-06-14 11:46:10 +0000 | [diff] [blame] | 310 | EndOfPreviousLine = |
Alexander Kornienko | 8afa39b | 2013-06-20 13:58:37 +0000 | [diff] [blame] | 311 | Lines[LineIndex - 1].find_last_not_of(Blanks, EndOfPreviousLine); |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 312 | if (EndOfPreviousLine == StringRef::npos) |
| 313 | EndOfPreviousLine = 0; |
| 314 | else |
| 315 | ++EndOfPreviousLine; |
| 316 | // Calculate the start of the non-whitespace text in the current line. |
Alexander Kornienko | 8afa39b | 2013-06-20 13:58:37 +0000 | [diff] [blame] | 317 | size_t StartOfLine = Lines[LineIndex].find_first_not_of(Blanks); |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 318 | if (StartOfLine == StringRef::npos) |
| 319 | StartOfLine = Lines[LineIndex].size(); |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 320 | |
Alexander Kornienko | 0b62cc3 | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 321 | StringRef Whitespace = Lines[LineIndex].substr(0, StartOfLine); |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 322 | // Adjust Lines to only contain relevant text. |
| 323 | Lines[LineIndex - 1] = Lines[LineIndex - 1].substr(0, EndOfPreviousLine); |
| 324 | Lines[LineIndex] = Lines[LineIndex].substr(StartOfLine); |
| 325 | // Adjust LeadingWhitespace to account all whitespace between the lines |
| 326 | // to the current line. |
| 327 | LeadingWhitespace[LineIndex] = |
| 328 | Lines[LineIndex].begin() - Lines[LineIndex - 1].end(); |
Manuel Klimek | d63312b | 2013-05-28 10:01:59 +0000 | [diff] [blame] | 329 | |
| 330 | // FIXME: We currently count tabs as 1 character. To solve this, we need to |
| 331 | // get the correct indentation width of the start of the comment, which |
| 332 | // requires correct counting of the tab expansions before the comment, and |
| 333 | // a configurable tab width. Since the current implementation only breaks |
| 334 | // if leading tabs are intermixed with spaces, that is not a high priority. |
| 335 | |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 336 | // Adjust the start column uniformly accross all lines. |
Alexander Kornienko | 83a7dcd | 2013-09-10 09:38:25 +0000 | [diff] [blame] | 337 | StartOfLineColumn[LineIndex] = std::max<int>( |
| 338 | 0, |
| 339 | encoding::columnWidthWithTabs(Whitespace, 0, Style.TabWidth, Encoding) + |
| 340 | IndentDelta); |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | unsigned BreakableBlockComment::getLineCount() const { return Lines.size(); } |
| 344 | |
Alexander Kornienko | 2785b9a | 2013-06-07 16:02:52 +0000 | [diff] [blame] | 345 | unsigned BreakableBlockComment::getLineLengthAfterSplit( |
| 346 | unsigned LineIndex, unsigned Offset, StringRef::size_type Length) const { |
Alexander Kornienko | 0b62cc3 | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 347 | unsigned ContentStartColumn = getContentStartColumn(LineIndex, Offset); |
| 348 | return ContentStartColumn + |
| 349 | encoding::columnWidthWithTabs(Lines[LineIndex].substr(Offset, Length), |
| 350 | ContentStartColumn, Style.TabWidth, |
| 351 | Encoding) + |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 352 | // The last line gets a "*/" postfix. |
| 353 | (LineIndex + 1 == Lines.size() ? 2 : 0); |
| 354 | } |
| 355 | |
| 356 | BreakableToken::Split |
| 357 | BreakableBlockComment::getSplit(unsigned LineIndex, unsigned TailOffset, |
| 358 | unsigned ColumnLimit) const { |
| 359 | return getCommentSplit(Lines[LineIndex].substr(TailOffset), |
| 360 | getContentStartColumn(LineIndex, TailOffset), |
Alexander Kornienko | 0b62cc3 | 2013-09-05 14:08:34 +0000 | [diff] [blame] | 361 | ColumnLimit, Style.TabWidth, Encoding); |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | void BreakableBlockComment::insertBreak(unsigned LineIndex, unsigned TailOffset, |
Alexander Kornienko | 16a0ec6 | 2013-06-14 11:46:10 +0000 | [diff] [blame] | 365 | Split Split, |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 366 | WhitespaceManager &Whitespaces) { |
| 367 | StringRef Text = Lines[LineIndex].substr(TailOffset); |
| 368 | StringRef Prefix = Decoration; |
| 369 | if (LineIndex + 1 == Lines.size() && |
| 370 | Text.size() == Split.first + Split.second) { |
| 371 | // For the last line we need to break before "*/", but not to add "* ". |
| 372 | Prefix = ""; |
| 373 | } |
| 374 | |
| 375 | unsigned BreakOffsetInToken = |
| 376 | Text.data() - Tok.TokenText.data() + Split.first; |
| 377 | unsigned CharsToRemove = Split.second; |
Manuel Klimek | b6dba33 | 2013-05-30 07:45:53 +0000 | [diff] [blame] | 378 | assert(IndentAtLineBreak >= Decoration.size()); |
Alexander Kornienko | 2b2faa5 | 2013-06-11 16:01:49 +0000 | [diff] [blame] | 379 | Whitespaces.replaceWhitespaceInToken(Tok, BreakOffsetInToken, CharsToRemove, |
| 380 | "", Prefix, InPPDirective, 1, |
| 381 | IndentAtLineBreak - Decoration.size()); |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 382 | } |
| 383 | |
| 384 | void |
| 385 | BreakableBlockComment::replaceWhitespaceBefore(unsigned LineIndex, |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 386 | WhitespaceManager &Whitespaces) { |
| 387 | if (LineIndex == 0) |
| 388 | return; |
| 389 | StringRef Prefix = Decoration; |
Manuel Klimek | c5cc4bf | 2013-05-28 08:55:01 +0000 | [diff] [blame] | 390 | if (Lines[LineIndex].empty()) { |
| 391 | if (LineIndex + 1 == Lines.size()) { |
Alexander Kornienko | 1659ded | 2013-07-08 14:12:07 +0000 | [diff] [blame] | 392 | if (!LastLineNeedsDecoration) { |
| 393 | // If the last line was empty, we don't need a prefix, as the */ will |
| 394 | // line up with the decoration (if it exists). |
| 395 | Prefix = ""; |
| 396 | } |
Manuel Klimek | c5cc4bf | 2013-05-28 08:55:01 +0000 | [diff] [blame] | 397 | } else if (!Decoration.empty()) { |
| 398 | // For other empty lines, if we do have a decoration, adapt it to not |
| 399 | // contain a trailing whitespace. |
| 400 | Prefix = Prefix.substr(0, 1); |
| 401 | } |
Daniel Jasper | e2c482f | 2013-05-30 06:40:07 +0000 | [diff] [blame] | 402 | } else { |
| 403 | if (StartOfLineColumn[LineIndex] == 1) { |
Alexander Kornienko | 1659ded | 2013-07-08 14:12:07 +0000 | [diff] [blame] | 404 | // This line starts immediately after the decorating *. |
Daniel Jasper | e2c482f | 2013-05-30 06:40:07 +0000 | [diff] [blame] | 405 | Prefix = Prefix.substr(0, 1); |
| 406 | } |
Manuel Klimek | c5cc4bf | 2013-05-28 08:55:01 +0000 | [diff] [blame] | 407 | } |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 408 | |
Daniel Jasper | 2a409b6 | 2013-07-08 14:34:09 +0000 | [diff] [blame] | 409 | unsigned WhitespaceOffsetInToken = Lines[LineIndex].data() - |
| 410 | Tok.TokenText.data() - |
| 411 | LeadingWhitespace[LineIndex]; |
Manuel Klimek | b6dba33 | 2013-05-30 07:45:53 +0000 | [diff] [blame] | 412 | assert(StartOfLineColumn[LineIndex] >= Prefix.size()); |
Alexander Kornienko | 2b2faa5 | 2013-06-11 16:01:49 +0000 | [diff] [blame] | 413 | Whitespaces.replaceWhitespaceInToken( |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 414 | Tok, WhitespaceOffsetInToken, LeadingWhitespace[LineIndex], "", Prefix, |
Alexander Kornienko | 2b2faa5 | 2013-06-11 16:01:49 +0000 | [diff] [blame] | 415 | InPPDirective, 1, StartOfLineColumn[LineIndex] - Prefix.size()); |
Manuel Klimek | de008c0 | 2013-05-27 15:23:34 +0000 | [diff] [blame] | 416 | } |
| 417 | |
| 418 | unsigned |
| 419 | BreakableBlockComment::getContentStartColumn(unsigned LineIndex, |
| 420 | unsigned TailOffset) const { |
| 421 | // If we break, we always break at the predefined indent. |
| 422 | if (TailOffset != 0) |
| 423 | return IndentAtLineBreak; |
| 424 | return StartOfLineColumn[LineIndex]; |
| 425 | } |
| 426 | |
Alexander Kornienko | 70ce788 | 2013-04-15 14:28:00 +0000 | [diff] [blame] | 427 | } // namespace format |
| 428 | } // namespace clang |