2 * Copyright (c) 1985 Sun Microsystems, Inc.
3 * Copyright (c) 1980, 1993
4 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * @(#)parse.c 8.1 (Berkeley) 6/6/93
36 * $FreeBSD: src/usr.bin/indent/parse.c,v 1.3.2.3 2001/12/06 19:28:47 schweikh Exp $
37 * $DragonFly: src/usr.bin/indent/parse.c,v 1.3 2005/04/10 20:55:38 drhodus Exp $
43 #include "indent_globs.h"
44 #include "indent_codes.h"
47 static void reduce(void);
50 parse(int tk
) /* tk: the code for the construct scanned */
55 printf("%2d - %s\n", tk
, token
);
58 while (ps
.p_stack
[ps
.tos
] == ifhead
&& tk
!= elselit
) {
59 /* true if we have an if without an else */
60 ps
.p_stack
[ps
.tos
] = stmt
; /* apply the if(..) stmt ::= stmt
62 reduce(); /* see if this allows any reduction */
66 switch (tk
) { /* go on and figure out what to do with the
69 case decl
: /* scanned a declaration word */
70 ps
.search_brace
= btype_2
;
71 /* indicate that following brace should be on same line */
72 if (ps
.p_stack
[ps
.tos
] != decl
) { /* only put one declaration
74 break_comma
= true; /* while in declaration, newline should be
75 * forced after comma */
76 ps
.p_stack
[++ps
.tos
] = decl
;
77 ps
.il
[ps
.tos
] = ps
.i_l_follow
;
79 if (ps
.ljust_decl
) {/* only do if we want left justified
82 for (i
= ps
.tos
- 1; i
> 0; --i
)
83 if (ps
.p_stack
[i
] == decl
)
84 ++ps
.ind_level
; /* indentation is number of
85 * declaration levels deep we are */
86 ps
.i_l_follow
= ps
.ind_level
;
91 case ifstmt
: /* scanned if (...) */
92 if (ps
.p_stack
[ps
.tos
] == elsehead
&& ps
.else_if
) /* "else if ..." */
93 ps
.i_l_follow
= ps
.il
[ps
.tos
];
94 case dolit
: /* 'do' */
95 case forstmt
: /* for (...) */
96 ps
.p_stack
[++ps
.tos
] = tk
;
97 ps
.il
[ps
.tos
] = ps
.ind_level
= ps
.i_l_follow
;
98 ++ps
.i_l_follow
; /* subsequent statements should be indented 1 */
99 ps
.search_brace
= btype_2
;
102 case lbrace
: /* scanned { */
103 break_comma
= false; /* don't break comma in an initial list */
104 if (ps
.p_stack
[ps
.tos
] == stmt
|| ps
.p_stack
[ps
.tos
] == decl
105 || ps
.p_stack
[ps
.tos
] == stmtl
)
106 ++ps
.i_l_follow
; /* it is a random, isolated stmt group or a
109 if (s_code
== e_code
) {
111 * only do this if there is nothing on the line
115 * it is a group as part of a while, for, etc.
117 if (ps
.p_stack
[ps
.tos
] == swstmt
&& ps
.case_indent
>= 1)
120 * for a switch, brace should be two levels out from the code
125 ps
.p_stack
[++ps
.tos
] = lbrace
;
126 ps
.il
[ps
.tos
] = ps
.ind_level
;
127 ps
.p_stack
[++ps
.tos
] = stmt
;
128 /* allow null stmt between braces */
129 ps
.il
[ps
.tos
] = ps
.i_l_follow
;
132 case whilestmt
: /* scanned while (...) */
133 if (ps
.p_stack
[ps
.tos
] == dohead
) {
134 /* it is matched with do stmt */
135 ps
.ind_level
= ps
.i_l_follow
= ps
.il
[ps
.tos
];
136 ps
.p_stack
[++ps
.tos
] = whilestmt
;
137 ps
.il
[ps
.tos
] = ps
.ind_level
= ps
.i_l_follow
;
139 else { /* it is a while loop */
140 ps
.p_stack
[++ps
.tos
] = whilestmt
;
141 ps
.il
[ps
.tos
] = ps
.i_l_follow
;
143 ps
.search_brace
= btype_2
;
148 case elselit
: /* scanned an else */
150 if (ps
.p_stack
[ps
.tos
] != ifhead
)
151 diag2(1, "Unmatched 'else'");
153 ps
.ind_level
= ps
.il
[ps
.tos
]; /* indentation for else should
154 * be same as for if */
155 ps
.i_l_follow
= ps
.ind_level
+ 1; /* everything following should
157 ps
.p_stack
[ps
.tos
] = elsehead
;
158 /* remember if with else */
159 ps
.search_brace
= btype_2
| ps
.else_if
;
163 case rbrace
: /* scanned a } */
164 /* stack should have <lbrace> <stmt> or <lbrace> <stmtl> */
165 if (ps
.p_stack
[ps
.tos
- 1] == lbrace
) {
166 ps
.ind_level
= ps
.i_l_follow
= ps
.il
[--ps
.tos
];
167 ps
.p_stack
[ps
.tos
] = stmt
;
170 diag2(1, "Stmt nesting error.");
173 case swstmt
: /* had switch (...) */
174 ps
.p_stack
[++ps
.tos
] = swstmt
;
175 ps
.cstk
[ps
.tos
] = case_ind
;
176 /* save current case indent level */
177 ps
.il
[ps
.tos
] = ps
.i_l_follow
;
178 case_ind
= ps
.i_l_follow
+ ps
.case_indent
; /* cases should be one
181 ps
.i_l_follow
+= ps
.case_indent
+ 1; /* statements should be two
183 ps
.search_brace
= btype_2
;
186 case semicolon
: /* this indicates a simple stmt */
187 break_comma
= false; /* turn off flag to break after commas in a
189 ps
.p_stack
[++ps
.tos
] = stmt
;
190 ps
.il
[ps
.tos
] = ps
.ind_level
;
193 default: /* this is an error */
194 diag2(1, "Unknown code to parser");
198 } /* end of switch */
200 reduce(); /* see if any reduction can be done */
203 for (i
= 1; i
<= ps
.tos
; ++i
)
204 printf("(%d %d)", ps
.p_stack
[i
], ps
.il
[i
]);
214 * FUNCTION: Implements the reduce part of the parsing algorithm
216 * ALGORITHM: The following reductions are done. Reductions are repeated
217 * until no more are possible.
220 * <stmt> <stmt> <stmtl>
221 * <stmtl> <stmt> <stmtl>
224 * switch <stmt> <stmt>
226 * "ifelse" <stmt> <stmt>
228 * while <stmt> <stmt>
229 * "dostmt" while <stmt>
231 * On each reduction, ps.i_l_follow (the indentation for the following line)
232 * is set to the indentation level associated with the old TOS.
238 * GLOBALS: ps.cstk ps.i_l_follow = ps.il ps.p_stack = ps.tos =
244 * HISTORY: initial coding November 1976 D A Willcox of CAC
247 /*----------------------------------------------*\
249 \*----------------------------------------------*/
255 for (;;) { /* keep looping until there is nothing left to
258 switch (ps
.p_stack
[ps
.tos
]) {
261 switch (ps
.p_stack
[ps
.tos
- 1]) {
265 /* stmtl stmt or stmt stmt */
266 ps
.p_stack
[--ps
.tos
] = stmtl
;
269 case dolit
: /* <do> <stmt> */
270 ps
.p_stack
[--ps
.tos
] = dohead
;
271 ps
.i_l_follow
= ps
.il
[ps
.tos
];
276 ps
.p_stack
[--ps
.tos
] = ifhead
;
279 ps
.p_stack
[i
] != stmt
281 ps
.p_stack
[i
] != stmtl
283 ps
.p_stack
[i
] != lbrace
286 ps
.i_l_follow
= ps
.il
[i
];
288 * for the time being, we will assume that there is no else on
289 * this if, and set the indentation level accordingly. If an
290 * else is scanned, it will be fixed up later
295 /* <switch> <stmt> */
296 case_ind
= ps
.cstk
[ps
.tos
- 1];
298 case decl
: /* finish of a declaration */
300 /* <<if> <stmt> else> <stmt> */
305 ps
.p_stack
[--ps
.tos
] = stmt
;
306 ps
.i_l_follow
= ps
.il
[ps
.tos
];
309 default: /* <anything else> <stmt> */
312 } /* end of section for <stmt> on top of stack */
315 case whilestmt
: /* while (...) on top */
316 if (ps
.p_stack
[ps
.tos
- 1] == dohead
) {
317 /* it is termination of a do while */
324 default: /* anything else on top */