Fixed configuration problems with gsl
[pspp-builds.git] / src / 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., 59 Temple Place - Suite 330, Boston, MA
18    02111-1307, USA. */
19
20 #include <config.h>
21 #include <stdio.h>
22 #include <gsl/gsl_errno.h>
23 #include "main.h"
24 #include "cmdline.h"
25 #include "command.h"
26 #include "error.h"
27 #include "getline.h"
28 #include "glob.h"
29 #include "lexer.h"
30 #include "output.h"
31 #include "settings.h"
32 #include <signal.h>
33
34 #include <stdlib.h>
35
36 #include "debug-print.h"
37
38 static void parse_script (void) NO_RETURN;
39 static void handle_error (int code);
40 static int execute_command (void);
41
42 /* argv[0] with stripped leading directories. */
43 char *pgmname;
44
45 /* Whether FINISH. has been executed. */
46 int finished;
47
48 /* The current date in the form DD MMM YYYY. */
49 char curdate[12];
50
51
52 /* If a segfault happens, issue a message to that effect and halt */
53 void bug_handler(int sig);
54
55 /* Whether we're dropping down to interactive mode immediately because
56    we hit end-of-file unexpectedly (or whatever). */
57 int start_interactive;
58
59
60 /* Program entry point. */
61 int
62 main (int argc, char **argv)
63 {
64   signal (SIGSEGV, bug_handler);
65
66   gsl_set_error_handler_off();
67
68   /* Initialization. */
69   if (!outp_init ())
70     err_hcf (0);
71   init_glob (argc, argv);
72   parse_command_line (argc, argv);
73   if (!outp_read_devices ())
74     msg (FE, _("Error initializing output drivers."));
75
76   lex_init ();
77
78   /* Execution. */
79   parse_script ();
80
81   /* Should never be reached */
82   return (-1);
83 }
84
85 /* Parses the entire script. */
86 static void
87 parse_script (void)
88 {
89   while (!finished)
90     {
91       err_check_count ();
92       handle_error (execute_command ());
93     }
94
95   err_hcf (err_error_count==0);
96 }
97
98 /* Parse and execute a command, returning its return code. */
99 static int
100 execute_command (void)
101 {
102   int result;
103   /* Read the command's first token.
104      We may hit end of file.
105      If so, give the line reader a chance to proceed to the next file.
106      End of file is not handled transparently since the user may want
107      the dictionary cleared between files. */
108   getl_prompt = GETL_PRPT_STANDARD;
109   for (;;)
110     {
111       lex_get ();
112       if (token != T_STOP)
113         break;
114
115       if (!getl_perform_delayed_reset ())
116         err_hcf (err_error_count==0);
117     }
118
119   /* Parse the command. */
120   getl_prompt = GETL_PRPT_CONTINUATION;
121   result =  cmd_parse ();
122  
123   /* Unset the /ALGORITHM subcommand if it was used */
124   unset_cmd_algorithm ();
125
126   return result;
127 }
128
129 /* Print an error message corresponding to the command return code
130    CODE. */
131 static void
132 handle_error (int code)
133 {
134   switch (code)
135     {
136     case CMD_SUCCESS:
137       return;
138           
139     case CMD_FAILURE:
140       msg (SW,  _("This command not executed."));
141       break;
142
143     case CMD_PART_SUCCESS_MAYBE:
144       msg (SW, _("Skipping the rest of this command.  Part of "
145                  "this command may have been executed."));
146       break;
147                   
148     case CMD_PART_SUCCESS:
149       msg (SW, _("Skipping the rest of this command.  This "
150                  "command was fully executed up to this point."));
151       break;
152
153     case CMD_TRAILING_GARBAGE:
154       msg (SW, _("Trailing garbage was encountered following "
155                  "this command.  The command was fully executed "
156                  "to this point."));
157       break;
158
159     default:
160       assert (0);
161     }
162
163   if (getl_reading_script)
164     {
165       err_break ();
166       while (token != T_STOP && token != '.')
167         lex_get ();
168     }
169   else 
170     {
171       msg (SW, _("The rest of this command has been discarded."));
172       lex_discard_line (); 
173     }
174 }
175
176
177
178 /* If a segfault happens, issue a message to that effect and halt */
179 void 
180 bug_handler(int sig UNUSED)
181 {
182   request_bug_report_and_abort("Segmentation Violation");
183 }