2 * Copyright (c) 1995, the EUROPAGATE consortium (see below).
4 * The EUROPAGATE consortium members are:
6 * University College Dublin
7 * Danmarks Teknologiske Videnscenter
8 * An Chomhairle Leabharlanna
9 * Consejo Superior de Investigaciones Cientificas
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,
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.
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.
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.
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.
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.
48 * $Id: ccl.h,v 1.15 2003-06-24 23:03:04 adam Exp $
52 * Revision 1.10 1996/01/08 08:41:22 adam
55 * Revision 1.9 1995/07/20 08:15:16 adam
56 * Bug fix: Token value for comma and OR were the same!
58 * Revision 1.8 1995/07/11 12:28:34 adam
59 * New function: ccl_token_simple (split into simple tokens) and
60 * ccl_token_del (delete tokens).
62 * Revision 1.7 1995/05/16 09:39:38 adam
65 * Revision 1.6 1995/05/11 14:04:03 adam
66 * Changes in the reading of qualifier(s). New function: ccl_qual_fitem.
67 * New variable ccl_case_sensitive, which controls whether reserved
68 * words and field names are case sensitive or not.
70 * Revision 1.5 1995/02/23 08:32:11 adam
73 * Revision 1.3 1995/02/16 13:20:10 adam
76 * Revision 1.2 1995/02/15 17:43:08 adam
77 * Minor changes to the ccl interface. Bug fix in iso2709 module.
79 * Revision 1.1 1995/02/14 19:55:21 adam
80 * Header files ccl.h/cclp.h are gone! They have been merged an
81 * moved to ../include/ccl.h.
88 #include <yaz/yconfig.h>
90 #include <yaz/xmalloc.h>
91 #include <yaz/wrbuf.h>
95 /* CCL error numbers */
97 #define CCL_ERR_TERM_EXPECTED 1
98 #define CCL_ERR_RP_EXPECTED 2
99 #define CCL_ERR_SETNAME_EXPECTED 3
100 #define CCL_ERR_OP_EXPECTED 4
101 #define CCL_ERR_BAD_RP 5
102 #define CCL_ERR_UNKNOWN_QUAL 6
103 #define CCL_ERR_DOUBLE_QUAL 7
104 #define CCL_ERR_EQ_EXPECTED 8
105 #define CCL_ERR_BAD_RELATION 9
106 #define CCL_ERR_TRUNC_NOT_LEFT 10
107 #define CCL_ERR_TRUNC_NOT_BOTH 11
108 #define CCL_ERR_TRUNC_NOT_RIGHT 12
110 /* attribute pair (type, value) */
111 struct ccl_rpn_attr {
112 struct ccl_rpn_attr *next;
116 #define CCL_RPN_ATTR_NUMERIC 1
117 #define CCL_RPN_ATTR_STRING 2
124 #define CCL_RPN_AND 1
126 #define CCL_RPN_NOT 3
127 #define CCL_RPN_TERM 4
128 #define CCL_RPN_SET 5
129 #define CCL_RPN_PROX 6
131 /* RPN tree structure */
132 struct ccl_rpn_node {
135 struct ccl_rpn_node *p[3];
138 struct ccl_rpn_attr *attr_list;
144 typedef struct ccl_qualifiers *CCL_bibset;
151 1-6 relation (<, <=, =, >=, >, <>)
157 3 any position in field
160 0 word/phrase auto select
167 100 date (un-normalized)
168 101 name (normalized)
169 102 name (un-normalized)
174 #define CCL_BIB1_USE 1
175 #define CCL_BIB1_REL 2
176 #define CCL_BIB1_POS 3
177 #define CCL_BIB1_STR 4
178 #define CCL_BIB1_TRU 5
179 #define CCL_BIB1_COM 6
181 #define CCL_BIB1_STR_WP (-1)
182 #define CCL_BIB1_STR_AND_LIST (-2)
183 #define CCL_BIB1_STR_OR_LIST (-3)
184 #define CCL_BIB1_REL_ORDER (-1)
186 #define CCL_BIB1_TRU_CAN_LEFT (-1)
187 #define CCL_BIB1_TRU_CAN_RIGHT (-2)
188 #define CCL_BIB1_TRU_CAN_BOTH (-3)
189 #define CCL_BIB1_TRU_CAN_NONE (-4)
191 #define CCL_TOK_EOL 0
192 #define CCL_TOK_TERM 1
193 #define CCL_TOK_REL 2
195 #define CCL_TOK_PROX 4
198 #define CCL_TOK_COMMA 7
199 #define CCL_TOK_AND 8
201 #define CCL_TOK_NOT 10
202 #define CCL_TOK_SET 11
209 struct ccl_token *next;
210 struct ccl_token *prev;
214 struct ccl_qualifier {
217 struct ccl_qualifier **sub;
218 struct ccl_rpn_attr *attr_list;
219 struct ccl_qualifier *next;
223 /* current lookahead token */
224 struct ccl_token *look_token;
226 /* holds error code if error occur (and approx position of error) */
228 const char *error_pos;
237 int ccl_case_sensitive;
240 typedef struct ccl_parser *CCL_parser;
242 /* Generate tokens from command string - obeys all CCL opererators */
243 YAZ_EXPORT struct ccl_token *ccl_parser_tokenize (CCL_parser cclp,
244 const char *command);
245 YAZ_EXPORT struct ccl_token *ccl_tokenize (const char *command);
247 /* Generate tokens from command string - oebeys only simple tokens and
249 YAZ_EXPORT struct ccl_token *ccl_token_simple (const char *command);
251 /* Delete token list */
252 YAZ_EXPORT void ccl_token_del (struct ccl_token *list);
254 /* Parse CCL Find command - NULL-terminated string */
255 YAZ_EXPORT struct ccl_rpn_node *ccl_find_str (CCL_bibset bibset,
256 const char *str, int *error, int *pos);
258 /* Parse CCL Find command - Tokens read by ccl_tokenize */
259 YAZ_EXPORT struct ccl_rpn_node *ccl_find (CCL_bibset abibset, struct ccl_token *list,
260 int *error, const char **pos);
262 /* Parse CCL Find command */
263 YAZ_EXPORT struct ccl_rpn_node *ccl_parser_find (CCL_parser cclp, struct ccl_token *list);
265 /* Set various OPs */
266 YAZ_EXPORT void ccl_parser_set_op_and (CCL_parser p, const char *op);
267 YAZ_EXPORT void ccl_parser_set_op_or (CCL_parser p, const char *op);
268 YAZ_EXPORT void ccl_parser_set_op_not (CCL_parser p, const char *op);
269 YAZ_EXPORT void ccl_parser_set_op_set (CCL_parser p, const char *op);
271 YAZ_EXPORT void ccl_parser_set_case (CCL_parser p, int case_sensitivity_flag);
273 /* Return english-readable error message */
274 YAZ_EXPORT const char *ccl_err_msg (int ccl_errno);
276 /* Delete RPN tree returned by ccl_find */
277 YAZ_EXPORT void ccl_rpn_delete (struct ccl_rpn_node *rpn);
279 /* Dump RPN tree in readable format to fd_out */
280 YAZ_EXPORT void ccl_pr_tree (struct ccl_rpn_node *rpn, FILE *fd_out);
282 /* Add CCL qualifier */
283 YAZ_EXPORT void ccl_qual_add (CCL_bibset b, const char *name, int no,
286 YAZ_EXPORT void ccl_qual_add_set (CCL_bibset b, const char *name, int no,
287 int *type, int *value, char **svalue,
290 YAZ_EXPORT void ccl_qual_add_special (CCL_bibset bibset,
291 const char *n, const char *v);
293 YAZ_EXPORT void ccl_qual_add_combi (CCL_bibset b, const char *n,
296 /* Read CCL qualifier list spec from file inf */
297 YAZ_EXPORT void ccl_qual_file (CCL_bibset bibset, FILE *inf);
299 /* Read CCL qualifier list spec from file inf */
300 YAZ_EXPORT int ccl_qual_fname (CCL_bibset bibset, const char *fname);
302 /* Add CCL qualifier by using single-line spec */
303 YAZ_EXPORT void ccl_qual_fitem (CCL_bibset bibset, const char *cp,
304 const char *qual_name);
306 /* Make CCL qualifier set */
307 YAZ_EXPORT CCL_bibset ccl_qual_mk (void);
309 /* Delete CCL qualifier set */
310 YAZ_EXPORT void ccl_qual_rm (CCL_bibset *b);
312 /* Char-to-upper function */
313 extern int (*ccl_toupper)(int c);
315 /* String utilities */
316 YAZ_EXPORT int ccl_stricmp (const char *s1, const char *s2);
317 YAZ_EXPORT int ccl_memicmp (const char *s1, const char *s2, size_t n);
319 /* Search for qualifier 'name' in set 'b'. */
320 YAZ_EXPORT struct ccl_rpn_attr *ccl_qual_search (CCL_parser cclp,
325 /* Create CCL parser */
326 YAZ_EXPORT CCL_parser ccl_parser_create (void);
328 /* Destroy CCL parser */
329 YAZ_EXPORT void ccl_parser_destroy (CCL_parser p);
331 YAZ_EXPORT char *ccl_strdup (const char *str);
333 YAZ_EXPORT const char *ccl_qual_search_special (CCL_bibset b,
336 YAZ_EXPORT void ccl_pquery (WRBUF w, struct ccl_rpn_node *p);
339 #define ccl_assert(x) ;