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.
49 * Revision 1.9 1998-02-11 11:53:33 adam
50 * Changed code so that it compiles as C++.
52 * Revision 1.8 1997/09/29 09:01:19 adam
53 * Changed CCL parser to be thread safe. New type, CCL-parser, declared
54 * and a create/destructor ccl_parser_create/ccl_parser_destroy has been
57 * Revision 1.7 1997/09/01 08:49:47 adam
58 * New windows NT/95 port using MSV5.0. To export DLL functions the
59 * YAZ_EXPORT modifier was added. Defined in yconfig.h.
61 * Revision 1.6 1997/05/14 06:53:37 adam
64 * Revision 1.5 1997/04/30 08:52:08 quinn
67 * Revision 1.4 1996/10/11 15:02:26 adam
68 * CCL parser from Europagate Email gateway 1.0.
70 * Revision 1.10 1996/01/08 08:41:22 adam
73 * Revision 1.9 1995/07/20 08:15:16 adam
74 * Bug fix: Token value for comma and OR were the same!
76 * Revision 1.8 1995/07/11 12:28:34 adam
77 * New function: ccl_token_simple (split into simple tokens) and
78 * ccl_token_del (delete tokens).
80 * Revision 1.7 1995/05/16 09:39:38 adam
83 * Revision 1.6 1995/05/11 14:04:03 adam
84 * Changes in the reading of qualifier(s). New function: ccl_qual_fitem.
85 * New variable ccl_case_sensitive, which controls whether reserved
86 * words and field names are case sensitive or not.
88 * Revision 1.5 1995/02/23 08:32:11 adam
91 * Revision 1.3 1995/02/16 13:20:10 adam
94 * Revision 1.2 1995/02/15 17:43:08 adam
95 * Minor changes to the ccl interface. Bug fix in iso2709 module.
97 * Revision 1.1 1995/02/14 19:55:21 adam
98 * Header files ccl.h/cclp.h are gone! They have been merged an
99 * moved to ../include/ccl.h.
110 /* CCL error numbers */
112 #define CCL_ERR_TERM_EXPECTED 1
113 #define CCL_ERR_RP_EXPECTED 2
114 #define CCL_ERR_SETNAME_EXPECTED 3
115 #define CCL_ERR_OP_EXPECTED 4
116 #define CCL_ERR_BAD_RP 5
117 #define CCL_ERR_UNKNOWN_QUAL 6
118 #define CCL_ERR_DOUBLE_QUAL 7
119 #define CCL_ERR_EQ_EXPECTED 8
120 #define CCL_ERR_BAD_RELATION 9
121 #define CCL_ERR_TRUNC_NOT_LEFT 10
122 #define CCL_ERR_TRUNC_NOT_BOTH 11
123 #define CCL_ERR_TRUNC_NOT_RIGHT 12
125 /* attribute pair (type, value) */
126 struct ccl_rpn_attr {
127 struct ccl_rpn_attr *next;
132 #define CCL_RPN_AND 1
134 #define CCL_RPN_NOT 3
135 #define CCL_RPN_TERM 4
136 #define CCL_RPN_SET 5
137 #define CCL_RPN_PROX 6
139 /* RPN tree structure */
140 struct ccl_rpn_node {
143 struct ccl_rpn_node *p[2];
146 struct ccl_rpn_attr *attr_list;
152 typedef struct ccl_qualifiers *CCL_bibset;
159 1-6 relation (<, <=, =, >=, >, <>)
165 3 any position in field
168 0 word/phrase auto select
175 100 date (un-normalized)
176 101 name (normalized)
177 102 name (un-normalized)
182 #define CCL_BIB1_USE 1
183 #define CCL_BIB1_REL 2
184 #define CCL_BIB1_POS 3
185 #define CCL_BIB1_STR 4
186 #define CCL_BIB1_TRU 5
187 #define CCL_BIB1_COM 6
189 #define CCL_BIB1_STR_WP (-1)
190 #define CCL_BIB1_REL_ORDER (-1)
192 #define CCL_BIB1_TRU_CAN_LEFT (-1)
193 #define CCL_BIB1_TRU_CAN_RIGHT (-2)
194 #define CCL_BIB1_TRU_CAN_BOTH (-3)
195 #define CCL_BIB1_TRU_CAN_NONE (-4)
197 #define CCL_TOK_EOL 0
198 #define CCL_TOK_TERM 1
199 #define CCL_TOK_REL 2
201 #define CCL_TOK_PROX 4
204 #define CCL_TOK_COMMA 7
205 #define CCL_TOK_AND 8
207 #define CCL_TOK_NOT 10
208 #define CCL_TOK_MINUS 11
209 #define CCL_TOK_SET 12
216 struct ccl_token *next;
217 struct ccl_token *prev;
221 struct ccl_qualifier {
223 struct ccl_rpn_attr *attr_list;
224 struct ccl_qualifier *next;
228 /* current lookahead token */
229 struct ccl_token *look_token;
231 /* holds error code if error occur (and approx position of error) */
233 const char *error_pos;
242 int ccl_case_sensitive;
245 typedef struct ccl_parser *CCL_parser;
247 /* Generate tokens from command string - obeys all CCL opererators */
248 struct ccl_token *ccl_parser_tokenize (CCL_parser cclp,
249 const char *command);
250 struct ccl_token *ccl_tokenize (const char *command);
252 /* Generate tokens from command string - oebeys only simple tokens and
254 struct ccl_token *ccl_token_simple (const char *command);
256 /* Delete token list */
257 void ccl_token_del (struct ccl_token *list);
259 /* Parse CCL Find command - NULL-terminated string */
260 struct ccl_rpn_node *ccl_find_str (CCL_bibset bibset,
261 const char *str, int *error, int *pos);
263 /* Parse CCL Find command - Tokens read by ccl_tokenize */
264 struct ccl_rpn_node *ccl_find (CCL_bibset abibset, struct ccl_token *list,
265 int *error, const char **pos);
267 /* Return english-readable error message */
268 const char *ccl_err_msg (int ccl_errno);
270 /* Delete RPN tree returned by ccl_find */
271 void ccl_rpn_delete (struct ccl_rpn_node *rpn);
273 /* Dump RPN tree in readable format to fd_out */
274 void ccl_pr_tree (struct ccl_rpn_node *rpn, FILE *fd_out);
276 /* Add CCL qualifier */
277 void ccl_qual_add (CCL_bibset b, const char *name, int no, int *attr);
279 /* Read CCL qualifier list spec from file inf */
280 void ccl_qual_file (CCL_bibset bibset, FILE *inf);
282 /* Add CCL qualifier by using single-line spec */
283 void ccl_qual_fitem (CCL_bibset bibset, const char *cp, const char *qual_name);
285 /* Make CCL qualifier set */
286 CCL_bibset ccl_qual_mk (void);
288 /* Delete CCL qualifier set */
289 void ccl_qual_rm (CCL_bibset *b);
291 /* Char-to-upper function */
292 extern int (*ccl_toupper)(int c);
294 /* String utilities */
295 int ccl_stricmp (const char *s1, const char *s2);
296 int ccl_memicmp (const char *s1, const char *s2, size_t n);
298 /* Search for qualifier 'name' in set 'b'. */
299 struct ccl_rpn_attr *ccl_qual_search (CCL_parser cclp, const char *name,
302 /* Create CCL parser */
303 CCL_parser ccl_parser_create (void);
305 /* Destroy CCL parser */
306 void ccl_parser_destroy (CCL_parser p);