mas01mc@292
|
1 #include "lshlib.h"
|
mas01mc@292
|
2
|
mas01mc@292
|
3
|
mas01mc@292
|
4 void err(char*s){cout << s << endl;exit(2);}
|
mas01mc@292
|
5
|
mas01mc@292
|
6 Uns32T get_page_logn(){
|
mas01mc@292
|
7 int pagesz = (int)sysconf(_SC_PAGESIZE);
|
mas01mc@292
|
8 return (Uns32T)log2((double)pagesz);
|
mas01mc@292
|
9 }
|
mas01mc@292
|
10
|
mas01cr@370
|
11 unsigned align_up(unsigned x, unsigned w) { return (((x) + ((1<<w)-1)) & ~((1<<w)-1)); }
|
mas01mc@292
|
12
|
mas01mc@292
|
13 void H::error(const char* a, const char* b, const char *sysFunc) {
|
mas01mc@292
|
14 cerr << a << ": " << b << endl;
|
mas01mc@292
|
15 if (sysFunc) {
|
mas01mc@292
|
16 perror(sysFunc);
|
mas01mc@292
|
17 }
|
mas01mc@292
|
18 exit(1);
|
mas01mc@292
|
19 }
|
mas01mc@292
|
20
|
mas01mc@519
|
21 H::H():
|
mas01mc@519
|
22 multiProbePtr(new MultiProbe()),
|
mas01mc@519
|
23 boundaryDistances(0)
|
mas01mc@519
|
24 {
|
mas01mc@293
|
25 // Delay initialization of lsh functions until we know the parameters
|
mas01mc@293
|
26 }
|
mas01mc@293
|
27
|
mas01mc@293
|
28 H::H(Uns32T kk, Uns32T mm, Uns32T dd, Uns32T NN, Uns32T CC, float ww, float rr):
|
mas01mc@292
|
29 #ifdef USE_U_FUNCTIONS
|
mas01mc@292
|
30 use_u_functions(true),
|
mas01mc@292
|
31 #else
|
mas01mc@292
|
32 use_u_functions(false),
|
mas01mc@292
|
33 #endif
|
mas01mc@293
|
34 maxp(0),
|
mas01mc@292
|
35 bucketCount(0),
|
mas01mc@292
|
36 pointCount(0),
|
mas01mc@292
|
37 N(NN),
|
mas01mc@292
|
38 C(CC),
|
mas01mc@292
|
39 k(kk),
|
mas01mc@292
|
40 m(mm),
|
mas01mc@293
|
41 L((mm*(mm-1))/2),
|
mas01mc@293
|
42 d(dd),
|
mas01mc@293
|
43 w(ww),
|
mas01mc@519
|
44 radius(rr),
|
mas01mc@519
|
45 multiProbePtr(new MultiProbe()),
|
mas01mc@519
|
46 boundaryDistances(0)
|
mas01mc@292
|
47 {
|
mas01mc@292
|
48
|
mas01mc@292
|
49 if(m<2){
|
mas01mc@292
|
50 m=2;
|
mas01mc@292
|
51 L=1; // check value of L
|
mas01mc@292
|
52 cout << "warning: setting m=2, L=1" << endl;
|
mas01mc@292
|
53 }
|
mas01mc@292
|
54 if(use_u_functions && k%2){
|
mas01mc@292
|
55 k++; // make sure k is even
|
mas01mc@292
|
56 cout << "warning: setting k even" << endl;
|
mas01mc@292
|
57 }
|
mas01mc@293
|
58
|
mas01mc@293
|
59 // We have the necessary parameters, so construct hashfunction datastructures
|
mas01mc@293
|
60 initialize_lsh_functions();
|
mas01mc@292
|
61 }
|
mas01mc@292
|
62
|
mas01mc@293
|
63 void H::initialize_lsh_functions(){
|
mas01mc@292
|
64 H::P = UH_PRIME_DEFAULT;
|
mas01mc@292
|
65
|
mas01mc@292
|
66 /* FIXME: don't use time(); instead use /dev/random or similar */
|
mas01mc@292
|
67 /* FIXME: write out the seed somewhere, so that we can get
|
mas01mc@292
|
68 repeatability */
|
mas01mc@292
|
69 #ifdef MT19937
|
mas01mc@292
|
70 init_genrand(time(NULL));
|
mas01mc@292
|
71 #else
|
mas01mc@292
|
72 srand(time(NULL)); // seed random number generator
|
mas01mc@292
|
73 #endif
|
mas01mc@293
|
74 Uns32T i,j, kk;
|
mas01mc@293
|
75 #ifdef USE_U_FUNCTIONS
|
mas01mc@293
|
76 H::A = new float**[ H::m ]; // m x k x d random projectors
|
mas01mc@293
|
77 H::b = new float*[ H::m ]; // m x k random biases
|
mas01mc@293
|
78 #else
|
mas01mc@293
|
79 H::A = new float**[ H::L ]; // m x k x d random projectors
|
mas01mc@293
|
80 H::b = new float*[ H::L ]; // m x k random biases
|
mas01mc@293
|
81 #endif
|
mas01mc@293
|
82 H::g = new Uns32T*[ H::L ]; // L x k random projections
|
mas01mc@293
|
83 assert( H::g && H::A && H::b ); // failure
|
mas01mc@293
|
84 #ifdef USE_U_FUNCTIONS
|
mas01mc@293
|
85 // Use m \times u_i functions \in R^{(k/2) \times (d)}
|
mas01mc@293
|
86 // Combine to make L=m(m-1)/2 hash functions \in R^{k \times d}
|
mas01mc@293
|
87 for( j = 0; j < H::m ; j++ ){ // m functions u_i(v)
|
mas01mc@293
|
88 H::A[j] = new float*[ H::k/2 ]; // k/2 x d 2-stable distribution coefficients
|
mas01mc@293
|
89 H::b[j] = new float[ H::k/2 ]; // bias
|
mas01mc@293
|
90 assert( H::A[j] && H::b[j] ); // failure
|
mas01mc@293
|
91 for( kk = 0; kk < H::k/2 ; kk++ ){
|
mas01mc@293
|
92 H::A[j][kk] = new float[ H::d ];
|
mas01mc@293
|
93 assert( H::A[j][kk] ); // failure
|
mas01mc@293
|
94 for(Uns32T i = 0 ; i < H::d ; i++ )
|
mas01mc@293
|
95 H::A[j][kk][i] = H::randn(); // Normal
|
mas01mc@293
|
96 H::b[j][kk] = H::ranf()*H::w; // Uniform
|
mas01mc@293
|
97 }
|
mas01mc@293
|
98 }
|
mas01mc@293
|
99 #else
|
mas01mc@293
|
100 // Use m \times u_i functions \in R^{k \times (d)}
|
mas01mc@293
|
101 // Combine to make L=m(m-1)/2 hash functions \in R^{k \times d}
|
mas01mc@293
|
102 for( j = 0; j < H::L ; j++ ){ // m functions u_i(v)
|
mas01mc@293
|
103 H::A[j] = new float*[ H::k ]; // k x d 2-stable distribution coefficients
|
mas01mc@293
|
104 H::b[j] = new float[ H::k ]; // bias
|
mas01mc@293
|
105 assert( H::A[j] && H::b[j] ); // failure
|
mas01mc@293
|
106 for( kk = 0; kk < H::k ; kk++ ){
|
mas01mc@293
|
107 H::A[j][kk] = new float[ H::d ];
|
mas01mc@293
|
108 assert( H::A[j][kk] ); // failure
|
mas01mc@293
|
109 for(Uns32T i = 0 ; i < H::d ; i++ )
|
mas01mc@293
|
110 H::A[j][kk][i] = H::randn(); // Normal
|
mas01mc@293
|
111 H::b[j][kk] = H::ranf()*H::w; // Uniform
|
mas01mc@293
|
112 }
|
mas01mc@293
|
113 }
|
mas01mc@293
|
114 #endif
|
mas01mc@293
|
115
|
mas01mc@293
|
116 // Storage for LSH hash function output (Uns32T)
|
mas01mc@293
|
117 for( j = 0 ; j < H::L ; j++ ){ // L functions g_j(u_a, u_b) a,b \in nchoosek(m,2)
|
mas01mc@293
|
118 H::g[j] = new Uns32T[ H::k ]; // k x 32-bit hash values, gj(v)=[x0 x1 ... xk-1] xk \in Z
|
mas01mc@293
|
119 assert( H::g[j] );
|
mas01mc@292
|
120 }
|
mas01mc@292
|
121
|
mas01mc@293
|
122 // LSH Hash tables
|
mas01mc@293
|
123 H::h = new bucket**[ H::L ];
|
mas01mc@293
|
124 assert( H::h );
|
mas01mc@292
|
125 for( j = 0 ; j < H::L ; j++ ){
|
mas01mc@292
|
126 H::h[j] = new bucket*[ H::N ];
|
mas01mc@292
|
127 assert( H::h[j] );
|
mas01mc@292
|
128 for( i = 0 ; i < H::N ; i++)
|
mas01mc@292
|
129 H::h[j][i] = 0;
|
mas01mc@292
|
130 }
|
mas01mc@293
|
131
|
mas01mc@293
|
132 // Standard hash functions
|
mas01mc@293
|
133 H::r1 = new Uns32T*[ H::L ];
|
mas01mc@293
|
134 H::r2 = new Uns32T*[ H::L ];
|
mas01mc@293
|
135 assert( H::r1 && H::r2 ); // failure
|
mas01mc@293
|
136 for( j = 0 ; j < H::L ; j++ ){
|
mas01mc@293
|
137 H::r1[ j ] = new Uns32T[ H::k ];
|
mas01mc@293
|
138 H::r2[ j ] = new Uns32T[ H::k ];
|
mas01mc@293
|
139 assert( H::r1[j] && H::r2[j] ); // failure
|
mas01mc@293
|
140 for( i = 0; i<H::k; i++){
|
mas01mc@293
|
141 H::r1[j][i] = randr();
|
mas01mc@293
|
142 H::r2[j][i] = randr();
|
mas01mc@293
|
143 }
|
mas01mc@293
|
144 }
|
mas01mc@293
|
145
|
mas01mc@516
|
146 // Storage for whole or partial function evaluation depending on USE_U_FUNCTIONS
|
mas01mc@293
|
147 H::initialize_partial_functions();
|
mas01mc@519
|
148
|
mas01mc@519
|
149 // MultiProbe distance functions, there are 2*k per hashtable
|
mas01mc@519
|
150 H::boundaryDistances = new float*[ H::L ]; // L x 2k boundary distances
|
mas01mc@519
|
151 assert( H::boundaryDistances ); // failure
|
mas01mc@519
|
152 for( j = 0; j < H::L ; j++ ){ // 2*k functions x_i(q)
|
mas01mc@519
|
153 H::boundaryDistances[j] = new float[ 2*H::k ];
|
mas01mc@519
|
154 assert( H::boundaryDistances[j] ); // failure
|
mas01mc@519
|
155 for( kk = 0; kk < 2*H::k ; kk++ )
|
mas01mc@519
|
156 H::boundaryDistances[j][kk] = 0.0f; // initialize with zeros
|
mas01mc@519
|
157 }
|
mas01mc@293
|
158 }
|
mas01mc@293
|
159
|
mas01mc@293
|
160 void H::initialize_partial_functions(){
|
mas01mc@293
|
161
|
mas01mc@293
|
162 #ifdef USE_U_FUNCTIONS
|
mas01mc@293
|
163 H::uu = vector<vector<Uns32T> >(H::m);
|
mas01mc@293
|
164 for( Uns32T aa=0 ; aa < H::m ; aa++ )
|
mas01mc@293
|
165 H::uu[aa] = vector<Uns32T>( H::k/2 );
|
mas01mc@293
|
166 #endif
|
mas01mc@293
|
167 }
|
mas01mc@293
|
168
|
mas01mc@293
|
169
|
mas01mc@293
|
170 // Generate z ~ N(0,1)
|
mas01mc@293
|
171 float H::randn(){
|
mas01mc@293
|
172 // Box-Muller
|
mas01mc@293
|
173 float x1, x2;
|
mas01mc@293
|
174 do{
|
mas01mc@293
|
175 x1 = ranf();
|
mas01mc@293
|
176 } while (x1 == 0); // cannot take log of 0
|
mas01mc@293
|
177 x2 = ranf();
|
mas01mc@293
|
178 float z;
|
mas01mc@293
|
179 z = sqrtf(-2.0 * logf(x1)) * cosf(2.0 * M_PI * x2);
|
mas01mc@293
|
180 return z;
|
mas01mc@293
|
181 }
|
mas01mc@293
|
182
|
mas01mc@293
|
183 float H::ranf(){
|
mas01mc@293
|
184 #ifdef MT19937
|
mas01mc@293
|
185 return (float) genrand_real2();
|
mas01mc@293
|
186 #else
|
mas01mc@293
|
187 return (float)( (double)rand() / ((double)(RAND_MAX)+(double)(1)) );
|
mas01mc@293
|
188 #endif
|
mas01mc@293
|
189 }
|
mas01mc@293
|
190
|
mas01mc@293
|
191 // range is 1..2^29
|
mas01mc@293
|
192 /* FIXME: that looks like an ... odd range. Still. */
|
mas01mc@293
|
193 Uns32T H::randr(){
|
mas01mc@293
|
194 #ifdef MT19937
|
mas01mc@293
|
195 return (Uns32T)((genrand_int32() >> 3) + 1);
|
mas01mc@293
|
196 #else
|
mas01mc@293
|
197 return (Uns32T) ((rand() >> 2) + 1);
|
mas01mc@293
|
198 #endif
|
mas01mc@292
|
199 }
|
mas01mc@292
|
200
|
mas01mc@292
|
201 // Destruct hash tables
|
mas01mc@292
|
202 H::~H(){
|
mas01mc@293
|
203 Uns32T i,j,kk;
|
mas01mc@340
|
204 bucket** pp;
|
mas01mc@293
|
205 #ifdef USE_U_FUNCTIONS
|
mas01mc@293
|
206 for( j = 0 ; j < H::m ; j++ ){
|
mas01mc@293
|
207 for( kk = 0 ; kk < H::k/2 ; kk++ )
|
mas01mc@293
|
208 delete[] A[j][kk];
|
mas01mc@293
|
209 delete[] A[j];
|
mas01mc@293
|
210 }
|
mas01mc@293
|
211 delete[] A;
|
mas01mc@293
|
212 for( j = 0 ; j < H::m ; j++ )
|
mas01mc@293
|
213 delete[] b[j];
|
mas01mc@293
|
214 delete[] b;
|
mas01mc@293
|
215 #else
|
mas01mc@293
|
216 for( j = 0 ; j < H::L ; j++ ){
|
mas01mc@293
|
217 for( kk = 0 ; kk < H::k ; kk++ )
|
mas01mc@293
|
218 delete[] A[j][kk];
|
mas01mc@293
|
219 delete[] A[j];
|
mas01mc@293
|
220 }
|
mas01mc@293
|
221 delete[] A;
|
mas01mc@293
|
222 for( j = 0 ; j < H::L ; j++ )
|
mas01mc@293
|
223 delete[] b[j];
|
mas01mc@293
|
224 delete[] b;
|
mas01mc@293
|
225 #endif
|
mas01mc@293
|
226
|
mas01mc@293
|
227 for( j = 0 ; j < H::L ; j++ )
|
mas01mc@293
|
228 delete[] g[j];
|
mas01mc@293
|
229 delete[] g;
|
mas01mc@292
|
230 for( j=0 ; j < H::L ; j++ ){
|
mas01mc@292
|
231 delete[] H::r1[ j ];
|
mas01mc@292
|
232 delete[] H::r2[ j ];
|
mas01mc@340
|
233 for(i = 0; i< H::N ; i++){
|
mas01mc@340
|
234 pp = 0;
|
mas01mc@340
|
235 #ifdef LSH_CORE_ARRAY
|
mas01mc@340
|
236 if(H::h[ j ][ i ])
|
mas01mc@340
|
237 if(H::h[ j ][ i ]->t2 & LSH_CORE_ARRAY_BIT){
|
mas01mc@340
|
238 pp = get_pointer_to_bucket_linked_list(H::h[ j ][ i ]);
|
mas01mc@340
|
239 if(*pp){
|
mas01mc@344
|
240 (*pp)->snext.ptr=0; // Head of list uses snext as a non-pointer value
|
mas01mc@340
|
241 delete *pp; // Now the destructor can do its work properly
|
mas01mc@340
|
242 }
|
mas01mc@340
|
243 free(H::h[ j ][ i ]->next);
|
mas01mc@340
|
244 H::h[ j ][ i ]->next = 0; // Zero next pointer
|
mas01mc@344
|
245 H::h[ j ][ i ]->snext.ptr = 0; // Zero head-of-list pointer as above
|
mas01mc@340
|
246 }
|
mas01mc@340
|
247 #endif
|
mas01mc@292
|
248 delete H::h[ j ][ i ];
|
mas01mc@340
|
249 }
|
mas01mc@292
|
250 delete[] H::h[ j ];
|
mas01mc@292
|
251 }
|
mas01mc@474
|
252 delete[] H::r1;
|
mas01mc@474
|
253 delete[] H::r2;
|
mas01mc@474
|
254 delete[] H::h;
|
mas01mc@519
|
255
|
mas01mc@519
|
256 // MultiProbe cleanup
|
mas01mc@519
|
257 for( j = 0 ; j < H::L ; j++ )
|
mas01mc@519
|
258 delete[] H::boundaryDistances[j];
|
mas01mc@519
|
259 delete[] H::boundaryDistances;
|
mas01mc@519
|
260 delete multiProbePtr;
|
mas01mc@292
|
261 }
|
mas01mc@292
|
262
|
mas01mc@292
|
263
|
mas01mc@293
|
264 // Compute all hash functions for vector v
|
mas01mc@293
|
265 // #ifdef USE_U_FUNCTIONS use Combination of m \times h_i \in R^{(k/2) \times d}
|
mas01mc@293
|
266 // to make L \times g_j functions \in Z^k
|
mas01mc@293
|
267 void H::compute_hash_functions(vector<float>& v){ // v \in R^d
|
mas01mc@293
|
268 float iw = 1. / H::w; // hash bucket width
|
mas01mc@293
|
269 Uns32T aa, kk;
|
mas01mc@293
|
270 if( v.size() != H::d )
|
mas01mc@293
|
271 error("v.size != H::d","","compute_hash_functions"); // check input vector dimensionality
|
mas01mc@293
|
272 double tmp = 0;
|
mas01mc@519
|
273 float *pA, *pb, *bd;
|
mas01mc@293
|
274 Uns32T *pg;
|
mas01mc@293
|
275 int dd;
|
mas01mc@293
|
276 vector<float>::iterator vi;
|
mas01mc@293
|
277 vector<Uns32T>::iterator ui;
|
mas01mc@293
|
278
|
mas01mc@293
|
279 #ifdef USE_U_FUNCTIONS
|
mas01mc@293
|
280 Uns32T bb;
|
mas01mc@293
|
281 // Store m dot products to expand
|
mas01mc@293
|
282 for( aa=0; aa < H::m ; aa++ ){
|
mas01mc@293
|
283 ui = H::uu[aa].begin();
|
mas01mc@293
|
284 for( kk = 0 ; kk < H::k/2 ; kk++ ){
|
mas01mc@293
|
285 pb = *( H::b + aa ) + kk;
|
mas01mc@293
|
286 pA = * ( * ( H::A + aa ) + kk );
|
mas01mc@293
|
287 dd = H::d;
|
mas01mc@293
|
288 tmp = 0.;
|
mas01mc@293
|
289 vi = v.begin();
|
mas01mc@293
|
290 while( dd-- )
|
mas01mc@293
|
291 tmp += *pA++ * *vi++; // project
|
mas01mc@293
|
292 tmp += *pb; // translate
|
mas01mc@293
|
293 tmp *= iw; // scale
|
mas01mc@293
|
294 *ui++ = (Uns32T) floor(tmp); // floor
|
mas01mc@293
|
295 }
|
mas01mc@293
|
296 }
|
mas01mc@293
|
297 // Binomial combinations of functions u_{a,b} \in Z^{(k/2) \times d}
|
mas01mc@293
|
298 Uns32T j;
|
mas01mc@293
|
299 for( aa=0, j=0 ; aa < H::m-1 ; aa++ )
|
mas01mc@293
|
300 for( bb = aa + 1 ; bb < H::m ; bb++, j++ ){
|
mas01mc@293
|
301 pg= *( H::g + j ); // L \times functions g_j(v) \in Z^k
|
mas01mc@293
|
302 // u_1 \in Z^{(k/2) \times d}
|
mas01mc@293
|
303 ui = H::uu[aa].begin();
|
mas01mc@293
|
304 kk=H::k/2;
|
mas01mc@293
|
305 while( kk-- )
|
mas01mc@293
|
306 *pg++ = *ui++; // hash function g_j(v)=[x1 x2 ... x(k/2)]; xk \in Z
|
mas01mc@293
|
307 // u_2 \in Z^{(k/2) \times d}
|
mas01mc@293
|
308 ui = H::uu[bb].begin();
|
mas01mc@293
|
309 kk=H::k/2;
|
mas01mc@293
|
310 while( kk--)
|
mas01mc@293
|
311 *pg++ = *ui++; // hash function g_j(v)=[x(k/2+1) x(k/2+2) ... xk]; xk \in Z
|
mas01mc@293
|
312 }
|
mas01mc@293
|
313 #else
|
mas01mc@293
|
314 for( aa=0; aa < H::L ; aa++ ){
|
mas01mc@514
|
315 pg= *( H::g + aa ); // L \times functions g_j(v) \in Z^k
|
mas01mc@519
|
316 bd= *( H::boundaryDistances + aa);
|
mas01mc@514
|
317 for( kk = 0 ; kk != H::k ; kk++ ){
|
mas01mc@293
|
318 pb = *( H::b + aa ) + kk;
|
mas01mc@293
|
319 pA = * ( * ( H::A + aa ) + kk );
|
mas01mc@293
|
320 dd = H::d;
|
mas01mc@293
|
321 tmp = 0.;
|
mas01mc@293
|
322 vi = v.begin();
|
mas01mc@293
|
323 while( dd-- )
|
mas01mc@293
|
324 tmp += *pA++ * *vi++; // project
|
mas01mc@293
|
325 tmp += *pb; // translate
|
mas01mc@519
|
326 tmp *= iw; // scale
|
mas01mc@519
|
327 *pg = (Uns32T) (floor(tmp)); // hash function g_j(v)=[x1 x2 ... xk]; xk \in Z
|
mas01mc@519
|
328 *bd = (tmp - *pg++);//*w; // boundary distance -1
|
mas01mc@519
|
329 *(bd+1) = (1.0f - *bd); //*w; // boundary distance +1
|
mas01mc@519
|
330 bd+=2;
|
mas01mc@293
|
331 }
|
mas01mc@293
|
332 }
|
mas01mc@293
|
333 #endif
|
mas01mc@293
|
334 }
|
mas01mc@293
|
335
|
mas01mc@292
|
336 // make hash value \in Z
|
mas01mc@293
|
337 void H::generate_hash_keys(Uns32T*g, Uns32T* r1, Uns32T* r2){
|
mas01mc@293
|
338 H::t1 = computeProductModDefaultPrime( g, r1, H::k ) % H::N;
|
mas01mc@293
|
339 H::t2 = computeProductModDefaultPrime( g, r2, H::k );
|
mas01mc@292
|
340 }
|
mas01mc@292
|
341
|
mas01mc@519
|
342 // make hash value by purturbating the given hash functions
|
mas01mc@519
|
343 // according the the boundary distances of the current query
|
mas01mc@519
|
344 void H::generate_multiprobe_keys(Uns32T*g, Uns32T* r1, Uns32T* r2){
|
mas01mc@519
|
345 assert(!multiProbePtr->empty()); // Test this for now, until all is stable
|
mas01mc@520
|
346 Uns32T* mpg = new Uns32T[H::k]; // temporary array storage
|
mas01mc@519
|
347
|
mas01mc@519
|
348 // Copy the hash bucket identifiers
|
mas01mc@519
|
349 Uns32T* mpgPtr = mpg;
|
mas01mc@519
|
350 Uns32T kk = H::k;
|
mas01mc@519
|
351 while(kk--)
|
mas01mc@519
|
352 *mpgPtr++ = *g++;
|
mas01mc@519
|
353
|
mas01mc@519
|
354 // Retrieve the next purturbation set
|
mas01mc@519
|
355 perturbation_set ps = multiProbePtr->getNextPerturbationSet();
|
mas01mc@519
|
356 perturbation_set::iterator it = ps.begin();
|
mas01mc@519
|
357
|
mas01mc@519
|
358 // Perturbate the hash functions g
|
mas01mc@519
|
359 while( it != ps.end() ){
|
mas01mc@519
|
360 *(mpg + multiProbePtr->getIndex(it)) += multiProbePtr->getBoundary(it);
|
mas01mc@519
|
361 it++;
|
mas01mc@519
|
362 }
|
mas01mc@519
|
363
|
mas01mc@519
|
364 H::t1 = computeProductModDefaultPrime( mpg, r1, H::k ) % H::N;
|
mas01mc@519
|
365 H::t2 = computeProductModDefaultPrime( mpg, r2, H::k );
|
mas01mc@519
|
366
|
mas01mc@519
|
367 delete[] mpg; // free up temporary storage
|
mas01mc@519
|
368 }
|
mas01mc@519
|
369
|
mas01mc@292
|
370 #define CR_ASSERT(b){if(!(b)){fprintf(stderr, "ASSERT failed on line %d, file %s.\n", __LINE__, __FILE__); exit(1);}}
|
mas01mc@292
|
371
|
mas01mc@292
|
372 // Computes (a.b) mod UH_PRIME_DEFAULT
|
mas01mc@293
|
373 inline Uns32T H::computeProductModDefaultPrime(Uns32T *a, Uns32T *b, IntT size){
|
mas01mc@292
|
374 LongUns64T h = 0;
|
mas01mc@292
|
375
|
mas01mc@292
|
376 for(IntT i = 0; i < size; i++){
|
mas01mc@292
|
377 h = h + (LongUns64T)a[i] * (LongUns64T)b[i];
|
mas01mc@292
|
378 h = (h & TWO_TO_32_MINUS_1) + 5 * (h >> 32);
|
mas01mc@292
|
379 if (h >= UH_PRIME_DEFAULT) {
|
mas01mc@292
|
380 h = h - UH_PRIME_DEFAULT;
|
mas01mc@292
|
381 }
|
mas01mc@292
|
382 CR_ASSERT(h < UH_PRIME_DEFAULT);
|
mas01mc@292
|
383 }
|
mas01mc@292
|
384 return h;
|
mas01mc@292
|
385 }
|
mas01mc@292
|
386
|
mas01mc@292
|
387 Uns32T H::bucket_insert_point(bucket **pp){
|
mas01mc@296
|
388 collisionCount = 0;
|
mas01mc@340
|
389 #ifdef LSH_LIST_HEAD_COUNTERS
|
mas01mc@292
|
390 if(!*pp){
|
mas01mc@292
|
391 *pp = new bucket();
|
mas01mc@292
|
392 (*pp)->t2 = 0; // Use t2 as a collision counter for the row
|
mas01mc@292
|
393 (*pp)->next = new bucket();
|
mas01mc@292
|
394 }
|
mas01mc@340
|
395 // The list head holds point collision count
|
mas01mc@340
|
396 if( (*pp)->t2 & LSH_CORE_ARRAY_BIT )
|
mas01mc@340
|
397 bucket_insert_point(get_pointer_to_bucket_linked_list(*pp)); // recurse
|
mas01mc@340
|
398 else{
|
mas01mc@340
|
399 collisionCount = (*pp)->t2;
|
mas01mc@340
|
400 if(collisionCount < H::C){ // Block if row is full
|
mas01mc@340
|
401 (*pp)->t2++; // Increment collision counter (numPoints in row)
|
mas01mc@340
|
402 pointCount++;
|
mas01mc@340
|
403 collisionCount++;
|
mas01mc@340
|
404 // Locate the bucket linked list
|
mas01mc@340
|
405 __bucket_insert_point( (*pp)->next );
|
mas01mc@340
|
406 }
|
mas01mc@292
|
407 }
|
mas01mc@340
|
408 #else // NOT USING LSH_LIST_HEAD_COUNTERS
|
mas01mc@340
|
409 if(!*pp)
|
mas01mc@340
|
410 *pp = new bucket();
|
mas01mc@296
|
411 pointCount++;
|
mas01mc@296
|
412 __bucket_insert_point(*pp); // No collision count storage
|
mas01mc@292
|
413 #endif
|
mas01mc@292
|
414 return collisionCount;
|
mas01mc@292
|
415 }
|
mas01mc@292
|
416
|
mas01mc@340
|
417 // insert points into hashtable row collision chain
|
mas01mc@292
|
418 void H::__bucket_insert_point(bucket* p){
|
mas01mc@292
|
419 if(p->t2 == IFLAG){ // initialization flag, is it in the domain of t2?
|
mas01mc@292
|
420 p->t2 = H::t2;
|
mas01mc@292
|
421 bucketCount++; // Record start of new point-locale collision chain
|
mas01mc@344
|
422 p->snext.ptr = new sbucket();
|
mas01mc@344
|
423 __sbucket_insert_point(p->snext.ptr);
|
mas01mc@292
|
424 return;
|
mas01mc@292
|
425 }
|
mas01mc@292
|
426
|
mas01mc@292
|
427 if(p->t2 == H::t2){
|
mas01mc@344
|
428 __sbucket_insert_point(p->snext.ptr);
|
mas01mc@292
|
429 return;
|
mas01mc@292
|
430 }
|
mas01mc@292
|
431
|
mas01mc@292
|
432 if(p->next){
|
mas01mc@340
|
433 // Construct list in t2 order
|
mas01mc@340
|
434 if(H::t2 < p->next->t2){
|
mas01mc@340
|
435 bucket* tmp = new bucket();
|
mas01mc@340
|
436 tmp->next = p->next;
|
mas01mc@340
|
437 p->next = tmp;
|
mas01mc@340
|
438 __bucket_insert_point(tmp);
|
mas01mc@340
|
439 }
|
mas01mc@340
|
440 else
|
mas01mc@340
|
441 __bucket_insert_point(p->next);
|
mas01mc@292
|
442 }
|
mas01mc@340
|
443 else {
|
mas01mc@292
|
444 p->next = new bucket();
|
mas01mc@292
|
445 __bucket_insert_point(p->next);
|
mas01mc@292
|
446 }
|
mas01mc@292
|
447 }
|
mas01mc@292
|
448
|
mas01mc@340
|
449 // insert points into point-locale collision chain
|
mas01mc@292
|
450 void H::__sbucket_insert_point(sbucket* p){
|
mas01mc@292
|
451 if(p->pointID==IFLAG){
|
mas01mc@292
|
452 p->pointID = H::p;
|
mas01mc@292
|
453 return;
|
mas01mc@292
|
454 }
|
mas01mc@340
|
455
|
mas01mc@292
|
456 // Search for pointID
|
mas01mc@340
|
457 if(p->snext){
|
mas01mc@292
|
458 __sbucket_insert_point(p->snext);
|
mas01mc@292
|
459 }
|
mas01mc@292
|
460 else{
|
mas01mc@340
|
461 // Make new point collision bucket at end of list
|
mas01mc@340
|
462 p->snext = new sbucket();
|
mas01mc@340
|
463 __sbucket_insert_point(p->snext);
|
mas01mc@292
|
464 }
|
mas01mc@292
|
465 }
|
mas01mc@292
|
466
|
mas01mc@293
|
467 inline bucket** H::get_bucket(int j){
|
mas01mc@292
|
468 return *(h+j);
|
mas01mc@292
|
469 }
|
mas01mc@292
|
470
|
mas01mc@340
|
471 // Find the linked-list pointer at the end of the CORE_ARRAY
|
mas01mc@340
|
472 bucket** H::get_pointer_to_bucket_linked_list(bucket* rowPtr){
|
mas01mc@344
|
473 Uns32T numBuckets = rowPtr->snext.numBuckets; // Cast pointer to unsigned int
|
mas01mc@343
|
474 Uns32T numPoints = rowPtr->t2 & 0x7FFFFFFF; // Value is stored in low 31 bits of t2 field
|
mas01mc@343
|
475 bucket** listPtr = reinterpret_cast<bucket**> (reinterpret_cast<unsigned int*>(rowPtr->next)+numPoints+numBuckets+1);
|
mas01mc@343
|
476 return listPtr;
|
mas01mc@340
|
477 }
|
mas01mc@340
|
478
|
mas01mc@293
|
479 // Interface to Locality Sensitive Hashing G
|
mas01mc@293
|
480 G::G(float ww, Uns32T kk,Uns32T mm, Uns32T dd, Uns32T NN, Uns32T CC, float rr):
|
mas01mc@293
|
481 H(kk,mm,dd,NN,CC,ww,rr), // constructor to initialize data structures
|
mas01mc@308
|
482 indexName(0),
|
mas01mc@293
|
483 lshHeader(0),
|
mas01mc@292
|
484 calling_instance(0),
|
mas01mc@293
|
485 add_point_callback(0)
|
mas01mc@292
|
486 {
|
mas01mc@293
|
487
|
mas01mc@292
|
488 }
|
mas01mc@292
|
489
|
mas01mc@292
|
490 // Serialize from file LSH constructor
|
mas01mc@292
|
491 // Read parameters from database file
|
mas01mc@292
|
492 // Load the hash functions, close the database
|
mas01mc@292
|
493 // Optionally load the LSH tables into head-allocated lists in core
|
mas01mc@292
|
494 G::G(char* filename, bool lshInCoreFlag):
|
mas01mc@293
|
495 H(), // default base-class constructor call delays data-structure initialization
|
mas01mc@309
|
496 indexName(0),
|
mas01mc@293
|
497 lshHeader(0),
|
mas01mc@292
|
498 calling_instance(0),
|
mas01mc@292
|
499 add_point_callback(0)
|
mas01mc@292
|
500 {
|
mas01mc@474
|
501 FILE* dbFile = 0;
|
mas01mc@292
|
502 int dbfid = unserialize_lsh_header(filename);
|
mas01mc@519
|
503
|
mas01mc@309
|
504 indexName = new char[O2_INDEX_MAXSTR];
|
mas01mc@309
|
505 strncpy(indexName, filename, O2_INDEX_MAXSTR); // COPY THE CONTENTS TO THE NEW POINTER
|
mas01mc@293
|
506 H::initialize_lsh_functions(); // Base-class data-structure initialization
|
mas01mc@293
|
507 unserialize_lsh_functions(dbfid); // populate with on-disk hashfunction values
|
mas01mc@292
|
508
|
mas01mc@292
|
509 // Format1 only needs unserializing if specifically requested
|
mas01mc@292
|
510 if(!(lshHeader->flags&O2_SERIAL_FILEFORMAT2) && lshInCoreFlag){
|
mas01mc@292
|
511 unserialize_lsh_hashtables_format1(dbfid);
|
mas01mc@292
|
512 }
|
mas01mc@292
|
513
|
mas01mc@292
|
514 // Format2 always needs unserializing
|
mas01mc@292
|
515 if(lshHeader->flags&O2_SERIAL_FILEFORMAT2 && lshInCoreFlag){
|
mas01mc@474
|
516 dbFile = fdopen(dbfid, "rb");
|
mas01mc@336
|
517 if(!dbFile)
|
mas01mc@336
|
518 error("Cannot open LSH file for reading", filename);
|
mas01mc@336
|
519 unserialize_lsh_hashtables_format2(dbFile);
|
mas01mc@292
|
520 }
|
mas01mc@336
|
521 serial_close(dbfid);
|
mas01mc@474
|
522 if(dbFile){
|
mas01mc@474
|
523 fclose(dbFile);
|
mas01mc@474
|
524 dbFile = 0;
|
mas01mc@474
|
525 }
|
mas01mc@336
|
526 }
|
mas01mc@292
|
527
|
mas01mc@292
|
528 G::~G(){
|
mas01mc@292
|
529 delete lshHeader;
|
mas01mc@474
|
530 delete[] indexName;
|
mas01mc@292
|
531 }
|
mas01mc@292
|
532
|
mas01mc@292
|
533 // single point insertion; inserted values are hash value and pointID
|
mas01mc@292
|
534 Uns32T G::insert_point(vector<float>& v, Uns32T pp){
|
mas01mc@292
|
535 Uns32T collisionCount = 0;
|
mas01mc@292
|
536 H::p = pp;
|
mas01mc@299
|
537 if(H::maxp && pp<=H::maxp)
|
mas01mc@296
|
538 error("points must be indexed in strict ascending order", "LSH::insert_point(vector<float>&, Uns32T pointID)");
|
mas01mc@296
|
539 H::maxp=pp; // Store highest pointID in database
|
mas01mc@293
|
540 H::compute_hash_functions( v );
|
mas01mc@292
|
541 for(Uns32T j = 0 ; j < H::L ; j++ ){ // insertion
|
mas01mc@293
|
542 H::generate_hash_keys( *( H::g + j ), *( H::r1 + j ), *( H::r2 + j ) );
|
mas01mc@292
|
543 collisionCount += bucket_insert_point( *(h + j) + t1 );
|
mas01mc@292
|
544 }
|
mas01mc@292
|
545 return collisionCount;
|
mas01mc@292
|
546 }
|
mas01mc@292
|
547
|
mas01mc@292
|
548
|
mas01mc@292
|
549 // batch insert for a point set
|
mas01mc@292
|
550 // inserted values are vector hash value and pointID starting at basePointID
|
mas01mc@292
|
551 void G::insert_point_set(vector<vector<float> >& vv, Uns32T basePointID){
|
mas01mc@292
|
552 for(Uns32T point=0; point<vv.size(); point++)
|
mas01mc@292
|
553 insert_point(vv[point], basePointID+point);
|
mas01mc@292
|
554 }
|
mas01mc@292
|
555
|
mas01mc@292
|
556 // point retrieval routine
|
mas01mc@292
|
557 void G::retrieve_point(vector<float>& v, Uns32T qpos, ReporterCallbackPtr add_point, void* caller){
|
mas01mc@519
|
558 assert(LSH_MULTI_PROBE_COUNT);
|
mas01mc@292
|
559 calling_instance = caller;
|
mas01mc@292
|
560 add_point_callback = add_point;
|
mas01mc@293
|
561 H::compute_hash_functions( v );
|
mas01mc@292
|
562 for(Uns32T j = 0 ; j < H::L ; j++ ){
|
mas01mc@519
|
563 // MultiProbe loop
|
mas01mc@519
|
564 multiProbePtr->generatePerturbationSets( *( H::boundaryDistances + j ) , 2*H::k, (unsigned)LSH_MULTI_PROBE_COUNT);
|
mas01mc@519
|
565 for(Uns32T multiProbeIdx = 0 ; multiProbeIdx < LSH_MULTI_PROBE_COUNT+1 ; multiProbeIdx++ ){
|
mas01mc@519
|
566 if(!multiProbeIdx)
|
mas01mc@519
|
567 H::generate_hash_keys( *( H::g + j ), *( H::r1 + j ), *( H::r2 + j ) );
|
mas01mc@519
|
568 else
|
mas01mc@519
|
569 H::generate_multiprobe_keys( *( H::g + j ), *( H::r1 + j ), *( H::r2 + j ) );
|
mas01mc@519
|
570 if( bucket* bPtr = *(get_bucket(j) + get_t1()) ) {
|
mas01mc@340
|
571 #ifdef LSH_LIST_HEAD_COUNTERS
|
mas01mc@519
|
572 if(bPtr->t2&LSH_CORE_ARRAY_BIT) {
|
mas01mc@519
|
573 retrieve_from_core_hashtable_array((Uns32T*)(bPtr->next), qpos);
|
mas01mc@519
|
574 } else {
|
mas01mc@519
|
575 bucket_chain_point( bPtr->next, qpos);
|
mas01mc@519
|
576 }
|
mas01mc@519
|
577 #else
|
mas01mc@519
|
578 bucket_chain_point( bPtr , qpos);
|
mas01mc@519
|
579 #endif
|
mas01cr@370
|
580 }
|
mas01cr@370
|
581 }
|
mas01mc@292
|
582 }
|
mas01mc@292
|
583 }
|
mas01mc@292
|
584
|
mas01mc@292
|
585 void G::retrieve_point_set(vector<vector<float> >& vv, ReporterCallbackPtr add_point, void* caller){
|
mas01mc@292
|
586 for(Uns32T qpos = 0 ; qpos < vv.size() ; qpos++ )
|
mas01mc@292
|
587 retrieve_point(vv[qpos], qpos, add_point, caller);
|
mas01mc@292
|
588 }
|
mas01mc@292
|
589
|
mas01mc@292
|
590 // export lsh tables to table structure on disk
|
mas01mc@292
|
591 //
|
mas01mc@292
|
592 // LSH TABLE STRUCTURE
|
mas01mc@292
|
593 // ---header 64 bytes ---
|
mas01mc@292
|
594 // [magic #tables #rows #cols elementSize databaseSize version flags dim #funs 0 0 0 0 0 0]
|
mas01mc@292
|
595 //
|
mas01mc@292
|
596 // ---random projections L x k x d float ---
|
mas01mc@292
|
597 // A[0][0][0] A[0][0][1] ... A[0][0][d-1]
|
mas01mc@292
|
598 // A[0][1][0] A[0][1][1] ... A[1][1][d-1]
|
mas01mc@292
|
599 // ...
|
mas01mc@292
|
600 // A[0][K-1][0] A[0][1][1] ... A[0][k-1][d-1]
|
mas01mc@292
|
601 // ...
|
mas01mc@292
|
602 // ...
|
mas01mc@292
|
603 // A[L-1][0][0] A[M-1][0][1] ... A[L-1][0][d-1]
|
mas01mc@292
|
604 // A[L-1][1][0] A[M-1][1][1] ... A[L-1][1][d-1]
|
mas01mc@292
|
605 // ...
|
mas01mc@292
|
606 // A[L-1][k-1][0] A[M-1][1][1] ... A[L-1][k-1][d-1]
|
mas01mc@292
|
607 //
|
mas01mc@292
|
608 // ---bias L x k float ---
|
mas01mc@292
|
609 // b[0][0] b[0][1] ... b[0][k-1]
|
mas01mc@292
|
610 // b[1][0] b[1][1] ... b[1][k-1]
|
mas01mc@292
|
611 // ...
|
mas01mc@292
|
612 // b[L-1][0] b[L-1][1] ... b[L-1][k-1]
|
mas01mc@292
|
613 //
|
mas01mc@292
|
614 // ---random r1 L x k float ---
|
mas01mc@292
|
615 // r1[0][0] r1[0][1] ... r1[0][k-1]
|
mas01mc@292
|
616 // r1[1][0] r1[1][1] ... r1[1][k-1]
|
mas01mc@292
|
617 // ...
|
mas01mc@292
|
618 // r1[L-1][0] r1[L-1][1] ... r1[L-1][k-1]
|
mas01mc@292
|
619 //
|
mas01mc@292
|
620 // ---random r2 L x k float ---
|
mas01mc@292
|
621 // r2[0][0] r2[0][1] ... r2[0][k-1]
|
mas01mc@292
|
622 // r2[1][0] r2[1][1] ... r2[1][k-1]
|
mas01mc@292
|
623 // ...
|
mas01mc@292
|
624 // r2[L-1][0] r2[L-1][1] ... r2[L-1][k-1]
|
mas01mc@292
|
625 //
|
mas01mc@293
|
626 // ******* HASHTABLES FORMAT1 (optimized for LSH_ON_DISK retrieval) *******
|
mas01mc@292
|
627 // ---hash table 0: N x C x 8 ---
|
mas01mc@292
|
628 // [t2 pointID][t2 pointID]...[t2 pointID]
|
mas01mc@292
|
629 // [t2 pointID][t2 pointID]...[t2 pointID]
|
mas01mc@292
|
630 // ...
|
mas01mc@292
|
631 // [t2 pointID][t2 pointID]...[t2 pointID]
|
mas01mc@292
|
632 //
|
mas01mc@292
|
633 // ---hash table 1: N x C x 8 ---
|
mas01mc@292
|
634 // [t2 pointID][t2 pointID]...[t2 pointID]
|
mas01mc@292
|
635 // [t2 pointID][t2 pointID]...[t2 pointID]
|
mas01mc@292
|
636 // ...
|
mas01mc@292
|
637 // [t2 pointID][t2 pointID]...[t2 pointID]
|
mas01mc@292
|
638 //
|
mas01mc@292
|
639 // ...
|
mas01mc@292
|
640 //
|
mas01mc@292
|
641 // ---hash table L-1: N x C x 8 ---
|
mas01mc@292
|
642 // [t2 pointID][t2 pointID]...[t2 pointID]
|
mas01mc@292
|
643 // [t2 pointID][t2 pointID]...[t2 pointID]
|
mas01mc@292
|
644 // ...
|
mas01mc@292
|
645 // [t2 pointID][t2 pointID]...[t2 pointID]
|
mas01mc@292
|
646 //
|
mas01mc@293
|
647 // ******* HASHTABLES FORMAT2 (optimized for LSH_IN_CORE retrieval) *******
|
mas01mc@293
|
648 //
|
mas01mc@293
|
649 // State machine controlled by regular expression.
|
mas01mc@293
|
650 // legend:
|
mas01mc@293
|
651 //
|
mas01mc@306
|
652 // O2_SERIAL_TOKEN_T1 = 0xFFFFFFFCU
|
mas01mc@306
|
653 // O2_SERIAL_TOKEN_T2 = 0xFFFFFFFDU
|
mas01mc@306
|
654 // O2_SERIAL_TOKEN_ENDTABLE = 0xFFFFFFFEU
|
mas01mc@293
|
655 //
|
mas01mc@306
|
656 // T1 - T1 hash token
|
mas01mc@306
|
657 // t1 - t1 hash key (t1 range 0..2^29-1)
|
mas01mc@306
|
658 // T2 - T2 token
|
mas01mc@293
|
659 // t2 - t2 hash key (range 1..2^32-6)
|
mas01mc@293
|
660 // p - point identifier (range 0..2^32-1)
|
mas01mc@306
|
661 // E - end hash table token
|
mas01mc@293
|
662 // {...} required arguments
|
mas01mc@293
|
663 // [...] optional arguments
|
mas01mc@293
|
664 // * - match zero or more occurences
|
mas01mc@293
|
665 // + - match one or more occurences
|
mas01mc@293
|
666 // {...}^L - repeat argument L times
|
mas01mc@293
|
667 //
|
mas01mc@293
|
668 // FORMAT2 Regular expression:
|
mas01mc@306
|
669 // { [T1 t1 [T2 t2 p+]+ ]* E }^L
|
mas01mc@293
|
670 //
|
mas01mc@292
|
671
|
mas01mc@292
|
672 // Serial header constructors
|
mas01mc@292
|
673 SerialHeader::SerialHeader(){;}
|
mas01mc@296
|
674 SerialHeader::SerialHeader(float W, Uns32T L, Uns32T N, Uns32T C, Uns32T k, Uns32T d, float r, Uns32T p, Uns32T FMT, Uns32T pc):
|
mas01mc@292
|
675 lshMagic(O2_SERIAL_MAGIC),
|
mas01mc@292
|
676 binWidth(W),
|
mas01mc@292
|
677 numTables(L),
|
mas01mc@292
|
678 numRows(N),
|
mas01mc@292
|
679 numCols(C),
|
mas01mc@292
|
680 elementSize(O2_SERIAL_ELEMENT_SIZE),
|
mas01mc@296
|
681 version(O2_SERIAL_VERSION),
|
mas01mc@296
|
682 size(0), // we are deprecating this value
|
mas01mc@292
|
683 flags(FMT),
|
mas01mc@292
|
684 dataDim(d),
|
mas01mc@292
|
685 numFuns(k),
|
mas01mc@292
|
686 radius(r),
|
mas01mc@296
|
687 maxp(p),
|
mas01mc@296
|
688 size_long((unsigned long long)L * align_up((unsigned long long)N * C * O2_SERIAL_ELEMENT_SIZE, get_page_logn()) // hash tables
|
mas01mc@296
|
689 + align_up(O2_SERIAL_HEADER_SIZE + // header + hash functions
|
mas01mc@296
|
690 (unsigned long long)L*k*( sizeof(float)*d+2*sizeof(Uns32T)+sizeof(float)),get_page_logn())),
|
mas01mc@296
|
691 pointCount(pc){
|
mas01mc@296
|
692
|
mas01mc@296
|
693 if(FMT==O2_SERIAL_FILEFORMAT2)
|
mas01mc@296
|
694 size_long = (unsigned long long)align_up(O2_SERIAL_HEADER_SIZE
|
mas01mc@296
|
695 + (unsigned long long)L*k*(sizeof(float)*d+2+sizeof(Uns32T)
|
mas01mc@296
|
696 +sizeof(float)) + (unsigned long long)pc*16UL,get_page_logn());
|
mas01mc@296
|
697 } // header
|
mas01mc@292
|
698
|
mas01mc@292
|
699 float* G::get_serial_hashfunction_base(char* db){
|
mas01mc@292
|
700 if(db&&lshHeader)
|
mas01mc@292
|
701 return (float*)(db+O2_SERIAL_HEADER_SIZE);
|
mas01mc@292
|
702 else return NULL;
|
mas01mc@292
|
703 }
|
mas01mc@292
|
704
|
mas01mc@292
|
705 SerialElementT* G::get_serial_hashtable_base(char* db){
|
mas01mc@292
|
706 if(db&&lshHeader)
|
mas01mc@292
|
707 return (SerialElementT*)(db+get_serial_hashtable_offset());
|
mas01mc@292
|
708 else
|
mas01mc@292
|
709 return NULL;
|
mas01mc@292
|
710 }
|
mas01mc@292
|
711
|
mas01mc@292
|
712 Uns32T G::get_serial_hashtable_offset(){
|
mas01mc@292
|
713 if(lshHeader)
|
mas01mc@292
|
714 return align_up(O2_SERIAL_HEADER_SIZE +
|
mas01mc@292
|
715 L*lshHeader->numFuns*( sizeof(float)*lshHeader->dataDim+2*sizeof(Uns32T)+sizeof(float)),get_page_logn());
|
mas01mc@292
|
716 else
|
mas01mc@292
|
717 return 0;
|
mas01mc@292
|
718 }
|
mas01mc@292
|
719
|
mas01mc@292
|
720 void G::serialize(char* filename, Uns32T serialFormat){
|
mas01mc@292
|
721 int dbfid;
|
mas01mc@292
|
722 char* db;
|
mas01mc@292
|
723 int dbIsNew=0;
|
mas01mc@474
|
724 FILE* dbFile = 0;
|
mas01mc@292
|
725 // Check requested serialFormat
|
mas01mc@292
|
726 if(!(serialFormat==O2_SERIAL_FILEFORMAT1 || serialFormat==O2_SERIAL_FILEFORMAT2))
|
mas01mc@292
|
727 error("Unrecognized serial file format request: ", "serialize()");
|
mas01mc@296
|
728
|
mas01mc@292
|
729 // Test to see if file exists
|
mas01cr@370
|
730 if((dbfid = open (filename, O_RDONLY)) < 0) {
|
mas01mc@292
|
731 // If it doesn't, then create the file (CREATE)
|
mas01cr@370
|
732 if(errno == ENOENT) {
|
mas01mc@292
|
733 // Create the file
|
mas01mc@292
|
734 std::cout << "Creating new serialized LSH database:" << filename << "...";
|
mas01mc@292
|
735 std::cout.flush();
|
mas01mc@292
|
736 serial_create(filename, serialFormat);
|
mas01mc@292
|
737 dbIsNew=1;
|
mas01cr@370
|
738 } else {
|
mas01mc@292
|
739 // The file can't be opened
|
mas01mc@292
|
740 error("Can't open the file", filename, "open");
|
mas01cr@370
|
741 }
|
mas01cr@370
|
742 }
|
mas01mc@292
|
743
|
mas01mc@292
|
744 // Load the on-disk header into core
|
mas01mc@292
|
745 dbfid = serial_open(filename, 1); // open for write
|
mas01mc@292
|
746 db = serial_mmap(dbfid, O2_SERIAL_HEADER_SIZE, 1);// get database pointer
|
mas01mc@292
|
747 serial_get_header(db); // read header
|
mas01mc@292
|
748 serial_munmap(db, O2_SERIAL_HEADER_SIZE); // drop mmap
|
mas01mc@292
|
749
|
mas01mc@292
|
750 // Check compatibility of core and disk data structures
|
mas01mc@292
|
751 if( !serial_can_merge(serialFormat) )
|
mas01mc@292
|
752 error("Incompatible core and serial LSH, data structure dimensions mismatch.");
|
mas01mc@292
|
753
|
mas01mc@292
|
754 // For new LSH databases write the hashfunctions
|
mas01mc@292
|
755 if(dbIsNew)
|
mas01mc@292
|
756 serialize_lsh_hashfunctions(dbfid);
|
mas01mc@292
|
757 // Write the hashtables in the requested format
|
mas01mc@292
|
758 if(serialFormat == O2_SERIAL_FILEFORMAT1)
|
mas01mc@292
|
759 serialize_lsh_hashtables_format1(dbfid, !dbIsNew);
|
mas01mc@336
|
760 else{
|
mas01mc@474
|
761 dbFile = fdopen(dbfid, "r+b");
|
mas01mc@336
|
762 if(!dbFile)
|
mas01mc@336
|
763 error("Cannot open LSH file for writing",filename);
|
mas01mc@336
|
764 serialize_lsh_hashtables_format2(dbFile, !dbIsNew);
|
mas01mc@336
|
765 fflush(dbFile);
|
mas01mc@336
|
766 }
|
mas01mc@292
|
767
|
mas01mc@336
|
768 if(!dbIsNew) {
|
mas01mc@292
|
769 db = serial_mmap(dbfid, O2_SERIAL_HEADER_SIZE, 1);// get database pointer
|
mas01mc@292
|
770 //serial_get_header(db); // read header
|
mas01mc@293
|
771 cout << "maxp = " << H::maxp << endl;
|
mas01mc@293
|
772 lshHeader->maxp=H::maxp;
|
mas01mc@292
|
773 // Default to FILEFORMAT1
|
mas01mc@292
|
774 if(!(lshHeader->flags&O2_SERIAL_FILEFORMAT2))
|
mas01mc@294
|
775 lshHeader->flags|=O2_SERIAL_FILEFORMAT1;
|
mas01mc@292
|
776 memcpy((char*)db, (char*)lshHeader, sizeof(SerialHeaderT));
|
mas01mc@292
|
777 serial_munmap(db, O2_SERIAL_HEADER_SIZE); // drop mmap
|
mas01mc@336
|
778 }
|
mas01mc@336
|
779 serial_close(dbfid);
|
mas01mc@474
|
780 if(dbFile){
|
mas01mc@474
|
781 fclose(dbFile);
|
mas01mc@474
|
782 dbFile = 0;
|
mas01mc@474
|
783 }
|
mas01mc@292
|
784 }
|
mas01mc@292
|
785
|
mas01mc@292
|
786 // Test to see if core structure and requested format is
|
mas01mc@292
|
787 // compatible with currently opened database
|
mas01mc@292
|
788 int G::serial_can_merge(Uns32T format){
|
mas01mc@292
|
789 SerialHeaderT* that = lshHeader;
|
mas01mc@292
|
790 if( (format==O2_SERIAL_FILEFORMAT2 && !that->flags&O2_SERIAL_FILEFORMAT2)
|
mas01mc@292
|
791 || (format!=O2_SERIAL_FILEFORMAT2 && that->flags&O2_SERIAL_FILEFORMAT2)
|
mas01mc@292
|
792 || !( this->w == that->binWidth &&
|
mas01mc@296
|
793 this->L == that->numTables &&
|
mas01mc@296
|
794 this->N == that->numRows &&
|
mas01mc@296
|
795 this->k == that->numFuns &&
|
mas01mc@296
|
796 this->d == that->dataDim &&
|
mas01mc@296
|
797 sizeof(SerialElementT) == that->elementSize &&
|
mas01mc@296
|
798 this->radius == that->radius)){
|
mas01mc@292
|
799 serial_print_header(format);
|
mas01mc@292
|
800 return 0;
|
mas01mc@292
|
801 }
|
mas01mc@292
|
802 else
|
mas01mc@292
|
803 return 1;
|
mas01mc@292
|
804 }
|
mas01mc@292
|
805
|
mas01mc@292
|
806 // Used as an error message for serial_can_merge()
|
mas01mc@292
|
807 void G::serial_print_header(Uns32T format){
|
mas01mc@292
|
808 std::cout << "Fc:" << format << " Fs:" << lshHeader->flags << endl;
|
mas01mc@292
|
809 std::cout << "Wc:" << w << " Ls:" << lshHeader->binWidth << endl;
|
mas01mc@292
|
810 std::cout << "Lc:" << L << " Ls:" << lshHeader->numTables << endl;
|
mas01mc@292
|
811 std::cout << "Nc:" << N << " Ns:" << lshHeader->numRows << endl;
|
mas01mc@292
|
812 std::cout << "kc:" << k << " ks:" << lshHeader->numFuns << endl;
|
mas01mc@292
|
813 std::cout << "dc:" << d << " ds:" << lshHeader->dataDim << endl;
|
mas01mc@292
|
814 std::cout << "sc:" << sizeof(SerialElementT) << " ss:" << lshHeader->elementSize << endl;
|
mas01mc@292
|
815 std::cout << "rc:" << this->radius << " rs:" << lshHeader->radius << endl;
|
mas01mc@292
|
816 }
|
mas01mc@292
|
817
|
mas01mc@292
|
818 int G::serialize_lsh_hashfunctions(int fid){
|
mas01mc@292
|
819 float* pf;
|
mas01mc@292
|
820 Uns32T *pu;
|
mas01mc@292
|
821 Uns32T x,y,z;
|
mas01mc@292
|
822
|
mas01mc@293
|
823 char* db = serial_mmap(fid, get_serial_hashtable_offset(), 1);// get database pointer
|
mas01mc@292
|
824 pf = get_serial_hashfunction_base(db);
|
mas01mc@292
|
825
|
mas01mc@292
|
826 // HASH FUNCTIONS
|
mas01mc@292
|
827 // Write the random projectors A[][][]
|
mas01mc@292
|
828 #ifdef USE_U_FUNCTIONS
|
mas01mc@292
|
829 for( x = 0 ; x < H::m ; x++ )
|
mas01mc@292
|
830 for( y = 0 ; y < H::k/2 ; y++ )
|
mas01mc@292
|
831 #else
|
mas01mc@292
|
832 for( x = 0 ; x < H::L ; x++ )
|
mas01mc@292
|
833 for( y = 0 ; y < H::k ; y++ )
|
mas01mc@292
|
834 #endif
|
mas01mc@292
|
835 for( z = 0 ; z < d ; z++ )
|
mas01mc@293
|
836 *pf++ = H::A[x][y][z];
|
mas01mc@292
|
837
|
mas01mc@292
|
838 // Write the random biases b[][]
|
mas01mc@292
|
839 #ifdef USE_U_FUNCTIONS
|
mas01mc@292
|
840 for( x = 0 ; x < H::m ; x++ )
|
mas01mc@292
|
841 for( y = 0 ; y < H::k/2 ; y++ )
|
mas01mc@292
|
842 #else
|
mas01mc@292
|
843 for( x = 0 ; x < H::L ; x++ )
|
mas01mc@292
|
844 for( y = 0 ; y < H::k ; y++ )
|
mas01mc@292
|
845 #endif
|
mas01mc@293
|
846 *pf++ = H::b[x][y];
|
mas01mc@292
|
847
|
mas01mc@292
|
848 pu = (Uns32T*)pf;
|
mas01mc@292
|
849
|
mas01mc@292
|
850 // Write the Z projectors r1[][]
|
mas01mc@292
|
851 for( x = 0 ; x < H::L ; x++)
|
mas01mc@292
|
852 for( y = 0 ; y < H::k ; y++)
|
mas01mc@293
|
853 *pu++ = H::r1[x][y];
|
mas01mc@292
|
854
|
mas01mc@292
|
855 // Write the Z projectors r2[][]
|
mas01mc@292
|
856 for( x = 0 ; x < H::L ; x++)
|
mas01mc@292
|
857 for( y = 0; y < H::k ; y++)
|
mas01mc@293
|
858 *pu++ = H::r2[x][y];
|
mas01mc@292
|
859
|
mas01mc@292
|
860 serial_munmap(db, get_serial_hashtable_offset());
|
mas01mc@292
|
861 return 1;
|
mas01mc@292
|
862 }
|
mas01mc@292
|
863
|
mas01mc@292
|
864 int G::serialize_lsh_hashtables_format1(int fid, int merge){
|
mas01mc@292
|
865 SerialElementT *pe, *pt;
|
mas01mc@292
|
866 Uns32T x,y;
|
mas01mc@292
|
867
|
mas01mc@292
|
868 if( merge && !serial_can_merge(O2_SERIAL_FILEFORMAT1) )
|
mas01mc@292
|
869 error("Cannot merge core and serial LSH, data structure dimensions mismatch.");
|
mas01mc@292
|
870
|
mas01mc@292
|
871 Uns32T hashTableSize=sizeof(SerialElementT)*lshHeader->numRows*lshHeader->numCols;
|
mas01mc@292
|
872 Uns32T colCount, meanColCount, colCountN, maxColCount, minColCount;
|
mas01mc@292
|
873 // Write the hash tables
|
mas01mc@292
|
874 for( x = 0 ; x < H::L ; x++ ){
|
mas01mc@292
|
875 std::cout << (merge ? "merging":"writing") << " hash table " << x << " FORMAT1...";
|
mas01mc@292
|
876 std::cout.flush();
|
mas01mc@292
|
877 // memory map a single hash table for sequential access
|
mas01mc@292
|
878 // Align each hash table to page boundary
|
mas01mc@292
|
879 char* dbtable = serial_mmap(fid, hashTableSize, 1,
|
mas01mc@292
|
880 align_up(get_serial_hashtable_offset()+x*hashTableSize, get_page_logn()));
|
mas01mc@324
|
881 #ifdef __CYGWIN__
|
mas01mc@324
|
882 // No madvise in CYGWIN
|
mas01mc@324
|
883 #else
|
mas01mc@292
|
884 if(madvise(dbtable, hashTableSize, MADV_SEQUENTIAL)<0)
|
mas01mc@292
|
885 error("could not advise hashtable memory","","madvise");
|
mas01mc@324
|
886 #endif
|
mas01mc@292
|
887 maxColCount=0;
|
mas01mc@292
|
888 minColCount=O2_SERIAL_MAX_COLS;
|
mas01mc@292
|
889 meanColCount=0;
|
mas01mc@292
|
890 colCountN=0;
|
mas01mc@292
|
891 pt=(SerialElementT*)dbtable;
|
mas01mc@292
|
892 for( y = 0 ; y < H::N ; y++ ){
|
mas01mc@292
|
893 // Move disk pointer to beginning of row
|
mas01mc@292
|
894 pe=pt+y*lshHeader->numCols;
|
mas01mc@292
|
895
|
mas01mc@292
|
896 colCount=0;
|
mas01cr@370
|
897 if(bucket* bPtr = h[x][y]) {
|
mas01cr@370
|
898 if(merge) {
|
mas01mc@340
|
899 #ifdef LSH_LIST_HEAD_COUNTERS
|
mas01mc@292
|
900 serial_merge_hashtable_row_format1(pe, bPtr->next, colCount); // skip collision counter bucket
|
mas01cr@370
|
901 } else {
|
mas01mc@292
|
902 serial_write_hashtable_row_format1(pe, bPtr->next, colCount); // skip collision counter bucket
|
mas01mc@292
|
903 #else
|
mas01cr@370
|
904 serial_merge_hashtable_row_format1(pe, bPtr, colCount);
|
mas01cr@370
|
905 } else {
|
mas01cr@370
|
906 serial_write_hashtable_row_format1(pe, bPtr, colCount);
|
mas01mc@292
|
907 #endif
|
mas01cr@370
|
908 }
|
mas01cr@370
|
909 }
|
mas01mc@292
|
910 if(colCount){
|
mas01mc@292
|
911 if(colCount<minColCount)
|
mas01mc@292
|
912 minColCount=colCount;
|
mas01mc@292
|
913 if(colCount>maxColCount)
|
mas01mc@292
|
914 maxColCount=colCount;
|
mas01mc@292
|
915 meanColCount+=colCount;
|
mas01mc@292
|
916 colCountN++;
|
mas01mc@292
|
917 }
|
mas01mc@292
|
918 }
|
mas01mc@292
|
919 if(colCountN)
|
mas01mc@292
|
920 std::cout << "#rows with collisions =" << colCountN << ", mean = " << meanColCount/(float)colCountN
|
mas01mc@292
|
921 << ", min = " << minColCount << ", max = " << maxColCount
|
mas01mc@292
|
922 << endl;
|
mas01mc@292
|
923 serial_munmap(dbtable, hashTableSize);
|
mas01mc@292
|
924 }
|
mas01mc@292
|
925
|
mas01mc@292
|
926 // We're done writing
|
mas01mc@292
|
927 return 1;
|
mas01mc@292
|
928 }
|
mas01mc@292
|
929
|
mas01mc@292
|
930 void G::serial_merge_hashtable_row_format1(SerialElementT* pr, bucket* b, Uns32T& colCount){
|
mas01mc@292
|
931 while(b && b->t2!=IFLAG){
|
mas01mc@292
|
932 SerialElementT*pe=pr; // reset disk pointer to beginning of row
|
mas01mc@344
|
933 serial_merge_element_format1(pe, b->snext.ptr, b->t2, colCount);
|
mas01mc@292
|
934 b=b->next;
|
mas01mc@292
|
935 }
|
mas01mc@292
|
936 }
|
mas01mc@292
|
937
|
mas01mc@292
|
938 void G::serial_merge_element_format1(SerialElementT* pe, sbucket* sb, Uns32T t2, Uns32T& colCount){
|
mas01mc@292
|
939 while(sb){
|
mas01mc@292
|
940 if(colCount==lshHeader->numCols){
|
mas01mc@292
|
941 std::cout << "!point-chain full " << endl;
|
mas01mc@292
|
942 return;
|
mas01mc@292
|
943 }
|
mas01mc@292
|
944 Uns32T c=0;
|
mas01mc@292
|
945 // Merge collision chains
|
mas01mc@292
|
946 while(c<lshHeader->numCols){
|
mas01mc@292
|
947 if( (pe+c)->hashValue==IFLAG){
|
mas01mc@292
|
948 (pe+c)->hashValue=t2;
|
mas01mc@292
|
949 (pe+c)->pointID=sb->pointID;
|
mas01mc@292
|
950 colCount=c+1;
|
mas01mc@292
|
951 if(c+1<lshHeader->numCols)
|
mas01mc@292
|
952 (pe+c+1)->hashValue=IFLAG;
|
mas01mc@292
|
953 break;
|
mas01mc@292
|
954 }
|
mas01mc@292
|
955 c++;
|
mas01mc@292
|
956 }
|
mas01mc@292
|
957 sb=sb->snext;
|
mas01mc@292
|
958 }
|
mas01mc@292
|
959 return;
|
mas01mc@292
|
960 }
|
mas01mc@292
|
961
|
mas01mc@292
|
962 void G::serial_write_hashtable_row_format1(SerialElementT*& pe, bucket* b, Uns32T& colCount){
|
mas01mc@292
|
963 pe->hashValue=IFLAG;
|
mas01mc@292
|
964 while(b && b->t2!=IFLAG){
|
mas01mc@344
|
965 serial_write_element_format1(pe, b->snext.ptr, b->t2, colCount);
|
mas01mc@292
|
966 b=b->next;
|
mas01mc@292
|
967 }
|
mas01mc@292
|
968 }
|
mas01mc@292
|
969
|
mas01mc@292
|
970 void G::serial_write_element_format1(SerialElementT*& pe, sbucket* sb, Uns32T t2, Uns32T& colCount){
|
mas01mc@292
|
971 while(sb){
|
mas01mc@292
|
972 if(colCount==lshHeader->numCols){
|
mas01mc@292
|
973 std::cout << "!point-chain full " << endl;
|
mas01mc@292
|
974 return;
|
mas01mc@292
|
975 }
|
mas01mc@292
|
976 pe->hashValue=t2;
|
mas01mc@292
|
977 pe->pointID=sb->pointID;
|
mas01mc@292
|
978 pe++;
|
mas01mc@292
|
979 colCount++;
|
mas01mc@292
|
980 sb=sb->snext;
|
mas01mc@292
|
981 }
|
mas01mc@292
|
982 pe->hashValue=IFLAG;
|
mas01mc@292
|
983 return;
|
mas01mc@292
|
984 }
|
mas01mc@292
|
985
|
mas01mc@336
|
986 int G::serialize_lsh_hashtables_format2(FILE* dbFile, int merge){
|
mas01mc@292
|
987 Uns32T x,y;
|
mas01mc@292
|
988
|
mas01mc@292
|
989 if( merge && !serial_can_merge(O2_SERIAL_FILEFORMAT2) )
|
mas01mc@292
|
990 error("Cannot merge core and serial LSH, data structure dimensions mismatch.");
|
mas01mc@292
|
991
|
mas01mc@340
|
992 // We must pereform FORMAT2 merges in core FORMAT1 (dynamic list structure)
|
mas01mc@292
|
993 if(merge)
|
mas01mc@340
|
994 unserialize_lsh_hashtables_format2(dbFile, merge);
|
mas01mc@292
|
995
|
mas01mc@292
|
996 Uns32T colCount, meanColCount, colCountN, maxColCount, minColCount, t1;
|
mas01mc@336
|
997 if(fseek(dbFile, get_serial_hashtable_offset(), SEEK_SET)){
|
mas01mc@336
|
998 fclose(dbFile);
|
mas01mc@336
|
999 error("fSeek error in serialize_lsh_hashtables_format2");
|
mas01mc@336
|
1000 }
|
mas01mc@292
|
1001
|
mas01mc@292
|
1002 // Write the hash tables
|
mas01mc@292
|
1003 for( x = 0 ; x < H::L ; x++ ){
|
mas01mc@292
|
1004 std::cout << (merge ? "merging":"writing") << " hash table " << x << " FORMAT2...";
|
mas01mc@292
|
1005 std::cout.flush();
|
mas01mc@292
|
1006 maxColCount=0;
|
mas01mc@292
|
1007 minColCount=O2_SERIAL_MAX_COLS;
|
mas01mc@292
|
1008 meanColCount=0;
|
mas01mc@292
|
1009 colCountN=0;
|
mas01mc@292
|
1010 for( y = 0 ; y < H::N ; y++ ){
|
mas01mc@292
|
1011 colCount=0;
|
mas01mc@292
|
1012 if(bucket* bPtr = h[x][y]){
|
mas01mc@306
|
1013 // Check for empty row (even though row was allocated)
|
mas01mc@340
|
1014 #ifdef LSH_LIST_HEAD_COUNTERS
|
mas01mc@306
|
1015 if(bPtr->next->t2==IFLAG){
|
mas01mc@336
|
1016 fclose(dbFile);
|
mas01mc@306
|
1017 error("b->next->t2==IFLAG","serialize_lsh_hashtables_format2()");
|
mas01mc@306
|
1018 }
|
mas01mc@306
|
1019 #else
|
mas01mc@306
|
1020 if(bPtr->t2==IFLAG){
|
mas01mc@336
|
1021 fclose(dbFile);
|
mas01mc@306
|
1022 error("b->t2==IFLAG","serialize_lsh_hashtables_format2()");
|
mas01mc@306
|
1023 }
|
mas01mc@306
|
1024 #endif
|
mas01mc@306
|
1025 t1 = O2_SERIAL_TOKEN_T1;
|
mas01mc@340
|
1026 WRITE_UNS32(&t1, "[T1]");
|
mas01mc@306
|
1027 t1 = y;
|
mas01mc@340
|
1028 WRITE_UNS32(&t1, "[t1]");
|
mas01mc@340
|
1029 #ifdef LSH_CORE_ARRAY
|
mas01mc@340
|
1030 t1 = count_buckets_and_points_hashtable_row(bPtr);
|
mas01mc@340
|
1031 WRITE_UNS32(&t1,"[count]"); // write numElements
|
mas01mc@340
|
1032 #endif
|
mas01mc@340
|
1033 #ifdef LSH_LIST_HEAD_COUNTERS
|
mas01mc@336
|
1034 serial_write_hashtable_row_format2(dbFile, bPtr->next, colCount); // skip collision counter bucket
|
mas01mc@292
|
1035 #else
|
mas01mc@340
|
1036 serial_write_hashtable_row_format2(dbFile, bPtr, colCount);
|
mas01mc@292
|
1037 #endif
|
mas01mc@292
|
1038 }
|
mas01mc@292
|
1039 if(colCount){
|
mas01mc@292
|
1040 if(colCount<minColCount)
|
mas01mc@292
|
1041 minColCount=colCount;
|
mas01mc@292
|
1042 if(colCount>maxColCount)
|
mas01mc@292
|
1043 maxColCount=colCount;
|
mas01mc@292
|
1044 meanColCount+=colCount;
|
mas01mc@292
|
1045 colCountN++;
|
mas01mc@292
|
1046 }
|
mas01mc@292
|
1047 }
|
mas01mc@292
|
1048 // Write END of table marker
|
mas01mc@306
|
1049 t1 = O2_SERIAL_TOKEN_ENDTABLE;
|
mas01mc@340
|
1050 WRITE_UNS32(&t1,"[end]");
|
mas01mc@292
|
1051 if(colCountN)
|
mas01mc@292
|
1052 std::cout << "#rows with collisions =" << colCountN << ", mean = " << meanColCount/(float)colCountN
|
mas01mc@292
|
1053 << ", min = " << minColCount << ", max = " << maxColCount
|
mas01mc@292
|
1054 << endl;
|
mas01mc@340
|
1055 }
|
mas01mc@292
|
1056 // We're done writing
|
mas01mc@292
|
1057 return 1;
|
mas01mc@292
|
1058 }
|
mas01mc@292
|
1059
|
mas01mc@340
|
1060 Uns32T G::count_buckets_and_points_hashtable_row(bucket* bPtr){
|
mas01mc@340
|
1061 Uns32T total_count = 0;
|
mas01mc@340
|
1062 bucket* p = 0;
|
mas01mc@340
|
1063
|
mas01mc@340
|
1064 // count points
|
mas01mc@340
|
1065 #ifdef LSH_LIST_HEAD_COUNTERS
|
mas01mc@340
|
1066 total_count = bPtr->t2; // points already counted
|
mas01mc@340
|
1067 p = bPtr->next;
|
mas01mc@340
|
1068 #else
|
mas01mc@340
|
1069 total_count = count_points_hashtable_row(bPtr);
|
mas01mc@340
|
1070 p = bPtr;
|
mas01mc@340
|
1071 #endif
|
mas01mc@340
|
1072
|
mas01mc@340
|
1073 // count buckets
|
mas01mc@340
|
1074 do{
|
mas01mc@340
|
1075 total_count++;
|
mas01mc@340
|
1076 }while((p=p->next));
|
mas01mc@340
|
1077
|
mas01mc@340
|
1078 return total_count;
|
mas01mc@340
|
1079 }
|
mas01mc@340
|
1080
|
mas01mc@340
|
1081 Uns32T G::count_points_hashtable_row(bucket* bPtr){
|
mas01mc@340
|
1082 Uns32T point_count = 0;
|
mas01mc@340
|
1083 bucket* p = bPtr;
|
mas01mc@340
|
1084 sbucket* s = 0;
|
mas01mc@340
|
1085 while(p){
|
mas01mc@344
|
1086 s = p->snext.ptr;
|
mas01mc@340
|
1087 while(s){
|
mas01mc@340
|
1088 point_count++;
|
mas01mc@340
|
1089 s=s->snext;
|
mas01mc@340
|
1090 }
|
mas01mc@340
|
1091 p=p->next;
|
mas01mc@340
|
1092 }
|
mas01mc@340
|
1093 return point_count;
|
mas01mc@340
|
1094 }
|
mas01mc@340
|
1095
|
mas01mc@336
|
1096 void G::serial_write_hashtable_row_format2(FILE* dbFile, bucket* b, Uns32T& colCount){
|
mas01mc@292
|
1097 while(b && b->t2!=IFLAG){
|
mas01mc@344
|
1098 if(!b->snext.ptr){
|
mas01mc@336
|
1099 fclose(dbFile);
|
mas01mc@306
|
1100 error("Empty collision chain in serial_write_hashtable_row_format2()");
|
mas01mc@306
|
1101 }
|
mas01mc@306
|
1102 t2 = O2_SERIAL_TOKEN_T2;
|
mas01mc@336
|
1103 if( fwrite(&t2, sizeof(Uns32T), 1, dbFile) != 1 ){
|
mas01mc@336
|
1104 fclose(dbFile);
|
mas01mc@292
|
1105 error("write error in serial_write_hashtable_row_format2()");
|
mas01mc@292
|
1106 }
|
mas01mc@292
|
1107 t2 = b->t2;
|
mas01mc@336
|
1108 if( fwrite(&t2, sizeof(Uns32T), 1, dbFile) != 1 ){
|
mas01mc@336
|
1109 fclose(dbFile);
|
mas01mc@292
|
1110 error("write error in serial_write_hashtable_row_format2()");
|
mas01mc@292
|
1111 }
|
mas01mc@344
|
1112 serial_write_element_format2(dbFile, b->snext.ptr, colCount);
|
mas01mc@292
|
1113 b=b->next;
|
mas01mc@292
|
1114 }
|
mas01mc@292
|
1115 }
|
mas01mc@292
|
1116
|
mas01mc@336
|
1117 void G::serial_write_element_format2(FILE* dbFile, sbucket* sb, Uns32T& colCount){
|
mas01mc@292
|
1118 while(sb){
|
mas01mc@336
|
1119 if(fwrite(&sb->pointID, sizeof(Uns32T), 1, dbFile) != 1){
|
mas01mc@336
|
1120 fclose(dbFile);
|
mas01mc@292
|
1121 error("Write error in serial_write_element_format2()");
|
mas01mc@292
|
1122 }
|
mas01mc@292
|
1123 colCount++;
|
mas01mc@292
|
1124 sb=sb->snext;
|
mas01mc@292
|
1125 }
|
mas01mc@292
|
1126 }
|
mas01mc@292
|
1127
|
mas01mc@292
|
1128
|
mas01mc@292
|
1129 int G::serial_create(char* filename, Uns32T FMT){
|
mas01mc@292
|
1130 return serial_create(filename, w, L, N, C, k, d, FMT);
|
mas01mc@292
|
1131 }
|
mas01mc@292
|
1132
|
mas01mc@292
|
1133
|
mas01mc@292
|
1134 int G::serial_create(char* filename, float binWidth, Uns32T numTables, Uns32T numRows, Uns32T numCols,
|
mas01mc@292
|
1135 Uns32T numFuns, Uns32T dim, Uns32T FMT){
|
mas01mc@292
|
1136
|
mas01mc@292
|
1137 if(numTables > O2_SERIAL_MAX_TABLES || numRows > O2_SERIAL_MAX_ROWS
|
mas01mc@292
|
1138 || numCols > O2_SERIAL_MAX_COLS || numFuns > O2_SERIAL_MAX_FUNS
|
mas01mc@292
|
1139 || dim>O2_SERIAL_MAX_DIM){
|
mas01mc@292
|
1140 error("LSH parameters out of bounds for serialization");
|
mas01mc@292
|
1141 }
|
mas01mc@292
|
1142
|
mas01mc@292
|
1143 int dbfid;
|
mas01mc@292
|
1144 if ((dbfid = open (filename, O_RDWR|O_CREAT|O_EXCL, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)) < 0)
|
mas01mc@292
|
1145 error("Can't create serial file", filename, "open");
|
mas01mc@292
|
1146 get_lock(dbfid, 1);
|
mas01mc@292
|
1147
|
mas01mc@292
|
1148 // Make header first to get size of serialized database
|
mas01mc@296
|
1149 lshHeader = new SerialHeaderT(binWidth, numTables, numRows, numCols, numFuns, dim, radius, maxp, FMT, pointCount);
|
mas01mc@296
|
1150
|
mas01mc@296
|
1151 cout << "file size: <=" << lshHeader->get_size()/1024UL << "KB" << endl;
|
mas01mc@296
|
1152 if(lshHeader->get_size()>O2_SERIAL_MAXFILESIZE)
|
mas01mc@296
|
1153 error("Maximum size of LSH file exceded: > 4000MB");
|
mas01mc@296
|
1154
|
mas01mc@292
|
1155 // go to the location corresponding to the last byte
|
mas01mc@292
|
1156 if (lseek (dbfid, lshHeader->get_size() - 1, SEEK_SET) == -1)
|
mas01mc@292
|
1157 error("lseek error in db file", "", "lseek");
|
mas01mc@292
|
1158
|
mas01mc@292
|
1159 // write a dummy byte at the last location
|
mas01mc@292
|
1160 if (write (dbfid, "", 1) != 1)
|
mas01mc@292
|
1161 error("write error", "", "write");
|
mas01mc@292
|
1162
|
mas01mc@293
|
1163 char* db = serial_mmap(dbfid, O2_SERIAL_HEADER_SIZE, 1);
|
mas01mc@296
|
1164
|
mas01mc@292
|
1165 memcpy (db, lshHeader, O2_SERIAL_HEADER_SIZE);
|
mas01mc@296
|
1166
|
mas01mc@292
|
1167 serial_munmap(db, O2_SERIAL_HEADER_SIZE);
|
mas01mc@296
|
1168
|
mas01mc@292
|
1169 close(dbfid);
|
mas01mc@292
|
1170
|
mas01mc@292
|
1171 std::cout << "done initializing tables." << endl;
|
mas01mc@292
|
1172
|
mas01mc@292
|
1173 return 1;
|
mas01mc@292
|
1174 }
|
mas01mc@292
|
1175
|
mas01mc@292
|
1176 char* G::serial_mmap(int dbfid, Uns32T memSize, Uns32T forWrite, off_t offset){
|
mas01mc@293
|
1177 char* db;
|
mas01mc@292
|
1178 if(forWrite){
|
mas01mc@292
|
1179 if ((db = (char*) mmap(0, memSize, PROT_READ | PROT_WRITE,
|
mas01mc@292
|
1180 MAP_SHARED, dbfid, offset)) == (caddr_t) -1)
|
mas01mc@292
|
1181 error("mmap error in request for writable serialized database", "", "mmap");
|
mas01mc@292
|
1182 }
|
mas01mc@292
|
1183 else if ((db = (char*) mmap(0, memSize, PROT_READ, MAP_SHARED, dbfid, offset)) == (caddr_t) -1)
|
mas01mc@292
|
1184 error("mmap error in read-only serialized database", "", "mmap");
|
mas01mc@292
|
1185
|
mas01mc@292
|
1186 return db;
|
mas01mc@292
|
1187 }
|
mas01mc@292
|
1188
|
mas01mc@292
|
1189 SerialHeaderT* G::serial_get_header(char* db){
|
mas01mc@292
|
1190 lshHeader = new SerialHeaderT();
|
mas01mc@292
|
1191 memcpy((char*)lshHeader, db, sizeof(SerialHeaderT));
|
mas01mc@292
|
1192
|
mas01mc@292
|
1193 if(lshHeader->lshMagic!=O2_SERIAL_MAGIC)
|
mas01mc@292
|
1194 error("Not an LSH database file");
|
mas01mc@292
|
1195
|
mas01mc@292
|
1196 return lshHeader;
|
mas01mc@292
|
1197 }
|
mas01mc@292
|
1198
|
mas01mc@292
|
1199 void G::serial_munmap(char* db, Uns32T N){
|
mas01mc@292
|
1200 munmap(db, N);
|
mas01mc@292
|
1201 }
|
mas01mc@292
|
1202
|
mas01mc@292
|
1203 int G::serial_open(char* filename, int writeFlag){
|
mas01mc@292
|
1204 int dbfid;
|
mas01mc@292
|
1205 if(writeFlag){
|
mas01mc@292
|
1206 if ((dbfid = open (filename, O_RDWR)) < 0)
|
mas01mc@292
|
1207 error("Can't open serial file for read/write", filename, "open");
|
mas01mc@292
|
1208 get_lock(dbfid, writeFlag);
|
mas01mc@292
|
1209 }
|
mas01mc@292
|
1210 else{
|
mas01mc@292
|
1211 if ((dbfid = open (filename, O_RDONLY)) < 0)
|
mas01mc@292
|
1212 error("Can't open serial file for read", filename, "open");
|
mas01mc@292
|
1213 get_lock(dbfid, 0);
|
mas01mc@292
|
1214 }
|
mas01mc@292
|
1215
|
mas01mc@292
|
1216 return dbfid;
|
mas01mc@292
|
1217 }
|
mas01mc@292
|
1218
|
mas01mc@292
|
1219 void G::serial_close(int dbfid){
|
mas01mc@292
|
1220
|
mas01mc@292
|
1221 release_lock(dbfid);
|
mas01mc@292
|
1222 close(dbfid);
|
mas01mc@292
|
1223 }
|
mas01mc@292
|
1224
|
mas01mc@292
|
1225 int G::unserialize_lsh_header(char* filename){
|
mas01mc@292
|
1226
|
mas01mc@292
|
1227 int dbfid;
|
mas01mc@292
|
1228 char* db;
|
mas01mc@292
|
1229 // Test to see if file exists
|
mas01mc@292
|
1230 if((dbfid = open (filename, O_RDONLY)) < 0)
|
mas01mc@292
|
1231 error("Can't open the file", filename, "open");
|
mas01mc@292
|
1232 close(dbfid);
|
mas01mc@292
|
1233 dbfid = serial_open(filename, 0); // open for read
|
mas01mc@292
|
1234 db = serial_mmap(dbfid, O2_SERIAL_HEADER_SIZE, 0);// get database pointer
|
mas01mc@292
|
1235 serial_get_header(db); // read header
|
mas01mc@292
|
1236 serial_munmap(db, O2_SERIAL_HEADER_SIZE); // drop mmap
|
mas01mc@292
|
1237
|
mas01mc@292
|
1238 // Unserialize header parameters
|
mas01mc@292
|
1239 H::L = lshHeader->numTables;
|
mas01mc@292
|
1240 H::m = (Uns32T)( (1.0 + sqrt(1 + 8.0*(int)H::L)) / 2.0);
|
mas01mc@292
|
1241 H::N = lshHeader->numRows;
|
mas01mc@292
|
1242 H::C = lshHeader->numCols;
|
mas01mc@292
|
1243 H::k = lshHeader->numFuns;
|
mas01mc@292
|
1244 H::d = lshHeader->dataDim;
|
mas01mc@293
|
1245 H::w = lshHeader->binWidth;
|
mas01mc@293
|
1246 H::radius = lshHeader->radius;
|
mas01mc@293
|
1247 H::maxp = lshHeader->maxp;
|
mas01mc@296
|
1248 H::pointCount = lshHeader->pointCount;
|
mas01mc@292
|
1249
|
mas01mc@292
|
1250 return dbfid;
|
mas01mc@292
|
1251 }
|
mas01mc@292
|
1252
|
mas01mc@292
|
1253 // unserialize the LSH parameters
|
mas01mc@292
|
1254 // we leave the LSH tree on disk as a flat file
|
mas01mc@292
|
1255 // it is this flat file that we search by memory mapping
|
mas01mc@292
|
1256 void G::unserialize_lsh_functions(int dbfid){
|
mas01mc@292
|
1257 Uns32T j, kk;
|
mas01mc@292
|
1258 float* pf;
|
mas01mc@292
|
1259 Uns32T* pu;
|
mas01mc@292
|
1260
|
mas01mc@292
|
1261 // Load the hash functions into core
|
mas01mc@292
|
1262 char* db = serial_mmap(dbfid, get_serial_hashtable_offset(), 0);// get database pointer again
|
mas01mc@292
|
1263
|
mas01mc@292
|
1264 pf = get_serial_hashfunction_base(db);
|
mas01mc@292
|
1265
|
mas01mc@292
|
1266 #ifdef USE_U_FUNCTIONS
|
mas01mc@292
|
1267 for( j = 0 ; j < H::m ; j++ ){ // L functions gj(v)
|
mas01mc@292
|
1268 for( kk = 0 ; kk < H::k/2 ; kk++ ){ // Normally distributed hash functions
|
mas01mc@292
|
1269 #else
|
mas01mc@292
|
1270 for( j = 0 ; j < H::L ; j++ ){ // L functions gj(v)
|
mas01mc@292
|
1271 for( kk = 0 ; kk < H::k ; kk++ ){ // Normally distributed hash functions
|
mas01mc@292
|
1272 #endif
|
mas01mc@292
|
1273 for(Uns32T i = 0 ; i < H::d ; i++ )
|
mas01mc@293
|
1274 H::A[j][kk][i] = *pf++; // Normally distributed random vectors
|
mas01mc@292
|
1275 }
|
mas01mc@292
|
1276 }
|
mas01mc@292
|
1277 #ifdef USE_U_FUNCTIONS
|
mas01mc@292
|
1278 for( j = 0 ; j < H::m ; j++ ) // biases b
|
mas01mc@292
|
1279 for( kk = 0 ; kk < H::k/2 ; kk++ )
|
mas01mc@292
|
1280 #else
|
mas01mc@292
|
1281 for( j = 0 ; j < H::L ; j++ ) // biases b
|
mas01mc@292
|
1282 for( kk = 0 ; kk < H::k ; kk++ )
|
mas01mc@292
|
1283 #endif
|
mas01mc@293
|
1284 H::b[j][kk] = *pf++;
|
mas01mc@292
|
1285
|
mas01mc@292
|
1286 pu = (Uns32T*)pf;
|
mas01mc@292
|
1287 for( j = 0 ; j < H::L ; j++ ) // Z projectors r1
|
mas01mc@292
|
1288 for( kk = 0 ; kk < H::k ; kk++ )
|
mas01mc@292
|
1289 H::r1[j][kk] = *pu++;
|
mas01mc@292
|
1290
|
mas01mc@292
|
1291 for( j = 0 ; j < H::L ; j++ ) // Z projectors r2
|
mas01mc@292
|
1292 for( kk = 0 ; kk < H::k ; kk++ )
|
mas01mc@292
|
1293 H::r2[j][kk] = *pu++;
|
mas01mc@292
|
1294
|
mas01mc@293
|
1295 serial_munmap(db, get_serial_hashtable_offset());
|
mas01mc@292
|
1296 }
|
mas01mc@292
|
1297
|
mas01mc@292
|
1298 void G::unserialize_lsh_hashtables_format1(int fid){
|
mas01mc@292
|
1299 SerialElementT *pe, *pt;
|
mas01mc@292
|
1300 Uns32T x,y;
|
mas01mc@292
|
1301 Uns32T hashTableSize=sizeof(SerialElementT)*lshHeader->numRows*lshHeader->numCols;
|
mas01mc@292
|
1302 // Read the hash tables into core
|
mas01mc@292
|
1303 for( x = 0 ; x < H::L ; x++ ){
|
mas01mc@292
|
1304 // memory map a single hash table
|
mas01mc@292
|
1305 // Align each hash table to page boundary
|
mas01mc@292
|
1306 char* dbtable = serial_mmap(fid, hashTableSize, 0,
|
mas01mc@292
|
1307 align_up(get_serial_hashtable_offset()+x*hashTableSize, get_page_logn()));
|
mas01mc@324
|
1308 #ifdef __CYGWIN__
|
mas01mc@324
|
1309 // No madvise in CYGWIN
|
mas01mc@324
|
1310 #else
|
mas01mc@292
|
1311 if(madvise(dbtable, hashTableSize, MADV_SEQUENTIAL)<0)
|
mas01mc@292
|
1312 error("could not advise hashtable memory","","madvise");
|
mas01mc@324
|
1313 #endif
|
mas01mc@292
|
1314 pt=(SerialElementT*)dbtable;
|
mas01mc@292
|
1315 for( y = 0 ; y < H::N ; y++ ){
|
mas01mc@292
|
1316 // Move disk pointer to beginning of row
|
mas01mc@292
|
1317 pe=pt+y*lshHeader->numCols;
|
mas01mc@292
|
1318 unserialize_hashtable_row_format1(pe, h[x]+y);
|
mas01mc@340
|
1319 #ifdef LSH_DUMP_CORE_TABLES
|
mas01mc@292
|
1320 printf("S[%d,%d]", x, y);
|
mas01mc@292
|
1321 serial_bucket_dump(pe);
|
mas01mc@292
|
1322 printf("C[%d,%d]", x, y);
|
mas01mc@292
|
1323 dump_hashtable_row(h[x][y]);
|
mas01mc@292
|
1324 #endif
|
mas01mc@292
|
1325 }
|
mas01mc@292
|
1326 serial_munmap(dbtable, hashTableSize);
|
mas01mc@292
|
1327 }
|
mas01mc@292
|
1328 }
|
mas01mc@292
|
1329
|
mas01mc@292
|
1330 void G::unserialize_hashtable_row_format1(SerialElementT* pe, bucket** b){
|
mas01mc@292
|
1331 Uns32T colCount = 0;
|
mas01mc@292
|
1332 while(colCount!=lshHeader->numCols && pe->hashValue !=IFLAG){
|
mas01mc@292
|
1333 H::p = pe->pointID; // current point ID
|
mas01mc@292
|
1334 t2 = pe->hashValue;
|
mas01mc@292
|
1335 bucket_insert_point(b);
|
mas01mc@292
|
1336 pe++;
|
mas01mc@292
|
1337 colCount++;
|
mas01mc@292
|
1338 }
|
mas01mc@292
|
1339 }
|
mas01mc@292
|
1340
|
mas01mc@340
|
1341 void G::unserialize_lsh_hashtables_format2(FILE* dbFile, bool forMerge){
|
mas01mc@292
|
1342 Uns32T x=0,y=0;
|
mas01mc@292
|
1343
|
mas01mc@292
|
1344 // Seek to hashtable base offset
|
mas01mc@336
|
1345 if(fseek(dbFile, get_serial_hashtable_offset(), SEEK_SET)){
|
mas01mc@336
|
1346 fclose(dbFile);
|
mas01mc@336
|
1347 error("fSeek error in unserialize_lsh_hashtables_format2");
|
mas01mc@292
|
1348 }
|
mas01mc@292
|
1349
|
mas01mc@292
|
1350 // Read the hash tables into core (structure is given in header)
|
mas01mc@292
|
1351 while( x < H::L){
|
mas01mc@336
|
1352 if(fread(&(H::t1), sizeof(Uns32T), 1, dbFile) != 1){
|
mas01mc@336
|
1353 fclose(dbFile);
|
mas01mc@292
|
1354 error("Read error","unserialize_lsh_hashtables_format2()");
|
mas01mc@292
|
1355 }
|
mas01mc@306
|
1356 if(H::t1==O2_SERIAL_TOKEN_ENDTABLE)
|
mas01mc@292
|
1357 x++; // End of table
|
mas01mc@292
|
1358 else
|
mas01mc@292
|
1359 while(y < H::N){
|
mas01mc@306
|
1360 // Read a row and move file pointer to beginning of next row or _bittable
|
mas01mc@306
|
1361 if(!(H::t1==O2_SERIAL_TOKEN_T1)){
|
mas01mc@336
|
1362 fclose(dbFile);
|
mas01mc@306
|
1363 error("State matchine error T1","unserialize_lsh_hashtables_format2()");
|
mas01mc@292
|
1364 }
|
mas01mc@336
|
1365 if(fread(&(H::t1), sizeof(Uns32T), 1, dbFile) != 1){
|
mas01mc@336
|
1366 fclose(dbFile);
|
mas01mc@306
|
1367 error("Read error: t1","unserialize_lsh_hashtables_format2()");
|
mas01mc@306
|
1368 }
|
mas01mc@306
|
1369 y = H::t1;
|
mas01mc@292
|
1370 if(y>=H::N){
|
mas01mc@336
|
1371 fclose(dbFile);
|
mas01mc@292
|
1372 error("Unserialized hashtable row pointer out of range","unserialize_lsh_hashtables_format2()");
|
mas01mc@292
|
1373 }
|
mas01mc@340
|
1374 Uns32T token = 0;
|
mas01mc@340
|
1375 #ifdef LSH_CORE_ARRAY
|
mas01mc@340
|
1376 Uns32T numElements;
|
mas01mc@340
|
1377 if(fread(&numElements, sizeof(Uns32T), 1, dbFile) != 1){
|
mas01mc@340
|
1378 fclose(dbFile);
|
mas01mc@340
|
1379 error("Read error: numElements","unserialize_lsh_hashtables_format2()");
|
mas01mc@340
|
1380 }
|
mas01mc@292
|
1381
|
mas01mc@340
|
1382 // BACKWARD COMPATIBILITY: check to see if T2 or END token was read
|
mas01mc@340
|
1383 if(numElements==O2_SERIAL_TOKEN_T2 || numElements==O2_SERIAL_TOKEN_ENDTABLE ){
|
mas01mc@340
|
1384 forMerge=true; // Force use of dynamic linked list core format
|
mas01mc@340
|
1385 token = numElements;
|
mas01mc@340
|
1386 }
|
mas01mc@340
|
1387
|
mas01mc@340
|
1388 if(forMerge)
|
mas01mc@340
|
1389 // Use linked list CORE format
|
mas01mc@340
|
1390 token = unserialize_hashtable_row_format2(dbFile, h[x]+y, token);
|
mas01mc@340
|
1391 else
|
mas01mc@340
|
1392 // Use ARRAY CORE format with numElements counter
|
mas01mc@340
|
1393 token = unserialize_hashtable_row_to_array(dbFile, h[x]+y, numElements);
|
mas01mc@340
|
1394 #else
|
mas01mc@340
|
1395 token = unserialize_hashtable_row_format2(dbFile, h[x]+y);
|
mas01mc@513
|
1396 #endif
|
mas01mc@292
|
1397 // Check that token is valid
|
mas01mc@306
|
1398 if( !(token==O2_SERIAL_TOKEN_T1 || token==O2_SERIAL_TOKEN_ENDTABLE) ){
|
mas01mc@336
|
1399 fclose(dbFile);
|
mas01mc@292
|
1400 error("State machine error end of row/table", "unserialize_lsh_hashtables_format2()");
|
mas01mc@292
|
1401 }
|
mas01mc@292
|
1402 // Check for end of table flag
|
mas01mc@306
|
1403 if(token==O2_SERIAL_TOKEN_ENDTABLE){
|
mas01mc@292
|
1404 x++;
|
mas01mc@292
|
1405 break;
|
mas01mc@292
|
1406 }
|
mas01mc@292
|
1407 // Check for new row flag
|
mas01mc@306
|
1408 if(token==O2_SERIAL_TOKEN_T1)
|
mas01mc@292
|
1409 H::t1 = token;
|
mas01mc@292
|
1410 }
|
mas01mc@292
|
1411 }
|
mas01mc@513
|
1412 #ifdef LSH_DUMP_CORE_TABLES
|
mas01mc@513
|
1413 dump_hashtables();
|
mas01mc@513
|
1414 #endif
|
mas01mc@306
|
1415 }
|
mas01mc@292
|
1416
|
mas01mc@340
|
1417 Uns32T G::unserialize_hashtable_row_format2(FILE* dbFile, bucket** b, Uns32T token){
|
mas01mc@292
|
1418 bool pointFound = false;
|
mas01mc@340
|
1419
|
mas01mc@340
|
1420 if(token)
|
mas01mc@340
|
1421 H::t2 = token;
|
mas01mc@340
|
1422 else if(fread(&(H::t2), sizeof(Uns32T), 1, dbFile) != 1){
|
mas01mc@340
|
1423 fclose(dbFile);
|
mas01mc@340
|
1424 error("Read error T2 token","unserialize_hashtable_row_format2");
|
mas01mc@340
|
1425 }
|
mas01mc@340
|
1426
|
mas01mc@306
|
1427 if( !(H::t2==O2_SERIAL_TOKEN_ENDTABLE || H::t2==O2_SERIAL_TOKEN_T2)){
|
mas01mc@336
|
1428 fclose(dbFile);
|
mas01mc@292
|
1429 error("State machine error: expected E or T2");
|
mas01mc@292
|
1430 }
|
mas01mc@340
|
1431
|
mas01mc@306
|
1432 while(!(H::t2==O2_SERIAL_TOKEN_ENDTABLE || H::t2==O2_SERIAL_TOKEN_T1)){
|
mas01mc@292
|
1433 pointFound=false;
|
mas01mc@292
|
1434 // Check for T2 token
|
mas01mc@306
|
1435 if(H::t2!=O2_SERIAL_TOKEN_T2){
|
mas01mc@336
|
1436 fclose(dbFile);
|
mas01mc@292
|
1437 error("State machine error T2 token", "unserialize_hashtable_row_format2()");
|
mas01mc@306
|
1438 }
|
mas01mc@292
|
1439 // Read t2 value
|
mas01mc@336
|
1440 if(fread(&(H::t2), sizeof(Uns32T), 1, dbFile) != 1){
|
mas01mc@336
|
1441 fclose(dbFile);
|
mas01mc@292
|
1442 error("Read error t2","unserialize_hashtable_row_format2");
|
mas01mc@292
|
1443 }
|
mas01mc@336
|
1444 if(fread(&(H::p), sizeof(Uns32T), 1, dbFile) != 1){
|
mas01mc@336
|
1445 fclose(dbFile);
|
mas01mc@292
|
1446 error("Read error H::p","unserialize_hashtable_row_format2");
|
mas01mc@292
|
1447 }
|
mas01mc@306
|
1448 while(!(H::p==O2_SERIAL_TOKEN_ENDTABLE || H::p==O2_SERIAL_TOKEN_T1 || H::p==O2_SERIAL_TOKEN_T2 )){
|
mas01mc@292
|
1449 pointFound=true;
|
mas01mc@292
|
1450 bucket_insert_point(b);
|
mas01mc@336
|
1451 if(fread(&(H::p), sizeof(Uns32T), 1, dbFile) != 1){
|
mas01mc@336
|
1452 fclose(dbFile);
|
mas01mc@292
|
1453 error("Read error H::p","unserialize_hashtable_row_format2");
|
mas01mc@292
|
1454 }
|
mas01mc@292
|
1455 }
|
mas01mc@292
|
1456 if(!pointFound)
|
mas01mc@292
|
1457 error("State machine error: point", "unserialize_hashtable_row_format2()");
|
mas01mc@306
|
1458 H::t2 = H::p; // Copy last found token to t2
|
mas01mc@292
|
1459 }
|
mas01mc@292
|
1460 return H::t2; // holds current token
|
mas01mc@292
|
1461 }
|
mas01mc@292
|
1462
|
mas01mc@340
|
1463 // Unserialize format2 hashtable row to a CORE_ARRAY pointed to
|
mas01mc@340
|
1464 // by the hashtable row pointer: rowPtr
|
mas01mc@340
|
1465 //
|
mas01mc@340
|
1466 // numElements is the total number of t2 buckets plus points
|
mas01mc@340
|
1467 // memory required is numElements+1+sizeof(hashtable ptr)
|
mas01mc@340
|
1468 //
|
mas01mc@340
|
1469 // numElements = numPoints + numBuckets
|
mas01mc@340
|
1470 //
|
mas01mc@340
|
1471 // During inserts (merges) new hashtable entries are appened at rowPtr+numPoints+numBuckets+1
|
mas01mc@340
|
1472 //
|
mas01mc@340
|
1473 // ASSUME: that LSH_LIST_HEAD_COUNTERS is set so that the first hashtable bucket is used to count
|
mas01mc@340
|
1474 // point and bucket entries
|
mas01mc@340
|
1475 //
|
mas01mc@340
|
1476 // We store the values of numPoints and numBuckets in separate fields of the first bucket
|
mas01mc@340
|
1477 // rowPtr->t2 // numPoints
|
mas01mc@340
|
1478 // (Uns32T)(rowPtr->snext) // numBuckets
|
mas01mc@340
|
1479 //
|
mas01mc@340
|
1480 // We cast the rowPtr->next pointer to (Uns32*) malloc(numElements*sizeof(Uns32T) + sizeof(bucket*))
|
mas01mc@340
|
1481 // To get to the fist bucket, we use
|
mas01mc@340
|
1482 //
|
mas01mc@340
|
1483
|
mas01mc@340
|
1484 #define READ_UNS32T(VAL,TOKENSTR) if(fread(VAL, sizeof(Uns32T), 1, dbFile) != 1){\
|
mas01mc@340
|
1485 fclose(dbFile);error("Read error unserialize_hashtable_format2",TOKENSTR);}
|
mas01mc@340
|
1486
|
mas01mc@340
|
1487 #define TEST_TOKEN(TEST, TESTSTR) if(TEST){fclose(dbFile);error("State machine error: ", TESTSTR);}
|
mas01mc@340
|
1488
|
mas01mc@340
|
1489 #define SKIP_BITS_LEFT_SHIFT_MSB (30)
|
mas01mc@340
|
1490
|
mas01mc@340
|
1491 #define SKIP_BITS_RIGHT_SHIFT_MSB (28)
|
mas01mc@340
|
1492 #define SKIP_BITS_RIGHT_SHIFT_LSB (30)
|
mas01mc@340
|
1493
|
mas01mc@340
|
1494 #define MAX_POINTS_IN_BUCKET_CORE_ARRAY (16)
|
mas01mc@340
|
1495 #define LSH_CORE_ARRAY_END_ROW_TOKEN (0xFFFFFFFD)
|
mas01mc@340
|
1496
|
mas01mc@340
|
1497 // Encode the skip bits. Zero if only one point, MAX 8 (plus first == 9)
|
mas01mc@340
|
1498 #define ENCODE_POINT_SKIP_BITS TEST_TOKEN(!numPointsThisBucket, "no points found");\
|
mas01mc@340
|
1499 if(numPointsThisBucket==1){\
|
mas01mc@340
|
1500 secondPtr=ap++;\
|
mas01mc@340
|
1501 *secondPtr=0;\
|
mas01mc@340
|
1502 numPoints++;\
|
mas01mc@340
|
1503 }\
|
mas01mc@340
|
1504 if(numPointsThisBucket>1){\
|
mas01mc@340
|
1505 *firstPtr |= ( (numPointsThisBucket-1) & 0x3 ) << SKIP_BITS_LEFT_SHIFT_MSB;\
|
mas01mc@340
|
1506 *secondPtr |= ( ( (numPointsThisBucket-1) & 0xC) >> 2 ) << SKIP_BITS_LEFT_SHIFT_MSB;}
|
mas01mc@340
|
1507
|
mas01mc@340
|
1508 Uns32T G::unserialize_hashtable_row_to_array(FILE* dbFile, bucket** rowPP, Uns32T numElements){
|
mas01mc@340
|
1509 Uns32T numPointsThisBucket = 0;
|
mas01mc@340
|
1510 Uns32T numBuckets = 0;
|
mas01mc@340
|
1511 Uns32T numPoints = 0;
|
mas01mc@340
|
1512 Uns32T* firstPtr = 0;
|
mas01mc@340
|
1513 Uns32T* secondPtr = 0;
|
mas01mc@340
|
1514
|
mas01mc@340
|
1515 // Initialize new row
|
mas01mc@340
|
1516 if(!*rowPP){
|
mas01mc@340
|
1517 *rowPP = new bucket();
|
mas01mc@340
|
1518 #ifdef LSH_LIST_HEAD_COUNTERS
|
mas01mc@340
|
1519 (*rowPP)->t2 = 0; // Use t2 as a collision counter for the row
|
mas01mc@340
|
1520 (*rowPP)->next = 0;
|
mas01mc@340
|
1521 #endif
|
mas01mc@340
|
1522 }
|
mas01mc@340
|
1523 bucket* rowPtr = *rowPP;
|
mas01mc@340
|
1524
|
mas01mc@340
|
1525 READ_UNS32T(&(H::t2),"t2");
|
mas01mc@340
|
1526 TEST_TOKEN(!(H::t2==O2_SERIAL_TOKEN_ENDTABLE || H::t2==O2_SERIAL_TOKEN_T2), "expected E or T2");
|
mas01mc@340
|
1527 // Because we encode points in 16-point blocks, we sometimes allocate repeated t2 elements
|
mas01mc@340
|
1528 // So over-allocate by a factor of two and realloc later to actual numElements
|
mas01mc@340
|
1529 CR_ASSERT(rowPtr->next = (bucket*) malloc((2*numElements+1)*sizeof(Uns32T)+sizeof(bucket**)));
|
mas01mc@340
|
1530 Uns32T* ap = reinterpret_cast<Uns32T*>(rowPtr->next); // Cast pointer to Uns32T* for array format
|
mas01mc@340
|
1531 while( !(H::t2==O2_SERIAL_TOKEN_ENDTABLE || H::t2==O2_SERIAL_TOKEN_T1) ){
|
mas01mc@340
|
1532 numPointsThisBucket = 0;// reset bucket point counter
|
mas01mc@340
|
1533 secondPtr = 0; // reset second-point pointer
|
mas01mc@340
|
1534 TEST_TOKEN(H::t2!=O2_SERIAL_TOKEN_T2, "expected T2");
|
mas01mc@340
|
1535 READ_UNS32T(&(H::t2), "Read error t2");
|
mas01mc@340
|
1536 *ap++ = H::t2; // Insert t2 value into array
|
mas01mc@340
|
1537 numBuckets++;
|
mas01mc@340
|
1538 READ_UNS32T(&(H::p), "Read error H::p");
|
mas01mc@340
|
1539 while(!(H::p==O2_SERIAL_TOKEN_ENDTABLE || H::p==O2_SERIAL_TOKEN_T1 || H::p==O2_SERIAL_TOKEN_T2 )){
|
mas01mc@340
|
1540 if(numPointsThisBucket==MAX_POINTS_IN_BUCKET_CORE_ARRAY){
|
mas01mc@340
|
1541 ENCODE_POINT_SKIP_BITS;
|
mas01mc@340
|
1542 *ap++ = H::t2; // Extra element
|
mas01mc@340
|
1543 numBuckets++; // record this as a new bucket
|
mas01mc@340
|
1544 numPointsThisBucket=0; // reset bucket point counter
|
mas01mc@340
|
1545 secondPtr = 0; // reset second-point pointer
|
mas01mc@340
|
1546 }
|
mas01mc@340
|
1547 if( ++numPointsThisBucket == 1 )
|
mas01mc@340
|
1548 firstPtr = ap; // store pointer to first point to insert skip bits later on
|
mas01mc@340
|
1549 else if( numPointsThisBucket == 2 )
|
mas01mc@340
|
1550 secondPtr = ap; // store pointer to first point to insert skip bits later on
|
mas01mc@340
|
1551 numPoints++;
|
mas01mc@340
|
1552 *ap++ = H::p;
|
mas01mc@340
|
1553 READ_UNS32T(&(H::p), "Read error H::p");
|
mas01mc@340
|
1554 }
|
mas01mc@340
|
1555 ENCODE_POINT_SKIP_BITS;
|
mas01mc@340
|
1556 H::t2 = H::p; // Copy last found token to t2
|
mas01mc@340
|
1557 }
|
mas01mc@340
|
1558 // Reallocate the row to its actual size
|
mas01mc@340
|
1559 CR_ASSERT(rowPtr->next = (bucket*) realloc(rowPtr->next, (numBuckets+numPoints+1)*sizeof(Uns32T)+sizeof(bucket**)));
|
mas01mc@340
|
1560 // Record the sizes at the head of the row
|
mas01mc@344
|
1561 rowPtr->snext.numBuckets = numBuckets;
|
mas01mc@340
|
1562 rowPtr->t2 = numPoints;
|
mas01mc@340
|
1563 // Place end of row marker
|
mas01mc@340
|
1564 *ap++ = LSH_CORE_ARRAY_END_ROW_TOKEN;
|
mas01mc@340
|
1565 // Set the LSH_CORE_ARRAY_BIT to identify data structure for insertion and retrieval
|
mas01mc@340
|
1566 rowPtr->t2 |= LSH_CORE_ARRAY_BIT;
|
mas01mc@340
|
1567 // Allocate a new dynamic list head at the end of the array
|
mas01mc@340
|
1568 bucket** listPtr = reinterpret_cast<bucket**> (ap);
|
mas01mc@340
|
1569 *listPtr = 0;
|
mas01mc@340
|
1570 // Return current token
|
mas01mc@340
|
1571 return H::t2; // return H::t2 which holds current token [E or T1]
|
mas01mc@340
|
1572 }
|
mas01mc@340
|
1573
|
mas01mc@340
|
1574
|
mas01mc@340
|
1575
|
mas01mc@340
|
1576 // *p is a pointer to the beginning of a hashtable row array
|
mas01mc@340
|
1577 // The array consists of t2 hash keys and one or more point identifiers p for each hash key
|
mas01mc@340
|
1578 // Retrieval is performed by generating a hash key query_t2 for query point q
|
mas01mc@340
|
1579 // We identify the row that t2 is stored in using a secondary hash t1, this row is the entry
|
mas01mc@340
|
1580 // point for retrieve_from_core_hashtable_array
|
mas01mc@340
|
1581 #define SKIP_BITS (0xC0000000)
|
mas01mc@340
|
1582 void G::retrieve_from_core_hashtable_array(Uns32T* p, Uns32T qpos){
|
mas01mc@340
|
1583 Uns32T skip;
|
mas01mc@340
|
1584 Uns32T t2;
|
mas01mc@340
|
1585 Uns32T p1;
|
mas01mc@340
|
1586 Uns32T p2;
|
mas01mc@340
|
1587
|
mas01mc@340
|
1588 CR_ASSERT(p);
|
mas01mc@340
|
1589
|
mas01mc@340
|
1590 do{
|
mas01mc@340
|
1591 t2 = *p++;
|
mas01mc@340
|
1592 if( t2 > H::t2 )
|
mas01mc@340
|
1593 return;
|
mas01mc@340
|
1594 p1 = *p++;
|
mas01mc@340
|
1595 p2 = *p++;
|
mas01mc@340
|
1596 skip = (( p1 & SKIP_BITS ) >> SKIP_BITS_RIGHT_SHIFT_LSB) + (( p2 & SKIP_BITS ) >> SKIP_BITS_RIGHT_SHIFT_MSB);
|
mas01mc@340
|
1597 if( t2 == H::t2 ){
|
mas01mc@340
|
1598 add_point_callback(calling_instance, p1 ^ (p1 & SKIP_BITS), qpos, radius);
|
mas01mc@340
|
1599 if(skip--){
|
mas01mc@340
|
1600 add_point_callback(calling_instance, p2 ^ (p2 & SKIP_BITS), qpos, radius);
|
mas01mc@340
|
1601 while(skip-- )
|
mas01mc@340
|
1602 add_point_callback(calling_instance, *p++, qpos, radius);
|
mas01mc@340
|
1603 }
|
mas01mc@340
|
1604 }
|
mas01mc@340
|
1605 else
|
mas01mc@340
|
1606 if(*p != LSH_CORE_ARRAY_END_ROW_TOKEN)
|
mas01mc@340
|
1607 p = p + skip;
|
mas01mc@340
|
1608 }while( *p != LSH_CORE_ARRAY_END_ROW_TOKEN );
|
mas01mc@340
|
1609 }
|
mas01mc@513
|
1610
|
mas01mc@513
|
1611 void G::dump_hashtables(){
|
mas01mc@513
|
1612 for(Uns32T x = 0; x < H::L ; x++)
|
mas01mc@513
|
1613 for(Uns32T y = 0; y < H::N ; y++){
|
mas01mc@513
|
1614 bucket* bPtr = h[x][y];
|
mas01mc@513
|
1615 if(bPtr){
|
mas01mc@513
|
1616 printf("C[%d,%d]", x, y);
|
mas01mc@513
|
1617 #ifdef LSH_LIST_HEAD_COUNTERS
|
mas01mc@513
|
1618 printf("[numBuckets=%d]",bPtr->snext.numBuckets);
|
mas01mc@513
|
1619 if(bPtr->t2&LSH_CORE_ARRAY_BIT) {
|
mas01mc@513
|
1620 dump_core_hashtable_array((Uns32T*)(bPtr->next));
|
mas01mc@513
|
1621 }
|
mas01mc@513
|
1622 else {
|
mas01mc@513
|
1623 dump_hashtable_row(bPtr->next);
|
mas01mc@513
|
1624 }
|
mas01mc@513
|
1625 #else
|
mas01mc@513
|
1626 dump_hashtable_row(bPtr);
|
mas01mc@513
|
1627 #endif
|
mas01mc@513
|
1628 printf("\n");
|
mas01mc@513
|
1629 fflush(stdout);
|
mas01mc@513
|
1630 }
|
mas01mc@513
|
1631 }
|
mas01mc@513
|
1632 }
|
mas01mc@513
|
1633
|
mas01mc@513
|
1634 void G::dump_core_hashtable_array(Uns32T* p){
|
mas01mc@513
|
1635 Uns32T skip;
|
mas01mc@513
|
1636 Uns32T t2;
|
mas01mc@513
|
1637 Uns32T p1;
|
mas01mc@513
|
1638 Uns32T p2;
|
mas01mc@513
|
1639 CR_ASSERT(p);
|
mas01mc@513
|
1640 do{
|
mas01mc@513
|
1641 t2 = *p++;
|
mas01mc@513
|
1642 p1 = *p++;
|
mas01mc@513
|
1643 p2 = *p++;
|
mas01mc@513
|
1644 skip = (( p1 & SKIP_BITS ) >> SKIP_BITS_RIGHT_SHIFT_LSB) + (( p2 & SKIP_BITS ) >> SKIP_BITS_RIGHT_SHIFT_MSB);
|
mas01mc@513
|
1645 printf("(%0x, %0x)", t2, p1 ^ (p1 & SKIP_BITS));
|
mas01mc@513
|
1646 if(skip--){
|
mas01mc@513
|
1647 printf("(%0x, %0x)", t2, p2 ^ (p2 & SKIP_BITS));
|
mas01mc@513
|
1648 while(skip-- )
|
mas01mc@513
|
1649 printf("(%0x, %0x)", t2, *p++);
|
mas01mc@513
|
1650 }
|
mas01mc@513
|
1651 }while( *p != LSH_CORE_ARRAY_END_ROW_TOKEN );
|
mas01mc@513
|
1652 }
|
mas01mc@340
|
1653
|
mas01mc@292
|
1654 void G::dump_hashtable_row(bucket* p){
|
mas01mc@292
|
1655 while(p && p->t2!=IFLAG){
|
mas01mc@344
|
1656 sbucket* sbp = p->snext.ptr;
|
mas01mc@292
|
1657 while(sbp){
|
mas01mc@292
|
1658 printf("(%0X,%u)", p->t2, sbp->pointID);
|
mas01mc@292
|
1659 fflush(stdout);
|
mas01mc@292
|
1660 sbp=sbp->snext;
|
mas01mc@292
|
1661 }
|
mas01mc@292
|
1662 p=p->next;
|
mas01mc@292
|
1663 }
|
mas01mc@292
|
1664 printf("\n");
|
mas01mc@292
|
1665 }
|
mas01mc@292
|
1666
|
mas01mc@292
|
1667
|
mas01mc@292
|
1668 // G::serial_retrieve_point( ... )
|
mas01mc@292
|
1669 // retrieves (pointID) from a serialized LSH database
|
mas01mc@292
|
1670 //
|
mas01mc@292
|
1671 // inputs:
|
mas01mc@292
|
1672 // filename - file name of serialized LSH database
|
mas01mc@292
|
1673 // vv - query point set
|
mas01mc@292
|
1674 //
|
mas01mc@292
|
1675 // outputs:
|
mas01mc@292
|
1676 // inserts retrieved points into add_point() callback method
|
mas01mc@292
|
1677 void G::serial_retrieve_point_set(char* filename, vector<vector<float> >& vv, ReporterCallbackPtr add_point, void* caller)
|
mas01mc@292
|
1678 {
|
mas01mc@292
|
1679 int dbfid = serial_open(filename, 0); // open for read
|
mas01mc@292
|
1680 char* dbheader = serial_mmap(dbfid, O2_SERIAL_HEADER_SIZE, 0);// get database pointer
|
mas01mc@292
|
1681 serial_get_header(dbheader); // read header
|
mas01mc@292
|
1682 serial_munmap(dbheader, O2_SERIAL_HEADER_SIZE); // drop header mmap
|
mas01mc@292
|
1683
|
mas01mc@292
|
1684 if((lshHeader->flags & O2_SERIAL_FILEFORMAT2)){
|
mas01mc@336
|
1685 serial_close(dbfid);
|
mas01mc@292
|
1686 error("serial_retrieve_point_set is for SERIAL_FILEFORMAT1 only");
|
mas01mc@292
|
1687 }
|
mas01mc@292
|
1688
|
mas01mc@292
|
1689 // size of each hash table
|
mas01mc@292
|
1690 Uns32T hashTableSize=sizeof(SerialElementT)*lshHeader->numRows*lshHeader->numCols;
|
mas01mc@292
|
1691 calling_instance = caller; // class instance variable used in ...bucket_chain_point()
|
mas01mc@292
|
1692 add_point_callback = add_point;
|
mas01mc@292
|
1693
|
mas01mc@292
|
1694 for(Uns32T j=0; j<L; j++){
|
mas01mc@292
|
1695 // memory map a single hash table for random access
|
mas01mc@292
|
1696 char* db = serial_mmap(dbfid, hashTableSize, 0,
|
mas01mc@292
|
1697 align_up(get_serial_hashtable_offset()+j*hashTableSize,get_page_logn()));
|
mas01mc@324
|
1698 #ifdef __CYGWIN__
|
mas01mc@324
|
1699 // No madvise in CYGWIN
|
mas01mc@324
|
1700 #else
|
mas01mc@292
|
1701 if(madvise(db, hashTableSize, MADV_RANDOM)<0)
|
mas01mc@292
|
1702 error("could not advise local hashtable memory","","madvise");
|
mas01mc@324
|
1703 #endif
|
mas01mc@292
|
1704 SerialElementT* pe = (SerialElementT*)db ;
|
mas01mc@292
|
1705 for(Uns32T qpos=0; qpos<vv.size(); qpos++){
|
mas01mc@293
|
1706 H::compute_hash_functions(vv[qpos]);
|
mas01mc@293
|
1707 H::generate_hash_keys(*(g+j),*(r1+j),*(r2+j));
|
mas01mc@292
|
1708 serial_bucket_chain_point(pe+t1*lshHeader->numCols, qpos); // Point to correct row
|
mas01mc@292
|
1709 }
|
mas01mc@292
|
1710 serial_munmap(db, hashTableSize); // drop hashtable mmap
|
mas01mc@292
|
1711 }
|
mas01mc@292
|
1712 serial_close(dbfid);
|
mas01mc@292
|
1713 }
|
mas01mc@292
|
1714
|
mas01mc@292
|
1715 void G::serial_retrieve_point(char* filename, vector<float>& v, Uns32T qpos, ReporterCallbackPtr add_point, void* caller){
|
mas01mc@292
|
1716 int dbfid = serial_open(filename, 0); // open for read
|
mas01mc@292
|
1717 char* dbheader = serial_mmap(dbfid, O2_SERIAL_HEADER_SIZE, 0);// get database pointer
|
mas01mc@292
|
1718 serial_get_header(dbheader); // read header
|
mas01mc@292
|
1719 serial_munmap(dbheader, O2_SERIAL_HEADER_SIZE); // drop header mmap
|
mas01mc@292
|
1720
|
mas01mc@292
|
1721 if((lshHeader->flags & O2_SERIAL_FILEFORMAT2)){
|
mas01mc@336
|
1722 serial_close(dbfid);
|
mas01mc@292
|
1723 error("serial_retrieve_point is for SERIAL_FILEFORMAT1 only");
|
mas01mc@292
|
1724 }
|
mas01mc@292
|
1725
|
mas01mc@292
|
1726 // size of each hash table
|
mas01mc@292
|
1727 Uns32T hashTableSize=sizeof(SerialElementT)*lshHeader->numRows*lshHeader->numCols;
|
mas01mc@292
|
1728 calling_instance = caller;
|
mas01mc@292
|
1729 add_point_callback = add_point;
|
mas01mc@293
|
1730 H::compute_hash_functions(v);
|
mas01mc@292
|
1731 for(Uns32T j=0; j<L; j++){
|
mas01mc@292
|
1732 // memory map a single hash table for random access
|
mas01mc@292
|
1733 char* db = serial_mmap(dbfid, hashTableSize, 0,
|
mas01mc@292
|
1734 align_up(get_serial_hashtable_offset()+j*hashTableSize,get_page_logn()));
|
mas01mc@324
|
1735 #ifdef __CYGWIN__
|
mas01mc@324
|
1736 // No madvise in CYGWIN
|
mas01mc@324
|
1737 #else
|
mas01mc@292
|
1738 if(madvise(db, hashTableSize, MADV_RANDOM)<0)
|
mas01mc@292
|
1739 error("could not advise local hashtable memory","","madvise");
|
mas01mc@324
|
1740 #endif
|
mas01mc@292
|
1741 SerialElementT* pe = (SerialElementT*)db ;
|
mas01mc@293
|
1742 H::generate_hash_keys(*(g+j),*(r1+j),*(r2+j));
|
mas01mc@292
|
1743 serial_bucket_chain_point(pe+t1*lshHeader->numCols, qpos); // Point to correct row
|
mas01mc@292
|
1744 serial_munmap(db, hashTableSize); // drop hashtable mmap
|
mas01mc@292
|
1745 }
|
mas01mc@292
|
1746 serial_close(dbfid);
|
mas01mc@292
|
1747 }
|
mas01mc@292
|
1748
|
mas01mc@292
|
1749 void G::serial_dump_tables(char* filename){
|
mas01mc@292
|
1750 int dbfid = serial_open(filename, 0); // open for read
|
mas01mc@292
|
1751 char* dbheader = serial_mmap(dbfid, O2_SERIAL_HEADER_SIZE, 0);// get database pointer
|
mas01mc@292
|
1752 serial_get_header(dbheader); // read header
|
mas01mc@292
|
1753 serial_munmap(dbheader, O2_SERIAL_HEADER_SIZE); // drop header mmap
|
mas01mc@292
|
1754 Uns32T hashTableSize=sizeof(SerialElementT)*lshHeader->numRows*lshHeader->numCols;
|
mas01mc@292
|
1755 for(Uns32T j=0; j<L; j++){
|
mas01mc@292
|
1756 // memory map a single hash table for random access
|
mas01mc@292
|
1757 char* db = serial_mmap(dbfid, hashTableSize, 0,
|
mas01mc@292
|
1758 align_up(get_serial_hashtable_offset()+j*hashTableSize,get_page_logn()));
|
mas01mc@324
|
1759 #ifdef __CYGWIN__
|
mas01mc@324
|
1760 // No madvise in CYGWIN
|
mas01mc@324
|
1761 #else
|
mas01mc@292
|
1762 if(madvise(db, hashTableSize, MADV_SEQUENTIAL)<0)
|
mas01mc@292
|
1763 error("could not advise local hashtable memory","","madvise");
|
mas01mc@324
|
1764 #endif
|
mas01mc@292
|
1765 SerialElementT* pe = (SerialElementT*)db ;
|
mas01mc@292
|
1766 printf("*********** TABLE %d ***************\n", j);
|
mas01mc@292
|
1767 fflush(stdout);
|
mas01mc@292
|
1768 int count=0;
|
mas01mc@292
|
1769 do{
|
mas01mc@292
|
1770 printf("[%d,%d]", j, count++);
|
mas01mc@292
|
1771 fflush(stdout);
|
mas01mc@292
|
1772 serial_bucket_dump(pe);
|
mas01mc@292
|
1773 pe+=lshHeader->numCols;
|
mas01mc@292
|
1774 }while(pe<(SerialElementT*)db+lshHeader->numRows*lshHeader->numCols);
|
mas01mc@292
|
1775 }
|
mas01mc@292
|
1776
|
mas01mc@292
|
1777 }
|
mas01mc@292
|
1778
|
mas01mc@292
|
1779 void G::serial_bucket_dump(SerialElementT* pe){
|
mas01mc@292
|
1780 SerialElementT* pend = pe+lshHeader->numCols;
|
mas01mc@292
|
1781 while( !(pe->hashValue==IFLAG || pe==pend ) ){
|
mas01mc@292
|
1782 printf("(%0X,%u)",pe->hashValue,pe->pointID);
|
mas01mc@292
|
1783 pe++;
|
mas01mc@292
|
1784 }
|
mas01mc@292
|
1785 printf("\n");
|
mas01mc@292
|
1786 fflush(stdout);
|
mas01mc@292
|
1787 }
|
mas01mc@292
|
1788
|
mas01mc@292
|
1789 void G::serial_bucket_chain_point(SerialElementT* pe, Uns32T qpos){
|
mas01mc@292
|
1790 SerialElementT* pend = pe+lshHeader->numCols;
|
mas01mc@292
|
1791 while( !(pe->hashValue==IFLAG || pe==pend ) ){
|
mas01mc@292
|
1792 if(pe->hashValue==t2){ // new match
|
mas01mc@292
|
1793 add_point_callback(calling_instance, pe->pointID, qpos, radius);
|
mas01mc@292
|
1794 }
|
mas01mc@292
|
1795 pe++;
|
mas01mc@292
|
1796 }
|
mas01mc@292
|
1797 }
|
mas01mc@292
|
1798
|
mas01mc@292
|
1799 void G::bucket_chain_point(bucket* p, Uns32T qpos){
|
mas01mc@292
|
1800 if(!p || p->t2==IFLAG)
|
mas01mc@292
|
1801 return;
|
mas01mc@292
|
1802 if(p->t2==t2){ // match
|
mas01mc@344
|
1803 sbucket_chain_point(p->snext.ptr, qpos); // add to reporter
|
mas01mc@292
|
1804 }
|
mas01mc@292
|
1805 if(p->next){
|
mas01mc@292
|
1806 bucket_chain_point(p->next, qpos); // recurse
|
mas01mc@292
|
1807 }
|
mas01mc@292
|
1808 }
|
mas01mc@292
|
1809
|
mas01mc@292
|
1810 void G::sbucket_chain_point(sbucket* p, Uns32T qpos){
|
mas01mc@292
|
1811 add_point_callback(calling_instance, p->pointID, qpos, radius);
|
mas01mc@292
|
1812 if(p->snext){
|
mas01mc@292
|
1813 sbucket_chain_point(p->snext, qpos);
|
mas01mc@292
|
1814 }
|
mas01mc@292
|
1815 }
|
mas01mc@292
|
1816
|
mas01mc@292
|
1817 void G::get_lock(int fd, bool exclusive) {
|
mas01mc@292
|
1818 struct flock lock;
|
mas01mc@292
|
1819 int status;
|
mas01mc@292
|
1820 lock.l_type = exclusive ? F_WRLCK : F_RDLCK;
|
mas01mc@292
|
1821 lock.l_whence = SEEK_SET;
|
mas01mc@292
|
1822 lock.l_start = 0;
|
mas01mc@292
|
1823 lock.l_len = 0; /* "the whole file" */
|
mas01mc@292
|
1824 retry:
|
mas01mc@292
|
1825 do {
|
mas01mc@292
|
1826 status = fcntl(fd, F_SETLKW, &lock);
|
mas01mc@292
|
1827 } while (status != 0 && errno == EINTR);
|
mas01mc@292
|
1828 if (status) {
|
mas01mc@292
|
1829 if (errno == EAGAIN) {
|
mas01mc@292
|
1830 sleep(1);
|
mas01mc@292
|
1831 goto retry;
|
mas01mc@292
|
1832 } else {
|
mas01mc@292
|
1833 error("fcntl lock error", "", "fcntl");
|
mas01mc@292
|
1834 }
|
mas01mc@292
|
1835 }
|
mas01mc@292
|
1836 }
|
mas01mc@292
|
1837
|
mas01mc@292
|
1838 void G::release_lock(int fd) {
|
mas01mc@292
|
1839 struct flock lock;
|
mas01mc@292
|
1840 int status;
|
mas01mc@292
|
1841
|
mas01mc@292
|
1842 lock.l_type = F_UNLCK;
|
mas01mc@292
|
1843 lock.l_whence = SEEK_SET;
|
mas01mc@292
|
1844 lock.l_start = 0;
|
mas01mc@292
|
1845 lock.l_len = 0;
|
mas01mc@292
|
1846
|
mas01mc@292
|
1847 status = fcntl(fd, F_SETLKW, &lock);
|
mas01mc@292
|
1848
|
mas01mc@292
|
1849 if (status)
|
mas01mc@292
|
1850 error("fcntl unlock error", "", "fcntl");
|
mas01mc@292
|
1851 }
|