Added include stdlib.h a few places to get prototype for atoi/exit/..
[idzebra-moved-to-github.git] / include / rset.h
1 /* $Id: rset.h,v 1.46 2005-01-16 23:14:56 adam Exp $
2    Copyright (C) 1995-2005
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 #ifndef RSET_H
24 #define RSET_H
25
26 /* unfortunately we need the isam includes here, for the arguments for */
27 /* rsisamX_create */
28 #include <idzebra/isamb.h> 
29 #include <idzebra/isamc.h> 
30 #include <idzebra/isams.h> 
31
32 YAZ_BEGIN_CDECL
33
34 typedef struct rsfd *RSFD; /* Rset "file descriptor" */
35 typedef struct rset *RSET; /* Result set */
36
37
38 /** 
39  * rset_term is all we need to know of a term to do ranking etc. 
40  * As far as the rsets are concerned, it is just a dummy pointer to
41  * be passed around.
42  */
43
44 struct rset_term {
45     /** the term itself */
46     char *name;
47     char *flags;
48     int  type;
49     /** the rset corresponding to this term */
50     RSET rset;
51     /** private stuff for the ranking algorithm */
52     void *rankpriv;
53 };
54
55 typedef struct rset_term *TERMID; 
56 TERMID rset_term_create (const char *name, int length, const char *flags,
57                                     int type, NMEM nmem);
58
59
60
61 /** rsfd is a "file descriptor" for reading from a rset */
62 struct rsfd {  /* the stuff common to all rsfd's. */
63     RSET rset;  /* ptr to the rset this FD is opened to */
64     void *priv; /* private parameters for this type */
65     RSFD next;  /* to keep lists of used/free rsfd's */
66 };
67
68
69 /** 
70  * rset_control has function pointers to all the important functions
71  * of a rset. Each type of rset will have its own control block, pointing
72  * to the functions for that type. They all have their own create function
73  * which is not part of the control block, as it takes different args for
74  * each type.
75  */
76 struct rset_control
77 {
78     /** text description of set type (for debugging) */
79     char *desc; 
80 /* RSET rs_something_create(const struct rset_control *sel, ...); */
81     void (*f_delete)(RSET ct);
82
83     /** recursively fills the terms array with terms. call with curterm=0 */
84     /* always counts them all into cur, but of course won't touch the term */
85     /* array past max. You can use this to count, set max=0 */
86     void (*f_getterms)(RSET ct, TERMID *terms, int maxterms, int *curterm);
87
88     RSFD (*f_open)(RSET ct, int wflag);
89     void (*f_close)(RSFD rfd);
90     /** forward behaves like a read, but it skips some items first */
91     int (*f_forward)(RSFD rfd, void *buf, TERMID *term, const void *untilbuf);
92     void (*f_pos)(RSFD rfd, double *current, double *total);
93        /* returns -1,-1 if pos function not implemented for this type */
94     int (*f_read)(RSFD rfd, void *buf, TERMID *term);
95     int (*f_write)(RSFD rfd, const void *buf);
96 };
97
98 /** rset_default_forward implements a generic forward with a read-loop */
99 int rset_default_forward(RSFD rfd, void *buf, TERMID *term,
100                      const void *untilbuf);
101
102 /** rset_get_no_terms is a getterms function for those that don't have any */
103 void rset_get_no_terms(RSET ct, TERMID *terms, int maxterms, int *curterm);
104
105 /** 
106  * rset_get_one_term is a getterms function for those rsets that have
107  * exactly one term, like all rsisamX types. 
108  */
109 void rset_get_one_term(RSET ct,TERMID *terms,int maxterms,int *curterm);
110
111 /**
112  * key_control contains all there is to know about the keys stored in 
113  * an isam, and therefore operated by the rsets. Other than this info,
114  * all we assume is that all keys are the same size, and they can be
115  * memcpy'd around
116  */
117 struct key_control {
118     int key_size;
119     int scope;  /* default for what level we operate (book/chapter/verse) on*/
120                 /* usual sysno/seqno is 2 */
121     int (*cmp) (const void *p1, const void *p2);
122     void (*key_logdump_txt) (int logmask, const void *p, const char *txt);
123     zint (*getseq)(const void *p);
124       /* FIXME - Should not need a getseq, it won't make much sense with */
125       /* higher-order keys. Use a (generalized) cmp instead, or something */
126     /* FIXME - decode and encode, and lots of other stuff */
127 };
128
129 /**
130  * A rset is an ordered sequence of keys, either directly from an underlaying
131  * isam, or from one of the higher-level operator rsets (and, or, ...).
132  * Actually, it is "virtual base class", no pure rsets exist in the system,
133  * they all are of some derived type.
134  */
135 typedef struct rset
136 {
137     const struct rset_control *control;
138     const struct key_control *keycontrol;
139     int  count;  /* reference count */
140     void *priv;  /* stuff private to the given type of rset */
141     NMEM nmem;    /* nibble memory for various allocs */
142     char my_nmem; /* Should the nmem be destroyed with the rset?  */
143                   /* 1 if created with it, 0 if passed from above */
144     RSFD free_list; /* all rfd's allocated but not currently in use */
145     int scope;    /* On what level do we count hits and compare them? */
146     TERMID term; /* the term thing for ranking etc */
147 } rset;
148 /* rset is a "virtual base class", which will never exist on its own 
149  * all instances are rsets of some specific type, like rsisamb, or rsbool
150  * They keep their own stuff behind the priv pointer.  */
151
152 /* On the old sysno-seqno type isams, the scope was hard-coded to be 2.
153  * This means that we count hits on the sysno level, and when matching an
154  * 'and', we consider it a match if both term occur within the same sysno.
155  * In more complex isams we can specify on what level we wish to do the
156  * matching and counting of hits. For example, we can have book / chapter /
157  * verse, and a seqno. Scope 2 means then "give me all verses that match",
158  * 3 would be chapters, 4 books. 
159  * The resolution tells how much of the occurences we need to return. If we 
160  * are doing some sort of proximity, we need to get the seqnos of all
161  * occurences, whereas if we are only counting hits, we do not need anything
162  * below the scope. Again 1 is seqnos, 2 sysnos (or verses), 3 books, etc.
163  */
164
165 RSFD rfd_create_base(RSET rs);
166 void rfd_delete_base(RSFD rfd);
167
168 RSET rset_create_base(const struct rset_control *sel, 
169                       NMEM nmem,
170                       const struct key_control *kcontrol,
171                       int scope,
172                       TERMID term);
173
174 void rset_delete(RSET rs);
175 RSET rset_dup (RSET rs);
176
177
178 #define RSETF_READ       0
179 #define RSETF_WRITE      1
180 /* RSFD rset_open(RSET rs, int wflag); */
181 #define rset_open(rs, wflag) (*(rs)->control->f_open)((rs), (wflag))
182
183 /* void rset_close(RSFD rfd); */
184 #define rset_close(rfd) (*(rfd)->rset->control->f_close)(rfd)
185
186 /* int rset_forward(RSFD rfd, void *buf, TERMID term, void *untilbuf); */
187 #define rset_forward(rfd, buf, term, untilbuf) \
188     (*(rfd)->rset->control->f_forward)((rfd),(buf),(term),(untilbuf))
189
190 /* void rset_getterms(RSET ct, TERMID *terms, int maxterms, int *curterm); */
191 #define rset_getterms(ct, terms, maxterms, curterm) \
192     (*(ct)->control->f_getterms)((ct),(terms),(maxterms),(curterm))
193
194 /* int rset_pos(RSFD fd, double *current, double *total); */
195 #define rset_pos(rfd,cur,tot) \
196     (*(rfd)->rset->control->f_pos)((rfd),(cur),(tot))
197
198 /* int rset_read(RSFD rfd, void *buf, TERMID term); */
199 #define rset_read(rfd, buf, term) \
200     (*(rfd)->rset->control->f_read)((rfd), (buf), (term))
201
202 /* int rset_write(RSFD rfd, const void *buf); */
203 #define rset_write(rfd, buf) (*(rfd)->rset->control->f_write)((rfd), (buf))
204
205 /* int rset_type (RSET) */
206 #define rset_type(rs) ((rs)->control->desc)
207
208 /** rset_count counts or estimates the keys in it*/
209 zint rset_count(RSET rs);
210
211 RSET rstemp_create(NMEM nmem, const struct key_control *kcontrol,
212                     int scope, 
213                     const char *temp_path, TERMID term);
214
215 RSET rsnull_create(NMEM nmem, const struct key_control *kcontrol);
216
217 RSET rsbool_create_and(NMEM nmem, const struct key_control *kcontrol,
218                        int scope, RSET rset_l, RSET rset_r);
219
220 RSET rsbool_create_or (NMEM nmem, const struct key_control *kcontrol,
221                        int scope, RSET rset_l, RSET rset_r);
222
223 RSET rsbool_create_not(NMEM nmem, const struct key_control *kcontrol,
224                        int scope, RSET rset_l, RSET rset_r);
225
226 RSET rsbetween_create(NMEM nmem, const struct key_control *kcontrol,
227                       int scope, RSET rset_l, RSET rset_m, RSET rset_r, 
228                       RSET rset_attr);
229
230 RSET rsmulti_or_create(NMEM nmem, const struct key_control *kcontrol,
231                        int scope, int no_rsets, RSET* rsets);
232
233 RSET rsmulti_and_create(NMEM nmem, const struct key_control *kcontrol,
234                         int scope, int no_rsets, RSET* rsets);
235
236 RSET rsprox_create(NMEM nmem, const struct key_control *kcontrol,
237                    int scope, int rset_no, RSET *rset,
238                    int ordered, int exclusion, int relation, int distance);
239
240 RSET rsisamb_create(NMEM nmem, const struct key_control *kcontrol,
241                     int scope, ISAMB is, ISAMB_P pos, TERMID term);
242
243 RSET rsisamc_create(NMEM nmem, const struct key_control *kcontrol,
244                     int scope, ISAMC is, ISAMC_P pos, TERMID term);
245
246 RSET rsisams_create(NMEM nmem, const struct key_control *kcontrol,
247                     int scope, ISAMS is, ISAMS_P pos, TERMID term);
248
249
250 YAZ_END_CDECL
251
252 #endif