Dynamic logging and minor cleaning
[idzebra-moved-to-github.git] / rset / rsisamc.c
1 /* $Id: rsisamc.c,v 1.30 2004-11-04 13:54:08 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, 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     ISAMC_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, ISAMC_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     logf(log_level, "create: term=%p", term);
82     return rnew;
83 }
84
85 static void r_delete (RSET ct)
86 {
87     logf (log_level, "rsisamc_delete");
88 }
89
90
91 RSFD r_open (RSET ct, int flag)
92 {
93     RSFD rfd;
94     struct rset_pp_info *ptinfo;
95
96     logf (log_level, "risamc_open");
97     if (flag & RSETF_WRITE)
98     {
99         logf (LOG_FATAL, "ISAMC set type is read-only");
100         return NULL;
101     }
102     rfd = rfd_create_base(ct);
103     if (rfd->priv)
104         ptinfo=(struct rset_pp_info *)rfd->priv;
105     else {
106         ptinfo = (struct rset_pp_info *) nmem_malloc (ct->nmem,sizeof(*ptinfo));
107         rfd->priv=ptinfo;
108         ptinfo->buf = nmem_malloc (ct->nmem,ct->keycontrol->key_size);
109     }
110     return rfd;
111 }
112
113 static void r_close (RSFD rfd)
114 {
115     struct rset_pp_info *p=(struct rset_pp_info *)(rfd->priv);
116
117     isc_pp_close (p->pt);
118     rfd_delete_base(rfd);
119 }
120
121
122 static int r_read (RSFD rfd, void *buf, TERMID *term)
123 {
124     struct rset_pp_info *p=(struct rset_pp_info *)(rfd->priv);
125     int r;
126     r = isc_pp_read(p->pt, buf);
127     if (term)
128         *term=rfd->rset->term;
129     logf(log_level,"read returning term %p", *term);
130     return r;
131 }
132
133 static int r_write (RSFD rfd, const void *buf)
134 {
135     logf (LOG_FATAL, "ISAMC set type is read-only");
136     return -1;
137 }
138
139 static void r_pos (RSFD rfd, double *current, double *total)
140 {
141     *current=-1;  /* sorry, not implemented yet */
142     *total=-1;
143 }
144
145
146