2 * Copyright (c) 1995, the EUROPAGATE consortium (see below).
4 * The EUROPAGATE consortium members are:
6 * University College Dublin
7 * Danmarks Teknologiske Videnscenter
8 * An Chomhairle Leabharlanna
9 * Consejo Superior de Investigaciones Cientificas
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,
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.
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.
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.
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.
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.
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.
51 * Revision 1.2 1997/04/30 08:52:06 quinn
54 * Revision 1.1 1996/10/11 15:00:25 adam
55 * CCL parser from Europagate Email gateway 1.0.
57 * Revision 1.3 1995/05/16 09:39:26 adam
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.
65 * Revision 1.1 1995/04/17 09:31:45 adam
66 * Improved handling of qualifiers. Aliases or reserved words.
77 void ccl_qual_fitem (CCL_bibset bibset, const char *cp, const char *qual_name)
89 if (sscanf (cp, "%s%n", qual_type, &no_scan) != 1)
92 if (!(split = strchr (qual_type, '=')))
102 if ((split = strchr (qual_value, ',')))
104 value = atoi (qual_value);
105 switch (qual_type[0])
114 if (!ccl_stricmp (qual_value, "o"))
115 value = CCL_BIB1_REL_ORDER;
124 if (!ccl_stricmp (qual_value, "pw"))
125 value = CCL_BIB1_STR_WP;
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;
144 type = atoi (qual_type);
146 pair[pair_no*2] = type;
147 pair[pair_no*2+1] = value;
153 ccl_qual_add (bibset, qual_name, pair_no, pair);
157 * ccl_qual_file: Read bibset definition from file.
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)
167 * <v> is an integer or special pseudo-value.
169 void ccl_qual_file (CCL_bibset bibset, FILE *inf)
176 while (fgets (line, 255, inf))
180 continue; /* ignore lines starting with # */
181 if (sscanf (cp, "%s%n", qual_name, &no_scan) != 1)
182 continue; /* also ignore empty lines */
184 ccl_qual_fitem (bibset, cp, qual_name);