mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-21 04:25:45 -04:00

Summary: Apple documentation states that: "If two objects are equal, they must have the same hash value. This last point is particularly important if you define isEqual: in a subclass and intend to put instances of that subclass into a collection. Make sure you also define hash in your subclass." https://developer.apple.com/documentation/objectivec/1418956-nsobject/1418795-isequal?language=objc In many or all versions of libobjc, -[NSObject isEqual:] is a pointer equality check and -[NSObject hash] returns the messaged object's pointer. A relatively common form of developer error is for a developer to override -isEqual: in a subclass without overriding -hash to ensure that hashes are equal for objects that are equal. It is assumed that an override of -isEqual: is a strong signal for changing the object's equality operator to something other than pointer equality which implies that a missing override of -hash could result in distinct objects being equal but having distinct hashes because they are independent instances. This added check flags classes that override -isEqual: but inherit NSObject's implementation of -hash to warn of the potential for unexpected behavior. The proper implementation of -hash is the responsibility of the developer and the check will only verify that the developer made an effort to properly implement -hash. Developers can set up unit tests to verify that their implementation of -hash is appropriate. Test Notes: Ran check-clang-tools. Reviewers: aaron.ballman, benhamilton Reviewed By: aaron.ballman Subscribers: Eugene.Zelenko, mgorny, xazax.hun, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D67737 llvm-svn: 372445
63 lines
2.0 KiB
C++
63 lines
2.0 KiB
C++
//===--- MissingHashCheck.cpp - clang-tidy --------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "MissingHashCheck.h"
|
|
#include "clang/AST/ASTContext.h"
|
|
#include "clang/ASTMatchers/ASTMatchFinder.h"
|
|
|
|
using namespace clang::ast_matchers;
|
|
|
|
namespace clang {
|
|
namespace tidy {
|
|
namespace objc {
|
|
|
|
namespace {
|
|
|
|
AST_MATCHER_P(ObjCImplementationDecl, hasInterface,
|
|
ast_matchers::internal::Matcher<ObjCInterfaceDecl>, Base) {
|
|
const ObjCInterfaceDecl *InterfaceDecl = Node.getClassInterface();
|
|
return Base.matches(*InterfaceDecl, Finder, Builder);
|
|
}
|
|
|
|
AST_MATCHER_P(ObjCContainerDecl, hasInstanceMethod,
|
|
ast_matchers::internal::Matcher<ObjCMethodDecl>, Base) {
|
|
// Check each instance method against the provided matcher.
|
|
for (const auto *I : Node.instance_methods()) {
|
|
if (Base.matches(*I, Finder, Builder))
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
void MissingHashCheck::registerMatchers(MatchFinder *Finder) {
|
|
// This check should only be applied to Objective-C sources.
|
|
if (!getLangOpts().ObjC)
|
|
return;
|
|
|
|
Finder->addMatcher(
|
|
objcMethodDecl(
|
|
hasName("isEqual:"), isInstanceMethod(),
|
|
hasDeclContext(objcImplementationDecl(
|
|
hasInterface(isDirectlyDerivedFrom("NSObject")),
|
|
unless(hasInstanceMethod(hasName("hash"))))
|
|
.bind("impl"))),
|
|
this);
|
|
}
|
|
|
|
void MissingHashCheck::check(const MatchFinder::MatchResult &Result) {
|
|
const auto *ID = Result.Nodes.getNodeAs<ObjCImplementationDecl>("impl");
|
|
diag(ID->getLocation(), "%0 implements -isEqual: without implementing -hash")
|
|
<< ID;
|
|
}
|
|
|
|
} // namespace objc
|
|
} // namespace tidy
|
|
} // namespace clang
|