Removed the rewind function from rsets, it was unused
[idzebra-moved-to-github.git] / rset / rsisamc.c
1 /* $Id: rsisamc.c,v 1.26 2004-09-30 09:53:05 heikki Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
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
26 #include <stdio.h>
27 #include <assert.h>
28 #include <string.h>
29 #include <zebrautl.h>
30 #include <rset.h>
31
32 static RSFD r_open (RSET ct, int flag);
33 static void r_close (RSFD rfd);
34 static void r_delete (RSET ct);
35 static int r_read (RSFD rfd, void *buf);
36 static int r_write (RSFD rfd, const void *buf);
37 static void r_pos (RSFD rfd, double *current, double *total);
38
39 static const struct rset_control control = 
40 {
41     "isamc",
42     r_delete,
43     r_open,
44     r_close,
45     rset_default_forward,
46     r_pos,
47     r_read,
48     r_write,
49 };
50
51 const struct rset_control *rset_kind_isamc = &control;
52
53 struct rset_pp_info {
54     ISAMC_PP pt;
55     void *buf;
56 };
57
58 struct rset_isamc_info {
59     ISAMC   is;
60     ISAMC_P pos;
61 };
62
63 RSET rsisamc_create( NMEM nmem, const struct key_control *kcontrol, int scope,
64                              ISAMC is, ISAMC_P pos)
65 {
66     RSET rnew=rset_create_base(&control, nmem, kcontrol, scope);
67     struct rset_isamc_info *info;
68     info = (struct rset_isamc_info *) nmem_malloc(rnew->nmem,sizeof(*info));
69     info->is=is;
70     info->pos=pos;
71     rnew->priv=info;
72     return rnew;
73 }
74
75 static void r_delete (RSET ct)
76 {
77     logf (LOG_DEBUG, "rsisamc_delete");
78 }
79
80
81 RSFD r_open (RSET ct, int flag)
82 {
83     RSFD rfd;
84     struct rset_pp_info *ptinfo;
85
86     logf (LOG_DEBUG, "risamc_open");
87     if (flag & RSETF_WRITE)
88     {
89         logf (LOG_FATAL, "ISAMC 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         rfd->priv=ptinfo;
98         ptinfo->buf = nmem_malloc (ct->nmem,ct->keycontrol->key_size);
99     }
100     return rfd;
101 }
102
103 static void r_close (RSFD rfd)
104 {
105     struct rset_pp_info *p=(struct rset_pp_info *)(rfd->priv);
106
107     isc_pp_close (p->pt);
108     rfd_delete_base(rfd);
109 }
110
111
112 static int r_read (RSFD rfd, void *buf)
113 {
114     struct rset_pp_info *p=(struct rset_pp_info *)(rfd->priv);
115     int r;
116     r = isc_pp_read(p->pt, buf);
117     return r;
118 }
119
120 static int r_write (RSFD rfd, const void *buf)
121 {
122     logf (LOG_FATAL, "ISAMC set type is read-only");
123     return -1;
124 }
125
126 static void r_pos (RSFD rfd, double *current, double *total)
127 {
128     *current=-1;  /* sorry, not implemented yet */
129     *total=-1;
130 }
131