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