X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fterminal%2Fmain.c;h=1def93fdab623ef8fe4bbe96930f689df5977af6;hb=bd8fac754b2cff134bab7e4ad425a0a988123dba;hp=c19a1c78eaade7c0c40e72cfe736d1ac7849b60a;hpb=fe8dc2171009e90d2335f159d05f7e6660e24780;p=pspp diff --git a/src/ui/terminal/main.c b/src/ui/terminal/main.c index c19a1c78ea..1def93fdab 100644 --- a/src/ui/terminal/main.c +++ b/src/ui/terminal/main.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2006, 2007, 2009, 2010, 2011 Free Software Foundation, Inc. + Copyright (C) 1997-2000, 2006-2007, 2009-2014 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -33,7 +33,6 @@ #include "data/dataset.h" #include "data/dictionary.h" #include "data/file-handle-def.h" -#include "data/file-name.h" #include "data/session.h" #include "data/settings.h" #include "data/variable.h" @@ -48,13 +47,10 @@ #include "libpspp/version.h" #include "math/random.h" #include "output/driver.h" -#include "output/message-item.h" -#include "ui/debugger.h" +#include "output/output-item.h" #include "ui/source-init-opts.h" #include "ui/terminal/terminal-opts.h" #include "ui/terminal/terminal-reader.h" -#include "ui/terminal/terminal.h" -#include "ui/terminal/terminal-opts.h" #include "gl/fatal-signal.h" #include "gl/progname.h" @@ -66,7 +62,7 @@ static struct session *the_session; static void add_syntax_reader (struct lexer *, const char *file_name, - const char *encoding, enum lex_syntax_mode); + const char *encoding, enum segmenter_mode); static void bug_handler(int sig); static void fpu_init (void); static void output_msg (const struct msg *, void *); @@ -77,13 +73,16 @@ main (int argc, char **argv) { struct terminal_opts *terminal_opts; struct argv_parser *parser; - enum lex_syntax_mode syntax_mode; + enum segmenter_mode syntax_mode; char *syntax_encoding; bool process_statrc; struct lexer *lexer; set_program_name (argv[0]); + prepare_fatal_error_message (); + prepare_diagnostic_information (); + signal (SIGABRT, bug_handler); signal (SIGSEGV, bug_handler); signal (SIGFPE, bug_handler); @@ -92,13 +91,13 @@ main (int argc, char **argv) fpu_init (); gsl_set_error_handler_off (); + output_engine_push (); fh_init (); settings_init (); - terminal_check_size (); random_init (); lexer = lex_create (); - the_session = session_create (); + the_session = session_create (NULL); dataset_create (the_session, ""); parser = argv_parser_create (); @@ -119,7 +118,7 @@ main (int argc, char **argv) char *rc = include_path_search ("rc"); if (rc != NULL) { - add_syntax_reader (lexer, rc, "Auto", LEX_SYNTAX_AUTO); + add_syntax_reader (lexer, rc, "Auto", SEG_MODE_AUTO); free (rc); } } @@ -149,7 +148,7 @@ main (int argc, char **argv) lex_discard_noninteractive (lexer); } else if (result == CMD_CASCADING_FAILURE - && lex_get_error_mode (lexer) != LEX_ERROR_INTERACTIVE) + && lex_get_error_mode (lexer) != LEX_ERROR_TERMINAL) { msg (SE, _("Stopping syntax file processing here to avoid " "a cascade of dependent command failures.")); @@ -162,13 +161,13 @@ main (int argc, char **argv) } + output_engine_pop (); session_destroy (the_session); random_done (); settings_done (); fh_done (); lex_destroy (lexer); - output_close (); i18n_done (); return msg_ui_any_errors (); @@ -195,9 +194,6 @@ bug_handler(int sig) recurse. */ signal (sig, SIG_DFL); -#if DEBUGGING - connect_debugger (); -#endif switch (sig) { case SIGABRT: @@ -222,21 +218,26 @@ static void output_msg (const struct msg *m_, void *lexer_) { struct lexer *lexer = lexer_; - struct msg m = *m_; - - if (m.file_name == NULL) - { - m.file_name = CONST_CAST (char *, lex_get_file_name (lexer)); - m.first_line = lex_get_first_line_number (lexer, 0); - m.last_line = lex_get_last_line_number (lexer, 0); - } - - message_item_submit (message_item_create (&m)); + struct msg m = { + .category = m_->category, + .severity = m_->severity, + .location = (m_->location ? m_->location + : lexer ? lex_get_lines (lexer, 0, 0) + : NULL), + .command_name = output_get_uppercase_command_name (), + .text = m_->text, + }; + + output_item_submit (message_item_create (&m)); + + free (m.command_name); + if (m.location != m_->location) + msg_location_destroy (m.location); } static void add_syntax_reader (struct lexer *lexer, const char *file_name, - const char *encoding, enum lex_syntax_mode syntax_mode) + const char *encoding, enum segmenter_mode syntax_mode) { struct lex_reader *reader;