Removed the term count stuff from all rsets, and fixed what ever that broke.
[idzebra-moved-to-github.git] / index / trunc.c
1 /* $Id: trunc.c,v 1.36 2004-08-20 14:44:46 heikki Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
3    Index Data Aps
4
5 This file is part of the Zebra server.
6
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Zebra; see the file LICENSE.zebra.  If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.
21 */
22
23
24 #include <stdio.h>
25 #include <assert.h>
26
27 #define NEW_TRUNC 1
28
29 #include "index.h"
30 #include <rstemp.h>
31 #include <rsnull.h>
32 #include <rsisams.h>
33 #include <rsisamc.h>
34 #include <rsisamb.h>
35 #if NEW_TRUNC
36 #include <rsm_or.h>
37 #endif
38 #include <rsmultior.h>
39
40 struct trunc_info {
41     int  *ptr;
42     int  *indx;
43     char **heap;
44     int  heapnum;
45     int  (*cmp)(const void *p1, const void *p2);
46     int  keysize;
47     char *swapbuf;
48     char *tmpbuf;
49     char *buf;
50 };
51
52 static void heap_swap (struct trunc_info *ti, int i1, int i2)
53 {
54     int swap;
55
56     swap = ti->ptr[i1];
57     ti->ptr[i1] = ti->ptr[i2];
58     ti->ptr[i2] = swap;
59 }
60
61 static void heap_delete (struct trunc_info *ti)
62 {
63     int cur = 1, child = 2;
64
65     heap_swap (ti, 1, ti->heapnum--);
66     while (child <= ti->heapnum) {
67         if (child < ti->heapnum &&
68             (*ti->cmp)(ti->heap[ti->ptr[child]],
69                        ti->heap[ti->ptr[1+child]]) > 0)
70             child++;
71         if ((*ti->cmp)(ti->heap[ti->ptr[cur]],
72                        ti->heap[ti->ptr[child]]) > 0)
73         {
74             heap_swap (ti, cur, child);
75             cur = child;
76             child = 2*cur;
77         }
78         else
79             break;
80     }
81 }
82
83 static void heap_insert (struct trunc_info *ti, const char *buf, int indx)
84 {
85     int cur, parent;
86
87     cur = ++(ti->heapnum);
88     memcpy (ti->heap[ti->ptr[cur]], buf, ti->keysize);
89     ti->indx[ti->ptr[cur]] = indx;
90     parent = cur/2;
91     while (parent && (*ti->cmp)(ti->heap[ti->ptr[parent]],
92                                 ti->heap[ti->ptr[cur]]) > 0)
93     {
94         heap_swap (ti, cur, parent);
95         cur = parent;
96         parent = cur/2;
97     }
98 }
99
100 static struct trunc_info *heap_init (int size, int key_size,
101                                      int (*cmp)(const void *p1,
102                                                 const void *p2))
103 {
104     struct trunc_info *ti = (struct trunc_info *) xmalloc (sizeof(*ti));
105     int i;
106
107     ++size;
108     ti->heapnum = 0;
109     ti->keysize = key_size;
110     ti->cmp = cmp;
111     ti->indx = (int *) xmalloc (size * sizeof(*ti->indx));
112     ti->heap = (char **) xmalloc (size * sizeof(*ti->heap));
113     ti->ptr = (int *) xmalloc (size * sizeof(*ti->ptr));
114     ti->swapbuf = (char *) xmalloc (ti->keysize);
115     ti->tmpbuf = (char *) xmalloc (ti->keysize);
116     ti->buf = (char *) xmalloc (size * ti->keysize);
117     for (i = size; --i >= 0; )
118     {
119         ti->ptr[i] = i;
120         ti->heap[i] = ti->buf + ti->keysize * i;
121     }
122     return ti;
123 }
124
125 static void heap_close (struct trunc_info *ti)
126 {
127     xfree (ti->ptr);
128     xfree (ti->indx);
129     xfree (ti->heap);
130     xfree (ti->swapbuf);
131     xfree (ti->tmpbuf);
132     xfree (ti->buf);
133     xfree (ti);
134 }
135
136 static RSET rset_trunc_r (ZebraHandle zi, const char *term, int length,
137                           const char *flags, ISAMS_P *isam_p, int from, int to,
138                           int merge_chunk, int preserve_position,
139                           int term_type)
140 {
141     RSET result; 
142     RSFD result_rsfd;
143     rset_temp_parms parms;
144     int nn = 0;
145
146     parms.cmp = key_compare_it;
147     parms.key_size = sizeof(struct it_key);
148     parms.temp_path = res_get (zi->res, "setTmpDir");
149     result = rset_create (rset_kind_temp, &parms);
150     result_rsfd = rset_open (result, RSETF_WRITE);
151
152     if (to - from > merge_chunk)
153     {
154         RSFD *rsfd;
155         RSET *rset;
156         int i, i_add = (to-from)/merge_chunk + 1;
157         struct trunc_info *ti;
158         int rscur = 0;
159         int rsmax = (to-from)/i_add + 1;
160         
161         rset = (RSET *) xmalloc (sizeof(*rset) * rsmax);
162         rsfd = (RSFD *) xmalloc (sizeof(*rsfd) * rsmax);
163         
164         for (i = from; i < to; i += i_add)
165         {
166             if (i_add <= to - i)
167                 rset[rscur] = rset_trunc_r (zi, term, length, flags,
168                                             isam_p, i, i+i_add,
169                                             merge_chunk, preserve_position,
170                                             term_type);
171             else
172                 rset[rscur] = rset_trunc_r (zi, term, length, flags,
173                                             isam_p, i, to,
174                                             merge_chunk, preserve_position,
175                                             term_type);
176             rscur++;
177         }
178         ti = heap_init (rscur, sizeof(struct it_key), key_compare_it);
179         for (i = rscur; --i >= 0; )
180         {
181             rsfd[i] = rset_open (rset[i], RSETF_READ);
182             if (rset_read (rset[i], rsfd[i], ti->tmpbuf))
183                 heap_insert (ti, ti->tmpbuf, i);
184             else
185             {
186                 rset_close (rset[i], rsfd[i]);
187                 rset_delete (rset[i]);
188             }
189         }
190         while (ti->heapnum)
191         {
192             int n = ti->indx[ti->ptr[1]];
193
194             rset_write (result, result_rsfd, ti->heap[ti->ptr[1]]);
195             nn++;
196
197             while (1)
198             {
199                 if (!rset_read (rset[n], rsfd[n], ti->tmpbuf))
200                 {
201                     heap_delete (ti);
202                     rset_close (rset[n], rsfd[n]);
203                     rset_delete (rset[n]);
204                     break;
205                 }
206                 if ((*ti->cmp)(ti->tmpbuf, ti->heap[ti->ptr[1]]) > 1)
207                 {
208                     heap_delete (ti);
209                     heap_insert (ti, ti->tmpbuf, n);
210                     break;
211                 }
212             }
213         }
214         xfree (rset);
215         xfree (rsfd);
216         heap_close (ti);
217     }
218     else if (zi->reg->isamc)
219     {
220         ISAMC_PP *ispt;
221         int i;
222         struct trunc_info *ti;
223
224         ispt = (ISAMC_PP *) xmalloc (sizeof(*ispt) * (to-from));
225
226         ti = heap_init (to-from, sizeof(struct it_key),
227                         key_compare_it);
228         for (i = to-from; --i >= 0; )
229         {
230             ispt[i] = isc_pp_open (zi->reg->isamc, isam_p[from+i]);
231             if (isc_pp_read (ispt[i], ti->tmpbuf))
232                 heap_insert (ti, ti->tmpbuf, i);
233             else
234                 isc_pp_close (ispt[i]);
235         }
236         while (ti->heapnum)
237         {
238             int n = ti->indx[ti->ptr[1]];
239
240             rset_write (result, result_rsfd, ti->heap[ti->ptr[1]]);
241             nn++;
242             if (preserve_position)
243             {
244                 heap_delete (ti);
245                 if (isc_pp_read (ispt[n], ti->tmpbuf))
246                     heap_insert (ti, ti->tmpbuf, n);
247                 else
248                     isc_pp_close (ispt[n]);
249             }
250             else
251             {
252                 while (1)
253                 {
254                     if (!isc_pp_read (ispt[n], ti->tmpbuf))
255                     {
256                         heap_delete (ti);
257                         isc_pp_close (ispt[n]);
258                         break;
259                     }
260                     if ((*ti->cmp)(ti->tmpbuf, ti->heap[ti->ptr[1]]) > 1)
261                     {
262                         heap_delete (ti);
263                         heap_insert (ti, ti->tmpbuf, n);
264                         break;
265                     }
266                 }
267             }
268         }
269         heap_close (ti);
270         xfree (ispt);
271     }
272     else if (zi->reg->isams)
273     {
274         ISAMS_PP *ispt;
275         int i;
276         struct trunc_info *ti;
277         int nn = 0;
278
279         ispt = (ISAMS_PP *) xmalloc (sizeof(*ispt) * (to-from));
280
281         ti = heap_init (to-from, sizeof(struct it_key),
282                         key_compare_it);
283         for (i = to-from; --i >= 0; )
284         {
285             ispt[i] = isams_pp_open (zi->reg->isams, isam_p[from+i]);
286             if (isams_pp_read (ispt[i], ti->tmpbuf))
287                 heap_insert (ti, ti->tmpbuf, i);
288             else
289                 isams_pp_close (ispt[i]);
290         }
291         while (ti->heapnum)
292         {
293             int n = ti->indx[ti->ptr[1]];
294
295             rset_write (result, result_rsfd, ti->heap[ti->ptr[1]]);
296             nn++;
297             while (1)
298             {
299                 if (!isams_pp_read (ispt[n], ti->tmpbuf))
300                 {
301                     heap_delete (ti);
302                     isams_pp_close (ispt[n]);
303                     break;
304                 }
305                 if ((*ti->cmp)(ti->tmpbuf, ti->heap[ti->ptr[1]]) > 1)
306                 {
307                     heap_delete (ti);
308                     heap_insert (ti, ti->tmpbuf, n);
309                     break;
310                 }
311             }
312         }
313         heap_close (ti);
314         xfree (ispt);
315     }
316     else if (zi->reg->isamb)
317     {
318         ISAMB_PP *ispt;
319         int i;
320         struct trunc_info *ti;
321
322         ispt = (ISAMB_PP *) xmalloc (sizeof(*ispt) * (to-from));
323
324         ti = heap_init (to-from, sizeof(struct it_key),
325                         key_compare_it);
326         for (i = to-from; --i >= 0; )
327         {
328             if (isam_p[from+i]) {
329                 ispt[i] = isamb_pp_open (zi->reg->isamb, isam_p[from+i]);
330                 if (isamb_pp_read (ispt[i], ti->tmpbuf))
331                     heap_insert (ti, ti->tmpbuf, i);
332                 else
333                     isamb_pp_close (ispt[i]);
334             }
335         }
336         while (ti->heapnum)
337         {
338             int n = ti->indx[ti->ptr[1]];
339
340             rset_write (result, result_rsfd, ti->heap[ti->ptr[1]]);
341             nn++;
342
343             if (preserve_position)
344             {
345                 heap_delete (ti);
346                 if (isamb_pp_read (ispt[n], ti->tmpbuf))
347                     heap_insert (ti, ti->tmpbuf, n);
348                 else
349                     isamb_pp_close (ispt[n]);
350             }
351             else
352             {
353                 while (1)
354                 {
355                     if (!isamb_pp_read (ispt[n], ti->tmpbuf))
356                     {
357                         heap_delete (ti);
358                         isamb_pp_close (ispt[n]);
359                         break;
360                     }
361                     if ((*ti->cmp)(ti->tmpbuf, ti->heap[ti->ptr[1]]) > 1)
362                     {
363                         heap_delete (ti);
364                         heap_insert (ti, ti->tmpbuf, n);
365                         break;
366                     }
367                 }
368             }
369         }
370         heap_close (ti);
371         xfree (ispt);
372     }
373     else
374         logf (LOG_WARN, "Unknown isam set in rset_trunc_r");
375
376     rset_close (result, result_rsfd);
377     return result;
378 }
379
380 static int isams_trunc_cmp (const void *p1, const void *p2)
381 {
382     ISAMS_P i1 = *(ISAMS_P*) p1;
383     ISAMS_P i2 = *(ISAMS_P*) p2;
384
385     if (i1 > i2)
386         return 1;
387     else if (i1 < i2)
388         return -1;
389     return 0;
390 }
391
392 static int isamc_trunc_cmp (const void *p1, const void *p2)
393 {
394     ISAMC_P i1 = *(ISAMC_P*) p1;
395     ISAMC_P i2 = *(ISAMC_P*) p2;
396     zint d;
397
398     d = (isc_type (i1) - isc_type (i2));
399     if (d == 0)
400         d = isc_block (i1) - isc_block (i2);
401     if (d > 0)
402         return 1;
403     else if (d < 0)
404         return -1;
405     return 0;
406 }
407
408 RSET rset_trunc (ZebraHandle zi, ISAMS_P *isam_p, int no,
409                  const char *term, int length, const char *flags,
410                  int preserve_position, int term_type)
411 {
412     logf (LOG_DEBUG, "rset_trunc no=%d", no);
413     if (no < 1)
414     {
415         rset_null_parms parms;
416         return rset_create (rset_kind_null, &parms);
417     }
418     if (zi->reg->isams)
419     {
420         if (no == 1)
421         {
422             rset_isams_parms parms;
423
424             parms.pos = *isam_p;
425             parms.is = zi->reg->isams;
426             return rset_create (rset_kind_isams, &parms);
427         }
428         qsort (isam_p, no, sizeof(*isam_p), isams_trunc_cmp);
429     }
430     else if (zi->reg->isamc)
431     {
432         if (no == 1)
433         {
434             rset_isamc_parms parms;
435
436             parms.key_size = sizeof(struct it_key);
437             parms.cmp = key_compare_it;
438             parms.pos = *isam_p;
439             parms.is = zi->reg->isamc;
440             return rset_create (rset_kind_isamc, &parms);
441         }
442 #if 0 /* NEW_TRUNC */ /* FIXME - Use the new multi_or instead !! */
443         else if (no < 10000)
444         {
445             rset_m_or_parms parms;
446
447             parms.key_size = sizeof(struct it_key);
448             parms.cmp = key_compare_it;
449             parms.isc = zi->reg->isamc;
450             parms.isam_positions = isam_p;
451             parms.no_isam_positions = no;
452             parms.no_save_positions = 100000;
453             return rset_create (rset_kind_m_or, &parms);
454         }
455 #endif
456         qsort (isam_p, no, sizeof(*isam_p), isamc_trunc_cmp);
457     }
458     else if (zi->reg->isamb)
459     {
460         if (no == 1)
461         {
462             rset_isamb_parms parms;
463             parms.key_size = sizeof(struct it_key);
464             parms.cmp = key_compare_it;
465             parms.pos = *isam_p;
466             parms.is = zi->reg->isamb;
467             return rset_create (rset_kind_isamb, &parms);
468         }
469 #if 1
470         else if (no <10000 ) /* FIXME - hardcoded number */
471         {
472             rset_multior_parms m_parms;
473             rset_isamb_parms b_parms;
474             int i;
475             m_parms.key_size = sizeof(struct it_key);
476             m_parms.cmp = key_compare_it;
477             m_parms.no_rsets=no;
478             m_parms.rsets=xmalloc(sizeof(*m_parms.rsets)*no);
479             b_parms.key_size = sizeof(struct it_key);
480             b_parms.cmp = key_compare_it;
481             b_parms.is = zi->reg->isamb;
482             /* FIXME - make it so that we can pass a null ptr to term */
483             /* needs changes in all rsets, here and there! */
484             for (i=0;i<no;i++)
485             {
486                 b_parms.pos = isam_p[i];
487                 m_parms.rsets[i]=rset_create (rset_kind_isamb, &b_parms);
488             }
489             return rset_create (rset_kind_multior, &m_parms);
490         } /* <10000 - rs_multior */
491 #endif        
492         qsort (isam_p, no, sizeof(*isam_p), isamc_trunc_cmp);
493     }
494     else
495     {
496         logf (LOG_WARN, "Unknown isam set in rset_trunc");
497         return rset_create (rset_kind_null, NULL);
498     }
499     return rset_trunc_r (zi, term, length, flags, isam_p, 0, no, 100,
500                          preserve_position, term_type);
501 }
502