Removed the VOLATILE flag from rsets
[idzebra-moved-to-github.git] / rset / rsisamc.c
1 /* $Id: rsisamc.c,v 1.19 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
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 void *r_create(RSET ct, const struct rset_control *sel, void *parms);
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 void r_rewind (RSFD rfd);
37 static int r_read (RSFD rfd, void *buf);
38 static int r_write (RSFD rfd, const void *buf);
39
40 static const struct rset_control control = 
41 {
42     "isamc",
43     r_create,
44     r_open,
45     r_close,
46     r_delete,
47     r_rewind,
48     rset_default_forward,
49     rset_default_pos,
50     r_read,
51     r_write,
52 };
53
54 const struct rset_control *rset_kind_isamc = &control;
55
56 struct rset_pp_info {
57     ISAMC_PP pt;
58     struct rset_pp_info *next;
59     struct rset_isamc_info *info;
60     zint *countp;
61     void *buf;
62 };
63
64 struct rset_isamc_info {
65     ISAMC   is;
66     ISAMC_P pos;
67     int key_size;
68     int (*cmp)(const void *p1, const void *p2);
69     struct rset_pp_info *ispt_list;
70 };
71
72 static void *r_create(RSET ct, const struct rset_control *sel, void *parms)
73 {
74     rset_isamc_parms *pt = (rset_isamc_parms *) parms;
75     struct rset_isamc_info *info;
76
77     info = (struct rset_isamc_info *) xmalloc (sizeof(*info));
78     info->is = pt->is;
79     info->pos = pt->pos;
80     info->key_size = pt->key_size;
81     info->cmp = pt->cmp;
82     info->ispt_list = NULL;
83     return info;
84 }
85
86 RSFD r_open (RSET ct, int flag)
87 {
88     struct rset_isamc_info *info = (struct rset_isamc_info *) ct->buf;
89     struct rset_pp_info *ptinfo;
90
91     logf (LOG_DEBUG, "risamc_open");
92     if (flag & RSETF_WRITE)
93     {
94         logf (LOG_FATAL, "ISAMC set type is read-only");
95         return NULL;
96     }
97     ptinfo = (struct rset_pp_info *) xmalloc (sizeof(*ptinfo));
98     ptinfo->next = info->ispt_list;
99     info->ispt_list = ptinfo;
100     ptinfo->pt = isc_pp_open (info->is, info->pos);
101     ptinfo->info = info;
102     ptinfo->buf = xmalloc (info->key_size);
103     return ptinfo;
104 }
105
106 static void r_close (RSFD rfd)
107 {
108     struct rset_isamc_info *info = ((struct rset_pp_info*) rfd)->info;
109     struct rset_pp_info **ptinfop;
110
111     for (ptinfop = &info->ispt_list; *ptinfop; ptinfop = &(*ptinfop)->next)
112         if (*ptinfop == rfd)
113         {
114             xfree ((*ptinfop)->buf);
115             isc_pp_close ((*ptinfop)->pt);
116             *ptinfop = (*ptinfop)->next;
117             xfree (rfd);
118             return;
119         }
120     logf (LOG_FATAL, "r_close but no rfd match!");
121     assert (0);
122 }
123
124 static void r_delete (RSET ct)
125 {
126     struct rset_isamc_info *info = (struct rset_isamc_info *) ct->buf;
127
128     logf (LOG_DEBUG, "rsisamc_delete");
129     assert (info->ispt_list == NULL);
130     xfree (info);
131 }
132
133 static void r_rewind (RSFD rfd)
134 {   
135     logf (LOG_DEBUG, "rsisamc_rewind");
136     abort ();
137 }
138
139 static int r_read (RSFD rfd, void *buf)
140 {
141     struct rset_pp_info *pinfo = (struct rset_pp_info *) rfd;
142     int r;
143     r = isc_pp_read(pinfo->pt, buf);
144     if (r > 0)
145     {
146         if (*pinfo->countp == 0 || (*pinfo->info->cmp)(buf, pinfo->buf) > 1)
147         {
148             memcpy (pinfo->buf, buf, pinfo->info->key_size);
149             (*pinfo->countp)++;
150         }
151     }
152     return r;
153 }
154
155 static int r_write (RSFD rfd, const void *buf)
156 {
157     logf (LOG_FATAL, "ISAMC set type is read-only");
158     return -1;
159 }