Major restructuring in rsets.
[idzebra-moved-to-github.git] / rset / rsisams.c
1 /* $Id: rsisams.c,v 1.11 2004-08-31 10:43:39 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 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);
35 static int r_write (RSFD rfd, const void *buf);
36 static void r_pos (RSFD rfd, double *current, double *total);
37
38 static const struct rset_control control = 
39 {
40     "isams",
41     r_delete,
42     r_open,
43     r_close,
44     r_rewind,
45     rset_default_forward,
46     r_pos,
47     r_read,
48     r_write,
49 };
50
51 const struct rset_control *rset_kind_isams = &control;
52
53 struct rset_pp_info {
54     ISAMS_PP pt;
55 };
56
57 struct rset_isams_info {
58     ISAMS   is;
59     ISAMS_P pos;
60 };
61
62
63 RSET rsisams_create( NMEM nmem, int key_size, 
64             int (*cmp)(const void *p1, const void *p2),
65             ISAMS is, ISAMS_P pos)
66 {
67     RSET rnew=rset_create_base(&control, nmem);
68     struct rset_isams_info *info;
69     info = (struct rset_isams_info *) nmem_malloc(rnew->nmem,sizeof(*info));
70     assert(key_size); /* FIXME - these belong to the general rset */
71     assert(cmp);
72     info->is=is;
73     info->pos=pos;
74     rnew->priv=info;
75     return rnew;
76 }
77
78 static void r_delete (RSET ct)
79 {
80     logf (LOG_DEBUG, "rsisams_delete");
81     rset_delete(ct);
82 }
83
84
85 RSFD r_open (RSET ct, int flag)
86 {
87     struct rset_isams_info *info = (struct rset_isams_info *) ct->priv;
88     RSFD rfd;
89     struct rset_pp_info *ptinfo;
90
91     logf (LOG_DEBUG, "risams_open");
92     if (flag & RSETF_WRITE)
93     {
94         logf (LOG_FATAL, "ISAMS set type is read-only");
95         return NULL;
96     }
97     rfd=rfd_create_base(ct);
98     if (rfd->priv)
99         ptinfo=(struct rset_pp_info *)(rfd->priv);
100     else {
101         ptinfo = (struct rset_pp_info *) nmem_malloc(ct->nmem,sizeof(*ptinfo));
102         ptinfo->pt = isams_pp_open (info->is, info->pos);
103         rfd->priv=ptinfo;
104     }
105     return rfd;
106 }
107
108 static void r_close (RSFD rfd)
109 {
110     struct rset_pp_info *ptinfo=(struct rset_pp_info *)(rfd->priv);
111
112     isams_pp_close (ptinfo->pt);
113     rfd_delete_base(rfd);
114 }
115
116 static void r_rewind (RSFD rfd)
117 {   
118     logf (LOG_DEBUG, "rsisams_rewind");
119     abort ();
120 }
121
122
123 static int r_read (RSFD rfd, void *buf)
124 {
125     struct rset_pp_info *ptinfo=(struct rset_pp_info *)(rfd->priv);
126     return isams_pp_read(ptinfo->pt, buf);
127 }
128
129 static int r_write (RSFD rfd, const void *buf)
130 {
131     logf (LOG_FATAL, "ISAMS set type is read-only");
132     return -1;
133 }
134
135 static void r_pos (RSFD rfd, double *current, double *total)
136 {
137     *current=-1;  /* sorry, not implemented yet */
138     *total=-1;
139 }