5761a9b398822086d7d7135f82d7429f8304d2be
[idzebra-moved-to-github.git] / rset / rsisamc.c
1 /* $Id: rsisamc.c,v 1.24 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
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 void r_rewind (RSFD rfd);
36 static int r_read (RSFD rfd, void *buf);
37 static int r_write (RSFD rfd, const void *buf);
38 static void r_pos (RSFD rfd, double *current, double *total);
39
40 static const struct rset_control control = 
41 {
42     "isamc",
43     r_delete,
44     r_open,
45     r_close,
46     r_rewind,
47     rset_default_forward,
48     r_pos,
49     r_read,
50     r_write,
51 };
52
53 const struct rset_control *rset_kind_isamc = &control;
54
55 struct rset_pp_info {
56     ISAMC_PP pt;
57     void *buf;
58 };
59
60 struct rset_isamc_info {
61     ISAMC   is;
62     ISAMC_P pos;
63 };
64
65 RSET rsisamc_create( NMEM nmem, const struct key_control *kcontrol,
66                              ISAMC is, ISAMC_P pos)
67 {
68     RSET rnew=rset_create_base(&control, nmem, kcontrol);
69     struct rset_isamc_info *info;
70     info = (struct rset_isamc_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, "rsisamc_delete");
80 }
81
82
83 RSFD r_open (RSET ct, int flag)
84 {
85     RSFD rfd;
86     struct rset_pp_info *ptinfo;
87
88     logf (LOG_DEBUG, "risamc_open");
89     if (flag & RSETF_WRITE)
90     {
91         logf (LOG_FATAL, "ISAMC 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         rfd->priv=ptinfo;
100         ptinfo->buf = nmem_malloc (ct->nmem,ct->keycontrol->key_size);
101     }
102     return rfd;
103 }
104
105 static void r_close (RSFD rfd)
106 {
107     struct rset_pp_info *p=(struct rset_pp_info *)(rfd->priv);
108
109     isc_pp_close (p->pt);
110     rfd_delete_base(rfd);
111 }
112
113
114 static void r_rewind (RSFD rfd)
115 {   
116     logf (LOG_DEBUG, "rsisamc_rewind");
117     abort ();
118 }
119
120 static int r_read (RSFD rfd, void *buf)
121 {
122     struct rset_pp_info *p=(struct rset_pp_info *)(rfd->priv);
123     int r;
124     r = isc_pp_read(p->pt, buf);
125     return r;
126 }
127
128 static int r_write (RSFD rfd, const void *buf)
129 {
130     logf (LOG_FATAL, "ISAMC set type is read-only");
131     return -1;
132 }
133
134 static void r_pos (RSFD rfd, double *current, double *total)
135 {
136     *current=-1;  /* sorry, not implemented yet */
137     *total=-1;
138 }
139