a132f86f34871d117cc797634f7f0308ff1fdc0e
[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.24 2007-04-25 20:52:18 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 /* CCL error numbers */
100 #define CCL_ERR_OK                0
101 #define CCL_ERR_TERM_EXPECTED     1
102 #define CCL_ERR_RP_EXPECTED       2
103 #define CCL_ERR_SETNAME_EXPECTED  3
104 #define CCL_ERR_OP_EXPECTED       4
105 #define CCL_ERR_BAD_RP            5
106 #define CCL_ERR_UNKNOWN_QUAL      6
107 #define CCL_ERR_DOUBLE_QUAL       7
108 #define CCL_ERR_EQ_EXPECTED       8
109 #define CCL_ERR_BAD_RELATION      9
110 #define CCL_ERR_TRUNC_NOT_LEFT   10
111 #define CCL_ERR_TRUNC_NOT_BOTH   11
112 #define CCL_ERR_TRUNC_NOT_RIGHT  12
113     
114 /** attribute node (type, value) pair as used in RPN */
115 struct ccl_rpn_attr {
116     /** next node */
117     struct ccl_rpn_attr *next;
118     /** attribute set */
119     char *set;
120     /** attribute type, Bib-1: 1=use, 2=relation, 3=position, .. */
121     int type;
122     /** attribute value type (numeric or string) */
123     int kind;
124 #define CCL_RPN_ATTR_NUMERIC 1
125 #define CCL_RPN_ATTR_STRING 2
126     union {
127         /** numeric attribute value */
128         int numeric;
129         /** string attribute value */
130         char *str;
131     } value;
132 };
133
134 #define CCL_RPN_AND 1
135 #define CCL_RPN_OR 2
136 #define CCL_RPN_NOT 3
137 #define CCL_RPN_TERM 4
138 #define CCL_RPN_SET 5
139 #define CCL_RPN_PROX 6
140
141 /** RPN tree structure node */
142 struct ccl_rpn_node {
143     /** RPN tree node type */
144     int kind;
145     union {
146         /** Boolean including proximity 0=left, 2=right, 3=prox parms */
147         struct ccl_rpn_node *p[3];
148         /** Attributes + Term */
149         struct {
150             char *term;
151             struct ccl_rpn_attr *attr_list;
152         } t;
153         /** Result set */
154         char *setname;
155     } u;
156 };
157
158 typedef struct ccl_qualifiers *CCL_bibset;
159
160 /* use (1)
161
162    relation (2)
163                             -1  none
164                              0  ordered
165                            1-6  relation (<, <=, =, >=, >, <>)
166
167    position (3)
168                             -1  none
169                              1  first in field
170                              2  first in sub field
171                              3  any position in field
172    structure (4)
173                             -1  none
174                              0  word/phrase auto select
175                              1  phrase
176                              2  word
177                              3  key
178                              4  year
179                              5  date (normalized)
180                              6  word list 
181                            100  date (un-normalized)
182                            101  name (normalized)
183                            102  name (un-normalized)
184    truncation (5)                            
185    completeness (6)
186 */
187
188 #define CCL_BIB1_USE 1
189 #define CCL_BIB1_REL 2
190 #define CCL_BIB1_POS 3
191 #define CCL_BIB1_STR 4
192 #define CCL_BIB1_TRU 5
193 #define CCL_BIB1_COM 6
194
195 #define CCL_BIB1_STR_WP (-1)
196 #define CCL_BIB1_STR_AND_LIST (-2)
197 #define CCL_BIB1_STR_OR_LIST (-3)
198 #define CCL_BIB1_REL_ORDER (-1)
199 #define CCL_BIB1_REL_PORDER (-2)
200
201 #define CCL_BIB1_TRU_CAN_LEFT (-1)
202 #define CCL_BIB1_TRU_CAN_RIGHT (-2)
203 #define CCL_BIB1_TRU_CAN_BOTH  (-3)
204 #define CCL_BIB1_TRU_CAN_NONE  (-4)
205
206 typedef struct ccl_parser *CCL_parser;
207     
208 /**
209  * Parses a CCL Find command in a simple C string. Returns CCL parse
210  * tree node describing RPN if parsing is successful. If parsing is
211  * unsuccesful, NULL is returned and error and pos is set accordingly.
212  */
213 YAZ_EXPORT
214 struct ccl_rpn_node *ccl_find_str (CCL_bibset bibset,
215                                    const char *str, int *error, int *pos);
216
217 YAZ_EXPORT
218 struct ccl_rpn_node *ccl_parser_find_str(CCL_parser cclp, const char *str);
219
220 /** Set names for AND operator in parser */
221 YAZ_EXPORT
222 void ccl_parser_set_op_and (CCL_parser p, const char *op);
223
224 /** Set names for OR operator in parser */
225 YAZ_EXPORT
226 void ccl_parser_set_op_or (CCL_parser p, const char *op);
227
228 /** Set names for ANDNOT operator in parser */
229 YAZ_EXPORT
230 void ccl_parser_set_op_not (CCL_parser p, const char *op);
231
232 /** Set names for ResultSet in parser */
233 YAZ_EXPORT
234 void ccl_parser_set_op_set (CCL_parser p, const char *op);
235
236 /** Set case sensitivity for parser */
237 YAZ_EXPORT
238 void ccl_parser_set_case (CCL_parser p, int case_sensitivity_flag);
239
240 /** Return english-readable error message for CCL parser error number */
241 YAZ_EXPORT
242 const char *ccl_err_msg (int ccl_errno);
243
244 /** Delete RPN tree returned by ccl_find */
245 YAZ_EXPORT
246 void ccl_rpn_delete (struct ccl_rpn_node *rpn);
247
248 /** Dump RPN tree in readable format to fd_out */
249 YAZ_EXPORT
250 void ccl_pr_tree (struct ccl_rpn_node *rpn, FILE *fd_out);
251
252 /** Add qualifier and supply attribute pairs for it */
253 YAZ_EXPORT
254 void ccl_qual_add (CCL_bibset b, const char *name, int no, int *attr);
255
256 /** Add qualifier and supply attributes pairs+attribute set for it */
257 YAZ_EXPORT
258 void ccl_qual_add_set (CCL_bibset b, const char *name, int no,
259                        int *type, int *value, char **svalue, char **attsets);
260
261 /** Add special qualifier */
262 YAZ_EXPORT
263 void ccl_qual_add_special (CCL_bibset bibset, const char *n, const char *v);
264
265 /** Add combo qualifier */
266 YAZ_EXPORT
267 void ccl_qual_add_combi (CCL_bibset b, const char *n, const char *names);
268
269 /** Read CCL qualifier list spec from file inf */
270 YAZ_EXPORT
271 void ccl_qual_file (CCL_bibset bibset, FILE *inf);
272
273 /** Read CCL qualifier list spec from file inf */
274 YAZ_EXPORT
275 int ccl_qual_fname (CCL_bibset bibset, const char *fname);
276
277 /** Add CCL qualifier as buf spec (multiple lines). */
278 YAZ_EXPORT
279 void ccl_qual_buf(CCL_bibset bibset, const char *buf);
280
281 /** Add CCL qualifier as line spec. Note: line is _modified_ */
282 YAZ_EXPORT
283 void ccl_qual_line(CCL_bibset bibset, char *line);
284
285 /* Add CCL qualifier by using qual_name + value pair */
286 YAZ_EXPORT
287 void ccl_qual_fitem (CCL_bibset bibset, const char *value,
288                      const char *qual_name);
289
290 /** Make CCL qualifier set */
291 YAZ_EXPORT
292 CCL_bibset ccl_qual_mk (void);
293
294 /** Delete CCL qualifier set */
295 YAZ_EXPORT
296 void ccl_qual_rm (CCL_bibset *b);
297
298 /** Char-to-upper function */
299 extern int (*ccl_toupper)(int c);
300
301 /** CCL version of ccl_stricmp */
302 YAZ_EXPORT
303 int ccl_stricmp (const char *s1, const char *s2);
304
305 /** CCL version of ccl_memicmp */
306 YAZ_EXPORT
307 int ccl_memicmp (const char *s1, const char *s2, size_t n);
308
309 /** Search for qualifier 'name' in set 'b'. */
310 YAZ_EXPORT
311 struct ccl_rpn_attr *ccl_qual_search (CCL_parser cclp, const char *name,
312                                       size_t len, int seq);
313
314 /** Create CCL parser */
315 YAZ_EXPORT
316 CCL_parser ccl_parser_create (CCL_bibset bibset);
317
318 /** Destroy CCL parser */
319 YAZ_EXPORT
320 void ccl_parser_destroy (CCL_parser p);
321
322 /** String dup utility (ala strdup) */
323 YAZ_EXPORT
324 char *ccl_strdup (const char *str);
325
326 /** Search for special qualifier */
327 YAZ_EXPORT
328 const char *ccl_qual_search_special (CCL_bibset b, const char *name);
329 /** Pretty-print CCL RPN node tree to WRBUF */
330 YAZ_EXPORT
331 void ccl_pquery (WRBUF w, struct ccl_rpn_node *p);
332
333 YAZ_EXPORT
334 CCL_bibset ccl_parser_get_bibset(CCL_parser cclp);
335
336 YAZ_EXPORT
337 int ccl_parser_get_error(CCL_parser cclp, int *pos);
338
339 #ifndef ccl_assert
340 #define ccl_assert(x) ;
341 #endif
342
343 YAZ_END_CDECL
344
345 #endif
346
347 /*
348  * Local variables:
349  * c-basic-offset: 4
350  * indent-tabs-mode: nil
351  * End:
352  * vim: shiftwidth=4 tabstop=8 expandtab
353  */
354