2 * Copyright (C) 1994-2000, Index Data
4 * Sebastian Hammer, Adam Dickmeiss
7 * Revision 1.10 2000-02-29 13:44:55 adam
8 * Check for config.h (currently not generated).
10 * Revision 1.9 1999/11/30 13:47:12 adam
11 * Improved installation. Moved header files to include/yaz.
13 * Revision 1.8 1999/08/27 09:40:32 adam
14 * Renamed logf function to yaz_log. Removed VC++ project files.
16 * Revision 1.7 1999/06/30 09:10:32 adam
17 * Fixed reading of MS-DOS files.
19 * Revision 1.6 1998/10/13 16:09:55 adam
20 * Added support for arbitrary OID's for tagsets, schemas and attribute sets.
21 * Added support for multiple attribute set references and tagset references
22 * from an abstract syntax file.
23 * Fixed many bad logs-calls in routines that read the various
24 * specifications regarding data1 (*.abs,*.att,...) and made the messages
25 * consistent whenever possible.
26 * Added extra 'lineno' argument to function readconf_line.
28 * Revision 1.5 1997/09/04 07:53:02 adam
29 * Added include readconf.h.
31 * Revision 1.4 1997/05/14 06:54:07 adam
34 * Revision 1.3 1996/05/29 15:48:48 quinn
35 * Added \n to the isspace rule.
37 * Revision 1.2 1996/05/29 10:05:01 quinn
38 * Changed space criteria to support 8-bit characters
40 * Revision 1.1 1995/11/01 13:55:06 quinn
43 * Revision 1.2 1995/10/30 13:54:27 quinn
46 * Revision 1.1 1995/10/10 16:28:18 quinn
59 #include <yaz/readconf.h>
61 #define l_isspace(c) ((c) == '\t' || (c) == ' ' || (c) == '\n' || (c) == '\r')
63 int readconf_line(FILE *f, int *lineno, char *line, int len,
64 char *argv[], int num)
69 while ((p = fgets(line, len, f)))
72 while (*p && l_isspace(*p))
80 for (argc = 0; *p ; argc++)
82 if (*p == '#') /* trailing comment */
85 while (*p && !l_isspace(*p))
90 while (*p && l_isspace(*p))
98 * Read lines of a configuration file.
100 int readconf(char *name, void *rprivate,
101 int (*fun)(char *name, void *rprivate, int argc, char *argv[]))
104 char line[512], *m_argv[50];
108 if (!(f = fopen(name, "r")))
110 yaz_log(LOG_WARN|LOG_ERRNO, "readconf: %s", name);
117 if (!(m_argc = readconf_line(f, &lineno, line, 512, m_argv, 50)))
123 if ((res = (*fun)(name, rprivate, m_argc, m_argv)))