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