1 //===--- NamespaceEndCommentsFixer.cpp --------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 ///
9 /// \file
10 /// This file implements NamespaceEndCommentsFixer, a TokenAnalyzer that
11 /// fixes namespace end comments.
12 ///
13 //===----------------------------------------------------------------------===//
14 
15 #include "NamespaceEndCommentsFixer.h"
16 #include "llvm/Support/Debug.h"
17 #include "llvm/Support/Regex.h"
18 
19 #define DEBUG_TYPE "namespace-end-comments-fixer"
20 
21 namespace clang {
22 namespace format {
23 
24 namespace {
25 // Computes the name of a namespace given the namespace token.
26 // Returns "" for anonymous namespace.
27 std::string computeName(const FormatToken *NamespaceTok) {
28   assert(NamespaceTok &&
29          NamespaceTok->isOneOf(tok::kw_namespace, TT_NamespaceMacro) &&
30          "expecting a namespace token");
31   std::string name;
32   const FormatToken *Tok = NamespaceTok->getNextNonComment();
33   if (NamespaceTok->is(TT_NamespaceMacro)) {
34     // Collects all the non-comment tokens between opening parenthesis
35     // and closing parenthesis or comma.
36     assert(Tok && Tok->is(tok::l_paren) && "expected an opening parenthesis");
37     Tok = Tok->getNextNonComment();
38     while (Tok && !Tok->isOneOf(tok::r_paren, tok::comma)) {
39       name += Tok->TokenText;
40       Tok = Tok->getNextNonComment();
41     }
42   } else {
43     // For `namespace [[foo]] A::B::inline C {` or
44     // `namespace MACRO1 MACRO2 A::B::inline C {`, returns "A::B::inline C".
45     // Peek for the first '::' (or '{') and then return all tokens from one
46     // token before that up until the '{'.
47     const FormatToken *FirstNSTok = Tok;
48     while (Tok && !Tok->is(tok::l_brace) && !Tok->is(tok::coloncolon)) {
49       FirstNSTok = Tok;
50       Tok = Tok->getNextNonComment();
51     }
52 
53     Tok = FirstNSTok;
54     while (Tok && !Tok->is(tok::l_brace)) {
55       name += Tok->TokenText;
56       if (Tok->is(tok::kw_inline))
57         name += " ";
58       Tok = Tok->getNextNonComment();
59     }
60   }
61   return name;
62 }
63 
64 std::string computeEndCommentText(StringRef NamespaceName, bool AddNewline,
65                                   const FormatToken *NamespaceTok,
66                                   unsigned SpacesToAdd) {
67   std::string text = "//";
68   text.append(SpacesToAdd, ' ');
69   text += NamespaceTok->TokenText;
70   if (NamespaceTok->is(TT_NamespaceMacro))
71     text += "(";
72   else if (!NamespaceName.empty())
73     text += ' ';
74   text += NamespaceName;
75   if (NamespaceTok->is(TT_NamespaceMacro))
76     text += ")";
77   if (AddNewline)
78     text += '\n';
79   return text;
80 }
81 
82 bool hasEndComment(const FormatToken *RBraceTok) {
83   return RBraceTok->Next && RBraceTok->Next->is(tok::comment);
84 }
85 
86 bool validEndComment(const FormatToken *RBraceTok, StringRef NamespaceName,
87                      const FormatToken *NamespaceTok) {
88   assert(hasEndComment(RBraceTok));
89   const FormatToken *Comment = RBraceTok->Next;
90 
91   // Matches a valid namespace end comment.
92   // Valid namespace end comments don't need to be edited.
93   static const llvm::Regex NamespaceCommentPattern =
94       llvm::Regex("^/[/*] *(end (of )?)? *(anonymous|unnamed)? *"
95                   "namespace( +([a-zA-Z0-9:_]+))?\\.? *(\\*/)?$",
96                   llvm::Regex::IgnoreCase);
97   static const llvm::Regex NamespaceMacroCommentPattern =
98       llvm::Regex("^/[/*] *(end (of )?)? *(anonymous|unnamed)? *"
99                   "([a-zA-Z0-9_]+)\\(([a-zA-Z0-9:_]*)\\)\\.? *(\\*/)?$",
100                   llvm::Regex::IgnoreCase);
101 
102   SmallVector<StringRef, 8> Groups;
103   if (NamespaceTok->is(TT_NamespaceMacro) &&
104       NamespaceMacroCommentPattern.match(Comment->TokenText, &Groups)) {
105     StringRef NamespaceTokenText = Groups.size() > 4 ? Groups[4] : "";
106     // The name of the macro must be used.
107     if (NamespaceTokenText != NamespaceTok->TokenText)
108       return false;
109   } else if (NamespaceTok->isNot(tok::kw_namespace) ||
110              !NamespaceCommentPattern.match(Comment->TokenText, &Groups)) {
111     // Comment does not match regex.
112     return false;
113   }
114   StringRef NamespaceNameInComment = Groups.size() > 5 ? Groups[5] : "";
115   // Anonymous namespace comments must not mention a namespace name.
116   if (NamespaceName.empty() && !NamespaceNameInComment.empty())
117     return false;
118   StringRef AnonymousInComment = Groups.size() > 3 ? Groups[3] : "";
119   // Named namespace comments must not mention anonymous namespace.
120   if (!NamespaceName.empty() && !AnonymousInComment.empty())
121     return false;
122   if (NamespaceNameInComment == NamespaceName)
123     return true;
124 
125   // Has namespace comment flowed onto the next line.
126   // } // namespace
127   //   // verylongnamespacenamethatdidnotfitonthepreviouscommentline
128   if (!(Comment->Next && Comment->Next->is(TT_LineComment)))
129     return false;
130 
131   static const llvm::Regex CommentPattern = llvm::Regex(
132       "^/[/*] *( +([a-zA-Z0-9:_]+))?\\.? *(\\*/)?$", llvm::Regex::IgnoreCase);
133 
134   // Pull out just the comment text.
135   if (!CommentPattern.match(Comment->Next->TokenText, &Groups))
136     return false;
137   NamespaceNameInComment = Groups.size() > 2 ? Groups[2] : "";
138 
139   return NamespaceNameInComment == NamespaceName;
140 }
141 
142 void addEndComment(const FormatToken *RBraceTok, StringRef EndCommentText,
143                    const SourceManager &SourceMgr,
144                    tooling::Replacements *Fixes) {
145   auto EndLoc = RBraceTok->Tok.getEndLoc();
146   auto Range = CharSourceRange::getCharRange(EndLoc, EndLoc);
147   auto Err = Fixes->add(tooling::Replacement(SourceMgr, Range, EndCommentText));
148   if (Err) {
149     llvm::errs() << "Error while adding namespace end comment: "
150                  << llvm::toString(std::move(Err)) << "\n";
151   }
152 }
153 
154 void updateEndComment(const FormatToken *RBraceTok, StringRef EndCommentText,
155                       const SourceManager &SourceMgr,
156                       tooling::Replacements *Fixes) {
157   assert(hasEndComment(RBraceTok));
158   const FormatToken *Comment = RBraceTok->Next;
159   auto Range = CharSourceRange::getCharRange(Comment->getStartOfNonWhitespace(),
160                                              Comment->Tok.getEndLoc());
161   auto Err = Fixes->add(tooling::Replacement(SourceMgr, Range, EndCommentText));
162   if (Err) {
163     llvm::errs() << "Error while updating namespace end comment: "
164                  << llvm::toString(std::move(Err)) << "\n";
165   }
166 }
167 } // namespace
168 
169 const FormatToken *
170 getNamespaceToken(const AnnotatedLine *Line,
171                   const SmallVectorImpl<AnnotatedLine *> &AnnotatedLines) {
172   if (!Line->Affected || Line->InPPDirective || !Line->startsWith(tok::r_brace))
173     return nullptr;
174   size_t StartLineIndex = Line->MatchingOpeningBlockLineIndex;
175   if (StartLineIndex == UnwrappedLine::kInvalidIndex)
176     return nullptr;
177   assert(StartLineIndex < AnnotatedLines.size());
178   const FormatToken *NamespaceTok = AnnotatedLines[StartLineIndex]->First;
179   if (NamespaceTok->is(tok::l_brace)) {
180     // "namespace" keyword can be on the line preceding '{', e.g. in styles
181     // where BraceWrapping.AfterNamespace is true.
182     if (StartLineIndex > 0) {
183       NamespaceTok = AnnotatedLines[StartLineIndex - 1]->First;
184       if (AnnotatedLines[StartLineIndex - 1]->endsWith(tok::semi))
185         return nullptr;
186     }
187   }
188 
189   return NamespaceTok->getNamespaceToken();
190 }
191 
192 StringRef
193 getNamespaceTokenText(const AnnotatedLine *Line,
194                       const SmallVectorImpl<AnnotatedLine *> &AnnotatedLines) {
195   const FormatToken *NamespaceTok = getNamespaceToken(Line, AnnotatedLines);
196   return NamespaceTok ? NamespaceTok->TokenText : StringRef();
197 }
198 
199 NamespaceEndCommentsFixer::NamespaceEndCommentsFixer(const Environment &Env,
200                                                      const FormatStyle &Style)
201     : TokenAnalyzer(Env, Style) {}
202 
203 std::pair<tooling::Replacements, unsigned> NamespaceEndCommentsFixer::analyze(
204     TokenAnnotator &Annotator, SmallVectorImpl<AnnotatedLine *> &AnnotatedLines,
205     FormatTokenLexer &Tokens) {
206   const SourceManager &SourceMgr = Env.getSourceManager();
207   AffectedRangeMgr.computeAffectedLines(AnnotatedLines);
208   tooling::Replacements Fixes;
209 
210   // Spin through the lines and ensure we have balanced braces.
211   int Braces = 0;
212   for (AnnotatedLine *Line : AnnotatedLines) {
213     FormatToken *Tok = Line->First;
214     while (Tok) {
215       Braces += Tok->is(tok::l_brace) ? 1 : Tok->is(tok::r_brace) ? -1 : 0;
216       Tok = Tok->Next;
217     }
218   }
219   // Don't attempt to comment unbalanced braces or this can
220   // lead to comments being placed on the closing brace which isn't
221   // the matching brace of the namespace. (occurs during incomplete editing).
222   if (Braces != 0)
223     return {Fixes, 0};
224 
225   std::string AllNamespaceNames;
226   size_t StartLineIndex = SIZE_MAX;
227   StringRef NamespaceTokenText;
228   unsigned int CompactedNamespacesCount = 0;
229   for (size_t I = 0, E = AnnotatedLines.size(); I != E; ++I) {
230     const AnnotatedLine *EndLine = AnnotatedLines[I];
231     const FormatToken *NamespaceTok =
232         getNamespaceToken(EndLine, AnnotatedLines);
233     if (!NamespaceTok)
234       continue;
235     FormatToken *RBraceTok = EndLine->First;
236     if (RBraceTok->Finalized)
237       continue;
238     RBraceTok->Finalized = true;
239     const FormatToken *EndCommentPrevTok = RBraceTok;
240     // Namespaces often end with '};'. In that case, attach namespace end
241     // comments to the semicolon tokens.
242     if (RBraceTok->Next && RBraceTok->Next->is(tok::semi))
243       EndCommentPrevTok = RBraceTok->Next;
244     if (StartLineIndex == SIZE_MAX)
245       StartLineIndex = EndLine->MatchingOpeningBlockLineIndex;
246     std::string NamespaceName = computeName(NamespaceTok);
247     if (Style.CompactNamespaces) {
248       if (CompactedNamespacesCount == 0)
249         NamespaceTokenText = NamespaceTok->TokenText;
250       if ((I + 1 < E) &&
251           NamespaceTokenText ==
252               getNamespaceTokenText(AnnotatedLines[I + 1], AnnotatedLines) &&
253           StartLineIndex - CompactedNamespacesCount - 1 ==
254               AnnotatedLines[I + 1]->MatchingOpeningBlockLineIndex &&
255           !AnnotatedLines[I + 1]->First->Finalized) {
256         if (hasEndComment(EndCommentPrevTok)) {
257           // remove end comment, it will be merged in next one
258           updateEndComment(EndCommentPrevTok, std::string(), SourceMgr, &Fixes);
259         }
260         ++CompactedNamespacesCount;
261         if (!NamespaceName.empty())
262           AllNamespaceNames = "::" + NamespaceName + AllNamespaceNames;
263         continue;
264       }
265       NamespaceName += AllNamespaceNames;
266       CompactedNamespacesCount = 0;
267       AllNamespaceNames = std::string();
268     }
269     // The next token in the token stream after the place where the end comment
270     // token must be. This is either the next token on the current line or the
271     // first token on the next line.
272     const FormatToken *EndCommentNextTok = EndCommentPrevTok->Next;
273     if (EndCommentNextTok && EndCommentNextTok->is(tok::comment))
274       EndCommentNextTok = EndCommentNextTok->Next;
275     if (!EndCommentNextTok && I + 1 < E)
276       EndCommentNextTok = AnnotatedLines[I + 1]->First;
277     bool AddNewline = EndCommentNextTok &&
278                       EndCommentNextTok->NewlinesBefore == 0 &&
279                       EndCommentNextTok->isNot(tok::eof);
280     const std::string EndCommentText =
281         computeEndCommentText(NamespaceName, AddNewline, NamespaceTok,
282                               Style.SpacesInLineCommentPrefix.Minimum);
283     if (!hasEndComment(EndCommentPrevTok)) {
284       bool isShort = I - StartLineIndex <= Style.ShortNamespaceLines + 1;
285       if (!isShort)
286         addEndComment(EndCommentPrevTok, EndCommentText, SourceMgr, &Fixes);
287     } else if (!validEndComment(EndCommentPrevTok, NamespaceName,
288                                 NamespaceTok)) {
289       updateEndComment(EndCommentPrevTok, EndCommentText, SourceMgr, &Fixes);
290     }
291     StartLineIndex = SIZE_MAX;
292   }
293   return {Fixes, 0};
294 }
295 
296 } // namespace format
297 } // namespace clang
298