X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fui%2Fgui%2Fpsppire.c;h=9dd3b71372f6334fea60115c325aa35724353f06;hb=6d077bbfd3230959846621bbfb1447410e17dd8c;hp=ef05c6f6e6ad643df40713c82051abf9d6822ff0;hpb=f82952d22e200e1b35cea23545857a2cf2f02c66;p=pspp-builds.git diff --git a/src/ui/gui/psppire.c b/src/ui/gui/psppire.c index ef05c6f6..9dd3b713 100644 --- a/src/ui/gui/psppire.c +++ b/src/ui/gui/psppire.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2004, 2005, 2006 Free Software Foundation + Copyright (C) 2004, 2005, 2006, 2009 Free Software Foundation 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 @@ -21,16 +21,18 @@ #include #include +#include +#include #include "relocatable.h" #include "data-editor.h" #include "psppire.h" +#include #include #include #include #include -#include #include #include #include @@ -39,6 +41,7 @@ #include #include #include +#include #include #include @@ -47,9 +50,15 @@ #include "psppire-data-store.h" #include "helper.h" #include "message-dialog.h" +#include #include "output-viewer.h" +#include +#include + +#include + PsppireDataStore *the_data_store = 0; PsppireVarStore *the_var_store = 0; @@ -62,17 +71,14 @@ struct dataset * the_dataset = NULL; static void replace_casereader (struct casereader *s) { - PsppireCaseFile *pcf = psppire_case_file_new (s); - - psppire_data_store_set_case_file (the_data_store, pcf); + psppire_data_store_set_reader (the_data_store, s); } #define _(msgid) gettext (msgid) #define N_(msgid) msgid - void -initialize (void) +initialize (struct command_line_processor *clp, int argc, char **argv) { PsppireDict *dictionary = 0; @@ -110,20 +116,41 @@ initialize (void) the_data_store = psppire_data_store_new (dictionary); replace_casereader (NULL); + + create_icon_factory (); - outp_configure_driver_line ( - ss_cstr ("gui:ascii:screen:squeeze=on headers=off top-margin=0 " - "bottom-margin=0 paginate=off length=auto width=auto " - "emphasis=none " - "output-file=\"" OUTPUT_FILE_NAME "\" append=yes")); + { + const char *filename = output_file_name (); + + struct string config_string; + + ds_init_empty (&config_string); + + ds_put_format (&config_string, + "gui:ascii:screen:squeeze=on headers=off top-margin=0 " + "bottom-margin=0 paginate=off length=auto width=auto " + "emphasis=none " + "output-file=\"%s\" append=yes", filename); + + outp_configure_driver_line (ds_ss (&config_string)); + + unlink (filename); - unlink (OUTPUT_FILE_NAME); + ds_destroy (&config_string); + } journal_enable (); textdomain (PACKAGE); + command_line_processor_replace_aux (clp, &post_init_argp, the_source_stream); + command_line_processor_replace_aux (clp, &non_option_argp, the_source_stream); + + command_line_processor_parse (clp, argc, argv); + new_data_window (NULL, NULL); + + execute_syntax (create_syntax_string_source ("")); } @@ -198,11 +225,11 @@ create_icon_factory (void) gtk_stock_add (items, 2); - gtk_icon_factory_add (factory, "pspp-stock-reset", + gtk_icon_factory_add (factory, "pspp-stock-reset", gtk_icon_factory_lookup_default (GTK_STOCK_REFRESH) ); - gtk_icon_factory_add (factory, "pspp-stock-select", + gtk_icon_factory_add (factory, "pspp-stock-select", gtk_icon_factory_lookup_default (GTK_STOCK_INDEX) ); } @@ -210,3 +237,64 @@ create_icon_factory (void) gtk_icon_factory_add_default (factory); } + + +static error_t +parse_non_options (int key, char *arg, struct argp_state *state) +{ + struct source_stream *ss = state->input; + + if ( NULL == ss ) + return 0; + + switch (key) + { + case ARGP_KEY_ARG: + { + struct string syntax; + FILE *fp = fopen (arg, "r"); + if (NULL == fp) + { + const int errnum = errno; + fprintf (state->err_stream, _("Cannot open %s: %s.\n"), + arg, strerror (errnum)); + return 0; + } + if ( sfm_detect (fp)) + { + ds_init_cstr (&syntax, "GET FILE="); + goto close; + } + rewind (fp); + if (pfm_detect (fp)) + { + ds_init_cstr (&syntax, "IMPORT FILE="); + goto close; + } + + fclose (fp); + msg (ME, _("%s is neither a system nor portable file"), arg); + break; + + close: + fclose (fp); + + syntax_gen_string (&syntax, ss_cstr (arg)); + ds_put_cstr (&syntax, "."); + + getl_append_source (ss, + create_syntax_string_source (ds_cstr (&syntax)), + GETL_BATCH, + ERRMODE_CONTINUE); + + ds_destroy (&syntax); + break; + } + default: + return ARGP_ERR_UNKNOWN; + } + return 0; +} + + +const struct argp non_option_argp = {NULL, parse_non_options, 0, 0, 0, 0, 0};