2014-05-20 00:39:08 +08:00
|
|
|
//===--- NamespaceCommentCheck.cpp - clang-tidy ---------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "NamespaceCommentCheck.h"
|
|
|
|
#include "clang/AST/ASTContext.h"
|
|
|
|
#include "clang/ASTMatchers/ASTMatchers.h"
|
|
|
|
#include "clang/Lex/Lexer.h"
|
2014-09-12 16:53:36 +08:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2014-05-20 00:39:08 +08:00
|
|
|
|
|
|
|
using namespace clang::ast_matchers;
|
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace tidy {
|
2014-09-22 18:41:39 +08:00
|
|
|
namespace readability {
|
2014-05-20 00:39:08 +08:00
|
|
|
|
2014-09-12 16:53:36 +08:00
|
|
|
NamespaceCommentCheck::NamespaceCommentCheck(StringRef Name,
|
|
|
|
ClangTidyContext *Context)
|
|
|
|
: ClangTidyCheck(Name, Context),
|
|
|
|
NamespaceCommentPattern("^/[/*] *(end (of )?)? *(anonymous|unnamed)? *"
|
2018-01-11 21:00:28 +08:00
|
|
|
"namespace( +([a-zA-Z0-9_:]+))?\\.? *(\\*/)?$",
|
2014-05-20 00:39:08 +08:00
|
|
|
llvm::Regex::IgnoreCase),
|
2014-09-12 16:53:36 +08:00
|
|
|
ShortNamespaceLines(Options.get("ShortNamespaceLines", 1u)),
|
2014-10-16 19:27:57 +08:00
|
|
|
SpacesBeforeComments(Options.get("SpacesBeforeComments", 1u)) {}
|
2014-09-12 16:53:36 +08:00
|
|
|
|
|
|
|
void NamespaceCommentCheck::storeOptions(ClangTidyOptions::OptionMap &Opts) {
|
|
|
|
Options.store(Opts, "ShortNamespaceLines", ShortNamespaceLines);
|
|
|
|
Options.store(Opts, "SpacesBeforeComments", SpacesBeforeComments);
|
|
|
|
}
|
2014-05-20 00:39:08 +08:00
|
|
|
|
|
|
|
void NamespaceCommentCheck::registerMatchers(MatchFinder *Finder) {
|
2015-09-03 00:05:21 +08:00
|
|
|
// Only register the matchers for C++; the functionality currently does not
|
|
|
|
// provide any benefit to other languages, despite being benign.
|
|
|
|
if (getLangOpts().CPlusPlus)
|
|
|
|
Finder->addMatcher(namespaceDecl().bind("namespace"), this);
|
2014-05-20 00:39:08 +08:00
|
|
|
}
|
|
|
|
|
2015-03-23 20:49:15 +08:00
|
|
|
static bool locationsInSameFile(const SourceManager &Sources,
|
|
|
|
SourceLocation Loc1, SourceLocation Loc2) {
|
2014-05-20 00:39:08 +08:00
|
|
|
return Loc1.isFileID() && Loc2.isFileID() &&
|
|
|
|
Sources.getFileID(Loc1) == Sources.getFileID(Loc2);
|
|
|
|
}
|
|
|
|
|
2015-03-23 20:49:15 +08:00
|
|
|
static std::string getNamespaceComment(const NamespaceDecl *ND,
|
|
|
|
bool InsertLineBreak) {
|
2014-05-20 00:39:08 +08:00
|
|
|
std::string Fix = "// namespace";
|
|
|
|
if (!ND->isAnonymousNamespace())
|
2014-09-22 18:41:39 +08:00
|
|
|
Fix.append(" ").append(ND->getNameAsString());
|
2014-05-20 00:39:08 +08:00
|
|
|
if (InsertLineBreak)
|
|
|
|
Fix.append("\n");
|
|
|
|
return Fix;
|
|
|
|
}
|
|
|
|
|
2018-01-11 21:00:28 +08:00
|
|
|
static std::string getNamespaceComment(const std::string &NameSpaceName,
|
|
|
|
bool InsertLineBreak) {
|
|
|
|
std::string Fix = "// namespace ";
|
|
|
|
Fix.append(NameSpaceName);
|
|
|
|
if (InsertLineBreak)
|
|
|
|
Fix.append("\n");
|
|
|
|
return Fix;
|
|
|
|
}
|
|
|
|
|
2014-05-20 00:39:08 +08:00
|
|
|
void NamespaceCommentCheck::check(const MatchFinder::MatchResult &Result) {
|
2016-12-14 23:29:23 +08:00
|
|
|
const auto *ND = Result.Nodes.getNodeAs<NamespaceDecl>("namespace");
|
2014-05-20 00:39:08 +08:00
|
|
|
const SourceManager &Sources = *Result.SourceManager;
|
|
|
|
|
2018-08-10 06:42:26 +08:00
|
|
|
if (!locationsInSameFile(Sources, ND->getBeginLoc(), ND->getRBraceLoc()))
|
2014-05-20 00:39:08 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Don't require closing comments for namespaces spanning less than certain
|
|
|
|
// number of lines.
|
2018-08-10 06:42:26 +08:00
|
|
|
unsigned StartLine = Sources.getSpellingLineNumber(ND->getBeginLoc());
|
2014-05-20 00:39:08 +08:00
|
|
|
unsigned EndLine = Sources.getSpellingLineNumber(ND->getRBraceLoc());
|
|
|
|
if (EndLine - StartLine + 1 <= ShortNamespaceLines)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Find next token after the namespace closing brace.
|
|
|
|
SourceLocation AfterRBrace = ND->getRBraceLoc().getLocWithOffset(1);
|
|
|
|
SourceLocation Loc = AfterRBrace;
|
|
|
|
Token Tok;
|
2018-01-11 21:00:28 +08:00
|
|
|
SourceLocation LBracketLocation = ND->getLocation();
|
|
|
|
SourceLocation NestedNamespaceBegin = LBracketLocation;
|
|
|
|
|
|
|
|
// Currently for nested namepsace (n1::n2::...) the AST matcher will match foo
|
|
|
|
// then bar instead of a single match. So if we got a nested namespace we have
|
|
|
|
// to skip the next ones.
|
|
|
|
for (const auto &EndOfNameLocation : Ends) {
|
|
|
|
if (Sources.isBeforeInTranslationUnit(NestedNamespaceBegin,
|
|
|
|
EndOfNameLocation))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ignore macros
|
|
|
|
if (!ND->getLocation().isMacroID()) {
|
|
|
|
while (Lexer::getRawToken(LBracketLocation, Tok, Sources, getLangOpts()) ||
|
|
|
|
!Tok.is(tok::l_brace)) {
|
|
|
|
LBracketLocation = LBracketLocation.getLocWithOffset(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto TextRange =
|
|
|
|
Lexer::getAsCharRange(SourceRange(NestedNamespaceBegin, LBracketLocation),
|
|
|
|
Sources, getLangOpts());
|
|
|
|
StringRef NestedNamespaceName =
|
|
|
|
Lexer::getSourceText(TextRange, Sources, getLangOpts()).rtrim();
|
|
|
|
bool IsNested = NestedNamespaceName.contains(':');
|
|
|
|
|
|
|
|
if (IsNested)
|
|
|
|
Ends.push_back(LBracketLocation);
|
|
|
|
else
|
|
|
|
NestedNamespaceName = ND->getName();
|
|
|
|
|
2014-05-20 00:39:08 +08:00
|
|
|
// Skip whitespace until we find the next token.
|
2016-09-24 10:13:45 +08:00
|
|
|
while (Lexer::getRawToken(Loc, Tok, Sources, getLangOpts()) ||
|
2015-12-16 23:44:42 +08:00
|
|
|
Tok.is(tok::semi)) {
|
2014-05-20 00:39:08 +08:00
|
|
|
Loc = Loc.getLocWithOffset(1);
|
|
|
|
}
|
2018-01-11 21:00:28 +08:00
|
|
|
|
2014-05-20 00:39:08 +08:00
|
|
|
if (!locationsInSameFile(Sources, ND->getRBraceLoc(), Loc))
|
|
|
|
return;
|
|
|
|
|
|
|
|
bool NextTokenIsOnSameLine = Sources.getSpellingLineNumber(Loc) == EndLine;
|
2014-05-20 01:46:28 +08:00
|
|
|
// If we insert a line comment before the token in the same line, we need
|
|
|
|
// to insert a line break.
|
2014-05-20 00:39:08 +08:00
|
|
|
bool NeedLineBreak = NextTokenIsOnSameLine && Tok.isNot(tok::eof);
|
|
|
|
|
2015-03-05 22:56:11 +08:00
|
|
|
SourceRange OldCommentRange(AfterRBrace, AfterRBrace);
|
2015-03-06 07:17:32 +08:00
|
|
|
std::string Message = "%0 not terminated with a closing comment";
|
2015-03-05 22:56:11 +08:00
|
|
|
|
2014-05-20 00:39:08 +08:00
|
|
|
// Try to find existing namespace closing comment on the same line.
|
|
|
|
if (Tok.is(tok::comment) && NextTokenIsOnSameLine) {
|
|
|
|
StringRef Comment(Sources.getCharacterData(Loc), Tok.getLength());
|
2014-10-16 23:11:54 +08:00
|
|
|
SmallVector<StringRef, 7> Groups;
|
2014-05-20 00:39:08 +08:00
|
|
|
if (NamespaceCommentPattern.match(Comment, &Groups)) {
|
2014-10-16 23:11:54 +08:00
|
|
|
StringRef NamespaceNameInComment = Groups.size() > 5 ? Groups[5] : "";
|
|
|
|
StringRef Anonymous = Groups.size() > 3 ? Groups[3] : "";
|
2014-05-20 00:39:08 +08:00
|
|
|
|
2018-01-11 21:00:28 +08:00
|
|
|
if (IsNested && NestedNamespaceName == NamespaceNameInComment) {
|
|
|
|
// C++17 nested namespace.
|
|
|
|
return;
|
|
|
|
} else if ((ND->isAnonymousNamespace() &&
|
|
|
|
NamespaceNameInComment.empty()) ||
|
|
|
|
(ND->getNameAsString() == NamespaceNameInComment &&
|
|
|
|
Anonymous.empty())) {
|
|
|
|
// Check if the namespace in the comment is the same.
|
2014-05-20 00:39:08 +08:00
|
|
|
// FIXME: Maybe we need a strict mode, where we always fix namespace
|
|
|
|
// comments with different format.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise we need to fix the comment.
|
|
|
|
NeedLineBreak = Comment.startswith("/*");
|
2015-03-05 22:56:11 +08:00
|
|
|
OldCommentRange =
|
|
|
|
SourceRange(AfterRBrace, Loc.getLocWithOffset(Tok.getLength()));
|
|
|
|
Message =
|
|
|
|
(llvm::Twine(
|
|
|
|
"%0 ends with a comment that refers to a wrong namespace '") +
|
2016-11-08 15:50:19 +08:00
|
|
|
NamespaceNameInComment + "'")
|
|
|
|
.str();
|
2015-03-05 22:56:11 +08:00
|
|
|
} else if (Comment.startswith("//")) {
|
|
|
|
// Assume that this is an unrecognized form of a namespace closing line
|
|
|
|
// comment. Replace it.
|
2014-05-20 00:39:08 +08:00
|
|
|
NeedLineBreak = false;
|
2015-03-05 22:56:11 +08:00
|
|
|
OldCommentRange =
|
|
|
|
SourceRange(AfterRBrace, Loc.getLocWithOffset(Tok.getLength()));
|
|
|
|
Message = "%0 ends with an unrecognized comment";
|
|
|
|
}
|
|
|
|
// If it's a block comment, just move it to the next line, as it can be
|
|
|
|
// multi-line or there may be other tokens behind it.
|
2014-05-20 00:39:08 +08:00
|
|
|
}
|
|
|
|
|
2014-11-18 01:32:32 +08:00
|
|
|
std::string NamespaceName =
|
|
|
|
ND->isAnonymousNamespace()
|
|
|
|
? "anonymous namespace"
|
2018-01-11 21:00:28 +08:00
|
|
|
: ("namespace '" + NestedNamespaceName.str() + "'");
|
2014-11-18 01:32:32 +08:00
|
|
|
|
2015-03-05 22:56:11 +08:00
|
|
|
diag(AfterRBrace, Message)
|
2018-01-11 21:00:28 +08:00
|
|
|
<< NamespaceName
|
|
|
|
<< FixItHint::CreateReplacement(
|
|
|
|
CharSourceRange::getCharRange(OldCommentRange),
|
|
|
|
std::string(SpacesBeforeComments, ' ') +
|
|
|
|
(IsNested
|
|
|
|
? getNamespaceComment(NestedNamespaceName, NeedLineBreak)
|
|
|
|
: getNamespaceComment(ND, NeedLineBreak)));
|
2014-11-18 01:32:32 +08:00
|
|
|
diag(ND->getLocation(), "%0 starts here", DiagnosticIDs::Note)
|
|
|
|
<< NamespaceName;
|
2014-05-20 00:39:08 +08:00
|
|
|
}
|
|
|
|
|
2014-09-22 18:41:39 +08:00
|
|
|
} // namespace readability
|
2014-05-20 00:39:08 +08:00
|
|
|
} // namespace tidy
|
|
|
|
} // namespace clang
|