Altered return status to be non zero if there are errors parsing data
[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 <assert.h>
22 #include <stdio.h>
23 #include "command.h"
24 #include "error.h"
25 #include "getline.h"
26 #include "lexer.h"
27 #include "output.h"
28
29 #include <stdlib.h>
30
31 #undef DEBUGGING
32 /*#define DEBUGGING 1*/
33 #include "debug-print.h"
34
35 static void parse_script (void) __attribute__ ((noreturn));
36 static void handle_error (int code);
37 static int execute_command (void);
38
39 /* argv[0] with stripped leading directories. */
40 char *pgmname;
41
42 /* Whether FINISH. has been executed. */
43 int finished;
44
45 /* The current date in the form DD MMM YYYY. */
46 char curdate[12];
47
48 /* Whether we're dropping down to interactive mode immediately because
49    we hit end-of-file unexpectedly (or whatever). */
50 int start_interactive;
51
52 /* Program entry point. */
53 int
54 main (int argc, char **argv)
55 {
56   void init_glob (int, char **);        /* Exported by glob.c. */
57   void parse_command_line (int, char **);       /* Exported by cmdline.c */
58
59   /* Initialization. */
60   if (!outp_init ())
61     err_hcf (0);
62   init_glob (argc, argv);
63   parse_command_line (argc, argv);
64   if (!outp_read_devices ())
65     msg (FE, _("Error initializing output drivers."));
66
67   lex_init ();
68   cmd_init ();
69
70   /* Execution. */
71   parse_script ();
72
73   /* Should never be reached */
74   return (-1);
75 }
76
77 /* Parses the entire script. */
78 static void
79 parse_script (void)
80 {
81   while (!finished)
82     {
83       err_check_count ();
84       handle_error (execute_command ());
85     }
86
87   err_hcf (err_error_count==0);
88 }
89
90 /* Parse and execute a command, returning its return code. */
91 static int
92 execute_command (void)
93 {
94   /* Read the command's first token.
95      We may hit end of file.
96      If so, give the line reader a chance to proceed to the next file.
97      End of file is not handled transparently since the user may want
98      the dictionary cleared between files. */
99   getl_prompt = GETL_PRPT_STANDARD;
100   for (;;)
101     {
102       lex_get ();
103       if (token != T_STOP)
104         break;
105
106       if (!getl_perform_delayed_reset ())
107         err_hcf (err_error_count==0);
108     }
109
110   /* Parse the command. */
111   getl_prompt = GETL_PRPT_CONTINUATION;
112   return cmd_parse ();
113 }
114
115 /* Print an error message corresponding to the command return code
116    CODE. */
117 static void
118 handle_error (int code)
119 {
120   switch (code)
121     {
122     case CMD_SUCCESS:
123       return;
124           
125     case CMD_FAILURE:
126       msg (SW,  _("This command not executed."));
127       break;
128
129     case CMD_PART_SUCCESS_MAYBE:
130       msg (SW, _("Skipping the rest of this command.  Part of "
131                  "this command may have been executed."));
132       break;
133                   
134     case CMD_PART_SUCCESS:
135       msg (SW, _("Skipping the rest of this command.  This "
136                  "command was fully executed up to this point."));
137       break;
138
139     case CMD_TRAILING_GARBAGE:
140       msg (SW, _("Trailing garbage was encountered following "
141                  "this command.  The command was fully executed "
142                  "to this point."));
143       break;
144
145     default:
146       assert (0);
147     }
148
149   if (getl_reading_script)
150     {
151       err_break ();
152       while (token != T_STOP && token != '.')
153         lex_get ();
154     }
155   else
156     lex_discard_line ();
157 }