Added several type casts for C++ compile
[yaz-moved-to-github.git] / src / 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  * $Id: cclqfile.c,v 1.5 2004-10-02 13:28:26 adam Exp $
48  *
49  * Old Europagate Log:
50  *
51  * Revision 1.3  1995/05/16  09:39:26  adam
52  * LICENSE.
53  *
54  * Revision 1.2  1995/05/11  14:03:56  adam
55  * Changes in the reading of qualifier(s). New function: ccl_qual_fitem.
56  * New variable ccl_case_sensitive, which controls whether reserved
57  * words and field names are case sensitive or not.
58  *
59  * Revision 1.1  1995/04/17  09:31:45  adam
60  * Improved handling of qualifiers. Aliases or reserved words.
61  *
62  */
63
64 #include <stdio.h>
65 #include <stdlib.h>
66 #include <string.h>
67
68 #include <yaz/ccl.h>
69
70 void ccl_qual_field (CCL_bibset bibset, const char *cp, const char *qual_name)
71 {
72     char qual_spec[128];
73     int type_ar[128];
74     int value_ar[128];
75     char *svalue_ar[128];
76     char *attsets[128];
77     int pair_no = 0;
78
79     while (pair_no < 128)
80     {
81         char *qual_value, *qual_type;
82         char *split, *setp;
83         int no_scan = 0;
84         
85         if (sscanf (cp, "%100s%n", qual_spec, &no_scan) < 1)
86             break;
87
88         if (!(split = strchr (qual_spec, '=')))
89         {
90             /* alias specification .. */
91             if (pair_no == 0)
92             {
93                 ccl_qual_add_combi (bibset, qual_name, cp);
94                 return;
95             }
96             break;
97         }
98         /* [set,]type=value ... */
99         cp += no_scan;
100         
101         *split++ = '\0';
102
103         setp = strchr (qual_spec, ',');
104         if (setp)
105         {
106             /* set,type=value ... */
107             *setp++ = '\0';
108             qual_type = setp;
109         }
110         else
111         {
112             /* type=value ... */
113             qual_type = qual_spec;
114         }
115         while (pair_no < 128)
116         {
117             int type, value;
118
119             qual_value = split;
120             if ((split = strchr (qual_value, ',')))
121                 *split++ = '\0';
122
123             value = 0;
124             switch (qual_type[0])
125             {
126             case 'u':
127             case 'U':
128                 type = CCL_BIB1_USE;
129                 break;
130             case 'r':
131             case 'R':
132                 type = CCL_BIB1_REL;
133                 if (!ccl_stricmp (qual_value, "o"))
134                     value = CCL_BIB1_REL_ORDER;
135                 else if (!ccl_stricmp (qual_value, "r"))
136                     value = CCL_BIB1_REL_PORDER;
137                 break;                
138             case 'p':
139             case 'P':
140                 type = CCL_BIB1_POS;
141                 break;
142             case 's':
143             case 'S':
144                 type = CCL_BIB1_STR;
145                 if (!ccl_stricmp (qual_value, "pw"))
146                     value = CCL_BIB1_STR_WP;
147                 if (!ccl_stricmp (qual_value, "al"))
148                     value = CCL_BIB1_STR_AND_LIST;
149                 if (!ccl_stricmp (qual_value, "ol"))
150                     value = CCL_BIB1_STR_OR_LIST;
151                 break;                
152             case 't':
153             case 'T':
154                 type = CCL_BIB1_TRU;
155                 if (!ccl_stricmp (qual_value, "l"))
156                     value = CCL_BIB1_TRU_CAN_LEFT;
157                 else if (!ccl_stricmp (qual_value, "r"))
158                     value = CCL_BIB1_TRU_CAN_RIGHT;
159                 else if (!ccl_stricmp (qual_value, "b"))
160                     value = CCL_BIB1_TRU_CAN_BOTH;
161                 else if (!ccl_stricmp (qual_value, "n"))
162                     value = CCL_BIB1_TRU_CAN_NONE;
163                 break;                
164             case 'c':
165             case 'C':
166                 type = CCL_BIB1_COM;
167                 break;
168             default:
169                 type = atoi (qual_type);
170             }
171
172             type_ar[pair_no] = type;
173
174             if (value)
175             {
176                 value_ar[pair_no] = value;
177                 svalue_ar[pair_no] = 0;
178             }
179             else if (*qual_value >= '0' && *qual_value <= '9')
180             {
181                 value_ar[pair_no] = atoi (qual_value);
182                 svalue_ar[pair_no] = 0;
183             }
184             else
185             {
186                 size_t len;
187                 if (split)
188                     len = split - qual_value;
189                 else
190                     len = strlen(qual_value);
191                 svalue_ar[pair_no] = (char *) xmalloc(len+1);
192                 memcpy(svalue_ar[pair_no], qual_value, len);
193                 svalue_ar[pair_no][len] = '\0';
194             }
195             if (setp)
196             {
197                 attsets[pair_no] = (char*) xmalloc (strlen(qual_spec)+1);
198                 strcpy (attsets[pair_no], qual_spec);
199             }
200             else
201                 attsets[pair_no] = 0;
202             pair_no++;
203             if (!split)
204                 break;
205         }
206     }
207     ccl_qual_add_set (bibset, qual_name, pair_no, type_ar, value_ar, svalue_ar,
208                       attsets);
209 }
210
211 void ccl_qual_fitem (CCL_bibset bibset, const char *cp, const char *qual_name)
212 {
213     if (*qual_name == '@')
214         ccl_qual_add_special(bibset, qual_name+1, cp);
215     else
216         ccl_qual_field(bibset, cp, qual_name);
217 }
218
219 void ccl_qual_buf(CCL_bibset bibset, const char *buf)
220 {
221     const char *cp1 = buf;
222     char line[256];
223     while (1)
224     {
225         const char *cp2 = cp1;
226         int len;
227         while (*cp2 && !strchr("\r\n", *cp2))
228             cp2++;
229         len = cp2 - cp1;
230         if (len > 0)
231         {
232             if (len >= (sizeof(line)-1))
233                 len = sizeof(line)-1;
234             memcpy(line, cp1, len);
235             line[len] = '\0';
236             ccl_qual_line(bibset, line);
237         }
238         if (!*cp2)
239             break;
240         cp1 = cp2+1;
241     }
242 }
243
244 void ccl_qual_line(CCL_bibset bibset, char *line)
245 {
246     int  no_scan = 0;
247     char qual_name[128];
248     char *cp1, *cp = line;
249     
250     if (*cp == '#')
251         return;        /* ignore lines starting with # */
252     if (sscanf (cp, "%100s%n", qual_name, &no_scan) < 1)
253         return;        /* also ignore empty lines */
254     cp += no_scan;
255     cp1 = strchr(cp, '#');
256     if (cp1)
257         *cp1 = '\0';
258     ccl_qual_fitem (bibset, cp, qual_name);
259 }
260
261 /*
262  * ccl_qual_file: Read bibset definition from file.
263  * bibset:  Bibset
264  * inf:     FILE pointer.
265  *
266  * Each line format is:
267  *  <name> <t>=<v> <t>=<v> ....
268  *  Where <name> is name of qualifier;
269  *  <t>=<v> is a attribute definition pair where <t> is one of: 
270  *     u(use), r(relation), p(position), t(truncation), c(completeness) 
271  *     or plain integer.
272  *  <v> is an integer or special pseudo-value.
273  */
274 void ccl_qual_file (CCL_bibset bibset, FILE *inf)
275 {
276     char line[256];
277
278     while (fgets (line, 255, inf))
279         ccl_qual_line(bibset, line);
280 }
281
282 int ccl_qual_fname (CCL_bibset bibset, const char *fname)
283 {
284     FILE *inf;
285     inf = fopen (fname, "r");
286     if (!inf)
287         return -1;
288     ccl_qual_file (bibset, inf);
289     fclose (inf);
290     return 0;
291 }