e3d3dbd7df5d7aaf92daa164ef566eea5dc8abd9
[pspp-builds.git] / src / ui / terminal / main.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2006, 2007 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 <locale.h>
20 #include <signal.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #if HAVE_FPU_CONTROL_H
24 #include <fpu_control.h>
25 #endif
26 #if HAVE_FENV_H
27 #include <fenv.h>
28 #endif
29 #if HAVE_IEEEFP_H
30 #include <ieeefp.h>
31 #endif
32
33 #include <data/dictionary.h>
34 #include <data/file-handle-def.h>
35 #include <libpspp/getl.h>
36 #include <data/file-name.h>
37 #include <data/format.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/command-line.h>
52 #include <ui/terminal/msg-ui.h>
53 #include <ui/terminal/read-line.h>
54 #include <ui/terminal/terminal.h>
55
56 #include "progname.h"
57
58 #include "gettext.h"
59 #define _(msgid) gettext (msgid)
60
61
62 static void i18n_init (void);
63 static void fpu_init (void);
64 static void terminate (bool success) NO_RETURN;
65
66 /* If a segfault happens, issue a message to that effect and halt */
67 void bug_handler(int sig);
68
69 /* Handle quit/term/int signals */
70 void interrupt_handler(int sig);
71 static struct dataset * the_dataset = NULL;
72
73 static struct lexer *the_lexer;
74 static struct source_stream *the_source_stream ;
75
76 /* Program entry point. */
77 int
78 main (int argc, char **argv)
79 {
80   int *view_width_p, *view_length_p;
81
82   set_program_name (argv[0]);
83
84   signal (SIGABRT, bug_handler);
85   signal (SIGSEGV, bug_handler);
86   signal (SIGFPE, bug_handler);
87   signal (SIGINT, interrupt_handler);
88
89   i18n_init ();
90   fpu_init ();
91   gsl_set_error_handler_off ();
92
93   fmt_init ();
94   outp_init ();
95   fn_init ();
96   fh_init ();
97   the_source_stream =
98     create_source_stream (
99                           fn_getenv_default ("STAT_INCLUDE_PATH", include_path)
100                           );
101   prompt_init ();
102   readln_initialize ();
103   terminal_init (&view_width_p, &view_length_p);
104   settings_init (view_width_p, view_length_p);
105   random_init ();
106
107   the_dataset = create_dataset ();
108
109   if (parse_command_line (argc, argv, the_source_stream))
110     {
111       msg_ui_init (the_source_stream);
112       if (!get_testing_mode ())
113         outp_read_devices ();
114       else
115         outp_configure_driver_line (
116           ss_cstr ("raw-ascii:ascii:listing:width=9999 length=9999 "
117                    "output-file=\"pspp.list\" emphasis=none "
118                    "headers=off paginate=off squeeze=on "
119                    "top-margin=0 bottom-margin=0"));
120       the_lexer = lex_create (the_source_stream);
121
122       for (;;)
123         {
124           int result = cmd_parse (the_lexer, the_dataset);
125
126           if (result == CMD_EOF || result == CMD_FINISH)
127             break;
128           if (result == CMD_CASCADING_FAILURE &&
129               !getl_is_interactive (the_source_stream))
130             {
131               msg (SE, _("Stopping syntax file processing here to avoid "
132                          "a cascade of dependent command failures."));
133               getl_abort_noninteractive (the_source_stream);
134             }
135           else
136             check_msg_count (the_source_stream);
137         }
138     }
139
140   terminate (!any_errors ());
141 }
142 \f
143 static void
144 i18n_init (void)
145 {
146 #if ENABLE_NLS
147 #if HAVE_LC_MESSAGES
148   setlocale (LC_MESSAGES, "");
149 #endif
150 #if HAVE_LC_PAPER
151   setlocale (LC_PAPER, "");
152 #endif
153   bindtextdomain (PACKAGE, locale_dir);
154   textdomain (PACKAGE);
155 #endif /* ENABLE_NLS */
156 }
157
158 static void
159 fpu_init (void)
160 {
161 #if HAVE_FEHOLDEXCEPT
162   fenv_t foo;
163   feholdexcept (&foo);
164 #elif HAVE___SETFPUCW && defined(_FPU_IEEE)
165   __setfpucw (_FPU_IEEE);
166 #elif HAVE_FPSETMASK
167   fpsetmask (0);
168 #endif
169 }
170
171 /* If a segfault happens, issue a message to that effect and halt */
172 void
173 bug_handler(int sig)
174 {
175 #if DEBUGGING
176   connect_debugger ();
177 #endif
178   switch (sig)
179     {
180     case SIGABRT:
181       request_bug_report_and_abort("Assertion Failure/Abort");
182     case SIGFPE:
183       request_bug_report_and_abort("Floating Point Exception");
184     case SIGSEGV:
185       request_bug_report_and_abort("Segmentation Violation");
186     default:
187       request_bug_report_and_abort("Unknown");
188     }
189 }
190
191 void
192 interrupt_handler(int sig UNUSED)
193 {
194   terminate (false);
195 }
196
197
198 /* Terminate PSPP.  SUCCESS should be true to exit successfully,
199    false to exit as a failure.  */
200 static void
201 terminate (bool success)
202 {
203   static bool terminating = false;
204   if (!terminating)
205     {
206       terminating = true;
207
208       destroy_dataset (the_dataset);
209
210       random_done ();
211       settings_done ();
212       fh_done ();
213       lex_destroy (the_lexer);
214       destroy_source_stream (the_source_stream);
215       prompt_done ();
216       readln_uninitialize ();
217
218       outp_done ();
219       msg_ui_done ();
220       fmt_done ();
221     }
222   exit (success ? EXIT_SUCCESS : EXIT_FAILURE);
223 }