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