pspp: Don't attempt fancy clean-up upon receiving a fatal signal.
[pspp-builds.git] / src / ui / terminal / main.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2006, 2007, 2009, 2010 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
19 #include <signal.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #if HAVE_FPU_CONTROL_H
23 #include <fpu_control.h>
24 #endif
25 #if HAVE_FENV_H
26 #include <fenv.h>
27 #endif
28 #if HAVE_IEEEFP_H
29 #include <ieeefp.h>
30 #endif
31 #include <unistd.h>
32
33 #include "data/dictionary.h"
34 #include "data/file-handle-def.h"
35 #include "data/file-name.h"
36 #include "data/procedure.h"
37 #include "data/settings.h"
38 #include "data/variable.h"
39 #include "gsl/gsl_errno.h"
40 #include "language/command.h"
41 #include "language/lexer/lexer.h"
42 #include "language/prompt.h"
43 #include "language/syntax-file.h"
44 #include "libpspp/argv-parser.h"
45 #include "libpspp/compiler.h"
46 #include "libpspp/getl.h"
47 #include "libpspp/i18n.h"
48 #include "libpspp/message.h"
49 #include "libpspp/version.h"
50 #include "math/random.h"
51 #include "output/driver.h"
52 #include "ui/debugger.h"
53 #include "ui/source-init-opts.h"
54 #include "ui/terminal/msg-ui.h"
55 #include "ui/terminal/read-line.h"
56 #include "ui/terminal/terminal-opts.h"
57 #include "ui/terminal/terminal.h"
58
59 #include "gl/fatal-signal.h"
60 #include "gl/progname.h"
61 #include "gl/relocatable.h"
62
63 #include "gettext.h"
64 #define _(msgid) gettext (msgid)
65
66 static struct dataset * the_dataset = NULL;
67
68 static struct lexer *the_lexer;
69 static struct source_stream *the_source_stream ;
70
71 static void add_syntax_file (struct source_stream *, enum syntax_mode,
72                              const char *file_name);
73 static void bug_handler(int sig);
74 static void fpu_init (void);
75 static void clean_up (void);
76
77 /* Program entry point. */
78 int
79 main (int argc, char **argv)
80 {
81   struct terminal_opts *terminal_opts;
82   struct argv_parser *parser;
83   enum syntax_mode syntax_mode;
84   bool process_statrc;
85
86   set_program_name (argv[0]);
87
88   signal (SIGABRT, bug_handler);
89   signal (SIGSEGV, bug_handler);
90   signal (SIGFPE, bug_handler);
91
92   i18n_init ();
93   fpu_init ();
94   gsl_set_error_handler_off ();
95
96   fh_init ();
97   the_source_stream = create_source_stream ();
98   prompt_init ();
99   readln_initialize ();
100   settings_init ();
101   terminal_check_size ();
102   random_init ();
103
104   the_dataset = create_dataset ();
105
106   parser = argv_parser_create ();
107   terminal_opts = terminal_opts_init (parser, &syntax_mode, &process_statrc);
108   source_init_register_argv_parser (parser, the_source_stream);
109   if (!argv_parser_run (parser, argc, argv))
110     exit (EXIT_FAILURE);
111   terminal_opts_done (terminal_opts, argc, argv);
112   argv_parser_destroy (parser);
113
114   msg_ui_init (the_source_stream);
115
116   /* Add syntax files to source stream. */
117   if (process_statrc)
118     {
119       char *rc = fn_search_path ("rc", getl_include_path (the_source_stream));
120       if (rc != NULL)
121         {
122           add_syntax_file (the_source_stream, GETL_BATCH, rc);
123           free (rc);
124         }
125     }
126   if (optind < argc)
127     {
128       int i;
129
130       for (i = optind; i < argc; i++)
131         add_syntax_file (the_source_stream, syntax_mode, argv[i]);
132     }
133   else
134     add_syntax_file (the_source_stream, syntax_mode, "-");
135
136   /* Parse and execute syntax. */
137   the_lexer = lex_create (the_source_stream);
138   for (;;)
139     {
140       int result = cmd_parse (the_lexer, the_dataset);
141
142       if (result == CMD_EOF || result == CMD_FINISH)
143         break;
144       if (result == CMD_CASCADING_FAILURE &&
145           !getl_is_interactive (the_source_stream))
146         {
147           msg (SE, _("Stopping syntax file processing here to avoid "
148                      "a cascade of dependent command failures."));
149           getl_abort_noninteractive (the_source_stream);
150         }
151       else if (msg_ui_too_many_errors ())
152         getl_abort_noninteractive (the_source_stream);
153     }
154
155
156   clean_up ();
157   return msg_ui_any_errors ();
158 }
159
160 static void
161 fpu_init (void)
162 {
163 #if HAVE_FEHOLDEXCEPT
164   fenv_t foo;
165   feholdexcept (&foo);
166 #elif HAVE___SETFPUCW && defined(_FPU_IEEE)
167   __setfpucw (_FPU_IEEE);
168 #elif HAVE_FPSETMASK
169   fpsetmask (0);
170 #endif
171 }
172
173 /* If a segfault happens, issue a message to that effect and halt */
174 static void
175 bug_handler(int sig)
176 {
177   /* Reset SIG to its default handling so that if it happens again we won't
178      recurse. */
179   signal (sig, SIG_DFL);
180
181 #if DEBUGGING
182   connect_debugger ();
183 #endif
184   switch (sig)
185     {
186     case SIGABRT:
187       request_bug_report("Assertion Failure/Abort");
188       break;
189     case SIGFPE:
190       request_bug_report("Floating Point Exception");
191       break;
192     case SIGSEGV:
193       request_bug_report("Segmentation Violation");
194       break;
195     default:
196       request_bug_report("Unknown");
197       break;
198     }
199
200   /* Re-raise the signal so that we terminate with the correct status. */
201   raise (sig);
202 }
203
204 /* Clean up PSPP in preparation for termination.  */
205 static void
206 clean_up (void)
207 {
208   static bool terminating = false;
209   if (!terminating)
210     {
211       terminating = true;
212
213       destroy_dataset (the_dataset);
214
215       random_done ();
216       settings_done ();
217       fh_done ();
218       lex_destroy (the_lexer);
219       destroy_source_stream (the_source_stream);
220       prompt_done ();
221       readln_uninitialize ();
222       output_close ();
223       msg_ui_done ();
224       i18n_done ();
225     }
226 }
227
228 static void
229 add_syntax_file (struct source_stream *ss, enum syntax_mode syntax_mode,
230                  const char *file_name)
231 {
232   struct getl_interface *source;
233
234   source = (!strcmp (file_name, "-") && isatty (STDIN_FILENO)
235            ? create_readln_source ()
236            : create_syntax_file_source (file_name));
237   getl_append_source (ss, source, syntax_mode, ERRMODE_CONTINUE);
238 }