1 /* Common code for file-based database parsers in nss_files module.
2 Copyright (C) 1996 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If
17 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
18 Cambridge, MA 02139, USA. */
25 /* These symbols are defined by the including source file:
27 ENTNAME -- database name of the structure and functions (hostent, pwent).
28 STRUCTURE -- struct name, define only if not ENTNAME (passwd, group).
29 DATABASE -- string of the database file's name ("hosts", "passwd").
31 ENTDATA -- if defined, `struct ENTDATA' is used by the parser to store
32 things pointed to by the resultant `struct STRUCTURE'.
34 NEED_H_ERRNO - defined iff an arg `int *herrnop' is used.
36 Also see files-XXX.c. */
38 #define CONCAT(a,b) CONCAT1(a,b)
39 #define CONCAT1(a,b) a##b
42 #define STRUCTURE ENTNAME
49 struct ENTDATA entdata;
50 #define ENTDATA_DECL(data) struct ENTDATA *const entdata = &data->entdata;
52 #define ENTDATA_DECL(data)
58 /* The function can't be exported, because the entdata structure
59 is defined only in files-foo.c. */
60 #define parser_stclass static inline
62 /* Export the line parser function so it can be used in nss_db. */
63 #define parser_stclass /* Global */
64 #define parse_line CONCAT(_nss_files_parse_,ENTNAME)
70 /* The parser is defined in a different module. */
71 extern int parse_line (char *line, struct STRUCTURE *result,
72 struct parser_data *data, int datalen);
74 #define LINE_PARSER(EOLSET, BODY) /* Do nothing */
78 /* Define a line parsing function. */
80 #define LINE_PARSER(EOLSET, BODY) \
82 parse_line (char *line, struct STRUCTURE *result, \
83 struct parser_data *data, int datalen) \
86 char *p = strpbrk (line, EOLSET "\n"); \
90 TRAILING_LIST_PARSER; \
95 #define STRING_FIELD(variable, terminator_p, swallow) \
98 while (*line != '\0' && !terminator_p (*line)) \
105 while (swallow && terminator_p (*line)); \
109 #define INT_FIELD(variable, terminator_p, swallow, base, convert) \
112 variable = convert (strtol (line, &endp, base)); \
115 else if (terminator_p (*endp)) \
118 while (swallow && terminator_p (*endp)); \
119 else if (*endp != '\0') \
124 #define ISCOLON(c) ((c) == ':')
127 #ifndef TRAILING_LIST_MEMBER
128 #define TRAILING_LIST_PARSER /* Nothing to do. */
131 #define TRAILING_LIST_PARSER \
133 char **list = parse_list (line, data, datalen); \
135 result->TRAILING_LIST_MEMBER = list; \
140 static inline char **
141 parse_list (char *line, struct parser_data *data, int datalen)
143 char *eol, **list, **p;
145 if (line >= data->linebuffer && line < (char *) data + datalen)
146 /* Find the end of the line buffer, we will use the space in DATA after
147 it for storing the vector of pointers. */
148 eol = strchr (line, '\0') + 1;
150 /* LINE does not point within DATA->linebuffer, so that space is
151 not being used for scratch space right now. We can use all of
152 it for the pointer vector storage. */
153 eol = data->linebuffer;
154 /* Adjust the pointer so it is aligned for storing pointers. */
155 eol += __alignof__ (char *) - 1;
156 eol -= (eol - (char *) 0) % __alignof__ (char *);
157 /* We will start the storage here for the vector of pointers. */
158 list = (char **) eol;
165 if ((char *) &p[1] - (char *) data > datalen)
167 /* We cannot fit another pointer in the buffer. */
177 if (TRAILING_LIST_SEPARATOR_P (*line))
183 while (TRAILING_LIST_SEPARATOR_P (*line));
186 else if (*line == '\0' || *line == '\n')
188 /* End of the line. */
204 #endif /* EXTERN_PARSER */
207 #define LOOKUP_NAME(nameelt, aliaselt) \
210 if (! strcmp (name, result->nameelt)) \
212 for (ap = result->aliaselt; *ap; ++ap) \
213 if (! strcmp (name, *ap)) \
221 /* This is defined by db-*.c to include "../nss_db/db-XXX.c" instead. */
223 #define GENERIC "files-XXX.c"