X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdictionary%2Fvariable-display.c;h=64a43a7c794a118b29a6a7e4d411ee781b176f57;hb=8a7f5c28b68af3cd03a524329c1d6e7eba355158;hp=b7dd8126c25a157a632ce71d363b96c12a32c6d5;hpb=dcf9b154cbcaa35c3d8459a201b77eec8bcb30bd;p=pspp diff --git a/src/language/dictionary/variable-display.c b/src/language/dictionary/variable-display.c index b7dd8126c2..64a43a7c79 100644 --- a/src/language/dictionary/variable-display.c +++ b/src/language/dictionary/variable-display.c @@ -18,23 +18,25 @@ 02110-1301, USA. */ #include + #include #include -#include "alloc.h" -#include "command.h" -#include "message.h" -#include "lexer.h" -#include "str.h" -#include "variable.h" -#include "debug-print.h" +#include +#include +#include +#include +#include +#include +#include +#include /* Set variables' alignment This is the alignment for GUI display only. It affects nothing but GUIs */ int -cmd_variable_alignment (void) +cmd_variable_alignment (struct lexer *lexer, struct dataset *ds) { do { @@ -44,17 +46,16 @@ cmd_variable_alignment (void) size_t i; enum alignment align; + if (!parse_variables (lexer, dataset_dict (ds), &v, &nv, PV_NONE)) + return CMD_FAILURE; - if (!parse_variables (default_dict, &v, &nv, PV_NONE)) - return CMD_PART_SUCCESS_MAYBE; - - if ( lex_force_match('(') ) + if ( lex_force_match (lexer, '(') ) { - if ( lex_match_id("LEFT")) + if ( lex_match_id (lexer, "LEFT")) align = ALIGN_LEFT; - else if ( lex_match_id("RIGHT")) + else if ( lex_match_id (lexer, "RIGHT")) align = ALIGN_RIGHT; - else if ( lex_match_id("CENTER")) + else if ( lex_match_id (lexer, "CENTER")) align = ALIGN_CENTRE; else { @@ -62,7 +63,7 @@ cmd_variable_alignment (void) return CMD_FAILURE; } - lex_force_match(')'); + lex_force_match (lexer, ')'); } else { @@ -70,16 +71,15 @@ cmd_variable_alignment (void) return CMD_FAILURE; } - for( i = 0 ; i < nv ; ++i ) - v[i]->alignment = align; - + for( i = 0 ; i < nv ; ++i ) + var_set_alignment (v[i], align); - while (token == '/') - lex_get (); + while (lex_token (lexer) == '/') + lex_get (lexer); free (v); } - while (token != '.'); + while (lex_token (lexer) != '.'); return CMD_SUCCESS; } @@ -88,7 +88,7 @@ cmd_variable_alignment (void) It affects nothing but GUIs */ int -cmd_variable_width (void) +cmd_variable_width (struct lexer *lexer, struct dataset *ds) { do { @@ -96,33 +96,33 @@ cmd_variable_width (void) size_t nv; size_t i; - if (!parse_variables (default_dict, &v, &nv, PV_NONE)) - return CMD_PART_SUCCESS_MAYBE; + if (!parse_variables (lexer, dataset_dict (ds), &v, &nv, PV_NONE)) + return CMD_FAILURE; - if ( lex_force_match('(') ) + if ( lex_force_match (lexer, '(') ) { - if ( lex_force_int()) - lex_get(); + if ( lex_force_int (lexer)) + lex_get (lexer); else return CMD_FAILURE; - lex_force_match(')'); + lex_force_match (lexer, ')'); } for( i = 0 ; i < nv ; ++i ) - v[i]->display_width = tokval; + var_set_display_width (v[i], lex_integer (lexer)); - while (token == '/') - lex_get (); + while (lex_token (lexer) == '/') + lex_get (lexer); free (v); } - while (token != '.'); + while (lex_token (lexer) != '.'); return CMD_SUCCESS; } /* Set variables' measurement level */ int -cmd_variable_level (void) +cmd_variable_level (struct lexer *lexer, struct dataset *ds) { do { @@ -131,16 +131,16 @@ cmd_variable_level (void) enum measure level; size_t i; - if (!parse_variables (default_dict, &v, &nv, PV_NONE)) - return CMD_PART_SUCCESS_MAYBE; + if (!parse_variables (lexer, dataset_dict (ds), &v, &nv, PV_NONE)) + return CMD_FAILURE; - if ( lex_force_match('(') ) + if ( lex_force_match (lexer, '(') ) { - if ( lex_match_id("SCALE")) + if ( lex_match_id (lexer, "SCALE")) level = MEASURE_SCALE; - else if ( lex_match_id("ORDINAL")) + else if ( lex_match_id (lexer, "ORDINAL")) level = MEASURE_ORDINAL; - else if ( lex_match_id("NOMINAL")) + else if ( lex_match_id (lexer, "NOMINAL")) level = MEASURE_NOMINAL; else { @@ -148,7 +148,7 @@ cmd_variable_level (void) return CMD_FAILURE; } - lex_force_match(')'); + lex_force_match (lexer, ')'); } else { @@ -157,14 +157,14 @@ cmd_variable_level (void) } for( i = 0 ; i < nv ; ++i ) - v[i]->measure = level ; + var_set_measure (v[i], level); - while (token == '/') - lex_get (); + while (lex_token (lexer) == '/') + lex_get (lexer); free (v); } - while (token != '.'); + while (lex_token (lexer) != '.'); return CMD_SUCCESS; }