Added framework for the pos calls. rsisamb and rsnull have a real one,
[idzebra-moved-to-github.git] / rset / rsisam.c
1 /* $Id: rsisam.c,v 1.26 2004-08-03 14:54:41 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 #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_read (RSFD rfd, void *buf, int *term_index);
35 static int r_write (RSFD rfd, const void *buf);
36
37 static const struct rset_control control = 
38 {
39     "isam",
40     r_create,
41     r_open,
42     r_close,
43     r_delete,
44     r_rewind,
45     rset_default_forward,
46     rset_default_pos,
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 /*
139 static int r_count (RSET ct)
140 {
141     return 0;
142 }
143 */
144
145 static int r_read (RSFD rfd, void *buf, int *term_index)
146 {
147     *term_index = 0;
148     return is_readkey( ((struct rset_ispt_info*) rfd)->pt, buf);
149 }
150
151 static int r_write (RSFD rfd, const void *buf)
152 {
153     logf (LOG_FATAL, "ISAM set type is read-only");
154     return -1;
155 }