Term counts right in the log (if not in searchresponse)
[idzebra-moved-to-github.git] / rset / rset.c
1 /* $Id: rset.c,v 1.38 2004-10-22 11:33:29 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 #include <stdio.h>
26 #include <string.h>
27 #include <zebrautl.h>
28 #include <assert.h>
29 #include <yaz/nmem.h>
30 #include <rset.h>
31
32
33 /* creates an rfd. Either allocates a new one, in which case the priv */
34 /* pointer is null, and will have to be filled in, or picks up one */
35 /* from the freelist, in which case the priv is already allocated, */
36 /* and presumably everything that hangs from it as well */
37
38 RSFD rfd_create_base(RSET rs)
39 {
40     RSFD rnew=rs->free_list;
41     if (rnew) {
42         rs->free_list=rnew->next;
43         assert(rnew->rset==rs);
44   /*    logf(LOG_DEBUG,"rfd-create_base (fl): rfd=%p rs=%p fl=%p priv=%p", 
45                        rnew, rs, rs->free_list, rnew->priv); */
46     } else {
47         rnew=nmem_malloc(rs->nmem, sizeof(*rnew));
48         rnew->priv=NULL;
49         rnew->rset=rs;
50   /*    logf(LOG_DEBUG,"rfd_create_base (new): rfd=%p rs=%p fl=%p priv=%p", 
51                        rnew, rs, rs->free_list, rnew->priv); */
52     }
53     rnew->next=NULL; /* not part of any (free?) list */
54     return rnew;
55 }
56
57 /* puts an rfd into the freelist of the rset. Only when the rset gets */
58 /* deleted, will all the nmem disappear */
59 void rfd_delete_base(RSFD rfd) 
60 {
61     RSET rs=rfd->rset;
62  /* logf(LOG_DEBUG,"rfd_delete_base: rfd=%p rs=%p priv=%p fl=%p",
63             rfd, rs, rfd->priv, rs->free_list); */
64     assert(NULL == rfd->next); 
65     rfd->next=rs->free_list;
66     rs->free_list=rfd;
67 }
68
69
70 RSET rset_create_base(const struct rset_control *sel, 
71                       NMEM nmem, const struct key_control *kcontrol,
72                       int scope, TERMID term)
73 {
74     RSET rnew;
75     NMEM M;
76     /* assert(nmem); */ /* can not yet be used, api/t4 fails */
77     if (nmem) 
78         M=nmem;
79     else
80         M=nmem_create();
81     rnew = (RSET) nmem_malloc(M,sizeof(*rnew));
82  /* logf (LOG_DEBUG, "rs_create(%s) rs=%p (nm=%p)", sel->desc, rnew, nmem); */
83     rnew->nmem=M;
84     if (nmem)
85         rnew->my_nmem=0;
86     else 
87         rnew->my_nmem=1;
88     rnew->control = sel;
89     rnew->count = 1; /* refcount! */
90     rnew->priv = 0;
91     rnew->free_list=NULL;
92     rnew->keycontrol=kcontrol;
93     rnew->scope=scope;
94     rnew->term=term;
95     if (term)
96         term->rset=rnew;
97     return rnew;
98 }
99
100 void rset_delete (RSET rs)
101 {
102     (rs->count)--;
103 /*  logf(LOG_DEBUG,"rs_delete(%s), rs=%p, count=%d",
104             rs->control->desc, rs, rs->count); */
105     if (!rs->count)
106     {
107         (*rs->control->f_delete)(rs);
108         if (rs->my_nmem)
109             nmem_destroy(rs->nmem);
110     }
111 }
112
113 RSET rset_dup (RSET rs)
114 {
115     (rs->count)++;
116     return rs;
117 }
118
119 #if 0
120 void rset_default_pos (RSFD rfd, double *current, double *total)
121 { /* This should never really be needed, but it is still used in */
122   /* those rsets that we don't really plan to use, like isam-s */
123     assert(rfd);
124     assert(current);
125     assert(total);
126     *current=-1; /* signal that pos is not implemented */
127     *total=-1;
128 } /* rset_default_pos */
129 #endif
130
131 int rset_default_forward(RSFD rfd, void *buf, TERMID *term,
132                            const void *untilbuf)
133 {
134     int more=1;
135     int cmp=rfd->rset->scope;
136     logf (LOG_DEBUG, "rset_default_forward starting '%s' (ct=%p rfd=%p)",
137                     rfd->rset->control->desc, rfd->rset, rfd);
138     /* key_logdump(LOG_DEBUG, untilbuf); */
139     while ( (cmp>=rfd->rset->scope) && (more))
140     {
141         logf (LOG_DEBUG, "rset_default_forward looping m=%d c=%d",more,cmp);
142         more=rset_read(rfd, buf, term);
143         if (more)
144             cmp=(rfd->rset->keycontrol->cmp)(untilbuf,buf);
145 /*        if (more)
146             key_logdump(LOG_DEBUG,buf); */
147     }
148     logf (LOG_DEBUG, "rset_default_forward exiting m=%d c=%d",more,cmp);
149
150     return more;
151 }
152
153 /** 
154  * rset_count uses rset_pos to get the total and returns that.
155  * This is ok for rsisamb, and for some other rsets, but in case of
156  * booleans etc it will give bad estimate, as nothing has been read
157  * from that rset
158  */
159 zint rset_count(RSET rs)
160 {
161     double cur,tot;
162     RSFD rfd=rset_open(rs,0);
163     rset_pos(rfd,&cur,&tot);
164     rset_close(rfd);
165     return (zint)(tot);
166 }
167
168
169 /** rset_get_no_terms is a getterms function for those that don't have any */
170 void rset_get_no_terms(RSET ct, TERMID *terms, int maxterms, int *curterm)
171 {
172     return;
173 }
174
175 /* rset_get_one_term gets that one term from an rset. Used by rsisamX */
176 void rset_get_one_term(RSET ct,TERMID *terms,int maxterms,int *curterm)
177 {
178     if (ct->term)
179     {
180         if (*curterm < maxterms)
181             terms[*curterm]=ct->term;
182         (*curterm)++;
183     }
184 }
185
186
187 TERMID rset_term_create (const char *name, int length, const char *flags,
188                                     int type, NMEM nmem)
189
190 {
191     TERMID t;
192     logf (LOG_DEBUG, "term_create '%s' %d f=%s type=%d nmem=%p",
193             name, length, flags, type, nmem);
194     t= (TERMID) nmem_malloc (nmem, sizeof(*t));
195     if (!name)
196         t->name = NULL;
197     else if (length == -1)
198         t->name = nmem_strdup(nmem,name);
199     else
200     {
201         t->name = (char*) nmem_malloc(nmem,length+1);
202         memcpy (t->name, name, length);
203         t->name[length] = '\0';
204     }
205     if (!flags)
206         t->flags = NULL;
207     else
208         t->flags = nmem_strdup(nmem,flags);
209     t->type = type;
210     t->rankpriv=0;
211     t->rset=0;
212     return t;
213 }
214
215