New logging -v rsisamc
[idzebra-moved-to-github.git] / rset / rsisamc.c
1 /* $Id: rsisamc.c,v 1.29 2004-11-04 13:11:51 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=-1;
65
66 RSET rsisamc_create( NMEM nmem, const struct key_control *kcontrol, int scope,
67                              ISAMC is, ISAMC_P pos, TERMID term)
68 {
69     RSET rnew=rset_create_base(&control, nmem, kcontrol, scope,term);
70     struct rset_isamc_info *info;
71     if (log_level<0)
72         log_level=yaz_log_module_level("rsisamc");
73     info = (struct rset_isamc_info *) nmem_malloc(rnew->nmem,sizeof(*info));
74     info->is=is;
75     info->pos=pos;
76     rnew->priv=info;
77     logf(log_level, "create: term=%p", term);
78     return rnew;
79 }
80
81 static void r_delete (RSET ct)
82 {
83     logf (log_level, "rsisamc_delete");
84 }
85
86
87 RSFD r_open (RSET ct, int flag)
88 {
89     RSFD rfd;
90     struct rset_pp_info *ptinfo;
91
92     logf (log_level, "risamc_open");
93     if (flag & RSETF_WRITE)
94     {
95         logf (LOG_FATAL, "ISAMC set type is read-only");
96         return NULL;
97     }
98     rfd = rfd_create_base(ct);
99     if (rfd->priv)
100         ptinfo=(struct rset_pp_info *)rfd->priv;
101     else {
102         ptinfo = (struct rset_pp_info *) nmem_malloc (ct->nmem,sizeof(*ptinfo));
103         rfd->priv=ptinfo;
104         ptinfo->buf = nmem_malloc (ct->nmem,ct->keycontrol->key_size);
105     }
106     return rfd;
107 }
108
109 static void r_close (RSFD rfd)
110 {
111     struct rset_pp_info *p=(struct rset_pp_info *)(rfd->priv);
112
113     isc_pp_close (p->pt);
114     rfd_delete_base(rfd);
115 }
116
117
118 static int r_read (RSFD rfd, void *buf, TERMID *term)
119 {
120     struct rset_pp_info *p=(struct rset_pp_info *)(rfd->priv);
121     int r;
122     r = isc_pp_read(p->pt, buf);
123     if (term)
124         *term=rfd->rset->term;
125     logf(log_level,"read returning term %p", *term);
126     return r;
127 }
128
129 static int r_write (RSFD rfd, const void *buf)
130 {
131     logf (LOG_FATAL, "ISAMC set type is read-only");
132     return -1;
133 }
134
135 static void r_pos (RSFD rfd, double *current, double *total)
136 {
137     *current=-1;  /* sorry, not implemented yet */
138     *total=-1;
139 }
140
141
142