aboutsummaryrefslogtreecommitdiff
path: root/subprojects/lix-clang-tidy/CharPtrCast.cc
blob: e76797f5d347c0c3a6bd71145fb2c4960616b593 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include "CharPtrCast.hh"
#include <clang/AST/ExprCXX.h>
#include <clang/Basic/Diagnostic.h>
#include <clang/Tooling/Transformer/SourceCode.h>

namespace nix::clang_tidy {
using namespace clang::ast_matchers;
using namespace clang;

void CharPtrCastCheck::registerMatchers(ast_matchers::MatchFinder *Finder) {
  Finder->addMatcher(
      traverse(clang::TK_IgnoreUnlessSpelledInSource,
               cxxReinterpretCastExpr(allOf(
                   hasDestinationType(qualType(pointsTo(isAnyCharacter()))),
                   has(expr(hasType(qualType(pointsTo(isAnyCharacter()))))))))
          .bind("reinterpret-cast-expr"),
      this);
}

void CharPtrCastCheck::check(
    const ast_matchers::MatchFinder::MatchResult &Result) {
  const auto ReinterpretCastExpr =
      Result.Nodes.getNodeAs<CXXReinterpretCastExpr>("reinterpret-cast-expr");
  const auto ToTypeSpan = ReinterpretCastExpr->getAngleBrackets();
  const auto & SM = Result.Context->getSourceManager();

  auto Diag =
      diag(ReinterpretCastExpr->getExprLoc(),
           "reinterpret_cast used for trivially safe character pointer cast");
  Diag << ReinterpretCastExpr->getSourceRange();

  auto Inside = tooling::getText(*ReinterpretCastExpr->getSubExprAsWritten(),
                                 *Result.Context);

  Diag << Inserter.createIncludeInsertion(SM.getFileID(ReinterpretCastExpr->getExprLoc()), "charptr-cast.hh");

  llvm::Twine Replacement =
      "charptr_cast" +
      tooling::getText(CharSourceRange(ToTypeSpan, true), *Result.Context) +
      "(" + Inside + ")";
  Diag << FixItHint::CreateReplacement(ReinterpretCastExpr->getSourceRange(),
                                       Replacement.str());
}

} // namespace nix::clang_tidy