Removed the VOLATILE flag from rsets
[idzebra-moved-to-github.git] / rset / rsisamb.c
1 /* $Id: rsisamb.c,v 1.16 2004-08-23 12:38:53 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 <rsisamb.h>
27 #include <string.h>
28 #include <../index/index.h> /* for log_keydump. Debugging only */
29
30 #ifndef RSET_DEBUG
31 #define RSET_DEBUG 0
32 #endif
33
34 static void *r_create(RSET ct, const struct rset_control *sel, void *parms);
35 static RSFD r_open (RSET ct, int flag);
36 static void r_close (RSFD rfd);
37 static void r_delete (RSET ct);
38 static void r_rewind (RSFD rfd);
39 static int r_forward(RSET ct, RSFD rfd, void *buf,
40                      int (*cmpfunc)(const void *p1, const void *p2),
41                      const void *untilbuf);
42 static void r_pos (RSFD rfd, double *current, double *total);
43 static int r_read (RSFD rfd, void *buf);
44 static int r_write (RSFD rfd, const void *buf);
45
46 static const struct rset_control control = 
47 {
48     "isamb",
49     r_create,
50     r_open,
51     r_close,
52     r_delete,
53     r_rewind,
54     r_forward, /* rset_default_forward, */
55     r_pos,
56     r_read,
57     r_write,
58 };
59
60 const struct rset_control *rset_kind_isamb = &control;
61
62 struct rset_pp_info {
63     ISAMB_PP pt;
64     struct rset_pp_info *next;
65     struct rset_isamb_info *info;
66     void *buf;
67 };
68
69 struct rset_isamb_info {
70     ISAMB   is;
71     ISAMB_P pos;
72     int key_size;
73     int (*cmp)(const void *p1, const void *p2);
74     struct rset_pp_info *ispt_list;
75 };
76
77 static void *r_create(RSET ct, const struct rset_control *sel, void *parms)
78 {
79     rset_isamb_parms *pt = (rset_isamb_parms *) parms;
80     struct rset_isamb_info *info;
81
82     info = (struct rset_isamb_info *) xmalloc (sizeof(*info));
83     info->is = pt->is;
84     info->pos = pt->pos;
85     info->key_size = pt->key_size;
86     info->cmp = pt->cmp;
87     info->ispt_list = NULL;
88     return info;
89 }
90
91 RSFD r_open (RSET ct, int flag)
92 {
93     struct rset_isamb_info *info = (struct rset_isamb_info *) ct->buf;
94     struct rset_pp_info *ptinfo;
95
96     logf (LOG_DEBUG, "risamb_open");
97     if (flag & RSETF_WRITE)
98     {
99         logf (LOG_FATAL, "ISAMB set type is read-only");
100         return NULL;
101     }
102     ptinfo = (struct rset_pp_info *) xmalloc (sizeof(*ptinfo));
103     ptinfo->next = info->ispt_list;
104     info->ispt_list = ptinfo;
105     ptinfo->pt = isamb_pp_open (info->is, info->pos);
106     ptinfo->info = info;
107     ptinfo->buf = xmalloc (info->key_size);
108     return ptinfo;
109 }
110
111 static void r_close (RSFD rfd)
112 {
113     struct rset_isamb_info *info = ((struct rset_pp_info*) rfd)->info;
114     struct rset_pp_info **ptinfop;
115
116     for (ptinfop = &info->ispt_list; *ptinfop; ptinfop = &(*ptinfop)->next)
117         if (*ptinfop == rfd)
118         {
119             xfree ((*ptinfop)->buf);
120             isamb_pp_close ((*ptinfop)->pt);
121             *ptinfop = (*ptinfop)->next;
122             xfree (rfd);
123             return;
124         }
125     logf (LOG_FATAL, "r_close but no rfd match!");
126     assert (0);
127 }
128
129 static void r_delete (RSET ct)
130 {
131     struct rset_isamb_info *info = (struct rset_isamb_info *) ct->buf;
132
133     logf (LOG_DEBUG, "rsisamb_delete");
134     assert (info->ispt_list == NULL);
135     xfree (info);
136 }
137
138 static void r_rewind (RSFD rfd)
139 {   
140     logf (LOG_DEBUG, "rsisamb_rewind");
141     abort ();
142 }
143
144 static int r_forward(RSET ct, RSFD rfd, void *buf, 
145                      int (*cmpfunc)(const void *p1, const void *p2),
146                      const void *untilbuf)
147 {
148     int i; 
149     struct rset_pp_info *pinfo = (struct rset_pp_info *) rfd;
150 #if RSET_DEBUG
151     logf (LOG_DEBUG, "rset_rsisamb_forward starting '%s' (ct=%p rfd=%p)",
152                       ct->control->desc, ct,rfd);
153     key_logdump(LOG_DEBUG, untilbuf);
154     key_logdump(LOG_DEBUG, buf);
155 #endif
156
157     i=isamb_pp_forward(pinfo->pt, buf, untilbuf);
158 #if RSET_DEBUG
159     logf (LOG_DEBUG, "rset_rsisamb_forward returning %d",i);
160 #endif
161     return i;
162 }
163
164 static void r_pos (RSFD rfd, double *current, double *total)
165 {
166     struct rset_pp_info *pinfo = (struct rset_pp_info *) rfd;
167     assert(rfd);
168     isamb_pp_pos(pinfo->pt, current, total);
169 #if RSET_DEBUG
170     logf(LOG_DEBUG,"isamb.r_pos returning %0.1f/%0.1f",
171               *current, *total);
172 #endif
173 }
174
175 static int r_read (RSFD rfd, void *buf)
176 {
177     struct rset_pp_info *pinfo = (struct rset_pp_info *) rfd;
178     int r;
179
180     r = isamb_pp_read(pinfo->pt, buf);
181     return r;
182 }
183
184 static int r_write (RSFD rfd, const void *buf)
185 {
186     logf (LOG_FATAL, "ISAMB set type is read-only");
187     return -1;
188 }