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