Removed the term count stuff from all rsets, and fixed what ever that broke.
[idzebra-moved-to-github.git] / rset / rsisams.c
1 /* $Id: rsisams.c,v 1.8 2004-08-20 14:44:46 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     ct->flags |= RSET_FLAG_VOLATILE;
72     info = (struct rset_isams_info *) xmalloc (sizeof(*info));
73     info->is = pt->is;
74     info->pos = pt->pos;
75     info->ispt_list = NULL;
76     return info;
77 }
78
79 RSFD r_open (RSET ct, int flag)
80 {
81     struct rset_isams_info *info = (struct rset_isams_info *) ct->buf;
82     struct rset_pp_info *ptinfo;
83
84     logf (LOG_DEBUG, "risams_open");
85     if (flag & RSETF_WRITE)
86     {
87         logf (LOG_FATAL, "ISAMS set type is read-only");
88         return NULL;
89     }
90     ptinfo = (struct rset_pp_info *) xmalloc (sizeof(*ptinfo));
91     ptinfo->next = info->ispt_list;
92     info->ispt_list = ptinfo;
93     ptinfo->pt = isams_pp_open (info->is, info->pos);
94     ptinfo->info = info;
95     return ptinfo;
96 }
97
98 static void r_close (RSFD rfd)
99 {
100     struct rset_isams_info *info = ((struct rset_pp_info*) rfd)->info;
101     struct rset_pp_info **ptinfop;
102
103     for (ptinfop = &info->ispt_list; *ptinfop; ptinfop = &(*ptinfop)->next)
104         if (*ptinfop == rfd)
105         {
106             isams_pp_close ((*ptinfop)->pt);
107             *ptinfop = (*ptinfop)->next;
108             xfree (rfd);
109             return;
110         }
111     logf (LOG_FATAL, "r_close but no rfd match!");
112     assert (0);
113 }
114
115 static void r_delete (RSET ct)
116 {
117     struct rset_isams_info *info = (struct rset_isams_info *) ct->buf;
118
119     logf (LOG_DEBUG, "rsisams_delete");
120     assert (info->ispt_list == NULL);
121     xfree (info);
122 }
123
124 static void r_rewind (RSFD rfd)
125 {   
126     logf (LOG_DEBUG, "rsisams_rewind");
127     abort ();
128 }
129
130
131 static int r_read (RSFD rfd, void *buf)
132 {
133     return isams_pp_read( ((struct rset_pp_info*) rfd)->pt, buf);
134 }
135
136 static int r_write (RSFD rfd, const void *buf)
137 {
138     logf (LOG_FATAL, "ISAMS set type is read-only");
139     return -1;
140 }