aboutsummaryrefslogtreecommitdiff
path: root/src/cmdline.opt
blob: af25964f1d9ff0defa5919f4faf95f12c744ea00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/* This file is part of Jumper -*- autoconf -*-
   Copyright (C) 2013, 2017 Sergey Poznyakoff
  
   Jumper is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3, or (at your option)
   any later version.
  
   Jumper is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with Jumper.  If not, see <http://www.gnu.org/licenses/>.
*/

static struct grecs_txtacc *pp_cmd_acc;

OPTIONS_BEGIN("jumper",
              [<jumper brings network links up on demand>],
              [<[CONFIG]>],
              [<gnu>],
              [<copyright_year=2013>],
              [<copyright_holder=Sergey Poznyakoff>])

GROUP(Operation mode switches)
OPTION(,E,,
       [<preprocess config and exit>])
BEGIN
  preprocess_only = 1;
END

OPTION(lint,t,,
       [<check configuration file and exit>])
BEGIN       
	lint_only = 1;
END

OPTION(foreground,f,,
       [<remain in foreground>])
BEGIN       
	opt_foreground++;
END

GROUP(Modifiers)
OPTION(debug,d,,
       [<increase debug level>])
BEGIN       
	opt_debug_level++;
END

OPTION(,l,PRIO,
       [<log everything with priority PRIO and higher to the stderr, as well as to the syslog>])
BEGIN
	if (strcmp(optarg, "none") == 0)
		log_to_stderr = -1;
	else if (get_priority(optarg, &log_to_stderr)) {
		diag(LOG_CRIT, "unknown syslog priority: %s", optarg);
		exit(EX_USAGE);
	}
END

OPTION(pidfile,P,FILE,
       [<set PID file>])
BEGIN       
	opt_pidfile = optarg;
END	

GROUP(Preprocessor)

OPTION(include-directory,I,DIR,
       [<add include directory>])
BEGIN
        grecs_preproc_add_include_dir(optarg);
END

OPTION(define,D,SYMBOL[=VALUE],
       [<define a preprocessor symbol>])
BEGIN
        char *p;

        if (!pp_cmd_acc)
                pp_cmd_acc = grecs_txtacc_create();
	grecs_txtacc_grow(pp_cmd_acc, " \"-D", 4);
        for (p = optarg; *p; p++) {
                if (*p == '\\' || *p == '"')
                        grecs_txtacc_grow_char(pp_cmd_acc, '\\');
                grecs_txtacc_grow_char(pp_cmd_acc, *p);
        }
        grecs_txtacc_grow_char(pp_cmd_acc, '"');
END

OPTION(preprocessor,,COMMAND,
       [<use COMMAND instead of the default preprocessor>])
BEGIN
        grecs_preprocessor = optarg;
END

OPTION(no-preprocessor,,,
       [<disable preprocessing>])
BEGIN
        grecs_preprocessor = NULL;
END

GROUP([<Additional help>])

OPTION(config-help,H,,
       [<show configuration file summary>])
BEGIN
	config_help();
	exit(EX_OK);
END
	   

OPTIONS_END

void
parse_options(int argc, char *argv[], int *index)
{
	GETOPT(argc, argv, *index)
        if (pp_cmd_acc && grecs_preprocessor) {
                char *cmd;
                size_t len = strlen(grecs_preprocessor);
                grecs_txtacc_grow_char(pp_cmd_acc, 0);
                grecs_txtacc_grow(pp_cmd_acc, grecs_preprocessor, len + 1);
                cmd = grecs_txtacc_finish(pp_cmd_acc, 1);
                grecs_txtacc_free(pp_cmd_acc);
                memmove(cmd + len + 1, cmd, strlen(cmd) + 1);
                memcpy(cmd, grecs_preprocessor, len);
                cmd[len] = ' ';
                grecs_preprocessor = cmd;
        }
}
	      

Return to:

Send suggestions and report system problems to the System administrator.