1 /* PSPP - computes sample statistics.
2 Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc.
3 Written by Ben Pfaff <blp@gnu.org>.
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 #include <data/case-source.h>
27 #include <data/case.h>
28 #include <data/data-in.h>
29 #include <data/dictionary.h>
30 #include <data/procedure.h>
31 #include <data/variable.h>
32 #include <language/command.h>
33 #include <language/data-io/data-reader.h>
34 #include <language/data-io/file-handle.h>
35 #include <language/lexer/lexer.h>
36 #include <language/lexer/variable-parser.h>
37 #include <libpspp/alloc.h>
38 #include <libpspp/array.h>
39 #include <libpspp/assertion.h>
40 #include <libpspp/compiler.h>
41 #include <libpspp/message.h>
42 #include <libpspp/message.h>
43 #include <libpspp/misc.h>
44 #include <libpspp/pool.h>
45 #include <libpspp/str.h>
50 #define _(msgid) gettext (msgid)
52 /* FIXME: /N subcommand not implemented. It should be pretty simple,
55 /* Different types of variables for MATRIX DATA procedure. Order is
56 important: these are used for sort keys. */
59 MXD_SPLIT, /* SPLIT FILE variables. */
60 MXD_ROWTYPE, /* ROWTYPE_. */
61 MXD_FACTOR, /* Factor variables. */
62 MXD_VARNAME, /* VARNAME_. */
63 MXD_CONTINUOUS, /* Continuous variables. */
68 /* Format type enums. */
75 /* Matrix section enums. */
83 /* Diagonal inclusion enums. */
111 /* 0=vector, 1=matrix, 2=scalar. */
112 static const int content_type[PROX + 1] =
114 0, 2, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1,
117 /* Name of each content type. */
118 static const char *const content_names[PROX + 1] =
120 "N", "N", "N_MATRIX", "MEAN", "STDDEV", "COUNT", "MSE",
121 "DFE", "MAT", "COV", "CORR", "PROX",
124 /* A MATRIX DATA input program. */
125 struct matrix_data_pgm
127 struct pool *container; /* Arena used for all allocations. */
128 struct dfm_reader *reader; /* Data file to read. */
131 enum format_type fmt; /* LIST or FREE. */
132 enum matrix_section section;/* LOWER or UPPER or FULL. */
133 enum include_diagonal diag; /* DIAGONAL or NODIAGONAL. */
135 int explicit_rowtype; /* ROWTYPE_ specified explicitly in data? */
136 struct variable *rowtype_, *varname_; /* ROWTYPE_, VARNAME_ variables. */
138 struct variable *single_split; /* Single SPLIT FILE variable. */
140 /* Factor variables. */
141 size_t n_factors; /* Number of factor variables. */
142 struct variable **factors; /* Factor variables. */
143 int is_per_factor[PROX + 1]; /* Is there per-factor data? */
145 int cells; /* Number of cells, or -1 if none. */
147 int pop_n; /* Population N specified by user. */
149 /* CONTENTS subcommand. */
150 int contents[EOC * 3 + 1]; /* Contents. */
151 int n_contents; /* Number of entries. */
153 /* Continuous variables. */
154 int n_continuous; /* Number of continuous variables. */
155 int first_continuous; /* Index into dictionary of
156 first continuous variable. */
159 /* Auxiliary data attached to MATRIX DATA variables. */
162 int var_type; /* Variable type. */
163 int sub_type; /* Subtype. */
166 static const struct case_source_class matrix_data_with_rowtype_source_class;
167 static const struct case_source_class matrix_data_without_rowtype_source_class;
169 static int compare_variables_by_mxd_var_type (const void *pa,
171 static bool read_matrices_without_rowtype (struct dataset *ds, struct matrix_data_pgm *);
172 static bool read_matrices_with_rowtype (struct dataset *ds, struct matrix_data_pgm *);
173 static int string_to_content_type (char *, int *);
174 static void attach_mxd_aux (struct variable *, int var_type, int sub_type);
177 cmd_matrix_data (struct dataset *ds)
180 struct matrix_data_pgm *mx;
181 struct file_handle *fh = fh_inline_file ();
186 discard_variables (ds);
188 pool = pool_create ();
189 mx = pool_alloc (pool, sizeof *mx);
190 mx->container = pool;
195 mx->explicit_rowtype = 0;
198 mx->single_split = NULL;
201 memset (mx->is_per_factor, 0, sizeof mx->is_per_factor);
205 mx->n_continuous = 0;
206 mx->first_continuous = 0;
211 if (lex_match_id ("VARIABLES"))
218 msg (SE, _("VARIABLES subcommand multiply specified."));
224 if (!parse_DATA_LIST_vars (&v, &nv, PV_NO_DUPLICATE))
230 for (i = 0; i < nv; i++)
231 if (!strcasecmp (v[i], "VARNAME_"))
233 msg (SE, _("VARNAME_ cannot be explicitly specified on "
235 for (i = 0; i < nv; i++)
245 for (i = 0; i < nv; i++)
247 struct variable *new_var;
249 if (strcasecmp (v[i], "ROWTYPE_"))
251 new_var = dict_create_var_assert (dataset_dict (ds), v[i], 0);
252 attach_mxd_aux (new_var, MXD_CONTINUOUS, i);
255 mx->explicit_rowtype = 1;
261 mx->rowtype_ = dict_create_var_assert (dataset_dict (ds),
263 attach_mxd_aux (mx->rowtype_, MXD_ROWTYPE, 0);
265 else if (lex_match_id ("FILE"))
268 fh = fh_parse (FH_REF_FILE | FH_REF_INLINE);
272 else if (lex_match_id ("FORMAT"))
276 while (token == T_ID)
278 if (lex_match_id ("LIST"))
280 else if (lex_match_id ("FREE"))
282 else if (lex_match_id ("LOWER"))
284 else if (lex_match_id ("UPPER"))
286 else if (lex_match_id ("FULL"))
288 else if (lex_match_id ("DIAGONAL"))
290 else if (lex_match_id ("NODIAGONAL"))
291 mx->diag = NODIAGONAL;
294 lex_error (_("in FORMAT subcommand"));
299 else if (lex_match_id ("SPLIT"))
305 msg (SE, _("SPLIT subcommand multiply specified."));
312 lex_error (_("in SPLIT subcommand"));
316 if (dict_lookup_var (dataset_dict (ds), tokid) == NULL
317 && (lex_look_ahead () == '.' || lex_look_ahead () == '/'))
319 if (!strcasecmp (tokid, "ROWTYPE_")
320 || !strcasecmp (tokid, "VARNAME_"))
322 msg (SE, _("Split variable may not be named ROWTYPE_ "
327 mx->single_split = dict_create_var_assert (dataset_dict (ds),
329 attach_mxd_aux (mx->single_split, MXD_CONTINUOUS, 0);
332 dict_set_split_vars (dataset_dict (ds), &mx->single_split, 1);
336 struct variable **split;
339 if (!parse_variables (dataset_dict (ds), &split, &n, PV_NO_DUPLICATE))
342 dict_set_split_vars (dataset_dict (ds), split, n);
346 struct variable *const *split = dict_get_split_vars (dataset_dict (ds));
347 size_t split_cnt = dict_get_split_cnt (dataset_dict (ds));
350 for (i = 0; i < split_cnt; i++)
352 struct mxd_var *mv = split[i]->aux;
354 if (mv->var_type != MXD_CONTINUOUS)
356 msg (SE, _("Split variable %s is already another type."),
360 var_clear_aux (split[i]);
361 attach_mxd_aux (split[i], MXD_SPLIT, i);
365 else if (lex_match_id ("FACTORS"))
371 msg (SE, _("FACTORS subcommand multiply specified."));
376 if (!parse_variables (dataset_dict (ds), &mx->factors, &mx->n_factors,
383 for (i = 0; i < mx->n_factors; i++)
385 struct variable *v = mx->factors[i];
386 struct mxd_var *mv = v->aux;
388 if (mv->var_type != MXD_CONTINUOUS)
390 msg (SE, _("Factor variable %s is already another type."),
395 attach_mxd_aux (v, MXD_FACTOR, i);
399 else if (lex_match_id ("CELLS"))
405 msg (SE, _("CELLS subcommand multiply specified."));
409 if (!lex_is_integer () || lex_integer () < 1)
411 lex_error (_("expecting positive integer"));
415 mx->cells = lex_integer ();
418 else if (lex_match_id ("N"))
424 msg (SE, _("N subcommand multiply specified."));
428 if (!lex_is_integer () || lex_integer () < 1)
430 lex_error (_("expecting positive integer"));
434 mx->pop_n = lex_integer ();
437 else if (lex_match_id ("CONTENTS"))
439 int inside_parens = 0;
440 unsigned collide = 0;
445 msg (SE, _("CONTENTS subcommand multiply specified."));
455 for (i = 0; i <= PROX; i++)
456 mx->is_per_factor[i] = 0;
465 msg (SE, _("Nested parentheses not allowed."));
471 else if (lex_match (')'))
475 msg (SE, _("Mismatched right parenthesis (`(')."));
478 if (mx->contents[mx->n_contents - 1] == LPAREN)
480 msg (SE, _("Empty parentheses not allowed."));
493 lex_error (_("in CONTENTS subcommand"));
497 content_type = string_to_content_type (tokid,
499 if (content_type == -1)
501 lex_error (_("in CONTENTS subcommand"));
506 if (collide & (1 << collide_index))
508 msg (SE, _("Content multiply specified for %s."),
509 content_names[content_type]);
512 collide |= (1 << collide_index);
515 mx->is_per_factor[item] = inside_parens;
517 mx->contents[mx->n_contents++] = item;
519 if (token == '/' || token == '.')
525 msg (SE, _("Missing right parenthesis."));
528 mx->contents[mx->n_contents] = EOC;
539 lex_error (_("expecting end of command"));
545 msg (SE, _("Missing VARIABLES subcommand."));
549 if (!mx->n_contents && !mx->explicit_rowtype)
551 msg (SW, _("CONTENTS subcommand not specified: assuming file "
552 "contains only CORR matrix."));
554 mx->contents[0] = CORR;
555 mx->contents[1] = EOC;
559 if (mx->n_factors && !mx->explicit_rowtype && mx->cells == -1)
561 msg (SE, _("Missing CELLS subcommand. CELLS is required "
562 "when ROWTYPE_ is not given in the data and "
563 "factors are present."));
567 if (mx->explicit_rowtype && mx->single_split)
569 msg (SE, _("Split file values must be present in the data when "
570 "ROWTYPE_ is present."));
574 /* Create VARNAME_. */
575 mx->varname_ = dict_create_var_assert (dataset_dict (ds), "VARNAME_", 8);
576 attach_mxd_aux (mx->varname_, MXD_VARNAME, 0);
578 /* Sort the dictionary variables into the desired order for the
579 system file output. */
584 dict_get_vars (dataset_dict (ds), &v, &nv, 0);
585 qsort (v, nv, sizeof *v, compare_variables_by_mxd_var_type);
586 dict_reorder_vars (dataset_dict (ds), v, nv);
592 static const struct fmt_spec fmt_tab[MXD_COUNT] =
603 mx->first_continuous = -1;
604 for (i = 0; i < dict_get_var_cnt (dataset_dict (ds)); i++)
606 struct variable *v = dict_get_var (dataset_dict (ds), i);
607 struct mxd_var *mv = v->aux;
608 int type = mv->var_type;
610 assert (type >= 0 && type < MXD_COUNT);
611 v->print = v->write = fmt_tab[type];
613 if (type == MXD_CONTINUOUS)
615 if (mx->first_continuous == -1 && type == MXD_CONTINUOUS)
616 mx->first_continuous = i;
620 if (mx->n_continuous == 0)
622 msg (SE, _("No continuous variables specified."));
626 mx->reader = dfm_open_reader (fh);
627 if (mx->reader == NULL)
630 if (mx->explicit_rowtype)
631 ok = read_matrices_with_rowtype (ds, mx);
633 ok = read_matrices_without_rowtype (ds, mx);
635 dfm_close_reader (mx->reader);
637 pool_destroy (mx->container);
639 return ok ? CMD_SUCCESS : CMD_CASCADING_FAILURE;
642 discard_variables (ds);
644 pool_destroy (mx->container);
645 return CMD_CASCADING_FAILURE;
648 /* Look up string S as a content-type name and return the
649 corresponding enumerated value, or -1 if there is no match. If
650 COLLIDE is non-NULL then *COLLIDE returns a value (suitable for use
651 as a bit-index) which can be used for determining whether a related
652 statistic has already been used. */
654 string_to_content_type (char *s, int *collide)
665 {N_VECTOR, 0, "N_VECTOR"},
667 {N_SCALAR, 0, "N_SCALAR"},
668 {N_MATRIX, 1, "N_MATRIX"},
670 {STDDEV, 3, "STDDEV"},
682 for (tp = tab; tp->value != -1; tp++)
683 if (!strcasecmp (s, tp->string))
686 *collide = tp->collide;
693 /* Compare two variables using p.mxd.var_type and p.mxd.sub_type
696 compare_variables_by_mxd_var_type (const void *a_, const void *b_)
698 struct variable *const *pa = a_;
699 struct variable *const *pb = b_;
700 const struct mxd_var *a = (*pa)->aux;
701 const struct mxd_var *b = (*pb)->aux;
703 if (a->var_type != b->var_type)
704 return a->var_type > b->var_type ? 1 : -1;
706 return a->sub_type < b->sub_type ? -1 : a->sub_type > b->sub_type;
709 /* Attaches a struct mxd_var with the specific member values to
712 attach_mxd_aux (struct variable *v, int var_type, int sub_type)
716 assert (v->aux == NULL);
717 mv = xmalloc (sizeof *mv);
718 mv->var_type = var_type;
719 mv->sub_type = sub_type;
720 var_attach_aux (v, mv, var_dtor_free);
723 /* Matrix tokenizer. */
725 /* Matrix token types. */
726 enum matrix_token_type
732 /* A MATRIX DATA parsing token. */
735 enum matrix_token_type type;
736 double number; /* MNUM: token value. */
737 char *string; /* MSTR: token string; not null-terminated. */
738 int length; /* MSTR: tokstr length. */
741 static int mget_token (struct matrix_token *, struct dfm_reader *);
744 #define mget_token(TOKEN, READER) mget_token_dump(TOKEN, READER)
747 mdump_token (const struct matrix_token *token)
752 printf (" #%g", token->number);
755 printf (" '%.*s'", token->length, token->string);
764 mget_token_dump (struct matrix_token *token, struct dfm_reader *reader)
766 int result = (mget_token) (token, reader);
772 /* Return the current position in READER. */
774 context (struct dfm_reader *reader)
776 static struct string buf = DS_EMPTY_INITIALIZER;
779 if (dfm_eof (reader))
780 ds_assign_cstr (&buf, "at end of file");
785 p = dfm_get_record (reader);
786 ss_ltrim (&p, ss_cstr (CC_SPACES));
788 ds_assign_cstr (&buf, "at end of line");
790 ds_put_format (&buf, "before `%.*s'",
791 (int) ss_cspan (p, ss_cstr (CC_SPACES)), ss_data (p));
794 return ds_cstr (&buf);
797 /* Is there at least one token left in the data file? */
799 another_token (struct dfm_reader *reader)
806 if (dfm_eof (reader))
809 p = dfm_get_record (reader);
810 space_cnt = ss_span (p, ss_cstr (CC_SPACES));
811 if (space_cnt < ss_length (p))
813 dfm_forward_columns (reader, space_cnt);
817 dfm_forward_record (reader);
822 /* Parse a MATRIX DATA token from READER into TOKEN. */
824 (mget_token) (struct matrix_token *token, struct dfm_reader *reader)
826 struct substring line, p;
830 if (!another_token (reader))
833 line = p = dfm_get_record (reader);
835 /* Three types of fields: quoted with ', quoted with ", unquoted. */
837 if (c == '\'' || c == '"')
840 if (!ss_get_until (&p, c, &s))
841 msg (SW, _("Scope of string exceeds line."));
845 bool is_num = isdigit (c) || c == '.';
846 const char *start = ss_data (p);
851 if (strchr (CC_SPACES ",-+", c) != NULL)
856 if (strchr ("deDE", c) && strchr ("+-", ss_at (p, 1)))
864 s = ss_buffer (start, ss_data (p) - start);
872 di.v = (union value *) &token->number;
873 di.f1 = dfm_get_column (reader, di.s);
874 di.format = fmt_for_output (FMT_F, token->length, 0);
881 token->string = ss_data (s);
882 token->length = ss_length (s);
884 dfm_reread_record (reader, dfm_get_column (reader, ss_end (s)));
889 /* Forcibly skip the end of a line for content type CONTENT in
892 force_eol (struct dfm_reader *reader, const char *content)
896 if (dfm_eof (reader))
899 p = dfm_get_record (reader);
900 if (ss_span (p, ss_cstr (CC_SPACES)) != ss_length (p))
902 msg (SE, _("End of line expected %s while reading %s."),
903 context (reader), content);
907 dfm_forward_record (reader);
911 /* Back end, omitting ROWTYPE_. */
915 const struct dictionary *dict; /* The dictionary */
916 struct matrix_data_pgm *mx; /* MATRIX DATA program. */
917 double ***data; /* MATRIX DATA data. */
918 double *factor_values; /* Factor values. */
919 int max_cell_idx; /* Max-numbered cell that we have
920 read so far, plus one. */
921 double *split_values; /* SPLIT FILE variable values. */
924 static bool nr_read_splits (struct nr_aux_data *, int compare);
925 static bool nr_read_factors (struct nr_aux_data *, int cell);
926 static bool nr_output_data (struct nr_aux_data *, struct ccase *,
927 write_case_func *, write_case_data);
928 static bool matrix_data_read_without_rowtype (struct case_source *source,
933 /* Read from the data file and write it to the active file.
934 Returns true if successful, false if an I/O error occurred. */
936 read_matrices_without_rowtype (struct dataset *ds, struct matrix_data_pgm *mx)
938 struct nr_aux_data nr;
945 nr.dict = dataset_dict (ds);
947 nr.factor_values = xnmalloc (mx->n_factors * mx->cells,
948 sizeof *nr.factor_values);
950 nr.split_values = xnmalloc (dict_get_split_cnt (dataset_dict (ds)),
951 sizeof *nr.split_values);
953 proc_set_source (ds, create_case_source (
954 &matrix_data_without_rowtype_source_class, &nr));
956 ok = procedure (ds, NULL, NULL);
958 free (nr.split_values);
959 free (nr.factor_values);
964 /* Mirror data across the diagonal of matrix CP which contains
965 CONTENT type data. */
967 fill_matrix (struct matrix_data_pgm *mx, int content, double *cp)
969 int type = content_type[content];
971 if (type == 1 && mx->section != FULL)
973 if (mx->diag == NODIAGONAL)
975 const double fill = content == CORR ? 1.0 : SYSMIS;
978 for (i = 0; i < mx->n_continuous; i++)
979 cp[i * (1 + mx->n_continuous)] = fill;
985 if (mx->section == LOWER)
987 int n_lines = mx->n_continuous;
988 if (mx->section != FULL && mx->diag == NODIAGONAL)
991 for (r = 1; r < n_lines; r++)
992 for (c = 0; c < r; c++)
993 cp[r + c * mx->n_continuous] = cp[c + r * mx->n_continuous];
997 assert (mx->section == UPPER);
998 for (r = 1; r < mx->n_continuous; r++)
999 for (c = 0; c < r; c++)
1000 cp[c + r * mx->n_continuous] = cp[r + c * mx->n_continuous];
1008 for (c = 1; c < mx->n_continuous; c++)
1013 /* Read data lines for content type CONTENT from the data file.
1014 If PER_FACTOR is nonzero, then factor information is read from
1015 the data file. Data is for cell number CELL. */
1017 nr_read_data_lines (struct nr_aux_data *nr,
1018 int per_factor, int cell, int content, int compare)
1020 struct matrix_data_pgm *mx = nr->mx;
1021 const int type = content_type[content]; /* Content type. */
1022 int n_lines; /* Number of lines to parse from data file for this type. */
1023 double *cp; /* Current position in vector or matrix. */
1030 n_lines = mx->n_continuous;
1031 if (mx->section != FULL && mx->diag == NODIAGONAL)
1035 cp = nr->data[content][cell];
1036 if (type == 1 && mx->section == LOWER && mx->diag == NODIAGONAL)
1037 cp += mx->n_continuous;
1039 for (i = 0; i < n_lines; i++)
1043 if (!nr_read_splits (nr, 1))
1045 if (per_factor && !nr_read_factors (nr, cell))
1052 n_cols = mx->n_continuous;
1055 switch (mx->section)
1062 n_cols = mx->n_continuous - i;
1063 if (mx->diag == NODIAGONAL)
1070 n_cols = mx->n_continuous;
1086 for (j = 0; j < n_cols; j++)
1088 struct matrix_token token;
1089 if (!mget_token (&token, mx->reader))
1091 if (token.type != MNUM)
1093 msg (SE, _("expecting value for %s %s"),
1094 dict_get_var (nr->dict, j)->name,
1095 context (mx->reader));
1099 *cp++ = token.number;
1102 && !force_eol (mx->reader, content_names[content]))
1106 if (mx->section == LOWER)
1107 cp += mx->n_continuous - n_cols;
1110 fill_matrix (mx, content, nr->data[content][cell]);
1115 /* When ROWTYPE_ does not appear in the data, reads the matrices and
1116 writes them to the output file.
1117 Returns true if successful, false if an I/O error occurred. */
1119 matrix_data_read_without_rowtype (struct case_source *source,
1121 write_case_func *write_case,
1122 write_case_data wc_data)
1124 struct nr_aux_data *nr = source->aux;
1125 struct matrix_data_pgm *mx = nr->mx;
1130 nr->data = pool_nalloc (mx->container, PROX + 1, sizeof *nr->data);
1135 for (i = 0; i <= PROX; i++)
1139 for (cp = mx->contents; *cp != EOC; cp++)
1140 if (*cp != LPAREN && *cp != RPAREN)
1142 int per_factor = mx->is_per_factor[*cp];
1145 n_entries = mx->n_continuous;
1146 if (content_type[*cp] == 1)
1147 n_entries *= mx->n_continuous;
1150 int n_vectors = per_factor ? mx->cells : 1;
1153 nr->data[*cp] = pool_nalloc (mx->container,
1154 n_vectors, sizeof **nr->data);
1156 for (i = 0; i < n_vectors; i++)
1157 nr->data[*cp][i] = pool_nalloc (mx->container,
1158 n_entries, sizeof ***nr->data);
1167 if (!nr_read_splits (nr, 0))
1170 for (bp = mx->contents; *bp != EOC; bp = np)
1174 /* Trap the CONTENTS that we should parse in this pass
1175 between bp and ep. Set np to the starting bp for next
1180 while (*ep != RPAREN)
1188 while (*ep != EOC && *ep != LPAREN)
1197 for (i = 0; i < (per_factor ? mx->cells : 1); i++)
1201 for (cp = bp; cp < ep; cp++)
1202 if (!nr_read_data_lines (nr, per_factor, i, *cp, cp != bp))
1208 if (!nr_output_data (nr, c, write_case, wc_data))
1211 if (dict_get_split_cnt (nr->dict) == 0
1212 || !another_token (mx->reader))
1217 /* Read the split file variables. If COMPARE is 1, compares the
1218 values read to the last values read and returns true if they're equal,
1221 nr_read_splits (struct nr_aux_data *nr, int compare)
1223 struct matrix_data_pgm *mx = nr->mx;
1224 static int just_read = 0; /* FIXME: WTF? */
1228 if (compare && just_read)
1234 if (dict_get_split_vars (nr->dict) == NULL)
1237 if (mx->single_split)
1241 struct mxd_var *mv = dict_get_split_vars (nr->dict)[0]->aux;
1242 nr->split_values[0] = ++mv->sub_type;
1250 split_cnt = dict_get_split_cnt (nr->dict);
1251 for (i = 0; i < split_cnt; i++)
1253 struct matrix_token token;
1254 if (!mget_token (&token, mx->reader))
1256 if (token.type != MNUM)
1258 msg (SE, _("Syntax error expecting SPLIT FILE value %s."),
1259 context (mx->reader));
1264 nr->split_values[i] = token.number;
1265 else if (nr->split_values[i] != token.number)
1267 msg (SE, _("Expecting value %g for %s."),
1268 nr->split_values[i],
1269 dict_get_split_vars (nr->dict)[i]->name);
1277 /* Read the factors for cell CELL. If COMPARE is 1, compares the
1278 values read to the last values read and returns true if they're equal,
1281 nr_read_factors (struct nr_aux_data *nr, int cell)
1283 struct matrix_data_pgm *mx = nr->mx;
1286 if (mx->n_factors == 0)
1289 assert (nr->max_cell_idx >= cell);
1290 if (cell != nr->max_cell_idx)
1301 for (i = 0; i < mx->n_factors; i++)
1303 struct matrix_token token;
1304 if (!mget_token (&token, mx->reader))
1306 if (token.type != MNUM)
1308 msg (SE, _("Syntax error expecting factor value %s."),
1309 context (mx->reader));
1314 nr->factor_values[i + mx->n_factors * cell] = token.number;
1315 else if (nr->factor_values[i + mx->n_factors * cell] != token.number)
1317 msg (SE, _("Syntax error expecting value %g for %s %s."),
1318 nr->factor_values[i + mx->n_factors * cell],
1319 mx->factors[i]->name, context (mx->reader));
1328 /* Write the contents of a cell having content type CONTENT and data
1329 CP to the active file.
1330 Returns true if successful, false if an I/O error occurred. */
1332 dump_cell_content (const struct dictionary *dict,
1333 struct matrix_data_pgm *mx, int content, double *cp,
1335 write_case_func *write_case, write_case_data wc_data)
1337 int type = content_type[content];
1340 buf_copy_str_rpad (case_data_rw (c, mx->rowtype_->fv)->s, 8,
1341 content_names[content]);
1344 memset (case_data_rw (c, mx->varname_->fv)->s, ' ', 8);
1348 int n_lines = (type == 1) ? mx->n_continuous : 1;
1351 for (i = 0; i < n_lines; i++)
1355 for (j = 0; j < mx->n_continuous; j++)
1357 int fv = dict_get_var (dict, mx->first_continuous + j)->fv;
1358 case_data_rw (c, fv)->f = *cp;
1362 buf_copy_str_rpad (case_data_rw (c, mx->varname_->fv)->s, 8,
1364 mx->first_continuous + i)->name);
1365 if (!write_case (wc_data))
1372 /* Finally dump out everything from nr_data[] to the output file. */
1374 nr_output_data (struct nr_aux_data *nr, struct ccase *c,
1375 write_case_func *write_case, write_case_data wc_data)
1377 struct matrix_data_pgm *mx = nr->mx;
1380 struct variable *const *split;
1384 split_cnt = dict_get_split_cnt (nr->dict);
1385 split = dict_get_split_vars (nr->dict);
1386 for (i = 0; i < split_cnt; i++)
1387 case_data_rw (c, split[i]->fv)->f = nr->split_values[i];
1394 for (cell = 0; cell < mx->cells; cell++)
1399 for (factor = 0; factor < mx->n_factors; factor++)
1400 case_data_rw (c, mx->factors[factor]->fv)->f
1401 = nr->factor_values[factor + cell * mx->n_factors];
1407 for (content = 0; content <= PROX; content++)
1408 if (mx->is_per_factor[content])
1410 assert (nr->data[content] != NULL
1411 && nr->data[content][cell] != NULL);
1413 if (!dump_cell_content (nr->dict, mx,
1414 content, nr->data[content][cell],
1415 c, write_case, wc_data))
1428 for (factor = 0; factor < mx->n_factors; factor++)
1429 case_data_rw (c, mx->factors[factor]->fv)->f = SYSMIS;
1432 for (content = 0; content <= PROX; content++)
1433 if (!mx->is_per_factor[content] && nr->data[content] != NULL)
1435 if (!dump_cell_content (nr->dict, mx, content, nr->data[content][0],
1436 c, write_case, wc_data))
1444 /* Back end, with ROWTYPE_. */
1446 /* All the data for one set of factor values. */
1450 int n_rows[PROX + 1];
1451 double *data[PROX + 1];
1452 struct factor_data *next;
1455 /* With ROWTYPE_ auxiliary data. */
1458 const struct dictionary *dict; /* The dictionary */
1459 struct matrix_data_pgm *mx; /* MATRIX DATA program. */
1460 int content; /* Type of current row. */
1461 double *split_values; /* SPLIT FILE variable values. */
1462 struct factor_data *data; /* All the data. */
1463 struct factor_data *current; /* Current factor. */
1466 static bool wr_read_splits (struct wr_aux_data *, struct ccase *,
1467 write_case_func *, write_case_data);
1468 static bool wr_output_data (struct wr_aux_data *, struct ccase *,
1469 write_case_func *, write_case_data);
1470 static bool wr_read_rowtype (struct wr_aux_data *,
1471 const struct matrix_token *, struct dfm_reader *);
1472 static bool wr_read_factors (struct wr_aux_data *);
1473 static bool wr_read_indeps (struct wr_aux_data *);
1474 static bool matrix_data_read_with_rowtype (struct case_source *,
1479 /* When ROWTYPE_ appears in the data, reads the matrices and writes
1480 them to the output file.
1481 Returns true if successful, false if an I/O error occurred. */
1483 read_matrices_with_rowtype (struct dataset *ds, struct matrix_data_pgm *mx)
1485 struct wr_aux_data wr;
1490 wr.split_values = NULL;
1493 wr.dict = dataset_dict (ds);
1496 proc_set_source (ds,
1497 create_case_source (&matrix_data_with_rowtype_source_class,
1499 ok = procedure (ds, NULL, NULL);
1501 free (wr.split_values);
1505 /* Read from the data file and write it to the active file.
1506 Returns true if successful, false if an I/O error occurred. */
1508 matrix_data_read_with_rowtype (struct case_source *source,
1510 write_case_func *write_case,
1511 write_case_data wc_data)
1513 struct wr_aux_data *wr = source->aux;
1514 struct matrix_data_pgm *mx = wr->mx;
1518 if (!wr_read_splits (wr, c, write_case, wc_data))
1521 if (!wr_read_factors (wr))
1524 if (!wr_read_indeps (wr))
1527 while (another_token (mx->reader));
1529 return wr_output_data (wr, c, write_case, wc_data);
1532 /* Read the split file variables. If they differ from the previous
1533 set of split variables then output the data. Returns success. */
1535 wr_read_splits (struct wr_aux_data *wr,
1537 write_case_func *write_case, write_case_data wc_data)
1539 struct matrix_data_pgm *mx = wr->mx;
1543 split_cnt = dict_get_split_cnt (wr->dict);
1547 if (wr->split_values)
1552 wr->split_values = xnmalloc (split_cnt, sizeof *wr->split_values);
1556 bool different = false;
1559 for (i = 0; i < split_cnt; i++)
1561 struct matrix_token token;
1562 if (!mget_token (&token, mx->reader))
1564 if (token.type != MNUM)
1566 msg (SE, _("Syntax error %s expecting SPLIT FILE value."),
1567 context (mx->reader));
1571 if (compare && wr->split_values[i] != token.number && !different)
1573 if (!wr_output_data (wr, c, write_case, wc_data))
1578 wr->split_values[i] = token.number;
1585 /* Compares doubles A and B, treating SYSMIS as greatest. */
1587 compare_doubles (const void *a_, const void *b_, const void *aux UNUSED)
1589 const double *a = a_;
1590 const double *b = b_;
1594 else if (*a == SYSMIS)
1596 else if (*b == SYSMIS)
1604 /* Return strcmp()-type comparison of the MX->n_factors factors at _A and
1605 _B. Sort missing values toward the end. */
1607 compare_factors (const void *a_, const void *b_, const void *mx_)
1609 const struct matrix_data_pgm *mx = mx_;
1610 struct factor_data *const *pa = a_;
1611 struct factor_data *const *pb = b_;
1612 const double *a = (*pa)->factors;
1613 const double *b = (*pb)->factors;
1615 return lexicographical_compare_3way (a, mx->n_factors,
1618 compare_doubles, NULL);
1621 /* Write out the data for the current split file to the active
1623 Returns true if successful, false if an I/O error occurred. */
1625 wr_output_data (struct wr_aux_data *wr,
1627 write_case_func *write_case, write_case_data wc_data)
1629 struct matrix_data_pgm *mx = wr->mx;
1633 struct variable *const *split;
1637 split_cnt = dict_get_split_cnt (wr->dict);
1638 split = dict_get_split_vars (wr->dict);
1639 for (i = 0; i < split_cnt; i++)
1640 case_data_rw (c, split[i]->fv)->f = wr->split_values[i];
1643 /* Sort the wr->data list. */
1645 struct factor_data **factors;
1646 struct factor_data *iter;
1649 factors = xnmalloc (mx->cells, sizeof *factors);
1651 for (i = 0, iter = wr->data; iter; iter = iter->next, i++)
1654 sort (factors, mx->cells, sizeof *factors, compare_factors, mx);
1656 wr->data = factors[0];
1657 for (i = 0; i < mx->cells - 1; i++)
1658 factors[i]->next = factors[i + 1];
1659 factors[mx->cells - 1]->next = NULL;
1664 /* Write out records for every set of factor values. */
1666 struct factor_data *iter;
1668 for (iter = wr->data; iter; iter = iter->next)
1673 for (factor = 0; factor < mx->n_factors; factor++)
1674 case_data_rw (c, mx->factors[factor]->fv)->f
1675 = iter->factors[factor];
1681 for (content = 0; content <= PROX; content++)
1683 if (!iter->n_rows[content])
1687 int type = content_type[content];
1688 int n_lines = (type == 1
1690 - (mx->section != FULL && mx->diag == NODIAGONAL))
1693 if (n_lines != iter->n_rows[content])
1695 msg (SE, _("Expected %d lines of data for %s content; "
1696 "actually saw %d lines. No data will be "
1697 "output for this content."),
1698 n_lines, content_names[content],
1699 iter->n_rows[content]);
1704 fill_matrix (mx, content, iter->data[content]);
1706 ok = dump_cell_content (wr->dict, mx, content,
1707 iter->data[content],
1708 c, write_case, wc_data);
1716 pool_destroy (mx->container);
1717 mx->container = pool_create ();
1719 wr->data = wr->current = NULL;
1724 /* Sets ROWTYPE_ based on the given TOKEN read from READER.
1727 wr_read_rowtype (struct wr_aux_data *wr,
1728 const struct matrix_token *token,
1729 struct dfm_reader *reader)
1731 if (wr->content != -1)
1733 msg (SE, _("Multiply specified ROWTYPE_ %s."), context (reader));
1736 if (token->type != MSTR)
1738 msg (SE, _("Syntax error %s expecting ROWTYPE_ string."),
1747 memcpy (s, token->string, min (15, token->length));
1748 s[min (15, token->length)] = 0;
1750 for (cp = s; *cp; cp++)
1751 *cp = toupper ((unsigned char) *cp);
1753 wr->content = string_to_content_type (s, NULL);
1756 if (wr->content == -1)
1758 msg (SE, _("Syntax error %s."), context (reader));
1765 /* Read the factors for the current row. Select a set of factors and
1766 point wr_current to it. */
1768 wr_read_factors (struct wr_aux_data *wr)
1770 struct matrix_data_pgm *mx = wr->mx;
1771 double *factor_values = local_alloc (sizeof *factor_values * mx->n_factors);
1777 for (i = 0; i < mx->n_factors; i++)
1779 struct matrix_token token;
1780 if (!mget_token (&token, mx->reader))
1782 if (token.type == MSTR)
1784 if (!wr_read_rowtype (wr, &token, mx->reader))
1786 if (!mget_token (&token, mx->reader))
1789 if (token.type != MNUM)
1791 msg (SE, _("Syntax error expecting factor value %s."),
1792 context (mx->reader));
1796 factor_values[i] = token.number;
1799 if (wr->content == -1)
1801 struct matrix_token token;
1802 if (!mget_token (&token, mx->reader))
1804 if (!wr_read_rowtype (wr, &token, mx->reader))
1808 /* Try the most recent factor first as a simple caching
1814 for (i = 0; i < mx->n_factors; i++)
1815 if (factor_values[i] != wr->current->factors[i])
1820 /* Linear search through the list. */
1823 struct factor_data *iter;
1825 for (iter = wr->data; iter; iter = iter->next)
1829 for (i = 0; i < mx->n_factors; i++)
1830 if (factor_values[i] != iter->factors[i])
1840 /* Not found. Make a new item. */
1842 struct factor_data *new = pool_alloc (mx->container, sizeof *new);
1844 new->factors = pool_nalloc (mx->container,
1845 mx->n_factors, sizeof *new->factors);
1850 for (i = 0; i < mx->n_factors; i++)
1851 new->factors[i] = factor_values[i];
1857 for (i = 0; i <= PROX; i++)
1860 new->data[i] = NULL;
1864 new->next = wr->data;
1865 wr->data = wr->current = new;
1870 local_free (factor_values);
1874 local_free (factor_values);
1878 /* Read the independent variables into wr->current. */
1880 wr_read_indeps (struct wr_aux_data *wr)
1882 struct matrix_data_pgm *mx = wr->mx;
1883 struct factor_data *c = wr->current;
1884 const int type = content_type[wr->content];
1885 const int n_rows = c->n_rows[wr->content];
1889 /* Allocate room for data if necessary. */
1890 if (c->data[wr->content] == NULL)
1892 int n_items = mx->n_continuous;
1894 n_items *= mx->n_continuous;
1896 c->data[wr->content] = pool_nalloc (mx->container,
1897 n_items, sizeof **c->data);
1900 cp = &c->data[wr->content][n_rows * mx->n_continuous];
1902 /* Figure out how much to read from this line. */
1909 msg (SE, _("Duplicate specification for %s."),
1910 content_names[wr->content]);
1914 n_cols = mx->n_continuous;
1919 if (n_rows >= mx->n_continuous - (mx->section != FULL && mx->diag == NODIAGONAL))
1921 msg (SE, _("Too many rows of matrix data for %s."),
1922 content_names[wr->content]);
1926 switch (mx->section)
1929 n_cols = n_rows + 1;
1930 if (mx->diag == NODIAGONAL)
1931 cp += mx->n_continuous;
1935 n_cols = mx->n_continuous - n_rows;
1936 if (mx->diag == NODIAGONAL)
1943 n_cols = mx->n_continuous;
1952 c->n_rows[wr->content]++;
1954 /* Read N_COLS items at CP. */
1958 for (j = 0; j < n_cols; j++)
1960 struct matrix_token token;
1961 if (!mget_token (&token, mx->reader))
1963 if (token.type != MNUM)
1965 msg (SE, _("Syntax error expecting value for %s %s."),
1966 dict_get_var (wr->dict, mx->first_continuous + j)->name,
1967 context (mx->reader));
1971 *cp++ = token.number;
1974 && !force_eol (mx->reader, content_names[wr->content]))
1981 /* Matrix source. */
1983 static const struct case_source_class matrix_data_with_rowtype_source_class =
1987 matrix_data_read_with_rowtype,
1991 static const struct case_source_class
1992 matrix_data_without_rowtype_source_class =
1996 matrix_data_read_without_rowtype,