cleanup city
[unix-history] / usr / src / usr.bin / indent / indent_globs.h
CommitLineData
b2e768eb
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
b0627149
KB
3 * Copyright (c) 1976 Board of Trustees of the University of Illinois.
4 * All rights reserved.
b2e768eb 5 *
b0627149 6 * Redistribution and use in source and binary forms are permitted
b36fc510
KB
7 * provided that the above copyright notice and this paragraph are
8 * duplicated in all such forms and that any documentation,
9 * advertising materials, and other materials related to such
10 * distribution and use acknowledge that the software was developed
11 * by the University of California, Berkeley and the University
12 * of Illinois, Urbana. The name of either
13 * University may not be used to endorse or promote products derived
14 * from this software without specific prior written permission.
15 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
17 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
b0627149 18 *
b36fc510 19 * @(#)indent_globs.h 5.6 (Berkeley) %G%
b2e768eb 20 */
84262df4 21
b0627149 22/*
84262df4
KM
23FILE NAME:
24 indent_globs.h
25
26PURPOSE:
27 This include file contains the declarations for all global variables
28 used in indent.
29
30GLOBALS:
31 The names of all of the variables will not be repeated here. The
32 declarations start on the next page.
33
34FUNCTIONS:
35 None
1009bf5e 36*/
84262df4 37
1009bf5e
KM
38#include <stdio.h>
39
40#define BACKSLASH '\\'
41#define bufsize 600 /* size of internal buffers */
42#define inp_bufs 600 /* size of input buffer */
43#define sc_size 5000 /* size of save_com buffer */
44#define label_offset 2 /* number of levels a label is placed to left of code
45 */
84262df4
KM
46
47#define tabsize 8 /* the size of a tab */
1009bf5e 48#define tabmask 0177770 /* mask used when figuring length of lines with tabs */
84262df4
KM
49
50
51#define false 0
52#define true 1
53
54
1009bf5e
KM
55FILE *input; /* the fid for the input file */
56FILE *output; /* the output file */
84262df4 57
1009bf5e 58char labbuf[bufsize]; /* buffer for label */
84262df4
KM
59char *s_lab; /* start ... */
60char *e_lab; /* .. and end of stored label */
61
1009bf5e 62char codebuf[bufsize]; /* buffer for code section */
84262df4
KM
63char *s_code; /* start ... */
64char *e_code; /* .. and end of stored code */
65
1009bf5e 66char combuf[bufsize]; /* buffer for comments */
84262df4
KM
67char *s_com; /* start ... */
68char *e_com; /* ... and end of stored comments */
69
1009bf5e 70char in_buffer[inp_bufs]; /* input buffer */
84262df4
KM
71char *buf_ptr; /* ptr to next character to be taken from in_buffer */
72char *buf_end; /* ptr to first after last char in in_buffer */
73
1009bf5e 74char save_com[sc_size]; /* input text is saved here when looking for the brace
84262df4
KM
75 after an if, while, etc */
76char *sc_end; /* pointer into save_com buffer */
77
78char *bp_save; /* saved value of buf_ptr when taking input from
79 save_com */
80char *be_save; /* similarly saved value of buf_end */
81
1009bf5e 82char token[bufsize]; /* the last token scanned */
84262df4
KM
83
84
85
1009bf5e
KM
86int blanklines_after_declarations;
87int blanklines_before_blockcomments;
88int blanklines_after_procs;
89int swallow_optional_blanklines;
90int n_real_blanklines;
91int prefix_blankline_requested;
92int postfix_blankline_requested;
93int break_comma; /* when true and not in parens, break after a comma */
84262df4
KM
94int btype_2; /* when true, brace should be on same line as if,
95 while, etc */
1009bf5e 96float case_ind; /* indentation level to be used for a "case n:" */
84262df4 97int code_lines;/* count of lines with code */
84262df4 98int had_eof; /* set to true when input is exhausted */
84262df4 99int line_no; /* the current line number. */
84262df4 100int max_col; /* the maximum allowable line length */
5c6e73ac
KM
101int pointer_as_binop; /* when true, "->" is treated as a binary
102 operator (giving, e.g., "p -> f") */
84262df4
KM
103int verbose; /* when true, non-essential error messages are printed
104 */
1009bf5e
KM
105int cuddle_else; /* true if else should cuddle up to '}' */
106int star_comment_cont; /* true iff comment continuation lines should
107 have stars at the beginning of each line.
108 */
109int comment_delimiter_on_blankline;
110int troff; /* true iff were generating troff input */
111int procnames_start_line; /* if true, the names of procedures being
112 defined get placed in column 1 (ie. a
113 newline is placed between the type of the
114 procedure and its name) */
115int proc_calls_space; /* If true, procedure calls look like:
116 foo(bar) rather than foo (bar) */
117int format_col1_comments; /* If comments which start in column 1 are to
118 be magically reformatted (just like comments that
119 begin in later columns) */
120int inhibit_formatting; /* true if INDENT OFF is in effect */
121int suppress_blanklines; /* set iff following blanklines should be
122 suppressed */
123int continuation_indent; /* set to the indentation between the edge of
124 code and continuation lines */
125int lineup_to_parens; /* if true, continued code within parens will
126 be lined up to the open paren */
127int block_comment_max_col;
128
129
130struct parser_state {
131 int last_token;
132 int p_stack[50]; /* this is the parsers stack */
133 int il[50]; /* this stack stores indentation levels */
134 float cstk[50]; /* used to store case stmt indentation
135 * levels */
136 int box_com; /* set to true when we are in a "boxed"
137 * comment. In that case, the first
138 * non-blank char should be lined up with
139 * the / in /* */
140 int comment_delta,
141 n_comment_delta;
142 int cast_mask; /* indicates which close parens close off
143 * casts */
144 int sizeof_mask; /* indicates which close parens close off
145 sizeof''s */
146 int block_init; /* true iff inside a block initialization */
147 int last_nl; /* this is true if the last thing scanned
148 * was a newline */
149 int in_or_st; /* Will be true iff there has been a
150 * declarator (e.g. int or char) and no
151 * left paren since the last semicolon.
152 * When true, a '{' is starting a
153 * structure definition or an
154 * initialization list */
155 int bl_line; /* set to 1 by dump_line if the line is
156 * blank */
157 int col_1; /* set to true if the last token started
158 * in column 1 */
159 int com_col; /* this is the column in which the current
160 * coment should start */
161 int com_ind; /* the column in which comments to the
162 * right of code should start */
163 int com_lines; /* the number of lines with comments, set
164 * by dump_line */
165 int dec_nest; /* current nesting level for structure or
166 * init */
167 int decl_com_ind; /* the column in which comments after
168 * declarations should be put */
169 int decl_on_line; /* set to true if this line of code has
170 * part of a declaration on it */
171 int i_l_follow; /* the level to which ind_level should be
172 * set after the current line is printed */
173 int in_decl; /* set to true when we are in a
174 * declaration stmt. The processing of
175 * braces is then slightly different */
176 int in_stmt; /* set to 1 while in a stmt */
177 int ind_level; /* the current indentation level */
178 int ind_size; /* the size of one indentation level */
179 int ind_stmt; /* set to 1 if next line should have an
180 * extra indentation level because we are
181 * in the middle of a stmt */
182 int last_u_d; /* set to true after scanning a token
183 * which forces a following operator to be
184 * unary */
185 int leave_comma; /* if true, never break declarations after
186 * commas */
187 int ljust_decl; /* true if declarations should be left
188 * justified */
189 int out_coms; /* the number of comments processed, set
190 * by pr_comment */
191 int out_lines; /* the number of lines written, set by
192 * dump_line */
193 int p_l_follow; /* used to remember how to indent
194 * following statement */
195 int paren_level; /* parenthesization level. used to indent
196 * within stmts */
197 short paren_indents[20]; /* column positions of each paren */
198 int pcase; /* set to 1 if the current line label is a
199 * case. It is printed differently from
200 * a regular label */
201 int search_brace; /* set to true by parse when it is
202 * necessary to buffer up all info up to
203 * the start of a stmt after an if, while,
204 * etc */
205 int unindent_displace; /* comments not to the right of
206 * code will be placed this many
207 * indentation levels to the left
208 * of code */
209 int use_ff; /* set to one if the current line should
210 * be terminated with a form feed */
211 int want_blank; /* set to true when the following token
212 * should be prefixed by a blank. (Said
213 * prefixing is ignored in some cases.) */
214 int else_if; /* True iff else if pairs should be
215 * handled specially */
216 int decl_indent; /* column to indent declared identifiers
217 * to */
218 int its_a_keyword;
219 int sizeof_keyword;
220 int dumped_decl_indent;
221 float case_indent; /* The distance to indent case labels from
222 * the switch statement */
223 int in_parameter_declaration;
224 int indent_parameters;
225 int tos; /* pointer to top of stack */
226 char procname[100]; /* The name of the current procedure */
227 int just_saw_decl;
228} ps;
229
230int ifdef_level;
231struct parser_state state_stack[5];
232struct parser_state match_state[5];