blob: b14316a14cd9ea4ad8edeedaaa810b7f7901257c [file] [log] [blame]
Eric Liu4cfb88a2016-04-25 15:09:22 +00001//===--- AffectedRangeManager.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
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000011/// This file implements AffectRangeManager class.
Eric Liu4cfb88a2016-04-25 15:09:22 +000012///
13//===----------------------------------------------------------------------===//
14
15#include "AffectedRangeManager.h"
16
17#include "FormatToken.h"
18#include "TokenAnnotator.h"
19
20namespace clang {
21namespace format {
22
23bool AffectedRangeManager::computeAffectedLines(
Manuel Klimek0dddcf72018-04-23 09:34:26 +000024 SmallVectorImpl<AnnotatedLine *> &Lines) {
25 SmallVectorImpl<AnnotatedLine *>::iterator I = Lines.begin();
26 SmallVectorImpl<AnnotatedLine *>::iterator E = Lines.end();
Eric Liu4cfb88a2016-04-25 15:09:22 +000027 bool SomeLineAffected = false;
28 const AnnotatedLine *PreviousLine = nullptr;
29 while (I != E) {
30 AnnotatedLine *Line = *I;
31 Line->LeadingEmptyLinesAffected = affectsLeadingEmptyLines(*Line->First);
32
33 // If a line is part of a preprocessor directive, it needs to be formatted
34 // if any token within the directive is affected.
35 if (Line->InPPDirective) {
36 FormatToken *Last = Line->Last;
37 SmallVectorImpl<AnnotatedLine *>::iterator PPEnd = I + 1;
38 while (PPEnd != E && !(*PPEnd)->First->HasUnescapedNewline) {
39 Last = (*PPEnd)->Last;
40 ++PPEnd;
41 }
42
43 if (affectsTokenRange(*Line->First, *Last,
44 /*IncludeLeadingNewlines=*/false)) {
45 SomeLineAffected = true;
46 markAllAsAffected(I, PPEnd);
47 }
48 I = PPEnd;
49 continue;
50 }
51
Manuel Klimek0dddcf72018-04-23 09:34:26 +000052 if (nonPPLineAffected(Line, PreviousLine, Lines))
Eric Liu4cfb88a2016-04-25 15:09:22 +000053 SomeLineAffected = true;
54
55 PreviousLine = Line;
56 ++I;
57 }
58 return SomeLineAffected;
59}
60
61bool AffectedRangeManager::affectsCharSourceRange(
62 const CharSourceRange &Range) {
63 for (SmallVectorImpl<CharSourceRange>::const_iterator I = Ranges.begin(),
64 E = Ranges.end();
65 I != E; ++I) {
66 if (!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(), I->getBegin()) &&
67 !SourceMgr.isBeforeInTranslationUnit(I->getEnd(), Range.getBegin()))
68 return true;
69 }
70 return false;
71}
72
73bool AffectedRangeManager::affectsTokenRange(const FormatToken &First,
74 const FormatToken &Last,
75 bool IncludeLeadingNewlines) {
76 SourceLocation Start = First.WhitespaceRange.getBegin();
77 if (!IncludeLeadingNewlines)
78 Start = Start.getLocWithOffset(First.LastNewlineOffset);
79 SourceLocation End = Last.getStartOfNonWhitespace();
80 End = End.getLocWithOffset(Last.TokenText.size());
81 CharSourceRange Range = CharSourceRange::getCharRange(Start, End);
82 return affectsCharSourceRange(Range);
83}
84
85bool AffectedRangeManager::affectsLeadingEmptyLines(const FormatToken &Tok) {
86 CharSourceRange EmptyLineRange = CharSourceRange::getCharRange(
87 Tok.WhitespaceRange.getBegin(),
88 Tok.WhitespaceRange.getBegin().getLocWithOffset(Tok.LastNewlineOffset));
89 return affectsCharSourceRange(EmptyLineRange);
90}
91
92void AffectedRangeManager::markAllAsAffected(
93 SmallVectorImpl<AnnotatedLine *>::iterator I,
94 SmallVectorImpl<AnnotatedLine *>::iterator E) {
95 while (I != E) {
96 (*I)->Affected = true;
97 markAllAsAffected((*I)->Children.begin(), (*I)->Children.end());
98 ++I;
99 }
100}
101
102bool AffectedRangeManager::nonPPLineAffected(
Manuel Klimek0dddcf72018-04-23 09:34:26 +0000103 AnnotatedLine *Line, const AnnotatedLine *PreviousLine,
104 SmallVectorImpl<AnnotatedLine *> &Lines) {
Eric Liu4cfb88a2016-04-25 15:09:22 +0000105 bool SomeLineAffected = false;
Manuel Klimek0dddcf72018-04-23 09:34:26 +0000106 Line->ChildrenAffected = computeAffectedLines(Line->Children);
Eric Liu4cfb88a2016-04-25 15:09:22 +0000107 if (Line->ChildrenAffected)
108 SomeLineAffected = true;
109
110 // Stores whether one of the line's tokens is directly affected.
111 bool SomeTokenAffected = false;
112 // Stores whether we need to look at the leading newlines of the next token
113 // in order to determine whether it was affected.
114 bool IncludeLeadingNewlines = false;
115
116 // Stores whether the first child line of any of this line's tokens is
117 // affected.
118 bool SomeFirstChildAffected = false;
119
120 for (FormatToken *Tok = Line->First; Tok; Tok = Tok->Next) {
121 // Determine whether 'Tok' was affected.
122 if (affectsTokenRange(*Tok, *Tok, IncludeLeadingNewlines))
123 SomeTokenAffected = true;
124
125 // Determine whether the first child of 'Tok' was affected.
126 if (!Tok->Children.empty() && Tok->Children.front()->Affected)
127 SomeFirstChildAffected = true;
128
129 IncludeLeadingNewlines = Tok->Children.empty();
130 }
131
132 // Was this line moved, i.e. has it previously been on the same line as an
133 // affected line?
134 bool LineMoved = PreviousLine && PreviousLine->Affected &&
135 Line->First->NewlinesBefore == 0;
136
137 bool IsContinuedComment =
138 Line->First->is(tok::comment) && Line->First->Next == nullptr &&
139 Line->First->NewlinesBefore < 2 && PreviousLine &&
140 PreviousLine->Affected && PreviousLine->Last->is(tok::comment);
141
Manuel Klimek0dddcf72018-04-23 09:34:26 +0000142 bool IsAffectedClosingBrace =
143 Line->First->is(tok::r_brace) &&
144 Line->MatchingOpeningBlockLineIndex != UnwrappedLine::kInvalidIndex &&
145 Lines[Line->MatchingOpeningBlockLineIndex]->Affected;
146
Eric Liu4cfb88a2016-04-25 15:09:22 +0000147 if (SomeTokenAffected || SomeFirstChildAffected || LineMoved ||
Manuel Klimek0dddcf72018-04-23 09:34:26 +0000148 IsContinuedComment || IsAffectedClosingBrace) {
Eric Liu4cfb88a2016-04-25 15:09:22 +0000149 Line->Affected = true;
150 SomeLineAffected = true;
151 }
152 return SomeLineAffected;
153}
154
155} // namespace format
156} // namespace clang