b0582c1b297a5e28bf298be6471869acbf95a9b8
[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 /* Initialise error handling on the gsl library */
60 static void 
61 err_handler_gsl (const char *reason, const char *file,
62         int line, int gsl_errno UNUSED)
63 {
64   msg(FE, _("gsl error at %s:%d; reason: \"%s\""), file,line,reason);
65 }
66
67 /* Program entry point. */
68 int
69 main (int argc, char **argv)
70 {
71   signal (SIGSEGV, bug_handler);
72
73   gsl_set_error_handler(err_handler_gsl);
74
75   /* Initialization. */
76   if (!outp_init ())
77     err_hcf (0);
78   init_glob (argc, argv);
79   parse_command_line (argc, argv);
80   if (!outp_read_devices ())
81     msg (FE, _("Error initializing output drivers."));
82
83   lex_init ();
84
85   /* Execution. */
86   parse_script ();
87
88   /* Should never be reached */
89   return (-1);
90 }
91
92 /* Parses the entire script. */
93 static void
94 parse_script (void)
95 {
96   while (!finished)
97     {
98       err_check_count ();
99       handle_error (execute_command ());
100     }
101
102   err_hcf (err_error_count==0);
103 }
104
105 /* Parse and execute a command, returning its return code. */
106 static int
107 execute_command (void)
108 {
109   int result;
110   /* Read the command's first token.
111      We may hit end of file.
112      If so, give the line reader a chance to proceed to the next file.
113      End of file is not handled transparently since the user may want
114      the dictionary cleared between files. */
115   getl_prompt = GETL_PRPT_STANDARD;
116   for (;;)
117     {
118       lex_get ();
119       if (token != T_STOP)
120         break;
121
122       if (!getl_perform_delayed_reset ())
123         err_hcf (err_error_count==0);
124     }
125
126   /* Parse the command. */
127   getl_prompt = GETL_PRPT_CONTINUATION;
128   result =  cmd_parse ();
129  
130   /* Unset the /ALGORITHM subcommand if it was used */
131   unset_cmd_algorithm ();
132
133   return result;
134 }
135
136 /* Print an error message corresponding to the command return code
137    CODE. */
138 static void
139 handle_error (int code)
140 {
141   switch (code)
142     {
143     case CMD_SUCCESS:
144       return;
145           
146     case CMD_FAILURE:
147       msg (SW,  _("This command not executed."));
148       break;
149
150     case CMD_PART_SUCCESS_MAYBE:
151       msg (SW, _("Skipping the rest of this command.  Part of "
152                  "this command may have been executed."));
153       break;
154                   
155     case CMD_PART_SUCCESS:
156       msg (SW, _("Skipping the rest of this command.  This "
157                  "command was fully executed up to this point."));
158       break;
159
160     case CMD_TRAILING_GARBAGE:
161       msg (SW, _("Trailing garbage was encountered following "
162                  "this command.  The command was fully executed "
163                  "to this point."));
164       break;
165
166     default:
167       assert (0);
168     }
169
170   if (getl_reading_script)
171     {
172       err_break ();
173       while (token != T_STOP && token != '.')
174         lex_get ();
175     }
176   else 
177     {
178       msg (SW, _("The rest of this command has been discarded."));
179       lex_discard_line (); 
180     }
181 }
182
183
184
185 /* If a segfault happens, issue a message to that effect and halt */
186 void 
187 bug_handler(int sig UNUSED)
188 {
189   request_bug_report_and_abort("Segmentation Violation");
190 }