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