Chromium Code Reviews| Index: mojo/public/cpp/bindings/lib/hash_util.h |
| diff --git a/mojo/public/cpp/bindings/lib/hash_util.h b/mojo/public/cpp/bindings/lib/hash_util.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..38062473a9784f440186a06c52ca22c7072b4fed |
| --- /dev/null |
| +++ b/mojo/public/cpp/bindings/lib/hash_util.h |
| @@ -0,0 +1,64 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef MOJO_PUBLIC_CPP_BINDINGS_LIB_HASH_UTIL_H_ |
| +#define MOJO_PUBLIC_CPP_BINDINGS_LIB_HASH_UTIL_H_ |
| + |
| +#include <functional> |
| +#include <type_traits> |
| +#include <unordered_map> |
|
yzshen1
2016/09/21 23:17:52
some of the includes are not needed, please remove
tibell
2016/09/22 05:17:23
Done.
|
| +#include <vector> |
| + |
| +#include "base/optional.h" |
| +#include "mojo/public/cpp/bindings/lib/template_util.h" |
| + |
| +namespace mojo { |
| +namespace internal { |
| + |
| +template <typename T> |
| +size_t HashCombine(size_t seed, const T& value) { |
| + // Based on proposal in: |
| + // http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2005/n1756.pdf |
| + return seed ^ (std::hash<T>()(value) + (seed << 6) + (seed >> 2)); |
| +} |
| + |
| +template <typename T> |
| +struct HasHashMethod { |
| + template <typename U> |
| + static char Test(decltype(&U::Hash)); |
| + template <typename U> |
| + static int Test(...); |
| + static const bool value = sizeof(Test<T>(0)) == sizeof(char); |
| + |
| + private: |
| + EnsureTypeIsComplete<T> check_t_; |
| +}; |
| + |
| +template <typename T, bool has_hash_method = HasHashMethod<T>::value> |
| +struct HashTraits; |
| + |
| +template <typename T> |
| +size_t Hash(size_t seed, const T& value); |
| + |
| +template <typename T> |
| +struct HashTraits<T, true> { |
| + static size_t Hash(size_t seed, const T& value) { return value.Hash(seed); } |
| +}; |
| + |
| +template <typename T> |
| +struct HashTraits<T, false> { |
| + static size_t Hash(size_t seed, const T& value) { |
| + return HashCombine(seed, value); |
| + } |
| +}; |
| + |
| +template <typename T> |
| +size_t Hash(size_t seed, const T& value) { |
| + return HashTraits<T>::Hash(seed, value); |
| +} |
| + |
| +} // namespace internal |
| +} // namespace mojo |
| + |
| +#endif // MOJO_PUBLIC_CPP_BINDINGS_LIB_HASH_UTIL_H_ |