1 /* $Id: rsprox.c,v 1.3 2004-06-16 21:27:37 adam 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
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 (RSFD rfd, void *buf, int *term_index);
45 static int r_write (RSFD rfd, const void *buf);
47 static const struct rset_control control_prox =
61 const struct rset_control *rset_kind_prox = &control_prox;
63 struct rset_prox_info {
64 struct rset_prox_parms p;
66 struct rset_prox_rfd *rfd_list;
69 struct rset_prox_rfd {
71 char **buf; /* lookahead key buffers */
72 char *more; /* more in each lookahead? */
73 struct rset_prox_rfd *next;
74 struct rset_prox_info *info;
77 static void *r_create (RSET ct, const struct rset_control *sel, void *parms)
79 rset_prox_parms *prox_parms = (rset_prox_parms *) parms;
80 struct rset_prox_info *info;
83 int length_prox_term = 0;
84 int min_nn = 10000000;
85 const char *flags = NULL;
89 info = (struct rset_prox_info *) xmalloc (sizeof(*info));
90 memcpy(&info->p, prox_parms, sizeof(struct rset_prox_parms));
91 assert(info->p.rset_no >= 2);
92 info->p.rset = xmalloc(info->p.rset_no * sizeof(*info->p.rset));
93 memcpy(info->p.rset, prox_parms->rset,
94 info->p.rset_no * sizeof(*info->p.rset));
95 info->rfd_list = NULL;
97 for (i = 0; i<info->p.rset_no; i++)
98 if (rset_is_volatile(info->p.rset[i]))
99 ct->flags |= RSET_FLAG_VOLATILE;
102 for (i = 0; i<info->p.rset_no; i++)
105 for (j = 0; j < info->p.rset[i]->no_rset_terms; j++)
107 const char *nflags = info->p.rset[i]->rset_terms[j]->flags;
108 char *term = info->p.rset[i]->rset_terms[j]->name;
109 int lterm = strlen(term);
110 if (lterm + length_prox_term < sizeof(prox_term)-1)
112 if (length_prox_term)
113 prox_term[length_prox_term++] = ' ';
114 strcpy (prox_term + length_prox_term, term);
115 length_prox_term += lterm;
117 if (min_nn > info->p.rset[i]->rset_terms[j]->nn)
118 min_nn = info->p.rset[i]->rset_terms[j]->nn;
120 term_type = info->p.rset[i]->rset_terms[j]->type;
124 ct->no_rset_terms = 1;
125 ct->rset_terms = (RSET_TERM *)
126 xmalloc (sizeof (*ct->rset_terms) * ct->no_rset_terms);
128 ct->rset_terms[0] = rset_term_create (prox_term, length_prox_term,
133 static RSFD r_open (RSET ct, int flag)
135 struct rset_prox_info *info = (struct rset_prox_info *) ct->buf;
136 struct rset_prox_rfd *rfd;
139 if (flag & RSETF_WRITE)
141 logf (LOG_FATAL, "prox set type is read-only");
144 rfd = (struct rset_prox_rfd *) xmalloc (sizeof(*rfd));
145 logf(LOG_DEBUG,"rsprox (%s) open [%p]", ct->control->desc, rfd);
146 rfd->next = info->rfd_list;
147 info->rfd_list = rfd;
150 rfd->more = xmalloc (sizeof(*rfd->more) * info->p.rset_no);
152 rfd->buf = xmalloc(sizeof(*rfd->buf) * info->p.rset_no);
153 for (i = 0; i < info->p.rset_no; i++)
154 rfd->buf[i] = xmalloc (info->p.key_size);
156 rfd->rfd = xmalloc(sizeof(*rfd->rfd) * info->p.rset_no);
157 for (i = 0; i < info->p.rset_no; i++)
158 rfd->rfd[i] = rset_open (info->p.rset[i], RSETF_READ);
160 for (i = 0; i < info->p.rset_no; i++)
161 rfd->more[i] = rset_read (info->p.rset[i], rfd->rfd[i],
162 rfd->buf[i], &dummy);
166 static void r_close (RSFD rfd)
168 struct rset_prox_info *info = ((struct rset_prox_rfd*)rfd)->info;
169 struct rset_prox_rfd **rfdp;
171 for (rfdp = &info->rfd_list; *rfdp; rfdp = &(*rfdp)->next)
175 for (i = 0; i<info->p.rset_no; i++)
176 xfree ((*rfdp)->buf[i]);
177 xfree ((*rfdp)->buf);
178 xfree ((*rfdp)->more);
180 for (i = 0; i<info->p.rset_no; i++)
181 rset_close (info->p.rset[i], (*rfdp)->rfd[i]);
182 xfree ((*rfdp)->rfd);
184 *rfdp = (*rfdp)->next;
188 logf (LOG_FATAL, "r_close but no rfd match!");
192 static void r_delete (RSET ct)
194 struct rset_prox_info *info = (struct rset_prox_info *) ct->buf;
197 assert (info->rfd_list == NULL);
198 rset_term_destroy(ct->rset_terms[0]);
199 xfree (ct->rset_terms);
200 for (i = 0; i<info->p.rset_no; i++)
201 rset_delete (info->p.rset[i]);
202 xfree (info->p.rset);
206 static void r_rewind (RSFD rfd)
208 struct rset_prox_info *info = ((struct rset_prox_rfd*)rfd)->info;
209 struct rset_prox_rfd *p = (struct rset_prox_rfd *) rfd;
212 logf (LOG_DEBUG, "rsprox_rewind");
214 for (i = 0; i < info->p.rset_no; i++)
216 rset_rewind (info->p.rset[i], p->rfd[i]);
217 p->more[i] = rset_read (info->p.rset[i], p->rfd[i], p->buf[i], &dummy);
221 static int r_forward (RSET ct, RSFD rfd, void *buf, int *term_index,
222 int (*cmpfunc)(const void *p1, const void *p2),
223 const void *untilbuf)
225 /* Note: CT is not used. We _can_ pass NULL for it */
226 struct rset_prox_info *info = ((struct rset_prox_rfd*)rfd)->info;
227 struct rset_prox_rfd *p = (struct rset_prox_rfd *) rfd;
234 /* it's enough to forward first one. Other will follow
236 if ( p->more[0] && ((cmpfunc)(untilbuf, p->buf[0]) >= 2) )
237 p->more[0] = rset_forward(info->p.rset[0], p->rfd[0],
238 p->buf[0], &dummy, info->p.cmp,
241 if (info->p.ordered && info->p.relation == 3 && info->p.exclusion == 0
242 && info->p.distance == 1)
246 for (i = 1; i < info->p.rset_no; i++)
250 p->more[0] = 0; /* saves us a goto out of while loop. */
253 cmp = (*info->p.cmp) (p->buf[i], p->buf[i-1]);
256 p->more[i-1] = rset_forward (info->p.rset[i-1],
265 if ((*info->p.getseq)(p->buf[i-1]) +1 !=
266 (*info->p.getseq)(p->buf[i]))
268 p->more[i-1] = rset_read (
269 info->p.rset[i-1], p->rfd[i-1],
270 p->buf[i-1], &dummy);
276 p->more[i] = rset_forward (info->p.rset[i], p->rfd[i],
283 if (i == p->info->p.rset_no)
285 memcpy (buf, p->buf[0], info->p.key_size);
288 p->more[0] = rset_read (info->p.rset[0], p->rfd[0],
294 else if (info->p.rset_no == 2)
296 while (p->more[0] && p->more[1])
298 int cmp = (*info->p.cmp)(p->buf[0], p->buf[1]);
300 p->more[0] = rset_forward (info->p.rset[0], p->rfd[0],
302 term_index, info->p.cmp, p->buf[0]);
304 p->more[1] = rset_forward (info->p.rset[1], p->rfd[1],
306 term_index, info->p.cmp, p->buf[1]);
312 seqno[n++] = (*info->p.getseq)(p->buf[0]);
313 while ((p->more[0] = rset_read (info->p.rset[0], p->rfd[0],
315 term_index)) >= -1 &&
318 seqno[n++] = (*info->p.getseq)(p->buf[0]);
320 for (i = 0; i<n; i++)
322 int diff = (*info->p.getseq)(p->buf[1]) - seqno[i];
323 int excl = info->p.exclusion;
324 if (!info->p.ordered && diff < 0)
326 switch (info->p.relation)
329 if (diff < info->p.distance && diff >= 0)
333 if (diff <= info->p.distance && diff >= 0)
337 if (diff == info->p.distance && diff >= 0)
341 if (diff >= info->p.distance && diff >= 0)
345 if (diff > info->p.distance && diff >= 0)
349 if (diff != info->p.distance && diff >= 0)
355 memcpy (buf, p->buf[1], info->p.key_size);
358 p->more[1] = rset_read (info->p.rset[1],
359 p->rfd[1], p->buf[1],
364 p->more[1] = rset_read (info->p.rset[1], p->rfd[1],
373 static int r_count (RSET ct)
378 static int r_read (RSFD rfd, void *buf, int *term_index)
380 return r_forward(0, rfd, buf, term_index, 0, 0);
383 static int r_write (RSFD rfd, const void *buf)
385 logf (LOG_FATAL, "prox set type is read-only");