Added a routine to get an array of terms in a query, in preparation
[idzebra-moved-to-github.git] / rset / rsisamb.c
1 /* $Id: rsisamb.c,v 1.25 2004-10-22 10:12:52 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 <assert.h>
25 #include <zebrautl.h>
26 #include <rset.h>
27 #include <string.h>
28
29 #ifndef RSET_DEBUG
30 #define RSET_DEBUG 0
31 #endif
32
33 static RSFD r_open (RSET ct, int flag);
34 static void r_close (RSFD rfd);
35 static void r_delete (RSET ct);
36 static int r_forward(RSFD rfd, void *buf, TERMID *term, const void *untilbuf);
37 static void r_pos (RSFD rfd, double *current, double *total);
38 static int r_read (RSFD rfd, void *buf, TERMID *term);
39 static int r_write (RSFD rfd, const void *buf);
40
41 static const struct rset_control control = 
42 {
43     "isamb",
44     r_delete,
45     rset_get_one_term,
46     r_open,
47     r_close,
48     r_forward, 
49     r_pos,
50     r_read,
51     r_write,
52 };
53
54 const struct rset_control *rset_kind_isamb = &control;
55
56 struct rset_pp_info {
57     ISAMB_PP pt;
58     void *buf;
59 };
60
61 struct rset_isamb_info {
62     ISAMB   is;
63     ISAMB_P pos;
64 };
65
66 RSET rsisamb_create( NMEM nmem, const struct key_control *kcontrol, int scope,
67             ISAMB is, ISAMB_P pos, TERMID term)
68 {
69     RSET rnew=rset_create_base(&control, nmem, kcontrol, scope, term);
70     struct rset_isamb_info *info;
71     info = (struct rset_isamb_info *) nmem_malloc(rnew->nmem,sizeof(*info));
72     info->is=is;
73     info->pos=pos;
74     rnew->priv=info;
75     return rnew;
76 }
77
78 static void r_delete (RSET ct)
79 {
80     logf (LOG_DEBUG, "rsisamb_delete");
81 }
82
83 RSFD r_open (RSET ct, int flag)
84 {
85     struct rset_isamb_info *info = (struct rset_isamb_info *) ct->priv;
86     RSFD rfd;
87     struct rset_pp_info *ptinfo;
88
89     if (flag & RSETF_WRITE)
90     {
91         logf (LOG_FATAL, "ISAMB set type is read-only");
92         return NULL;
93     }
94     rfd=rfd_create_base(ct);
95     if (rfd->priv)
96         ptinfo=(struct rset_pp_info *) (rfd->priv);
97     else {
98         ptinfo = (struct rset_pp_info *)nmem_malloc(ct->nmem,sizeof(*ptinfo));
99         ptinfo->buf = nmem_malloc (ct->nmem,ct->keycontrol->key_size);
100         rfd->priv=ptinfo;
101     }
102     ptinfo->pt = isamb_pp_open (info->is, info->pos, ct->scope );
103     return rfd;
104 }
105
106 static void r_close (RSFD rfd)
107 {
108     struct rset_pp_info *ptinfo=(struct rset_pp_info *)(rfd->priv);
109     isamb_pp_close (ptinfo->pt);
110     rfd_delete_base(rfd);
111 }
112
113
114 static int r_forward(RSFD rfd, void *buf, TERMID *term, const void *untilbuf)
115 {
116     struct rset_pp_info *pinfo=(struct rset_pp_info *)(rfd->priv);
117     int rc;
118     rc=isamb_pp_forward(pinfo->pt, buf, untilbuf);
119     if (rc && term)
120         *term=rfd->rset->term;
121     return rc; 
122 }
123
124 static void r_pos (RSFD rfd, double *current, double *total)
125 {
126     struct rset_pp_info *pinfo=(struct rset_pp_info *)(rfd->priv);
127     assert(rfd);
128     isamb_pp_pos(pinfo->pt, current, total);
129 #if RSET_DEBUG
130     logf(LOG_DEBUG,"isamb.r_pos returning %0.1f/%0.1f",
131               *current, *total);
132 #endif
133 }
134
135 static int r_read (RSFD rfd, void *buf, TERMID *term)
136 {
137     struct rset_pp_info *pinfo=(struct rset_pp_info *)(rfd->priv);
138     int rc;
139     rc=isamb_pp_read(pinfo->pt, buf);
140     if (rc && term)
141         *term=rfd->rset->term;
142     return rc;
143 }
144
145 static int r_write (RSFD rfd, const void *buf)
146 {
147     logf (LOG_FATAL, "ISAMB set type is read-only");
148     return -1;
149 }