Minor cosmetic changes that makes checker gcc happier.
[yaz-moved-to-github.git] / ccl / cclqfile.c
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 /* CCL qualifiers
45  * Europagate, 1995
46  *
47  * $Log: cclqfile.c,v $
48  * Revision 1.10  2001-05-16 07:30:16  adam
49  * Minor cosmetic changes that makes checker gcc happier.
50  *
51  * Revision 1.9  2001/03/07 13:24:40  adam
52  * Member and_not in Z_Operator is kept for backwards compatibility.
53  * Added support for definition of CCL operators in field spec file.
54  *
55  * Revision 1.8  2001/02/21 13:46:53  adam
56  * C++ fixes.
57  *
58  * Revision 1.7  2001/01/24 11:55:31  adam
59  * Fixed nasty bug introduced by previous commit (attribute sets not
60  * properly allocated).
61  *
62  * Revision 1.6  2000/11/16 09:58:02  adam
63  * Implemented local AttributeSet setting for CCL field maps.
64  *
65  * Revision 1.5  2000/10/17 19:50:28  adam
66  * Implemented and-list and or-list for CCL module.
67  *
68  * Revision 1.4  2000/01/31 13:15:21  adam
69  * Removed uses of assert(3). Cleanup of ODR. CCL parser update so
70  * that some characters are not surrounded by spaces in resulting term.
71  * ILL-code updates.
72  *
73  * Revision 1.3  1999/11/30 13:47:11  adam
74  * Improved installation. Moved header files to include/yaz.
75  *
76  * Revision 1.2  1997/04/30 08:52:06  quinn
77  * Null
78  *
79  * Revision 1.1  1996/10/11  15:00:25  adam
80  * CCL parser from Europagate Email gateway 1.0.
81  *
82  * Revision 1.3  1995/05/16  09:39:26  adam
83  * LICENSE.
84  *
85  * Revision 1.2  1995/05/11  14:03:56  adam
86  * Changes in the reading of qualifier(s). New function: ccl_qual_fitem.
87  * New variable ccl_case_sensitive, which controls whether reserved
88  * words and field names are case sensitive or not.
89  *
90  * Revision 1.1  1995/04/17  09:31:45  adam
91  * Improved handling of qualifiers. Aliases or reserved words.
92  *
93  */
94
95 #include <stdio.h>
96 #include <stdlib.h>
97 #include <string.h>
98
99 #include <yaz/ccl.h>
100
101 void ccl_qual_field (CCL_bibset bibset, const char *cp, const char *qual_name)
102 {
103     char qual_spec[128];
104     int pair[256];
105     char *attsets[128];
106     int pair_no = 0;
107
108     while (pair_no < 128)
109     {
110         char *qual_value, *qual_type;
111         char *split, *setp;
112         int no_scan = 0;
113         
114         if (sscanf (cp, "%100s%n", qual_spec, &no_scan) < 1)
115             break;
116
117         if (!(split = strchr (qual_spec, '=')))
118             break;
119         cp += no_scan;
120         
121         *split++ = '\0';
122
123         setp = strchr (qual_spec, ',');
124         if (setp)
125         {
126             *setp++ = '\0';
127             qual_type = setp;
128         }
129         else
130             qual_type = qual_spec;
131         while (pair_no < 128)
132         {
133             int type, value;
134
135             qual_value = split;
136             if ((split = strchr (qual_value, ',')))
137                 *split++ = '\0';
138             value = atoi (qual_value);
139             switch (qual_type[0])
140             {
141             case 'u':
142             case 'U':
143                 type = CCL_BIB1_USE;
144                 break;
145             case 'r':
146             case 'R':
147                 type = CCL_BIB1_REL;
148                 if (!ccl_stricmp (qual_value, "o"))
149                     value = CCL_BIB1_REL_ORDER;
150                 break;                
151             case 'p':
152             case 'P':
153                 type = CCL_BIB1_POS;
154                 break;
155             case 's':
156             case 'S':
157                 type = CCL_BIB1_STR;
158                 if (!ccl_stricmp (qual_value, "pw"))
159                     value = CCL_BIB1_STR_WP;
160                 if (!ccl_stricmp (qual_value, "al"))
161                     value = CCL_BIB1_STR_AND_LIST;
162                 if (!ccl_stricmp (qual_value, "ol"))
163                     value = CCL_BIB1_STR_OR_LIST;
164                 break;                
165             case 't':
166             case 'T':
167                 type = CCL_BIB1_TRU;
168                 if (!ccl_stricmp (qual_value, "l"))
169                     value = CCL_BIB1_TRU_CAN_LEFT;
170                 else if (!ccl_stricmp (qual_value, "r"))
171                     value = CCL_BIB1_TRU_CAN_RIGHT;
172                 else if (!ccl_stricmp (qual_value, "b"))
173                     value = CCL_BIB1_TRU_CAN_BOTH;
174                 else if (!ccl_stricmp (qual_value, "n"))
175                     value = CCL_BIB1_TRU_CAN_NONE;
176                 break;                
177             case 'c':
178             case 'C':
179                 type = CCL_BIB1_COM;
180                 break;
181             default:
182                 type = atoi (qual_type);
183             }
184             pair[pair_no*2] = type;
185             pair[pair_no*2+1] = value;
186             if (setp)
187             {
188                 attsets[pair_no] = (char*) malloc (strlen(qual_spec)+1);
189                 strcpy (attsets[pair_no], qual_spec);
190             }
191             else
192                 attsets[pair_no] = 0;
193             pair_no++;
194             if (!split)
195                 break;
196         }
197     }
198     ccl_qual_add_set (bibset, qual_name, pair_no, pair, attsets);
199 }
200
201 void ccl_qual_fitem (CCL_bibset bibset, const char *cp, const char *qual_name)
202 {
203     if (*qual_name == '@')
204         ccl_qual_add_special(bibset, qual_name+1, cp);
205     else
206         ccl_qual_field(bibset, cp, qual_name);
207 }
208
209 /*
210  * ccl_qual_file: Read bibset definition from file.
211  * bibset:  Bibset
212  * inf:     FILE pointer.
213  *
214  * Each line format is:
215  *  <name> <t>=<v> <t>=<v> ....
216  *  Where <name> is name of qualifier;
217  *  <t>=<v> is a attribute definition pair where <t> is one of: 
218  *     u(use), r(relation), p(position), t(truncation), c(completeness) 
219  *     or plain integer.
220  *  <v> is an integer or special pseudo-value.
221  */
222 void ccl_qual_file (CCL_bibset bibset, FILE *inf)
223 {
224     char line[256];
225     char *cp, *cp1;
226     char qual_name[128];
227
228     while (fgets (line, 255, inf))
229     {
230         int  no_scan = 0;
231
232         cp = line;
233         if (*cp == '#')
234             continue;        /* ignore lines starting with # */
235         if (sscanf (cp, "%100s%n", qual_name, &no_scan) < 1)
236             continue;        /* also ignore empty lines */
237         cp += no_scan;
238         cp1 = strchr(cp, '#');
239         if (cp1)
240             *cp1 = '\0';
241         ccl_qual_fitem (bibset, cp, qual_name);
242     }
243 }
244
245 int ccl_qual_fname (CCL_bibset bibset, const char *fname)
246 {
247     FILE *inf;
248     inf = fopen (fname, "r");
249     if (!inf)
250         return -1;
251     ccl_qual_file (bibset, inf);
252     return 0;
253 }