X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fdata%2Fvariable.c;h=6c1414832b7c992fe5301940a80e33aca794b29d;hb=573068f2bdcd3f8796e9646668fed910a90f890b;hp=24363996dd2695120841454c61cb51119d1b0289;hpb=dcf9b154cbcaa35c3d8459a201b77eec8bcb30bd;p=pspp diff --git a/src/data/variable.c b/src/data/variable.c index 24363996dd..6c1414832b 100644 --- a/src/data/variable.c +++ b/src/data/variable.c @@ -19,14 +19,15 @@ #include #include "variable.h" -#include "message.h" +#include #include -#include "alloc.h" +#include +#include #include "dictionary.h" -#include "hash.h" +#include #include "identifier.h" -#include "misc.h" -#include "str.h" +#include +#include #include "value-labels.h" #include "gettext.h" @@ -130,26 +131,33 @@ hash_value(const union value *v, int width) bool var_is_valid_name (const char *name, bool issue_error) { + bool plausible; size_t length, i; assert (name != NULL); + /* Note that strlen returns number of BYTES, not the number of + CHARACTERS */ length = strlen (name); - if (length < 1) - { - if (issue_error) - msg (SE, _("Variable name cannot be empty string.")); - return false; - } - else if (length > LONG_NAME_LEN) + + plausible = var_is_plausible_name(name, issue_error); + + if ( ! plausible ) + return false; + + + if (!lex_is_id1 (name[0])) { if (issue_error) - msg (SE, _("Variable name %s exceeds %d-character limit."), - name, (int) LONG_NAME_LEN); + msg (SE, _("Character `%c' (in %s), may not appear " + "as the first character in a variable name."), + name[0], name); return false; } + for (i = 0; i < length; i++) + { if (!lex_is_idn (name[i])) { if (issue_error) @@ -158,13 +166,38 @@ var_is_valid_name (const char *name, bool issue_error) name[i], name); return false; } - - if (!lex_is_id1 (name[0])) + } + + return true; +} + +/* + Returns true if NAME is an plausible name for a variable, + false otherwise. If ISSUE_ERROR is true, issues an + explanatory error message on failure. + This function makes no use of LC_CTYPE. +*/ +bool +var_is_plausible_name (const char *name, bool issue_error) +{ + size_t length; + + assert (name != NULL); + + /* Note that strlen returns number of BYTES, not the number of + CHARACTERS */ + length = strlen (name); + if (length < 1) { if (issue_error) - msg (SE, _("Character `%c' (in %s), may not appear " - "as the first character in a variable name."), - name[0], name); + msg (SE, _("Variable name cannot be empty string.")); + return false; + } + else if (length > LONG_NAME_LEN) + { + if (issue_error) + msg (SE, _("Variable name %s exceeds %d-character limit."), + name, (int) LONG_NAME_LEN); return false; } @@ -227,7 +260,7 @@ void var_set_short_name (struct variable *v, const char *short_name) { assert (v != NULL); - assert (short_name[0] == '\0' || var_is_valid_name (short_name, false)); + assert (short_name[0] == '\0' || var_is_plausible_name (short_name, false)); str_copy_trunc (v->short_name, sizeof v->short_name, short_name); str_uppercase (v->short_name);