Get rid of typedefs iSAMS_P, ISAMC_P, ISAMB_P and use ISAM_P instead.
[idzebra-moved-to-github.git] / rset / rsisamc.c
1 /* $Id: rsisamc.c,v 1.37 2005-04-13 13:03:49 adam Exp $
2    Copyright (C) 1995-2005
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 <idzebra/util.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, TERMID *term);
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     rset_get_one_term,
44     r_open,
45     r_close,
46     rset_default_forward,
47     r_pos,
48     r_read,
49     r_write,
50 };
51
52 const struct rset_control *rset_kind_isamc = &control;
53
54 struct rset_pp_info {
55     ISAMC_PP pt;
56     void *buf;
57 };
58
59 struct rset_isamc_info {
60     ISAMC   is;
61     ISAM_P pos;
62 };
63
64 static int log_level = 0;
65 static int log_level_initialized = 0;
66
67 RSET rsisamc_create(NMEM nmem, const struct key_control *kcontrol, int scope,
68                     ISAMC is, ISAM_P pos, TERMID term)
69 {
70     RSET rnew = rset_create_base(&control, nmem, kcontrol, scope,term);
71     struct rset_isamc_info *info;
72     if (!log_level_initialized)
73     {
74         log_level = yaz_log_module_level("rsisamc");
75         log_level_initialized = 1;
76     }
77     info = (struct rset_isamc_info *) nmem_malloc(rnew->nmem,sizeof(*info));
78     info->is = is;
79     info->pos = pos;
80     rnew->priv = info;
81     yaz_log(log_level, "create: term=%p", term);
82     return rnew;
83 }
84
85 static void r_delete (RSET ct)
86 {
87     yaz_log(log_level, "rsisamc_delete");
88 }
89
90
91 RSFD r_open (RSET ct, int flag)
92 {
93     struct rset_isamc_info *info = (struct rset_isamc_info *) ct->priv;
94     RSFD rfd;
95     struct rset_pp_info *ptinfo;
96
97     yaz_log(log_level, "risamc_open");
98     if (flag & RSETF_WRITE)
99     {
100         yaz_log(YLOG_FATAL, "ISAMC set type is read-only");
101         return NULL;
102     }
103     rfd = rfd_create_base(ct);
104     if (rfd->priv)
105         ptinfo = (struct rset_pp_info *)rfd->priv;
106     else {
107         ptinfo = (struct rset_pp_info *) nmem_malloc (ct->nmem,sizeof(*ptinfo));
108         rfd->priv = ptinfo;
109         ptinfo->buf = nmem_malloc (ct->nmem,ct->keycontrol->key_size);
110     }
111     ptinfo->pt = isamc_pp_open(info->is, info->pos);
112     return rfd;
113 }
114
115 static void r_close (RSFD rfd)
116 {
117     struct rset_pp_info *p = (struct rset_pp_info *)(rfd->priv);
118
119     isamc_pp_close(p->pt);
120     rfd_delete_base(rfd);
121 }
122
123
124 static int r_read (RSFD rfd, void *buf, TERMID *term)
125 {
126     struct rset_pp_info *p = (struct rset_pp_info *)(rfd->priv);
127     int r;
128     r = isamc_pp_read(p->pt, buf);
129     if (term)
130         *term = rfd->rset->term;
131     yaz_log(log_level, "isamc.r_read");
132     return r;
133 }
134
135 static int r_write (RSFD rfd, const void *buf)
136 {
137     yaz_log(YLOG_FATAL, "ISAMC set type is read-only");
138     return -1;
139 }
140
141 static void r_pos (RSFD rfd, double *current, double *total)
142 {
143     *current = -1;  /* sorry, not implemented yet */
144     *total = -1;
145 }
146
147
148