Source restructure. yaz-marcdump part of installation
[yaz-moved-to-github.git] / src / 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  * $Id: cclqfile.c,v 1.1 2003-10-27 12:21:30 adam Exp $
48  *
49  * Old Europagate Log:
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 <string.h>
67
68 #include <yaz/ccl.h>
69
70 void ccl_qual_field (CCL_bibset bibset, const char *cp, const char *qual_name)
71 {
72     char qual_spec[128];
73     int type_ar[128];
74     int value_ar[128];
75     char *svalue_ar[128];
76     char *attsets[128];
77     int pair_no = 0;
78
79     while (pair_no < 128)
80     {
81         char *qual_value, *qual_type;
82         char *split, *setp;
83         int no_scan = 0;
84         
85         if (sscanf (cp, "%100s%n", qual_spec, &no_scan) < 1)
86             break;
87
88         if (!(split = strchr (qual_spec, '=')))
89         {
90             /* alias specification .. */
91             if (pair_no == 0)
92             {
93                 ccl_qual_add_combi (bibset, qual_name, cp);
94                 return;
95             }
96             break;
97         }
98         /* [set,]type=value ... */
99         cp += no_scan;
100         
101         *split++ = '\0';
102
103         setp = strchr (qual_spec, ',');
104         if (setp)
105         {
106             /* set,type=value ... */
107             *setp++ = '\0';
108             qual_type = setp;
109         }
110         else
111         {
112             /* type=value ... */
113             qual_type = qual_spec;
114         }
115         while (pair_no < 128)
116         {
117             int type, value;
118
119             qual_value = split;
120             if ((split = strchr (qual_value, ',')))
121                 *split++ = '\0';
122
123             value = 0;
124             switch (qual_type[0])
125             {
126             case 'u':
127             case 'U':
128                 type = CCL_BIB1_USE;
129                 break;
130             case 'r':
131             case 'R':
132                 type = CCL_BIB1_REL;
133                 if (!ccl_stricmp (qual_value, "o"))
134                     value = CCL_BIB1_REL_ORDER;
135                 break;                
136             case 'p':
137             case 'P':
138                 type = CCL_BIB1_POS;
139                 break;
140             case 's':
141             case 'S':
142                 type = CCL_BIB1_STR;
143                 if (!ccl_stricmp (qual_value, "pw"))
144                     value = CCL_BIB1_STR_WP;
145                 if (!ccl_stricmp (qual_value, "al"))
146                     value = CCL_BIB1_STR_AND_LIST;
147                 if (!ccl_stricmp (qual_value, "ol"))
148                     value = CCL_BIB1_STR_OR_LIST;
149                 break;                
150             case 't':
151             case 'T':
152                 type = CCL_BIB1_TRU;
153                 if (!ccl_stricmp (qual_value, "l"))
154                     value = CCL_BIB1_TRU_CAN_LEFT;
155                 else if (!ccl_stricmp (qual_value, "r"))
156                     value = CCL_BIB1_TRU_CAN_RIGHT;
157                 else if (!ccl_stricmp (qual_value, "b"))
158                     value = CCL_BIB1_TRU_CAN_BOTH;
159                 else if (!ccl_stricmp (qual_value, "n"))
160                     value = CCL_BIB1_TRU_CAN_NONE;
161                 break;                
162             case 'c':
163             case 'C':
164                 type = CCL_BIB1_COM;
165                 break;
166             default:
167                 type = atoi (qual_type);
168             }
169
170             type_ar[pair_no] = type;
171
172             if (value)
173             {
174                 value_ar[pair_no] = value;
175                 svalue_ar[pair_no] = 0;
176             }
177             else if (*qual_value >= '0' && *qual_value <= '9')
178             {
179                 value_ar[pair_no] = atoi (qual_value);
180                 svalue_ar[pair_no] = 0;
181             }
182             else
183             {
184                 size_t len;
185                 if (split)
186                     len = split - qual_value;
187                 else
188                     len = strlen(qual_value);
189                 svalue_ar[pair_no] = xmalloc(len+1);
190                 memcpy(svalue_ar[pair_no], qual_value, len);
191                 svalue_ar[pair_no][len] = '\0';
192             }
193             if (setp)
194             {
195                 attsets[pair_no] = (char*) xmalloc (strlen(qual_spec)+1);
196                 strcpy (attsets[pair_no], qual_spec);
197             }
198             else
199                 attsets[pair_no] = 0;
200             pair_no++;
201             if (!split)
202                 break;
203         }
204     }
205     ccl_qual_add_set (bibset, qual_name, pair_no, type_ar, value_ar, svalue_ar,
206                       attsets);
207 }
208
209 void ccl_qual_fitem (CCL_bibset bibset, const char *cp, const char *qual_name)
210 {
211     if (*qual_name == '@')
212         ccl_qual_add_special(bibset, qual_name+1, cp);
213     else
214         ccl_qual_field(bibset, cp, qual_name);
215 }
216
217 /*
218  * ccl_qual_file: Read bibset definition from file.
219  * bibset:  Bibset
220  * inf:     FILE pointer.
221  *
222  * Each line format is:
223  *  <name> <t>=<v> <t>=<v> ....
224  *  Where <name> is name of qualifier;
225  *  <t>=<v> is a attribute definition pair where <t> is one of: 
226  *     u(use), r(relation), p(position), t(truncation), c(completeness) 
227  *     or plain integer.
228  *  <v> is an integer or special pseudo-value.
229  */
230 void ccl_qual_file (CCL_bibset bibset, FILE *inf)
231 {
232     char line[256];
233     char *cp, *cp1;
234     char qual_name[128];
235
236     while (fgets (line, 255, inf))
237     {
238         int  no_scan = 0;
239
240         cp = line;
241         if (*cp == '#')
242             continue;        /* ignore lines starting with # */
243         if (sscanf (cp, "%100s%n", qual_name, &no_scan) < 1)
244             continue;        /* also ignore empty lines */
245         cp += no_scan;
246         cp1 = strchr(cp, '#');
247         if (cp1)
248             *cp1 = '\0';
249         ccl_qual_fitem (bibset, cp, qual_name);
250     }
251 }
252
253 int ccl_qual_fname (CCL_bibset bibset, const char *fname)
254 {
255     FILE *inf;
256     inf = fopen (fname, "r");
257     if (!inf)
258         return -1;
259     ccl_qual_file (bibset, inf);
260     fclose (inf);
261     return 0;
262 }