blob: 8fc28352333e57a2547daa52e37861ae4964dbf1 [file] [log] [blame]
evan@chromium.org4fbb9b22011-05-17 08:40:05 +09001// Copyright (c) 2011 The Chromium Authors. All rights reserved.
license.botf003cfe2008-08-24 09:55:55 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commit3f4a7322008-07-27 06:49:38 +09004//
pinkerton@google.com3f807de2008-08-05 03:36:53 +09005
6//
initial.commit3f4a7322008-07-27 06:49:38 +09007// Deal with the differences between Microsoft and GNU implemenations
pinkerton@google.com3f807de2008-08-05 03:36:53 +09008// of hash_map. Allows all platforms to use |base::hash_map| and
9// |base::hash_set|.
maruel@chromium.org8fe7adc2009-03-04 00:01:12 +090010// eg:
pinkerton@google.com3f807de2008-08-05 03:36:53 +090011// base::hash_map<int> my_map;
12// base::hash_set<int> my_set;
initial.commit3f4a7322008-07-27 06:49:38 +090013//
jorlow@chromium.org79931a92009-09-03 14:48:45 +090014// NOTE: It is an explicit non-goal of this class to provide a generic hash
15// function for pointers. If you want to hash a pointers to a particular class,
16// please define the template specialization elsewhere (for example, in its
17// header file) and keep it specific to just pointers to that class. This is
18// because identity hashes are not desirable for all types that might show up
19// in containers as pointers.
initial.commit3f4a7322008-07-27 06:49:38 +090020
mark@chromium.org6211bbd2009-08-13 21:53:16 +090021#ifndef BASE_HASH_TABLES_H_
22#define BASE_HASH_TABLES_H_
thakis@chromium.org01d14522010-07-27 08:08:24 +090023#pragma once
initial.commit3f4a7322008-07-27 06:49:38 +090024
pinkerton@google.come3eb63f2008-08-06 23:36:32 +090025#include "build/build_config.h"
26
jorlow@chromium.org6c836882009-07-24 10:20:08 +090027#include "base/string16.h"
28
pinkerton@google.come3eb63f2008-08-06 23:36:32 +090029#if defined(COMPILER_MSVC)
initial.commit3f4a7322008-07-27 06:49:38 +090030#include <hash_map>
31#include <hash_set>
32namespace base {
pinkerton@google.com3f807de2008-08-05 03:36:53 +090033using stdext::hash_map;
34using stdext::hash_set;
initial.commit3f4a7322008-07-27 06:49:38 +090035}
pinkerton@google.come3eb63f2008-08-06 23:36:32 +090036#elif defined(COMPILER_GCC)
tc@google.comf4a5e442009-04-14 01:59:03 +090037// This is a hack to disable the gcc 4.4 warning about hash_map and hash_set
38// being deprecated. We can get rid of this when we upgrade to VS2008 and we
39// can use <tr1/unordered_map> and <tr1/unordered_set>.
40#ifdef __DEPRECATED
41#define CHROME_OLD__DEPRECATED __DEPRECATED
42#undef __DEPRECATED
43#endif
44
initial.commit3f4a7322008-07-27 06:49:38 +090045#include <ext/hash_map>
46#include <ext/hash_set>
mark@chromium.org6211bbd2009-08-13 21:53:16 +090047#include <string>
tc@google.comf4a5e442009-04-14 01:59:03 +090048
49#ifdef CHROME_OLD__DEPRECATED
50#define __DEPRECATED CHROME_OLD__DEPRECATED
51#undef CHROME_OLD__DEPRECATED
52#endif
53
initial.commit3f4a7322008-07-27 06:49:38 +090054namespace base {
pinkerton@google.com3f807de2008-08-05 03:36:53 +090055using __gnu_cxx::hash_map;
56using __gnu_cxx::hash_set;
mark@chromium.org6211bbd2009-08-13 21:53:16 +090057} // namespace base
pinkerton@google.com3f807de2008-08-05 03:36:53 +090058
pinkerton@google.com3f807de2008-08-05 03:36:53 +090059namespace __gnu_cxx {
60
dilmah@chromium.org4dba82d2010-12-01 22:08:56 +090061// The GNU C++ library provides identity hash functions for many integral types,
mark@chromium.org6211bbd2009-08-13 21:53:16 +090062// but not for |long long|. This hash function will truncate if |size_t| is
63// narrower than |long long|. This is probably good enough for what we will
64// use it for.
pinkerton@google.com3f807de2008-08-05 03:36:53 +090065
mark@chromium.org6211bbd2009-08-13 21:53:16 +090066#define DEFINE_TRIVIAL_HASH(integral_type) \
67 template<> \
68 struct hash<integral_type> { \
69 std::size_t operator()(integral_type value) const { \
70 return static_cast<std::size_t>(value); \
71 } \
72 }
pinkerton@google.com3f807de2008-08-05 03:36:53 +090073
mark@chromium.org6211bbd2009-08-13 21:53:16 +090074DEFINE_TRIVIAL_HASH(long long);
75DEFINE_TRIVIAL_HASH(unsigned long long);
pinkerton@google.com3f807de2008-08-05 03:36:53 +090076
mark@chromium.org6211bbd2009-08-13 21:53:16 +090077#undef DEFINE_TRIVIAL_HASH
pinkerton@google.com3f807de2008-08-05 03:36:53 +090078
mark@chromium.org6211bbd2009-08-13 21:53:16 +090079// Implement string hash functions so that strings of various flavors can
80// be used as keys in STL maps and sets. The hash algorithm comes from the
81// GNU C++ library, in <tr1/functional>. It is duplicated here because GCC
82// versions prior to 4.3.2 are unable to compile <tr1/functional> when RTTI
83// is disabled, as it is in our build.
pinkerton@google.com3f807de2008-08-05 03:36:53 +090084
mark@chromium.org6211bbd2009-08-13 21:53:16 +090085#define DEFINE_STRING_HASH(string_type) \
86 template<> \
87 struct hash<string_type> { \
88 std::size_t operator()(const string_type& s) const { \
89 std::size_t result = 0; \
90 for (string_type::const_iterator i = s.begin(); i != s.end(); ++i) \
91 result = (result * 131) + *i; \
92 return result; \
93 } \
94 }
estade@chromium.orgaa1f5dc2009-02-22 10:21:56 +090095
mark@chromium.org6211bbd2009-08-13 21:53:16 +090096DEFINE_STRING_HASH(std::string);
mark@chromium.org6211bbd2009-08-13 21:53:16 +090097DEFINE_STRING_HASH(string16);
jorlow@chromium.org6c836882009-07-24 10:20:08 +090098
mark@chromium.org6211bbd2009-08-13 21:53:16 +090099#undef DEFINE_STRING_HASH
jorlow@chromium.org6c836882009-07-24 10:20:08 +0900100
mark@chromium.org6211bbd2009-08-13 21:53:16 +0900101} // namespace __gnu_cxx
initial.commit3f4a7322008-07-27 06:49:38 +0900102
mark@chromium.org6211bbd2009-08-13 21:53:16 +0900103#endif // COMPILER
initial.commit3f4a7322008-07-27 06:49:38 +0900104
mark@chromium.org6211bbd2009-08-13 21:53:16 +0900105#endif // BASE_HASH_TABLES_H_