1 /* $Id: trunc.c,v 1.40 2004-08-31 10:43:35 heikki Exp $
2 Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
5 This file is part of the Zebra server.
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
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
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
33 #include <rsmultior.h>
40 int (*cmp)(const void *p1, const void *p2);
47 static void heap_swap (struct trunc_info *ti, int i1, int i2)
52 ti->ptr[i1] = ti->ptr[i2];
56 static void heap_delete (struct trunc_info *ti)
58 int cur = 1, child = 2;
60 heap_swap (ti, 1, ti->heapnum--);
61 while (child <= ti->heapnum) {
62 if (child < ti->heapnum &&
63 (*ti->cmp)(ti->heap[ti->ptr[child]],
64 ti->heap[ti->ptr[1+child]]) > 0)
66 if ((*ti->cmp)(ti->heap[ti->ptr[cur]],
67 ti->heap[ti->ptr[child]]) > 0)
69 heap_swap (ti, cur, child);
78 static void heap_insert (struct trunc_info *ti, const char *buf, int indx)
82 cur = ++(ti->heapnum);
83 memcpy (ti->heap[ti->ptr[cur]], buf, ti->keysize);
84 ti->indx[ti->ptr[cur]] = indx;
86 while (parent && (*ti->cmp)(ti->heap[ti->ptr[parent]],
87 ti->heap[ti->ptr[cur]]) > 0)
89 heap_swap (ti, cur, parent);
95 static struct trunc_info *heap_init (int size, int key_size,
96 int (*cmp)(const void *p1,
99 struct trunc_info *ti = (struct trunc_info *) xmalloc (sizeof(*ti));
104 ti->keysize = key_size;
106 ti->indx = (int *) xmalloc (size * sizeof(*ti->indx));
107 ti->heap = (char **) xmalloc (size * sizeof(*ti->heap));
108 ti->ptr = (int *) xmalloc (size * sizeof(*ti->ptr));
109 ti->swapbuf = (char *) xmalloc (ti->keysize);
110 ti->tmpbuf = (char *) xmalloc (ti->keysize);
111 ti->buf = (char *) xmalloc (size * ti->keysize);
112 for (i = size; --i >= 0; )
115 ti->heap[i] = ti->buf + ti->keysize * i;
120 static void heap_close (struct trunc_info *ti)
131 static RSET rset_trunc_r (ZebraHandle zi, const char *term, int length,
132 const char *flags, ISAMS_P *isam_p, int from, int to,
133 int merge_chunk, int preserve_position,
141 rset_temp_parms parms;
142 parms.cmp = key_compare_it;
143 parms.key_size = sizeof(struct it_key);
144 parms.temp_path = res_get (zi->res, "setTmpDir");
145 result = rset_create (rset_kind_temp, &parms);
147 result=rstemp_create(NULL, /* FIXME - use a proper nmem */
148 sizeof(struct it_key), key_compare_it,
149 res_get (zi->res, "setTmpDir"));
150 result_rsfd = rset_open (result, RSETF_WRITE);
152 if (to - from > merge_chunk)
156 int i, i_add = (to-from)/merge_chunk + 1;
157 struct trunc_info *ti;
159 int rsmax = (to-from)/i_add + 1;
161 rset = (RSET *) xmalloc (sizeof(*rset) * rsmax);
162 rsfd = (RSFD *) xmalloc (sizeof(*rsfd) * rsmax);
164 for (i = from; i < to; i += i_add)
167 rset[rscur] = rset_trunc_r (zi, term, length, flags,
169 merge_chunk, preserve_position,
172 rset[rscur] = rset_trunc_r (zi, term, length, flags,
174 merge_chunk, preserve_position,
178 ti = heap_init (rscur, sizeof(struct it_key), key_compare_it);
179 for (i = rscur; --i >= 0; )
181 rsfd[i] = rset_open (rset[i], RSETF_READ);
182 if (rset_read(rsfd[i], ti->tmpbuf))
183 heap_insert (ti, ti->tmpbuf, i);
186 rset_close (rsfd[i]);
187 rset_delete (rset[i]);
192 int n = ti->indx[ti->ptr[1]];
194 rset_write (result_rsfd, ti->heap[ti->ptr[1]]);
199 if (!rset_read (rsfd[n], ti->tmpbuf))
202 rset_close (rsfd[n]);
203 rset_delete (rset[n]);
206 if ((*ti->cmp)(ti->tmpbuf, ti->heap[ti->ptr[1]]) > 1)
209 heap_insert (ti, ti->tmpbuf, n);
218 else if (zi->reg->isamc)
222 struct trunc_info *ti;
224 ispt = (ISAMC_PP *) xmalloc (sizeof(*ispt) * (to-from));
226 ti = heap_init (to-from, sizeof(struct it_key),
228 for (i = to-from; --i >= 0; )
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);
234 isc_pp_close (ispt[i]);
238 int n = ti->indx[ti->ptr[1]];
240 rset_write (result_rsfd, ti->heap[ti->ptr[1]]);
242 if (preserve_position)
245 if (isc_pp_read (ispt[n], ti->tmpbuf))
246 heap_insert (ti, ti->tmpbuf, n);
248 isc_pp_close (ispt[n]);
254 if (!isc_pp_read (ispt[n], ti->tmpbuf))
257 isc_pp_close (ispt[n]);
260 if ((*ti->cmp)(ti->tmpbuf, ti->heap[ti->ptr[1]]) > 1)
263 heap_insert (ti, ti->tmpbuf, n);
272 else if (zi->reg->isams)
276 struct trunc_info *ti;
279 ispt = (ISAMS_PP *) xmalloc (sizeof(*ispt) * (to-from));
281 ti = heap_init (to-from, sizeof(struct it_key),
283 for (i = to-from; --i >= 0; )
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);
289 isams_pp_close (ispt[i]);
293 int n = ti->indx[ti->ptr[1]];
295 rset_write (result_rsfd, ti->heap[ti->ptr[1]]);
299 if (!isams_pp_read (ispt[n], ti->tmpbuf))
302 isams_pp_close (ispt[n]);
305 if ((*ti->cmp)(ti->tmpbuf, ti->heap[ti->ptr[1]]) > 1)
308 heap_insert (ti, ti->tmpbuf, n);
316 else if (zi->reg->isamb)
320 struct trunc_info *ti;
322 ispt = (ISAMB_PP *) xmalloc (sizeof(*ispt) * (to-from));
324 ti = heap_init (to-from, sizeof(struct it_key),
326 for (i = to-from; --i >= 0; )
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);
333 isamb_pp_close (ispt[i]);
338 int n = ti->indx[ti->ptr[1]];
340 rset_write (result_rsfd, ti->heap[ti->ptr[1]]);
343 if (preserve_position)
346 if (isamb_pp_read (ispt[n], ti->tmpbuf))
347 heap_insert (ti, ti->tmpbuf, n);
349 isamb_pp_close (ispt[n]);
355 if (!isamb_pp_read (ispt[n], ti->tmpbuf))
358 isamb_pp_close (ispt[n]);
361 if ((*ti->cmp)(ti->tmpbuf, ti->heap[ti->ptr[1]]) > 1)
364 heap_insert (ti, ti->tmpbuf, n);
374 logf (LOG_WARN, "Unknown isam set in rset_trunc_r");
376 rset_close (result_rsfd);
380 static int isams_trunc_cmp (const void *p1, const void *p2)
382 ISAMS_P i1 = *(ISAMS_P*) p1;
383 ISAMS_P i2 = *(ISAMS_P*) p2;
392 static int isamc_trunc_cmp (const void *p1, const void *p2)
394 ISAMC_P i1 = *(ISAMC_P*) p1;
395 ISAMC_P i2 = *(ISAMC_P*) p2;
398 d = (isc_type (i1) - isc_type (i2));
400 d = isc_block (i1) - isc_block (i2);
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)
412 logf (LOG_DEBUG, "rset_trunc no=%d", no);
414 return rsnull_create (NULL); /* FIXME - use a proper nmem */
418 return rsisams_create(NULL, /* FIXME - use some nmem */
419 sizeof(struct it_key), key_compare_it,
420 zi->reg->isams, *isam_p);
423 rset_isams_parms parms;
426 parms.is = zi->reg->isams;
427 return rset_create (rset_kind_isams, &parms);
430 qsort (isam_p, no, sizeof(*isam_p), isams_trunc_cmp);
432 else if (zi->reg->isamc)
435 return rsisamc_create(NULL, /* FIXME - use some nmem */
436 sizeof(struct it_key), key_compare_it,
437 zi->reg->isamc, *isam_p);
440 rset_isamc_parms parms;
442 parms.key_size = sizeof(struct it_key);
443 parms.cmp = key_compare_it;
445 parms.is = zi->reg->isamc;
446 return rset_create (rset_kind_isamc, &parms);
450 #if 0 /* NEW_TRUNC */ /* FIXME - Use the new multi_or instead !! */
453 rset_m_or_parms parms;
455 parms.key_size = sizeof(struct it_key);
456 parms.cmp = key_compare_it;
457 parms.isc = zi->reg->isamc;
458 parms.isam_positions = isam_p;
459 parms.no_isam_positions = no;
460 parms.no_save_positions = 100000;
461 return rset_create (rset_kind_m_or, &parms);
464 qsort (isam_p, no, sizeof(*isam_p), isamc_trunc_cmp);
466 else if (zi->reg->isamb)
469 return rsisamb_create(NULL, /* FIXME - use some nmem */
470 sizeof(struct it_key), key_compare_it,
471 zi->reg->isamb, *isam_p);
474 rset_isamb_parms parms;
475 parms.key_size = sizeof(struct it_key);
476 parms.cmp = key_compare_it;
478 parms.is = zi->reg->isamb;
479 return rset_create (rset_kind_isamb, &parms);
483 else if (no <10000 ) /* FIXME - hardcoded number */
486 RSET *rsets=xmalloc(no*sizeof(RSET)); /* use nmem! */
489 rsets[i]=rsisamb_create(NULL, /* */
490 sizeof(struct it_key), key_compare_it,
491 zi->reg->isamb, isam_p[i] );
492 r=rsmultior_create( NULL, /* FIXME - use some nmem */
493 sizeof(struct it_key), key_compare_it,
498 rset_multior_parms m_parms;
499 rset_isamb_parms b_parms;
501 m_parms.key_size = sizeof(struct it_key);
502 m_parms.cmp = key_compare_it;
504 m_parms.rsets=xmalloc(sizeof(*m_parms.rsets)*no);
505 b_parms.key_size = sizeof(struct it_key);
506 b_parms.cmp = key_compare_it;
507 b_parms.is = zi->reg->isamb;
510 b_parms.pos = isam_p[i];
511 m_parms.rsets[i]=rset_create (rset_kind_isamb, &b_parms);
513 return rset_create (rset_kind_multior, &m_parms);
515 } /* <10000 - rs_multior */
517 qsort (isam_p, no, sizeof(*isam_p), isamc_trunc_cmp);
521 logf (LOG_WARN, "Unknown isam set in rset_trunc");
522 return rsnull_create (NULL); /* FIXME - nmem */
524 return rset_trunc_r (zi, term, length, flags, isam_p, 0, no, 100,
525 preserve_position, term_type);