You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. // Copyright 2018 The Abseil Authors.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // https://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. //
  15. // -----------------------------------------------------------------------------
  16. // File: hash.h
  17. // -----------------------------------------------------------------------------
  18. //
  19. // This header file defines the Abseil `hash` library and the Abseil hashing
  20. // framework. This framework consists of the following:
  21. //
  22. // * The `absl::Hash` functor, which is used to invoke the hasher within the
  23. // Abseil hashing framework. `absl::Hash<T>` supports most basic types and
  24. // a number of Abseil types out of the box.
  25. // * `AbslHashValue`, an extension point that allows you to extend types to
  26. // support Abseil hashing without requiring you to define a hashing
  27. // algorithm.
  28. // * `HashState`, a type-erased class which implements the manipulation of the
  29. // hash state (H) itself; contains member functions `combine()`,
  30. // `combine_contiguous()`, and `combine_unordered()`; and which you can use
  31. // to contribute to an existing hash state when hashing your types.
  32. //
  33. // Unlike `std::hash` or other hashing frameworks, the Abseil hashing framework
  34. // provides most of its utility by abstracting away the hash algorithm (and its
  35. // implementation) entirely. Instead, a type invokes the Abseil hashing
  36. // framework by simply combining its state with the state of known, hashable
  37. // types. Hashing of that combined state is separately done by `absl::Hash`.
  38. //
  39. // One should assume that a hash algorithm is chosen randomly at the start of
  40. // each process. E.g., `absl::Hash<int>{}(9)` in one process and
  41. // `absl::Hash<int>{}(9)` in another process are likely to differ.
  42. //
  43. // `absl::Hash` may also produce different values from different dynamically
  44. // loaded libraries. For this reason, `absl::Hash` values must never cross
  45. // boundries in dynamically loaded libraries (including when used in types like
  46. // hash containers.)
  47. //
  48. // `absl::Hash` is intended to strongly mix input bits with a target of passing
  49. // an [Avalanche Test](https://en.wikipedia.org/wiki/Avalanche_effect).
  50. //
  51. // Example:
  52. //
  53. // // Suppose we have a class `Circle` for which we want to add hashing:
  54. // class Circle {
  55. // public:
  56. // ...
  57. // private:
  58. // std::pair<int, int> center_;
  59. // int radius_;
  60. // };
  61. //
  62. // // To add hashing support to `Circle`, we simply need to add a free
  63. // // (non-member) function `AbslHashValue()`, and return the combined hash
  64. // // state of the existing hash state and the class state. You can add such a
  65. // // free function using a friend declaration within the body of the class:
  66. // class Circle {
  67. // public:
  68. // ...
  69. // template <typename H>
  70. // friend H AbslHashValue(H h, const Circle& c) {
  71. // return H::combine(std::move(h), c.center_, c.radius_);
  72. // }
  73. // ...
  74. // };
  75. //
  76. // For more information, see Adding Type Support to `absl::Hash` below.
  77. //
  78. #ifndef ABSL_HASH_HASH_H_
  79. #define ABSL_HASH_HASH_H_
  80. #include <tuple>
  81. #include <utility>
  82. #include "absl/functional/function_ref.h"
  83. #include "absl/hash/internal/hash.h"
  84. namespace absl
  85. {
  86. ABSL_NAMESPACE_BEGIN
  87. // -----------------------------------------------------------------------------
  88. // `absl::Hash`
  89. // -----------------------------------------------------------------------------
  90. //
  91. // `absl::Hash<T>` is a convenient general-purpose hash functor for any type `T`
  92. // satisfying any of the following conditions (in order):
  93. //
  94. // * T is an arithmetic or pointer type
  95. // * T defines an overload for `AbslHashValue(H, const T&)` for an arbitrary
  96. // hash state `H`.
  97. // - T defines a specialization of `std::hash<T>`
  98. //
  99. // `absl::Hash` intrinsically supports the following types:
  100. //
  101. // * All integral types (including bool)
  102. // * All enum types
  103. // * All floating-point types (although hashing them is discouraged)
  104. // * All pointer types, including nullptr_t
  105. // * std::pair<T1, T2>, if T1 and T2 are hashable
  106. // * std::tuple<Ts...>, if all the Ts... are hashable
  107. // * std::unique_ptr and std::shared_ptr
  108. // * All string-like types including:
  109. // * absl::Cord
  110. // * std::string
  111. // * std::string_view (as well as any instance of std::basic_string that
  112. // uses char and std::char_traits)
  113. // * All the standard sequence containers (provided the elements are hashable)
  114. // * All the standard associative containers (provided the elements are
  115. // hashable)
  116. // * absl types such as the following:
  117. // * absl::string_view
  118. // * absl::uint128
  119. // * absl::Time, absl::Duration, and absl::TimeZone
  120. // * absl containers (provided the elements are hashable) such as the
  121. // following:
  122. // * absl::flat_hash_set, absl::node_hash_set, absl::btree_set
  123. // * absl::flat_hash_map, absl::node_hash_map, absl::btree_map
  124. // * absl::btree_multiset, absl::btree_multimap
  125. // * absl::InlinedVector
  126. // * absl::FixedArray
  127. //
  128. // When absl::Hash is used to hash an unordered container with a custom hash
  129. // functor, the elements are hashed using default absl::Hash semantics, not
  130. // the custom hash functor. This is consistent with the behavior of
  131. // operator==() on unordered containers, which compares elements pairwise with
  132. // operator==() rather than the custom equality functor. It is usually a
  133. // mistake to use either operator==() or absl::Hash on unordered collections
  134. // that use functors incompatible with operator==() equality.
  135. //
  136. // Note: the list above is not meant to be exhaustive. Additional type support
  137. // may be added, in which case the above list will be updated.
  138. //
  139. // -----------------------------------------------------------------------------
  140. // absl::Hash Invocation Evaluation
  141. // -----------------------------------------------------------------------------
  142. //
  143. // When invoked, `absl::Hash<T>` searches for supplied hash functions in the
  144. // following order:
  145. //
  146. // * Natively supported types out of the box (see above)
  147. // * Types for which an `AbslHashValue()` overload is provided (such as
  148. // user-defined types). See "Adding Type Support to `absl::Hash`" below.
  149. // * Types which define a `std::hash<T>` specialization
  150. //
  151. // The fallback to legacy hash functions exists mainly for backwards
  152. // compatibility. If you have a choice, prefer defining an `AbslHashValue`
  153. // overload instead of specializing any legacy hash functors.
  154. //
  155. // -----------------------------------------------------------------------------
  156. // The Hash State Concept, and using `HashState` for Type Erasure
  157. // -----------------------------------------------------------------------------
  158. //
  159. // The `absl::Hash` framework relies on the Concept of a "hash state." Such a
  160. // hash state is used in several places:
  161. //
  162. // * Within existing implementations of `absl::Hash<T>` to store the hashed
  163. // state of an object. Note that it is up to the implementation how it stores
  164. // such state. A hash table, for example, may mix the state to produce an
  165. // integer value; a testing framework may simply hold a vector of that state.
  166. // * Within implementations of `AbslHashValue()` used to extend user-defined
  167. // types. (See "Adding Type Support to absl::Hash" below.)
  168. // * Inside a `HashState`, providing type erasure for the concept of a hash
  169. // state, which you can use to extend the `absl::Hash` framework for types
  170. // that are otherwise difficult to extend using `AbslHashValue()`. (See the
  171. // `HashState` class below.)
  172. //
  173. // The "hash state" concept contains three member functions for mixing hash
  174. // state:
  175. //
  176. // * `H::combine(state, values...)`
  177. //
  178. // Combines an arbitrary number of values into a hash state, returning the
  179. // updated state. Note that the existing hash state is move-only and must be
  180. // passed by value.
  181. //
  182. // Each of the value types T must be hashable by H.
  183. //
  184. // NOTE:
  185. //
  186. // state = H::combine(std::move(state), value1, value2, value3);
  187. //
  188. // must be guaranteed to produce the same hash expansion as
  189. //
  190. // state = H::combine(std::move(state), value1);
  191. // state = H::combine(std::move(state), value2);
  192. // state = H::combine(std::move(state), value3);
  193. //
  194. // * `H::combine_contiguous(state, data, size)`
  195. //
  196. // Combines a contiguous array of `size` elements into a hash state,
  197. // returning the updated state. Note that the existing hash state is
  198. // move-only and must be passed by value.
  199. //
  200. // NOTE:
  201. //
  202. // state = H::combine_contiguous(std::move(state), data, size);
  203. //
  204. // need NOT be guaranteed to produce the same hash expansion as a loop
  205. // (it may perform internal optimizations). If you need this guarantee, use a
  206. // loop instead.
  207. //
  208. // * `H::combine_unordered(state, begin, end)`
  209. //
  210. // Combines a set of elements denoted by an iterator pair into a hash
  211. // state, returning the updated state. Note that the existing hash
  212. // state is move-only and must be passed by value.
  213. //
  214. // Unlike the other two methods, the hashing is order-independent.
  215. // This can be used to hash unordered collections.
  216. //
  217. // -----------------------------------------------------------------------------
  218. // Adding Type Support to `absl::Hash`
  219. // -----------------------------------------------------------------------------
  220. //
  221. // To add support for your user-defined type, add a proper `AbslHashValue()`
  222. // overload as a free (non-member) function. The overload will take an
  223. // existing hash state and should combine that state with state from the type.
  224. //
  225. // Example:
  226. //
  227. // template <typename H>
  228. // H AbslHashValue(H state, const MyType& v) {
  229. // return H::combine(std::move(state), v.field1, ..., v.fieldN);
  230. // }
  231. //
  232. // where `(field1, ..., fieldN)` are the members you would use on your
  233. // `operator==` to define equality.
  234. //
  235. // Notice that `AbslHashValue` is not a class member, but an ordinary function.
  236. // An `AbslHashValue` overload for a type should only be declared in the same
  237. // file and namespace as said type. The proper `AbslHashValue` implementation
  238. // for a given type will be discovered via ADL.
  239. //
  240. // Note: unlike `std::hash', `absl::Hash` should never be specialized. It must
  241. // only be extended by adding `AbslHashValue()` overloads.
  242. //
  243. template<typename T>
  244. using Hash = absl::hash_internal::Hash<T>;
  245. // HashOf
  246. //
  247. // absl::HashOf() is a helper that generates a hash from the values of its
  248. // arguments. It dispatches to absl::Hash directly, as follows:
  249. // * HashOf(t) == absl::Hash<T>{}(t)
  250. // * HashOf(a, b, c) == HashOf(std::make_tuple(a, b, c))
  251. //
  252. // HashOf(a1, a2, ...) == HashOf(b1, b2, ...) is guaranteed when
  253. // * The argument lists have pairwise identical C++ types
  254. // * a1 == b1 && a2 == b2 && ...
  255. //
  256. // The requirement that the arguments match in both type and value is critical.
  257. // It means that `a == b` does not necessarily imply `HashOf(a) == HashOf(b)` if
  258. // `a` and `b` have different types. For example, `HashOf(2) != HashOf(2.0)`.
  259. template<int&... ExplicitArgumentBarrier, typename... Types>
  260. size_t HashOf(const Types&... values)
  261. {
  262. auto tuple = std::tie(values...);
  263. return absl::Hash<decltype(tuple)>{}(tuple);
  264. }
  265. // HashState
  266. //
  267. // A type erased version of the hash state concept, for use in user-defined
  268. // `AbslHashValue` implementations that can't use templates (such as PImpl
  269. // classes, virtual functions, etc.). The type erasure adds overhead so it
  270. // should be avoided unless necessary.
  271. //
  272. // Note: This wrapper will only erase calls to
  273. // combine_contiguous(H, const unsigned char*, size_t)
  274. // RunCombineUnordered(H, CombinerF)
  275. //
  276. // All other calls will be handled internally and will not invoke overloads
  277. // provided by the wrapped class.
  278. //
  279. // Users of this class should still define a template `AbslHashValue` function,
  280. // but can use `absl::HashState::Create(&state)` to erase the type of the hash
  281. // state and dispatch to their private hashing logic.
  282. //
  283. // This state can be used like any other hash state. In particular, you can call
  284. // `HashState::combine()` and `HashState::combine_contiguous()` on it.
  285. //
  286. // Example:
  287. //
  288. // class Interface {
  289. // public:
  290. // template <typename H>
  291. // friend H AbslHashValue(H state, const Interface& value) {
  292. // state = H::combine(std::move(state), std::type_index(typeid(*this)));
  293. // value.HashValue(absl::HashState::Create(&state));
  294. // return state;
  295. // }
  296. // private:
  297. // virtual void HashValue(absl::HashState state) const = 0;
  298. // };
  299. //
  300. // class Impl : Interface {
  301. // private:
  302. // void HashValue(absl::HashState state) const override {
  303. // absl::HashState::combine(std::move(state), v1_, v2_);
  304. // }
  305. // int v1_;
  306. // std::string v2_;
  307. // };
  308. class HashState : public hash_internal::HashStateBase<HashState>
  309. {
  310. public:
  311. // HashState::Create()
  312. //
  313. // Create a new `HashState` instance that wraps `state`. All calls to
  314. // `combine()` and `combine_contiguous()` on the new instance will be
  315. // redirected to the original `state` object. The `state` object must outlive
  316. // the `HashState` instance.
  317. template<typename T>
  318. static HashState Create(T* state)
  319. {
  320. HashState s;
  321. s.Init(state);
  322. return s;
  323. }
  324. HashState(const HashState&) = delete;
  325. HashState& operator=(const HashState&) = delete;
  326. HashState(HashState&&) = default;
  327. HashState& operator=(HashState&&) = default;
  328. // HashState::combine()
  329. //
  330. // Combines an arbitrary number of values into a hash state, returning the
  331. // updated state.
  332. using HashState::HashStateBase::combine;
  333. // HashState::combine_contiguous()
  334. //
  335. // Combines a contiguous array of `size` elements into a hash state, returning
  336. // the updated state.
  337. static HashState combine_contiguous(HashState hash_state, const unsigned char* first, size_t size)
  338. {
  339. hash_state.combine_contiguous_(hash_state.state_, first, size);
  340. return hash_state;
  341. }
  342. using HashState::HashStateBase::combine_contiguous;
  343. private:
  344. HashState() = default;
  345. friend class HashState::HashStateBase;
  346. template<typename T>
  347. static void CombineContiguousImpl(void* p, const unsigned char* first, size_t size)
  348. {
  349. T& state = *static_cast<T*>(p);
  350. state = T::combine_contiguous(std::move(state), first, size);
  351. }
  352. template<typename T>
  353. void Init(T* state)
  354. {
  355. state_ = state;
  356. combine_contiguous_ = &CombineContiguousImpl<T>;
  357. run_combine_unordered_ = &RunCombineUnorderedImpl<T>;
  358. }
  359. template<typename HS>
  360. struct CombineUnorderedInvoker
  361. {
  362. template<typename T, typename ConsumerT>
  363. void operator()(T inner_state, ConsumerT inner_cb)
  364. {
  365. f(HashState::Create(&inner_state),
  366. [&](HashState& inner_erased)
  367. { inner_cb(inner_erased.Real<T>()); });
  368. }
  369. absl::FunctionRef<void(HS, absl::FunctionRef<void(HS&)>)> f;
  370. };
  371. template<typename T>
  372. static HashState RunCombineUnorderedImpl(
  373. HashState state,
  374. absl::FunctionRef<void(HashState, absl::FunctionRef<void(HashState&)>)>
  375. f
  376. )
  377. {
  378. // Note that this implementation assumes that inner_state and outer_state
  379. // are the same type. This isn't true in the SpyHash case, but SpyHash
  380. // types are move-convertible to each other, so this still works.
  381. T& real_state = state.Real<T>();
  382. real_state = T::RunCombineUnordered(
  383. std::move(real_state), CombineUnorderedInvoker<HashState>{f}
  384. );
  385. return state;
  386. }
  387. template<typename CombinerT>
  388. static HashState RunCombineUnordered(HashState state, CombinerT combiner)
  389. {
  390. auto* run = state.run_combine_unordered_;
  391. return run(std::move(state), std::ref(combiner));
  392. }
  393. // Do not erase an already erased state.
  394. void Init(HashState* state)
  395. {
  396. state_ = state->state_;
  397. combine_contiguous_ = state->combine_contiguous_;
  398. run_combine_unordered_ = state->run_combine_unordered_;
  399. }
  400. template<typename T>
  401. T& Real()
  402. {
  403. return *static_cast<T*>(state_);
  404. }
  405. void* state_;
  406. void (*combine_contiguous_)(void*, const unsigned char*, size_t);
  407. HashState (*run_combine_unordered_)(
  408. HashState state,
  409. absl::FunctionRef<void(HashState, absl::FunctionRef<void(HashState&)>)>
  410. );
  411. };
  412. ABSL_NAMESPACE_END
  413. } // namespace absl
  414. #endif // ABSL_HASH_HASH_H_