Change license from GPLv2+ to GPLv3+.
[pspp-builds.git] / src / ui / terminal / command-line.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #include <config.h>
18 #include "command-line.h"
19 #include "msg-ui.h"
20 #include <libpspp/message.h>
21 #include <ctype.h>
22 #include <stdio.h>
23 #include <errno.h>
24 #include <getopt.h>
25 #include <stdlib.h>
26 #include <libpspp/alloc.h>
27 #include <libpspp/assertion.h>
28 #include <libpspp/copyleft.h>
29 #include <libpspp/message.h>
30 #include <language/syntax-file.h>
31 #include "progname.h"
32 #include <data/settings.h>
33 #include <output/output.h>
34 #include <data/file-name.h>
35 #include <libpspp/getl.h>
36 #include <libpspp/str.h>
37 #include <libpspp/version.h>
38 #include <libpspp/verbose-msg.h>
39 #include "read-line.h"
40
41 #include "gettext.h"
42 #define _(msgid) gettext (msgid)
43 #define N_(msgid) msgid
44
45 void welcome (void);
46 static void usage (void);
47
48 char *subst_vars (char *);
49
50
51 /* Parses the command line specified by ARGC and ARGV as received by
52    main().  Returns true if normal execution should proceed,
53    false if the command-line indicates that PSPP should exit. */
54 bool
55 parse_command_line (int argc, char **argv, struct source_stream *ss)
56 {
57   static struct option long_options[] =
58   {
59     {"algorithm", required_argument, NULL, 'a'},
60     {"command", required_argument, NULL, 'c'},
61     {"config-directory", required_argument, NULL, 'B'},
62     {"device", required_argument, NULL, 'o'},
63     {"dry-run", no_argument, NULL, 'n'},
64     {"edit", no_argument, NULL, 'n'},
65     {"error-file", required_argument, NULL, 'e'},
66     {"help", no_argument, NULL, 'h'},
67     {"include-directory", required_argument, NULL, 'I'},
68     {"interactive", no_argument, NULL, 'i'},
69     {"just-print", no_argument, NULL, 'n'},
70     {"list", no_argument, NULL, 'l'},
71     {"no-include", no_argument, NULL, 'I'},
72     {"no-statrc", no_argument, NULL, 'r'},
73     {"out-file", required_argument, NULL, 'f'},
74     {"pipe", no_argument, NULL, 'p'},
75     {"recon", no_argument, NULL, 'n'},
76     {"safer", no_argument, NULL, 's'},
77     {"syntax", required_argument, NULL, 'x'},
78     {"testing-mode", no_argument, NULL, 'T'},
79     {"verbose", no_argument, NULL, 'v'},
80     {"version", no_argument, NULL, 'V'},
81     {0, 0, 0, 0},
82   };
83
84   int c, i;
85
86   bool cleared_device_defaults = false;
87   bool process_statrc = true;
88   bool interactive_mode = false;
89   int syntax_files = 0;
90
91   for (;;)
92     {
93       c = getopt_long (argc, argv, "a:x:B:c:e:f:hiI:lno:prsvV", long_options, NULL);
94       if (c == -1)
95         break;
96
97       switch (c)
98         {
99           /* Compatibility options */
100         case 'a':
101           if ( 0 == strcmp(optarg,"compatible") )
102               set_algorithm(COMPATIBLE);
103           else if ( 0 == strcmp(optarg,"enhanced"))
104               set_algorithm(ENHANCED);
105           else
106             {
107               usage ();
108               return false;
109             }
110           break;
111
112         case 'x':
113           if ( 0 == strcmp(optarg,"compatible") )
114             set_syntax(COMPATIBLE);
115           else if ( 0 == strcmp(optarg,"enhanced"))
116             set_syntax(ENHANCED);
117           else
118             {
119               usage ();
120               return false;
121             }
122           break;
123         case 'e':
124           msg_ui_set_error_file (optarg);
125           break;
126         case 'B':
127           config_path = optarg;
128           break;
129         case 'f':
130           printf (_("%s is not yet implemented."), "-f");
131           putchar('\n');
132           break;
133         case 'h':
134           usage ();
135           return false;
136         case 'i':
137           interactive_mode = true;
138           break;
139         case 'I':
140           if (optarg == NULL || !strcmp (optarg, "-"))
141             getl_clear_include_path (ss);
142           else
143             getl_add_include_dir (ss, optarg);
144           break;
145         case 'l':
146           outp_list_classes ();
147           return false;
148         case 'n':
149           printf (_("%s is not yet implemented."),"-n");
150           putchar('\n');
151           break;
152         case 'o':
153           if (!cleared_device_defaults)
154             {
155               outp_configure_clear ();
156               cleared_device_defaults = true;
157             }
158           outp_configure_add (optarg);
159           break;
160         case 'p':
161           printf (_("%s is not yet implemented."),"-p");
162           putchar('\n');
163           break;
164         case 'r':
165           process_statrc = false;
166           break;
167         case 's':
168           set_safer_mode ();
169           break;
170         case 'v':
171           verbose_increment_level ();
172           break;
173         case 'V':
174           puts (version);
175           puts (legal);
176           return false;
177         case 'T':
178           force_long_view ();
179           set_testing_mode (true);
180           break;
181         case '?':
182           usage ();
183           return false;
184         case 0:
185           break;
186         default:
187           NOT_REACHED ();
188         }
189     }
190
191   if (process_statrc)
192     {
193       char *pspprc_fn = fn_search_path ("rc", config_path);
194       if (pspprc_fn != NULL)
195         {
196           getl_append_source (ss, create_syntax_file_source (pspprc_fn));
197
198           free (pspprc_fn);
199         }
200     }
201
202   for (i = optind; i < argc; i++)
203     if (strchr (argv[i], '='))
204       outp_configure_macro (argv[i]);
205     else
206       {
207         getl_append_source (ss, create_syntax_file_source (argv[i]));
208         syntax_files++;
209       }
210
211   if (!syntax_files || interactive_mode)
212     getl_append_source (ss, create_readln_source () );
213
214   return true;
215 }
216
217 /* Message that describes PSPP command-line syntax. */
218 static const char pre_syntax_message[] =
219 N_("PSPP, a program for statistical analysis of sample data.\n"
220 "\nUsage: %s [OPTION]... FILE...\n"
221 "\nIf a long option shows an argument as mandatory, then it is mandatory\n"
222 "for the equivalent short option also.  Similarly for optional arguments.\n"
223 "\nConfiguration:\n"
224 "  -a, --algorithm={compatible|enhanced}\n"
225 "                            set to `compatible' if you want output\n"
226 "                            calculated from broken algorithms\n"
227 "  -B, --config-dir=DIR      set configuration directory to DIR\n"
228 "  -o, --device=DEVICE       select output driver DEVICE and disable defaults\n"
229 "\nInput and output:\n"
230 "  -e, --error-file=FILE     send error messages to FILE (appended)\n"
231 "  -f, --out-file=FILE       send output to FILE (overwritten)\n"
232 "  -p, --pipe                read syntax from stdin, send output to stdout\n"
233 "  -I-, --no-include         clear include path\n"
234 "  -I, --include=DIR         append DIR to include path\n"
235 "\nLanguage modifiers:\n"
236 "  -i, --interactive         interpret syntax in interactive mode\n"
237 "  -n, --edit                just check syntax; don't actually run the code\n"
238 "  -r, --no-statrc           disable execution of .pspp/rc at startup\n"
239 "  -s, --safer               don't allow some unsafe operations\n"
240 "  -x, --syntax={compatible|enhanced}\n"
241 "                            set to `compatible' if you want only to accept\n"
242 "                            spss compatible syntax\n"
243 "\nInformative output:\n"
244 "  -h, --help                print this help, then exit\n"
245 "  -l, --list                print a list of known driver classes, then exit\n"
246 "  -V, --version             show PSPP version, then exit\n"
247 "  -v, --verbose             increments verbosity level\n"
248 "\nNon-option arguments:\n"
249 " FILE                       syntax file to execute\n"
250 " KEY=VALUE                  overrides macros in output initialization file\n"
251 "\n");
252
253 /* Message that describes PSPP command-line syntax, continued. */
254 static const char post_syntax_message[] = N_("\nReport bugs to <%s>.\n");
255
256 /* Writes a syntax description to stdout. */
257 static void
258 usage (void)
259 {
260   printf (gettext (pre_syntax_message), program_name);
261   outp_list_classes ();
262   printf (gettext (post_syntax_message), PACKAGE_BUGREPORT);
263 }