X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fexpressions%2Foperations.def;h=03861021c4f4863ebcf5976710c8e893a53ebfe9;hb=613c43f8bc580c48a5a4d8078b83360e29483b38;hp=717bc15ef39fd105175f28e5625f9873522f9855;hpb=393668423c1c9456fd82db6b30f25de078915da5;p=pspp-builds.git diff --git a/src/language/expressions/operations.def b/src/language/expressions/operations.def index 717bc15e..03861021 100644 --- a/src/language/expressions/operations.def +++ b/src/language/expressions/operations.def @@ -1,4 +1,23 @@ // -*- c -*- +// +// PSPP - computes sample statistics. +// Copyright (C) 2005, 2006 Free Software Foundation, Inc. +// Written by Ben Pfaff . +// +// 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 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. */ operator NEG (x) = -x; @@ -133,7 +152,7 @@ function MAX.1 (a[n]) string function MAX (string a[n]) { - struct fixed_string *max; + struct substring *max; size_t i; max = &a[0]; @@ -164,7 +183,7 @@ function MIN.1 (a[n]) string function MIN (string a[n]) { - struct fixed_string *min; + struct substring *min; size_t i; min = &a[0]; @@ -220,8 +239,8 @@ boolean function RANGE (string x, string a[n*2]) for (i = 0; i < n; i++) { - struct fixed_string *w = &a[2 * i]; - struct fixed_string *y = &a[2 * i + 1]; + struct substring *w = &a[2 * i]; + struct substring *y = &a[2 * i + 1]; if (compare_string (w, &x) <= 0 && compare_string (&x, y) <= 0) return 1.; } @@ -303,14 +322,14 @@ function XDATE.YEAR (date >= DAY_S) = calendar_offset_to_year (date / DAY_S); string function CONCAT (string a[n]) expression e; { - struct fixed_string dst; + struct substring dst; size_t i; dst = alloc_string (e, MAX_STRING); dst.length = 0; for (i = 0; i < n; i++) { - struct fixed_string *src = &a[i]; + struct substring *src = &a[i]; size_t copy_len; copy_len = src->length; @@ -446,7 +465,7 @@ absorb_miss string function LPAD (string s, n) return s; else { - struct fixed_string t = alloc_string (e, n); + struct substring t = alloc_string (e, n); memset (t.string, ' ', n - s.length); memcpy (&t.string[(int) n - s.length], s.string, s.length); return t; @@ -462,7 +481,7 @@ absorb_miss string function LPAD (string s, n, string c) return s; else { - struct fixed_string t = alloc_string (e, n); + struct substring t = alloc_string (e, n); memset (t.string, c.string[0], n - s.length); memcpy (&t.string[(int) n - s.length], s.string, s.length); return t; @@ -478,7 +497,7 @@ absorb_miss string function RPAD (string s, n) return s; else { - struct fixed_string t = alloc_string (e, n); + struct substring t = alloc_string (e, n); memcpy (t.string, s.string, s.length); memset (&t.string[s.length], ' ', n - s.length); return t; @@ -494,7 +513,7 @@ absorb_miss string function RPAD (string s, n, string c) return s; else { - struct fixed_string t = alloc_string (e, n); + struct substring t = alloc_string (e, n); memcpy (t.string, s.string, s.length); memset (&t.string[s.length], c.string[0], n - s.length); return t; @@ -547,15 +566,8 @@ string function RTRIM (string s, string c) function NUMBER (string s, ni_format f) { - struct data_in di; union value out; - di.s = s.string; - di.v = &out; - di.flags = DI_IMPLIED_DECIMALS; - di.f1 = 1; - di.format = *f; - di.e = s.string + min (s.length, di.format.w); - data_in (&di); + data_in (ss_head (s, f->w), f->type, f->d, 0, &out, 0); return out.f; } @@ -563,12 +575,12 @@ absorb_miss string function STRING (x, no_format f) expression e; { union value v; - struct fixed_string dst; + struct substring dst; v.f = x; dst = alloc_string (e, f->w); - assert ((formats[f->type].cat & FCAT_STRING) == 0); - data_out (dst.string, f, &v); + assert (!fmt_is_string (f->type)); + data_out (&v, f, dst.string); return dst; } @@ -880,34 +892,34 @@ absorb_miss boolean function SYSMIS (x) = x == SYSMIS || !finite (x); no_opt boolean function SYSMIS (num_var v) case c; { - return case_num (c, v->fv) == SYSMIS; + return case_num (c, v) == SYSMIS; } no_opt boolean function VALUE (num_var v) case c; { - return case_num (c, v->fv); + return case_num (c, v); } no_opt operator VEC_ELEM_NUM (idx) vector v; case c; { - if (idx >= 1 && idx <= v->cnt) + if (idx >= 1 && idx <= vector_get_var_cnt (v)) { - const struct variable *var = v->var[(int) idx - 1]; - double value = case_num (c, var->fv); - return !mv_is_num_user_missing (&var->miss, value) ? value : SYSMIS; + const struct variable *var = vector_get_var (v, (size_t) idx - 1); + double value = case_num (c, var); + return !var_is_num_user_missing (var, value) ? value : SYSMIS; } else { if (idx == SYSMIS) msg (SE, _("SYSMIS is not a valid index value for vector " "%s. The result will be set to SYSMIS."), - v->name); + vector_get_name (v)); else msg (SE, _("%g is not a valid index value for vector %s. " "The result will be set to SYSMIS."), - idx, v->name); + idx, vector_get_name (v)); return SYSMIS; } } @@ -917,21 +929,21 @@ absorb_miss no_opt string operator VEC_ELEM_STR (idx) vector v; case c; { - if (idx >= 1 && idx <= v->cnt) + if (idx >= 1 && idx <= vector_get_var_cnt (v)) { - struct variable *var = v->var[(int) idx - 1]; - return copy_string (e, case_str (c, var->fv), var->width); + struct variable *var = vector_get_var (v, (size_t) idx - 1); + return copy_string (e, case_str (c, var), var_get_width (var)); } else { if (idx == SYSMIS) msg (SE, _("SYSMIS is not a valid index value for vector " "%s. The result will be set to the empty string."), - v->name); + vector_get_name (v)); else msg (SE, _("%g is not a valid index value for vector %s. " "The result will be set to the empty string."), - idx, v->name); + idx, vector_get_name (v)); return empty_string; } } @@ -942,8 +954,8 @@ no_opt operator NUM_VAR () case c; num_var v; { - double d = case_num (c, v->fv); - return !mv_is_num_user_missing (&v->miss, d) ? d : SYSMIS; + double d = case_num (c, v); + return !var_is_num_user_missing (v, d) ? d : SYSMIS; } no_opt string operator STR_VAR () @@ -951,30 +963,32 @@ no_opt string operator STR_VAR () expression e; str_var v; { - struct fixed_string s = alloc_string (e, v->width); - memcpy (s.string, case_str (c, v->fv), v->width); + struct substring s = alloc_string (e, var_get_width (v)); + memcpy (s.string, case_str (c, v), var_get_width (v)); return s; } no_opt perm_only function LAG (num_var v, pos_int n_before) + dataset ds; { - struct ccase *c = lagged_case (n_before); + struct ccase *c = lagged_case (ds, n_before); if (c != NULL) { - double x = case_num (c, v->fv); - return !mv_is_num_user_missing (&v->miss, x) ? x : SYSMIS; + double x = case_num (c, v); + return !var_is_num_user_missing (v, x) ? x : SYSMIS; } else return SYSMIS; } no_opt perm_only function LAG (num_var v) + dataset ds; { - struct ccase *c = lagged_case (1); + struct ccase *c = lagged_case (ds, 1); if (c != NULL) { - double x = case_num (c, v->fv); - return !mv_is_num_user_missing (&v->miss, x) ? x : SYSMIS; + double x = case_num (c, v); + return !var_is_num_user_missing (v, x) ? x : SYSMIS; } else return SYSMIS; @@ -982,20 +996,22 @@ no_opt perm_only function LAG (num_var v) no_opt perm_only string function LAG (str_var v, pos_int n_before) expression e; + dataset ds; { - struct ccase *c = lagged_case (n_before); + struct ccase *c = lagged_case (ds, n_before); if (c != NULL) - return copy_string (e, case_str (c, v->fv), v->width); + return copy_string (e, case_str (c, v), var_get_width (v)); else return empty_string; } no_opt perm_only string function LAG (str_var v) expression e; + dataset ds; { - struct ccase *c = lagged_case (1); + struct ccase *c = lagged_case (ds, 1); if (c != NULL) - return copy_string (e, case_str (c, v->fv), v->width); + return copy_string (e, case_str (c, v), var_get_width (v)); else return empty_string; } @@ -1004,14 +1020,14 @@ no_opt operator NUM_SYS () case c; num_var v; { - return case_num (c, v->fv) == SYSMIS; + return case_num (c, v) == SYSMIS; } no_opt operator NUM_VAL () case c; num_var v; { - return case_num (c, v->fv); + return case_num (c, v); } no_opt operator CASENUM ()