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