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