X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmain.c;h=c5f9c34f4478f743a06f6cb983194b6be8dd7034;hb=3bd4593ef9a57f23062c61ec465389f749ba3089;hp=04e886787bb73b413e9a055e95f4c626a4b8424c;hpb=7b98b3a4f58f6dc5a8e9cbc188b627966d5e652d;p=pspp-builds.git diff --git a/src/main.c b/src/main.c index 04e88678..c5f9c34f 100644 --- a/src/main.c +++ b/src/main.c @@ -18,16 +18,20 @@ 02111-1307, USA. */ #include -#include "main.h" -#include #include +#include +#include "main.h" #include "cmdline.h" #include "command.h" +#include "dictionary.h" #include "error.h" #include "getline.h" #include "glob.h" #include "lexer.h" #include "output.h" +#include "settings.h" +#include "var.h" +#include #include @@ -46,14 +50,33 @@ int finished; /* The current date in the form DD MMM YYYY. */ char curdate[12]; + +/* If a segfault happens, issue a message to that effect and halt */ +void bug_handler(int sig); + +/* Handle quit/term/int signals */ +void interrupt_handler(int sig); + /* Whether we're dropping down to interactive mode immediately because we hit end-of-file unexpectedly (or whatever). */ int start_interactive; + + + + + /* Program entry point. */ int main (int argc, char **argv) { + + signal (SIGSEGV, bug_handler); + signal (SIGFPE, bug_handler); + signal (SIGINT, interrupt_handler); + + gsl_set_error_handler_off(); + /* Initialization. */ if (!outp_init ()) err_hcf (0); @@ -63,7 +86,6 @@ main (int argc, char **argv) msg (FE, _("Error initializing output drivers.")); lex_init (); - cmd_init (); /* Execution. */ parse_script (); @@ -89,6 +111,8 @@ parse_script (void) static int execute_command (void) { + int result; + /* Read the command's first token. We may hit end of file. If so, give the line reader a chance to proceed to the next file. @@ -107,7 +131,15 @@ execute_command (void) /* Parse the command. */ getl_prompt = GETL_PRPT_CONTINUATION; - return cmd_parse (); + result = cmd_parse (); + + /* Unset the /ALGORITHM subcommand if it was used */ + unset_cmd_algorithm (); + + /* Clear any auxiliary data from the dictionary. */ + dict_clear_aux (default_dict); + + return result; } /* Print an error message corresponding to the command return code @@ -150,6 +182,36 @@ handle_error (int code) while (token != T_STOP && token != '.') lex_get (); } - else - lex_discard_line (); + else + { + msg (SW, _("The rest of this command has been discarded.")); + lex_discard_line (); + } +} + + + +/* If a segfault happens, issue a message to that effect and halt */ +void +bug_handler(int sig UNUSED) +{ + switch (sig) + { + case SIGFPE: + request_bug_report_and_abort("Floating Point Exception"); + break; + case SIGSEGV: + request_bug_report_and_abort("Segmentation Violation"); + break; + default: + request_bug_report_and_abort(""); + break; + } +} + + +void +interrupt_handler(int sig UNUSED) +{ + err_hcf(0); }