blob: 004d6ddeed2502690b30f7dc11039075c6d79f15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
#include "hash.h"
subExceptionDef( HashException )
template<> uint32_t __calcHashCode<int>( const int &k )
{
return k;
}
template<> bool __cmpHashKeys<int>( const int &a, const int &b )
{
return a == b;
}
template<> uint32_t __calcHashCode<unsigned int>( const unsigned int &k )
{
return k;
}
template<> bool __cmpHashKeys<unsigned int>( const unsigned int &a, const unsigned int &b )
{
return a == b;
}
template<>
uint32_t __calcHashCode<const char *>( const char * const &k )
{
if (k == NULL)
{
return 0;
}
unsigned long int nPos = 0;
for( const char *s = k; *s; s++ )
{
nPos = *s + (nPos << 6) + (nPos << 16) - nPos;
}
return nPos;
}
template<> bool __cmpHashKeys<const char *>( const char * const &a, const char * const &b )
{
if( a == b )
return true;
for(int j=0; a[j] == b[j]; j++ )
if( *a == '\0' )
return true;
return false;
}
template<>
uint32_t __calcHashCode<char *>( char * const &k )
{
if (k == NULL)
{
return 0;
}
unsigned long int nPos = 0;
for( const char *s = k; *s; s++ )
{
nPos = *s + (nPos << 6) + (nPos << 16) - nPos;
}
return nPos;
}
template<> bool __cmpHashKeys<char *>( char * const &a, char * const &b )
{
if( a == b )
return true;
for(int j=0; a[j] == b[j]; j++ )
if( *a == '\0' )
return true;
return false;
}
template<> uint32_t __calcHashCode<std::string>( const std::string &k )
{
std::string::size_type j, sz = k.size();
const char *s = k.c_str();
unsigned long int nPos = 0;
for( j = 0; j < sz; j++, s++ )
{
nPos = *s + (nPos << 6) + (nPos << 16) - nPos;
}
return nPos;
}
template<> bool __cmpHashKeys<std::string>( const std::string &a, const std::string &b )
{
return a == b;
}
template<> uint32_t __calcHashCode<Hashable>( const Hashable &k )
{
return 0;
//return k.getHashCode();
}
template<> bool __cmpHashKeys<Hashable>( const Hashable &a, const Hashable &b )
{
return false;
//return a.compareForHash( b );
}
|