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