| 1 | //===--- MissingHashCheck.cpp - clang-tidy --------------------------------===// |
| 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 | #include "MissingHashCheck.h" |
| 10 | #include "clang/AST/ASTContext.h" |
| 11 | #include "clang/ASTMatchers/ASTMatchFinder.h" |
| 12 | |
| 13 | using namespace clang::ast_matchers; |
| 14 | |
| 15 | namespace clang::tidy::objc { |
| 16 | |
| 17 | namespace { |
| 18 | |
| 19 | AST_MATCHER_P(ObjCImplementationDecl, hasInterface, |
| 20 | ast_matchers::internal::Matcher<ObjCInterfaceDecl>, Base) { |
| 21 | const ObjCInterfaceDecl *InterfaceDecl = Node.getClassInterface(); |
| 22 | return Base.matches(Node: *InterfaceDecl, Finder, Builder); |
| 23 | } |
| 24 | |
| 25 | AST_MATCHER_P(ObjCContainerDecl, hasInstanceMethod, |
| 26 | ast_matchers::internal::Matcher<ObjCMethodDecl>, Base) { |
| 27 | // Check each instance method against the provided matcher. |
| 28 | for (const auto *I : Node.instance_methods()) { |
| 29 | if (Base.matches(Node: *I, Finder, Builder)) |
| 30 | return true; |
| 31 | } |
| 32 | return false; |
| 33 | } |
| 34 | |
| 35 | } // namespace |
| 36 | |
| 37 | void MissingHashCheck::registerMatchers(MatchFinder *Finder) { |
| 38 | Finder->addMatcher( |
| 39 | NodeMatch: objcMethodDecl( |
| 40 | hasName(Name: "isEqual:" ), isInstanceMethod(), |
| 41 | hasDeclContext(InnerMatcher: objcImplementationDecl( |
| 42 | hasInterface(Base: isDirectlyDerivedFrom(BaseName: "NSObject" )), |
| 43 | unless(hasInstanceMethod(Base: hasName(Name: "hash" )))) |
| 44 | .bind(ID: "impl" ))), |
| 45 | Action: this); |
| 46 | } |
| 47 | |
| 48 | void MissingHashCheck::check(const MatchFinder::MatchResult &Result) { |
| 49 | const auto *ID = Result.Nodes.getNodeAs<ObjCImplementationDecl>(ID: "impl" ); |
| 50 | diag(ID->getLocation(), "%0 implements -isEqual: without implementing -hash" ) |
| 51 | << ID; |
| 52 | } |
| 53 | |
| 54 | } // namespace clang::tidy::objc |
| 55 | |