Remove "Written by Ben Pfaff <blp@gnu.org>" lines everywhere.
[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
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   signal (SIGABRT, bug_handler);
86   signal (SIGSEGV, bug_handler);
87   signal (SIGFPE, bug_handler);
88   signal (SIGINT, interrupt_handler);
89
90   set_program_name ("pspp");
91   i18n_init ();
92   fpu_init ();
93   gsl_set_error_handler_off ();
94
95   fmt_init ();
96   outp_init ();
97   fn_init ();
98   fh_init ();
99   the_source_stream =
100     create_source_stream (
101                           fn_getenv_default ("STAT_INCLUDE_PATH", include_path)
102                           );
103   prompt_init ();
104   readln_initialize ();
105   settings_init ();
106   random_init ();
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       outp_read_devices ();
113       the_lexer = lex_create (the_source_stream);
114
115       for (;;)
116         {
117           int result = cmd_parse (the_lexer, the_dataset,
118                                   proc_has_source (the_dataset)
119                                  ? CMD_STATE_DATA : CMD_STATE_INITIAL);
120           if (result == CMD_EOF || result == CMD_FINISH)
121             break;
122           if (result == CMD_CASCADING_FAILURE &&
123               !getl_is_interactive (the_source_stream))
124             {
125               msg (SE, _("Stopping syntax file processing here to avoid "
126                          "a cascade of dependent command failures."));
127               getl_abort_noninteractive (the_source_stream); 
128             }
129           else
130             check_msg_count (the_source_stream);
131         }
132     }
133   
134   terminate (!any_errors ());
135 }
136 \f
137 static void
138 i18n_init (void) 
139 {
140 #if ENABLE_NLS
141 #if HAVE_LC_MESSAGES
142   setlocale (LC_MESSAGES, "");
143 #endif
144   setlocale (LC_MONETARY, "");
145   bindtextdomain (PACKAGE, locale_dir);
146   textdomain (PACKAGE);
147 #endif /* ENABLE_NLS */
148 }
149
150 static void
151 fpu_init (void) 
152 {
153 #if HAVE_FEHOLDEXCEPT
154   fenv_t foo;
155   feholdexcept (&foo);
156 #elif HAVE___SETFPUCW && defined(_FPU_IEEE)
157   __setfpucw (_FPU_IEEE);
158 #endif
159 }
160
161 /* If a segfault happens, issue a message to that effect and halt */
162 void 
163 bug_handler(int sig)
164 {
165 #if DEBUGGING
166   connect_debugger ();
167 #endif
168   switch (sig) 
169     {
170     case SIGABRT:
171       request_bug_report_and_abort("Assertion Failure/Abort");
172     case SIGFPE:
173       request_bug_report_and_abort("Floating Point Exception");
174     case SIGSEGV:
175       request_bug_report_and_abort("Segmentation Violation");
176     default:
177       request_bug_report_and_abort("Unknown");
178     }
179 }
180
181 void 
182 interrupt_handler(int sig UNUSED)
183 {
184   terminate (false);
185 }
186
187
188 /* Terminate PSPP.  SUCCESS should be true to exit successfully,
189    false to exit as a failure.  */
190 static void
191 terminate (bool success)
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
208       outp_done ();
209       msg_ui_done ();
210       fmt_done ();
211     }
212   exit (success ? EXIT_SUCCESS : EXIT_FAILURE);
213 }