Export of internal Abseil changes.
-- 4eacae3ff1b14b1d309e8092185bc10e8a6203cf by Derek Mauro <dmauro@google.com>: Release SwissTable - a fast, efficient, cache-friendly hash table. https://www.youtube.com/watch?v=ncHmEUmJZf4 PiperOrigin-RevId: 214816527 -- df8c3dfab3cfb2f4365909a84d0683b193cfbb11 by Derek Mauro <dmauro@google.com>: Internal change PiperOrigin-RevId: 214785288 -- 1eabd5266bbcebc33eecc91e5309b751856a75c8 by Abseil Team <absl-team@google.com>: Internal change PiperOrigin-RevId: 214722931 -- 2ebbfac950f83146b46253038e7dd7dcde9f2951 by Derek Mauro <dmauro@google.com>: Internal change PiperOrigin-RevId: 214701684 GitOrigin-RevId: 4eacae3ff1b14b1d309e8092185bc10e8a6203cf Change-Id: I9ba64e395b22ad7863213d157b8019b082adc19d
This commit is contained in:
parent
e291c279e4
commit
48cd2c3f35
55 changed files with 18696 additions and 0 deletions
299
absl/container/internal/hash_function_defaults_test.cc
Normal file
299
absl/container/internal/hash_function_defaults_test.cc
Normal file
|
@ -0,0 +1,299 @@
|
|||
// Copyright 2018 The Abseil Authors.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#include "absl/container/internal/hash_function_defaults.h"
|
||||
|
||||
#include <functional>
|
||||
#include <type_traits>
|
||||
#include <utility>
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include "absl/strings/string_view.h"
|
||||
|
||||
namespace absl {
|
||||
namespace container_internal {
|
||||
namespace {
|
||||
|
||||
using ::testing::Types;
|
||||
|
||||
TEST(Eq, Int32) {
|
||||
hash_default_eq<int32_t> eq;
|
||||
EXPECT_TRUE(eq(1, 1u));
|
||||
EXPECT_TRUE(eq(1, char{1}));
|
||||
EXPECT_TRUE(eq(1, true));
|
||||
EXPECT_TRUE(eq(1, double{1.1}));
|
||||
EXPECT_FALSE(eq(1, char{2}));
|
||||
EXPECT_FALSE(eq(1, 2u));
|
||||
EXPECT_FALSE(eq(1, false));
|
||||
EXPECT_FALSE(eq(1, 2.));
|
||||
}
|
||||
|
||||
TEST(Hash, Int32) {
|
||||
hash_default_hash<int32_t> hash;
|
||||
auto h = hash(1);
|
||||
EXPECT_EQ(h, hash(1u));
|
||||
EXPECT_EQ(h, hash(char{1}));
|
||||
EXPECT_EQ(h, hash(true));
|
||||
EXPECT_EQ(h, hash(double{1.1}));
|
||||
EXPECT_NE(h, hash(2u));
|
||||
EXPECT_NE(h, hash(char{2}));
|
||||
EXPECT_NE(h, hash(false));
|
||||
EXPECT_NE(h, hash(2.));
|
||||
}
|
||||
|
||||
enum class MyEnum { A, B, C, D };
|
||||
|
||||
TEST(Eq, Enum) {
|
||||
hash_default_eq<MyEnum> eq;
|
||||
EXPECT_TRUE(eq(MyEnum::A, MyEnum::A));
|
||||
EXPECT_FALSE(eq(MyEnum::A, MyEnum::B));
|
||||
}
|
||||
|
||||
TEST(Hash, Enum) {
|
||||
hash_default_hash<MyEnum> hash;
|
||||
|
||||
for (MyEnum e : {MyEnum::A, MyEnum::B, MyEnum::C}) {
|
||||
auto h = hash(e);
|
||||
EXPECT_EQ(h, hash_default_hash<int>{}(static_cast<int>(e)));
|
||||
EXPECT_NE(h, hash(MyEnum::D));
|
||||
}
|
||||
}
|
||||
|
||||
using StringTypes = ::testing::Types<std::string, absl::string_view>;
|
||||
|
||||
template <class T>
|
||||
struct EqString : ::testing::Test {
|
||||
hash_default_eq<T> key_eq;
|
||||
};
|
||||
|
||||
TYPED_TEST_CASE(EqString, StringTypes);
|
||||
|
||||
template <class T>
|
||||
struct HashString : ::testing::Test {
|
||||
hash_default_hash<T> hasher;
|
||||
};
|
||||
|
||||
TYPED_TEST_CASE(HashString, StringTypes);
|
||||
|
||||
TYPED_TEST(EqString, Works) {
|
||||
auto eq = this->key_eq;
|
||||
EXPECT_TRUE(eq("a", "a"));
|
||||
EXPECT_TRUE(eq("a", absl::string_view("a")));
|
||||
EXPECT_TRUE(eq("a", std::string("a")));
|
||||
EXPECT_FALSE(eq("a", "b"));
|
||||
EXPECT_FALSE(eq("a", absl::string_view("b")));
|
||||
EXPECT_FALSE(eq("a", std::string("b")));
|
||||
}
|
||||
|
||||
TYPED_TEST(HashString, Works) {
|
||||
auto hash = this->hasher;
|
||||
auto h = hash("a");
|
||||
EXPECT_EQ(h, hash(absl::string_view("a")));
|
||||
EXPECT_EQ(h, hash(std::string("a")));
|
||||
EXPECT_NE(h, hash(absl::string_view("b")));
|
||||
EXPECT_NE(h, hash(std::string("b")));
|
||||
}
|
||||
|
||||
struct NoDeleter {
|
||||
template <class T>
|
||||
void operator()(const T* ptr) const {}
|
||||
};
|
||||
|
||||
using PointerTypes =
|
||||
::testing::Types<const int*, int*, std::unique_ptr<const int>,
|
||||
std::unique_ptr<const int, NoDeleter>,
|
||||
std::unique_ptr<int>, std::unique_ptr<int, NoDeleter>,
|
||||
std::shared_ptr<const int>, std::shared_ptr<int>>;
|
||||
|
||||
template <class T>
|
||||
struct EqPointer : ::testing::Test {
|
||||
hash_default_eq<T> key_eq;
|
||||
};
|
||||
|
||||
TYPED_TEST_CASE(EqPointer, PointerTypes);
|
||||
|
||||
template <class T>
|
||||
struct HashPointer : ::testing::Test {
|
||||
hash_default_hash<T> hasher;
|
||||
};
|
||||
|
||||
TYPED_TEST_CASE(HashPointer, PointerTypes);
|
||||
|
||||
TYPED_TEST(EqPointer, Works) {
|
||||
int dummy;
|
||||
auto eq = this->key_eq;
|
||||
auto sptr = std::make_shared<int>();
|
||||
std::shared_ptr<const int> csptr = sptr;
|
||||
int* ptr = sptr.get();
|
||||
const int* cptr = ptr;
|
||||
std::unique_ptr<int, NoDeleter> uptr(ptr);
|
||||
std::unique_ptr<const int, NoDeleter> cuptr(ptr);
|
||||
|
||||
EXPECT_TRUE(eq(ptr, cptr));
|
||||
EXPECT_TRUE(eq(ptr, sptr));
|
||||
EXPECT_TRUE(eq(ptr, uptr));
|
||||
EXPECT_TRUE(eq(ptr, csptr));
|
||||
EXPECT_TRUE(eq(ptr, cuptr));
|
||||
EXPECT_FALSE(eq(&dummy, cptr));
|
||||
EXPECT_FALSE(eq(&dummy, sptr));
|
||||
EXPECT_FALSE(eq(&dummy, uptr));
|
||||
EXPECT_FALSE(eq(&dummy, csptr));
|
||||
EXPECT_FALSE(eq(&dummy, cuptr));
|
||||
}
|
||||
|
||||
TEST(Hash, DerivedAndBase) {
|
||||
struct Base {};
|
||||
struct Derived : Base {};
|
||||
|
||||
hash_default_hash<Base*> hasher;
|
||||
|
||||
Base base;
|
||||
Derived derived;
|
||||
EXPECT_NE(hasher(&base), hasher(&derived));
|
||||
EXPECT_EQ(hasher(static_cast<Base*>(&derived)), hasher(&derived));
|
||||
|
||||
auto dp = std::make_shared<Derived>();
|
||||
EXPECT_EQ(hasher(static_cast<Base*>(dp.get())), hasher(dp));
|
||||
}
|
||||
|
||||
TEST(Hash, FunctionPointer) {
|
||||
using Func = int (*)();
|
||||
hash_default_hash<Func> hasher;
|
||||
hash_default_eq<Func> eq;
|
||||
|
||||
Func p1 = [] { return 1; }, p2 = [] { return 2; };
|
||||
EXPECT_EQ(hasher(p1), hasher(p1));
|
||||
EXPECT_TRUE(eq(p1, p1));
|
||||
|
||||
EXPECT_NE(hasher(p1), hasher(p2));
|
||||
EXPECT_FALSE(eq(p1, p2));
|
||||
}
|
||||
|
||||
TYPED_TEST(HashPointer, Works) {
|
||||
int dummy;
|
||||
auto hash = this->hasher;
|
||||
auto sptr = std::make_shared<int>();
|
||||
std::shared_ptr<const int> csptr = sptr;
|
||||
int* ptr = sptr.get();
|
||||
const int* cptr = ptr;
|
||||
std::unique_ptr<int, NoDeleter> uptr(ptr);
|
||||
std::unique_ptr<const int, NoDeleter> cuptr(ptr);
|
||||
|
||||
EXPECT_EQ(hash(ptr), hash(cptr));
|
||||
EXPECT_EQ(hash(ptr), hash(sptr));
|
||||
EXPECT_EQ(hash(ptr), hash(uptr));
|
||||
EXPECT_EQ(hash(ptr), hash(csptr));
|
||||
EXPECT_EQ(hash(ptr), hash(cuptr));
|
||||
EXPECT_NE(hash(&dummy), hash(cptr));
|
||||
EXPECT_NE(hash(&dummy), hash(sptr));
|
||||
EXPECT_NE(hash(&dummy), hash(uptr));
|
||||
EXPECT_NE(hash(&dummy), hash(csptr));
|
||||
EXPECT_NE(hash(&dummy), hash(cuptr));
|
||||
}
|
||||
|
||||
// Cartesian product of (string, std::string, absl::string_view)
|
||||
// with (string, std::string, absl::string_view, const char*).
|
||||
using StringTypesCartesianProduct = Types<
|
||||
// clang-format off
|
||||
|
||||
std::pair<std::string, std::string>,
|
||||
std::pair<std::string, absl::string_view>,
|
||||
std::pair<std::string, const char*>,
|
||||
|
||||
std::pair<absl::string_view, std::string>,
|
||||
std::pair<absl::string_view, absl::string_view>,
|
||||
std::pair<absl::string_view, const char*>>;
|
||||
// clang-format on
|
||||
|
||||
constexpr char kFirstString[] = "abc123";
|
||||
constexpr char kSecondString[] = "ijk456";
|
||||
|
||||
template <typename T>
|
||||
struct StringLikeTest : public ::testing::Test {
|
||||
typename T::first_type a1{kFirstString};
|
||||
typename T::second_type b1{kFirstString};
|
||||
typename T::first_type a2{kSecondString};
|
||||
typename T::second_type b2{kSecondString};
|
||||
hash_default_eq<typename T::first_type> eq;
|
||||
hash_default_hash<typename T::first_type> hash;
|
||||
};
|
||||
|
||||
TYPED_TEST_CASE_P(StringLikeTest);
|
||||
|
||||
TYPED_TEST_P(StringLikeTest, Eq) {
|
||||
EXPECT_TRUE(this->eq(this->a1, this->b1));
|
||||
EXPECT_TRUE(this->eq(this->b1, this->a1));
|
||||
}
|
||||
|
||||
TYPED_TEST_P(StringLikeTest, NotEq) {
|
||||
EXPECT_FALSE(this->eq(this->a1, this->b2));
|
||||
EXPECT_FALSE(this->eq(this->b2, this->a1));
|
||||
}
|
||||
|
||||
TYPED_TEST_P(StringLikeTest, HashEq) {
|
||||
EXPECT_EQ(this->hash(this->a1), this->hash(this->b1));
|
||||
EXPECT_EQ(this->hash(this->a2), this->hash(this->b2));
|
||||
// It would be a poor hash function which collides on these strings.
|
||||
EXPECT_NE(this->hash(this->a1), this->hash(this->b2));
|
||||
}
|
||||
|
||||
TYPED_TEST_CASE(StringLikeTest, StringTypesCartesianProduct);
|
||||
|
||||
} // namespace
|
||||
} // namespace container_internal
|
||||
} // namespace absl
|
||||
|
||||
enum Hash : size_t {
|
||||
kStd = 0x2, // std::hash
|
||||
#ifdef _MSC_VER
|
||||
kExtension = kStd, // In MSVC, std::hash == ::hash
|
||||
#else // _MSC_VER
|
||||
kExtension = 0x4, // ::hash (GCC extension)
|
||||
#endif // _MSC_VER
|
||||
};
|
||||
|
||||
// H is a bitmask of Hash enumerations.
|
||||
// Hashable<H> is hashable via all means specified in H.
|
||||
template <int H>
|
||||
struct Hashable {
|
||||
static constexpr bool HashableBy(Hash h) { return h & H; }
|
||||
};
|
||||
|
||||
namespace std {
|
||||
template <int H>
|
||||
struct hash<Hashable<H>> {
|
||||
template <class E = Hashable<H>,
|
||||
class = typename std::enable_if<E::HashableBy(kStd)>::type>
|
||||
size_t operator()(E) const {
|
||||
return kStd;
|
||||
}
|
||||
};
|
||||
} // namespace std
|
||||
|
||||
namespace absl {
|
||||
namespace container_internal {
|
||||
namespace {
|
||||
|
||||
template <class T>
|
||||
size_t Hash(const T& v) {
|
||||
return hash_default_hash<T>()(v);
|
||||
}
|
||||
|
||||
TEST(Delegate, HashDispatch) {
|
||||
EXPECT_EQ(Hash(kStd), Hash(Hashable<kStd>()));
|
||||
}
|
||||
|
||||
} // namespace
|
||||
} // namespace container_internal
|
||||
} // namespace absl
|
Loading…
Add table
Add a link
Reference in a new issue