Major restructuring in rsets.
[idzebra-moved-to-github.git] / rset / rsisamc.c
1 /* $Id: rsisamc.c,v 1.23 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
24
25
26 #include <stdio.h>
27 #include <assert.h>
28 #include <string.h>
29 #include <zebrautl.h>
30 #include <rsisamc.h>
31
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 void r_rewind (RSFD rfd);
36 static int r_read (RSFD rfd, void *buf);
37 static int r_write (RSFD rfd, const void *buf);
38 static void r_pos (RSFD rfd, double *current, double *total);
39
40 static const struct rset_control control = 
41 {
42     "isamc",
43     r_delete,
44     r_open,
45     r_close,
46     r_rewind,
47     rset_default_forward,
48     r_pos,
49     r_read,
50     r_write,
51 };
52
53 const struct rset_control *rset_kind_isamc = &control;
54
55 struct rset_pp_info {
56     ISAMC_PP pt;
57     struct rset_pp_info *next;
58     struct rset_isamc_info *info;
59     void *buf;
60 };
61
62 struct rset_isamc_info {
63     ISAMC   is;
64     ISAMC_P pos;
65     int key_size;
66     int (*cmp)(const void *p1, const void *p2);
67     struct rset_pp_info *ispt_list;
68     struct rset_pp_info *free_list;
69 };
70
71 RSET rsisamc_create( NMEM nmem, int key_size, 
72             int (*cmp)(const void *p1, const void *p2),
73             ISAMC is, ISAMC_P pos)
74 {
75     RSET rnew=rset_create_base(&control, nmem);
76     struct rset_isamc_info *info;
77     info = (struct rset_isamc_info *) nmem_malloc(rnew->nmem,sizeof(*info));
78     info->key_size = key_size;
79     info->cmp = cmp;
80     info->ispt_list = NULL;
81     info->free_list = NULL;
82     info->is=is;
83     info->pos=pos;
84     rnew->priv=info;
85     return rnew;
86 }
87
88 static void r_delete (RSET ct)
89 {
90     struct rset_isamc_info *info = (struct rset_isamc_info *) ct->priv;
91
92     logf (LOG_DEBUG, "rsisamc_delete");
93     assert (info->ispt_list == NULL);
94 }
95
96
97 RSFD r_open (RSET ct, int flag)
98 {
99     struct rset_isamc_info *info = (struct rset_isamc_info *) ct->priv;
100     RSFD rfd;
101     struct rset_pp_info *ptinfo;
102
103     logf (LOG_DEBUG, "risamc_open");
104     if (flag & RSETF_WRITE)
105     {
106         logf (LOG_FATAL, "ISAMC set type is read-only");
107         return NULL;
108     }
109     rfd = rfd_create_base(ct);
110     if (rfd->priv)
111         ptinfo=(struct rset_pp_info *)rfd->priv;
112     else {
113         ptinfo = (struct rset_pp_info *) nmem_malloc (ct->nmem,sizeof(*ptinfo));
114         rfd->priv=ptinfo;
115         ptinfo->buf = nmem_malloc (ct->nmem,info->key_size);
116     }
117     return rfd;
118 }
119
120 static void r_close (RSFD rfd)
121 {
122     struct rset_pp_info *p=(struct rset_pp_info *)(rfd->priv);
123
124     isc_pp_close (p->pt);
125     rfd_delete_base(rfd);
126 }
127
128
129 static void r_rewind (RSFD rfd)
130 {   
131     logf (LOG_DEBUG, "rsisamc_rewind");
132     abort ();
133 }
134
135 static int r_read (RSFD rfd, void *buf)
136 {
137     struct rset_pp_info *p=(struct rset_pp_info *)(rfd->priv);
138     int r;
139     r = isc_pp_read(p->pt, buf);
140     return r;
141 }
142
143 static int r_write (RSFD rfd, const void *buf)
144 {
145     logf (LOG_FATAL, "ISAMC set type is read-only");
146     return -1;
147 }
148
149 static void r_pos (RSFD rfd, double *current, double *total)
150 {
151     *current=-1;  /* sorry, not implemented yet */
152     *total=-1;
153 }