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