Towards GPL
[idzebra-moved-to-github.git] / rset / rsisam.c
1 /* $Id: rsisam.c,v 1.23 2002-08-02 19:26:57 adam 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 #include <stdio.h>
25 #include <assert.h>
26 #include <zebrautl.h>
27 #include <rsisam.h>
28
29 static void *r_create(RSET ct, const struct rset_control *sel, void *parms);
30 static RSFD r_open (RSET ct, int flag);
31 static void r_close (RSFD rfd);
32 static void r_delete (RSET ct);
33 static void r_rewind (RSFD rfd);
34 static int r_count (RSET ct);
35 static int r_read (RSFD rfd, void *buf, int *term_index);
36 static int r_write (RSFD rfd, const void *buf);
37
38 static const struct rset_control control = 
39 {
40     "isam",
41     r_create,
42     r_open,
43     r_close,
44     r_delete,
45     r_rewind,
46     r_count,
47     r_read,
48     r_write,
49 };
50
51 const struct rset_control *rset_kind_isam = &control;
52
53 struct rset_ispt_info {
54     ISPT   pt;
55     struct rset_ispt_info *next;
56     struct rset_isam_info *info;
57 };
58
59 struct rset_isam_info {
60     ISAM   is;
61     ISAM_P pos;
62     struct rset_ispt_info *ispt_list;
63 };
64
65 static void *r_create(RSET ct, const struct rset_control *sel, void *parms)
66 {
67     rset_isam_parms *pt = (rset_isam_parms *) parms;
68     struct rset_isam_info *info;
69
70     ct->flags |= RSET_FLAG_VOLATILE;
71     info = (struct rset_isam_info *) xmalloc (sizeof(struct rset_isam_info));
72     info->is = pt->is;
73     info->pos = pt->pos;
74     info->ispt_list = NULL;
75
76     ct->no_rset_terms = 1;
77     ct->rset_terms = (RSET_TERM *) xmalloc (sizeof(*ct->rset_terms));
78     ct->rset_terms[0] = pt->rset_term;
79     return info;
80 }
81
82 RSFD r_open (RSET ct, int flag)
83 {
84     struct rset_isam_info *info = (struct rset_isam_info *) ct->buf;
85     struct rset_ispt_info *ptinfo;
86
87     logf (LOG_DEBUG, "risam_open");
88     if (flag & RSETF_WRITE)
89     {
90         logf (LOG_FATAL, "ISAM set type is read-only");
91         return NULL;
92     }
93     ptinfo = (struct rset_ispt_info *) xmalloc (sizeof(*ptinfo));
94     ptinfo->next = info->ispt_list;
95     info->ispt_list = ptinfo;
96     ptinfo->pt = is_position (info->is, info->pos);
97     ptinfo->info = info;
98
99     if (ct->rset_terms[0]->nn < 0)
100         ct->rset_terms[0]->nn = is_numkeys (ptinfo->pt);
101     return ptinfo;
102 }
103
104 static void r_close (RSFD rfd)
105 {
106     struct rset_isam_info *info = ((struct rset_ispt_info*) rfd)->info;
107     struct rset_ispt_info **ptinfop;
108
109     for (ptinfop = &info->ispt_list; *ptinfop; ptinfop = &(*ptinfop)->next)
110         if (*ptinfop == rfd)
111         {
112             is_pt_free ((*ptinfop)->pt);
113             *ptinfop = (*ptinfop)->next;
114             xfree (rfd);
115             return;
116         }
117     logf (LOG_FATAL, "r_close but no rfd match!");
118     assert (0);
119 }
120
121 static void r_delete (RSET ct)
122 {
123     struct rset_isam_info *info = (struct rset_isam_info *) ct->buf;
124
125     logf (LOG_DEBUG, "rsisam_delete");
126     assert (info->ispt_list == NULL);
127     rset_term_destroy (ct->rset_terms[0]);
128     xfree (ct->rset_terms);
129     xfree (info);
130 }
131
132 static void r_rewind (RSFD rfd)
133 {   
134     logf (LOG_DEBUG, "rsisam_rewind");
135     is_rewind( ((struct rset_ispt_info*) rfd)->pt);
136 }
137
138 static int r_count (RSET ct)
139 {
140     return 0;
141 }
142
143 static int r_read (RSFD rfd, void *buf, int *term_index)
144 {
145     *term_index = 0;
146     return is_readkey( ((struct rset_ispt_info*) rfd)->pt, buf);
147 }
148
149 static int r_write (RSFD rfd, const void *buf)
150 {
151     logf (LOG_FATAL, "ISAM set type is read-only");
152     return -1;
153 }