blob: 165899ee56b875569888c80a24a167aa33b73716 [file] [log] [blame]
jbates@chromium.org68c7aea2012-09-01 09:55:09 +09001// Copyright (c) 2011 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef BASE_HASH_H_
6#define BASE_HASH_H_
7
avia6a6a682015-12-27 07:15:14 +09008#include <stddef.h>
9#include <stdint.h>
10
mgiuca@chromium.orge1be6392014-03-03 16:59:27 +090011#include <limits>
jbates@chromium.org68c7aea2012-09-01 09:55:09 +090012#include <string>
davidbenf8b29b72016-01-22 10:41:41 +090013#include <utility>
jbates@chromium.org68c7aea2012-09-01 09:55:09 +090014
15#include "base/base_export.h"
mgiuca@chromium.orge1be6392014-03-03 16:59:27 +090016#include "base/logging.h"
Brett Wilsoncc2b5772017-09-02 05:23:53 +090017#include "base/strings/string16.h"
jbates@chromium.org68c7aea2012-09-01 09:55:09 +090018
19namespace base {
20
Brett Wilsoncc2b5772017-09-02 05:23:53 +090021// Computes a hash of a memory buffer. This hash function is subject to change
22// in the future, so use only for temporary in-memory structures. If you need
23// to persist a change on disk or between computers, use PersistentHash().
24//
mgiuca@chromium.orge1be6392014-03-03 16:59:27 +090025// WARNING: This hash function should not be used for any cryptographic purpose.
Brett Wilsoncc2b5772017-09-02 05:23:53 +090026BASE_EXPORT uint32_t Hash(const void* data, size_t length);
27BASE_EXPORT uint32_t Hash(const std::string& str);
28BASE_EXPORT uint32_t Hash(const string16& str);
jbates@chromium.org68c7aea2012-09-01 09:55:09 +090029
Brett Wilsoncc2b5772017-09-02 05:23:53 +090030// Computes a hash of a memory buffer. This hash function must not change so
31// that code can use the hashed values for persistent storage purposes or
32// sending across the network. If a new persistent hash function is desired, a
33// new version will have to be added in addition.
34//
mgiuca@chromium.orge1be6392014-03-03 16:59:27 +090035// WARNING: This hash function should not be used for any cryptographic purpose.
Brett Wilsoncc2b5772017-09-02 05:23:53 +090036BASE_EXPORT uint32_t PersistentHash(const void* data, size_t length);
37BASE_EXPORT uint32_t PersistentHash(const std::string& str);
jbates@chromium.org68c7aea2012-09-01 09:55:09 +090038
Brett Wilsoncc0c8322017-09-07 08:38:57 +090039// Hash pairs of 32-bit or 64-bit numbers.
40BASE_EXPORT size_t HashInts32(uint32_t value1, uint32_t value2);
41BASE_EXPORT size_t HashInts64(uint64_t value1, uint64_t value2);
davidbenf8b29b72016-01-22 10:41:41 +090042
43template <typename T1, typename T2>
44inline size_t HashInts(T1 value1, T2 value2) {
45 // This condition is expected to be compile-time evaluated and optimised away
46 // in release builds.
47 if (sizeof(T1) > sizeof(uint32_t) || (sizeof(T2) > sizeof(uint32_t)))
48 return HashInts64(value1, value2);
49
50 return HashInts32(value1, value2);
51}
52
Brett Wilson9b4d85b2017-09-20 07:23:37 +090053// A templated hasher for pairs of integer types. Example:
54//
55// using MyPair = std::pair<int32_t, int32_t>;
56// std::unordered_set<MyPair, base::IntPairHash<MyPair>> set;
davidbenf8b29b72016-01-22 10:41:41 +090057template <typename T>
58struct IntPairHash;
59
60template <typename Type1, typename Type2>
61struct IntPairHash<std::pair<Type1, Type2>> {
62 size_t operator()(std::pair<Type1, Type2> value) const {
63 return HashInts(value.first, value.second);
64 }
65};
66
jbates@chromium.org68c7aea2012-09-01 09:55:09 +090067} // namespace base
68
69#endif // BASE_HASH_H_