Home | History | Annotate | Line # | Download | only in indent
args.c revision 1.62
      1 /*	$NetBSD: args.c,v 1.62 2021/10/28 20:49:36 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[] = "@(#)args.c	8.1 (Berkeley) 6/6/93";
     42 #endif
     43 
     44 #include <sys/cdefs.h>
     45 #if defined(__NetBSD__)
     46 __RCSID("$NetBSD: args.c,v 1.62 2021/10/28 20:49:36 rillig Exp $");
     47 #elif defined(__FreeBSD__)
     48 __FBSDID("$FreeBSD: head/usr.bin/indent/args.c 336318 2018-07-15 21:04:21Z pstef $");
     49 #endif
     50 
     51 /* Read options from profile files and from the command line. */
     52 
     53 #include <ctype.h>
     54 #include <err.h>
     55 #include <errno.h>
     56 #include <limits.h>
     57 #include <stdio.h>
     58 #include <stdlib.h>
     59 #include <string.h>
     60 
     61 #include "indent.h"
     62 
     63 #if __STDC_VERSION__ >= 201112L
     64 #define assert_type(expr, type) _Generic((expr), type : (expr))
     65 #else
     66 #define assert_type(expr, type) (expr)
     67 #endif
     68 
     69 #define bool_option(name, value, var) \
     70 	{name, true, value, false, 0, 0, assert_type(&(opt.var), bool *)}
     71 #define bool_options(name, var) \
     72 	{name, true, false, true, 0, 0, assert_type(&(opt.var), bool *)}
     73 #define int_option(name, var, min, max) \
     74 	{name, false, false, false, min, max, assert_type(&(opt.var), int *)}
     75 
     76 /*
     77  * N.B.: an option whose name is a prefix of another option must come earlier;
     78  * for example, "l" must come before "lp".
     79  *
     80  * See set_special_option for special options.
     81  */
     82 static const struct pro {
     83     const char p_name[5];	/* e.g. "bl", "cli" */
     84     bool p_is_bool;
     85     bool p_bool_value;
     86     bool p_may_negate;
     87     short i_min;
     88     short i_max;
     89     void *p_var;		/* the associated variable */
     90 } pro[] = {
     91     bool_options("bacc", blanklines_around_conditional_compilation),
     92     bool_options("bad", blanklines_after_decl),
     93     bool_options("badp", blanklines_after_decl_at_top),
     94     bool_options("bap", blanklines_after_procs),
     95     bool_options("bbb", blanklines_before_block_comments),
     96     bool_options("bc", break_after_comma),
     97     bool_option("bl", false, brace_same_line),
     98     bool_option("br", true, brace_same_line),
     99     bool_options("bs", blank_after_sizeof),
    100     int_option("c", comment_column, 1, 999),
    101     int_option("cd", decl_comment_column, 1, 999),
    102     bool_options("cdb", comment_delimiter_on_blankline),
    103     bool_options("ce", cuddle_else),
    104     int_option("ci", continuation_indent, 0, 999),
    105     /* "cli" is special */
    106     bool_options("cs", space_after_cast),
    107     int_option("d", unindent_displace, -999, 999),
    108     int_option("di", decl_indent, 0, 999),
    109     bool_options("dj", ljust_decl),
    110     bool_options("eei", extra_expr_indent),
    111     bool_options("ei", else_if),
    112     bool_options("fbs", function_brace_split),
    113     bool_options("fc1", format_col1_comments),
    114     bool_options("fcb", format_block_comments),
    115     int_option("i", indent_size, 1, 80),
    116     bool_options("ip", indent_parameters),
    117     int_option("l", max_line_length, 1, 999),
    118     int_option("lc", block_comment_max_line_length, 1, 999),
    119     int_option("ldi", local_decl_indent, 0, 999),
    120     bool_options("lp", lineup_to_parens),
    121     bool_options("lpl", lineup_to_parens_always),
    122     /* "npro" is special */
    123     /* "P" is special */
    124     bool_options("pcs", proc_calls_space),
    125     bool_options("psl", procnames_start_line),
    126     bool_options("sc", star_comment_cont),
    127     bool_options("sob", swallow_optional_blanklines),
    128     /* "st" is special */
    129     bool_option("ta", true, auto_typedefs),
    130     /* "T" is special */
    131     int_option("ts", tabsize, 1, 80),
    132     /* "U" is special */
    133     bool_options("ut", use_tabs),
    134     bool_options("v", verbose),
    135 };
    136 
    137 
    138 static void
    139 add_typedefs_from_file(const char *fname)
    140 {
    141     FILE *file;
    142     char line[BUFSIZ];
    143 
    144     if ((file = fopen(fname, "r")) == NULL) {
    145 	fprintf(stderr, "indent: cannot open file %s\n", fname);
    146 	exit(1);
    147     }
    148     while ((fgets(line, BUFSIZ, file)) != NULL) {
    149 	/* Remove trailing whitespace */
    150 	line[strcspn(line, " \t\n\r")] = '\0';
    151 	add_typename(line);
    152     }
    153     (void)fclose(file);
    154 }
    155 
    156 static bool
    157 set_special_option(const char *arg, const char *option_source)
    158 {
    159     const char *arg_end;
    160 
    161     if (strncmp(arg, "-version", 8) == 0) {
    162 	printf("NetBSD indent 2.1\n");
    163 	exit(0);
    164     }
    165 
    166     if (arg[0] == 'P' || strncmp(arg, "npro", 4) == 0)
    167 	return true;
    168 
    169     if (strncmp(arg, "cli", 3) == 0) {
    170 	arg_end = arg + 3;
    171 	if (arg_end[0] == '\0')
    172 	    goto need_param;
    173 	opt.case_indent = (float)atof(arg_end);
    174 	return true;
    175     }
    176 
    177     if (strncmp(arg, "st", 2) == 0) {
    178 	if (input == NULL)
    179 	    input = stdin;
    180 	if (output == NULL)
    181 	    output = stdout;
    182 	return true;
    183     }
    184 
    185     if (arg[0] == 'T') {
    186 	arg_end = arg + 1;
    187 	if (arg_end[0] == '\0')
    188 	    goto need_param;
    189 	add_typename(arg_end);
    190 	return true;
    191     }
    192 
    193     if (arg[0] == 'U') {
    194 	arg_end = arg + 1;
    195 	if (arg_end[0] == '\0')
    196 	    goto need_param;
    197 	add_typedefs_from_file(arg_end);
    198 	return true;
    199     }
    200 
    201     return false;
    202 
    203 need_param:
    204     errx(1, "%s: ``%.*s'' requires a parameter",
    205 	option_source, (int)(arg_end - arg), arg);
    206     /* NOTREACHED */
    207 }
    208 
    209 static const char *
    210 skip_over(const char *s, bool may_negate, const char *prefix)
    211 {
    212     if (may_negate && s[0] == 'n')
    213 	s++;
    214     while (*prefix != '\0') {
    215 	if (*prefix++ != *s++)
    216 	    return NULL;
    217     }
    218     return s;
    219 }
    220 
    221 void
    222 set_option(const char *arg, const char *option_source)
    223 {
    224     const struct pro *p;
    225     const char *param_start;
    226 
    227     arg++;			/* skip leading '-' */
    228     if (set_special_option(arg, option_source))
    229 	return;
    230 
    231     for (p = pro + array_length(pro); p-- != pro;) {
    232 	param_start = skip_over(arg, p->p_may_negate, p->p_name);
    233 	if (param_start != NULL)
    234 	    goto found;
    235     }
    236     errx(1, "%s: unknown option \"-%s\"", option_source, arg);
    237 
    238 found:
    239     if (p->p_is_bool) {
    240 	if (param_start[0] != '\0')
    241 	    errx(1, "%s: unknown option \"-%s\"", option_source, arg);
    242 	*(bool *)p->p_var = p->p_may_negate ? arg[0] != 'n' : p->p_bool_value;
    243     } else {
    244 	if (!isdigit((unsigned char)*param_start))
    245 	    errx(1, "%s: option \"-%s\" requires an integer parameter",
    246 		option_source, p->p_name);
    247 	errno = 0;
    248 	char *end;
    249 	long num = strtol(param_start, &end, 10);
    250 	if (!(errno == 0 && *end == '\0' &&
    251 		p->i_min <= num && num <= p->i_max))
    252 	    errx(1, "%s: invalid argument \"%s\" for option \"-%s\"",
    253 		option_source, param_start, p->p_name);
    254 	*(int *)p->p_var = (int)num;
    255     }
    256 }
    257 
    258 static void
    259 load_profile(const char *fname, bool must_exist)
    260 {
    261     FILE *f;
    262 
    263     if ((f = fopen(fname, "r")) == NULL) {
    264 	if (must_exist)
    265 	    err(EXIT_FAILURE, "profile %s", fname);
    266 	return;
    267     }
    268 
    269     for (;;) {
    270 	char buf[BUFSIZ];
    271 	size_t n = 0;
    272 	int ch, comment_ch = -1;
    273 
    274 	while ((ch = getc(f)) != EOF) {
    275 	    if (ch == '*' && comment_ch < 0 && n > 0 && buf[n - 1] == '/') {
    276 		n--;
    277 		comment_ch = ch;
    278 	    } else if (comment_ch >= 0) {
    279 		comment_ch = ch == '/' && comment_ch == '*' ? -1 : ch;
    280 	    } else if (isspace((unsigned char)ch)) {
    281 		break;
    282 	    } else if (n >= array_length(buf) - 5) {
    283 		diag(1, "buffer overflow in %s, starting with '%.10s'",
    284 		     fname, buf);
    285 		exit(1);
    286 	    } else
    287 		buf[n++] = (char)ch;
    288 	}
    289 
    290 	if (n > 0) {
    291 	    buf[n] = '\0';
    292 	    if (opt.verbose)
    293 		printf("profile: %s\n", buf);
    294 	    set_option(buf, fname);
    295 	} else if (ch == EOF)
    296 	    break;
    297     }
    298     (void)fclose(f);
    299 }
    300 
    301 void
    302 load_profiles(const char *profile_name)
    303 {
    304     char fname[PATH_MAX];
    305 
    306     if (profile_name != NULL)
    307 	load_profile(profile_name, true);
    308     else {
    309 	snprintf(fname, sizeof(fname), "%s/.indent.pro", getenv("HOME"));
    310 	load_profile(fname, false);
    311     }
    312     load_profile(".indent.pro", false);
    313 }
    314