forked from lemire/rollinghashcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
unit.cpp
200 lines (176 loc) · 5.61 KB
/
unit.cpp
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
#include <map>
#include <deque>
#include "cyclichash.h"
#include "rabinkarphash.h"
#include "generalhash.h"
#include "threewisehash.h"
using namespace std;
template<class hashfunction>
bool testExtendAndPrepend(uint L = 19) {
const uint n(4);//n-grams
hashfunction hf(n, L);
string input = "XABCDY";
string base(input.begin() + 1, input.end() - 1);
assert(base.size() == n);
string extend(input.begin() + 1, input.end());
string prepend(input.begin(), input.end() - 1);
for (string::const_iterator j = base.begin(); j != base.end(); ++j)
{
hf.eat(*j);
}
if(hf.hashvalue != hf.hash(base)) {
std::cout <<"bug!"<< std::endl;
std::cout << base << " " << hf.hash(base) << std::endl;
return false;
}
if(hf.hash_prepend(input[0]) != hf.hash(prepend)) {
std::cout <<"bug!"<< std::endl;
std::cout << prepend << " " << hf.hash_prepend(input[0]) << " " << hf.hash(prepend) << std::endl;
return false;
}
if(hf.hash_extend(input.back()) != hf.hash(extend)) {
std::cout <<"bug!"<< std::endl;
std::cout << extend << " " << hf.hash_extend(input.back()) << " " << hf.hash(extend) << std::endl;
return false;
}
assert(hf.hashvalue == hf.hash(base));
assert(hf.hash_prepend(input[0]) == hf.hash(prepend));
assert(hf.hash_extend(input.back()) == hf.hash(extend));
return true;
}
template<class hashfunction>
bool isItAFunction(uint L = 7) {
mersenneRNG generator(5);
const uint n(3);//n-grams
hashfunction hf(n,L );
deque<unsigned char> s;
for(uint32 k = 0; k<n; ++k) {
unsigned char c = static_cast<unsigned char>(generator()+65);
s.push_back(c);
hf.eat(c);
}
for(uint32 k = 0; k<100000; ++k) {
unsigned char out = s.front();
s.pop_front();
char c = static_cast<char>(generator()+65);
s.push_back(c);
hf.update(out,c);
if(hf.hash(s) != hf.hashvalue) {
for(deque<unsigned char>::iterator ii=s.begin(); ii!=s.end(); ++ii)
cout<<*ii<<" "<<static_cast<uint32>(*ii)<<endl;
cerr<<"bug"<<endl;
cerr<<s[0]<<s[1]<<s[2]<<" was hashed to "<<hf.hashvalue
<<" when true hash value is "<<hf.hash(s)<<endl;
for(uint j = 0; j<n; ++j)
cerr<<s[j]<<"->"<<hf.hasher.hashvalues[s[j]]<<endl;
return false;
}
}
return true;
}
template<class hashfunction>
bool doesReverseUpdateWorks(uint L = 7) {
mersenneRNG generator(5);
const uint n(3);//n-grams
hashfunction hf(n,L );
deque<unsigned char> s;
for(uint32 k = 0; k<n; ++k) {
unsigned char c = static_cast<unsigned char>(generator()+65);
s.push_back(c);
hf.eat(c);
}
for(uint32 k = 0; k<100000; ++k) {
unsigned char out = s.front();
s.pop_front();
char c = static_cast<char>(generator()+65);
s.push_back(c);
hf.update(out,c);
hf.reverse_update(out,c);
hf.update(out,c);
if(hf.hash(s) != hf.hashvalue) {
return false;
}
}
return true;
}
template<class hashfunction>
bool isItRandom(uint L = 19) {
cout<<"checking that it is randomized "<<endl;
int n = 5;
vector<unsigned char> data(n);
for(int k = 0; k < n; ++k ) {
data[k] = static_cast<unsigned char>(k);
}
hashfunction base(n,L );
uint64 x = base.hash(data);
for(int k = 0; k < 100; ++k ) {
hashfunction hf(n,L);
uint64 y = hf.hash(data);
if(y != x) {
cout<<"It is randomized! "<<endl;
return true;
}
cout<<"collision "<<y<<endl;
}
cout<<"Not randomized! "<<endl;
return false;// we conclude that it always hashes to the same value (this is bad)
}
bool test() {
bool ok(true);
cout<<"Karp-Rabin"<<endl;
for(uint L = 1; L<=32; ++L) {
if(!ok) return false;
ok&=isItAFunction<KarpRabinHash<> >();
}
ok&=isItRandom<KarpRabinHash<> >();
for(uint L = 1; L<=64; ++L) {
if(!ok) return false;
ok&=isItAFunction<KarpRabinHash<uint64> >();
}
ok&=isItRandom<KarpRabinHash<uint64> >();
if(!ok) return false;
cout<<"cyclic"<<endl;
for(uint L = 2; L<=32; ++L) {
if(!ok) return false;
ok&=testExtendAndPrepend<CyclicHash<> >(L);
ok&=isItAFunction<CyclicHash<> >(L);
ok&=doesReverseUpdateWorks<CyclicHash<> >(L);
}
for(uint L = 2; L<=64; ++L) {
if(!ok) return false;
ok&=testExtendAndPrepend<CyclicHash<uint64> >(L);
ok&=isItAFunction<CyclicHash<uint64> >(L);
}
ok&=isItRandom<CyclicHash<> >();
ok&=isItRandom<CyclicHash<uint64> >();
cout<<"three-wise"<<endl;
for(uint L = 1; L<=32; ++L) {
ok&=isItAFunction<ThreeWiseHash<> >(L);
}
ok&=isItRandom<ThreeWiseHash<> >();
for(uint L = 1; L<=64; ++L) {
ok&=isItAFunction<ThreeWiseHash<uint64> >(L);
}
ok&=isItRandom<ThreeWiseHash<uint64> >();
cout<<"general"<<endl;
ok&=isItAFunction<GeneralHash<NOPRECOMP> >(9);
if(!ok) return false;
ok&=isItRandom<GeneralHash<NOPRECOMP> >();
if(!ok) return false;
ok&=isItAFunction<GeneralHash<NOPRECOMP> >(19);
cout<<"general"<<endl;
ok&=isItAFunction<GeneralHash<FULLPRECOMP> >(9);
if(!ok) return false;
ok&=isItRandom<GeneralHash<FULLPRECOMP> >();
if(!ok) return false;
ok&=isItAFunction<GeneralHash<FULLPRECOMP> >(19);
return ok;
}
int main() {
bool ok(test());
if(ok)
cout<<"your code is ok!"<<endl;
else
cout<<"you have a bug of some kind"<<endl;
return 0;
}