X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdictionary%2Fvariable-display.c;h=63bc6d472c6f4c8b01ac221b339ab6e5d518a3e9;hb=cfc68512bf002c16d4a0f2c0acff764f96a2af3e;hp=83df065b99728e58745ffc72b08742a562b62e55;hpb=5c3291dc396b795696e94f47780308fd7ace6fc4;p=pspp diff --git a/src/language/dictionary/variable-display.c b/src/language/dictionary/variable-display.c index 83df065b99..63bc6d472c 100644 --- a/src/language/dictionary/variable-display.c +++ b/src/language/dictionary/variable-display.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2010, 2011, 2013 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 @@ -19,16 +19,16 @@ #include #include -#include -#include -#include -#include -#include -#include -#include +#include "data/dataset.h" +#include "data/variable.h" +#include "language/command.h" +#include "language/lexer/lexer.h" +#include "language/lexer/variable-parser.h" +#include "libpspp/message.h" +#include "libpspp/str.h" -#include "minmax.h" -#include "xalloc.h" +#include "gl/minmax.h" +#include "gl/xalloc.h" #include "gettext.h" #define _(msgid) gettext (msgid) @@ -51,7 +51,7 @@ cmd_variable_alignment (struct lexer *lexer, struct dataset *ds) if (!parse_variables (lexer, dataset_dict (ds), &v, &nv, PV_NONE)) return CMD_FAILURE; - if ( lex_force_match (lexer, '(') ) + if ( lex_force_match (lexer, T_LPAREN) ) { if ( lex_match_id (lexer, "LEFT")) align = ALIGN_LEFT; @@ -65,7 +65,7 @@ cmd_variable_alignment (struct lexer *lexer, struct dataset *ds) return CMD_FAILURE; } - lex_force_match (lexer, ')'); + lex_force_match (lexer, T_RPAREN); } else { @@ -76,12 +76,12 @@ cmd_variable_alignment (struct lexer *lexer, struct dataset *ds) for( i = 0 ; i < nv ; ++i ) var_set_alignment (v[i], align); - while (lex_token (lexer) == '/') + while (lex_token (lexer) == T_SLASH) lex_get (lexer); free (v); } - while (lex_token (lexer) != '.'); + while (lex_token (lexer) != T_ENDCMD); return CMD_SUCCESS; } @@ -102,14 +102,14 @@ cmd_variable_width (struct lexer *lexer, struct dataset *ds) if (!parse_variables (lexer, dataset_dict (ds), &v, &nv, PV_NONE)) return CMD_FAILURE; - if (!lex_force_match (lexer, '(') || !lex_force_int (lexer)) + if (!lex_force_match (lexer, T_LPAREN) || !lex_force_int (lexer)) { free (v); return CMD_FAILURE; } width = lex_integer (lexer); lex_get (lexer); - if (!lex_force_match (lexer, ')')) + if (!lex_force_match (lexer, T_RPAREN)) { free (v); return CMD_FAILURE; @@ -126,12 +126,12 @@ cmd_variable_width (struct lexer *lexer, struct dataset *ds) for( i = 0 ; i < nv ; ++i ) var_set_display_width (v[i], width); - while (lex_token (lexer) == '/') + while (lex_token (lexer) == T_SLASH) lex_get (lexer); free (v); } - while (lex_token (lexer) != '.'); + while (lex_token (lexer) != T_ENDCMD); return CMD_SUCCESS; } @@ -149,7 +149,7 @@ cmd_variable_level (struct lexer *lexer, struct dataset *ds) if (!parse_variables (lexer, dataset_dict (ds), &v, &nv, PV_NONE)) return CMD_FAILURE; - if ( lex_force_match (lexer, '(') ) + if ( lex_force_match (lexer, T_LPAREN) ) { if ( lex_match_id (lexer, "SCALE")) level = MEASURE_SCALE; @@ -163,7 +163,7 @@ cmd_variable_level (struct lexer *lexer, struct dataset *ds) return CMD_FAILURE; } - lex_force_match (lexer, ')'); + lex_force_match (lexer, T_RPAREN); } else { @@ -175,11 +175,51 @@ cmd_variable_level (struct lexer *lexer, struct dataset *ds) var_set_measure (v[i], level); - while (lex_token (lexer) == '/') + while (lex_token (lexer) == T_SLASH) lex_get (lexer); free (v); } - while (lex_token (lexer) != '.'); + while (lex_token (lexer) != T_ENDCMD); + return CMD_SUCCESS; +} + +/* Set variables' role */ +int +cmd_variable_role (struct lexer *lexer, struct dataset *ds) +{ + while (lex_match (lexer, T_SLASH)) + { + struct variable **v; + size_t nv; + enum var_role role; + size_t i; + + if ( lex_match_id (lexer, "INPUT")) + role = ROLE_INPUT; + else if ( lex_match_id (lexer, "TARGET")) + role = ROLE_OUTPUT; + else if ( lex_match_id (lexer, "BOTH")) + role = ROLE_BOTH; + else if ( lex_match_id (lexer, "NONE")) + role = ROLE_NONE; + else if ( lex_match_id (lexer, "PARTITION")) + role = ROLE_PARTITION; + else if ( lex_match_id (lexer, "SPLIT")) + role = ROLE_SPLIT; + else + { + lex_error (lexer, NULL); + return CMD_FAILURE; + } + + if (!parse_variables (lexer, dataset_dict (ds), &v, &nv, PV_NONE)) + return CMD_FAILURE; + + for (i = 0; i < nv; i++) + var_set_role (v[i], role); + free (v); + } + return CMD_SUCCESS; }