Home | History | Annotate | Line # | Download | only in indent
io.c revision 1.98
      1 /*	$NetBSD: io.c,v 1.98 2021/10/20 05:00:37 rillig Exp $	*/
      2 
      3 /*-
      4  * SPDX-License-Identifier: BSD-4-Clause
      5  *
      6  * Copyright (c) 1985 Sun Microsystems, Inc.
      7  * Copyright (c) 1980, 1993
      8  *	The Regents of the University of California.  All rights reserved.
      9  * All rights reserved.
     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 
     40 #if 0
     41 static char sccsid[] = "@(#)io.c	8.1 (Berkeley) 6/6/93";
     42 #endif
     43 
     44 #include <sys/cdefs.h>
     45 #if defined(__NetBSD__)
     46 __RCSID("$NetBSD: io.c,v 1.98 2021/10/20 05:00:37 rillig Exp $");
     47 #elif defined(__FreeBSD__)
     48 __FBSDID("$FreeBSD: head/usr.bin/indent/io.c 334927 2018-06-10 16:44:18Z pstef $");
     49 #endif
     50 
     51 #include <ctype.h>
     52 #include <stdio.h>
     53 #include <string.h>
     54 #include <stdarg.h>
     55 
     56 #include "indent.h"
     57 
     58 static int paren_indent;
     59 static bool suppress_blanklines;
     60 
     61 static void
     62 output_char(char ch)
     63 {
     64     fputc(ch, output);
     65     debug_vis_range("output_char '", &ch, &ch + 1, "'\n");
     66 }
     67 
     68 static void
     69 output_range(const char *s, const char *e)
     70 {
     71     fwrite(s, 1, (size_t)(e - s), output);
     72     debug_vis_range("output_range \"", s, e, "\"\n");
     73 }
     74 
     75 static inline void
     76 output_string(const char *s)
     77 {
     78     output_range(s, s + strlen(s));
     79 }
     80 
     81 static int
     82 output_indent(int old_ind, int new_ind)
     83 {
     84     int ind = old_ind;
     85 
     86     if (opt.use_tabs) {
     87 	int tabsize = opt.tabsize;
     88 	int n = new_ind / tabsize - ind / tabsize;
     89 	if (n > 0)
     90 	    ind -= ind % tabsize;
     91 	for (int i = 0; i < n; i++) {
     92 	    fputc('\t', output);
     93 	    ind += tabsize;
     94 	}
     95     }
     96 
     97     for (; ind < new_ind; ind++)
     98 	fputc(' ', output);
     99 
    100     debug_println("output_indent %d", ind);
    101     return ind;
    102 }
    103 
    104 static int
    105 dump_line_label(void)
    106 {
    107     int ind;
    108 
    109     while (lab.e > lab.s && is_hspace(lab.e[-1]))
    110 	lab.e--;
    111     *lab.e = '\0';
    112 
    113     ind = output_indent(0, compute_label_indent());
    114 
    115     if (lab.s[0] == '#' && (strncmp(lab.s, "#else", 5) == 0
    116 	    || strncmp(lab.s, "#endif", 6) == 0)) {
    117 	const char *s = lab.s;
    118 	if (lab.e[-1] == '\n')
    119 	    lab.e--;
    120 	do {
    121 	    output_char(*s++);
    122 	} while (s < lab.e && 'a' <= *s && *s <= 'z');
    123 
    124 	while (s < lab.e && is_hspace(*s))
    125 	    s++;
    126 
    127 	if (s < lab.e) {
    128 	    if (s[0] == '/' && s[1] == '*') {
    129 		output_char('\t');
    130 		output_range(s, lab.e);
    131 	    } else {
    132 		output_string("\t/* ");
    133 		output_range(s, lab.e);
    134 		output_string(" */");
    135 	    }
    136 	}
    137     } else
    138 	output_range(lab.s, lab.e);
    139     ind = indentation_after(ind, lab.s);
    140 
    141     ps.is_case_label = false;
    142     return ind;
    143 }
    144 
    145 static int
    146 dump_line_code(int ind)
    147 {
    148 
    149     int target_ind = compute_code_indent();
    150     for (int i = 0; i < ps.p_l_follow; i++) {
    151 	if (ps.paren_indents[i] >= 0) {
    152 	    int paren_ind = ps.paren_indents[i];
    153 	    /* XXX: the '+ 1' smells like an off-by-one error. */
    154 	    ps.paren_indents[i] = (short)-(paren_ind + target_ind + 1);
    155 	    debug_println(
    156 		"setting pi[%d] from %d to %d for column %d",
    157 		i, paren_ind, ps.paren_indents[i], target_ind + 1);
    158 	}
    159     }
    160 
    161     ind = output_indent(ind, target_ind);
    162     output_range(code.s, code.e);
    163     return indentation_after(ind, code.s);
    164 }
    165 
    166 static void
    167 dump_line_comment(int ind)
    168 {
    169     int target_ind = ps.com_ind;
    170     const char *p = com.s;
    171 
    172     target_ind += ps.comment_delta;
    173 
    174     /* consider original indentation in case this is a box comment */
    175     for (; *p == '\t'; p++)
    176 	target_ind += opt.tabsize;
    177 
    178     for (; target_ind < 0; p++) {
    179 	if (*p == ' ')
    180 	    target_ind++;
    181 	else if (*p == '\t')
    182 	    target_ind = next_tab(target_ind);
    183 	else {
    184 	    target_ind = 0;
    185 	    break;
    186 	}
    187     }
    188 
    189     /* if comment can't fit on this line, put it on next line */
    190     if (ind > target_ind) {
    191 	output_char('\n');
    192 	ind = 0;
    193 	ps.stats.lines++;
    194     }
    195 
    196     while (com.e > p && isspace((unsigned char)com.e[-1]))
    197 	com.e--;
    198 
    199     (void)output_indent(ind, target_ind);
    200     output_range(p, com.e);
    201 
    202     ps.comment_delta = ps.n_comment_delta;
    203     ps.stats.comment_lines++;
    204 }
    205 
    206 /*
    207  * Write a line of formatted source to the output file. The line consists of a
    208  * label, the code and the comment.
    209  */
    210 void
    211 dump_line(void)
    212 {
    213     static bool first_line = true;
    214 
    215     if (ps.procname[0] != '\0') {
    216 	ps.ind_level = 0;
    217 	ps.procname[0] = '\0';
    218     }
    219 
    220     if (code.s == code.e && lab.s == lab.e && com.s == com.e) {
    221 	if (suppress_blanklines)
    222 	    suppress_blanklines = false;
    223 	else
    224 	    blank_lines_to_output++;
    225 
    226     } else if (!inhibit_formatting) {
    227 	suppress_blanklines = false;
    228 	if (prefix_blankline_requested && !first_line) {
    229 	    if (opt.swallow_optional_blanklines) {
    230 		if (blank_lines_to_output == 1)
    231 		    blank_lines_to_output = 0;
    232 	    } else {
    233 		if (blank_lines_to_output == 0)
    234 		    blank_lines_to_output = 1;
    235 	    }
    236 	}
    237 
    238 	for (; blank_lines_to_output > 0; blank_lines_to_output--)
    239 	    output_char('\n');
    240 
    241 	if (ps.ind_level == 0)
    242 	    ps.ind_stmt = false;	/* this is a class A kludge. don't do
    243 					 * additional statement indentation if
    244 					 * we are at bracket level 0 */
    245 
    246 	if (lab.e != lab.s || code.e != code.s)
    247 	    ps.stats.code_lines++;
    248 
    249 	int ind = 0;
    250 	if (lab.e != lab.s)
    251 	    ind = dump_line_label();
    252 	if (code.e != code.s)
    253 	    ind = dump_line_code(ind);
    254 	if (com.e != com.s)
    255 	    dump_line_comment(ind);
    256 
    257 	if (ps.use_ff)
    258 	    output_char('\f');
    259 	else
    260 	    output_char('\n');
    261 	ps.stats.lines++;
    262 
    263 	if (ps.just_saw_decl == 1 && opt.blanklines_after_decl) {
    264 	    prefix_blankline_requested = true;
    265 	    ps.just_saw_decl = 0;
    266 	} else
    267 	    prefix_blankline_requested = postfix_blankline_requested;
    268 	postfix_blankline_requested = false;
    269     }
    270 
    271     ps.decl_on_line = ps.in_decl;	/* for proper comment indentation */
    272     ps.ind_stmt = ps.in_stmt && !ps.in_decl;
    273     ps.use_ff = false;
    274     ps.dumped_decl_indent = false;
    275 
    276     *(lab.e = lab.s) = '\0';	/* reset buffers */
    277     *(code.e = code.s) = '\0';
    278     *(com.e = com.s = com.buf + 1) = '\0';
    279 
    280     ps.ind_level = ps.ind_level_follow;
    281     ps.paren_level = ps.p_l_follow;
    282 
    283     if (ps.paren_level > 0) {
    284 	/* TODO: explain what negative indentation means */
    285 	paren_indent = -ps.paren_indents[ps.paren_level - 1];
    286 	debug_println("paren_indent is now %d", paren_indent);
    287     }
    288 
    289     first_line = false;
    290 }
    291 
    292 int
    293 compute_code_indent(void)
    294 {
    295     int target_ind = opt.indent_size * ps.ind_level;
    296 
    297     if (ps.paren_level != 0) {
    298 	if (!opt.lineup_to_parens) {
    299 	    if (2 * opt.continuation_indent == opt.indent_size)
    300 		target_ind += opt.continuation_indent;
    301 	    else
    302 		target_ind += opt.continuation_indent * ps.paren_level;
    303 
    304 	} else if (opt.lineup_to_parens_always) {
    305 	    /*
    306 	     * XXX: where does this '- 1' come from?  It looks strange but is
    307 	     * nevertheless needed for proper indentation, as demonstrated in
    308 	     * the test opt-lpl.0.
    309 	     */
    310 	    target_ind = paren_indent - 1;
    311 
    312 	} else {
    313 	    int w;
    314 	    int t = paren_indent;
    315 
    316 	    if ((w = 1 + indentation_after(t - 1, code.s) - opt.max_line_length) > 0
    317 		&& 1 + indentation_after(target_ind, code.s) <= opt.max_line_length) {
    318 		t -= w + 1;
    319 		if (t > target_ind + 1)
    320 		    target_ind = t - 1;
    321 	    } else
    322 		target_ind = t - 1;
    323 	}
    324 
    325     } else if (ps.ind_stmt)
    326 	target_ind += opt.continuation_indent;
    327 
    328     return target_ind;
    329 }
    330 
    331 int
    332 compute_label_indent(void)
    333 {
    334     if (ps.is_case_label)
    335 	return (int)(case_ind * (float)opt.indent_size);
    336     if (lab.s[0] == '#')
    337 	return 0;
    338     return opt.indent_size * (ps.ind_level - label_offset);
    339 }
    340 
    341 static void
    342 skip_hspace(const char **pp)
    343 {
    344     while (is_hspace(**pp))
    345 	(*pp)++;
    346 }
    347 
    348 static bool
    349 skip_string(const char **pp, const char *s)
    350 {
    351     size_t len = strlen(s);
    352     if (strncmp(*pp, s, len) == 0) {
    353 	*pp += len;
    354 	return true;
    355     }
    356     return false;
    357 }
    358 
    359 static void
    360 parse_indent_comment(void)
    361 {
    362     bool on;
    363 
    364     const char *p = inp.buf;
    365 
    366     skip_hspace(&p);
    367     if (!skip_string(&p, "/*"))
    368 	return;
    369     skip_hspace(&p);
    370     if (!skip_string(&p, "INDENT"))
    371 	return;
    372     skip_hspace(&p);
    373 
    374     if (*p == '*' || skip_string(&p, "ON"))
    375 	on = true;
    376     else if (skip_string(&p, "OFF"))
    377 	on = false;
    378     else
    379 	return;
    380 
    381     skip_hspace(&p);
    382     if (!skip_string(&p, "*/\n"))
    383 	return;
    384 
    385     if (com.s != com.e || lab.s != lab.e || code.s != code.e)
    386 	dump_line();
    387 
    388     inhibit_formatting = !on;
    389     if (on) {
    390 	blank_lines_to_output = 0;
    391 	postfix_blankline_requested = false;
    392 	prefix_blankline_requested = false;
    393 	suppress_blanklines = true;
    394     }
    395 }
    396 
    397 /*
    398  * Copyright (C) 1976 by the Board of Trustees of the University of Illinois
    399  *
    400  * All rights reserved
    401  */
    402 void
    403 inbuf_read_line(void)
    404 {
    405     char *p;
    406     int ch;
    407     FILE *f = input;
    408 
    409     if (saved_inp_s != NULL) {	/* there is a partly filled input buffer left */
    410 	inp.s = saved_inp_s;	/* do not read anything, just switch buffers */
    411 	inp.e = saved_inp_e;
    412 	saved_inp_s = saved_inp_e = NULL;
    413 	debug_println("switched inp.s back to saved_inp_s");
    414 	if (inp.s < inp.e)
    415 	    return;		/* only return if there is really something in
    416 				 * this buffer */
    417     }
    418 
    419     for (p = inp.buf;;) {
    420 	if (p >= inp.l) {
    421 	    size_t size = (size_t)(inp.l - inp.buf) * 2 + 10;
    422 	    size_t offset = (size_t)(p - inp.buf);
    423 	    inp.buf = xrealloc(inp.buf, size);
    424 	    p = inp.buf + offset;
    425 	    inp.l = inp.buf + size - 2;
    426 	}
    427 
    428 	if ((ch = getc(f)) == EOF) {
    429 	    if (!inhibit_formatting) {
    430 		*p++ = ' ';
    431 		*p++ = '\n';
    432 	    }
    433 	    had_eof = true;
    434 	    break;
    435 	}
    436 
    437 	if (ch != '\0')
    438 	    *p++ = (char)ch;
    439 	if (ch == '\n')
    440 	    break;
    441     }
    442 
    443     inp.s = inp.buf;
    444     inp.e = p;
    445 
    446     if (p - inp.buf >= 3 && p[-3] == '*' && p[-2] == '/') {
    447 	if (strncmp(inp.buf, "/**INDENT**", 11) == 0)
    448 	    inbuf_read_line();	/* flush indent error message */
    449 	else
    450 	    parse_indent_comment();
    451     }
    452 
    453     if (inhibit_formatting)
    454 	output_range(inp.s, inp.e);
    455 }
    456 
    457 int
    458 indentation_after_range(int ind, const char *start, const char *end)
    459 {
    460     for (const char *p = start; *p != '\0' && p != end; ++p) {
    461 	if (*p == '\n' || *p == '\f')
    462 	    ind = 0;
    463 	else if (*p == '\t')
    464 	    ind = next_tab(ind);
    465 	else if (*p == '\b')
    466 	    --ind;
    467 	else
    468 	    ++ind;
    469     }
    470     return ind;
    471 }
    472 
    473 int
    474 indentation_after(int ind, const char *s)
    475 {
    476     return indentation_after_range(ind, s, NULL);
    477 }
    478 
    479 void
    480 diag(int level, const char *msg, ...)
    481 {
    482     va_list ap;
    483     const char *s, *e;
    484 
    485     if (level != 0)
    486 	found_err = true;
    487 
    488     if (output == stdout) {
    489 	s = "/**INDENT** ";
    490 	e = " */";
    491     } else {
    492 	s = e = "";
    493     }
    494 
    495     va_start(ap, msg);
    496     fprintf(stderr, "%s%s@%d: ", s, level == 0 ? "Warning" : "Error", line_no);
    497     vfprintf(stderr, msg, ap);
    498     fprintf(stderr, "%s\n", e);
    499     va_end(ap);
    500 }
    501