Fixed a problem with end-of-stream handling.
[idzebra-moved-to-github.git] / rset / rsbetween.c
1 /* $Id: rsbetween.c,v 1.8 2002-11-11 15:05:29 heikki Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002
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
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <assert.h>
29
30 #include <rsbetween.h>
31 #include <zebrautl.h>
32
33 static void *r_create_between(RSET ct, const struct rset_control *sel, void *parms);
34 static RSFD r_open_between (RSET ct, int flag);
35 static void r_close_between (RSFD rfd);
36 static void r_delete_between (RSET ct);
37 static void r_rewind_between (RSFD rfd);
38 static int r_count_between (RSET ct);
39 static int r_read_between (RSFD rfd, void *buf, int *term_index);
40 static int r_write_between (RSFD rfd, const void *buf);
41
42 static const struct rset_control control_between = 
43 {
44     "between",
45     r_create_between,
46     r_open_between,
47     r_close_between,
48     r_delete_between,
49     r_rewind_between,
50     r_count_between,
51     r_read_between,
52     r_write_between,
53 };
54
55
56 const struct rset_control *rset_kind_between = &control_between;
57
58 struct rset_between_info {
59     int key_size;
60     RSET rset_l;
61     RSET rset_m;
62     RSET rset_r;
63     RSET rset_attr;
64     int term_index_s;
65     int (*cmp)(const void *p1, const void *p2);
66     char *(*printer)(const void *p1, char *buf);
67     struct rset_between_rfd *rfd_list;
68 };
69
70 struct rset_between_rfd {
71     RSFD rfd_l;
72     RSFD rfd_m;
73     RSFD rfd_r;
74     RSFD rfd_attr;
75     int  more_l;
76     int  more_m;
77     int  more_r;
78     int  more_attr;
79     int term_index_l;
80     int term_index_m;
81     int term_index_r;
82     void *buf_l;
83     void *buf_m;
84     void *buf_r;
85     void *buf_attr;
86     int level;
87     struct rset_between_rfd *next;
88     struct rset_between_info *info;
89 };    
90
91 static void *r_create_between (RSET ct, const struct rset_control *sel,
92                                void *parms)
93 {
94     rset_between_parms *between_parms = (rset_between_parms *) parms;
95     struct rset_between_info *info;
96
97     info = (struct rset_between_info *) xmalloc (sizeof(*info));
98     info->key_size = between_parms->key_size;
99     info->rset_l = between_parms->rset_l;
100     info->rset_m = between_parms->rset_m;
101     info->rset_r = between_parms->rset_r;
102     info->rset_attr = between_parms->rset_attr;
103     if (rset_is_volatile(info->rset_l) || 
104         rset_is_volatile(info->rset_m) ||
105         rset_is_volatile(info->rset_r))
106         ct->flags |= RSET_FLAG_VOLATILE;
107     info->cmp = between_parms->cmp;
108     info->printer = between_parms->printer;
109     info->rfd_list = NULL;
110     
111     info->term_index_s = info->rset_l->no_rset_terms;
112     if (info->rset_m)
113     {
114         ct->no_rset_terms =
115             info->rset_l->no_rset_terms + 
116             info->rset_m->no_rset_terms + 
117             info->rset_r->no_rset_terms;
118         ct->rset_terms = (RSET_TERM *)
119             xmalloc (sizeof (*ct->rset_terms) * ct->no_rset_terms);
120         memcpy (ct->rset_terms, info->rset_l->rset_terms,
121                 info->rset_l->no_rset_terms * sizeof(*ct->rset_terms));
122         memcpy (ct->rset_terms + info->rset_l->no_rset_terms,
123                 info->rset_m->rset_terms,
124                 info->rset_m->no_rset_terms * sizeof(*ct->rset_terms));
125         memcpy (ct->rset_terms + info->rset_l->no_rset_terms + 
126                 info->rset_m->no_rset_terms,
127                 info->rset_r->rset_terms,
128                 info->rset_r->no_rset_terms * sizeof(*ct->rset_terms));
129     }
130     else
131     {
132         ct->no_rset_terms =
133             info->rset_l->no_rset_terms + 
134             info->rset_r->no_rset_terms;
135         ct->rset_terms = (RSET_TERM *)
136             xmalloc (sizeof (*ct->rset_terms) * ct->no_rset_terms);
137         memcpy (ct->rset_terms, info->rset_l->rset_terms,
138                 info->rset_l->no_rset_terms * sizeof(*ct->rset_terms));
139         memcpy (ct->rset_terms + info->rset_l->no_rset_terms,
140                 info->rset_r->rset_terms,
141                 info->rset_r->no_rset_terms * sizeof(*ct->rset_terms));
142     }
143
144     return info;
145 }
146
147 static RSFD r_open_between (RSET ct, int flag)
148 {
149     struct rset_between_info *info = (struct rset_between_info *) ct->buf;
150     struct rset_between_rfd *rfd;
151
152     if (flag & RSETF_WRITE)
153     {
154         logf (LOG_FATAL, "between set type is read-only");
155         return NULL;
156     }
157     rfd = (struct rset_between_rfd *) xmalloc (sizeof(*rfd));
158     rfd->next = info->rfd_list;
159     info->rfd_list = rfd;
160     rfd->info = info;
161
162     rfd->buf_l = xmalloc (info->key_size);
163     rfd->buf_m = xmalloc (info->key_size);
164     rfd->buf_r = xmalloc (info->key_size);
165     rfd->buf_attr = xmalloc (info->key_size);
166
167     rfd->rfd_l = rset_open (info->rset_l, RSETF_READ);
168     rfd->rfd_m = rset_open (info->rset_m, RSETF_READ);
169     rfd->rfd_r = rset_open (info->rset_r, RSETF_READ);
170     
171     rfd->more_l = rset_read (info->rset_l, rfd->rfd_l, rfd->buf_l,
172                              &rfd->term_index_l);
173     rfd->more_m = rset_read (info->rset_m, rfd->rfd_m, rfd->buf_m,
174                              &rfd->term_index_m);
175     rfd->more_r = rset_read (info->rset_r, rfd->rfd_r, rfd->buf_r,
176                              &rfd->term_index_r);
177     if (info->rset_attr)
178     {
179         int dummy;
180         rfd->rfd_attr = rset_open (info->rset_attr, RSETF_READ);
181         rfd->more_attr = rset_read (info->rset_attr, rfd->rfd_attr,
182                                     rfd->buf_attr, &dummy);
183     }
184     rfd->level=0;
185     return rfd;
186 }
187
188 static void r_close_between (RSFD rfd)
189 {
190     struct rset_between_info *info = ((struct rset_between_rfd*)rfd)->info;
191     struct rset_between_rfd **rfdp;
192     
193     for (rfdp = &info->rfd_list; *rfdp; rfdp = &(*rfdp)->next)
194         if (*rfdp == rfd)
195         {
196             xfree ((*rfdp)->buf_l);
197             xfree ((*rfdp)->buf_m);
198             xfree ((*rfdp)->buf_r);
199             xfree ((*rfdp)->buf_attr);
200             rset_close (info->rset_l, (*rfdp)->rfd_l);
201             rset_close (info->rset_m, (*rfdp)->rfd_m);
202             rset_close (info->rset_r, (*rfdp)->rfd_r);
203             if (info->rset_attr)
204                 rset_close (info->rset_attr, (*rfdp)->rfd_attr);
205             
206             *rfdp = (*rfdp)->next;
207             xfree (rfd);
208             return;
209         }
210     logf (LOG_FATAL, "r_close_between but no rfd match!");
211     assert (0);
212 }
213
214 static void r_delete_between (RSET ct)
215 {
216     struct rset_between_info *info = (struct rset_between_info *) ct->buf;
217
218     assert (info->rfd_list == NULL);
219     xfree (ct->rset_terms);
220     rset_delete (info->rset_l);
221     rset_delete (info->rset_m);
222     rset_delete (info->rset_r);
223     if (info->rset_attr)
224         rset_delete (info->rset_attr);
225     xfree (info);
226 }
227
228 static void r_rewind_between (RSFD rfd)
229 {
230     struct rset_between_info *info = ((struct rset_between_rfd*)rfd)->info;
231     struct rset_between_rfd *p = (struct rset_between_rfd *) rfd;
232
233     logf (LOG_DEBUG, "rsbetween_rewind");
234     rset_rewind (info->rset_l, p->rfd_l);
235     rset_rewind (info->rset_m, p->rfd_m);
236     rset_rewind (info->rset_r, p->rfd_r);
237     p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l, &p->term_index_l);
238     p->more_m = rset_read (info->rset_m, p->rfd_m, p->buf_m, &p->term_index_m);
239     p->more_r = rset_read (info->rset_r, p->rfd_r, p->buf_r, &p->term_index_r);
240     if (info->rset_attr)
241     {
242         int dummy;
243         rset_rewind (info->rset_attr, p->rfd_attr);
244         p->more_attr = rset_read (info->rset_attr, p->rfd_attr, p->buf_attr,
245                                   &dummy);
246     }
247     p->level=0;
248 }
249
250 static int r_count_between (RSET ct)
251 {
252     return 0;
253 }
254
255
256 static void log2 (struct rset_between_rfd *p, char *msg, int cmp_l, int cmp_r)
257 {
258     char buf_l[32];
259     char buf_m[32];
260     char buf_r[32];
261     logf(LOG_DEBUG,"btw: %s l=%s(%d/%d) m=%s(%d) r=%s(%d/%d), lev=%d",
262       msg, 
263       (*p->info->printer)(p->buf_l, buf_l), p->more_l, cmp_l,
264       (*p->info->printer)(p->buf_m, buf_m), p->more_l,
265       (*p->info->printer)(p->buf_r, buf_r), p->more_l, cmp_r,
266       p->level);
267 }
268
269
270 static int r_read_between (RSFD rfd, void *buf, int *term_index)
271 {
272     struct rset_between_rfd *p = (struct rset_between_rfd *) rfd;
273     struct rset_between_info *info = p->info;
274     int cmp_l=0;
275     int cmp_r=0;
276     int attr_match;
277
278     while (p->more_m)
279     {
280         log2( p, "start of loop", cmp_l, cmp_r);
281
282         /* forward L until past m, count levels, note rec boundaries */
283         if (p->more_l)
284             cmp_l= (*info->cmp)(p->buf_l, p->buf_m);
285         else
286             cmp_l=2; /* past this record */
287         log2( p, "after first L", cmp_l, cmp_r);
288
289         while (cmp_l < 0)   /* l before m */
290         {
291             if (cmp_l == -2)
292                 p->level=0; /* earlier record */
293             if (cmp_l == -1)
294             {
295                 p->level++; /* relevant start tag */
296
297                 if (!info->rset_attr)
298                     attr_match = 1;
299                 else
300                 {
301                     int cmp_attr;
302                     int dummy_term;
303                     attr_match = 0;
304                     while (p->more_attr)
305                     {
306                         cmp_attr = (*info->cmp)(p->buf_attr, p->buf_l);
307                         if (cmp_attr == 0)
308                         {
309                             attr_match = 1;
310                             break;
311                         }
312                         else if (cmp_attr > 0)
313                             break;
314                         p->more_attr = rset_read (info->rset_attr, p->rfd_attr,
315                                                   p->buf_attr, &dummy_term);
316                     }
317                 }
318             }
319             p->more_l = rset_read (info->rset_l, p->rfd_l, p->buf_l,
320                            &p->term_index_l);
321             if (p->more_l)
322             {
323                 cmp_l= (*info->cmp)(p->buf_l, p->buf_m);
324             }
325             else
326                 cmp_l=2; 
327         log2( p, "end of L loop", cmp_l, cmp_r);
328         } /* forward L */
329
330             
331         /* forward R until past m, count levels */
332         log2( p, "Before moving R", cmp_l, cmp_r);
333         if (p->more_r)
334             cmp_r= (*info->cmp)(p->buf_r, p->buf_m);
335         else
336             cmp_r=2; 
337         log2( p, "after first R", cmp_l, cmp_r);
338         while (cmp_r < 0)   /* r before m */
339         {
340             /* -2, earlier record, doesn't matter */
341             if (cmp_r == -1)
342                 p->level--; /* relevant end tag */
343             if (p->more_r)
344             {
345                 p->more_r = rset_read (info->rset_r, p->rfd_r, p->buf_r,
346                                    &p->term_index_r);
347                 cmp_r= (*info->cmp)(p->buf_r, p->buf_m);
348             }
349             else
350                 cmp_r=2; 
351         log2( p, "End of R loop", cmp_l, cmp_r);
352         } /* forward R */
353         
354         if ( ( p->level <= 0 ) && ! p->more_l)
355             return 0; /* no more start tags, nothing more to find */
356         
357         if ( attr_match && p->level > 0)  /* within a tag pair (or deeper) */
358         {
359             memcpy (buf, p->buf_m, info->key_size);
360             *term_index = p->term_index_m;
361             log2( p, "Returning a hit (and forwarding m)", cmp_l, cmp_r);
362             p->more_m = rset_read (info->rset_m, p->rfd_m, p->buf_m,
363                                    &p->term_index_m);
364             return 1;
365         }
366         else
367             if ( ! p->more_l )  /* not in data, no more starts */
368             {
369                 log2( p, "no more starts, exiting without a hit", cmp_l, cmp_r);
370                 return 0;  /* ergo, nothing can be found. stop scanning */
371             }
372         
373         p->more_m = rset_read (info->rset_m, p->rfd_m, p->buf_m,
374                                &p->term_index_m);
375         log2( p, "End of M loop", cmp_l, cmp_r);
376     } /* while more_m */
377     
378     log2( p, "Exiting, nothing more in m", cmp_l, cmp_r);
379     return 0;  /* no more data possible */
380
381
382 }  /* r_read */
383
384
385 static int r_write_between (RSFD rfd, const void *buf)
386 {
387     logf (LOG_FATAL, "between set type is read-only");
388     return -1;
389 }
390