Removed the VOLATILE flag from rsets
[idzebra-moved-to-github.git] / rset / rsisams.c
1 /* $Id: rsisams.c,v 1.9 2004-08-23 12:38:53 heikki Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002
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 #include <stdio.h>
26 #include <assert.h>
27 #include <zebrautl.h>
28 #include <rsisams.h>
29
30 static void *r_create(RSET ct, const struct rset_control *sel, void *parms);
31 static RSFD r_open (RSET ct, int flag);
32 static void r_close (RSFD rfd);
33 static void r_delete (RSET ct);
34 static void r_rewind (RSFD rfd);
35 static int r_read (RSFD rfd, void *buf);
36 static int r_write (RSFD rfd, const void *buf);
37
38 static const struct rset_control control = 
39 {
40     "isams",
41     r_create,
42     r_open,
43     r_close,
44     r_delete,
45     r_rewind,
46     rset_default_forward,
47     rset_default_pos,
48     r_read,
49     r_write,
50 };
51
52 const struct rset_control *rset_kind_isams = &control;
53
54 struct rset_pp_info {
55     ISAMS_PP pt;
56     struct rset_pp_info *next;
57     struct rset_isams_info *info;
58 };
59
60 struct rset_isams_info {
61     ISAMS   is;
62     ISAMS_P pos;
63     struct rset_pp_info *ispt_list;
64 };
65
66 static void *r_create(RSET ct, const struct rset_control *sel, void *parms)
67 {
68     rset_isams_parms *pt = (struct rset_isams_parms *) parms;
69     struct rset_isams_info *info;
70
71     info = (struct rset_isams_info *) xmalloc (sizeof(*info));
72     info->is = pt->is;
73     info->pos = pt->pos;
74     info->ispt_list = NULL;
75     return info;
76 }
77
78 RSFD r_open (RSET ct, int flag)
79 {
80     struct rset_isams_info *info = (struct rset_isams_info *) ct->buf;
81     struct rset_pp_info *ptinfo;
82
83     logf (LOG_DEBUG, "risams_open");
84     if (flag & RSETF_WRITE)
85     {
86         logf (LOG_FATAL, "ISAMS set type is read-only");
87         return NULL;
88     }
89     ptinfo = (struct rset_pp_info *) xmalloc (sizeof(*ptinfo));
90     ptinfo->next = info->ispt_list;
91     info->ispt_list = ptinfo;
92     ptinfo->pt = isams_pp_open (info->is, info->pos);
93     ptinfo->info = info;
94     return ptinfo;
95 }
96
97 static void r_close (RSFD rfd)
98 {
99     struct rset_isams_info *info = ((struct rset_pp_info*) rfd)->info;
100     struct rset_pp_info **ptinfop;
101
102     for (ptinfop = &info->ispt_list; *ptinfop; ptinfop = &(*ptinfop)->next)
103         if (*ptinfop == rfd)
104         {
105             isams_pp_close ((*ptinfop)->pt);
106             *ptinfop = (*ptinfop)->next;
107             xfree (rfd);
108             return;
109         }
110     logf (LOG_FATAL, "r_close but no rfd match!");
111     assert (0);
112 }
113
114 static void r_delete (RSET ct)
115 {
116     struct rset_isams_info *info = (struct rset_isams_info *) ct->buf;
117
118     logf (LOG_DEBUG, "rsisams_delete");
119     assert (info->ispt_list == NULL);
120     xfree (info);
121 }
122
123 static void r_rewind (RSFD rfd)
124 {   
125     logf (LOG_DEBUG, "rsisams_rewind");
126     abort ();
127 }
128
129
130 static int r_read (RSFD rfd, void *buf)
131 {
132     return isams_pp_read( ((struct rset_pp_info*) rfd)->pt, buf);
133 }
134
135 static int r_write (RSFD rfd, const void *buf)
136 {
137     logf (LOG_FATAL, "ISAMS set type is read-only");
138     return -1;
139 }