2f7d1fbea7baada5b5aafd6d50ff09139518e78f
[pspp-builds.git] / src / ui / terminal / main.c
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or
5    modify it under the terms of the GNU General Public License as
6    published by the Free Software Foundation; either version 2 of the
7    License, or (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful, but
10    WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    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, write to the Free Software
16    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17    02110-1301, USA. */
18
19 #include <config.h>
20
21 #include <signal.h>
22 #include <stdio.h>
23
24 #include <ui/debugger.h>
25 #include "command-line.h"
26 #include "msg-ui.h"
27 #include "progname.h"
28 #include "read-line.h"
29
30 #include <data/fastfile-factory.h>
31 #include <data/dictionary.h>
32 #include <data/file-handle-def.h>
33 #include <libpspp/getl.h>
34 #include <data/file-name.h>
35 #include <data/format.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 <libpspp/compiler.h>
44 #include <libpspp/message.h>
45 #include <libpspp/version.h>
46 #include <math/random.h>
47 #include <output/output.h>
48
49 #if HAVE_FPU_CONTROL_H
50 #include <fpu_control.h>
51 #endif
52
53 #if HAVE_LOCALE_H
54 #include <locale.h>
55 #endif
56
57 #if HAVE_FENV_H
58 #include <fenv.h>
59 #endif
60
61 #include "gettext.h"
62 #define _(msgid) gettext (msgid)
63
64 #include <stdlib.h>
65
66 static void i18n_init (void);
67 static void fpu_init (void);
68 static void terminate (bool success) NO_RETURN;
69
70 /* If a segfault happens, issue a message to that effect and halt */
71 void bug_handler(int sig);
72
73 /* Handle quit/term/int signals */
74 void interrupt_handler(int sig);
75 static struct dataset * the_dataset = NULL;
76
77 static struct lexer *the_lexer;
78 static struct source_stream *the_source_stream ;
79
80
81 /* Program entry point. */
82 int
83 main (int argc, char **argv)
84 {
85   struct casefile_factory *factory;
86   signal (SIGABRT, bug_handler);
87   signal (SIGSEGV, bug_handler);
88   signal (SIGFPE, bug_handler);
89   signal (SIGINT, interrupt_handler);
90
91   set_program_name ("pspp");
92   i18n_init ();
93   fpu_init ();
94   gsl_set_error_handler_off ();
95
96   fmt_init ();
97   outp_init ();
98   fn_init ();
99   fh_init ();
100   the_source_stream =
101     create_source_stream (
102                           fn_getenv_default ("STAT_INCLUDE_PATH", include_path)
103                           );
104   prompt_init ();
105   readln_initialize ();
106   settings_init ();
107   random_init ();
108
109   factory = fastfile_factory_create ();
110
111   the_dataset = create_dataset (factory, NULL, NULL);
112
113   if (parse_command_line (argc, argv, the_source_stream))
114     {
115       msg_ui_init (the_source_stream);
116       outp_read_devices ();
117       the_lexer = lex_create (the_source_stream);
118
119       for (;;)
120         {
121           int result = cmd_parse (the_lexer, the_dataset);
122
123           if (result == CMD_EOF || result == CMD_FINISH)
124             break;
125           if (result == CMD_CASCADING_FAILURE &&
126               !getl_is_interactive (the_source_stream))
127             {
128               msg (SE, _("Stopping syntax file processing here to avoid "
129                          "a cascade of dependent command failures."));
130               getl_abort_noninteractive (the_source_stream); 
131             }
132           else
133             check_msg_count (the_source_stream);
134         }
135     }
136
137   terminate (!any_errors ());
138 }
139 \f
140 static void
141 i18n_init (void) 
142 {
143 #if ENABLE_NLS
144 #if HAVE_LC_MESSAGES
145   setlocale (LC_MESSAGES, "");
146 #endif
147   setlocale (LC_MONETARY, "");
148   bindtextdomain (PACKAGE, locale_dir);
149   textdomain (PACKAGE);
150 #endif /* ENABLE_NLS */
151 }
152
153 static void
154 fpu_init (void) 
155 {
156 #if HAVE_FEHOLDEXCEPT
157   fenv_t foo;
158   feholdexcept (&foo);
159 #elif HAVE___SETFPUCW && defined(_FPU_IEEE)
160   __setfpucw (_FPU_IEEE);
161 #endif
162 }
163
164 /* If a segfault happens, issue a message to that effect and halt */
165 void 
166 bug_handler(int sig)
167 {
168 #if DEBUGGING
169   connect_debugger ();
170 #endif
171   switch (sig) 
172     {
173     case SIGABRT:
174       request_bug_report_and_abort("Assertion Failure/Abort");
175     case SIGFPE:
176       request_bug_report_and_abort("Floating Point Exception");
177     case SIGSEGV:
178       request_bug_report_and_abort("Segmentation Violation");
179     default:
180       request_bug_report_and_abort("Unknown");
181     }
182 }
183
184 void 
185 interrupt_handler(int sig UNUSED)
186 {
187   terminate (false);
188 }
189
190
191 /* Terminate PSPP.  SUCCESS should be true to exit successfully,
192    false to exit as a failure.  */
193 static void
194 terminate (bool success)
195 {
196   static bool terminating = false;
197   if (!terminating) 
198     {
199       terminating = true;
200
201       destroy_dataset (the_dataset);
202
203       random_done ();
204       settings_done ();
205       fh_done ();
206       lex_destroy (the_lexer);
207       destroy_source_stream (the_source_stream);
208       prompt_done ();
209       readln_uninitialize ();
210
211       outp_done ();
212       msg_ui_done ();
213       fmt_done ();
214     }
215   exit (success ? EXIT_SUCCESS : EXIT_FAILURE);
216 }