X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdictionary%2Fvariable-display.c;h=bada08142561bbb354f09bcc1adb1b764eeefca9;hb=392ab4052e2743f80664a4130b2b4ee5d82af7fe;hp=4d13514e93fc1ece9c6d32ad9a2ee0482ba45aaf;hpb=e9aa6e433b846849da90550f6800095d569fb549;p=pspp diff --git a/src/language/dictionary/variable-display.c b/src/language/dictionary/variable-display.c index 4d13514e93..bada081425 100644 --- a/src/language/dictionary/variable-display.c +++ b/src/language/dictionary/variable-display.c @@ -1,21 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. - Written by John Darrington - 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 the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + 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 + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #include @@ -27,16 +24,17 @@ #include #include #include -#include #include #include +#include "xalloc.h" + /* 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 { @@ -46,41 +44,40 @@ cmd_variable_alignment (void) size_t i; enum alignment align; - if (!parse_variables (default_dict, &v, &nv, PV_NONE)) + 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("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 + else { free (v); - return CMD_FAILURE; + return CMD_FAILURE; } - lex_force_match(')'); + lex_force_match (lexer, ')'); } - else + else { free (v); - return CMD_FAILURE; + 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; } @@ -89,7 +86,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 { @@ -97,33 +94,33 @@ cmd_variable_width (void) size_t nv; size_t i; - if (!parse_variables (default_dict, &v, &nv, PV_NONE)) + 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; + for( i = 0 ; i < nv ; ++i ) + 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 { @@ -132,40 +129,40 @@ cmd_variable_level (void) enum measure level; size_t i; - if (!parse_variables (default_dict, &v, &nv, PV_NONE)) + 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 + else { free (v); - return CMD_FAILURE; + return CMD_FAILURE; } - lex_force_match(')'); + lex_force_match (lexer, ')'); } else { free (v); - return CMD_FAILURE; + return CMD_FAILURE; } - - for( i = 0 ; i < nv ; ++i ) - v[i]->measure = level ; + + for( i = 0 ; i < nv ; ++i ) + 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; }