X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fexecutor.c;h=754d09ae5681b44b357f7882db701fa8eb6d631a;hb=9ade26c8349b4434008c46cf09bc7473ec743972;hp=24b80db2443d3163ee5978ba02b8417341fac102;hpb=afdf3096926b561f4e6511c10fcf73fc6796b9d2;p=pspp-builds.git diff --git a/src/ui/gui/executor.c b/src/ui/gui/executor.c index 24b80db2..754d09ae 100644 --- a/src/ui/gui/executor.c +++ b/src/ui/gui/executor.c @@ -22,15 +22,12 @@ #include "data/procedure.h" #include "language/command.h" #include "language/lexer/lexer.h" -#include "language/syntax-string-source.h" #include "libpspp/cast.h" -#include "libpspp/getl.h" #include "output/driver.h" #include "ui/gui/psppire-data-store.h" #include "ui/gui/psppire-output-window.h" extern struct dataset *the_dataset; -extern struct source_stream *the_source_stream; extern PsppireDataStore *the_data_store; /* Lazy casereader callback function used by execute_syntax. */ @@ -42,7 +39,7 @@ create_casereader_from_data_store (void *data_store_) } gboolean -execute_syntax (struct getl_interface *sss) +execute_syntax (struct lex_reader *lex_reader) { struct lexer *lexer; gboolean retval = TRUE; @@ -74,9 +71,9 @@ execute_syntax (struct getl_interface *sss) g_return_val_if_fail (proc_has_active_file (the_dataset), FALSE); - lexer = lex_create (the_source_stream); - - getl_append_source (the_source_stream, sss, GETL_BATCH, ERRMODE_CONTINUE); + lexer = lex_create (); + psppire_set_lexer (lexer); + lex_append (lexer, lex_reader); for (;;) { @@ -85,8 +82,7 @@ execute_syntax (struct getl_interface *sss) if ( cmd_result_is_failure (result)) { retval = FALSE; - if ( source_stream_current_error_mode (the_source_stream) - == ERRMODE_STOP ) + if ( lex_get_error_mode (lexer) == LEX_ERROR_STOP ) break; } @@ -94,9 +90,8 @@ execute_syntax (struct getl_interface *sss) break; } - getl_abort_noninteractive (the_source_stream); - lex_destroy (lexer); + psppire_set_lexer (NULL); proc_execute (the_dataset); @@ -125,5 +120,5 @@ execute_syntax_string (gchar *syntax) void execute_const_syntax_string (const gchar *syntax) { - execute_syntax (create_syntax_string_source (syntax)); + execute_syntax (lex_reader_for_string (syntax)); }