Changed the pos code to 64-bit clean. Still lots of stuff missing...
[idzebra-moved-to-github.git] / rset / rsbool.c
1 /* $Id: rsbool.c,v 1.33 2004-08-04 09:59:03 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 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <assert.h>
27
28 #include <zebrautl.h>
29 #include <rsbool.h>
30
31 #ifndef RSET_DEBUG
32 #define RSET_DEBUG 0
33 #endif
34
35 static void *r_create(RSET ct, const struct rset_control *sel, void *parms);
36 static RSFD r_open (RSET ct, int flag);
37 static void r_close (RSFD rfd);
38 static void r_delete (RSET ct);
39 static void r_rewind (RSFD rfd);
40 static int r_forward(RSET ct, RSFD rfd, void *buf, int *term_index,
41                      int (*cmpfunc)(const void *p1, const void *p2),
42                      const void *untilbuf);
43 /* static void r_pos (RSFD rfd, int *current, int *total);  */
44 static int r_read_and (RSFD rfd, void *buf, int *term_index);
45 static int r_read_or (RSFD rfd, void *buf, int *term_index);
46 static int r_read_not (RSFD rfd, void *buf, int *term_index);
47 static int r_write (RSFD rfd, const void *buf);
48
49 static const struct rset_control control_and = 
50 {
51     "and",
52     r_create,
53     r_open,
54     r_close,
55     r_delete,
56     r_rewind,
57     r_forward, /* rset_default_forward, */
58     rset_default_pos,
59     r_read_and,
60     r_write,
61 };
62
63 static const struct rset_control control_or = 
64 {
65     "or",
66     r_create,
67     r_open,
68     r_close,
69     r_delete,
70     r_rewind,
71 #if 1
72     r_forward, 
73 #else
74     rset_default_forward,
75 #endif
76     rset_default_pos,
77     r_read_or,
78     r_write,
79 };
80
81 static const struct rset_control control_not = 
82 {
83     "not",
84     r_create,
85     r_open,
86     r_close,
87     r_delete,
88     r_rewind,
89     r_forward, 
90     rset_default_pos,
91     r_read_not,
92     r_write,
93 };
94
95
96 const struct rset_control *rset_kind_and = &control_and;
97 const struct rset_control *rset_kind_or = &control_or;
98 const struct rset_control *rset_kind_not = &control_not;
99
100 struct rset_bool_info {
101     int key_size;
102     RSET rset_l;
103     RSET rset_r;
104     int term_index_s;
105     int (*cmp)(const void *p1, const void *p2);
106     void (*log_item)(int logmask, const void *p, const char *txt);
107     struct rset_bool_rfd *rfd_list;
108 };
109
110 struct rset_bool_rfd {
111     RSFD rfd_l;
112     RSFD rfd_r;
113     int  more_l;
114     int  more_r;
115     int term_index_l;
116     int term_index_r;
117     void *buf_l;
118     void *buf_r;
119     int tail;
120     struct rset_bool_rfd *next;
121     struct rset_bool_info *info;
122 };    
123
124 static void *r_create (RSET ct, const struct rset_control *sel, void *parms)
125 {
126     rset_bool_parms *bool_parms = (rset_bool_parms *) parms;
127     struct rset_bool_info *info;
128
129     info = (struct rset_bool_info *) xmalloc (sizeof(*info));
130     info->key_size = bool_parms->key_size;
131     info->rset_l = bool_parms->rset_l;
132     info->rset_r = bool_parms->rset_r;
133     if (rset_is_volatile(info->rset_l) || rset_is_volatile(info->rset_r))
134         ct->flags |= RSET_FLAG_VOLATILE;
135     info->cmp = bool_parms->cmp;
136     info->log_item = bool_parms->log_item;
137     info->rfd_list = NULL;
138     
139     info->term_index_s = info->rset_l->no_rset_terms;
140     ct->no_rset_terms =
141         info->rset_l->no_rset_terms + info->rset_r->no_rset_terms;
142     ct->rset_terms = (RSET_TERM *)
143         xmalloc (sizeof (*ct->rset_terms) * ct->no_rset_terms);
144
145     memcpy (ct->rset_terms, info->rset_l->rset_terms,
146             info->rset_l->no_rset_terms * sizeof(*ct->rset_terms));
147     memcpy (ct->rset_terms + info->rset_l->no_rset_terms,
148             info->rset_r->rset_terms,
149             info->rset_r->no_rset_terms * sizeof(*ct->rset_terms));
150     return info;
151 }
152
153 static RSFD r_open (RSET ct, int flag)
154 {
155     struct rset_bool_info *info = (struct rset_bool_info *) ct->buf;
156     struct rset_bool_rfd *rfd;
157
158     if (flag & RSETF_WRITE)
159     {
160         logf (LOG_FATAL, "bool set type is read-only");
161         return NULL;
162     }
163     rfd = (struct rset_bool_rfd *) xmalloc (sizeof(*rfd));
164     logf(LOG_DEBUG,"rsbool (%s) open [%p]", ct->control->desc, rfd);
165     rfd->next = info->rfd_list;
166     info->rfd_list = rfd;
167     rfd->info = info;
168
169     rfd->buf_l = xmalloc (info->key_size);
170     rfd->buf_r = xmalloc (info->key_size);
171     rfd->rfd_l = rset_open (info->rset_l, RSETF_READ);
172     rfd->rfd_r = rset_open (info->rset_r, RSETF_READ);
173     rfd->more_l = rset_read (info->rset_l, rfd->rfd_l, rfd->buf_l,
174                              &rfd->term_index_l);
175     rfd->more_r = rset_read (info->rset_r, rfd->rfd_r, rfd->buf_r,
176                              &rfd->term_index_r);
177     rfd->tail = 0;
178     return rfd;
179 }
180
181 static void r_close (RSFD rfd)
182 {
183     struct rset_bool_info *info = ((struct rset_bool_rfd*)rfd)->info;
184     struct rset_bool_rfd **rfdp;
185     
186     for (rfdp = &info->rfd_list; *rfdp; rfdp = &(*rfdp)->next)
187         if (*rfdp == rfd)
188         {
189             xfree ((*rfdp)->buf_l);
190             xfree ((*rfdp)->buf_r);
191             rset_close (info->rset_l, (*rfdp)->rfd_l);
192             rset_close (info->rset_r, (*rfdp)->rfd_r);
193             *rfdp = (*rfdp)->next;
194             xfree (rfd);
195             return;
196         }
197     logf (LOG_FATAL, "r_close but no rfd match!");
198     assert (0);
199 }
200
201 static void r_delete (RSET ct)
202 {
203     struct rset_bool_info *info = (struct rset_bool_info *) ct->buf;
204
205     assert (info->rfd_list == NULL);
206     xfree (ct->rset_terms);
207     rset_delete (info->rset_l);
208     rset_delete (info->rset_r);
209     xfree (info);
210 }
211
212 static void r_rewind (RSFD rfd)
213 {
214     struct rset_bool_info *info = ((struct rset_bool_rfd*)rfd)->info;
215     struct rset_bool_rfd *p = (struct rset_bool_rfd *) rfd;
216
217     logf (LOG_DEBUG, "rsbool_rewind");
218     rset_rewind (info->rset_l, p->rfd_l);
219     rset_rewind (info->rset_r, p->rfd_r);
220     p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l, &p->term_index_l);
221     p->more_r = rset_read (info->rset_r, p->rfd_r, p->buf_r, &p->term_index_r);
222 }
223
224 static int r_forward (RSET ct, RSFD rfd, void *buf, int *term_index,
225                      int (*cmpfunc)(const void *p1, const void *p2),
226                      const void *untilbuf)
227 {
228     struct rset_bool_info *info = ((struct rset_bool_rfd*)rfd)->info;
229     struct rset_bool_rfd *p = (struct rset_bool_rfd *) rfd;
230     int rc;
231
232 #if RSET_DEBUG
233     logf (LOG_DEBUG, "rsbool_forward (L) [%p] '%s' (ct=%p rfd=%p m=%d,%d)",
234                       rfd, ct->control->desc, ct, rfd, p->more_l, p->more_r);
235 #endif
236     if ( p->more_l && ((cmpfunc)(untilbuf,p->buf_l)==2) )
237         p->more_l = rset_forward(info->rset_l, p->rfd_l, p->buf_l,
238                         &p->term_index_l, info->cmp, untilbuf);
239 #if RSET_DEBUG
240     logf (LOG_DEBUG, "rsbool_forward (R) [%p] '%s' (ct=%p rfd=%p m=%d,%d)",
241                       rfd, ct->control->desc, ct, rfd, p->more_l, p->more_r);
242 #endif
243     if ( p->more_r && ((cmpfunc)(untilbuf,p->buf_r)==2))
244         p->more_r = rset_forward(info->rset_r, p->rfd_r, p->buf_r,
245                         &p->term_index_r, info->cmp, untilbuf);
246 #if RSET_DEBUG
247     logf (LOG_DEBUG, "rsbool_forward [%p] calling read, m=%d,%d t=%d", 
248                        rfd, p->more_l, p->more_r, p->tail);
249 #endif
250     
251     p->tail=0; 
252     rc = rset_read(ct,rfd,buf,term_index); 
253 #if RSET_DEBUG
254     logf (LOG_DEBUG, "rsbool_forward returning [%p] %d m=%d,%d", 
255                        rfd, rc, p->more_l, p->more_r);
256 #endif
257     return rc;
258 }
259
260
261 /*
262     1,1         1,3
263     1,9         2,1
264     1,11        3,1
265     2,9
266
267   1,1     1,1
268   1,3     1,3
269           1,9
270           1,11
271   2,1     2,1
272           2,9
273           3,1
274 */
275
276 static int r_read_and (RSFD rfd, void *buf, int *term_index)
277 {
278     struct rset_bool_rfd *p = (struct rset_bool_rfd *) rfd;
279     struct rset_bool_info *info = p->info;
280
281     while (p->more_l || p->more_r)
282     {
283         int cmp;
284
285         if (p->more_l && p->more_r)
286             cmp = (*info->cmp)(p->buf_l, p->buf_r);
287         else if (p->more_l)
288             cmp = -2;
289         else
290             cmp = 2;
291 #if RSET_DEBUG
292         logf (LOG_DEBUG, "r_read_and [%p] looping: m=%d/%d c=%d t=%d",
293                         rfd, p->more_l, p->more_r, cmp, p->tail);
294         (*info->log_item)(LOG_DEBUG, p->buf_l, "left ");
295         (*info->log_item)(LOG_DEBUG, p->buf_r, "right ");
296 #endif
297         if (!cmp)
298         {
299             memcpy (buf, p->buf_l, info->key_size);
300                 *term_index = p->term_index_l;
301             p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l,
302                                    &p->term_index_l);
303             p->tail = 1;
304         }
305         else if (cmp == 1)
306         {
307             memcpy (buf, p->buf_r, info->key_size);
308                 *term_index = p->term_index_r + info->term_index_s;
309             p->more_r = rset_read (info->rset_r, p->rfd_r, p->buf_r,
310                                    &p->term_index_r);
311             p->tail = 1;
312 #if RSET_DEBUG
313             logf (LOG_DEBUG, "r_read_and [%p] returning R m=%d/%d c=%d",
314                     rfd, p->more_l, p->more_r, cmp);
315             key_logdump(LOG_DEBUG,buf);
316             (*info->log_item)(LOG_DEBUG, buf, "");
317 #endif
318             return 1;
319         }
320         else if (cmp == -1)
321         {
322             memcpy (buf, p->buf_l, info->key_size);
323                 *term_index = p->term_index_l;
324             p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l,
325                                    &p->term_index_l);
326             p->tail = 1;
327 #if RSET_DEBUG
328             logf (LOG_DEBUG, "r_read_and [%p] returning L m=%d/%d c=%d",
329                     rfd, p->more_l, p->more_r, cmp);
330             (*info->log_item)(LOG_DEBUG, buf, "");
331 #endif
332             return 1;
333         }
334         else if (cmp > 1)  /* cmp == 2 */
335         {
336 #define OLDCODE 0
337 #if OLDCODE
338             memcpy (buf, p->buf_r, info->key_size);
339             *term_index = p->term_index_r + info->term_index_s;
340             
341             p->more_r = rset_read (info->rset_r, p->rfd_r, p->buf_r,
342                                    &p->term_index_r);
343             if (p->tail)
344             {
345                 if (!p->more_r || (*info->cmp)(p->buf_r, buf) > 1)
346                     p->tail = 0;
347 #if RSET_DEBUG
348                 logf (LOG_DEBUG, "r_read_and returning C m=%d/%d c=%d",
349                         p->more_l, p->more_r, cmp);
350                 (*info->log_item)(LOG_DEBUG, buf, "");
351 #endif
352                 return 1;
353             }
354 #else
355             
356             if (p->tail)
357             {
358                 memcpy (buf, p->buf_r, info->key_size);
359                 *term_index = p->term_index_r + info->term_index_s;
360                 p->more_r = rset_read (info->rset_r, p->rfd_r, p->buf_r,
361                                    &p->term_index_r);
362                 if (!p->more_r || (*info->cmp)(p->buf_r, buf) > 1)
363                     p->tail = 0;
364 #if RSET_DEBUG
365                 logf (LOG_DEBUG, "r_read_and [%p] returning R tail m=%d/%d c=%d",
366                         rfd, p->more_l, p->more_r, cmp);
367                 (*info->log_item)(LOG_DEBUG, buf, "");
368 #endif
369                 return 1;
370             }
371             else
372             {
373 #if RSET_DEBUG
374                 logf (LOG_DEBUG, "r_read_and [%p] about to forward R m=%d/%d c=%d",
375                         rfd, p->more_l, p->more_r, cmp);
376 #endif
377                 if (p->more_r && p->more_l)
378                     p->more_r = rset_forward( 
379                                     info->rset_r, p->rfd_r, 
380                                     p->buf_r, &p->term_index_r, 
381                                     (info->cmp), p->buf_l);
382                 else 
383                     return 0; /* no point in reading further */
384             }
385 #endif
386         }
387         else  /* cmp == -2 */
388         {
389 #if OLDCODE
390              memcpy (buf, p->buf_l, info->key_size);
391              *term_index = p->term_index_l;
392              p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l,
393                                     &p->term_index_l);
394              if (p->tail)
395              {
396                  if (!p->more_l || (*info->cmp)(p->buf_l, buf) > 1)
397                      p->tail = 0;
398 #if RSET_DEBUG
399                  logf (LOG_DEBUG, "r_read_and [%p] returning R tail m=%d/%d c=%d",
400                         rfd, p->more_l, p->more_r, cmp);
401                  (*info->log_item)(LOG_DEBUG, buf, "");
402 #endif
403                  return 1;
404              }
405 #else
406             if (p->tail)
407             {
408                 memcpy (buf, p->buf_l, info->key_size);
409                     *term_index = p->term_index_l;
410                 p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l,
411                                    &p->term_index_l);
412                 if (!p->more_l || (*info->cmp)(p->buf_l, buf) > 1)
413                     p->tail = 0;
414 #if RSET_DEBUG
415                 logf (LOG_DEBUG, "r_read_and [%p] returning L tail m=%d/%d c=%d",
416                         rfd, p->more_l, p->more_r, cmp);
417                 (*info->log_item)(LOG_DEBUG, buf, "");
418 #endif
419                 return 1;
420             }
421             else
422             {
423 #if RSET_DEBUG
424                 logf (LOG_DEBUG, "r_read_and [%p] about to forward L m=%d/%d c=%d",
425                         rfd, p->more_l, p->more_r, cmp);
426 #endif
427                 if (p->more_r && p->more_l)
428                     p->more_l = rset_forward( 
429                     /* p->more_l = rset_default_forward( */
430                                     info->rset_l, p->rfd_l, 
431                                     p->buf_l, &p->term_index_l, 
432                                     (info->cmp), p->buf_r);
433                 else 
434                     return 0; /* no point in reading further */
435             }
436 #endif
437         }
438     }
439 #if RSET_DEBUG
440     logf (LOG_DEBUG, "r_read_and [%p] reached its end",rfd);
441 #endif
442     return 0;
443 }
444
445 static int r_read_or (RSFD rfd, void *buf, int *term_index)
446 {
447     struct rset_bool_rfd *p = (struct rset_bool_rfd *) rfd;
448     struct rset_bool_info *info = p->info;
449
450     while (p->more_l || p->more_r)
451     {
452         int cmp;
453
454         if (p->more_l && p->more_r)
455             cmp = (*info->cmp)(p->buf_l, p->buf_r);
456         else if (p->more_r)
457             cmp = 2;
458         else
459             cmp = -2;
460         if (!cmp)
461         {
462             memcpy (buf, p->buf_l, info->key_size);
463                 *term_index = p->term_index_l;
464             p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l,
465                                    &p->term_index_l);
466             p->more_r = rset_read (info->rset_r, p->rfd_r, p->buf_r,
467                                    &p->term_index_r);
468 #if RSET_DEBUG
469             logf (LOG_DEBUG, "r_read_or returning A m=%d/%d c=%d",
470                     p->more_l, p->more_r, cmp);
471             (*info->log_item)(LOG_DEBUG, buf, "");
472 #endif
473             return 1;
474         }
475         else if (cmp > 0)
476         {
477             memcpy (buf, p->buf_r, info->key_size);
478                 *term_index = p->term_index_r + info->term_index_s;
479             p->more_r = rset_read (info->rset_r, p->rfd_r, p->buf_r,
480                                    &p->term_index_r);
481 #if RSET_DEBUG
482             logf (LOG_DEBUG, "r_read_or returning B m=%d/%d c=%d",
483                     p->more_l, p->more_r, cmp);
484             (*info->log_item)(LOG_DEBUG, buf, "");
485 #endif
486             return 1;
487         }
488         else
489         {
490             memcpy (buf, p->buf_l, info->key_size);
491                 *term_index = p->term_index_l;
492             p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l,
493                                    &p->term_index_l);
494 #if RSET_DEBUG
495             logf (LOG_DEBUG, "r_read_or returning C m=%d/%d c=%d",
496                     p->more_l, p->more_r, cmp);
497             (*info->log_item)(LOG_DEBUG, buf, "");
498 #endif
499             return 1;
500         }
501     }
502     return 0;
503 }
504
505 static int r_read_not (RSFD rfd, void *buf, int *term_index)
506 {
507     struct rset_bool_rfd *p = (struct rset_bool_rfd *) rfd;
508     struct rset_bool_info *info = p->info;
509
510     while (p->more_l || p->more_r)
511     {
512         int cmp;
513
514         if (p->more_l && p->more_r)
515             cmp = (*info->cmp)(p->buf_l, p->buf_r);
516         else if (p->more_r)
517             cmp = 2;
518         else
519             cmp = -2;
520         if (cmp < -1)
521         {
522             memcpy (buf, p->buf_l, info->key_size);
523                 *term_index = p->term_index_l;
524             p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l,
525                                    &p->term_index_l);
526             return 1;
527         }
528         else if (cmp > 1)
529         {
530 #if 0
531             p->more_r = rset_read (info->rset_r, p->rfd_r, p->buf_r,
532                                    &p->term_index_r);
533 #else
534             p->more_r = rset_forward( 
535                 info->rset_r, p->rfd_r, 
536                 p->buf_r, &p->term_index_r, 
537                 (info->cmp), p->buf_l);
538 #endif
539         }
540         else
541         {
542             memcpy (buf, p->buf_l, info->key_size);
543             do
544             { 
545                 p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l,
546                                        &p->term_index_l);
547                 if (!p->more_l)
548                     break;
549                 cmp = (*info->cmp)(p->buf_l, buf);
550             } while (cmp >= -1 && cmp <= 1);
551             do
552             {
553                 p->more_r = rset_read (info->rset_r, p->rfd_r, p->buf_r,
554                                        &p->term_index_r);
555                 if (!p->more_r)
556                     break;
557                 cmp = (*info->cmp)(p->buf_r, buf);
558             } while (cmp >= -1 && cmp <= 1);
559         }
560     }
561     return 0;
562 }
563
564
565 static int r_write (RSFD rfd, const void *buf)
566 {
567     logf (LOG_FATAL, "bool set type is read-only");
568     return -1;
569 }
570