Expand PMF_FN_* macros.
[netbsd-mini2440.git] / external / bsd / am-utils / dist / amd / conf_parse.y
bloba6ed281bec20cf4a8757a15e01828ea7bccb3a19
1 /* $NetBSD$ */
3 /*
4 * Copyright (c) 1997-2009 Erez Zadok
5 * Copyright (c) 1989 Jan-Simon Pendry
6 * Copyright (c) 1989 Imperial College of Science, Technology & Medicine
7 * Copyright (c) 1989 The Regents of the University of California.
8 * All rights reserved.
10 * This code is derived from software contributed to Berkeley by
11 * Jan-Simon Pendry at Imperial College, London.
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
15 * are met:
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. All advertising materials mentioning features or use of this software
22 * must display the following acknowledgment:
23 * This product includes software developed by the University of
24 * California, Berkeley and its contributors.
25 * 4. Neither the name of the University nor the names of its contributors
26 * may be used to endorse or promote products derived from this software
27 * without specific prior written permission.
29 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 * SUCH DAMAGE.
42 * File: am-utils/amd/conf_parse.y
47 #ifdef HAVE_CONFIG_H
48 # include <config.h>
49 #endif /* HAVE_CONFIG_H */
50 #include <am_defs.h>
51 #include <amd.h>
53 extern char *yytext;
54 extern int ayylineno;
55 extern int yylex(void);
57 static int yyerror(const char *s);
58 static int retval;
59 static char *header_section = NULL; /* start with no header section */
61 #define YYDEBUG 1
63 #define PARSE_DEBUG 0
65 #if PARSE_DEBUG
66 # define dprintf(f,s) fprintf(stderr, (f), ayylineno, (s))
67 # define amu_return(v)
68 #else /* not PARSE_DEBUG */
69 # define dprintf(f,s)
70 # define amu_return(v) return((v))
71 #endif /* not PARSE_DEBUG */
75 %union {
76 char *strtype;
79 %token LEFT_BRACKET RIGHT_BRACKET EQUAL
80 %token NEWLINE
81 %token <strtype> NONWS_STRING
82 %token <strtype> NONWSEQ_STRING
83 %token <strtype> QUOTED_NONWSEQ_STRING
85 %start file
88 /****************************************************************************/
89 file : { yydebug = PARSE_DEBUG; } newlines map_sections
90 | { yydebug = PARSE_DEBUG; } map_sections
93 newlines : NEWLINE
94 | NEWLINE newlines
97 map_sections : map_section
98 | map_section map_sections
101 map_section : sec_header kv_pairs
104 sec_header : LEFT_BRACKET NONWS_STRING RIGHT_BRACKET NEWLINE
106 if (yydebug)
107 fprintf(stderr, "sec_header1 = \"%s\"\n", $2);
108 header_section = $2;
112 kv_pairs : kv_pair
113 | kv_pair kv_pairs
116 kv_pair : NONWS_STRING EQUAL NONWS_STRING NEWLINE
118 if (yydebug)
119 fprintf(stderr,"parse1: key=\"%s\", val=\"%s\"\n", $1, $3);
120 retval = set_conf_kv(header_section, $1, $3);
121 if (retval != 0) {
122 yyerror("syntax error");
123 YYABORT;
126 | NONWS_STRING EQUAL NONWSEQ_STRING NEWLINE
128 if (yydebug)
129 fprintf(stderr,"parse2: key=\"%s\", val=\"%s\"\n", $1, $3);
130 retval = set_conf_kv(header_section, $1, $3);
131 if (retval != 0) {
132 yyerror("syntax error");
133 YYABORT;
136 | NONWS_STRING EQUAL QUOTED_NONWSEQ_STRING NEWLINE
138 if (yydebug)
139 fprintf(stderr,"parse3: key=\"%s\", val=\"%s\"\n", $1, $3);
140 retval = set_conf_kv(header_section, $1, $3);
141 if (retval != 0) {
142 yyerror("syntax error");
143 YYABORT;
146 | NEWLINE
149 /****************************************************************************/
152 static int
153 yyerror(const char *s)
155 fprintf(stderr, "AMDCONF: %s on line %d (section %s)\n",
156 s, ayylineno,
157 (header_section ? header_section : "null"));
158 exit(1);
159 return 1; /* to full compilers that insist on a return statement */