Merge commit 'origin/stable'
[pspp-builds.git] / src / ui / terminal / main.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2006, 2007, 2009 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
32
33 #include <libpspp/i18n.h>
34 #include <data/dictionary.h>
35 #include <data/file-handle-def.h>
36 #include <libpspp/getl.h>
37 #include <data/file-name.h>
38 #include <data/procedure.h>
39 #include <data/settings.h>
40 #include <data/variable.h>
41 #include <gsl/gsl_errno.h>
42 #include <language/command.h>
43 #include <language/lexer/lexer.h>
44 #include <language/prompt.h>
45 #include <libpspp/compiler.h>
46 #include <libpspp/message.h>
47 #include <libpspp/version.h>
48 #include <math/random.h>
49 #include <output/output.h>
50 #include <ui/debugger.h>
51 #include <ui/terminal/msg-ui.h>
52 #include <ui/terminal/read-line.h>
53 #include <ui/terminal/terminal.h>
54 #include <ui/terminal/terminal-opts.h>
55 #include <ui/command-line.h>
56 #include <ui/source-init-opts.h>
57
58 #include "fatal-signal.h"
59 #include "progname.h"
60 #include "relocatable.h"
61
62 #include "gettext.h"
63 #define _(msgid) gettext (msgid)
64
65
66 static void fpu_init (void);
67 static void clean_up (void);
68
69 /* If a segfault happens, issue a message to that effect and halt */
70 void bug_handler(int sig);
71
72 /* Handle quit/term/int signals */
73 void interrupt_handler(int sig);
74 static struct dataset * the_dataset = NULL;
75
76 static struct lexer *the_lexer;
77 static struct source_stream *the_source_stream ;
78
79 const char *argp_program_version = version;
80 const char *argp_program_bug_address = PACKAGE_BUGREPORT;
81
82 /* Program entry point. */
83 int
84 main (int argc, char **argv)
85 {
86   int *view_width_p, *view_length_p;
87   struct command_line_processor *clp;
88   set_program_name (argv[0]);
89
90   signal (SIGABRT, bug_handler);
91   signal (SIGSEGV, bug_handler);
92   signal (SIGFPE, bug_handler);
93   at_fatal_signal (clean_up);
94
95   i18n_init ();
96   fpu_init ();
97   gsl_set_error_handler_off ();
98
99   outp_init ();
100   fn_init ();
101   fh_init ();
102   the_source_stream =
103     create_source_stream (
104                           fn_getenv_default ("STAT_INCLUDE_PATH", include_path)
105                           );
106   prompt_init ();
107   readln_initialize ();
108   terminal_init (&view_width_p, &view_length_p);
109   settings_init (view_width_p, view_length_p);
110   random_init ();
111
112   the_dataset = create_dataset ();
113
114
115
116   clp = command_line_processor_create (_("PSPP --- A program for statistical analysis"),
117                                        _("FILE1, FILE2 ... FILEn"), NULL);
118
119   command_line_processor_add_options (clp, &io_argp,
120                                       _("Options affecting input and output locations:"), the_source_stream);
121
122   command_line_processor_add_options (clp, &test_argp,
123                                       _("Diagnostic options:"), the_source_stream);
124
125   command_line_processor_add_options (clp, &post_init_argp,
126                                       _("Options affecting syntax and behavior:"), the_source_stream);
127
128   command_line_processor_parse (clp, argc, argv);
129
130   msg_ui_init (the_source_stream);
131
132   if (!settings_get_testing_mode ())
133     {
134       outp_read_devices ();
135     }
136   else
137     {
138       outp_configure_driver_line
139         (
140          ss_cstr ("raw-ascii:ascii:listing:width=9999 length=9999 "
141                   "output-file=\"pspp.list\" emphasis=none "
142                   "headers=off paginate=off squeeze=on "
143                   "top-margin=0 bottom-margin=0"));
144     }
145
146   the_lexer = lex_create (the_source_stream);
147
148   for (;;)
149     {
150       int result = cmd_parse (the_lexer, the_dataset);
151
152       if (result == CMD_EOF || result == CMD_FINISH)
153         break;
154       if (result == CMD_CASCADING_FAILURE &&
155           !getl_is_interactive (the_source_stream))
156         {
157           msg (SE, _("Stopping syntax file processing here to avoid "
158                      "a cascade of dependent command failures."));
159           getl_abort_noninteractive (the_source_stream);
160         }
161       else
162         check_msg_count (the_source_stream);
163     }
164
165
166   clean_up ();
167   return any_errors ();
168 }
169 \f
170
171 static void
172 fpu_init (void)
173 {
174 #if HAVE_FEHOLDEXCEPT
175   fenv_t foo;
176   feholdexcept (&foo);
177 #elif HAVE___SETFPUCW && defined(_FPU_IEEE)
178   __setfpucw (_FPU_IEEE);
179 #elif HAVE_FPSETMASK
180   fpsetmask (0);
181 #endif
182 }
183
184 /* If a segfault happens, issue a message to that effect and halt */
185 void
186 bug_handler(int sig)
187 {
188 #if DEBUGGING
189   connect_debugger ();
190 #endif
191   switch (sig)
192     {
193     case SIGABRT:
194       request_bug_report_and_abort("Assertion Failure/Abort");
195     case SIGFPE:
196       request_bug_report_and_abort("Floating Point Exception");
197     case SIGSEGV:
198       request_bug_report_and_abort("Segmentation Violation");
199     default:
200       request_bug_report_and_abort("Unknown");
201     }
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       outp_done ();
223       msg_ui_done ();
224       i18n_done ();
225     }
226 }