clang  19.0.0git
HeaderIncludes.cpp
Go to the documentation of this file.
1 //===--- HeaderIncludes.cpp - Insert/Delete #includes --*- 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 
12 #include "clang/Lex/Lexer.h"
13 #include "llvm/Support/FormatVariadic.h"
14 #include "llvm/Support/Path.h"
15 #include <optional>
16 
17 namespace clang {
18 namespace tooling {
19 namespace {
20 
21 LangOptions createLangOpts() {
22  LangOptions LangOpts;
23  LangOpts.CPlusPlus = 1;
24  LangOpts.CPlusPlus11 = 1;
25  LangOpts.CPlusPlus14 = 1;
26  LangOpts.LineComment = 1;
27  LangOpts.CXXOperatorNames = 1;
28  LangOpts.Bool = 1;
29  LangOpts.ObjC = 1;
30  LangOpts.MicrosoftExt = 1; // To get kw___try, kw___finally.
31  LangOpts.DeclSpecKeyword = 1; // To get __declspec.
32  LangOpts.WChar = 1; // To get wchar_t
33  return LangOpts;
34 }
35 
36 // Returns the offset after skipping a sequence of tokens, matched by \p
37 // GetOffsetAfterSequence, from the start of the code.
38 // \p GetOffsetAfterSequence should be a function that matches a sequence of
39 // tokens and returns an offset after the sequence.
40 unsigned getOffsetAfterTokenSequence(
41  StringRef FileName, StringRef Code, const IncludeStyle &Style,
42  llvm::function_ref<unsigned(const SourceManager &, Lexer &, Token &)>
43  GetOffsetAfterSequence) {
44  SourceManagerForFile VirtualSM(FileName, Code);
45  SourceManager &SM = VirtualSM.get();
46  LangOptions LangOpts = createLangOpts();
47  Lexer Lex(SM.getMainFileID(), SM.getBufferOrFake(SM.getMainFileID()), SM,
48  LangOpts);
49  Token Tok;
50  // Get the first token.
51  Lex.LexFromRawLexer(Tok);
52  return GetOffsetAfterSequence(SM, Lex, Tok);
53 }
54 
55 // Check if a sequence of tokens is like "#<Name> <raw_identifier>". If it is,
56 // \p Tok will be the token after this directive; otherwise, it can be any token
57 // after the given \p Tok (including \p Tok). If \p RawIDName is provided, the
58 // (second) raw_identifier name is checked.
59 bool checkAndConsumeDirectiveWithName(
60  Lexer &Lex, StringRef Name, Token &Tok,
61  std::optional<StringRef> RawIDName = std::nullopt) {
62  bool Matched = Tok.is(tok::hash) && !Lex.LexFromRawLexer(Tok) &&
63  Tok.is(tok::raw_identifier) &&
64  Tok.getRawIdentifier() == Name && !Lex.LexFromRawLexer(Tok) &&
65  Tok.is(tok::raw_identifier) &&
66  (!RawIDName || Tok.getRawIdentifier() == *RawIDName);
67  if (Matched)
68  Lex.LexFromRawLexer(Tok);
69  return Matched;
70 }
71 
72 void skipComments(Lexer &Lex, Token &Tok) {
73  while (Tok.is(tok::comment))
74  if (Lex.LexFromRawLexer(Tok))
75  return;
76 }
77 
78 // Returns the offset after header guard directives and any comments
79 // before/after header guards (e.g. #ifndef/#define pair, #pragma once). If no
80 // header guard is present in the code, this will return the offset after
81 // skipping all comments from the start of the code.
82 unsigned getOffsetAfterHeaderGuardsAndComments(StringRef FileName,
83  StringRef Code,
84  const IncludeStyle &Style) {
85  // \p Consume returns location after header guard or 0 if no header guard is
86  // found.
87  auto ConsumeHeaderGuardAndComment =
88  [&](std::function<unsigned(const SourceManager &SM, Lexer &Lex,
89  Token Tok)>
90  Consume) {
91  return getOffsetAfterTokenSequence(
92  FileName, Code, Style,
93  [&Consume](const SourceManager &SM, Lexer &Lex, Token Tok) {
94  skipComments(Lex, Tok);
95  unsigned InitialOffset = SM.getFileOffset(Tok.getLocation());
96  return std::max(InitialOffset, Consume(SM, Lex, Tok));
97  });
98  };
99  return std::max(
100  // #ifndef/#define
101  ConsumeHeaderGuardAndComment(
102  [](const SourceManager &SM, Lexer &Lex, Token Tok) -> unsigned {
103  if (checkAndConsumeDirectiveWithName(Lex, "ifndef", Tok)) {
104  skipComments(Lex, Tok);
105  if (checkAndConsumeDirectiveWithName(Lex, "define", Tok) &&
106  Tok.isAtStartOfLine())
107  return SM.getFileOffset(Tok.getLocation());
108  }
109  return 0;
110  }),
111  // #pragma once
112  ConsumeHeaderGuardAndComment(
113  [](const SourceManager &SM, Lexer &Lex, Token Tok) -> unsigned {
114  if (checkAndConsumeDirectiveWithName(Lex, "pragma", Tok,
115  StringRef("once")))
116  return SM.getFileOffset(Tok.getLocation());
117  return 0;
118  }));
119 }
120 
121 // Check if a sequence of tokens is like
122 // "#include ("header.h" | <header.h>)".
123 // If it is, \p Tok will be the token after this directive; otherwise, it can be
124 // any token after the given \p Tok (including \p Tok).
125 bool checkAndConsumeInclusiveDirective(Lexer &Lex, Token &Tok) {
126  auto Matched = [&]() {
127  Lex.LexFromRawLexer(Tok);
128  return true;
129  };
130  if (Tok.is(tok::hash) && !Lex.LexFromRawLexer(Tok) &&
131  Tok.is(tok::raw_identifier) && Tok.getRawIdentifier() == "include") {
132  if (Lex.LexFromRawLexer(Tok))
133  return false;
134  if (Tok.is(tok::string_literal))
135  return Matched();
136  if (Tok.is(tok::less)) {
137  while (!Lex.LexFromRawLexer(Tok) && Tok.isNot(tok::greater)) {
138  }
139  if (Tok.is(tok::greater))
140  return Matched();
141  }
142  }
143  return false;
144 }
145 
146 // Returns the offset of the last #include directive after which a new
147 // #include can be inserted. This ignores #include's after the #include block(s)
148 // in the beginning of a file to avoid inserting headers into code sections
149 // where new #include's should not be added by default.
150 // These code sections include:
151 // - raw string literals (containing #include).
152 // - #if blocks.
153 // - Special #include's among declarations (e.g. functions).
154 //
155 // If no #include after which a new #include can be inserted, this returns the
156 // offset after skipping all comments from the start of the code.
157 // Inserting after an #include is not allowed if it comes after code that is not
158 // #include (e.g. pre-processing directive that is not #include, declarations).
159 unsigned getMaxHeaderInsertionOffset(StringRef FileName, StringRef Code,
160  const IncludeStyle &Style) {
161  return getOffsetAfterTokenSequence(
162  FileName, Code, Style,
163  [](const SourceManager &SM, Lexer &Lex, Token Tok) {
164  skipComments(Lex, Tok);
165  unsigned MaxOffset = SM.getFileOffset(Tok.getLocation());
166  while (checkAndConsumeInclusiveDirective(Lex, Tok))
167  MaxOffset = SM.getFileOffset(Tok.getLocation());
168  return MaxOffset;
169  });
170 }
171 
172 inline StringRef trimInclude(StringRef IncludeName) {
173  return IncludeName.trim("\"<>");
174 }
175 
176 const char IncludeRegexPattern[] =
177  R"(^[\t\ ]*#[\t\ ]*(import|include)[^"<]*(["<][^">]*[">]))";
178 
179 // The filename of Path excluding extension.
180 // Used to match implementation with headers, this differs from sys::path::stem:
181 // - in names with multiple dots (foo.cu.cc) it terminates at the *first*
182 // - an empty stem is never returned: /foo/.bar.x => .bar
183 // - we don't bother to handle . and .. specially
184 StringRef matchingStem(llvm::StringRef Path) {
185  StringRef Name = llvm::sys::path::filename(Path);
186  return Name.substr(0, Name.find('.', 1));
187 }
188 
189 } // anonymous namespace
190 
192  StringRef FileName)
193  : Style(Style), FileName(FileName) {
194  for (const auto &Category : Style.IncludeCategories) {
195  CategoryRegexs.emplace_back(Category.Regex, Category.RegexIsCaseSensitive
196  ? llvm::Regex::NoFlags
197  : llvm::Regex::IgnoreCase);
198  }
199  IsMainFile = FileName.ends_with(".c") || FileName.ends_with(".cc") ||
200  FileName.ends_with(".cpp") || FileName.ends_with(".c++") ||
201  FileName.ends_with(".cxx") || FileName.ends_with(".m") ||
202  FileName.ends_with(".mm");
203  if (!Style.IncludeIsMainSourceRegex.empty()) {
204  llvm::Regex MainFileRegex(Style.IncludeIsMainSourceRegex);
205  IsMainFile |= MainFileRegex.match(FileName);
206  }
207 }
208 
210  bool CheckMainHeader) const {
211  int Ret = INT_MAX;
212  for (unsigned i = 0, e = CategoryRegexs.size(); i != e; ++i)
213  if (CategoryRegexs[i].match(IncludeName)) {
214  Ret = Style.IncludeCategories[i].Priority;
215  break;
216  }
217  if (CheckMainHeader && IsMainFile && Ret > 0 && isMainHeader(IncludeName))
218  Ret = 0;
219  return Ret;
220 }
221 
223  bool CheckMainHeader) const {
224  int Ret = INT_MAX;
225  for (unsigned i = 0, e = CategoryRegexs.size(); i != e; ++i)
226  if (CategoryRegexs[i].match(IncludeName)) {
227  Ret = Style.IncludeCategories[i].SortPriority;
228  if (Ret == 0)
229  Ret = Style.IncludeCategories[i].Priority;
230  break;
231  }
232  if (CheckMainHeader && IsMainFile && Ret > 0 && isMainHeader(IncludeName))
233  Ret = 0;
234  return Ret;
235 }
236 bool IncludeCategoryManager::isMainHeader(StringRef IncludeName) const {
237  switch (Style.MainIncludeChar) {
239  if (!IncludeName.starts_with("\""))
240  return false;
241  break;
243  if (!IncludeName.starts_with("<"))
244  return false;
245  break;
247  break;
248  }
249 
250  IncludeName =
251  IncludeName.drop_front(1).drop_back(1); // remove the surrounding "" or <>
252  // Not matchingStem: implementation files may have compound extensions but
253  // headers may not.
254  StringRef HeaderStem = llvm::sys::path::stem(IncludeName);
255  StringRef FileStem = llvm::sys::path::stem(FileName); // foo.cu for foo.cu.cc
256  StringRef MatchingFileStem = matchingStem(FileName); // foo for foo.cu.cc
257  // main-header examples:
258  // 1) foo.h => foo.cc
259  // 2) foo.h => foo.cu.cc
260  // 3) foo.proto.h => foo.proto.cc
261  //
262  // non-main-header examples:
263  // 1) foo.h => bar.cc
264  // 2) foo.proto.h => foo.cc
265  StringRef Matching;
266  if (MatchingFileStem.starts_with_insensitive(HeaderStem))
267  Matching = MatchingFileStem; // example 1), 2)
268  else if (FileStem.equals_insensitive(HeaderStem))
269  Matching = FileStem; // example 3)
270  if (!Matching.empty()) {
271  llvm::Regex MainIncludeRegex(HeaderStem.str() + Style.IncludeIsMainRegex,
272  llvm::Regex::IgnoreCase);
273  if (MainIncludeRegex.match(Matching))
274  return true;
275  }
276  return false;
277 }
278 
279 const llvm::Regex HeaderIncludes::IncludeRegex(IncludeRegexPattern);
280 
281 HeaderIncludes::HeaderIncludes(StringRef FileName, StringRef Code,
282  const IncludeStyle &Style)
283  : FileName(FileName), Code(Code), FirstIncludeOffset(-1),
284  MinInsertOffset(
285  getOffsetAfterHeaderGuardsAndComments(FileName, Code, Style)),
286  MaxInsertOffset(MinInsertOffset +
287  getMaxHeaderInsertionOffset(
288  FileName, Code.drop_front(MinInsertOffset), Style)),
289  MainIncludeFound(false),
290  Categories(Style, FileName) {
291  // Add 0 for main header and INT_MAX for headers that are not in any
292  // category.
293  Priorities = {0, INT_MAX};
294  for (const auto &Category : Style.IncludeCategories)
295  Priorities.insert(Category.Priority);
297  Code.drop_front(MinInsertOffset).split(Lines, "\n");
298 
299  unsigned Offset = MinInsertOffset;
300  unsigned NextLineOffset;
302  for (auto Line : Lines) {
303  NextLineOffset = std::min(Code.size(), Offset + Line.size() + 1);
304  if (IncludeRegex.match(Line, &Matches)) {
305  // If this is the last line without trailing newline, we need to make
306  // sure we don't delete across the file boundary.
307  addExistingInclude(
308  Include(Matches[2],
310  Offset, std::min(Line.size() + 1, Code.size() - Offset)),
311  Matches[1] == "import" ? tooling::IncludeDirective::Import
313  NextLineOffset);
314  }
315  Offset = NextLineOffset;
316  }
317 
318  // Populate CategoryEndOfssets:
319  // - Ensure that CategoryEndOffset[Highest] is always populated.
320  // - If CategoryEndOffset[Priority] isn't set, use the next higher value
321  // that is set, up to CategoryEndOffset[Highest].
322  auto Highest = Priorities.begin();
323  if (CategoryEndOffsets.find(*Highest) == CategoryEndOffsets.end()) {
324  if (FirstIncludeOffset >= 0)
325  CategoryEndOffsets[*Highest] = FirstIncludeOffset;
326  else
327  CategoryEndOffsets[*Highest] = MinInsertOffset;
328  }
329  // By this point, CategoryEndOffset[Highest] is always set appropriately:
330  // - to an appropriate location before/after existing #includes, or
331  // - to right after the header guard, or
332  // - to the beginning of the file.
333  for (auto I = ++Priorities.begin(), E = Priorities.end(); I != E; ++I)
334  if (CategoryEndOffsets.find(*I) == CategoryEndOffsets.end())
335  CategoryEndOffsets[*I] = CategoryEndOffsets[*std::prev(I)];
336 }
337 
338 // \p Offset: the start of the line following this include directive.
339 void HeaderIncludes::addExistingInclude(Include IncludeToAdd,
340  unsigned NextLineOffset) {
341  auto Iter =
342  ExistingIncludes.try_emplace(trimInclude(IncludeToAdd.Name)).first;
343  Iter->second.push_back(std::move(IncludeToAdd));
344  auto &CurInclude = Iter->second.back();
345  // The header name with quotes or angle brackets.
346  // Only record the offset of current #include if we can insert after it.
347  if (CurInclude.R.getOffset() <= MaxInsertOffset) {
348  int Priority = Categories.getIncludePriority(
349  CurInclude.Name, /*CheckMainHeader=*/!MainIncludeFound);
350  if (Priority == 0)
351  MainIncludeFound = true;
352  CategoryEndOffsets[Priority] = NextLineOffset;
353  IncludesByPriority[Priority].push_back(&CurInclude);
354  if (FirstIncludeOffset < 0)
355  FirstIncludeOffset = CurInclude.R.getOffset();
356  }
357 }
358 
359 std::optional<tooling::Replacement>
360 HeaderIncludes::insert(llvm::StringRef IncludeName, bool IsAngled,
361  IncludeDirective Directive) const {
362  assert(IncludeName == trimInclude(IncludeName));
363  // If a <header> ("header") already exists in code, "header" (<header>) with
364  // different quotation and/or directive will still be inserted.
365  // FIXME: figure out if this is the best behavior.
366  auto It = ExistingIncludes.find(IncludeName);
367  if (It != ExistingIncludes.end()) {
368  for (const auto &Inc : It->second)
369  if (Inc.Directive == Directive &&
370  ((IsAngled && StringRef(Inc.Name).starts_with("<")) ||
371  (!IsAngled && StringRef(Inc.Name).starts_with("\""))))
372  return std::nullopt;
373  }
374  std::string Quoted =
375  std::string(llvm::formatv(IsAngled ? "<{0}>" : "\"{0}\"", IncludeName));
376  StringRef QuotedName = Quoted;
377  int Priority = Categories.getIncludePriority(
378  QuotedName, /*CheckMainHeader=*/!MainIncludeFound);
379  auto CatOffset = CategoryEndOffsets.find(Priority);
380  assert(CatOffset != CategoryEndOffsets.end());
381  unsigned InsertOffset = CatOffset->second; // Fall back offset
382  auto Iter = IncludesByPriority.find(Priority);
383  if (Iter != IncludesByPriority.end()) {
384  for (const auto *Inc : Iter->second) {
385  if (QuotedName < Inc->Name) {
386  InsertOffset = Inc->R.getOffset();
387  break;
388  }
389  }
390  }
391  assert(InsertOffset <= Code.size());
392  llvm::StringRef DirectiveSpelling =
393  Directive == IncludeDirective::Include ? "include" : "import";
394  std::string NewInclude =
395  llvm::formatv("#{0} {1}\n", DirectiveSpelling, QuotedName);
396  // When inserting headers at end of the code, also append '\n' to the code
397  // if it does not end with '\n'.
398  // FIXME: when inserting multiple #includes at the end of code, only one
399  // newline should be added.
400  if (InsertOffset == Code.size() && (!Code.empty() && Code.back() != '\n'))
401  NewInclude = "\n" + NewInclude;
402  return tooling::Replacement(FileName, InsertOffset, 0, NewInclude);
403 }
404 
405 tooling::Replacements HeaderIncludes::remove(llvm::StringRef IncludeName,
406  bool IsAngled) const {
407  assert(IncludeName == trimInclude(IncludeName));
408  tooling::Replacements Result;
409  auto Iter = ExistingIncludes.find(IncludeName);
410  if (Iter == ExistingIncludes.end())
411  return Result;
412  for (const auto &Inc : Iter->second) {
413  if ((IsAngled && StringRef(Inc.Name).starts_with("\"")) ||
414  (!IsAngled && StringRef(Inc.Name).starts_with("<")))
415  continue;
416  llvm::Error Err = Result.add(tooling::Replacement(
417  FileName, Inc.R.getOffset(), Inc.R.getLength(), ""));
418  if (Err) {
419  auto ErrMsg = "Unexpected conflicts in #include deletions: " +
420  llvm::toString(std::move(Err));
421  llvm_unreachable(ErrMsg.c_str());
422  }
423  }
424  return Result;
425 }
426 
427 } // namespace tooling
428 } // namespace clang
#define SM(sm)
Definition: Cuda.cpp:83
Defines the clang::FileManager interface and associated types.
int Priority
Definition: Format.cpp:2980
unsigned Offset
Definition: Format.cpp:2978
int Category
Definition: Format.cpp:2979
unsigned Iter
Definition: HTMLLogger.cpp:154
Defines the SourceManager interface.
__DEVICE__ int min(int __a, int __b)
__DEVICE__ int max(int __a, int __b)
Directive - Abstract class representing a parsed verify directive.
tooling::Replacements remove(llvm::StringRef Header, bool IsAngled) const
Removes all existing #includes and #imports of Header quoted with <> if IsAngled is true or "" if IsA...
static const llvm::Regex IncludeRegex
HeaderIncludes(llvm::StringRef FileName, llvm::StringRef Code, const IncludeStyle &Style)
std::optional< tooling::Replacement > insert(llvm::StringRef Header, bool IsAngled, IncludeDirective Directive) const
Inserts an #include or #import directive of Header into the code.
int getIncludePriority(StringRef IncludeName, bool CheckMainHeader) const
Returns the priority of the category which IncludeName belongs to.
IncludeCategoryManager(const IncludeStyle &Style, StringRef FileName)
int getSortIncludePriority(StringRef IncludeName, bool CheckMainHeader) const
A source range independent of the SourceManager.
Definition: Replacement.h:44
A text replacement.
Definition: Replacement.h:83
Maintains a set of replacements that are conflict-free.
Definition: Replacement.h:212
#define INT_MAX
Definition: limits.h:50
SmallVector< BoundNodes, 1 > match(MatcherT Matcher, const NodeT &Node, ASTContext &Context)
Returns the results of matching Matcher on Node.
bool Ret(InterpState &S, CodePtr &PC, APValue &Result)
Definition: Interp.h:218
std::string toString(const til::SExpr *E)
The JSON file list parser is used to communicate input to InstallAPI.
#define false
Definition: stdbool.h:26
Style for sorting and grouping C++ #include directives.
Definition: IncludeStyle.h:20
@ MICD_Quote
Main include uses quotes: #include "foo.hpp" (the default).
Definition: IncludeStyle.h:158
@ MICD_AngleBracket
Main include uses angle brackets: #include <foo.hpp>.
Definition: IncludeStyle.h:160
@ MICD_Any
Main include uses either quotes or angle brackets.
Definition: IncludeStyle.h:162