1 /* This file is part of the Zebra server.
2 Copyright (C) 1994-2011 Index Data
4 Zebra is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
9 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 #include <idzebra/util.h>
32 static RSFD r_open(RSET ct, int flag);
33 static void r_close(RSFD rfd);
34 static void r_delete(RSET ct);
35 static int r_forward(RSFD rfd, void *buf, TERMID *term, const void *untilbuf);
36 static int r_read(RSFD rfd, void *buf, TERMID *term);
37 static int r_write(RSFD rfd, const void *buf);
38 static void r_pos(RSFD rfd, double *current, double *total);
39 static void r_get_terms(RSET ct, TERMID *terms, int maxterms, int *curterm);
41 static const struct rset_control control =
54 struct rset_prox_info {
61 struct rset_prox_rfd {
63 char **buf; /* lookahead key buffers */
64 char *more; /* more in each lookahead? */
65 TERMID *terms; /* lookahead terms */
70 RSET rset_create_prox(NMEM nmem, struct rset_key_control *kcontrol,
72 int rset_no, RSET *rset,
73 int ordered, int exclusion,
74 int relation, int distance)
76 RSET rnew = rset_create_base(&control, nmem, kcontrol, scope, 0,
78 struct rset_prox_info *info;
79 info = (struct rset_prox_info *) nmem_malloc(rnew->nmem,sizeof(*info));
80 info->ordered = ordered;
81 info->exclusion = exclusion;
82 info->relation = relation;
83 info->distance = distance;
88 static void r_delete(RSET ct)
92 static RSFD r_open(RSET ct, int flag)
95 struct rset_prox_rfd *p;
98 if (flag & RSETF_WRITE)
100 yaz_log(YLOG_FATAL, "prox set type is read-only");
103 rfd = rfd_create_base(ct);
105 p = (struct rset_prox_rfd *)(rfd->priv);
108 p = (struct rset_prox_rfd *) nmem_malloc(ct->nmem,sizeof(*p));
110 p->more = nmem_malloc(ct->nmem,sizeof(*p->more) * ct->no_children);
111 p->buf = nmem_malloc(ct->nmem,sizeof(*p->buf) * ct->no_children);
112 p->terms = nmem_malloc(ct->nmem,sizeof(*p->terms) * ct->no_children);
113 for (i = 0; i < ct->no_children; i++)
115 p->buf[i] = nmem_malloc(ct->nmem,ct->keycontrol->key_size);
118 p->rfd = nmem_malloc(ct->nmem,sizeof(*p->rfd) * ct->no_children);
120 yaz_log(YLOG_DEBUG,"rsprox (%s) open [%p] n=%d",
121 ct->control->desc, rfd, ct->no_children);
123 for (i = 0; i < ct->no_children; i++)
125 p->rfd[i] = rset_open(ct->children[i], RSETF_READ);
126 p->more[i] = rset_read(p->rfd[i], p->buf[i], &p->terms[i]);
132 static void r_close(RSFD rfd)
135 struct rset_prox_rfd *p = (struct rset_prox_rfd *)(rfd->priv);
138 for (i = 0; i < ct->no_children; i++)
139 rset_close(p->rfd[i]);
142 static int r_forward(RSFD rfd, void *buf, TERMID *term, const void *untilbuf)
145 struct rset_prox_info *info = (struct rset_prox_info *)(ct->priv);
146 struct rset_prox_rfd *p = (struct rset_prox_rfd *)(rfd->priv);
147 const struct rset_key_control *kctrl = ct->keycontrol;
153 /* it is enough to forward first one. Other will follow. */
154 if (p->more[0] && /* was: cmp >=2 */
155 ((kctrl->cmp)(untilbuf, p->buf[0]) >= rfd->rset->scope) )
156 p->more[0] = rset_forward(p->rfd[0], p->buf[0],
157 &p->terms[0], untilbuf);
159 if (info->ordered && info->relation <= 3 && info->exclusion == 0)
163 for (i = 1; i < ct->no_children; i++)
167 p->more[0] = 0; /* saves us a goto out of while loop. */
170 cmp = (*kctrl->cmp)(p->buf[i], p->buf[i-1]);
171 if (cmp >= rfd->rset->scope) /* not same record */
173 p->more[i-1] = rset_forward(p->rfd[i-1],
179 else if (cmp > 0) /* within record and ordered */
181 zint diff = (*kctrl->getseq)(p->buf[i]) -
182 (*kctrl->getseq)(p->buf[i-1]);
183 if (info->relation == 3 && diff == info->distance)
185 else if (info->relation == 2 && diff <= info->distance)
187 else if (info->relation == 1 && diff < info->distance)
190 p->more[i-1] = rset_read(p->rfd[i-1], p->buf[i-1],
194 else /* within record - wrong order */
196 p->more[i] = rset_forward(p->rfd[i], p->buf[i],
197 &p->terms[i], p->buf[i-1]);
201 if (i == ct->no_children)
203 i = ct->no_children-1;
204 memcpy(buf, p->buf[i], kctrl->key_size);
207 p->more[i] = rset_read(p->rfd[i], p->buf[i], &p->terms[i]);
213 else if (ct->no_children == 2)
215 while (p->more[0] && p->more[1])
217 int cmp = (*kctrl->cmp)(p->buf[0], p->buf[1]);
218 if ( cmp <= - rfd->rset->scope) /* cmp<-1*/
219 p->more[0] = rset_forward(p->rfd[0], p->buf[0],
220 &p->terms[0],p->buf[1]);
221 else if ( cmp >= rfd->rset->scope ) /* cmp>1 */
222 p->more[1] = rset_forward(p->rfd[1], p->buf[1],
223 &p->terms[1],p->buf[0]);
226 zint seqno[500]; /* FIXME - why 500 ?? */
229 seqno[n++] = (*kctrl->getseq)(p->buf[0]);
230 while ((p->more[0] = rset_read(p->rfd[0],
231 p->buf[0], &p->terms[0])))
233 cmp = (*kctrl->cmp)(p->buf[0], p->buf[1]);
234 if (cmp <= - rfd->rset->scope || cmp >= rfd->rset->scope)
237 seqno[n++] = (*kctrl->getseq)(p->buf[0]);
239 /* set up return buffer.. (save buf[1]) */
240 memcpy(buf, p->buf[1], kctrl->key_size);
245 for (i = 0; i < n; i++)
247 zint diff = (*kctrl->getseq)(p->buf[1]) - seqno[i];
248 int excl = info->exclusion;
249 if (!info->ordered && diff < 0)
251 switch (info->relation)
254 if (diff < info->distance && diff >= 0)
258 if (diff <= info->distance && diff >= 0)
262 if (diff == info->distance && diff >= 0)
266 if (diff >= info->distance && diff >= 0)
270 if (diff > info->distance && diff >= 0)
274 if (diff != info->distance && diff >= 0)
280 p->more[1] = rset_read( p->rfd[1], p->buf[1],
286 p->more[1] = rset_read(p->rfd[1], p->buf[1], &p->terms[1]);
289 cmp = (*kctrl->cmp)(buf, p->buf[1]);
290 if (cmp <= - rfd->rset->scope || cmp >= rfd->rset->scope)
300 static int r_read(RSFD rfd, void *buf, TERMID *term)
302 return r_forward(rfd, buf, term, 0);
305 static int r_write(RSFD rfd, const void *buf)
307 yaz_log(YLOG_FATAL, "prox set type is read-only");
311 static void r_pos(RSFD rfd, double *current, double *total)
314 struct rset_prox_rfd *p = (struct rset_prox_rfd *)(rfd->priv);
317 double cur, tot = -1.0;
318 double scur = 0.0, stot = 0.0;
320 yaz_log(YLOG_DEBUG, "rsprox_pos");
322 for (i = 0; i < ct->no_children; i++)
324 rset_pos(p->rfd[i], &cur, &tot);
332 { /* nothing found */
337 { /* most likely tot==0 */
344 *current = (double) p->hits;
345 *total = *current/r ;
347 yaz_log(YLOG_DEBUG,"prox_pos: [%d] %0.1f/%0.1f= %0.4f ",
348 i,*current, *total, r);
351 static void r_get_terms(RSET ct, TERMID *terms, int maxterms, int *curterm)
354 for (i = 0; i < ct->no_children; i++)
355 rset_getterms(ct->children[i], terms, maxterms, curterm);
361 * c-file-style: "Stroustrup"
362 * indent-tabs-mode: nil
364 * vim: shiftwidth=4 tabstop=8 expandtab