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