Major restructuring in rsets.
[idzebra-moved-to-github.git] / rset / rsisamb.c
1 /* $Id: rsisamb.c,v 1.19 2004-08-31 10:43:39 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 RSFD r_open (RSET ct, int flag);
35 static void r_close (RSFD rfd);
36 static void r_delete (RSET ct);
37 static void r_rewind (RSFD rfd);
38 static int r_forward(RSFD rfd, void *buf,
39                      int (*cmpfunc)(const void *p1, const void *p2),
40                      const void *untilbuf);
41 static void r_pos (RSFD rfd, double *current, double *total);
42 static int r_read (RSFD rfd, void *buf);
43 static int r_write (RSFD rfd, const void *buf);
44
45 static const struct rset_control control = 
46 {
47     "isamb",
48     r_delete,
49     r_open,
50     r_close,
51     r_rewind,
52     r_forward, /* rset_default_forward, */
53     r_pos,
54     r_read,
55     r_write,
56 };
57
58 const struct rset_control *rset_kind_isamb = &control;
59
60 struct rset_pp_info {
61     ISAMB_PP pt;
62     void *buf;
63 };
64
65 struct rset_isamb_info {
66     ISAMB   is;
67     ISAMB_P pos;
68     int key_size;
69     int (*cmp)(const void *p1, const void *p2);
70 };
71
72 RSET rsisamb_create( NMEM nmem, int key_size, 
73             int (*cmp)(const void *p1, const void *p2),
74             ISAMB is, ISAMB_P pos)
75 {
76     RSET rnew=rset_create_base(&control, nmem);
77     struct rset_isamb_info *info;
78     info = (struct rset_isamb_info *) nmem_malloc(rnew->nmem,sizeof(*info));
79     info->key_size = key_size;
80     info->cmp = cmp;
81     info->is=is;
82     info->pos=pos;
83     rnew->priv=info;
84     return rnew;
85 }
86
87 static void r_delete (RSET ct)
88 {
89     logf (LOG_DEBUG, "rsisamb_delete");
90 }
91
92 RSFD r_open (RSET ct, int flag)
93 {
94     struct rset_isamb_info *info = (struct rset_isamb_info *) ct->priv;
95     RSFD rfd;
96     struct rset_pp_info *ptinfo;
97
98     if (flag & RSETF_WRITE)
99     {
100         logf (LOG_FATAL, "ISAMB set type is read-only");
101         return NULL;
102     }
103     rfd=rfd_create_base(ct);
104     if (rfd->priv)
105         ptinfo=(struct rset_pp_info *) (rfd->priv);
106     else {
107         ptinfo = (struct rset_pp_info *) nmem_malloc (ct->nmem,sizeof(*ptinfo));
108         ptinfo->buf = nmem_malloc (ct->nmem,info->key_size);
109         rfd->priv=ptinfo;
110     }
111     ptinfo->pt = isamb_pp_open (info->is, info->pos);
112     return rfd;
113 }
114
115 static void r_close (RSFD rfd)
116 {
117     struct rset_pp_info *ptinfo=(struct rset_pp_info *)(rfd->priv);
118     isamb_pp_close (ptinfo->pt);
119     rfd_delete_base(rfd);
120 }
121
122
123 static void r_rewind (RSFD rfd)
124 {   
125     logf (LOG_DEBUG, "rsisamb_rewind");
126     abort ();
127 }
128
129 static int r_forward(RSFD rfd, void *buf, 
130                      int (*cmpfunc)(const void *p1, const void *p2),
131                      const void *untilbuf)
132 {
133     struct rset_pp_info *pinfo=(struct rset_pp_info *)(rfd->priv);
134     return isamb_pp_forward(pinfo->pt, buf, untilbuf);
135 }
136
137 static void r_pos (RSFD rfd, double *current, double *total)
138 {
139     struct rset_pp_info *pinfo=(struct rset_pp_info *)(rfd->priv);
140     assert(rfd);
141     isamb_pp_pos(pinfo->pt, current, total);
142 #if RSET_DEBUG
143     logf(LOG_DEBUG,"isamb.r_pos returning %0.1f/%0.1f",
144               *current, *total);
145 #endif
146 }
147
148 static int r_read (RSFD rfd, void *buf)
149 {
150     struct rset_pp_info *pinfo=(struct rset_pp_info *)(rfd->priv);
151
152     return isamb_pp_read(pinfo->pt, buf);
153 }
154
155 static int r_write (RSFD rfd, const void *buf)
156 {
157     logf (LOG_FATAL, "ISAMB set type is read-only");
158     return -1;
159 }