1 /* PSPP - computes sample statistics.
2 Copyright (C) 1997-9, 2000 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., 59 Temple Place - Suite 330, Boston, MA
25 #include "algorithm.h"
31 #include "dictionary.h"
33 #include "file-handle.h"
41 #include "debug-print.h"
43 /* FIXME: /N subcommand not implemented. It should be pretty simple,
46 /* Different types of variables for MATRIX DATA procedure. Order is
47 important: these are used for sort keys. */
50 MXD_SPLIT, /* SPLIT FILE variables. */
51 MXD_ROWTYPE, /* ROWTYPE_. */
52 MXD_FACTOR, /* Factor variables. */
53 MXD_VARNAME, /* VARNAME_. */
54 MXD_CONTINUOUS, /* Continuous variables. */
59 /* Format type enums. */
66 /* Matrix section enums. */
74 /* Diagonal inclusion enums. */
102 /* 0=vector, 1=matrix, 2=scalar. */
103 static const int content_type[PROX + 1] =
105 0, 2, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1,
108 /* Name of each content type. */
109 static const char *content_names[PROX + 1] =
111 "N", "N", "N_MATRIX", "MEAN", "STDDEV", "COUNT", "MSE",
112 "DFE", "MAT", "COV", "CORR", "PROX",
115 /* A MATRIX DATA input program. */
116 struct matrix_data_pgm
118 struct pool *container; /* Arena used for all allocations. */
119 struct dfm_reader *reader; /* Data file to read. */
122 enum format_type fmt; /* LIST or FREE. */
123 enum matrix_section section;/* LOWER or UPPER or FULL. */
124 enum include_diagonal diag; /* DIAGONAL or NODIAGONAL. */
126 int explicit_rowtype; /* ROWTYPE_ specified explicitly in data? */
127 struct variable *rowtype_, *varname_; /* ROWTYPE_, VARNAME_ variables. */
129 struct variable *single_split; /* Single SPLIT FILE variable. */
131 /* Factor variables. */
132 int n_factors; /* Number of factor variables. */
133 struct variable **factors; /* Factor variables. */
134 int is_per_factor[PROX + 1]; /* Is there per-factor data? */
136 int cells; /* Number of cells, or -1 if none. */
138 int pop_n; /* Population N specified by user. */
140 /* CONTENTS subcommand. */
141 int contents[EOC * 3 + 1]; /* Contents. */
142 int n_contents; /* Number of entries. */
144 /* Continuous variables. */
145 int n_continuous; /* Number of continuous variables. */
146 int first_continuous; /* Index into default_dict.var of
147 first continuous variable. */
150 /* Auxiliary data attached to MATRIX DATA variables. */
153 int var_type; /* Variable type. */
154 int sub_type; /* Subtype. */
157 static const struct case_source_class matrix_data_with_rowtype_source_class;
158 static const struct case_source_class matrix_data_without_rowtype_source_class;
160 static int compare_variables_by_mxd_var_type (const void *pa,
162 static void read_matrices_without_rowtype (struct matrix_data_pgm *);
163 static void read_matrices_with_rowtype (struct matrix_data_pgm *);
164 static int string_to_content_type (char *, int *);
165 static void attach_mxd_aux (struct variable *, int var_type, int sub_type);
168 cmd_matrix_data (void)
171 struct matrix_data_pgm *mx;
172 struct file_handle *fh = NULL;
176 discard_variables ();
178 pool = pool_create ();
179 mx = pool_alloc (pool, sizeof *mx);
180 mx->container = pool;
185 mx->explicit_rowtype = 0;
188 mx->single_split = NULL;
191 memset (mx->is_per_factor, 0, sizeof mx->is_per_factor);
195 mx->n_continuous = 0;
196 mx->first_continuous = 0;
201 if (lex_match_id ("VARIABLES"))
208 msg (SE, _("VARIABLES subcommand multiply specified."));
214 if (!parse_DATA_LIST_vars (&v, &nv, PV_NO_DUPLICATE))
220 for (i = 0; i < nv; i++)
221 if (!strcmp (v[i], "VARNAME_"))
223 msg (SE, _("VARNAME_ cannot be explicitly specified on "
225 for (i = 0; i < nv; i++)
235 for (i = 0; i < nv; i++)
237 struct variable *new_var;
239 if (strcmp (v[i], "ROWTYPE_"))
241 new_var = dict_create_var_assert (default_dict, v[i], 0);
242 attach_mxd_aux (new_var, MXD_CONTINUOUS, i);
245 mx->explicit_rowtype = 1;
251 mx->rowtype_ = dict_create_var_assert (default_dict,
253 attach_mxd_aux (mx->rowtype_, MXD_ROWTYPE, 0);
255 else if (lex_match_id ("FILE"))
262 else if (lex_match_id ("FORMAT"))
266 while (token == T_ID)
268 if (lex_match_id ("LIST"))
270 else if (lex_match_id ("FREE"))
272 else if (lex_match_id ("LOWER"))
274 else if (lex_match_id ("UPPER"))
276 else if (lex_match_id ("FULL"))
278 else if (lex_match_id ("DIAGONAL"))
280 else if (lex_match_id ("NODIAGONAL"))
281 mx->diag = NODIAGONAL;
284 lex_error (_("in FORMAT subcommand"));
289 else if (lex_match_id ("SPLIT"))
295 msg (SE, _("SPLIT subcommand multiply specified."));
302 lex_error (_("in SPLIT subcommand"));
306 if (dict_lookup_var (default_dict, tokid) == NULL
307 && (lex_look_ahead () == '.' || lex_look_ahead () == '/'))
309 if (!strcmp (tokid, "ROWTYPE_") || !strcmp (tokid, "VARNAME_"))
311 msg (SE, _("Split variable may not be named ROWTYPE_ "
316 mx->single_split = dict_create_var_assert (default_dict,
318 attach_mxd_aux (mx->single_split, MXD_CONTINUOUS, 0);
321 dict_set_split_vars (default_dict, &mx->single_split, 1);
325 struct variable **split;
328 if (!parse_variables (default_dict, &split, &n, PV_NO_DUPLICATE))
331 dict_set_split_vars (default_dict, split, n);
335 struct variable *const *split = dict_get_split_vars (default_dict);
336 size_t split_cnt = dict_get_split_cnt (default_dict);
339 for (i = 0; i < split_cnt; i++)
341 struct mxd_var *mv = split[i]->aux;
343 if (mv->var_type != MXD_CONTINUOUS)
345 msg (SE, _("Split variable %s is already another type."),
349 var_clear_aux (split[i]);
350 attach_mxd_aux (split[i], MXD_SPLIT, i);
354 else if (lex_match_id ("FACTORS"))
360 msg (SE, _("FACTORS subcommand multiply specified."));
365 if (!parse_variables (default_dict, &mx->factors, &mx->n_factors, PV_NONE))
371 for (i = 0; i < mx->n_factors; i++)
373 struct variable *v = mx->factors[i];
374 struct mxd_var *mv = v->aux;
376 if (mv->var_type != MXD_CONTINUOUS)
378 msg (SE, _("Factor variable %s is already another type."),
383 attach_mxd_aux (v, MXD_FACTOR, i);
387 else if (lex_match_id ("CELLS"))
393 msg (SE, _("CELLS subcommand multiply specified."));
397 if (!lex_is_integer () || lex_integer () < 1)
399 lex_error (_("expecting positive integer"));
403 mx->cells = lex_integer ();
406 else if (lex_match_id ("N"))
412 msg (SE, _("N subcommand multiply specified."));
416 if (!lex_is_integer () || lex_integer () < 1)
418 lex_error (_("expecting positive integer"));
422 mx->pop_n = lex_integer ();
425 else if (lex_match_id ("CONTENTS"))
427 int inside_parens = 0;
428 unsigned collide = 0;
433 msg (SE, _("CONTENTS subcommand multiply specified."));
443 for (i = 0; i <= PROX; i++)
444 mx->is_per_factor[i] = 0;
453 msg (SE, _("Nested parentheses not allowed."));
459 else if (lex_match (')'))
463 msg (SE, _("Mismatched right parenthesis (`(')."));
466 if (mx->contents[mx->n_contents - 1] == LPAREN)
468 msg (SE, _("Empty parentheses not allowed."));
481 lex_error (_("in CONTENTS subcommand"));
485 content_type = string_to_content_type (tokid,
487 if (content_type == -1)
489 lex_error (_("in CONTENTS subcommand"));
494 if (collide & (1 << collide_index))
496 msg (SE, _("Content multiply specified for %s."),
497 content_names[content_type]);
500 collide |= (1 << collide_index);
503 mx->is_per_factor[item] = inside_parens;
505 mx->contents[mx->n_contents++] = item;
507 if (token == '/' || token == '.')
513 msg (SE, _("Missing right parenthesis."));
516 mx->contents[mx->n_contents] = EOC;
527 lex_error (_("expecting end of command"));
533 msg (SE, _("Missing VARIABLES subcommand."));
537 if (!mx->n_contents && !mx->explicit_rowtype)
539 msg (SW, _("CONTENTS subcommand not specified: assuming file "
540 "contains only CORR matrix."));
542 mx->contents[0] = CORR;
543 mx->contents[1] = EOC;
547 if (mx->n_factors && !mx->explicit_rowtype && mx->cells == -1)
549 msg (SE, _("Missing CELLS subcommand. CELLS is required "
550 "when ROWTYPE_ is not given in the data and "
551 "factors are present."));
555 if (mx->explicit_rowtype && mx->single_split)
557 msg (SE, _("Split file values must be present in the data when "
558 "ROWTYPE_ is present."));
562 /* Create VARNAME_. */
563 mx->varname_ = dict_create_var_assert (default_dict, "VARNAME_", 8);
564 attach_mxd_aux (mx->varname_, MXD_VARNAME, 0);
566 /* Sort the dictionary variables into the desired order for the
567 system file output. */
572 dict_get_vars (default_dict, &v, &nv, 0);
573 qsort (v, nv, sizeof *v, compare_variables_by_mxd_var_type);
574 dict_reorder_vars (default_dict, v, nv);
580 static const struct fmt_spec fmt_tab[MXD_COUNT] =
591 mx->first_continuous = -1;
592 for (i = 0; i < dict_get_var_cnt (default_dict); i++)
594 struct variable *v = dict_get_var (default_dict, i);
595 struct mxd_var *mv = v->aux;
596 int type = mv->var_type;
598 assert (type >= 0 && type < MXD_COUNT);
599 v->print = v->write = fmt_tab[type];
601 if (type == MXD_CONTINUOUS)
603 if (mx->first_continuous == -1 && type == MXD_CONTINUOUS)
604 mx->first_continuous = i;
608 if (mx->n_continuous == 0)
610 msg (SE, _("No continuous variables specified."));
614 mx->reader = dfm_open_reader (fh);
615 if (mx->reader == NULL)
618 if (mx->explicit_rowtype)
619 read_matrices_with_rowtype (mx);
621 read_matrices_without_rowtype (mx);
623 dfm_close_reader (mx->reader);
625 pool_destroy (mx->container);
630 discard_variables ();
632 pool_destroy (mx->container);
636 /* Look up string S as a content-type name and return the
637 corresponding enumerated value, or -1 if there is no match. If
638 COLLIDE is non-NULL then *COLLIDE returns a value (suitable for use
639 as a bit-index) which can be used for determining whether a related
640 statistic has already been used. */
642 string_to_content_type (char *s, int *collide)
653 {N_VECTOR, 0, "N_VECTOR"},
655 {N_SCALAR, 0, "N_SCALAR"},
656 {N_MATRIX, 1, "N_MATRIX"},
658 {STDDEV, 3, "STDDEV"},
670 for (tp = tab; tp->value != -1; tp++)
671 if (!strcmp (s, tp->string))
674 *collide = tp->collide;
681 /* Compare two variables using p.mxd.var_type and p.mxd.sub_type
684 compare_variables_by_mxd_var_type (const void *a_, const void *b_)
686 struct variable *const *pa = a_;
687 struct variable *const *pb = b_;
688 const struct mxd_var *a = (*pa)->aux;
689 const struct mxd_var *b = (*pb)->aux;
691 if (a->var_type != b->var_type)
692 return a->var_type > b->var_type ? 1 : -1;
694 return a->sub_type < b->sub_type ? -1 : a->sub_type > b->sub_type;
697 /* Attaches a struct mxd_var with the specific member values to
700 attach_mxd_aux (struct variable *v, int var_type, int sub_type)
704 assert (v->aux == NULL);
705 mv = xmalloc (sizeof *mv);
706 mv->var_type = var_type;
707 mv->sub_type = sub_type;
708 var_attach_aux (v, mv, var_dtor_free);
711 /* Matrix tokenizer. */
713 /* Matrix token types. */
714 enum matrix_token_type
720 /* A MATRIX DATA parsing token. */
723 enum matrix_token_type type;
724 double number; /* MNUM: token value. */
725 char *string; /* MSTR: token string; not null-terminated. */
726 int length; /* MSTR: tokstr length. */
729 static int mget_token (struct matrix_token *, struct dfm_reader *);
732 #define mget_token(TOKEN, READER) mget_token_dump(TOKEN, READER)
735 mdump_token (const struct matrix_token *token)
740 printf (" #%g", token->number);
743 printf (" '%.*s'", token->length, token->string);
752 mget_token_dump (struct matrix_token *token, struct dfm_reader *reader)
754 int result = (mget_token) (token, reader);
760 /* Return the current position in READER. */
762 context (struct dfm_reader *reader)
766 if (dfm_eof (reader))
767 strcpy (buf, "at end of file");
770 struct fixed_string line;
773 dfm_get_record (reader, &line);
774 sp = ls_c_str (&line);
775 while (sp < ls_end (&line) && isspace ((unsigned char) *sp))
777 if (sp >= ls_end (&line))
778 strcpy (buf, "at end of line");
784 dp = stpcpy (buf, "before `");
785 while (sp < ls_end (&line) && !isspace ((unsigned char) *sp)
798 /* Is there at least one token left in the data file? */
800 another_token (struct dfm_reader *reader)
804 struct fixed_string line;
807 if (dfm_eof (reader))
809 dfm_get_record (reader, &line);
811 cp = ls_c_str (&line);
812 while (isspace ((unsigned char) *cp) && cp < ls_end (&line))
815 if (cp < ls_end (&line))
817 dfm_forward_columns (reader, cp - ls_c_str (&line));
821 dfm_forward_record (reader);
825 /* Parse a MATRIX DATA token from READER into TOKEN. */
827 (mget_token) (struct matrix_token *token, struct dfm_reader *reader)
829 struct fixed_string line;
833 if (!another_token (reader))
836 dfm_get_record (reader, &line);
837 first_column = dfm_column_start (reader);
839 /* Three types of fields: quoted with ', quoted with ", unquoted. */
840 cp = ls_c_str (&line);
841 if (*cp == '\'' || *cp == '"')
846 token->string = ++cp;
847 while (cp < ls_end (&line) && *cp != quote)
849 token->length = cp - token->string;
850 if (cp < ls_end (&line))
853 msg (SW, _("Scope of string exceeds line."));
857 int is_num = isdigit ((unsigned char) *cp) || *cp == '.';
859 token->string = cp++;
860 while (cp < ls_end (&line)
861 && !isspace ((unsigned char) *cp) && *cp != ','
862 && *cp != '-' && *cp != '+')
864 if (isdigit ((unsigned char) *cp))
867 if ((tolower ((unsigned char) *cp) == 'd'
868 || tolower ((unsigned char) *cp) == 'e')
869 && (cp[1] == '+' || cp[1] == '-'))
875 token->length = cp - token->string;
876 assert (token->length);
882 di.s = token->string;
883 di.e = token->string + token->length;
884 di.v = (union value *) &token->number;
885 di.f1 = first_column;
886 di.format.type = FMT_F;
887 di.format.w = token->length;
897 dfm_forward_columns (reader, cp - ls_c_str (&line));
902 /* Forcibly skip the end of a line for content type CONTENT in
905 force_eol (struct dfm_reader *reader, const char *content)
907 struct fixed_string line;
910 if (dfm_eof (reader))
912 dfm_get_record (reader, &line);
914 cp = ls_c_str (&line);
915 while (isspace ((unsigned char) *cp) && cp < ls_end (&line))
918 if (cp < ls_end (&line))
920 msg (SE, _("End of line expected %s while reading %s."),
921 context (reader), content);
925 dfm_forward_record (reader);
929 /* Back end, omitting ROWTYPE_. */
933 struct matrix_data_pgm *mx; /* MATRIX DATA program. */
934 double ***data; /* MATRIX DATA data. */
935 double *factor_values; /* Factor values. */
936 int max_cell_idx; /* Max-numbered cell that we have
937 read so far, plus one. */
938 double *split_values; /* SPLIT FILE variable values. */
941 static int nr_read_splits (struct nr_aux_data *, int compare);
942 static int nr_read_factors (struct nr_aux_data *, int cell);
943 static void nr_output_data (struct nr_aux_data *, struct ccase *,
944 write_case_func *, write_case_data);
945 static void matrix_data_read_without_rowtype (struct case_source *source,
950 /* Read from the data file and write it to the active file. */
952 read_matrices_without_rowtype (struct matrix_data_pgm *mx)
954 struct nr_aux_data nr;
961 nr.factor_values = xmalloc (sizeof *nr.factor_values * mx->n_factors * mx->cells);
963 nr.split_values = xmalloc (sizeof *nr.split_values
964 * dict_get_split_cnt (default_dict));
966 vfm_source = create_case_source (&matrix_data_without_rowtype_source_class, &nr);
968 procedure (NULL, NULL);
970 free (nr.split_values);
971 free (nr.factor_values);
974 /* Mirror data across the diagonal of matrix CP which contains
975 CONTENT type data. */
977 fill_matrix (struct matrix_data_pgm *mx, int content, double *cp)
979 int type = content_type[content];
981 if (type == 1 && mx->section != FULL)
983 if (mx->diag == NODIAGONAL)
985 const double fill = content == CORR ? 1.0 : SYSMIS;
988 for (i = 0; i < mx->n_continuous; i++)
989 cp[i * (1 + mx->n_continuous)] = fill;
995 if (mx->section == LOWER)
997 int n_lines = mx->n_continuous;
998 if (mx->section != FULL && mx->diag == NODIAGONAL)
1001 for (r = 1; r < n_lines; r++)
1002 for (c = 0; c < r; c++)
1003 cp[r + c * mx->n_continuous] = cp[c + r * mx->n_continuous];
1007 assert (mx->section == UPPER);
1008 for (r = 1; r < mx->n_continuous; r++)
1009 for (c = 0; c < r; c++)
1010 cp[c + r * mx->n_continuous] = cp[r + c * mx->n_continuous];
1018 for (c = 1; c < mx->n_continuous; c++)
1023 /* Read data lines for content type CONTENT from the data file.
1024 If PER_FACTOR is nonzero, then factor information is read from
1025 the data file. Data is for cell number CELL. */
1027 nr_read_data_lines (struct nr_aux_data *nr,
1028 int per_factor, int cell, int content, int compare)
1030 struct matrix_data_pgm *mx = nr->mx;
1031 const int type = content_type[content]; /* Content type. */
1032 int n_lines; /* Number of lines to parse from data file for this type. */
1033 double *cp; /* Current position in vector or matrix. */
1040 n_lines = mx->n_continuous;
1041 if (mx->section != FULL && mx->diag == NODIAGONAL)
1045 cp = nr->data[content][cell];
1046 if (type == 1 && mx->section == LOWER && mx->diag == NODIAGONAL)
1047 cp += mx->n_continuous;
1049 for (i = 0; i < n_lines; i++)
1053 if (!nr_read_splits (nr, 1))
1055 if (per_factor && !nr_read_factors (nr, cell))
1062 n_cols = mx->n_continuous;
1065 switch (mx->section)
1072 n_cols = mx->n_continuous - i;
1073 if (mx->diag == NODIAGONAL)
1080 n_cols = mx->n_continuous;
1098 for (j = 0; j < n_cols; j++)
1100 struct matrix_token token;
1101 if (!mget_token (&token, mx->reader))
1103 if (token.type != MNUM)
1105 msg (SE, _("expecting value for %s %s"),
1106 dict_get_var (default_dict, j)->name,
1107 context (mx->reader));
1111 *cp++ = token.number;
1114 && !force_eol (mx->reader, content_names[content]))
1116 debug_printf (("\n"));
1119 if (mx->section == LOWER)
1120 cp += mx->n_continuous - n_cols;
1123 fill_matrix (mx, content, nr->data[content][cell]);
1128 /* When ROWTYPE_ does not appear in the data, reads the matrices and
1129 writes them to the output file. Returns success. */
1131 matrix_data_read_without_rowtype (struct case_source *source,
1133 write_case_func *write_case,
1134 write_case_data wc_data)
1136 struct nr_aux_data *nr = source->aux;
1137 struct matrix_data_pgm *mx = nr->mx;
1142 nr->data = pool_alloc (mx->container, (PROX + 1) * sizeof *nr->data);
1147 for (i = 0; i <= PROX; i++)
1151 for (cp = mx->contents; *cp != EOC; cp++)
1152 if (*cp != LPAREN && *cp != RPAREN)
1154 int per_factor = mx->is_per_factor[*cp];
1157 n_entries = mx->n_continuous;
1158 if (content_type[*cp] == 1)
1159 n_entries *= mx->n_continuous;
1162 int n_vectors = per_factor ? mx->cells : 1;
1165 nr->data[*cp] = pool_alloc (mx->container,
1166 n_vectors * sizeof **nr->data);
1168 for (i = 0; i < n_vectors; i++)
1169 nr->data[*cp][i] = pool_alloc (mx->container,
1170 n_entries * sizeof ***nr->data);
1179 if (!nr_read_splits (nr, 0))
1182 for (bp = mx->contents; *bp != EOC; bp = np)
1186 /* Trap the CONTENTS that we should parse in this pass
1187 between bp and ep. Set np to the starting bp for next
1192 while (*ep != RPAREN)
1200 while (*ep != EOC && *ep != LPAREN)
1209 for (i = 0; i < (per_factor ? mx->cells : 1); i++)
1213 for (cp = bp; cp < ep; cp++)
1214 if (!nr_read_data_lines (nr, per_factor, i, *cp, cp != bp))
1220 nr_output_data (nr, c, write_case, wc_data);
1222 if (dict_get_split_cnt (default_dict) == 0
1223 || !another_token (mx->reader))
1228 /* Read the split file variables. If COMPARE is 1, compares the
1229 values read to the last values read and returns 1 if they're equal,
1232 nr_read_splits (struct nr_aux_data *nr, int compare)
1234 struct matrix_data_pgm *mx = nr->mx;
1235 static int just_read = 0; /* FIXME: WTF? */
1239 if (compare && just_read)
1245 if (dict_get_split_vars (default_dict) == NULL)
1248 if (mx->single_split)
1252 struct mxd_var *mv = dict_get_split_vars (default_dict)[0]->aux;
1253 nr->split_values[0] = ++mv->sub_type;
1261 split_cnt = dict_get_split_cnt (default_dict);
1262 for (i = 0; i < split_cnt; i++)
1264 struct matrix_token token;
1265 if (!mget_token (&token, mx->reader))
1267 if (token.type != MNUM)
1269 msg (SE, _("Syntax error expecting SPLIT FILE value %s."),
1270 context (mx->reader));
1275 nr->split_values[i] = token.number;
1276 else if (nr->split_values[i] != token.number)
1278 msg (SE, _("Expecting value %g for %s."),
1279 nr->split_values[i],
1280 dict_get_split_vars (default_dict)[i]->name);
1288 /* Read the factors for cell CELL. If COMPARE is 1, compares the
1289 values read to the last values read and returns 1 if they're equal,
1292 nr_read_factors (struct nr_aux_data *nr, int cell)
1294 struct matrix_data_pgm *mx = nr->mx;
1297 if (mx->n_factors == 0)
1300 assert (nr->max_cell_idx >= cell);
1301 if (cell != nr->max_cell_idx)
1312 for (i = 0; i < mx->n_factors; i++)
1314 struct matrix_token token;
1315 if (!mget_token (&token, mx->reader))
1317 if (token.type != MNUM)
1319 msg (SE, _("Syntax error expecting factor value %s."),
1320 context (mx->reader));
1325 nr->factor_values[i + mx->n_factors * cell] = token.number;
1326 else if (nr->factor_values[i + mx->n_factors * cell] != token.number)
1328 msg (SE, _("Syntax error expecting value %g for %s %s."),
1329 nr->factor_values[i + mx->n_factors * cell],
1330 mx->factors[i]->name, context (mx->reader));
1339 /* Write the contents of a cell having content type CONTENT and data
1340 CP to the active file. */
1342 dump_cell_content (struct matrix_data_pgm *mx, int content, double *cp,
1344 write_case_func *write_case, write_case_data wc_data)
1346 int type = content_type[content];
1349 st_bare_pad_copy (case_data_rw (c, mx->rowtype_->fv)->s,
1350 content_names[content], 8);
1353 memset (case_data_rw (c, mx->varname_->fv)->s, ' ', 8);
1357 int n_lines = (type == 1) ? mx->n_continuous : 1;
1360 for (i = 0; i < n_lines; i++)
1364 for (j = 0; j < mx->n_continuous; j++)
1366 int fv = dict_get_var (default_dict, mx->first_continuous + j)->fv;
1367 case_data_rw (c, fv)->f = *cp;
1371 st_bare_pad_copy (case_data_rw (c, mx->varname_->fv)->s,
1372 dict_get_var (default_dict,
1373 mx->first_continuous + i)->name,
1375 write_case (wc_data);
1380 /* Finally dump out everything from nr_data[] to the output file. */
1382 nr_output_data (struct nr_aux_data *nr, struct ccase *c,
1383 write_case_func *write_case, write_case_data wc_data)
1385 struct matrix_data_pgm *mx = nr->mx;
1388 struct variable *const *split;
1392 split_cnt = dict_get_split_cnt (default_dict);
1393 split = dict_get_split_vars (default_dict);
1394 for (i = 0; i < split_cnt; i++)
1395 case_data_rw (c, split[i]->fv)->f = nr->split_values[i];
1402 for (cell = 0; cell < mx->cells; cell++)
1407 for (factor = 0; factor < mx->n_factors; factor++)
1409 case_data_rw (c, mx->factors[factor]->fv)->f
1410 = nr->factor_values[factor + cell * mx->n_factors];
1411 debug_printf (("f:%s ", mx->factors[factor]->name));
1418 for (content = 0; content <= PROX; content++)
1419 if (mx->is_per_factor[content])
1421 assert (nr->data[content] != NULL
1422 && nr->data[content][cell] != NULL);
1424 dump_cell_content (mx, content, nr->data[content][cell],
1425 c, write_case, wc_data);
1437 for (factor = 0; factor < mx->n_factors; factor++)
1438 case_data_rw (c, mx->factors[factor]->fv)->f = SYSMIS;
1441 for (content = 0; content <= PROX; content++)
1442 if (!mx->is_per_factor[content] && nr->data[content] != NULL)
1443 dump_cell_content (mx, content, nr->data[content][0],
1444 c, write_case, wc_data);
1448 /* Back end, with ROWTYPE_. */
1450 /* All the data for one set of factor values. */
1454 int n_rows[PROX + 1];
1455 double *data[PROX + 1];
1456 struct factor_data *next;
1459 /* With ROWTYPE_ auxiliary data. */
1462 struct matrix_data_pgm *mx; /* MATRIX DATA program. */
1463 int content; /* Type of current row. */
1464 double *split_values; /* SPLIT FILE variable values. */
1465 struct factor_data *data; /* All the data. */
1466 struct factor_data *current; /* Current factor. */
1469 static int wr_read_splits (struct wr_aux_data *, struct ccase *,
1470 write_case_func *, write_case_data);
1471 static int wr_output_data (struct wr_aux_data *, struct ccase *,
1472 write_case_func *, write_case_data);
1473 static int wr_read_rowtype (struct wr_aux_data *,
1474 const struct matrix_token *, struct dfm_reader *);
1475 static int wr_read_factors (struct wr_aux_data *);
1476 static int wr_read_indeps (struct wr_aux_data *);
1477 static void matrix_data_read_with_rowtype (struct case_source *,
1482 /* When ROWTYPE_ appears in the data, reads the matrices and writes
1483 them to the output file. */
1485 read_matrices_with_rowtype (struct matrix_data_pgm *mx)
1487 struct wr_aux_data wr;
1491 wr.split_values = NULL;
1496 vfm_source = create_case_source (&matrix_data_with_rowtype_source_class,
1498 procedure (NULL, NULL);
1500 free (wr.split_values);
1503 /* Read from the data file and write it to the active file. */
1505 matrix_data_read_with_rowtype (struct case_source *source,
1507 write_case_func *write_case,
1508 write_case_data wc_data)
1510 struct wr_aux_data *wr = source->aux;
1511 struct matrix_data_pgm *mx = wr->mx;
1515 if (!wr_read_splits (wr, c, write_case, wc_data))
1518 if (!wr_read_factors (wr))
1521 if (!wr_read_indeps (wr))
1524 while (another_token (mx->reader));
1526 wr_output_data (wr, c, write_case, wc_data);
1529 /* Read the split file variables. If they differ from the previous
1530 set of split variables then output the data. Returns success. */
1532 wr_read_splits (struct wr_aux_data *wr,
1534 write_case_func *write_case, write_case_data wc_data)
1536 struct matrix_data_pgm *mx = wr->mx;
1540 split_cnt = dict_get_split_cnt (default_dict);
1544 if (wr->split_values)
1549 wr->split_values = xmalloc (split_cnt * sizeof *wr->split_values);
1556 for (i = 0; i < split_cnt; i++)
1558 struct matrix_token token;
1559 if (!mget_token (&token, mx->reader))
1561 if (token.type != MNUM)
1563 msg (SE, _("Syntax error %s expecting SPLIT FILE value."),
1564 context (mx->reader));
1568 if (compare && wr->split_values[i] != token.number && !different)
1570 if (!wr_output_data (wr, c, write_case, wc_data))
1575 wr->split_values[i] = token.number;
1582 /* Compares doubles A and B, treating SYSMIS as greatest. */
1584 compare_doubles (const void *a_, const void *b_, void *aux UNUSED)
1586 const double *a = a_;
1587 const double *b = b_;
1591 else if (*a == SYSMIS)
1593 else if (*b == SYSMIS)
1601 /* Return strcmp()-type comparison of the MX->n_factors factors at _A and
1602 _B. Sort missing values toward the end. */
1604 compare_factors (const void *a_, const void *b_, void *mx_)
1606 struct matrix_data_pgm *mx = mx_;
1607 struct factor_data *const *pa = a_;
1608 struct factor_data *const *pb = b_;
1609 const double *a = (*pa)->factors;
1610 const double *b = (*pb)->factors;
1612 return lexicographical_compare_3way (a, mx->n_factors,
1615 compare_doubles, NULL);
1618 /* Write out the data for the current split file to the active
1621 wr_output_data (struct wr_aux_data *wr,
1623 write_case_func *write_case, write_case_data wc_data)
1625 struct matrix_data_pgm *mx = wr->mx;
1628 struct variable *const *split;
1632 split_cnt = dict_get_split_cnt (default_dict);
1633 split = dict_get_split_vars (default_dict);
1634 for (i = 0; i < split_cnt; i++)
1635 case_data_rw (c, split[i]->fv)->f = wr->split_values[i];
1638 /* Sort the wr->data list. */
1640 struct factor_data **factors;
1641 struct factor_data *iter;
1644 factors = xmalloc (sizeof *factors * mx->cells);
1646 for (i = 0, iter = wr->data; iter; iter = iter->next, i++)
1649 sort (factors, mx->cells, sizeof *factors, compare_factors, mx);
1651 wr->data = factors[0];
1652 for (i = 0; i < mx->cells - 1; i++)
1653 factors[i]->next = factors[i + 1];
1654 factors[mx->cells - 1]->next = NULL;
1659 /* Write out records for every set of factor values. */
1661 struct factor_data *iter;
1663 for (iter = wr->data; iter; iter = iter->next)
1668 for (factor = 0; factor < mx->n_factors; factor++)
1669 case_data_rw (c, mx->factors[factor]->fv)->f
1670 = iter->factors[factor];
1676 for (content = 0; content <= PROX; content++)
1678 if (!iter->n_rows[content])
1682 int type = content_type[content];
1683 int n_lines = (type == 1
1685 - (mx->section != FULL && mx->diag == NODIAGONAL))
1688 if (n_lines != iter->n_rows[content])
1690 msg (SE, _("Expected %d lines of data for %s content; "
1691 "actually saw %d lines. No data will be "
1692 "output for this content."),
1693 n_lines, content_names[content],
1694 iter->n_rows[content]);
1699 fill_matrix (mx, content, iter->data[content]);
1701 dump_cell_content (mx, content, iter->data[content],
1702 c, write_case, wc_data);
1708 pool_destroy (mx->container);
1709 mx->container = pool_create ();
1711 wr->data = wr->current = NULL;
1716 /* Sets ROWTYPE_ based on the given TOKEN read from READER.
1719 wr_read_rowtype (struct wr_aux_data *wr,
1720 const struct matrix_token *token,
1721 struct dfm_reader *reader)
1723 if (wr->content != -1)
1725 msg (SE, _("Multiply specified ROWTYPE_ %s."), context (reader));
1728 if (token->type != MSTR)
1730 msg (SE, _("Syntax error %s expecting ROWTYPE_ string."),
1739 memcpy (s, token->string, min (15, token->length));
1740 s[min (15, token->length)] = 0;
1742 for (cp = s; *cp; cp++)
1743 *cp = toupper ((unsigned char) *cp);
1745 wr->content = string_to_content_type (s, NULL);
1748 if (wr->content == -1)
1750 msg (SE, _("Syntax error %s."), context (reader));
1757 /* Read the factors for the current row. Select a set of factors and
1758 point wr_current to it. */
1760 wr_read_factors (struct wr_aux_data *wr)
1762 struct matrix_data_pgm *mx = wr->mx;
1763 double *factor_values = local_alloc (sizeof *factor_values * mx->n_factors);
1769 for (i = 0; i < mx->n_factors; i++)
1771 struct matrix_token token;
1772 if (!mget_token (&token, mx->reader))
1774 if (token.type == MSTR)
1776 if (!wr_read_rowtype (wr, &token, mx->reader))
1778 if (!mget_token (&token, mx->reader))
1781 if (token.type != MNUM)
1783 msg (SE, _("Syntax error expecting factor value %s."),
1784 context (mx->reader));
1788 factor_values[i] = token.number;
1791 if (wr->content == -1)
1793 struct matrix_token token;
1794 if (!mget_token (&token, mx->reader))
1796 if (!wr_read_rowtype (wr, &token, mx->reader))
1800 /* Try the most recent factor first as a simple caching
1806 for (i = 0; i < mx->n_factors; i++)
1807 if (factor_values[i] != wr->current->factors[i])
1812 /* Linear search through the list. */
1815 struct factor_data *iter;
1817 for (iter = wr->data; iter; iter = iter->next)
1821 for (i = 0; i < mx->n_factors; i++)
1822 if (factor_values[i] != iter->factors[i])
1832 /* Not found. Make a new item. */
1834 struct factor_data *new = pool_alloc (mx->container, sizeof *new);
1836 new->factors = pool_alloc (mx->container, sizeof *new->factors * mx->n_factors);
1841 for (i = 0; i < mx->n_factors; i++)
1842 new->factors[i] = factor_values[i];
1848 for (i = 0; i <= PROX; i++)
1851 new->data[i] = NULL;
1855 new->next = wr->data;
1856 wr->data = wr->current = new;
1861 local_free (factor_values);
1865 local_free (factor_values);
1869 /* Read the independent variables into wr->current. */
1871 wr_read_indeps (struct wr_aux_data *wr)
1873 struct matrix_data_pgm *mx = wr->mx;
1874 struct factor_data *c = wr->current;
1875 const int type = content_type[wr->content];
1876 const int n_rows = c->n_rows[wr->content];
1880 /* Allocate room for data if necessary. */
1881 if (c->data[wr->content] == NULL)
1883 int n_items = mx->n_continuous;
1885 n_items *= mx->n_continuous;
1887 c->data[wr->content] = pool_alloc (mx->container,
1888 sizeof **c->data * n_items);
1891 cp = &c->data[wr->content][n_rows * mx->n_continuous];
1893 /* Figure out how much to read from this line. */
1900 msg (SE, _("Duplicate specification for %s."),
1901 content_names[wr->content]);
1905 n_cols = mx->n_continuous;
1910 if (n_rows >= mx->n_continuous - (mx->section != FULL && mx->diag == NODIAGONAL))
1912 msg (SE, _("Too many rows of matrix data for %s."),
1913 content_names[wr->content]);
1917 switch (mx->section)
1920 n_cols = n_rows + 1;
1921 if (mx->diag == NODIAGONAL)
1922 cp += mx->n_continuous;
1926 n_cols = mx->n_continuous - n_rows;
1927 if (mx->diag == NODIAGONAL)
1934 n_cols = mx->n_continuous;
1945 c->n_rows[wr->content]++;
1947 debug_printf ((" (c=%p,r=%d,n=%d)", c, n_rows + 1, n_cols));
1949 /* Read N_COLS items at CP. */
1953 for (j = 0; j < n_cols; j++)
1955 struct matrix_token token;
1956 if (!mget_token (&token, mx->reader))
1958 if (token.type != MNUM)
1960 msg (SE, _("Syntax error expecting value for %s %s."),
1961 dict_get_var (default_dict, mx->first_continuous + j)->name,
1962 context (mx->reader));
1966 *cp++ = token.number;
1969 && !force_eol (mx->reader, content_names[wr->content]))
1971 debug_printf (("\n"));
1977 /* Matrix source. */
1979 static const struct case_source_class matrix_data_with_rowtype_source_class =
1983 matrix_data_read_with_rowtype,
1987 static const struct case_source_class
1988 matrix_data_without_rowtype_source_class =
1992 matrix_data_read_without_rowtype,