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