1 /* PSPP - computes sample statistics.
2 Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3 Written by Ben Pfaff <blp@gnu.org>.
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.
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.
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
22 #include <gsl/gsl_errno.h>
26 #include "dictionary.h"
38 #include "debug-print.h"
40 static void parse_script (void) NO_RETURN;
41 static void handle_error (int code);
42 static int execute_command (void);
44 /* argv[0] with stripped leading directories. */
47 /* Whether FINISH. has been executed. */
50 /* The current date in the form DD MMM YYYY. */
54 /* If a segfault happens, issue a message to that effect and halt */
55 void bug_handler(int sig);
57 /* Whether we're dropping down to interactive mode immediately because
58 we hit end-of-file unexpectedly (or whatever). */
59 int start_interactive;
62 /* Program entry point. */
64 main (int argc, char **argv)
66 signal (SIGSEGV, bug_handler);
68 gsl_set_error_handler_off();
73 init_glob (argc, argv);
74 parse_command_line (argc, argv);
75 if (!outp_read_devices ())
76 msg (FE, _("Error initializing output drivers."));
83 /* Should never be reached */
87 /* Parses the entire script. */
94 handle_error (execute_command ());
97 err_hcf (err_error_count==0);
100 /* Parse and execute a command, returning its return code. */
102 execute_command (void)
106 /* Read the command's first token.
107 We may hit end of file.
108 If so, give the line reader a chance to proceed to the next file.
109 End of file is not handled transparently since the user may want
110 the dictionary cleared between files. */
111 getl_prompt = GETL_PRPT_STANDARD;
118 if (!getl_perform_delayed_reset ())
119 err_hcf (err_error_count==0);
122 /* Parse the command. */
123 getl_prompt = GETL_PRPT_CONTINUATION;
124 result = cmd_parse ();
126 /* Unset the /ALGORITHM subcommand if it was used */
127 unset_cmd_algorithm ();
129 /* Clear any auxiliary data from the dictionary. */
130 dict_clear_aux (default_dict);
135 /* Print an error message corresponding to the command return code
138 handle_error (int code)
146 msg (SW, _("This command not executed."));
149 case CMD_PART_SUCCESS_MAYBE:
150 msg (SW, _("Skipping the rest of this command. Part of "
151 "this command may have been executed."));
154 case CMD_PART_SUCCESS:
155 msg (SW, _("Skipping the rest of this command. This "
156 "command was fully executed up to this point."));
159 case CMD_TRAILING_GARBAGE:
160 msg (SW, _("Trailing garbage was encountered following "
161 "this command. The command was fully executed "
169 if (getl_reading_script)
172 while (token != T_STOP && token != '.')
177 msg (SW, _("The rest of this command has been discarded."));
184 /* If a segfault happens, issue a message to that effect and halt */
186 bug_handler(int sig UNUSED)
188 request_bug_report_and_abort("Segmentation Violation");