170a22dfd9cff63f3d9a542e6751310fa6902885
[idzebra-moved-to-github.git] / rset / rsisamb.c
1 /* $Id: rsisamb.c,v 1.21 2004-09-01 15:01:32 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 void r_rewind (RSFD rfd);
37 static int r_forward(RSFD rfd, void *buf, const void *untilbuf);
38 static void r_pos (RSFD rfd, double *current, double *total);
39 static int r_read (RSFD rfd, void *buf);
40 static int r_write (RSFD rfd, const void *buf);
41
42 static const struct rset_control control = 
43 {
44     "isamb",
45     r_delete,
46     r_open,
47     r_close,
48     r_rewind,
49     r_forward, 
50     r_pos,
51     r_read,
52     r_write,
53 };
54
55 const struct rset_control *rset_kind_isamb = &control;
56
57 struct rset_pp_info {
58     ISAMB_PP pt;
59     void *buf;
60 };
61
62 struct rset_isamb_info {
63     ISAMB   is;
64     ISAMB_P pos;
65 };
66
67 RSET rsisamb_create( NMEM nmem, const struct key_control *kcontrol,
68             ISAMB is, ISAMB_P pos)
69 {
70     RSET rnew=rset_create_base(&control, nmem, kcontrol);
71     struct rset_isamb_info *info;
72     info = (struct rset_isamb_info *) nmem_malloc(rnew->nmem,sizeof(*info));
73     info->is=is;
74     info->pos=pos;
75     rnew->priv=info;
76     return rnew;
77 }
78
79 static void r_delete (RSET ct)
80 {
81     logf (LOG_DEBUG, "rsisamb_delete");
82 }
83
84 RSFD r_open (RSET ct, int flag)
85 {
86     struct rset_isamb_info *info = (struct rset_isamb_info *) ct->priv;
87     RSFD rfd;
88     struct rset_pp_info *ptinfo;
89
90     if (flag & RSETF_WRITE)
91     {
92         logf (LOG_FATAL, "ISAMB set type is read-only");
93         return NULL;
94     }
95     rfd=rfd_create_base(ct);
96     if (rfd->priv)
97         ptinfo=(struct rset_pp_info *) (rfd->priv);
98     else {
99         ptinfo = (struct rset_pp_info *)nmem_malloc(ct->nmem,sizeof(*ptinfo));
100         ptinfo->buf = nmem_malloc (ct->nmem,ct->keycontrol->key_size);
101         rfd->priv=ptinfo;
102     }
103     ptinfo->pt = isamb_pp_open (info->is, info->pos);
104     return rfd;
105 }
106
107 static void r_close (RSFD rfd)
108 {
109     struct rset_pp_info *ptinfo=(struct rset_pp_info *)(rfd->priv);
110     isamb_pp_close (ptinfo->pt);
111     rfd_delete_base(rfd);
112 }
113
114
115 static void r_rewind (RSFD rfd)
116 {   
117     logf (LOG_DEBUG, "rsisamb_rewind");
118     abort ();
119 }
120
121 static int r_forward(RSFD rfd, void *buf, const void *untilbuf)
122 {
123     struct rset_pp_info *pinfo=(struct rset_pp_info *)(rfd->priv);
124     return isamb_pp_forward(pinfo->pt, buf, untilbuf);
125 }
126
127 static void r_pos (RSFD rfd, double *current, double *total)
128 {
129     struct rset_pp_info *pinfo=(struct rset_pp_info *)(rfd->priv);
130     assert(rfd);
131     isamb_pp_pos(pinfo->pt, current, total);
132 #if RSET_DEBUG
133     logf(LOG_DEBUG,"isamb.r_pos returning %0.1f/%0.1f",
134               *current, *total);
135 #endif
136 }
137
138 static int r_read (RSFD rfd, void *buf)
139 {
140     struct rset_pp_info *pinfo=(struct rset_pp_info *)(rfd->priv);
141
142     return isamb_pp_read(pinfo->pt, buf);
143 }
144
145 static int r_write (RSFD rfd, const void *buf)
146 {
147     logf (LOG_FATAL, "ISAMB set type is read-only");
148     return -1;
149 }