Fix regression in command name completion reported by John Darrington.
[pspp] / src / ui / terminal / main.c
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301, USA. */
19
20 #include <config.h>
21
22 #include <signal.h>
23 #include <stdio.h>
24
25 #include "command-line.h"
26 #include "msg-ui.h"
27 #include "progname.h"
28 #include "read-line.h"
29
30 #include <data/dictionary.h>
31 #include <data/file-handle-def.h>
32 #include <data/file-name.h>
33 #include <data/procedure.h>
34 #include <data/settings.h>
35 #include <data/variable.h>
36 #include <gsl/gsl_errno.h>
37 #include <language/command.h>
38 #include <language/lexer/lexer.h>
39 #include <language/line-buffer.h>
40 #include <libpspp/compiler.h>
41 #include <libpspp/message.h>
42 #include <libpspp/version.h>
43 #include <math/random.h>
44 #include <output/output.h>
45
46 #if HAVE_FPU_CONTROL_H
47 #include <fpu_control.h>
48 #endif
49
50 #if HAVE_LOCALE_H
51 #include <locale.h>
52 #endif
53
54 #if HAVE_FENV_H
55 #include <fenv.h>
56 #endif
57
58 #include "gettext.h"
59 #define _(msgid) gettext (msgid)
60
61 #include <stdlib.h>
62
63 static void i18n_init (void);
64 static void fpu_init (void);
65 static void terminate (bool success) NO_RETURN;
66
67 /* If a segfault happens, issue a message to that effect and halt */
68 void bug_handler(int sig);
69
70 /* Handle quit/term/int signals */
71 void interrupt_handler(int sig);
72
73
74 /* Program entry point. */
75 int
76 main (int argc, char **argv)
77 {
78   signal (SIGSEGV, bug_handler);
79   signal (SIGFPE, bug_handler);
80   signal (SIGINT, interrupt_handler);
81
82   set_program_name ("pspp");
83   i18n_init ();
84   fpu_init ();
85   gsl_set_error_handler_off ();
86
87   outp_init ();
88   msg_ui_init ();
89   fn_init ();
90   fh_init ();
91   getl_initialize ();
92   readln_initialize ();
93   settings_init ();
94   random_init ();
95   proc_init ();
96
97   if (parse_command_line (argc, argv)) 
98     {
99       outp_read_devices ();
100       lex_init ();
101
102       for (;;)
103         {
104           int result = cmd_parse (proc_has_source ()
105                                   ? CMD_STATE_DATA : CMD_STATE_INITIAL);
106           if (result == CMD_EOF || result == CMD_FINISH)
107             break;
108           if (result == CMD_CASCADING_FAILURE && !getl_is_interactive ())
109             {
110               msg (SE, _("Stopping syntax file processing here to avoid "
111                          "a cascade of dependent command failures."));
112               getl_abort_noninteractive (); 
113             }
114           else
115             check_msg_count ();
116         }
117     }
118   
119   terminate (!any_errors ());
120 }
121 \f
122 static void
123 i18n_init (void) 
124 {
125 #if ENABLE_NLS
126 #if HAVE_LC_MESSAGES
127   setlocale (LC_MESSAGES, "");
128 #endif
129   setlocale (LC_MONETARY, "");
130   bindtextdomain (PACKAGE, locale_dir);
131   textdomain (PACKAGE);
132 #endif /* ENABLE_NLS */
133 }
134
135 static void
136 fpu_init (void) 
137 {
138 #if HAVE_FEHOLDEXCEPT
139   fenv_t foo;
140   feholdexcept (&foo);
141 #elif HAVE___SETFPUCW && defined(_FPU_IEEE)
142   __setfpucw (_FPU_IEEE);
143 #endif
144 }
145
146 /* If a segfault happens, issue a message to that effect and halt */
147 void 
148 bug_handler(int sig)
149 {
150   switch (sig) 
151     {
152     case SIGFPE:
153       request_bug_report_and_abort("Floating Point Exception");
154       break;
155     case SIGSEGV:
156       request_bug_report_and_abort("Segmentation Violation");
157       break;
158     default:
159       request_bug_report_and_abort("");
160       break;
161     }
162 }
163
164 void 
165 interrupt_handler(int sig UNUSED)
166 {
167   terminate (false);
168 }
169
170
171 /* Terminate PSPP.  SUCCESS should be true to exit successfully,
172    false to exit as a failure.  */
173 static void
174 terminate (bool success)
175 {
176   static bool terminating = false;
177   if (!terminating) 
178     {
179       terminating = true;
180
181       proc_done ();
182
183       random_done ();
184       settings_done ();
185       fh_done ();
186       lex_done ();
187       getl_uninitialize ();
188       readln_uninitialize ();
189
190       outp_done ();
191       msg_ui_done ();
192     }
193   exit (success ? EXIT_SUCCESS : EXIT_FAILURE);
194 }