Added the scope parameter to rsets, and using it in all forwards and reads
[idzebra-moved-to-github.git] / rset / rsisams.c
1 /* $Id: rsisams.c,v 1.13 2004-09-09 10:08:06 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 <rset.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, const struct key_control *kcontrol, int scope,
64             ISAMS is, ISAMS_P pos)
65 {
66     RSET rnew=rset_create_base(&control, nmem, kcontrol, scope);
67     struct rset_isams_info *info;
68     info = (struct rset_isams_info *) nmem_malloc(rnew->nmem,sizeof(*info));
69     rnew->priv=info;
70     info->is=is;
71     info->pos=pos;
72     return rnew;
73 }
74
75 static void r_delete (RSET ct)
76 {
77     logf (LOG_DEBUG, "rsisams_delete");
78     rset_delete(ct);
79 }
80
81
82 RSFD r_open (RSET ct, int flag)
83 {
84     struct rset_isams_info *info = (struct rset_isams_info *) ct->priv;
85     RSFD rfd;
86     struct rset_pp_info *ptinfo;
87
88     logf (LOG_DEBUG, "risams_open");
89     if (flag & RSETF_WRITE)
90     {
91         logf (LOG_FATAL, "ISAMS set type is read-only");
92         return NULL;
93     }
94     rfd=rfd_create_base(ct);
95     if (rfd->priv)
96         ptinfo=(struct rset_pp_info *)(rfd->priv);
97     else {
98         ptinfo = (struct rset_pp_info *) nmem_malloc(ct->nmem,sizeof(*ptinfo));
99         ptinfo->pt = isams_pp_open (info->is, info->pos);
100         rfd->priv=ptinfo;
101     }
102     return rfd;
103 }
104
105 static void r_close (RSFD rfd)
106 {
107     struct rset_pp_info *ptinfo=(struct rset_pp_info *)(rfd->priv);
108
109     isams_pp_close (ptinfo->pt);
110     rfd_delete_base(rfd);
111 }
112
113 static void r_rewind (RSFD rfd)
114 {   
115     logf (LOG_DEBUG, "rsisams_rewind");
116     abort ();
117 }
118
119
120 static int r_read (RSFD rfd, void *buf)
121 {
122     struct rset_pp_info *ptinfo=(struct rset_pp_info *)(rfd->priv);
123     return isams_pp_read(ptinfo->pt, buf);
124 }
125
126 static int r_write (RSFD rfd, const void *buf)
127 {
128     logf (LOG_FATAL, "ISAMS set type is read-only");
129     return -1;
130 }
131
132 static void r_pos (RSFD rfd, double *current, double *total)
133 {
134     *current=-1;  /* sorry, not implemented yet */
135     *total=-1;
136 }