Rewrite PSPP output engine.
[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/driver.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   fn_init ();
100   fh_init ();
101   the_source_stream =
102     create_source_stream (
103                           fn_getenv_default ("STAT_INCLUDE_PATH", include_path)
104                           );
105   prompt_init ();
106   readln_initialize ();
107   terminal_init (&view_width_p, &view_length_p);
108   settings_init (view_width_p, view_length_p);
109   random_init ();
110
111   the_dataset = create_dataset ();
112
113
114
115   clp = command_line_processor_create (_("PSPP --- A program for statistical analysis"),
116                                        _("FILE1, FILE2 ... FILEn"), NULL);
117
118   command_line_processor_add_options (clp, &io_argp,
119                                       _("Options affecting input and output locations:"), the_source_stream);
120
121   command_line_processor_add_options (clp, &test_argp,
122                                       _("Diagnostic options:"), the_source_stream);
123
124   command_line_processor_add_options (clp, &post_init_argp,
125                                       _("Options affecting syntax and behavior:"), the_source_stream);
126
127   command_line_processor_parse (clp, argc, argv);
128
129   msg_ui_init (the_source_stream);
130
131   the_lexer = lex_create (the_source_stream);
132
133   for (;;)
134     {
135       int result = cmd_parse (the_lexer, the_dataset);
136
137       if (result == CMD_EOF || result == CMD_FINISH)
138         break;
139       if (result == CMD_CASCADING_FAILURE &&
140           !getl_is_interactive (the_source_stream))
141         {
142           msg (SE, _("Stopping syntax file processing here to avoid "
143                      "a cascade of dependent command failures."));
144           getl_abort_noninteractive (the_source_stream);
145         }
146       else
147         check_msg_count (the_source_stream);
148     }
149
150
151   clean_up ();
152   return any_errors ();
153 }
154 \f
155
156 static void
157 fpu_init (void)
158 {
159 #if HAVE_FEHOLDEXCEPT
160   fenv_t foo;
161   feholdexcept (&foo);
162 #elif HAVE___SETFPUCW && defined(_FPU_IEEE)
163   __setfpucw (_FPU_IEEE);
164 #elif HAVE_FPSETMASK
165   fpsetmask (0);
166 #endif
167 }
168
169 /* If a segfault happens, issue a message to that effect and halt */
170 void
171 bug_handler(int sig)
172 {
173 #if DEBUGGING
174   connect_debugger ();
175 #endif
176   switch (sig)
177     {
178     case SIGABRT:
179       request_bug_report_and_abort("Assertion Failure/Abort");
180     case SIGFPE:
181       request_bug_report_and_abort("Floating Point Exception");
182     case SIGSEGV:
183       request_bug_report_and_abort("Segmentation Violation");
184     default:
185       request_bug_report_and_abort("Unknown");
186     }
187 }
188
189 /* Clean up PSPP in preparation for termination.  */
190 static void
191 clean_up (void)
192 {
193   static bool terminating = false;
194   if (!terminating)
195     {
196       terminating = true;
197
198       destroy_dataset (the_dataset);
199
200       random_done ();
201       settings_done ();
202       fh_done ();
203       lex_destroy (the_lexer);
204       destroy_source_stream (the_source_stream);
205       prompt_done ();
206       readln_uninitialize ();
207       output_close ();
208       msg_ui_done ();
209       i18n_done ();
210     }
211 }