Removed the term count stuff from all rsets, and fixed what ever that broke.
[idzebra-moved-to-github.git] / rset / rsisamc.c
1 /* $Id: rsisamc.c,v 1.18 2004-08-20 14:44:46 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 <rsisamc.h>
31
32 static void *r_create(RSET ct, const struct rset_control *sel, void *parms);
33 static RSFD r_open (RSET ct, int flag);
34 static void r_close (RSFD rfd);
35 static void r_delete (RSET ct);
36 static void r_rewind (RSFD rfd);
37 static int r_read (RSFD rfd, void *buf);
38 static int r_write (RSFD rfd, const void *buf);
39
40 static const struct rset_control control = 
41 {
42     "isamc",
43     r_create,
44     r_open,
45     r_close,
46     r_delete,
47     r_rewind,
48     rset_default_forward,
49     rset_default_pos,
50     r_read,
51     r_write,
52 };
53
54 const struct rset_control *rset_kind_isamc = &control;
55
56 struct rset_pp_info {
57     ISAMC_PP pt;
58     struct rset_pp_info *next;
59     struct rset_isamc_info *info;
60     zint *countp;
61     void *buf;
62 };
63
64 struct rset_isamc_info {
65     ISAMC   is;
66     ISAMC_P pos;
67     int key_size;
68     int (*cmp)(const void *p1, const void *p2);
69     struct rset_pp_info *ispt_list;
70 };
71
72 static void *r_create(RSET ct, const struct rset_control *sel, void *parms)
73 {
74     rset_isamc_parms *pt = (rset_isamc_parms *) parms;
75     struct rset_isamc_info *info;
76
77     ct->flags |= RSET_FLAG_VOLATILE;
78     info = (struct rset_isamc_info *) xmalloc (sizeof(*info));
79     info->is = pt->is;
80     info->pos = pt->pos;
81     info->key_size = pt->key_size;
82     info->cmp = pt->cmp;
83     info->ispt_list = NULL;
84     return info;
85 }
86
87 RSFD r_open (RSET ct, int flag)
88 {
89     struct rset_isamc_info *info = (struct rset_isamc_info *) ct->buf;
90     struct rset_pp_info *ptinfo;
91
92     logf (LOG_DEBUG, "risamc_open");
93     if (flag & RSETF_WRITE)
94     {
95         logf (LOG_FATAL, "ISAMC set type is read-only");
96         return NULL;
97     }
98     ptinfo = (struct rset_pp_info *) xmalloc (sizeof(*ptinfo));
99     ptinfo->next = info->ispt_list;
100     info->ispt_list = ptinfo;
101     ptinfo->pt = isc_pp_open (info->is, info->pos);
102     ptinfo->info = info;
103     ptinfo->buf = xmalloc (info->key_size);
104     return ptinfo;
105 }
106
107 static void r_close (RSFD rfd)
108 {
109     struct rset_isamc_info *info = ((struct rset_pp_info*) rfd)->info;
110     struct rset_pp_info **ptinfop;
111
112     for (ptinfop = &info->ispt_list; *ptinfop; ptinfop = &(*ptinfop)->next)
113         if (*ptinfop == rfd)
114         {
115             xfree ((*ptinfop)->buf);
116             isc_pp_close ((*ptinfop)->pt);
117             *ptinfop = (*ptinfop)->next;
118             xfree (rfd);
119             return;
120         }
121     logf (LOG_FATAL, "r_close but no rfd match!");
122     assert (0);
123 }
124
125 static void r_delete (RSET ct)
126 {
127     struct rset_isamc_info *info = (struct rset_isamc_info *) ct->buf;
128
129     logf (LOG_DEBUG, "rsisamc_delete");
130     assert (info->ispt_list == NULL);
131     xfree (info);
132 }
133
134 static void r_rewind (RSFD rfd)
135 {   
136     logf (LOG_DEBUG, "rsisamc_rewind");
137     abort ();
138 }
139
140 static int r_read (RSFD rfd, void *buf)
141 {
142     struct rset_pp_info *pinfo = (struct rset_pp_info *) rfd;
143     int r;
144     r = isc_pp_read(pinfo->pt, buf);
145     if (r > 0)
146     {
147         if (*pinfo->countp == 0 || (*pinfo->info->cmp)(buf, pinfo->buf) > 1)
148         {
149             memcpy (pinfo->buf, buf, pinfo->info->key_size);
150             (*pinfo->countp)++;
151         }
152     }
153     return r;
154 }
155
156 static int r_write (RSFD rfd, const void *buf)
157 {
158     logf (LOG_FATAL, "ISAMC set type is read-only");
159     return -1;
160 }