X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdictionary%2Fsplit-file.c;h=05b39bc02306c6594a55ff32f2f03fadb9dbbcbb;hb=888d0f91d57e0c3c5a4206c30ac71eb87bf44227;hp=625f34c5184072aecb54587dcc55c72502769671;hpb=42489b63e0b4bec2e20c2f55c9791234f7b41764;p=pspp-builds.git diff --git a/src/language/dictionary/split-file.c b/src/language/dictionary/split-file.c index 625f34c5..05b39bc0 100644 --- a/src/language/dictionary/split-file.c +++ b/src/language/dictionary/split-file.c @@ -22,6 +22,7 @@ #include #include +#include #include #include #include @@ -41,39 +42,40 @@ #define _(msgid) gettext (msgid) int -cmd_split_file (void) +cmd_split_file (struct lexer *lexer, struct dataset *ds) { - if (lex_match_id ("OFF")) - dict_set_split_vars (dataset_dict (current_dataset), NULL, 0); + if (lex_match_id (lexer, "OFF")) + dict_set_split_vars (dataset_dict (ds), NULL, 0); else { struct variable **v; size_t n; /* For now, ignore SEPARATE and LAYERED. */ - (void) ( lex_match_id ("SEPARATE") || lex_match_id ("LAYERED") ); + (void) ( lex_match_id (lexer, "SEPARATE") || lex_match_id (lexer, "LAYERED") ); - lex_match (T_BY); - if (!parse_variables (dataset_dict (current_dataset), &v, &n, PV_NO_DUPLICATE)) + lex_match (lexer, T_BY); + if (!parse_variables (lexer, dataset_dict (ds), &v, &n, PV_NO_DUPLICATE)) return CMD_CASCADING_FAILURE; - dict_set_split_vars (dataset_dict (current_dataset), v, n); + dict_set_split_vars (dataset_dict (ds), v, n); free (v); } - return lex_end_of_command (); + return lex_end_of_command (lexer); } /* Dumps out the values of all the split variables for the case C. */ void -output_split_file_values (const struct ccase *c) +output_split_file_values (const struct dataset *ds, const struct ccase *c) { + const struct dictionary *dict = dataset_dict (ds); struct variable *const *split; struct tab_table *t; size_t split_cnt; int i; - split_cnt = dict_get_split_cnt (dataset_dict (current_dataset)); + split_cnt = dict_get_split_cnt (dict); if (split_cnt == 0) return; @@ -84,20 +86,20 @@ output_split_file_values (const struct ccase *c) tab_text (t, 0, 0, TAB_NONE, _("Variable")); tab_text (t, 1, 0, TAB_LEFT, _("Value")); tab_text (t, 2, 0, TAB_LEFT, _("Label")); - split = dict_get_split_vars (dataset_dict (current_dataset)); + split = dict_get_split_vars (dict); for (i = 0; i < split_cnt; i++) { struct variable *v = split[i]; char temp_buf[80]; const char *val_lab; + const struct fmt_spec *print = var_get_print_format (v); - assert (v->type == NUMERIC || v->type == ALPHA); - tab_text (t, 0, i + 1, TAB_LEFT | TAT_PRINTF, "%s", v->name); + tab_text (t, 0, i + 1, TAB_LEFT | TAT_PRINTF, "%s", var_get_name (v)); - data_out (temp_buf, &v->print, case_data (c, v->fv)); - - temp_buf[v->print.w] = 0; - tab_text (t, 1, i + 1, TAT_PRINTF, "%.*s", v->print.w, temp_buf); + data_out (case_data (c, v->fv), print, temp_buf); + temp_buf[print->w] = 0; + + tab_text (t, 1, i + 1, TAT_PRINTF, "%.*s", print->w, temp_buf); val_lab = val_labs_find (v->val_labs, *case_data (c, v->fv)); if (val_lab)