9f1bc9796c639cc80fb97b067648770e9dbe47c8
[pspp-builds.git] / src / cmdline.c
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18    02111-1307, USA. */
19
20 #include <config.h>
21 #include "cmdline.h"
22 #include <assert.h>
23 #include <ctype.h>
24 #include <stdio.h>
25 #include <errno.h>
26 #include <getopt.h>
27 #include <stdlib.h>
28 #include "alloc.h"
29 #include "error.h"
30 #include "filename.h"
31 #include "getline.h"
32 #include "main.h"
33 #include "output.h"
34 #include "settings.h"
35 #include "str.h"
36 #include "var.h"
37 #include "version.h"
38
39 void welcome (void);
40 static void usage (void);
41
42 char *subst_vars (char *);
43
44 /* Parses the command line specified by ARGC and ARGV as received by
45    main(). */
46 void
47 parse_command_line (int argc, char **argv)
48 {
49   static struct option long_options[] =
50   {
51     {"command", required_argument, NULL, 'c'},
52     {"config-directory", required_argument, NULL, 'B'},
53     {"device", required_argument, NULL, 'o'},
54     {"dry-run", no_argument, NULL, 'n'},
55     {"edit", no_argument, NULL, 'n'},
56     {"help", no_argument, NULL, 'h'},
57     {"include-directory", required_argument, NULL, 'I'},
58     {"interactive", no_argument, NULL, 'i'},
59     {"just-print", no_argument, NULL, 'n'},
60     {"list", no_argument, NULL, 'l'},
61     {"no-include", no_argument, NULL, 'I'},
62     {"no-statrc", no_argument, NULL, 'r'},
63     {"out-file", required_argument, NULL, 'f'},
64     {"pipe", no_argument, NULL, 'p'},
65     {"recon", no_argument, NULL, 'n'},
66     {"safer", no_argument, NULL, 's'},
67     {"testing-mode", no_argument, &set_testing_mode, 1},
68     {"verbose", no_argument, NULL, 'v'},
69     {"version", no_argument, NULL, 'V'},
70     {0, 0, 0, 0},
71   };
72
73   int c, i;
74
75   int cleared_device_defaults = 0;
76
77   int no_statrc = 0;
78
79   for (;;)
80     {
81       c = getopt_long (argc, argv, "B:c:f:hiI:lno:prsvV", long_options, NULL);
82       if (c == -1)
83         break;
84
85       switch (c)
86         {
87         case 'c':
88           {
89             static int n_cmds;
90             
91             struct getl_script *script = xmalloc (sizeof *script);
92             
93             {
94               struct getl_line_list *line;
95
96               script->first_line = line = xmalloc (sizeof *line);
97               line->line = xstrdup ("commandline");
98               line->len = --n_cmds;
99               line = line->next = xmalloc (sizeof *line);
100               line->line = xstrdup (optarg);
101               line->len = strlen (optarg);
102               line->next = NULL;
103             }
104
105             getl_add_virtual_file (script);
106           }
107           break;
108         case 'B':
109           config_path = optarg;
110           break;
111         case 'f':
112           printf (_("-f not yet implemented\n"));
113           break;
114         case 'h':
115           usage ();
116           assert (0);
117         case 'i':
118           getl_interactive = 2;
119           break;
120         case 'I':
121           if (optarg == NULL || !strcmp (optarg, "-"))
122             getl_clear_include_path ();
123           else
124             getl_add_include_dir (optarg);
125           break;
126         case 'l':
127           outp_list_classes ();
128           err_hcf (1);
129         case 'n':
130           printf (_("-n not yet implemented\n"));
131           break;
132         case 'o':
133           if (!cleared_device_defaults)
134             {
135               outp_configure_clear ();
136               cleared_device_defaults = 1;
137             }
138           outp_configure_add (optarg);
139           break;
140         case 'p':
141           printf (_("-p not yet implemented\n"));
142           break;
143         case 'r':
144           no_statrc = 1;
145           break;
146         case 's':
147           set_safer = 1;
148           break;
149         case 'v':
150           err_verbosity++;
151           break;
152         case 'V':
153           puts (version);
154           puts (_("\nCopyright (C) 1997-9, 2000 Free Software Foundation, "
155                   "Inc.\n"
156                   "This is free software; see the source for copying "
157                   "conditions.  There is NO\n"
158                   "WARRANTY; not even for MERCHANTABILITY or FITNESS "
159                   "FOR A PARTICULAR PURPOSE.\n\n"
160                   "Written by Ben Pfaff <blp@gnu.org>."));
161           err_hcf (1);
162         case '?':
163           usage ();
164           assert (0);
165         case 0:
166           break;
167         default:
168           assert (0);
169         }
170     }
171
172   if (set_testing_mode)
173     {
174       /* FIXME: Later this option should do some other things, too. */
175       set_viewwidth = 9999;
176     }
177
178   for (i = optind; i < argc; i++)
179     {
180       int separate = 1;
181
182       if (!strcmp (argv[i], "+"))
183         {
184           separate = 0;
185           if (++i >= argc)
186             usage ();
187         }
188       else if (strchr (argv[i], '='))
189         {
190           outp_configure_macro (argv[i]);
191           continue;
192         }
193       getl_add_file (argv[i], separate, 0);
194     }
195   if (getl_head)
196     getl_head->separate = 0;
197
198   if (getl_am_interactive)
199     getl_interactive = 1;
200
201   if (!no_statrc)
202     {
203       char *pspprc_fn = fn_search_path ("rc", config_path, NULL);
204
205       if (pspprc_fn)
206         getl_add_file (pspprc_fn, 0, 1);
207
208       free (pspprc_fn);
209     }
210 }
211
212 /* Message that describes PSPP command-line syntax. */
213 static const char pre_syntax_message[] =
214 N_("PSPP, a program for statistical analysis of sample data.\n"
215 "\nUsage: %s [OPTION]... FILE...\n"
216 "\nIf a long option shows an argument as mandatory, then it is mandatory\n"
217 "for the equivalent short option also.  Similarly for optional arguments.\n"
218 "\nConfiguration:\n"
219 "  -B, --config-dir=DIR      set configuration directory to DIR\n"
220 "  -o, --device=DEVICE       select output driver DEVICE and disable defaults\n"
221 "  -d, --define=VAR[=VALUE]  set environment variable VAR to VALUE, or empty\n"
222 "  -u, --undef=VAR           undefine environment variable VAR\n"
223 "\nInput and output:\n"
224 "  -f, --out-file=FILE       send output to FILE (overwritten)\n"
225 "  -p, --pipe                read script from stdin, send output to stdout\n"
226 "  -I-, --no-include         clear include path\n"
227 "  -I, --include=DIR         append DIR to include path\n"
228 "  -c, --command=COMMAND     execute COMMAND before .pspp/rc at startup\n"
229 "\nLanguage modifiers:\n"
230 "  -i, --interactive         interpret scripts in interactive mode\n"
231 "  -n, --edit                just check syntax; don't actually run the code\n"
232 "  -r, --no-statrc           disable execution of .pspp/rc at startup\n"
233 "  -s, --safer               don't allow some unsafe operations\n"
234 "\nInformative output:\n"
235 "  -h, --help                print this help, then exit\n"
236 "  -l, --list                print a list of known driver classes, then exit\n"
237 "  -V, --version             show PSPP version, then exit\n"
238 "  -v, --verbose             increments verbosity level\n"
239 "\nNon-option arguments:\n"
240 " FILE1 FILE2                run FILE1, clear the dictionary, run FILE2\n"
241 " FILE1 + FILE2              run FILE1 then FILE2 without clearing dictionary\n"
242 " KEY=VALUE                  overrides macros in output initialization file\n"
243 "\n");
244
245 /* Message that describes PSPP command-line syntax, continued. */
246 static const char post_syntax_message[] = N_("\nReport bugs to <%s>.\n");
247
248 /* Writes a syntax description to stdout and terminates. */
249 static void
250 usage (void)
251 {
252   printf (gettext (pre_syntax_message), pgmname);
253   outp_list_classes ();
254   printf (gettext (post_syntax_message),PACKAGE_BUGREPORT);
255
256   err_hcf (1);
257 }