blob: ebc72a9d458117a1d353d0e1c768ee759c3ea06d [file] [log] [blame]
Alexander Kornienkocb45bc12013-04-15 14:28:00 +00001//===--- WhitespaceManager.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 This file implements WhitespaceManager class.
12///
13//===----------------------------------------------------------------------===//
14
15#include "WhitespaceManager.h"
16#include "llvm/ADT/STLExtras.h"
17
18namespace clang {
19namespace format {
20
Daniel Jasperb05a81d2014-05-09 13:11:16 +000021bool WhitespaceManager::Change::IsBeforeInFile::
22operator()(const Change &C1, const Change &C2) const {
Manuel Klimek4fe43002013-05-22 12:51:29 +000023 return SourceMgr.isBeforeInTranslationUnit(
24 C1.OriginalWhitespaceRange.getBegin(),
25 C2.OriginalWhitespaceRange.getBegin());
26}
Daniel Jasper6fe2f002013-04-25 08:56:26 +000027
Manuel Klimek4fe43002013-05-22 12:51:29 +000028WhitespaceManager::Change::Change(
Craig Toppere335f252015-10-04 04:53:55 +000029 bool CreateReplacement, SourceRange OriginalWhitespaceRange,
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +000030 unsigned IndentLevel, int Spaces, unsigned StartOfTokenColumn,
Alexander Kornienko3c3d09c2013-09-27 16:14:22 +000031 unsigned NewlinesBefore, StringRef PreviousLinePostfix,
Daniel Jaspere12597c2015-10-01 10:06:54 +000032 StringRef CurrentLinePrefix, tok::TokenKind Kind, bool ContinuesPPDirective,
Benjamin Kramerdab50462016-01-11 16:27:16 +000033 bool IsStartOfDeclName, bool IsInsideToken)
Manuel Klimek4fe43002013-05-22 12:51:29 +000034 : CreateReplacement(CreateReplacement),
35 OriginalWhitespaceRange(OriginalWhitespaceRange),
36 StartOfTokenColumn(StartOfTokenColumn), NewlinesBefore(NewlinesBefore),
37 PreviousLinePostfix(PreviousLinePostfix),
38 CurrentLinePrefix(CurrentLinePrefix), Kind(Kind),
Daniel Jaspere12597c2015-10-01 10:06:54 +000039 ContinuesPPDirective(ContinuesPPDirective),
40 IsStartOfDeclName(IsStartOfDeclName), IndentLevel(IndentLevel),
Benjamin Kramerdab50462016-01-11 16:27:16 +000041 Spaces(Spaces), IsInsideToken(IsInsideToken), IsTrailingComment(false),
42 TokenLength(0), PreviousEndOfTokenColumn(0), EscapedNewlineColumn(0),
Manuel Klimek2d293402015-03-03 14:21:48 +000043 StartOfBlockComment(nullptr), IndentationOffset(0) {}
Manuel Klimek4fe43002013-05-22 12:51:29 +000044
Manuel Klimek71814b42013-10-11 21:25:45 +000045void WhitespaceManager::reset() {
46 Changes.clear();
47 Replaces.clear();
48}
49
50void WhitespaceManager::replaceWhitespace(FormatToken &Tok, unsigned Newlines,
Alexander Kornienko3c3d09c2013-09-27 16:14:22 +000051 unsigned IndentLevel, unsigned Spaces,
Manuel Klimek4fe43002013-05-22 12:51:29 +000052 unsigned StartOfTokenColumn,
53 bool InPPDirective) {
Manuel Klimek71814b42013-10-11 21:25:45 +000054 if (Tok.Finalized)
55 return;
56 Tok.Decision = (Newlines > 0) ? FD_Break : FD_Continue;
Daniel Jaspere12597c2015-10-01 10:06:54 +000057 Changes.push_back(
Daniel Jasper417fc812016-01-09 15:56:53 +000058 Change(/*CreateReplacement=*/true, Tok.WhitespaceRange, IndentLevel,
59 Spaces, StartOfTokenColumn, Newlines, "", "", Tok.Tok.getKind(),
60 InPPDirective && !Tok.IsFirst,
Benjamin Kramerdab50462016-01-11 16:27:16 +000061 Tok.is(TT_StartOfName) || Tok.is(TT_FunctionDeclarationName),
62 /*IsInsideToken=*/false));
Alexander Kornienkocb45bc12013-04-15 14:28:00 +000063}
64
Manuel Klimek4fe43002013-05-22 12:51:29 +000065void WhitespaceManager::addUntouchableToken(const FormatToken &Tok,
66 bool InPPDirective) {
Manuel Klimek71814b42013-10-11 21:25:45 +000067 if (Tok.Finalized)
68 return;
Daniel Jasper417fc812016-01-09 15:56:53 +000069 Changes.push_back(Change(
70 /*CreateReplacement=*/false, Tok.WhitespaceRange, /*IndentLevel=*/0,
71 /*Spaces=*/0, Tok.OriginalColumn, Tok.NewlinesBefore, "", "",
72 Tok.Tok.getKind(), InPPDirective && !Tok.IsFirst,
Benjamin Kramerdab50462016-01-11 16:27:16 +000073 Tok.is(TT_StartOfName) || Tok.is(TT_FunctionDeclarationName),
74 /*IsInsideToken=*/false));
Alexander Kornienkocb45bc12013-04-15 14:28:00 +000075}
76
Alexander Kornienko555efc32013-06-11 16:01:49 +000077void WhitespaceManager::replaceWhitespaceInToken(
78 const FormatToken &Tok, unsigned Offset, unsigned ReplaceChars,
79 StringRef PreviousPostfix, StringRef CurrentPrefix, bool InPPDirective,
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +000080 unsigned Newlines, unsigned IndentLevel, int Spaces) {
Manuel Klimek71814b42013-10-11 21:25:45 +000081 if (Tok.Finalized)
82 return;
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +000083 SourceLocation Start = Tok.getStartOfNonWhitespace().getLocWithOffset(Offset);
Manuel Klimek4fe43002013-05-22 12:51:29 +000084 Changes.push_back(Change(
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +000085 true, SourceRange(Start, Start.getLocWithOffset(ReplaceChars)),
86 IndentLevel, Spaces, std::max(0, Spaces), Newlines, PreviousPostfix,
Benjamin Kramerdab50462016-01-11 16:27:16 +000087 CurrentPrefix, Tok.is(TT_LineComment) ? tok::comment : tok::unknown,
Daniel Jaspere12597c2015-10-01 10:06:54 +000088 InPPDirective && !Tok.IsFirst,
Benjamin Kramerdab50462016-01-11 16:27:16 +000089 Tok.is(TT_StartOfName) || Tok.is(TT_FunctionDeclarationName),
90 /*IsInsideToken=*/Newlines == 0));
Alexander Kornienkocb45bc12013-04-15 14:28:00 +000091}
92
Manuel Klimek4fe43002013-05-22 12:51:29 +000093const tooling::Replacements &WhitespaceManager::generateReplacements() {
94 if (Changes.empty())
95 return Replaces;
96
97 std::sort(Changes.begin(), Changes.end(), Change::IsBeforeInFile(SourceMgr));
98 calculateLineBreakInformation();
Daniel Jaspere12597c2015-10-01 10:06:54 +000099 alignConsecutiveDeclarations();
Daniel Jaspera44991332015-04-29 13:06:49 +0000100 alignConsecutiveAssignments();
Manuel Klimek4fe43002013-05-22 12:51:29 +0000101 alignTrailingComments();
102 alignEscapedNewlines();
103 generateChanges();
104
105 return Replaces;
106}
107
108void WhitespaceManager::calculateLineBreakInformation() {
109 Changes[0].PreviousEndOfTokenColumn = 0;
Benjamin Kramerdab50462016-01-11 16:27:16 +0000110 Change *LastOutsideTokenChange = &Changes[0];
Manuel Klimek4fe43002013-05-22 12:51:29 +0000111 for (unsigned i = 1, e = Changes.size(); i != e; ++i) {
112 unsigned OriginalWhitespaceStart =
113 SourceMgr.getFileOffset(Changes[i].OriginalWhitespaceRange.getBegin());
114 unsigned PreviousOriginalWhitespaceEnd = SourceMgr.getFileOffset(
115 Changes[i - 1].OriginalWhitespaceRange.getEnd());
Daniel Jasper3ac9b9e2013-07-08 14:34:09 +0000116 Changes[i - 1].TokenLength = OriginalWhitespaceStart -
117 PreviousOriginalWhitespaceEnd +
118 Changes[i].PreviousLinePostfix.size() +
119 Changes[i - 1].CurrentLinePrefix.size();
Manuel Klimek4fe43002013-05-22 12:51:29 +0000120
Benjamin Kramerdab50462016-01-11 16:27:16 +0000121 // If there are multiple changes in this token, sum up all the changes until
122 // the end of the line.
123 if (Changes[i - 1].IsInsideToken)
124 LastOutsideTokenChange->TokenLength +=
125 Changes[i - 1].TokenLength + Changes[i - 1].Spaces;
126 else
127 LastOutsideTokenChange = &Changes[i - 1];
128
Manuel Klimek4fe43002013-05-22 12:51:29 +0000129 Changes[i].PreviousEndOfTokenColumn =
130 Changes[i - 1].StartOfTokenColumn + Changes[i - 1].TokenLength;
131
132 Changes[i - 1].IsTrailingComment =
Benjamin Kramerdab50462016-01-11 16:27:16 +0000133 (Changes[i].NewlinesBefore > 0 || Changes[i].Kind == tok::eof ||
134 (Changes[i].IsInsideToken && Changes[i].Kind == tok::comment)) &&
Manuel Klimek4fe43002013-05-22 12:51:29 +0000135 Changes[i - 1].Kind == tok::comment;
136 }
Manuel Klimek05c67892013-05-22 14:01:08 +0000137 // FIXME: The last token is currently not always an eof token; in those
138 // cases, setting TokenLength of the last token to 0 is wrong.
139 Changes.back().TokenLength = 0;
Manuel Klimek4fe43002013-05-22 12:51:29 +0000140 Changes.back().IsTrailingComment = Changes.back().Kind == tok::comment;
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +0000141
142 const WhitespaceManager::Change *LastBlockComment = nullptr;
143 for (auto &Change : Changes) {
Benjamin Kramerdab50462016-01-11 16:27:16 +0000144 // Reset the IsTrailingComment flag for changes inside of trailing comments
145 // so they don't get realigned later.
146 if (Change.IsInsideToken)
147 Change.IsTrailingComment = false;
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +0000148 Change.StartOfBlockComment = nullptr;
149 Change.IndentationOffset = 0;
150 if (Change.Kind == tok::comment) {
151 LastBlockComment = &Change;
152 } else if (Change.Kind == tok::unknown) {
153 if ((Change.StartOfBlockComment = LastBlockComment))
154 Change.IndentationOffset =
155 Change.StartOfTokenColumn -
156 Change.StartOfBlockComment->StartOfTokenColumn;
157 } else {
158 LastBlockComment = nullptr;
159 }
160 }
Manuel Klimek4fe43002013-05-22 12:51:29 +0000161}
162
Daniel Jasperec90e512015-12-01 12:00:43 +0000163// Align a single sequence of tokens, see AlignTokens below.
164template <typename F>
165static void
166AlignTokenSequence(unsigned Start, unsigned End, unsigned Column, F &&Matches,
167 SmallVector<WhitespaceManager::Change, 16> &Changes) {
168 bool FoundMatchOnLine = false;
169 int Shift = 0;
170 for (unsigned i = Start; i != End; ++i) {
171 if (Changes[i].NewlinesBefore > 0) {
172 FoundMatchOnLine = false;
173 Shift = 0;
174 }
175
176 // If this is the first matching token to be aligned, remember by how many
177 // spaces it has to be shifted, so the rest of the changes on the line are
178 // shifted by the same amount
179 if (!FoundMatchOnLine && Matches(Changes[i])) {
180 FoundMatchOnLine = true;
181 Shift = Column - Changes[i].StartOfTokenColumn;
182 Changes[i].Spaces += Shift;
183 }
184
185 assert(Shift >= 0);
186 Changes[i].StartOfTokenColumn += Shift;
187 if (i + 1 != Changes.size())
188 Changes[i + 1].PreviousEndOfTokenColumn += Shift;
189 }
190}
191
192// Walk through all of the changes and find sequences of matching tokens to
193// align. To do so, keep track of the lines and whether or not a matching token
194// was found on a line. If a matching token is found, extend the current
195// sequence. If the current line cannot be part of a sequence, e.g. because
196// there is an empty line before it or it contains only non-matching tokens,
197// finalize the previous sequence.
198template <typename F>
199static void AlignTokens(const FormatStyle &Style, F &&Matches,
200 SmallVector<WhitespaceManager::Change, 16> &Changes) {
201 unsigned MinColumn = 0;
202 unsigned MaxColumn = UINT_MAX;
203
204 // Line number of the start and the end of the current token sequence.
205 unsigned StartOfSequence = 0;
206 unsigned EndOfSequence = 0;
207
208 // Keep track of the nesting level of matching tokens, i.e. the number of
209 // surrounding (), [], or {}. We will only align a sequence of matching
210 // token that share the same scope depth.
211 //
212 // FIXME: This could use FormatToken::NestingLevel information, but there is
213 // an outstanding issue wrt the brace scopes.
214 unsigned NestingLevelOfLastMatch = 0;
215 unsigned NestingLevel = 0;
216
217 // Keep track of the number of commas before the matching tokens, we will only
218 // align a sequence of matching tokens if they are preceded by the same number
219 // of commas.
220 unsigned CommasBeforeLastMatch = 0;
221 unsigned CommasBeforeMatch = 0;
222
223 // Whether a matching token has been found on the current line.
224 bool FoundMatchOnLine = false;
225
226 // Aligns a sequence of matching tokens, on the MinColumn column.
227 //
228 // Sequences start from the first matching token to align, and end at the
229 // first token of the first line that doesn't need to be aligned.
230 //
231 // We need to adjust the StartOfTokenColumn of each Change that is on a line
232 // containing any matching token to be aligned and located after such token.
233 auto AlignCurrentSequence = [&] {
234 if (StartOfSequence > 0 && StartOfSequence < EndOfSequence)
235 AlignTokenSequence(StartOfSequence, EndOfSequence, MinColumn, Matches,
236 Changes);
237 MinColumn = 0;
238 MaxColumn = UINT_MAX;
239 StartOfSequence = 0;
240 EndOfSequence = 0;
241 };
242
243 for (unsigned i = 0, e = Changes.size(); i != e; ++i) {
244 if (Changes[i].NewlinesBefore != 0) {
245 CommasBeforeMatch = 0;
246 EndOfSequence = i;
247 // If there is a blank line, or if the last line didn't contain any
248 // matching token, the sequence ends here.
249 if (Changes[i].NewlinesBefore > 1 || !FoundMatchOnLine)
250 AlignCurrentSequence();
251
252 FoundMatchOnLine = false;
253 }
254
255 if (Changes[i].Kind == tok::comma) {
256 ++CommasBeforeMatch;
257 } else if (Changes[i].Kind == tok::r_brace ||
258 Changes[i].Kind == tok::r_paren ||
259 Changes[i].Kind == tok::r_square) {
260 --NestingLevel;
261 } else if (Changes[i].Kind == tok::l_brace ||
262 Changes[i].Kind == tok::l_paren ||
263 Changes[i].Kind == tok::l_square) {
264 // We want sequences to skip over child scopes if possible, but not the
265 // other way around.
266 NestingLevelOfLastMatch = std::min(NestingLevelOfLastMatch, NestingLevel);
267 ++NestingLevel;
268 }
269
270 if (!Matches(Changes[i]))
271 continue;
272
273 // If there is more than one matching token per line, or if the number of
274 // preceding commas, or the scope depth, do not match anymore, end the
275 // sequence.
276 if (FoundMatchOnLine || CommasBeforeMatch != CommasBeforeLastMatch ||
277 NestingLevel != NestingLevelOfLastMatch)
278 AlignCurrentSequence();
279
280 CommasBeforeLastMatch = CommasBeforeMatch;
281 NestingLevelOfLastMatch = NestingLevel;
282 FoundMatchOnLine = true;
283
284 if (StartOfSequence == 0)
285 StartOfSequence = i;
286
287 unsigned ChangeMinColumn = Changes[i].StartOfTokenColumn;
288 int LineLengthAfter = -Changes[i].Spaces;
289 for (unsigned j = i; j != e && Changes[j].NewlinesBefore == 0; ++j)
290 LineLengthAfter += Changes[j].Spaces + Changes[j].TokenLength;
291 unsigned ChangeMaxColumn = Style.ColumnLimit - LineLengthAfter;
292
293 // If we are restricted by the maximum column width, end the sequence.
294 if (ChangeMinColumn > MaxColumn || ChangeMaxColumn < MinColumn ||
295 CommasBeforeLastMatch != CommasBeforeMatch) {
296 AlignCurrentSequence();
297 StartOfSequence = i;
298 }
299
300 MinColumn = std::max(MinColumn, ChangeMinColumn);
301 MaxColumn = std::min(MaxColumn, ChangeMaxColumn);
302 }
303
304 EndOfSequence = Changes.size();
305 AlignCurrentSequence();
306}
307
Daniel Jaspera44991332015-04-29 13:06:49 +0000308void WhitespaceManager::alignConsecutiveAssignments() {
309 if (!Style.AlignConsecutiveAssignments)
310 return;
311
Daniel Jasperec90e512015-12-01 12:00:43 +0000312 AlignTokens(Style,
313 [&](const Change &C) {
314 // Do not align on equal signs that are first on a line.
315 if (C.NewlinesBefore > 0)
316 return false;
Daniel Jaspera44991332015-04-29 13:06:49 +0000317
Daniel Jasperec90e512015-12-01 12:00:43 +0000318 // Do not align on equal signs that are last on a line.
319 if (&C != &Changes.back() && (&C + 1)->NewlinesBefore > 0)
320 return false;
Daniel Jaspera44991332015-04-29 13:06:49 +0000321
Daniel Jasperec90e512015-12-01 12:00:43 +0000322 return C.Kind == tok::equal;
323 },
324 Changes);
Daniel Jaspera44991332015-04-29 13:06:49 +0000325}
326
Daniel Jaspere12597c2015-10-01 10:06:54 +0000327void WhitespaceManager::alignConsecutiveDeclarations() {
328 if (!Style.AlignConsecutiveDeclarations)
329 return;
330
Daniel Jasperec90e512015-12-01 12:00:43 +0000331 // FIXME: Currently we don't handle properly the PointerAlignment: Right
332 // The * and & are not aligned and are left dangling. Something has to be done
333 // about it, but it raises the question of alignment of code like:
334 // const char* const* v1;
335 // float const* v2;
336 // SomeVeryLongType const& v3;
Daniel Jaspere12597c2015-10-01 10:06:54 +0000337
Daniel Jasperec90e512015-12-01 12:00:43 +0000338 AlignTokens(Style, [](Change const &C) { return C.IsStartOfDeclName; },
339 Changes);
Daniel Jaspere12597c2015-10-01 10:06:54 +0000340}
341
Manuel Klimek4fe43002013-05-22 12:51:29 +0000342void WhitespaceManager::alignTrailingComments() {
343 unsigned MinColumn = 0;
344 unsigned MaxColumn = UINT_MAX;
345 unsigned StartOfSequence = 0;
346 bool BreakBeforeNext = false;
347 unsigned Newlines = 0;
348 for (unsigned i = 0, e = Changes.size(); i != e; ++i) {
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +0000349 if (Changes[i].StartOfBlockComment)
350 continue;
351 Newlines += Changes[i].NewlinesBefore;
352 if (!Changes[i].IsTrailingComment)
353 continue;
354
Manuel Klimek4fe43002013-05-22 12:51:29 +0000355 unsigned ChangeMinColumn = Changes[i].StartOfTokenColumn;
Manuel Klimek4fe43002013-05-22 12:51:29 +0000356 unsigned ChangeMaxColumn = Style.ColumnLimit - Changes[i].TokenLength;
Daniel Jasper417fc812016-01-09 15:56:53 +0000357
358 // If we don't create a replacement for this change, we have to consider
359 // it to be immovable.
360 if (!Changes[i].CreateReplacement)
361 ChangeMaxColumn = ChangeMinColumn;
362
Daniel Jasper66935022014-04-27 10:03:19 +0000363 if (i + 1 != e && Changes[i + 1].ContinuesPPDirective)
364 ChangeMaxColumn -= 2;
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +0000365 // If this comment follows an } in column 0, it probably documents the
366 // closing of a namespace and we don't want to align it.
367 bool FollowsRBraceInColumn0 = i > 0 && Changes[i].NewlinesBefore == 0 &&
368 Changes[i - 1].Kind == tok::r_brace &&
369 Changes[i - 1].StartOfTokenColumn == 0;
370 bool WasAlignedWithStartOfNextLine = false;
371 if (Changes[i].NewlinesBefore == 1) { // A comment on its own line.
Daniel Jasper49532102015-01-07 14:00:11 +0000372 unsigned CommentColumn = SourceMgr.getSpellingColumnNumber(
373 Changes[i].OriginalWhitespaceRange.getEnd());
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +0000374 for (unsigned j = i + 1; j != e; ++j) {
Daniel Jasperbb37a2f2016-02-01 11:20:55 +0000375 if (Changes[j].Kind == tok::comment ||
376 Changes[j].Kind == tok::unknown)
377 // Skip over comments and unknown tokens. "unknown tokens are used for
378 // the continuation of multiline comments.
379 continue;
380
381 unsigned NextColumn = SourceMgr.getSpellingColumnNumber(
382 Changes[j].OriginalWhitespaceRange.getEnd());
383 // The start of the next token was previously aligned with the
384 // start of this comment.
385 WasAlignedWithStartOfNextLine =
386 CommentColumn == NextColumn ||
387 CommentColumn == NextColumn + Style.IndentWidth;
388 break;
Daniel Jasper0e93cdb2013-11-08 23:31:14 +0000389 }
Manuel Klimek4fe43002013-05-22 12:51:29 +0000390 }
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +0000391 if (!Style.AlignTrailingComments || FollowsRBraceInColumn0) {
392 alignTrailingComments(StartOfSequence, i, MinColumn);
393 MinColumn = ChangeMinColumn;
394 MaxColumn = ChangeMinColumn;
395 StartOfSequence = i;
396 } else if (BreakBeforeNext || Newlines > 1 ||
397 (ChangeMinColumn > MaxColumn || ChangeMaxColumn < MinColumn) ||
398 // Break the comment sequence if the previous line did not end
399 // in a trailing comment.
400 (Changes[i].NewlinesBefore == 1 && i > 0 &&
401 !Changes[i - 1].IsTrailingComment) ||
402 WasAlignedWithStartOfNextLine) {
403 alignTrailingComments(StartOfSequence, i, MinColumn);
404 MinColumn = ChangeMinColumn;
405 MaxColumn = ChangeMaxColumn;
406 StartOfSequence = i;
407 } else {
408 MinColumn = std::max(MinColumn, ChangeMinColumn);
409 MaxColumn = std::min(MaxColumn, ChangeMaxColumn);
410 }
411 BreakBeforeNext =
412 (i == 0) || (Changes[i].NewlinesBefore > 1) ||
413 // Never start a sequence with a comment at the beginning of
414 // the line.
415 (Changes[i].NewlinesBefore == 1 && StartOfSequence == i);
416 Newlines = 0;
Manuel Klimek4fe43002013-05-22 12:51:29 +0000417 }
418 alignTrailingComments(StartOfSequence, Changes.size(), MinColumn);
419}
420
421void WhitespaceManager::alignTrailingComments(unsigned Start, unsigned End,
422 unsigned Column) {
423 for (unsigned i = Start; i != End; ++i) {
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +0000424 int Shift = 0;
Manuel Klimek4fe43002013-05-22 12:51:29 +0000425 if (Changes[i].IsTrailingComment) {
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +0000426 Shift = Column - Changes[i].StartOfTokenColumn;
Manuel Klimek4fe43002013-05-22 12:51:29 +0000427 }
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +0000428 if (Changes[i].StartOfBlockComment) {
429 Shift = Changes[i].IndentationOffset +
430 Changes[i].StartOfBlockComment->StartOfTokenColumn -
431 Changes[i].StartOfTokenColumn;
432 }
433 assert(Shift >= 0);
434 Changes[i].Spaces += Shift;
Andi-Bogdan Postelnicua9a8fde2016-10-26 07:44:51 +0000435 if (i + 1 != Changes.size())
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +0000436 Changes[i + 1].PreviousEndOfTokenColumn += Shift;
437 Changes[i].StartOfTokenColumn += Shift;
Manuel Klimek4fe43002013-05-22 12:51:29 +0000438 }
439}
440
441void WhitespaceManager::alignEscapedNewlines() {
Daniel Jaspera49393f2013-08-28 09:07:32 +0000442 unsigned MaxEndOfLine =
443 Style.AlignEscapedNewlinesLeft ? 0 : Style.ColumnLimit;
Manuel Klimek4fe43002013-05-22 12:51:29 +0000444 unsigned StartOfMacro = 0;
445 for (unsigned i = 1, e = Changes.size(); i < e; ++i) {
446 Change &C = Changes[i];
447 if (C.NewlinesBefore > 0) {
448 if (C.ContinuesPPDirective) {
Daniel Jaspera49393f2013-08-28 09:07:32 +0000449 MaxEndOfLine = std::max(C.PreviousEndOfTokenColumn + 2, MaxEndOfLine);
Manuel Klimek4fe43002013-05-22 12:51:29 +0000450 } else {
451 alignEscapedNewlines(StartOfMacro + 1, i, MaxEndOfLine);
Daniel Jaspera49393f2013-08-28 09:07:32 +0000452 MaxEndOfLine = Style.AlignEscapedNewlinesLeft ? 0 : Style.ColumnLimit;
Manuel Klimek4fe43002013-05-22 12:51:29 +0000453 StartOfMacro = i;
454 }
455 }
456 }
457 alignEscapedNewlines(StartOfMacro + 1, Changes.size(), MaxEndOfLine);
458}
459
460void WhitespaceManager::alignEscapedNewlines(unsigned Start, unsigned End,
461 unsigned Column) {
462 for (unsigned i = Start; i < End; ++i) {
463 Change &C = Changes[i];
464 if (C.NewlinesBefore > 0) {
465 assert(C.ContinuesPPDirective);
466 if (C.PreviousEndOfTokenColumn + 1 > Column)
467 C.EscapedNewlineColumn = 0;
468 else
469 C.EscapedNewlineColumn = Column;
470 }
471 }
472}
473
474void WhitespaceManager::generateChanges() {
475 for (unsigned i = 0, e = Changes.size(); i != e; ++i) {
476 const Change &C = Changes[i];
Daniel Jasper47b35ae2015-01-29 10:47:14 +0000477 if (i > 0) {
478 assert(Changes[i - 1].OriginalWhitespaceRange.getBegin() !=
479 C.OriginalWhitespaceRange.getBegin() &&
480 "Generating two replacements for the same location");
481 }
Manuel Klimek4fe43002013-05-22 12:51:29 +0000482 if (C.CreateReplacement) {
Alexander Kornienko9e649af2013-09-11 12:25:57 +0000483 std::string ReplacementText = C.PreviousLinePostfix;
484 if (C.ContinuesPPDirective)
485 appendNewlineText(ReplacementText, C.NewlinesBefore,
486 C.PreviousEndOfTokenColumn, C.EscapedNewlineColumn);
487 else
488 appendNewlineText(ReplacementText, C.NewlinesBefore);
Alexander Kornienko67d9c8c2014-04-17 16:12:46 +0000489 appendIndentText(ReplacementText, C.IndentLevel, std::max(0, C.Spaces),
490 C.StartOfTokenColumn - std::max(0, C.Spaces));
Alexander Kornienko9e649af2013-09-11 12:25:57 +0000491 ReplacementText.append(C.CurrentLinePrefix);
Manuel Klimek4fe43002013-05-22 12:51:29 +0000492 storeReplacement(C.OriginalWhitespaceRange, ReplacementText);
493 }
494 }
495}
496
Craig Toppere335f252015-10-04 04:53:55 +0000497void WhitespaceManager::storeReplacement(SourceRange Range,
Manuel Klimek4fe43002013-05-22 12:51:29 +0000498 StringRef Text) {
499 unsigned WhitespaceLength = SourceMgr.getFileOffset(Range.getEnd()) -
500 SourceMgr.getFileOffset(Range.getBegin());
501 // Don't create a replacement, if it does not change anything.
502 if (StringRef(SourceMgr.getCharacterData(Range.getBegin()),
Daniel Jasper3ac9b9e2013-07-08 14:34:09 +0000503 WhitespaceLength) == Text)
Manuel Klimek4fe43002013-05-22 12:51:29 +0000504 return;
Eric Liu40ef2fb2016-08-01 10:16:37 +0000505 auto Err = Replaces.add(tooling::Replacement(
Manuel Klimek4fe43002013-05-22 12:51:29 +0000506 SourceMgr, CharSourceRange::getCharRange(Range), Text));
Eric Liu40ef2fb2016-08-01 10:16:37 +0000507 // FIXME: better error handling. For now, just print an error message in the
508 // release version.
509 if (Err)
510 llvm::errs() << llvm::toString(std::move(Err)) << "\n";
511 assert(!Err);
Alexander Kornienkocb45bc12013-04-15 14:28:00 +0000512}
513
Alexander Kornienko9e649af2013-09-11 12:25:57 +0000514void WhitespaceManager::appendNewlineText(std::string &Text,
515 unsigned Newlines) {
516 for (unsigned i = 0; i < Newlines; ++i)
517 Text.append(UseCRLF ? "\r\n" : "\n");
Alexander Kornienkocb45bc12013-04-15 14:28:00 +0000518}
519
Alexander Kornienko9e649af2013-09-11 12:25:57 +0000520void WhitespaceManager::appendNewlineText(std::string &Text, unsigned Newlines,
521 unsigned PreviousEndOfTokenColumn,
522 unsigned EscapedNewlineColumn) {
Alexander Kornienko555efc32013-06-11 16:01:49 +0000523 if (Newlines > 0) {
Alexander Kornienkocb45bc12013-04-15 14:28:00 +0000524 unsigned Offset =
Manuel Klimek4fe43002013-05-22 12:51:29 +0000525 std::min<int>(EscapedNewlineColumn - 1, PreviousEndOfTokenColumn);
Alexander Kornienko555efc32013-06-11 16:01:49 +0000526 for (unsigned i = 0; i < Newlines; ++i) {
Benjamin Kramerddf1cda2015-05-28 19:55:49 +0000527 Text.append(EscapedNewlineColumn - Offset - 1, ' ');
Alexander Kornienko9e649af2013-09-11 12:25:57 +0000528 Text.append(UseCRLF ? "\\\r\n" : "\\\n");
Alexander Kornienkocb45bc12013-04-15 14:28:00 +0000529 Offset = 0;
530 }
531 }
Manuel Klimekb9eae4c2013-05-13 09:22:11 +0000532}
533
Alexander Kornienko3c3d09c2013-09-27 16:14:22 +0000534void WhitespaceManager::appendIndentText(std::string &Text,
535 unsigned IndentLevel, unsigned Spaces,
Alexander Kornienkodb4c21f2013-09-27 09:45:40 +0000536 unsigned WhitespaceStartColumn) {
Alexander Kornienko3c3d09c2013-09-27 16:14:22 +0000537 switch (Style.UseTab) {
538 case FormatStyle::UT_Never:
Benjamin Kramerddf1cda2015-05-28 19:55:49 +0000539 Text.append(Spaces, ' ');
Alexander Kornienko3c3d09c2013-09-27 16:14:22 +0000540 break;
541 case FormatStyle::UT_Always: {
Alexander Kornienkodb4c21f2013-09-27 09:45:40 +0000542 unsigned FirstTabWidth =
543 Style.TabWidth - WhitespaceStartColumn % Style.TabWidth;
544 // Indent with tabs only when there's at least one full tab.
545 if (FirstTabWidth + Style.TabWidth <= Spaces) {
546 Spaces -= FirstTabWidth;
547 Text.append("\t");
548 }
Benjamin Kramerddf1cda2015-05-28 19:55:49 +0000549 Text.append(Spaces / Style.TabWidth, '\t');
550 Text.append(Spaces % Style.TabWidth, ' ');
Alexander Kornienko3c3d09c2013-09-27 16:14:22 +0000551 break;
552 }
553 case FormatStyle::UT_ForIndentation:
554 if (WhitespaceStartColumn == 0) {
555 unsigned Indentation = IndentLevel * Style.IndentWidth;
Alexander Kornienko45dc1b22013-09-27 16:40:11 +0000556 // This happens, e.g. when a line in a block comment is indented less than
557 // the first one.
Alexander Kornienko3c3d09c2013-09-27 16:14:22 +0000558 if (Indentation > Spaces)
559 Indentation = Spaces;
560 unsigned Tabs = Indentation / Style.TabWidth;
Benjamin Kramerddf1cda2015-05-28 19:55:49 +0000561 Text.append(Tabs, '\t');
Alexander Kornienko3c3d09c2013-09-27 16:14:22 +0000562 Spaces -= Tabs * Style.TabWidth;
563 }
Benjamin Kramerddf1cda2015-05-28 19:55:49 +0000564 Text.append(Spaces, ' ');
Alexander Kornienko3c3d09c2013-09-27 16:14:22 +0000565 break;
Marianne Mailhot-Sarrasin51fe2792016-04-14 14:52:26 +0000566 case FormatStyle::UT_ForContinuationAndIndentation:
567 if (WhitespaceStartColumn == 0) {
568 unsigned Tabs = Spaces / Style.TabWidth;
569 Text.append(Tabs, '\t');
570 Spaces -= Tabs * Style.TabWidth;
571 }
572 Text.append(Spaces, ' ');
573 break;
Alexander Kornienko9e649af2013-09-11 12:25:57 +0000574 }
Alexander Kornienkocb45bc12013-04-15 14:28:00 +0000575}
576
Alexander Kornienkocb45bc12013-04-15 14:28:00 +0000577} // namespace format
578} // namespace clang