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