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_integer_p () || 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_integer_p () || 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 len_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 len_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 len_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 len_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,
969 procedure (NULL, NULL);
971 free (nr.split_values);
972 free (nr.factor_values);
975 /* Mirror data across the diagonal of matrix CP which contains
976 CONTENT type data. */
978 fill_matrix (struct matrix_data_pgm *mx, int content, double *cp)
980 int type = content_type[content];
982 if (type == 1 && mx->section != FULL)
984 if (mx->diag == NODIAGONAL)
986 const double fill = content == CORR ? 1.0 : SYSMIS;
989 for (i = 0; i < mx->n_continuous; i++)
990 cp[i * (1 + mx->n_continuous)] = fill;
996 if (mx->section == LOWER)
998 int n_lines = mx->n_continuous;
999 if (mx->section != FULL && mx->diag == NODIAGONAL)
1002 for (r = 1; r < n_lines; r++)
1003 for (c = 0; c < r; c++)
1004 cp[r + c * mx->n_continuous] = cp[c + r * mx->n_continuous];
1008 assert (mx->section == UPPER);
1009 for (r = 1; r < mx->n_continuous; r++)
1010 for (c = 0; c < r; c++)
1011 cp[c + r * mx->n_continuous] = cp[r + c * mx->n_continuous];
1019 for (c = 1; c < mx->n_continuous; c++)
1024 /* Read data lines for content type CONTENT from the data file.
1025 If PER_FACTOR is nonzero, then factor information is read from
1026 the data file. Data is for cell number CELL. */
1028 nr_read_data_lines (struct nr_aux_data *nr,
1029 int per_factor, int cell, int content, int compare)
1031 struct matrix_data_pgm *mx = nr->mx;
1032 const int type = content_type[content]; /* Content type. */
1033 int n_lines; /* Number of lines to parse from data file for this type. */
1034 double *cp; /* Current position in vector or matrix. */
1041 n_lines = mx->n_continuous;
1042 if (mx->section != FULL && mx->diag == NODIAGONAL)
1046 cp = nr->data[content][cell];
1047 if (type == 1 && mx->section == LOWER && mx->diag == NODIAGONAL)
1048 cp += mx->n_continuous;
1050 for (i = 0; i < n_lines; i++)
1054 if (!nr_read_splits (nr, 1))
1056 if (per_factor && !nr_read_factors (nr, cell))
1063 n_cols = mx->n_continuous;
1066 switch (mx->section)
1073 n_cols = mx->n_continuous - i;
1074 if (mx->diag == NODIAGONAL)
1081 n_cols = mx->n_continuous;
1099 for (j = 0; j < n_cols; j++)
1101 struct matrix_token token;
1102 if (!mget_token (&token, mx->reader))
1104 if (token.type != MNUM)
1106 msg (SE, _("expecting value for %s %s"),
1107 dict_get_var (default_dict, j)->name,
1108 context (mx->reader));
1112 *cp++ = token.number;
1115 && !force_eol (mx->reader, content_names[content]))
1117 debug_printf (("\n"));
1120 if (mx->section == LOWER)
1121 cp += mx->n_continuous - n_cols;
1124 fill_matrix (mx, content, nr->data[content][cell]);
1129 /* When ROWTYPE_ does not appear in the data, reads the matrices and
1130 writes them to the output file. Returns success. */
1132 matrix_data_read_without_rowtype (struct case_source *source,
1134 write_case_func *write_case,
1135 write_case_data wc_data)
1137 struct nr_aux_data *nr = source->aux;
1138 struct matrix_data_pgm *mx = nr->mx;
1143 nr->data = pool_alloc (mx->container, (PROX + 1) * sizeof *nr->data);
1148 for (i = 0; i <= PROX; i++)
1152 for (cp = mx->contents; *cp != EOC; cp++)
1153 if (*cp != LPAREN && *cp != RPAREN)
1155 int per_factor = mx->is_per_factor[*cp];
1158 n_entries = mx->n_continuous;
1159 if (content_type[*cp] == 1)
1160 n_entries *= mx->n_continuous;
1163 int n_vectors = per_factor ? mx->cells : 1;
1166 nr->data[*cp] = pool_alloc (mx->container,
1167 n_vectors * sizeof **nr->data);
1169 for (i = 0; i < n_vectors; i++)
1170 nr->data[*cp][i] = pool_alloc (mx->container,
1171 n_entries * sizeof ***nr->data);
1180 if (!nr_read_splits (nr, 0))
1183 for (bp = mx->contents; *bp != EOC; bp = np)
1187 /* Trap the CONTENTS that we should parse in this pass
1188 between bp and ep. Set np to the starting bp for next
1193 while (*ep != RPAREN)
1201 while (*ep != EOC && *ep != LPAREN)
1210 for (i = 0; i < (per_factor ? mx->cells : 1); i++)
1214 for (cp = bp; cp < ep; cp++)
1215 if (!nr_read_data_lines (nr, per_factor, i, *cp, cp != bp))
1221 nr_output_data (nr, c, write_case, wc_data);
1223 if (dict_get_split_cnt (default_dict) == 0
1224 || !another_token (mx->reader))
1229 /* Read the split file variables. If COMPARE is 1, compares the
1230 values read to the last values read and returns 1 if they're equal,
1233 nr_read_splits (struct nr_aux_data *nr, int compare)
1235 struct matrix_data_pgm *mx = nr->mx;
1236 static int just_read = 0; /* FIXME: WTF? */
1240 if (compare && just_read)
1246 if (dict_get_split_vars (default_dict) == NULL)
1249 if (mx->single_split)
1253 struct mxd_var *mv = dict_get_split_vars (default_dict)[0]->aux;
1254 nr->split_values[0] = ++mv->sub_type;
1262 split_cnt = dict_get_split_cnt (default_dict);
1263 for (i = 0; i < split_cnt; i++)
1265 struct matrix_token token;
1266 if (!mget_token (&token, mx->reader))
1268 if (token.type != MNUM)
1270 msg (SE, _("Syntax error expecting SPLIT FILE value %s."),
1271 context (mx->reader));
1276 nr->split_values[i] = token.number;
1277 else if (nr->split_values[i] != token.number)
1279 msg (SE, _("Expecting value %g for %s."),
1280 nr->split_values[i],
1281 dict_get_split_vars (default_dict)[i]->name);
1289 /* Read the factors for cell CELL. If COMPARE is 1, compares the
1290 values read to the last values read and returns 1 if they're equal,
1293 nr_read_factors (struct nr_aux_data *nr, int cell)
1295 struct matrix_data_pgm *mx = nr->mx;
1298 if (mx->n_factors == 0)
1301 assert (nr->max_cell_idx >= cell);
1302 if (cell != nr->max_cell_idx)
1313 for (i = 0; i < mx->n_factors; i++)
1315 struct matrix_token token;
1316 if (!mget_token (&token, mx->reader))
1318 if (token.type != MNUM)
1320 msg (SE, _("Syntax error expecting factor value %s."),
1321 context (mx->reader));
1326 nr->factor_values[i + mx->n_factors * cell] = token.number;
1327 else if (nr->factor_values[i + mx->n_factors * cell] != token.number)
1329 msg (SE, _("Syntax error expecting value %g for %s %s."),
1330 nr->factor_values[i + mx->n_factors * cell],
1331 mx->factors[i]->name, context (mx->reader));
1340 /* Write the contents of a cell having content type CONTENT and data
1341 CP to the active file. */
1343 dump_cell_content (struct matrix_data_pgm *mx, int content, double *cp,
1345 write_case_func *write_case, write_case_data wc_data)
1347 int type = content_type[content];
1350 st_bare_pad_copy (case_data_rw (c, mx->rowtype_->fv)->s,
1351 content_names[content], 8);
1354 memset (case_data_rw (c, mx->varname_->fv)->s, ' ', 8);
1358 int n_lines = (type == 1) ? mx->n_continuous : 1;
1361 for (i = 0; i < n_lines; i++)
1365 for (j = 0; j < mx->n_continuous; j++)
1367 int fv = dict_get_var (default_dict, mx->first_continuous + j)->fv;
1368 case_data_rw (c, fv)->f = *cp;
1372 st_bare_pad_copy (case_data_rw (c, mx->varname_->fv)->s,
1373 dict_get_var (default_dict,
1374 mx->first_continuous + i)->name,
1376 write_case (wc_data);
1381 /* Finally dump out everything from nr_data[] to the output file. */
1383 nr_output_data (struct nr_aux_data *nr, struct ccase *c,
1384 write_case_func *write_case, write_case_data wc_data)
1386 struct matrix_data_pgm *mx = nr->mx;
1389 struct variable *const *split;
1393 split_cnt = dict_get_split_cnt (default_dict);
1394 split = dict_get_split_vars (default_dict);
1395 for (i = 0; i < split_cnt; i++)
1396 case_data_rw (c, split[i]->fv)->f = nr->split_values[i];
1403 for (cell = 0; cell < mx->cells; cell++)
1408 for (factor = 0; factor < mx->n_factors; factor++)
1410 case_data_rw (c, mx->factors[factor]->fv)->f
1411 = nr->factor_values[factor + cell * mx->n_factors];
1412 debug_printf (("f:%s ", mx->factors[factor]->name));
1419 for (content = 0; content <= PROX; content++)
1420 if (mx->is_per_factor[content])
1422 assert (nr->data[content] != NULL
1423 && nr->data[content][cell] != NULL);
1425 dump_cell_content (mx, content, nr->data[content][cell],
1426 c, write_case, wc_data);
1438 for (factor = 0; factor < mx->n_factors; factor++)
1439 case_data_rw (c, mx->factors[factor]->fv)->f = SYSMIS;
1442 for (content = 0; content <= PROX; content++)
1443 if (!mx->is_per_factor[content] && nr->data[content] != NULL)
1444 dump_cell_content (mx, content, nr->data[content][0],
1445 c, write_case, wc_data);
1449 /* Back end, with ROWTYPE_. */
1451 /* All the data for one set of factor values. */
1455 int n_rows[PROX + 1];
1456 double *data[PROX + 1];
1457 struct factor_data *next;
1460 /* With ROWTYPE_ auxiliary data. */
1463 struct matrix_data_pgm *mx; /* MATRIX DATA program. */
1464 int content; /* Type of current row. */
1465 double *split_values; /* SPLIT FILE variable values. */
1466 struct factor_data *data; /* All the data. */
1467 struct factor_data *current; /* Current factor. */
1470 static int wr_read_splits (struct wr_aux_data *, struct ccase *,
1471 write_case_func *, write_case_data);
1472 static int wr_output_data (struct wr_aux_data *, struct ccase *,
1473 write_case_func *, write_case_data);
1474 static int wr_read_rowtype (struct wr_aux_data *,
1475 const struct matrix_token *, struct dfm_reader *);
1476 static int wr_read_factors (struct wr_aux_data *);
1477 static int wr_read_indeps (struct wr_aux_data *);
1478 static void matrix_data_read_with_rowtype (struct case_source *,
1483 /* When ROWTYPE_ appears in the data, reads the matrices and writes
1484 them to the output file. */
1486 read_matrices_with_rowtype (struct matrix_data_pgm *mx)
1488 struct wr_aux_data wr;
1492 wr.split_values = NULL;
1497 vfm_source = create_case_source (&matrix_data_with_rowtype_source_class,
1499 procedure (NULL, NULL);
1501 free (wr.split_values);
1504 /* Read from the data file and write it to the active file. */
1506 matrix_data_read_with_rowtype (struct case_source *source,
1508 write_case_func *write_case,
1509 write_case_data wc_data)
1511 struct wr_aux_data *wr = source->aux;
1512 struct matrix_data_pgm *mx = wr->mx;
1516 if (!wr_read_splits (wr, c, write_case, wc_data))
1519 if (!wr_read_factors (wr))
1522 if (!wr_read_indeps (wr))
1525 while (another_token (mx->reader));
1527 wr_output_data (wr, c, write_case, wc_data);
1530 /* Read the split file variables. If they differ from the previous
1531 set of split variables then output the data. Returns success. */
1533 wr_read_splits (struct wr_aux_data *wr,
1535 write_case_func *write_case, write_case_data wc_data)
1537 struct matrix_data_pgm *mx = wr->mx;
1541 split_cnt = dict_get_split_cnt (default_dict);
1545 if (wr->split_values)
1550 wr->split_values = xmalloc (split_cnt * sizeof *wr->split_values);
1557 for (i = 0; i < split_cnt; i++)
1559 struct matrix_token token;
1560 if (!mget_token (&token, mx->reader))
1562 if (token.type != MNUM)
1564 msg (SE, _("Syntax error %s expecting SPLIT FILE value."),
1565 context (mx->reader));
1569 if (compare && wr->split_values[i] != token.number && !different)
1571 if (!wr_output_data (wr, c, write_case, wc_data))
1576 wr->split_values[i] = token.number;
1583 /* Compares doubles A and B, treating SYSMIS as greatest. */
1585 compare_doubles (const void *a_, const void *b_, void *aux UNUSED)
1587 const double *a = a_;
1588 const double *b = b_;
1592 else if (*a == SYSMIS)
1594 else if (*b == SYSMIS)
1602 /* Return strcmp()-type comparison of the MX->n_factors factors at _A and
1603 _B. Sort missing values toward the end. */
1605 compare_factors (const void *a_, const void *b_, void *mx_)
1607 struct matrix_data_pgm *mx = mx_;
1608 struct factor_data *const *pa = a_;
1609 struct factor_data *const *pb = b_;
1610 const double *a = (*pa)->factors;
1611 const double *b = (*pb)->factors;
1613 return lexicographical_compare_3way (a, mx->n_factors,
1616 compare_doubles, NULL);
1619 /* Write out the data for the current split file to the active
1622 wr_output_data (struct wr_aux_data *wr,
1624 write_case_func *write_case, write_case_data wc_data)
1626 struct matrix_data_pgm *mx = wr->mx;
1629 struct variable *const *split;
1633 split_cnt = dict_get_split_cnt (default_dict);
1634 split = dict_get_split_vars (default_dict);
1635 for (i = 0; i < split_cnt; i++)
1636 case_data_rw (c, split[i]->fv)->f = wr->split_values[i];
1639 /* Sort the wr->data list. */
1641 struct factor_data **factors;
1642 struct factor_data *iter;
1645 factors = xmalloc (sizeof *factors * mx->cells);
1647 for (i = 0, iter = wr->data; iter; iter = iter->next, i++)
1650 sort (factors, mx->cells, sizeof *factors, compare_factors, mx);
1652 wr->data = factors[0];
1653 for (i = 0; i < mx->cells - 1; i++)
1654 factors[i]->next = factors[i + 1];
1655 factors[mx->cells - 1]->next = NULL;
1660 /* Write out records for every set of factor values. */
1662 struct factor_data *iter;
1664 for (iter = wr->data; iter; iter = iter->next)
1669 for (factor = 0; factor < mx->n_factors; factor++)
1671 case_data_rw (c, mx->factors[factor]->fv)->f
1672 = iter->factors[factor];
1673 debug_printf (("f:%s ", factors[factor]->name));
1680 for (content = 0; content <= PROX; content++)
1682 if (!iter->n_rows[content])
1686 int type = content_type[content];
1687 int n_lines = (type == 1
1689 - (mx->section != FULL && mx->diag == NODIAGONAL))
1692 if (n_lines != iter->n_rows[content])
1694 msg (SE, _("Expected %d lines of data for %s content; "
1695 "actually saw %d lines. No data will be "
1696 "output for this content."),
1697 n_lines, content_names[content],
1698 iter->n_rows[content]);
1703 fill_matrix (mx, content, iter->data[content]);
1705 dump_cell_content (mx, content, iter->data[content],
1706 c, write_case, wc_data);
1712 pool_destroy (mx->container);
1713 mx->container = pool_create ();
1715 wr->data = wr->current = NULL;
1720 /* Sets ROWTYPE_ based on the given TOKEN read from READER.
1723 wr_read_rowtype (struct wr_aux_data *wr,
1724 const struct matrix_token *token,
1725 struct dfm_reader *reader)
1727 if (wr->content != -1)
1729 msg (SE, _("Multiply specified ROWTYPE_ %s."), context (reader));
1732 if (token->type != MSTR)
1734 msg (SE, _("Syntax error %s expecting ROWTYPE_ string."),
1743 memcpy (s, token->string, min (15, token->length));
1744 s[min (15, token->length)] = 0;
1746 for (cp = s; *cp; cp++)
1747 *cp = toupper ((unsigned char) *cp);
1749 wr->content = string_to_content_type (s, NULL);
1752 if (wr->content == -1)
1754 msg (SE, _("Syntax error %s."), context (reader));
1761 /* Read the factors for the current row. Select a set of factors and
1762 point wr_current to it. */
1764 wr_read_factors (struct wr_aux_data *wr)
1766 struct matrix_data_pgm *mx = wr->mx;
1767 double *factor_values = local_alloc (sizeof *factor_values * mx->n_factors);
1773 for (i = 0; i < mx->n_factors; i++)
1775 struct matrix_token token;
1776 if (!mget_token (&token, mx->reader))
1778 if (token.type == MSTR)
1780 if (!wr_read_rowtype (wr, &token, mx->reader))
1782 if (!mget_token (&token, mx->reader))
1785 if (token.type != MNUM)
1787 msg (SE, _("Syntax error expecting factor value %s."),
1788 context (mx->reader));
1792 factor_values[i] = token.number;
1795 if (wr->content == -1)
1797 struct matrix_token token;
1798 if (!mget_token (&token, mx->reader))
1800 if (!wr_read_rowtype (wr, &token, mx->reader))
1804 /* Try the most recent factor first as a simple caching
1810 for (i = 0; i < mx->n_factors; i++)
1811 if (factor_values[i] != wr->current->factors[i])
1816 /* Linear search through the list. */
1819 struct factor_data *iter;
1821 for (iter = wr->data; iter; iter = iter->next)
1825 for (i = 0; i < mx->n_factors; i++)
1826 if (factor_values[i] != iter->factors[i])
1836 /* Not found. Make a new item. */
1838 struct factor_data *new = pool_alloc (mx->container, sizeof *new);
1840 new->factors = pool_alloc (mx->container, sizeof *new->factors * mx->n_factors);
1845 for (i = 0; i < mx->n_factors; i++)
1846 new->factors[i] = factor_values[i];
1852 for (i = 0; i <= PROX; i++)
1855 new->data[i] = NULL;
1859 new->next = wr->data;
1860 wr->data = wr->current = new;
1865 local_free (factor_values);
1869 local_free (factor_values);
1873 /* Read the independent variables into wr->current. */
1875 wr_read_indeps (struct wr_aux_data *wr)
1877 struct matrix_data_pgm *mx = wr->mx;
1878 struct factor_data *c = wr->current;
1879 const int type = content_type[wr->content];
1880 const int n_rows = c->n_rows[wr->content];
1884 /* Allocate room for data if necessary. */
1885 if (c->data[wr->content] == NULL)
1887 int n_items = mx->n_continuous;
1889 n_items *= mx->n_continuous;
1891 c->data[wr->content] = pool_alloc (mx->container,
1892 sizeof **c->data * n_items);
1895 cp = &c->data[wr->content][n_rows * mx->n_continuous];
1897 /* Figure out how much to read from this line. */
1904 msg (SE, _("Duplicate specification for %s."),
1905 content_names[wr->content]);
1909 n_cols = mx->n_continuous;
1914 if (n_rows >= mx->n_continuous - (mx->section != FULL && mx->diag == NODIAGONAL))
1916 msg (SE, _("Too many rows of matrix data for %s."),
1917 content_names[wr->content]);
1921 switch (mx->section)
1924 n_cols = n_rows + 1;
1925 if (mx->diag == NODIAGONAL)
1926 cp += mx->n_continuous;
1930 n_cols = mx->n_continuous - n_rows;
1931 if (mx->diag == NODIAGONAL)
1938 n_cols = mx->n_continuous;
1949 c->n_rows[wr->content]++;
1951 debug_printf ((" (c=%p,r=%d,n=%d)", c, n_rows + 1, n_cols));
1953 /* Read N_COLS items at CP. */
1957 for (j = 0; j < n_cols; j++)
1959 struct matrix_token token;
1960 if (!mget_token (&token, mx->reader))
1962 if (token.type != MNUM)
1964 msg (SE, _("Syntax error expecting value for %s %s."),
1965 dict_get_var (default_dict, mx->first_continuous + j)->name,
1966 context (mx->reader));
1970 *cp++ = token.number;
1973 && !force_eol (mx->reader, content_names[wr->content]))
1975 debug_printf (("\n"));
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,