Initialize local to prevent gcc -O warning
[idzebra-moved-to-github.git] / rset / rsbool.c
1 /* $Id: rsbool.c,v 1.30 2004-06-16 20:32:07 adam 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 <rsbool.h>
29 #include <zebrautl.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 int r_count (RSET ct);
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     r_count,
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     r_count,
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     r_count,
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 static int r_count (RSET ct)
261 {
262     return 0;
263 }
264
265
266 /*
267     1,1         1,3
268     1,9         2,1
269     1,11        3,1
270     2,9
271
272   1,1     1,1
273   1,3     1,3
274           1,9
275           1,11
276   2,1     2,1
277           2,9
278           3,1
279 */
280
281 static int r_read_and (RSFD rfd, void *buf, int *term_index)
282 {
283     struct rset_bool_rfd *p = (struct rset_bool_rfd *) rfd;
284     struct rset_bool_info *info = p->info;
285
286     while (p->more_l || p->more_r)
287     {
288         int cmp;
289
290         if (p->more_l && p->more_r)
291             cmp = (*info->cmp)(p->buf_l, p->buf_r);
292         else if (p->more_l)
293             cmp = -2;
294         else
295             cmp = 2;
296 #if RSET_DEBUG
297         logf (LOG_DEBUG, "r_read_and [%p] looping: m=%d/%d c=%d t=%d",
298                         rfd, p->more_l, p->more_r, cmp, p->tail);
299         (*info->log_item)(LOG_DEBUG, p->buf_l, "left ");
300         (*info->log_item)(LOG_DEBUG, p->buf_r, "right ");
301 #endif
302         if (!cmp)
303         {
304             memcpy (buf, p->buf_l, info->key_size);
305                 *term_index = p->term_index_l;
306             p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l,
307                                    &p->term_index_l);
308             p->tail = 1;
309         }
310         else if (cmp == 1)
311         {
312             memcpy (buf, p->buf_r, info->key_size);
313                 *term_index = p->term_index_r + info->term_index_s;
314             p->more_r = rset_read (info->rset_r, p->rfd_r, p->buf_r,
315                                    &p->term_index_r);
316             p->tail = 1;
317 #if RSET_DEBUG
318             logf (LOG_DEBUG, "r_read_and [%p] returning R m=%d/%d c=%d",
319                     rfd, p->more_l, p->more_r, cmp);
320             key_logdump(LOG_DEBUG,buf);
321             (*info->log_item)(LOG_DEBUG, buf, "");
322 #endif
323             return 1;
324         }
325         else if (cmp == -1)
326         {
327             memcpy (buf, p->buf_l, info->key_size);
328                 *term_index = p->term_index_l;
329             p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l,
330                                    &p->term_index_l);
331             p->tail = 1;
332 #if RSET_DEBUG
333             logf (LOG_DEBUG, "r_read_and [%p] returning L m=%d/%d c=%d",
334                     rfd, p->more_l, p->more_r, cmp);
335             (*info->log_item)(LOG_DEBUG, buf, "");
336 #endif
337             return 1;
338         }
339         else if (cmp > 1)  /* cmp == 2 */
340         {
341 #define OLDCODE 0
342 #if OLDCODE
343             memcpy (buf, p->buf_r, info->key_size);
344             *term_index = p->term_index_r + info->term_index_s;
345             
346             p->more_r = rset_read (info->rset_r, p->rfd_r, p->buf_r,
347                                    &p->term_index_r);
348             if (p->tail)
349             {
350                 if (!p->more_r || (*info->cmp)(p->buf_r, buf) > 1)
351                     p->tail = 0;
352 #if RSET_DEBUG
353                 logf (LOG_DEBUG, "r_read_and returning C m=%d/%d c=%d",
354                         p->more_l, p->more_r, cmp);
355                 (*info->log_item)(LOG_DEBUG, buf, "");
356 #endif
357                 return 1;
358             }
359 #else
360             
361             if (p->tail)
362             {
363                 memcpy (buf, p->buf_r, info->key_size);
364                 *term_index = p->term_index_r + info->term_index_s;
365                 p->more_r = rset_read (info->rset_r, p->rfd_r, p->buf_r,
366                                    &p->term_index_r);
367                 if (!p->more_r || (*info->cmp)(p->buf_r, buf) > 1)
368                     p->tail = 0;
369 #if RSET_DEBUG
370                 logf (LOG_DEBUG, "r_read_and [%p] returning R tail m=%d/%d c=%d",
371                         rfd, p->more_l, p->more_r, cmp);
372                 (*info->log_item)(LOG_DEBUG, buf, "");
373 #endif
374                 return 1;
375             }
376             else
377             {
378 #if RSET_DEBUG
379                 logf (LOG_DEBUG, "r_read_and [%p] about to forward R m=%d/%d c=%d",
380                         rfd, p->more_l, p->more_r, cmp);
381 #endif
382                 if (p->more_r && p->more_l)
383                     p->more_r = rset_forward( 
384                                     info->rset_r, p->rfd_r, 
385                                     p->buf_r, &p->term_index_r, 
386                                     (info->cmp), p->buf_l);
387                 else 
388                     return 0; /* no point in reading further */
389             }
390 #endif
391         }
392         else  /* cmp == -2 */
393         {
394 #if OLDCODE
395              memcpy (buf, p->buf_l, info->key_size);
396              *term_index = p->term_index_l;
397              p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l,
398                                     &p->term_index_l);
399              if (p->tail)
400              {
401                  if (!p->more_l || (*info->cmp)(p->buf_l, buf) > 1)
402                      p->tail = 0;
403 #if RSET_DEBUG
404                  logf (LOG_DEBUG, "r_read_and [%p] returning R tail m=%d/%d c=%d",
405                         rfd, p->more_l, p->more_r, cmp);
406                  (*info->log_item)(LOG_DEBUG, buf, "");
407 #endif
408                  return 1;
409              }
410 #else
411             if (p->tail)
412             {
413                 memcpy (buf, p->buf_l, info->key_size);
414                     *term_index = p->term_index_l;
415                 p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l,
416                                    &p->term_index_l);
417                 if (!p->more_l || (*info->cmp)(p->buf_l, buf) > 1)
418                     p->tail = 0;
419 #if RSET_DEBUG
420                 logf (LOG_DEBUG, "r_read_and [%p] returning L tail m=%d/%d c=%d",
421                         rfd, p->more_l, p->more_r, cmp);
422                 (*info->log_item)(LOG_DEBUG, buf, "");
423 #endif
424                 return 1;
425             }
426             else
427             {
428 #if RSET_DEBUG
429                 logf (LOG_DEBUG, "r_read_and [%p] about to forward L m=%d/%d c=%d",
430                         rfd, p->more_l, p->more_r, cmp);
431 #endif
432                 if (p->more_r && p->more_l)
433                     p->more_l = rset_forward( 
434                     /* p->more_l = rset_default_forward( */
435                                     info->rset_l, p->rfd_l, 
436                                     p->buf_l, &p->term_index_l, 
437                                     (info->cmp), p->buf_r);
438                 else 
439                     return 0; /* no point in reading further */
440             }
441 #endif
442         }
443     }
444 #if RSET_DEBUG
445     logf (LOG_DEBUG, "r_read_and [%p] reached its end",rfd);
446 #endif
447     return 0;
448 }
449
450 static int r_read_or (RSFD rfd, void *buf, int *term_index)
451 {
452     struct rset_bool_rfd *p = (struct rset_bool_rfd *) rfd;
453     struct rset_bool_info *info = p->info;
454
455     while (p->more_l || p->more_r)
456     {
457         int cmp;
458
459         if (p->more_l && p->more_r)
460             cmp = (*info->cmp)(p->buf_l, p->buf_r);
461         else if (p->more_r)
462             cmp = 2;
463         else
464             cmp = -2;
465         if (!cmp)
466         {
467             memcpy (buf, p->buf_l, info->key_size);
468                 *term_index = p->term_index_l;
469             p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l,
470                                    &p->term_index_l);
471             p->more_r = rset_read (info->rset_r, p->rfd_r, p->buf_r,
472                                    &p->term_index_r);
473 #if RSET_DEBUG
474             logf (LOG_DEBUG, "r_read_or returning A m=%d/%d c=%d",
475                     p->more_l, p->more_r, cmp);
476             (*info->log_item)(LOG_DEBUG, buf, "");
477 #endif
478             return 1;
479         }
480         else if (cmp > 0)
481         {
482             memcpy (buf, p->buf_r, info->key_size);
483                 *term_index = p->term_index_r + info->term_index_s;
484             p->more_r = rset_read (info->rset_r, p->rfd_r, p->buf_r,
485                                    &p->term_index_r);
486 #if RSET_DEBUG
487             logf (LOG_DEBUG, "r_read_or returning B m=%d/%d c=%d",
488                     p->more_l, p->more_r, cmp);
489             (*info->log_item)(LOG_DEBUG, buf, "");
490 #endif
491             return 1;
492         }
493         else
494         {
495             memcpy (buf, p->buf_l, info->key_size);
496                 *term_index = p->term_index_l;
497             p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l,
498                                    &p->term_index_l);
499 #if RSET_DEBUG
500             logf (LOG_DEBUG, "r_read_or returning C m=%d/%d c=%d",
501                     p->more_l, p->more_r, cmp);
502             (*info->log_item)(LOG_DEBUG, buf, "");
503 #endif
504             return 1;
505         }
506     }
507     return 0;
508 }
509
510 static int r_read_not (RSFD rfd, void *buf, int *term_index)
511 {
512     struct rset_bool_rfd *p = (struct rset_bool_rfd *) rfd;
513     struct rset_bool_info *info = p->info;
514
515     while (p->more_l || p->more_r)
516     {
517         int cmp;
518
519         if (p->more_l && p->more_r)
520             cmp = (*info->cmp)(p->buf_l, p->buf_r);
521         else if (p->more_r)
522             cmp = 2;
523         else
524             cmp = -2;
525         if (cmp < -1)
526         {
527             memcpy (buf, p->buf_l, info->key_size);
528                 *term_index = p->term_index_l;
529             p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l,
530                                    &p->term_index_l);
531             return 1;
532         }
533         else if (cmp > 1)
534         {
535 #if 0
536             p->more_r = rset_read (info->rset_r, p->rfd_r, p->buf_r,
537                                    &p->term_index_r);
538 #else
539             p->more_r = rset_forward( 
540                 info->rset_r, p->rfd_r, 
541                 p->buf_r, &p->term_index_r, 
542                 (info->cmp), p->buf_l);
543 #endif
544         }
545         else
546         {
547             memcpy (buf, p->buf_l, info->key_size);
548             do
549             { 
550                 p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l,
551                                        &p->term_index_l);
552                 if (!p->more_l)
553                     break;
554                 cmp = (*info->cmp)(p->buf_l, buf);
555             } while (cmp >= -1 && cmp <= 1);
556             do
557             {
558                 p->more_r = rset_read (info->rset_r, p->rfd_r, p->buf_r,
559                                        &p->term_index_r);
560                 if (!p->more_r)
561                     break;
562                 cmp = (*info->cmp)(p->buf_r, buf);
563             } while (cmp >= -1 && cmp <= 1);
564         }
565     }
566     return 0;
567 }
568
569
570 static int r_write (RSFD rfd, const void *buf)
571 {
572     logf (LOG_FATAL, "bool set type is read-only");
573     return -1;
574 }
575