Various clean up. Removed function ccl_parset_get_bibset. Removed
[yaz-moved-to-github.git] / include / yaz / ccl.h
1 /*
2  * Copyright (c) 1995, the EUROPAGATE consortium (see below).
3  *
4  * The EUROPAGATE consortium members are:
5  *
6  *    University College Dublin
7  *    Danmarks Teknologiske Videnscenter
8  *    An Chomhairle Leabharlanna
9  *    Consejo Superior de Investigaciones Cientificas
10  *
11  * Permission to use, copy, modify, distribute, and sell this software and
12  * its documentation, in whole or in part, for any purpose, is hereby granted,
13  * provided that:
14  *
15  * 1. This copyright and permission notice appear in all copies of the
16  * software and its documentation. Notices of copyright or attribution
17  * which appear at the beginning of any file must remain unchanged.
18  *
19  * 2. The names of EUROPAGATE or the project partners may not be used to
20  * endorse or promote products derived from this software without specific
21  * prior written permission.
22  *
23  * 3. Users of this software (implementors and gateway operators) agree to
24  * inform the EUROPAGATE consortium of their use of the software. This
25  * information will be used to evaluate the EUROPAGATE project and the
26  * software, and to plan further developments. The consortium may use
27  * the information in later publications.
28  * 
29  * 4. Users of this software agree to make their best efforts, when
30  * documenting their use of the software, to acknowledge the EUROPAGATE
31  * consortium, and the role played by the software in their work.
32  *
33  * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND,
34  * EXPRESS, IMPLIED, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
35  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
36  * IN NO EVENT SHALL THE EUROPAGATE CONSORTIUM OR ITS MEMBERS BE LIABLE
37  * FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF
38  * ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA
39  * OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND
40  * ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
41  * USE OR PERFORMANCE OF THIS SOFTWARE.
42  *
43  */
44
45 /** \file ccl.h
46     \brief Header with public definitions for CCL.
47 */
48
49 /*
50  * CCL - header file
51  *
52  * $Id: ccl.h,v 1.25 2007-04-26 09:11:56 adam Exp $
53  *
54  * Old Europagate Log:
55  *
56  * Revision 1.10  1996/01/08  08:41:22  adam
57  * Minor changes.
58  *
59  * Revision 1.9  1995/07/20  08:15:16  adam
60  * Bug fix: Token value for comma and OR were the same!
61  *
62  * Revision 1.8  1995/07/11  12:28:34  adam
63  * New function: ccl_token_simple (split into simple tokens) and
64  *  ccl_token_del (delete tokens).
65  *
66  * Revision 1.7  1995/05/16  09:39:38  adam
67  * LICENSE.
68  *
69  * Revision 1.6  1995/05/11  14:04:03  adam
70  * Changes in the reading of qualifier(s). New function: ccl_qual_fitem.
71  * New variable ccl_case_sensitive, which controls whether reserved
72  * words and field names are case sensitive or not.
73  *
74  * Revision 1.5  1995/02/23  08:32:11  adam
75  * Changed header.
76  *
77  * Revision 1.3  1995/02/16  13:20:10  adam
78  * Spell fix.
79  *
80  * Revision 1.2  1995/02/15  17:43:08  adam
81  * Minor changes to the ccl interface. Bug fix in iso2709 module.
82  *
83  * Revision 1.1  1995/02/14  19:55:21  adam
84  * Header files ccl.h/cclp.h are gone! They have been merged an
85  * moved to ../include/ccl.h.
86  *
87  */
88
89 #ifndef CCL_H
90 #define CCL_H
91
92 #include <yaz/yconfig.h>
93 #include <stdio.h>
94 #include <yaz/xmalloc.h>
95 #include <yaz/wrbuf.h>
96
97 YAZ_BEGIN_CDECL
98     
99 #define CCL_ERR_OK                0
100 #define CCL_ERR_TERM_EXPECTED     1
101 #define CCL_ERR_RP_EXPECTED       2
102 #define CCL_ERR_SETNAME_EXPECTED  3
103 #define CCL_ERR_OP_EXPECTED       4
104 #define CCL_ERR_BAD_RP            5
105 #define CCL_ERR_UNKNOWN_QUAL      6
106 #define CCL_ERR_DOUBLE_QUAL       7
107 #define CCL_ERR_EQ_EXPECTED       8
108 #define CCL_ERR_BAD_RELATION      9
109 #define CCL_ERR_TRUNC_NOT_LEFT   10
110 #define CCL_ERR_TRUNC_NOT_BOTH   11
111 #define CCL_ERR_TRUNC_NOT_RIGHT  12
112     
113 /** \brief attribute node (type, value) pair as used in RPN */
114 struct ccl_rpn_attr {
115     /** \brief next attribute */
116     struct ccl_rpn_attr *next;
117     /** \brief attribute set */
118     char *set;
119     /** \brief attribute type, Bib-1: 1=use, 2=relation, 3=position, .. */
120     int type;
121     /** \brief attribute value type (numeric or string) */
122     int kind;
123 #define CCL_RPN_ATTR_NUMERIC 1
124 #define CCL_RPN_ATTR_STRING 2
125     union {
126         /** \brief numeric attribute value */
127         int numeric;
128         /** \brief string attribute value */
129         char *str;
130     } value;
131 };
132
133 /** \brief node type or RPN tree generated by the CCL parser */
134 enum ccl_rpn_kind {
135     CCL_RPN_AND,
136     CCL_RPN_OR,
137     CCL_RPN_NOT,
138     CCL_RPN_TERM,
139     CCL_RPN_SET,
140     CCL_RPN_PROX
141 };
142
143 /** \brief RPN tree structure node */
144 struct ccl_rpn_node {
145     /** \brief node type, one of CCL_RPN_AND, CCL_RPN_OR,.. */
146     enum ccl_rpn_kind kind;
147     union {
148         /** \brief Boolean including proximity 0=left, 1=right, 2=prox parms */
149         struct ccl_rpn_node *p[3];
150         /** \brief Attributes + Term */
151         struct {
152             char *term;
153             struct ccl_rpn_attr *attr_list;
154         } t;
155         /** Result set */
156         char *setname;
157     } u;
158 };
159
160 /** \brief CCL bibset, AKA profile */
161 typedef struct ccl_qualifiers *CCL_bibset;
162
163 /** \brief CCL parser */
164 typedef struct ccl_parser *CCL_parser;
165     
166 /**
167    \brief parse CCL find string using CCL profile return RPN tree
168    
169    Parses a CCL Find command in a simple C string. Returns CCL parse
170    tree node describing RPN if parsing is successful. If parsing is
171    unsuccesful, NULL is returned and error and pos is set accordingly.
172 */
173 YAZ_EXPORT
174 struct ccl_rpn_node *ccl_find_str(CCL_bibset bibset,
175                                   const char *str, int *error, int *pos);
176
177
178 /**
179    \brief parse CCL find string with parser and return RPN tree
180    
181    Parses a CCL Find command in a simple C string. Returns CCL parse
182    tree node describing RPN if parsing is successful. If parsing is
183    unsuccesful, NULL is returned and error and pos is set accordingly.
184 */
185 YAZ_EXPORT
186 struct ccl_rpn_node *ccl_parser_find_str(CCL_parser cclp, const char *str);
187
188 /** Set names for AND operator in parser */
189 YAZ_EXPORT
190 void ccl_parser_set_op_and(CCL_parser p, const char *op);
191
192 /** Set names for OR operator in parser */
193 YAZ_EXPORT
194 void ccl_parser_set_op_or(CCL_parser p, const char *op);
195
196 /** Set names for ANDNOT operator in parser */
197 YAZ_EXPORT
198 void ccl_parser_set_op_not(CCL_parser p, const char *op);
199
200 /** Set names for ResultSet in parser */
201 YAZ_EXPORT
202 void ccl_parser_set_op_set(CCL_parser p, const char *op);
203
204 /** Set case sensitivity for parser */
205 YAZ_EXPORT
206 void ccl_parser_set_case(CCL_parser p, int case_sensitivity_flag);
207
208 /** Return english-readable error message for CCL parser error number */
209 YAZ_EXPORT
210 const char *ccl_err_msg(int ccl_errno);
211
212 /** Delete RPN tree returned by ccl_find */
213 YAZ_EXPORT
214 void ccl_rpn_delete(struct ccl_rpn_node *rpn);
215
216 /** Dump RPN tree in readable format to fd_out */
217 YAZ_EXPORT
218 void ccl_pr_tree(struct ccl_rpn_node *rpn, FILE *fd_out);
219
220 /** Add qualifier and supply attribute pairs for it */
221 YAZ_EXPORT
222 void ccl_qual_add(CCL_bibset b, const char *name, int no, int *attr);
223
224 /** Add qualifier and supply attributes pairs+attribute set for it */
225 YAZ_EXPORT
226 void ccl_qual_add_set(CCL_bibset b, const char *name, int no,
227                       int *type, int *value, char **svalue, char **attsets);
228
229 /** Add special qualifier */
230 YAZ_EXPORT
231 void ccl_qual_add_special(CCL_bibset bibset, const char *n, const char *v);
232
233 /** Add combo qualifier */
234 YAZ_EXPORT
235 void ccl_qual_add_combi(CCL_bibset b, const char *n, const char *names);
236
237 /** Read CCL qualifier list spec from file inf */
238 YAZ_EXPORT
239 void ccl_qual_file(CCL_bibset bibset, FILE *inf);
240
241 /** Read CCL qualifier list spec from file inf */
242 YAZ_EXPORT
243 int ccl_qual_fname(CCL_bibset bibset, const char *fname);
244
245 /** Add CCL qualifier as buf spec(multiple lines). */
246 YAZ_EXPORT
247 void ccl_qual_buf(CCL_bibset bibset, const char *buf);
248
249 /** Add CCL qualifier as line spec. Note: line is _modified_ */
250 YAZ_EXPORT
251 void ccl_qual_line(CCL_bibset bibset, char *line);
252
253 /* Add CCL qualifier by using qual_name + value pair */
254 YAZ_EXPORT
255 void ccl_qual_fitem(CCL_bibset bibset, const char *value,
256                     const char *qual_name);
257
258 /** Make CCL qualifier set */
259 YAZ_EXPORT
260 CCL_bibset ccl_qual_mk(void);
261
262 /** Delete CCL qualifier set */
263 YAZ_EXPORT
264 void ccl_qual_rm(CCL_bibset *b);
265
266 /** Char-to-upper function */
267 extern int(*ccl_toupper)(int c);
268
269 /** CCL version of ccl_stricmp */
270 YAZ_EXPORT
271 int ccl_stricmp(const char *s1, const char *s2);
272
273 /** CCL version of ccl_memicmp */
274 YAZ_EXPORT
275 int ccl_memicmp(const char *s1, const char *s2, size_t n);
276
277 /** Search for qualifier 'name' in set 'b'. */
278 YAZ_EXPORT
279 struct ccl_rpn_attr *ccl_qual_search(CCL_parser cclp, const char *name,
280                                       size_t len, int seq);
281
282 /** Create CCL parser */
283 YAZ_EXPORT
284 CCL_parser ccl_parser_create(CCL_bibset bibset);
285
286 /** Destroy CCL parser */
287 YAZ_EXPORT
288 void ccl_parser_destroy(CCL_parser p);
289
290 /** Search for special qualifier */
291 YAZ_EXPORT
292 const char *ccl_qual_search_special(CCL_bibset b, const char *name);
293 /** Pretty-print CCL RPN node tree to WRBUF */
294 YAZ_EXPORT
295 void ccl_pquery(WRBUF w, struct ccl_rpn_node *p);
296
297 YAZ_EXPORT
298 int ccl_parser_get_error(CCL_parser cclp, int *pos);
299
300 #ifndef ccl_assert
301 #define ccl_assert(x) ;
302 #endif
303
304
305 /** \brief common attributes
306
307    use (1)
308
309    relation (2)
310                             -1  none
311                              0  ordered
312                            1-6  relation (<, <=, =, >=, >, <>)
313
314    position (3)
315                             -1  none
316                              1  first in field
317                              2  first in sub field
318                              3  any position in field
319    structure (4)
320                             -1  none
321                              0  word/phrase auto select
322                              1  phrase
323                              2  word
324                              3  key
325                              4  year
326                              5  date (normalized)
327                              6  word list 
328                            100  date (un-normalized)
329                            101  name (normalized)
330                            102  name (un-normalized)
331    truncation (5)                            
332    completeness (6)
333 */
334
335 #define CCL_BIB1_USE 1
336 #define CCL_BIB1_REL 2
337 #define CCL_BIB1_POS 3
338 #define CCL_BIB1_STR 4
339 #define CCL_BIB1_TRU 5
340 #define CCL_BIB1_COM 6
341
342 #define CCL_BIB1_STR_WP (-1)
343 #define CCL_BIB1_STR_AND_LIST (-2)
344 #define CCL_BIB1_STR_OR_LIST (-3)
345 #define CCL_BIB1_REL_ORDER (-1)
346 #define CCL_BIB1_REL_PORDER (-2)
347
348 #define CCL_BIB1_TRU_CAN_LEFT (-1)
349 #define CCL_BIB1_TRU_CAN_RIGHT (-2)
350 #define CCL_BIB1_TRU_CAN_BOTH  (-3)
351 #define CCL_BIB1_TRU_CAN_NONE  (-4)
352
353
354
355 YAZ_END_CDECL
356
357 #endif
358
359 /*
360  * Local variables:
361  * c-basic-offset: 4
362  * indent-tabs-mode: nil
363  * End:
364  * vim: shiftwidth=4 tabstop=8 expandtab
365  */
366