Removed the rewind function from rsets, it was unused
[idzebra-moved-to-github.git] / rset / rsisamb.c
1 /* $Id: rsisamb.c,v 1.23 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 #include <stdio.h>
24 #include <assert.h>
25 #include <zebrautl.h>
26 #include <rset.h>
27 #include <string.h>
28
29 #ifndef RSET_DEBUG
30 #define RSET_DEBUG 0
31 #endif
32
33 static RSFD r_open (RSET ct, int flag);
34 static void r_close (RSFD rfd);
35 static void r_delete (RSET ct);
36 static int r_forward(RSFD rfd, void *buf, const void *untilbuf);
37 static void r_pos (RSFD rfd, double *current, double *total);
38 static int r_read (RSFD rfd, void *buf);
39 static int r_write (RSFD rfd, const void *buf);
40
41 static const struct rset_control control = 
42 {
43     "isamb",
44     r_delete,
45     r_open,
46     r_close,
47     r_forward, 
48     r_pos,
49     r_read,
50     r_write,
51 };
52
53 const struct rset_control *rset_kind_isamb = &control;
54
55 struct rset_pp_info {
56     ISAMB_PP pt;
57     void *buf;
58 };
59
60 struct rset_isamb_info {
61     ISAMB   is;
62     ISAMB_P pos;
63 };
64
65 RSET rsisamb_create( NMEM nmem, const struct key_control *kcontrol, int scope,
66             ISAMB is, ISAMB_P pos)
67 {
68     RSET rnew=rset_create_base(&control, nmem, kcontrol, scope);
69     struct rset_isamb_info *info;
70     info = (struct rset_isamb_info *) nmem_malloc(rnew->nmem,sizeof(*info));
71     info->is=is;
72     info->pos=pos;
73     rnew->priv=info;
74     return rnew;
75 }
76
77 static void r_delete (RSET ct)
78 {
79     logf (LOG_DEBUG, "rsisamb_delete");
80 }
81
82 RSFD r_open (RSET ct, int flag)
83 {
84     struct rset_isamb_info *info = (struct rset_isamb_info *) ct->priv;
85     RSFD rfd;
86     struct rset_pp_info *ptinfo;
87
88     if (flag & RSETF_WRITE)
89     {
90         logf (LOG_FATAL, "ISAMB set type is read-only");
91         return NULL;
92     }
93     rfd=rfd_create_base(ct);
94     if (rfd->priv)
95         ptinfo=(struct rset_pp_info *) (rfd->priv);
96     else {
97         ptinfo = (struct rset_pp_info *)nmem_malloc(ct->nmem,sizeof(*ptinfo));
98         ptinfo->buf = nmem_malloc (ct->nmem,ct->keycontrol->key_size);
99         rfd->priv=ptinfo;
100     }
101     ptinfo->pt = isamb_pp_open (info->is, info->pos, ct->scope );
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     isamb_pp_close (ptinfo->pt);
109     rfd_delete_base(rfd);
110 }
111
112
113 static int r_forward(RSFD rfd, void *buf, const void *untilbuf)
114 {
115     struct rset_pp_info *pinfo=(struct rset_pp_info *)(rfd->priv);
116     return isamb_pp_forward(pinfo->pt, buf, untilbuf);
117 }
118
119 static void r_pos (RSFD rfd, double *current, double *total)
120 {
121     struct rset_pp_info *pinfo=(struct rset_pp_info *)(rfd->priv);
122     assert(rfd);
123     isamb_pp_pos(pinfo->pt, current, total);
124 #if RSET_DEBUG
125     logf(LOG_DEBUG,"isamb.r_pos returning %0.1f/%0.1f",
126               *current, *total);
127 #endif
128 }
129
130 static int r_read (RSFD rfd, void *buf)
131 {
132     struct rset_pp_info *pinfo=(struct rset_pp_info *)(rfd->priv);
133
134     return isamb_pp_read(pinfo->pt, buf);
135 }
136
137 static int r_write (RSFD rfd, const void *buf)
138 {
139     logf (LOG_FATAL, "ISAMB set type is read-only");
140     return -1;
141 }