1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-2000, 2006-2007, 2009-2016 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 #include "data/sys-file-private.h"
28 #include "data/any-reader.h"
29 #include "data/attributes.h"
30 #include "data/case.h"
31 #include "data/casereader-provider.h"
32 #include "data/casereader.h"
33 #include "data/dictionary.h"
34 #include "data/file-handle-def.h"
35 #include "data/file-name.h"
36 #include "data/format.h"
37 #include "data/identifier.h"
38 #include "data/missing-values.h"
39 #include "data/mrset.h"
40 #include "data/short-names.h"
41 #include "data/value-labels.h"
42 #include "data/value.h"
43 #include "data/variable.h"
44 #include "libpspp/array.h"
45 #include "libpspp/assertion.h"
46 #include "libpspp/compiler.h"
47 #include "libpspp/i18n.h"
48 #include "libpspp/ll.h"
49 #include "libpspp/message.h"
50 #include "libpspp/misc.h"
51 #include "libpspp/pool.h"
52 #include "libpspp/str.h"
53 #include "libpspp/stringi-set.h"
55 #include "gl/c-strtod.h"
56 #include "gl/c-ctype.h"
57 #include "gl/inttostr.h"
58 #include "gl/localcharset.h"
59 #include "gl/minmax.h"
60 #include "gl/unlocked-io.h"
61 #include "gl/xalloc.h"
62 #include "gl/xalloc-oversized.h"
66 #define _(msgid) gettext (msgid)
67 #define N_(msgid) (msgid)
71 /* subtypes 0-2 unknown */
72 EXT_INTEGER = 3, /* Machine integer info. */
73 EXT_FLOAT = 4, /* Machine floating-point info. */
74 EXT_VAR_SETS = 5, /* Variable sets. */
75 EXT_DATE = 6, /* DATE. */
76 EXT_MRSETS = 7, /* Multiple response sets. */
77 EXT_DATA_ENTRY = 8, /* SPSS Data Entry. */
78 /* subtype 9 unknown */
79 EXT_PRODUCT_INFO = 10, /* Extra product info text. */
80 EXT_DISPLAY = 11, /* Variable display parameters. */
81 /* subtype 12 unknown */
82 EXT_LONG_NAMES = 13, /* Long variable names. */
83 EXT_LONG_STRINGS = 14, /* Long strings. */
84 /* subtype 15 unknown */
85 EXT_NCASES = 16, /* Extended number of cases. */
86 EXT_FILE_ATTRS = 17, /* Data file attributes. */
87 EXT_VAR_ATTRS = 18, /* Variable attributes. */
88 EXT_MRSETS2 = 19, /* Multiple response sets (extended). */
89 EXT_ENCODING = 20, /* Character encoding. */
90 EXT_LONG_LABELS = 21, /* Value labels for long strings. */
91 EXT_LONG_MISSING = 22, /* Missing values for long strings. */
92 EXT_DATAVIEW = 24 /* "Format properties in dataview table". */
95 /* Fields from the top-level header record. */
96 struct sfm_header_record
98 char magic[5]; /* First 4 bytes of file, then null. */
99 int weight_idx; /* 0 if unweighted, otherwise a var index. */
100 int nominal_case_size; /* Number of var positions. */
102 /* These correspond to the members of struct any_file_info or a dictionary
103 but in the system file's encoding rather than ASCII. */
104 char creation_date[10]; /* "dd mmm yy". */
105 char creation_time[9]; /* "hh:mm:ss". */
106 char eye_catcher[61]; /* Eye-catcher string, then product name. */
107 char file_label[65]; /* File label. */
110 struct sfm_var_record
117 int missing_value_code;
120 struct variable *var;
123 struct sfm_value_label
129 struct sfm_value_label_record
132 struct sfm_value_label *labels;
133 unsigned int n_labels;
139 struct sfm_document_record
148 const char *name; /* Name. */
149 const char *label; /* Human-readable label for group. */
150 enum mrset_type type; /* Group type. */
151 const char **vars; /* Constituent variables' names. */
152 size_t n_vars; /* Number of constituent variables. */
155 enum mrset_md_cat_source cat_source; /* Source of category labels. */
156 bool label_from_var_label; /* 'label' taken from variable label? */
157 const char *counted; /* Counted value, as string. */
160 struct sfm_extension_record
162 struct ll ll; /* In struct sfm_reader 'var_attrs' list. */
163 int subtype; /* Record subtype. */
164 off_t pos; /* Starting offset in file. */
165 unsigned int size; /* Size of data elements. */
166 unsigned int count; /* Number of data elements. */
167 void *data; /* Contents. */
170 /* System file reader. */
173 struct any_reader any_reader;
175 /* Resource tracking. */
176 struct pool *pool; /* All system file state. */
179 struct any_read_info info;
180 struct sfm_header_record header;
181 struct sfm_var_record *vars;
183 struct sfm_value_label_record *labels;
185 struct sfm_document_record *document;
186 struct sfm_mrset *mrsets;
188 struct sfm_extension_record *extensions[32];
189 struct ll_list var_attrs; /* Contains "struct sfm_extension_record"s. */
192 struct file_handle *fh; /* File handle. */
193 struct fh_lock *lock; /* Mutual exclusion for file handle. */
194 FILE *file; /* File stream. */
195 off_t pos; /* Position in file. */
196 bool error; /* I/O or corruption error? */
197 struct caseproto *proto; /* Format of output cases. */
200 enum integer_format integer_format; /* On-disk integer format. */
201 enum float_format float_format; /* On-disk floating point format. */
202 struct sfm_var *sfm_vars; /* Variables. */
203 size_t sfm_var_cnt; /* Number of variables. */
204 int case_cnt; /* Number of cases */
205 const char *encoding; /* String encoding. */
206 bool written_by_readstat; /* From https://github.com/WizardMac/ReadStat? */
209 enum any_compression compression;
210 double bias; /* Compression bias, usually 100.0. */
211 uint8_t opcodes[8]; /* Current block of opcodes. */
212 size_t opcode_idx; /* Next opcode to interpret, 8 if none left. */
213 bool corruption_warning; /* Warned about possible corruption? */
215 /* ZLIB decompression. */
216 long long int ztrailer_ofs; /* Offset of ZLIB trailer at end of file. */
217 #define ZIN_BUF_SIZE 4096
218 uint8_t *zin_buf; /* Inflation input buffer. */
219 #define ZOUT_BUF_SIZE 16384
220 uint8_t *zout_buf; /* Inflation output buffer. */
221 unsigned int zout_end; /* Number of bytes of data in zout_buf. */
222 unsigned int zout_pos; /* First unconsumed byte in zout_buf. */
223 z_stream zstream; /* ZLIB inflater. */
226 static const struct casereader_class sys_file_casereader_class;
228 static struct sfm_reader *
229 sfm_reader_cast (const struct any_reader *r_)
231 assert (r_->klass == &sys_file_reader_class);
232 return UP_CAST (r_, struct sfm_reader, any_reader);
235 static bool sfm_close (struct any_reader *);
237 static struct variable *lookup_var_by_index (struct sfm_reader *, off_t,
238 const struct sfm_var_record *,
241 static void sys_msg (struct sfm_reader *r, off_t, int class,
242 const char *format, va_list args)
243 PRINTF_FORMAT (4, 0);
244 static void sys_warn (struct sfm_reader *, off_t, const char *, ...)
245 PRINTF_FORMAT (3, 4);
246 static void sys_error (struct sfm_reader *, off_t, const char *, ...)
247 PRINTF_FORMAT (3, 4);
249 static bool read_bytes (struct sfm_reader *, void *, size_t)
251 static int try_read_bytes (struct sfm_reader *, void *, size_t)
253 static bool read_int (struct sfm_reader *, int *) WARN_UNUSED_RESULT;
254 static bool read_uint (struct sfm_reader *, unsigned int *) WARN_UNUSED_RESULT;
255 static bool read_int64 (struct sfm_reader *, long long int *)
257 static bool read_uint64 (struct sfm_reader *, unsigned long long int *)
259 static bool read_string (struct sfm_reader *, char *, size_t)
261 static bool skip_bytes (struct sfm_reader *, size_t) WARN_UNUSED_RESULT;
263 /* ZLIB compressed data handling. */
264 static bool read_zheader (struct sfm_reader *) WARN_UNUSED_RESULT;
265 static bool open_zstream (struct sfm_reader *) WARN_UNUSED_RESULT;
266 static bool close_zstream (struct sfm_reader *) WARN_UNUSED_RESULT;
267 static int read_bytes_zlib (struct sfm_reader *, void *, size_t)
269 static int read_compressed_bytes (struct sfm_reader *, void *, size_t)
271 static int try_read_compressed_bytes (struct sfm_reader *, void *, size_t)
273 static bool read_compressed_float (struct sfm_reader *, double *)
276 static char *fix_line_ends (const char *);
278 static int parse_int (const struct sfm_reader *, const void *data, size_t ofs);
279 static double parse_float (const struct sfm_reader *,
280 const void *data, size_t ofs);
282 static bool read_variable_record (struct sfm_reader *,
283 struct sfm_var_record *);
284 static bool read_value_label_record (struct sfm_reader *,
285 struct sfm_value_label_record *);
286 static bool read_document_record (struct sfm_reader *);
287 static bool read_extension_record (struct sfm_reader *, int subtype,
288 struct sfm_extension_record **);
289 static bool skip_extension_record (struct sfm_reader *, int subtype);
291 static struct text_record *open_text_record (
292 struct sfm_reader *, const struct sfm_extension_record *,
293 bool recode_to_utf8);
294 static void close_text_record (struct sfm_reader *,
295 struct text_record *);
296 static bool read_variable_to_value_pair (struct sfm_reader *,
298 struct text_record *,
299 struct variable **var, char **value);
300 static void text_warn (struct sfm_reader *r, struct text_record *text,
301 const char *format, ...) PRINTF_FORMAT (3, 4);
302 static char *text_get_token (struct text_record *,
303 struct substring delimiters, char *delimiter);
304 static bool text_match (struct text_record *, char c);
305 static bool text_read_variable_name (struct sfm_reader *, struct dictionary *,
306 struct text_record *,
307 struct substring delimiters,
309 static bool text_read_short_name (struct sfm_reader *, struct dictionary *,
310 struct text_record *,
311 struct substring delimiters,
313 static const char *text_parse_counted_string (struct sfm_reader *,
314 struct text_record *);
315 static size_t text_pos (const struct text_record *);
316 static const char *text_get_all (const struct text_record *);
318 /* Dictionary reader. */
326 static bool read_dictionary (struct sfm_reader *);
327 static bool read_record (struct sfm_reader *, int type,
328 size_t *allocated_vars, size_t *allocated_labels);
329 static bool read_header (struct sfm_reader *, struct any_read_info *,
330 struct sfm_header_record *);
331 static void parse_header (struct sfm_reader *,
332 const struct sfm_header_record *,
333 struct any_read_info *, struct dictionary *);
334 static bool parse_variable_records (struct sfm_reader *, struct dictionary *,
335 struct sfm_var_record *, size_t n);
336 static void parse_format_spec (struct sfm_reader *, off_t pos,
337 unsigned int format, enum which_format,
338 struct variable *, int *format_warning_cnt);
339 static void parse_document (struct dictionary *, struct sfm_document_record *);
340 static void parse_display_parameters (struct sfm_reader *,
341 const struct sfm_extension_record *,
342 struct dictionary *);
343 static bool parse_machine_integer_info (struct sfm_reader *,
344 const struct sfm_extension_record *,
345 struct any_read_info *);
346 static void parse_machine_float_info (struct sfm_reader *,
347 const struct sfm_extension_record *);
348 static void parse_extra_product_info (struct sfm_reader *,
349 const struct sfm_extension_record *,
350 struct any_read_info *);
351 static void parse_mrsets (struct sfm_reader *,
352 const struct sfm_extension_record *,
353 size_t *allocated_mrsets);
354 static void decode_mrsets (struct sfm_reader *, struct dictionary *);
355 static void parse_long_var_name_map (struct sfm_reader *,
356 const struct sfm_extension_record *,
357 struct dictionary *);
358 static bool parse_long_string_map (struct sfm_reader *,
359 const struct sfm_extension_record *,
360 struct dictionary *);
361 static bool parse_value_labels (struct sfm_reader *, struct dictionary *,
362 const struct sfm_var_record *,
364 const struct sfm_value_label_record *);
365 static void parse_data_file_attributes (struct sfm_reader *,
366 const struct sfm_extension_record *,
367 struct dictionary *);
368 static void parse_variable_attributes (struct sfm_reader *,
369 const struct sfm_extension_record *,
370 struct dictionary *);
371 static void assign_variable_roles (struct sfm_reader *, struct dictionary *);
372 static void parse_long_string_value_labels (struct sfm_reader *,
373 const struct sfm_extension_record *,
374 struct dictionary *);
375 static void parse_long_string_missing_values (
376 struct sfm_reader *, const struct sfm_extension_record *,
377 struct dictionary *);
379 /* Frees the strings inside INFO. */
381 any_read_info_destroy (struct any_read_info *info)
385 free (info->creation_date);
386 free (info->creation_time);
387 free (info->product);
388 free (info->product_ext);
392 /* Tries to open FH for reading as a system file. Returns an sfm_reader if
393 successful, otherwise NULL. */
394 static struct any_reader *
395 sfm_open (struct file_handle *fh)
397 size_t allocated_mrsets = 0;
398 struct sfm_reader *r;
400 /* Create and initialize reader. */
401 r = xzalloc (sizeof *r);
402 r->any_reader.klass = &sys_file_reader_class;
403 r->pool = pool_create ();
404 pool_register (r->pool, free, r);
406 r->opcode_idx = sizeof r->opcodes;
407 ll_init (&r->var_attrs);
409 /* TRANSLATORS: this fragment will be interpolated into
410 messages in fh_lock() that identify types of files. */
411 r->lock = fh_lock (fh, FH_REF_FILE, N_("system file"), FH_ACC_READ, false);
415 r->file = fn_open (fh, "rb");
418 msg (ME, _("Error opening `%s' for reading as a system file: %s."),
419 fh_get_file_name (r->fh), strerror (errno));
423 if (!read_dictionary (r))
426 if (r->extensions[EXT_MRSETS] != NULL)
427 parse_mrsets (r, r->extensions[EXT_MRSETS], &allocated_mrsets);
429 if (r->extensions[EXT_MRSETS2] != NULL)
430 parse_mrsets (r, r->extensions[EXT_MRSETS2], &allocated_mrsets);
432 return &r->any_reader;
436 sfm_close (&r->any_reader);
441 read_dictionary (struct sfm_reader *r)
443 size_t allocated_vars;
444 size_t allocated_labels;
446 if (!read_header (r, &r->info, &r->header))
450 allocated_labels = 0;
455 if (!read_int (r, &type))
459 if (!read_record (r, type, &allocated_vars, &allocated_labels))
463 if (!skip_bytes (r, 4))
466 if (r->compression == ANY_COMP_ZLIB && !read_zheader (r))
473 read_record (struct sfm_reader *r, int type,
474 size_t *allocated_vars, size_t *allocated_labels)
481 if (r->n_vars >= *allocated_vars)
482 r->vars = pool_2nrealloc (r->pool, r->vars, allocated_vars,
484 return read_variable_record (r, &r->vars[r->n_vars++]);
487 if (r->n_labels >= *allocated_labels)
488 r->labels = pool_2nrealloc (r->pool, r->labels, allocated_labels,
490 return read_value_label_record (r, &r->labels[r->n_labels++]);
493 /* A Type 4 record is always immediately after a type 3 record,
494 so the code for type 3 records reads the type 4 record too. */
495 sys_error (r, r->pos, _("Misplaced type 4 record."));
499 if (r->document != NULL)
501 sys_error (r, r->pos, _("Duplicate type 6 (document) record."));
504 return read_document_record (r);
507 if (!read_int (r, &subtype))
510 || subtype >= sizeof r->extensions / sizeof *r->extensions)
513 _("Unrecognized record type 7, subtype %d. For help, "
514 "please send this file to %s and mention that you were "
516 subtype, PACKAGE_BUGREPORT, PACKAGE_STRING);
517 return skip_extension_record (r, subtype);
519 else if (subtype == 18)
521 /* System files written by "Stata 14.1/-savespss- 1.77 by S.Radyakin"
522 put each variable attribute into a separate record with subtype
523 18. I'm surprised that SPSS puts up with this. */
524 struct sfm_extension_record *ext;
525 bool ok = read_extension_record (r, subtype, &ext);
527 ll_push_tail (&r->var_attrs, &ext->ll);
530 else if (r->extensions[subtype] != NULL)
533 _("Record type 7, subtype %d found here has the same "
534 "type as the record found near offset 0x%llx. For "
535 "help, please send this file to %s and mention that "
536 "you were using %s."),
537 subtype, (long long int) r->extensions[subtype]->pos,
538 PACKAGE_BUGREPORT, PACKAGE_STRING);
539 return skip_extension_record (r, subtype);
542 return read_extension_record (r, subtype, &r->extensions[subtype]);
545 sys_error (r, r->pos, _("Unrecognized record type %d."), type);
552 /* Returns the character encoding obtained from R, or a null pointer if R
553 doesn't have an indication of its character encoding. */
555 sfm_get_encoding (const struct sfm_reader *r)
557 /* The EXT_ENCODING record is the best way to determine dictionary
559 if (r->extensions[EXT_ENCODING])
560 return r->extensions[EXT_ENCODING]->data;
562 /* But EXT_INTEGER is better than nothing as a fallback. */
563 if (r->extensions[EXT_INTEGER])
565 int codepage = parse_int (r, r->extensions[EXT_INTEGER]->data, 7 * 4);
566 const char *encoding;
575 /* These ostensibly mean "7-bit ASCII" and "8-bit ASCII"[sic]
576 respectively. However, many files have character code 2 but data
577 which are clearly not ASCII. Therefore, ignore these values. */
584 encoding = sys_get_encoding_from_codepage (codepage);
585 if (encoding != NULL)
591 /* If the file magic number is EBCDIC then its character data is too. */
592 if (!strcmp (r->header.magic, EBCDIC_MAGIC))
598 struct get_strings_aux
609 add_string__ (struct get_strings_aux *aux,
610 const char *string, bool id, char *title)
612 if (aux->n >= aux->allocated)
614 aux->allocated = 2 * (aux->allocated + 1);
615 aux->titles = pool_realloc (aux->pool, aux->titles,
616 aux->allocated * sizeof *aux->titles);
617 aux->strings = pool_realloc (aux->pool, aux->strings,
618 aux->allocated * sizeof *aux->strings);
619 aux->ids = pool_realloc (aux->pool, aux->ids,
620 aux->allocated * sizeof *aux->ids);
623 aux->titles[aux->n] = title;
624 aux->strings[aux->n] = pool_strdup (aux->pool, string);
625 aux->ids[aux->n] = id;
629 static void PRINTF_FORMAT (3, 4)
630 add_string (struct get_strings_aux *aux,
631 const char *string, const char *title, ...)
635 va_start (args, title);
636 add_string__ (aux, string, false, pool_vasprintf (aux->pool, title, args));
640 static void PRINTF_FORMAT (3, 4)
641 add_id (struct get_strings_aux *aux, const char *id, const char *title, ...)
645 va_start (args, title);
646 add_string__ (aux, id, true, pool_vasprintf (aux->pool, title, args));
650 /* Retrieves significant string data from R in its raw format, to allow the
651 caller to try to detect the encoding in use.
653 Returns the number of strings retrieved N. Sets each of *TITLESP, *IDSP,
654 and *STRINGSP to an array of N elements allocated from POOL. For each I in
655 0...N-1, UTF-8 string *TITLESP[I] describes *STRINGSP[I], which is in
656 whatever encoding system file R uses. *IDS[I] is true if *STRINGSP[I] must
657 be a valid PSPP language identifier, false if *STRINGSP[I] is free-form
660 sfm_get_strings (const struct any_reader *r_, struct pool *pool,
661 char ***titlesp, bool **idsp, char ***stringsp)
663 struct sfm_reader *r = sfm_reader_cast (r_);
664 const struct sfm_mrset *mrset;
665 struct get_strings_aux aux;
677 for (i = 0; i < r->n_vars; i++)
678 if (r->vars[i].width != -1)
679 add_id (&aux, r->vars[i].name, _("Variable %zu"), ++var_idx);
682 for (i = 0; i < r->n_vars; i++)
683 if (r->vars[i].width != -1)
686 if (r->vars[i].label)
687 add_string (&aux, r->vars[i].label, _("Variable %zu Label"),
692 for (i = 0; i < r->n_labels; i++)
693 for (j = 0; j < r->labels[i].n_labels; j++)
694 add_string (&aux, r->labels[i].labels[j].label,
695 _("Value Label %zu"), k++);
697 add_string (&aux, r->header.creation_date, _("Creation Date"));
698 add_string (&aux, r->header.creation_time, _("Creation Time"));
699 add_string (&aux, r->header.eye_catcher, _("Product"));
700 add_string (&aux, r->header.file_label, _("File Label"));
702 if (r->extensions[EXT_PRODUCT_INFO])
703 add_string (&aux, r->extensions[EXT_PRODUCT_INFO]->data,
704 _("Extra Product Info"));
710 for (i = 0; i < r->document->n_lines; i++)
714 memcpy (line, r->document->documents + i * 80, 80);
717 add_string (&aux, line, _("Document Line %zu"), i + 1);
721 for (mrset = r->mrsets; mrset < &r->mrsets[r->n_mrsets]; mrset++)
723 size_t mrset_idx = mrset - r->mrsets + 1;
725 add_id (&aux, mrset->name, _("MRSET %zu"), mrset_idx);
727 add_string (&aux, mrset->label, _("MRSET %zu Label"), mrset_idx);
729 /* Skip the variables because they ought to be duplicates. */
732 add_string (&aux, mrset->counted, _("MRSET %zu Counted Value"),
736 /* data file attributes */
737 /* variable attributes */
739 /* long string value labels */
740 /* long string missing values */
742 *titlesp = aux.titles;
744 *stringsp = aux.strings;
748 /* Decodes the dictionary read from R, saving it into into *DICT. Character
749 strings in R are decoded using ENCODING, or an encoding obtained from R if
750 ENCODING is null, or the locale encoding if R specifies no encoding.
752 If INFOP is non-null, then it receives additional info about the system
753 file, which the caller must eventually free with any_read_info_destroy()
754 when it is no longer needed.
756 This function consumes R. The caller must use it again later, even to
757 destroy it with sfm_close(). */
758 static struct casereader *
759 sfm_decode (struct any_reader *r_, const char *encoding,
760 struct dictionary **dictp, struct any_read_info *infop)
762 struct sfm_reader *r = sfm_reader_cast (r_);
763 struct dictionary *dict;
766 if (encoding == NULL)
768 encoding = sfm_get_encoding (r);
769 if (encoding == NULL)
771 sys_warn (r, -1, _("This system file does not indicate its own "
772 "character encoding. Using default encoding "
773 "%s. For best results, specify an encoding "
774 "explicitly. Use SYSFILE INFO with "
775 "ENCODING=\"DETECT\" to analyze the possible "
778 encoding = locale_charset ();
782 dict = dict_create (encoding);
783 r->encoding = dict_get_encoding (dict);
785 /* These records don't use variables at all. */
786 if (r->document != NULL)
787 parse_document (dict, r->document);
789 if (r->extensions[EXT_INTEGER] != NULL
790 && !parse_machine_integer_info (r, r->extensions[EXT_INTEGER], &r->info))
793 if (r->extensions[EXT_FLOAT] != NULL)
794 parse_machine_float_info (r, r->extensions[EXT_FLOAT]);
796 if (r->extensions[EXT_PRODUCT_INFO] != NULL)
797 parse_extra_product_info (r, r->extensions[EXT_PRODUCT_INFO], &r->info);
799 if (r->extensions[EXT_FILE_ATTRS] != NULL)
800 parse_data_file_attributes (r, r->extensions[EXT_FILE_ATTRS], dict);
802 parse_header (r, &r->header, &r->info, dict);
804 /* Parse the variable records, the basis of almost everything else. */
805 if (!parse_variable_records (r, dict, r->vars, r->n_vars))
808 /* Parse value labels and the weight variable immediately after the variable
809 records. These records use indexes into var_recs[], so we must parse them
810 before those indexes become invalidated by very long string variables. */
811 for (i = 0; i < r->n_labels; i++)
812 if (!parse_value_labels (r, dict, r->vars, r->n_vars, &r->labels[i]))
814 if (r->header.weight_idx != 0)
816 struct variable *weight_var;
818 weight_var = lookup_var_by_index (r, 76, r->vars, r->n_vars,
819 r->header.weight_idx);
820 if (weight_var != NULL)
822 if (var_is_numeric (weight_var))
823 dict_set_weight (dict, weight_var);
825 sys_warn (r, -1, _("Ignoring string variable `%s' set "
826 "as weighting variable."),
827 var_get_name (weight_var));
831 if (r->extensions[EXT_DISPLAY] != NULL)
832 parse_display_parameters (r, r->extensions[EXT_DISPLAY], dict);
834 /* The following records use short names, so they need to be parsed before
835 parse_long_var_name_map() changes short names to long names. */
836 decode_mrsets (r, dict);
838 if (r->extensions[EXT_LONG_STRINGS] != NULL
839 && !parse_long_string_map (r, r->extensions[EXT_LONG_STRINGS], dict))
842 /* Now rename variables to their long names. */
843 parse_long_var_name_map (r, r->extensions[EXT_LONG_NAMES], dict);
845 /* The following records use long names, so they need to follow renaming. */
846 if (!ll_is_empty (&r->var_attrs))
848 struct sfm_extension_record *ext;
849 ll_for_each (ext, struct sfm_extension_record, ll, &r->var_attrs)
850 parse_variable_attributes (r, ext, dict);
852 /* Roles use the $@Role attribute. */
853 assign_variable_roles (r, dict);
855 if (r->extensions[EXT_LONG_LABELS] != NULL)
856 parse_long_string_value_labels (r, r->extensions[EXT_LONG_LABELS], dict);
857 if (r->extensions[EXT_LONG_MISSING] != NULL)
858 parse_long_string_missing_values (r, r->extensions[EXT_LONG_MISSING],
861 /* Warn if the actual amount of data per case differs from the
862 amount that the header claims. SPSS version 13 gets this
863 wrong when very long strings are involved, so don't warn in
865 if (r->header.nominal_case_size > 0
866 && r->header.nominal_case_size != r->n_vars
867 && r->info.version_major != 13)
868 sys_warn (r, -1, _("File header claims %d variable positions but "
869 "%zu were read from file."),
870 r->header.nominal_case_size, r->n_vars);
872 /* Create an index of dictionary variable widths for
873 sfm_read_case to use. We cannot use the `struct variable's
874 from the dictionary we created, because the caller owns the
875 dictionary and may destroy or modify its variables. */
876 sfm_dictionary_to_sfm_vars (dict, &r->sfm_vars, &r->sfm_var_cnt);
877 pool_register (r->pool, free, r->sfm_vars);
878 r->proto = caseproto_ref_pool (dict_get_proto (dict), r->pool);
884 memset (&r->info, 0, sizeof r->info);
887 return casereader_create_sequential
889 r->case_cnt == -1 ? CASENUMBER_MAX: r->case_cnt,
890 &sys_file_casereader_class, r);
899 /* Closes R, which should have been returned by sfm_open() but not already
900 closed with sfm_decode() or this function.
901 Returns true if an I/O error has occurred on READER, false
904 sfm_close (struct any_reader *r_)
906 struct sfm_reader *r = sfm_reader_cast (r_);
911 if (fn_close (r->fh, r->file) == EOF)
913 msg (ME, _("Error closing system file `%s': %s."),
914 fh_get_file_name (r->fh), strerror (errno));
920 any_read_info_destroy (&r->info);
925 pool_destroy (r->pool);
930 /* Destroys READER. */
932 sys_file_casereader_destroy (struct casereader *reader UNUSED, void *r_)
934 struct sfm_reader *r = r_;
935 sfm_close (&r->any_reader);
938 /* Detects whether FILE is an SPSS system file. Returns 1 if so, 0 if not, and
939 a negative errno value if there is an error reading FILE. */
941 sfm_detect (FILE *file)
945 if (fseek (file, 0, SEEK_SET) != 0)
947 if (fread (magic, 4, 1, file) != 1)
948 return ferror (file) ? -errno : 0;
951 return (!strcmp (ASCII_MAGIC, magic)
952 || !strcmp (ASCII_ZMAGIC, magic)
953 || !strcmp (EBCDIC_MAGIC, magic));
956 /* Reads the global header of the system file. Initializes *HEADER and *INFO,
957 except for the string fields in *INFO, which parse_header() will initialize
958 later once the file's encoding is known. */
960 read_header (struct sfm_reader *r, struct any_read_info *info,
961 struct sfm_header_record *header)
963 uint8_t raw_layout_code[4];
968 if (!read_string (r, header->magic, sizeof header->magic)
969 || !read_string (r, header->eye_catcher, sizeof header->eye_catcher))
971 r->written_by_readstat = strstr (header->eye_catcher,
972 "https://github.com/WizardMac/ReadStat");
974 if (!strcmp (ASCII_MAGIC, header->magic)
975 || !strcmp (EBCDIC_MAGIC, header->magic))
977 else if (!strcmp (ASCII_ZMAGIC, header->magic))
981 sys_error (r, 0, _("This is not an SPSS system file."));
985 /* Identify integer format. */
986 if (!read_bytes (r, raw_layout_code, sizeof raw_layout_code))
988 if ((!integer_identify (2, raw_layout_code, sizeof raw_layout_code,
990 && !integer_identify (3, raw_layout_code, sizeof raw_layout_code,
992 || (r->integer_format != INTEGER_MSB_FIRST
993 && r->integer_format != INTEGER_LSB_FIRST))
995 sys_error (r, 64, _("This is not an SPSS system file."));
999 if (!read_int (r, &header->nominal_case_size))
1002 if (header->nominal_case_size < 0
1003 || header->nominal_case_size > INT_MAX / 16)
1004 header->nominal_case_size = -1;
1006 if (!read_int (r, &compressed))
1010 if (compressed == 0)
1011 r->compression = ANY_COMP_NONE;
1012 else if (compressed == 1)
1013 r->compression = ANY_COMP_SIMPLE;
1014 else if (compressed != 0)
1016 sys_error (r, 0, "System file header has invalid compression "
1017 "value %d.", compressed);
1023 if (compressed == 2)
1024 r->compression = ANY_COMP_ZLIB;
1027 sys_error (r, 0, "ZLIB-compressed system file header has invalid "
1028 "compression value %d.", compressed);
1033 if (!read_int (r, &header->weight_idx))
1036 if (!read_int (r, &r->case_cnt))
1038 if ( r->case_cnt > INT_MAX / 2)
1041 /* Identify floating-point format and obtain compression bias. */
1042 if (!read_bytes (r, raw_bias, sizeof raw_bias))
1044 if (float_identify (100.0, raw_bias, sizeof raw_bias, &r->float_format) == 0)
1046 uint8_t zero_bias[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
1048 if (memcmp (raw_bias, zero_bias, 8))
1049 sys_warn (r, r->pos - 8,
1050 _("Compression bias is not the usual "
1051 "value of 100, or system file uses unrecognized "
1052 "floating-point format."));
1055 /* Some software is known to write all-zeros to this
1056 field. Such software also writes floating-point
1057 numbers in the format that we expect by default
1058 (it seems that all software most likely does, in
1059 reality), so don't warn in this case. */
1062 if (r->integer_format == INTEGER_MSB_FIRST)
1063 r->float_format = FLOAT_IEEE_DOUBLE_BE;
1065 r->float_format = FLOAT_IEEE_DOUBLE_LE;
1067 float_convert (r->float_format, raw_bias, FLOAT_NATIVE_DOUBLE, &r->bias);
1069 if (!read_string (r, header->creation_date, sizeof header->creation_date)
1070 || !read_string (r, header->creation_time, sizeof header->creation_time)
1071 || !read_string (r, header->file_label, sizeof header->file_label)
1072 || !skip_bytes (r, 3))
1075 info->integer_format = r->integer_format;
1076 info->float_format = r->float_format;
1077 info->compression = r->compression;
1078 info->case_cnt = r->case_cnt;
1083 /* Reads a variable (type 2) record from R into RECORD. */
1085 read_variable_record (struct sfm_reader *r, struct sfm_var_record *record)
1087 int has_variable_label;
1089 memset (record, 0, sizeof *record);
1091 record->pos = r->pos;
1092 if (!read_int (r, &record->width)
1093 || !read_int (r, &has_variable_label)
1094 || !read_int (r, &record->missing_value_code)
1095 || !read_int (r, &record->print_format)
1096 || !read_int (r, &record->write_format)
1097 || !read_string (r, record->name, sizeof record->name))
1100 if (has_variable_label == 1)
1102 enum { MAX_LABEL_LEN = 65536 };
1103 unsigned int len, read_len;
1105 if (!read_uint (r, &len))
1108 /* Read up to MAX_LABEL_LEN bytes of label. */
1109 read_len = MIN (MAX_LABEL_LEN, len);
1110 record->label = pool_malloc (r->pool, read_len + 1);
1111 if (!read_string (r, record->label, read_len + 1))
1114 /* Skip unread label bytes. */
1115 if (!skip_bytes (r, len - read_len))
1118 /* Skip label padding up to multiple of 4 bytes. */
1119 if (!skip_bytes (r, ROUND_UP (len, 4) - len))
1122 else if (has_variable_label != 0)
1124 sys_error (r, record->pos,
1125 _("Variable label indicator field is not 0 or 1."));
1129 /* Set missing values. */
1130 if (record->missing_value_code != 0)
1132 int code = record->missing_value_code;
1133 if (record->width == 0)
1135 if (code < -3 || code > 3 || code == -1)
1137 sys_error (r, record->pos,
1138 _("Numeric missing value indicator field is not "
1139 "-3, -2, 0, 1, 2, or 3."));
1145 if (code < 1 || code > 3)
1147 sys_error (r, record->pos,
1148 _("String missing value indicator field is not "
1154 if (!read_bytes (r, record->missing, 8 * abs (code)))
1161 /* Reads value labels from R into RECORD. */
1163 read_value_label_record (struct sfm_reader *r,
1164 struct sfm_value_label_record *record)
1169 /* Read type 3 record. */
1170 record->pos = r->pos;
1171 if (!read_uint (r, &record->n_labels))
1173 if (record->n_labels > UINT_MAX / sizeof *record->labels)
1175 sys_error (r, r->pos - 4, _("Invalid number of labels %u."),
1179 record->labels = pool_nmalloc (r->pool, record->n_labels,
1180 sizeof *record->labels);
1181 for (i = 0; i < record->n_labels; i++)
1183 struct sfm_value_label *label = &record->labels[i];
1184 unsigned char label_len;
1187 if (!read_bytes (r, label->value, sizeof label->value))
1190 /* Read label length. */
1191 if (!read_bytes (r, &label_len, sizeof label_len))
1193 padded_len = ROUND_UP (label_len + 1, 8);
1195 /* Read label, padding. */
1196 label->label = pool_malloc (r->pool, padded_len + 1);
1197 if (!read_bytes (r, label->label, padded_len - 1))
1199 label->label[label_len] = '\0';
1202 /* Read record type of type 4 record. */
1203 if (!read_int (r, &type))
1207 sys_error (r, r->pos - 4,
1208 _("Variable index record (type 4) does not immediately "
1209 "follow value label record (type 3) as it should."));
1213 /* Read number of variables associated with value label from type 4
1215 if (!read_uint (r, &record->n_vars))
1217 if (record->n_vars < 1 || record->n_vars > r->n_vars)
1219 sys_error (r, r->pos - 4,
1220 _("Number of variables associated with a value label (%u) "
1221 "is not between 1 and the number of variables (%zu)."),
1222 record->n_vars, r->n_vars);
1226 record->vars = pool_nmalloc (r->pool, record->n_vars, sizeof *record->vars);
1227 for (i = 0; i < record->n_vars; i++)
1228 if (!read_int (r, &record->vars[i]))
1234 /* Reads a document record from R. Returns true if successful, false on
1237 read_document_record (struct sfm_reader *r)
1240 if (!read_int (r, &n_lines))
1242 else if (n_lines == 0)
1244 else if (n_lines < 0 || n_lines >= INT_MAX / DOC_LINE_LENGTH)
1246 sys_error (r, r->pos,
1247 _("Number of document lines (%d) "
1248 "must be greater than 0 and less than %d."),
1249 n_lines, INT_MAX / DOC_LINE_LENGTH);
1253 struct sfm_document_record *record;
1254 record = pool_malloc (r->pool, sizeof *record);
1255 record->pos = r->pos;
1256 record->n_lines = n_lines;
1257 record->documents = pool_malloc (r->pool, DOC_LINE_LENGTH * n_lines);
1258 if (!read_bytes (r, record->documents, DOC_LINE_LENGTH * n_lines))
1261 r->document = record;
1266 read_extension_record_header (struct sfm_reader *r, int subtype,
1267 struct sfm_extension_record *record)
1269 record->subtype = subtype;
1270 record->pos = r->pos;
1271 if (!read_uint (r, &record->size) || !read_uint (r, &record->count))
1274 /* Check that SIZE * COUNT + 1 doesn't overflow. Adding 1
1275 allows an extra byte for a null terminator, used by some
1276 extension processing routines. */
1277 if (record->size != 0
1278 && xsum (1, xtimes (record->count, record->size)) >= UINT_MAX)
1280 sys_error (r, record->pos, "Record type 7 subtype %d too large.",
1288 /* Reads an extension record from R into RECORD. */
1290 read_extension_record (struct sfm_reader *r, int subtype,
1291 struct sfm_extension_record **recordp)
1293 struct extension_record_type
1300 static const struct extension_record_type types[] =
1302 /* Implemented record types. */
1303 { EXT_INTEGER, 4, 8 },
1304 { EXT_FLOAT, 8, 3 },
1305 { EXT_MRSETS, 1, 0 },
1306 { EXT_PRODUCT_INFO, 1, 0 },
1307 { EXT_DISPLAY, 4, 0 },
1308 { EXT_LONG_NAMES, 1, 0 },
1309 { EXT_LONG_STRINGS, 1, 0 },
1310 { EXT_NCASES, 8, 2 },
1311 { EXT_FILE_ATTRS, 1, 0 },
1312 { EXT_VAR_ATTRS, 1, 0 },
1313 { EXT_MRSETS2, 1, 0 },
1314 { EXT_ENCODING, 1, 0 },
1315 { EXT_LONG_LABELS, 1, 0 },
1316 { EXT_LONG_MISSING, 1, 0 },
1318 /* Ignored record types. */
1319 { EXT_VAR_SETS, 0, 0 },
1321 { EXT_DATA_ENTRY, 0, 0 },
1322 { EXT_DATAVIEW, 0, 0 },
1325 const struct extension_record_type *type;
1326 struct sfm_extension_record *record;
1330 record = pool_malloc (r->pool, sizeof *record);
1331 if (!read_extension_record_header (r, subtype, record))
1333 n_bytes = record->count * record->size;
1335 for (type = types; type < &types[sizeof types / sizeof *types]; type++)
1336 if (subtype == type->subtype)
1338 if (type->size > 0 && record->size != type->size)
1339 sys_warn (r, record->pos,
1340 _("Record type 7, subtype %d has bad size %u "
1341 "(expected %d)."), subtype, record->size, type->size);
1342 else if (type->count > 0 && record->count != type->count)
1343 sys_warn (r, record->pos,
1344 _("Record type 7, subtype %d has bad count %u "
1345 "(expected %d)."), subtype, record->count, type->count);
1346 else if (type->count == 0 && type->size == 0)
1348 /* Ignore this record. */
1352 char *data = pool_malloc (r->pool, n_bytes + 1);
1353 data[n_bytes] = '\0';
1355 record->data = data;
1356 if (!read_bytes (r, record->data, n_bytes))
1365 sys_warn (r, record->pos,
1366 _("Unrecognized record type 7, subtype %d. For help, please "
1367 "send this file to %s and mention that you were using %s."),
1368 subtype, PACKAGE_BUGREPORT, PACKAGE_STRING);
1371 return skip_bytes (r, n_bytes);
1375 skip_extension_record (struct sfm_reader *r, int subtype)
1377 struct sfm_extension_record record;
1379 return (read_extension_record_header (r, subtype, &record)
1380 && skip_bytes (r, record.count * record.size));
1384 parse_header (struct sfm_reader *r, const struct sfm_header_record *header,
1385 struct any_read_info *info, struct dictionary *dict)
1387 const char *dict_encoding = dict_get_encoding (dict);
1388 struct substring product;
1389 struct substring label;
1392 /* Convert file label to UTF-8 and put it into DICT. */
1393 label = recode_substring_pool ("UTF-8", dict_encoding,
1394 ss_cstr (header->file_label), r->pool);
1395 ss_trim (&label, ss_cstr (" "));
1396 label.string[label.length] = '\0';
1397 fixed_label = fix_line_ends (label.string);
1398 dict_set_label (dict, fixed_label);
1401 /* Put creation date and time in UTF-8 into INFO. */
1402 info->creation_date = recode_string ("UTF-8", dict_encoding,
1403 header->creation_date, -1);
1404 info->creation_time = recode_string ("UTF-8", dict_encoding,
1405 header->creation_time, -1);
1407 /* Put product name into INFO, dropping eye-catcher string if present. */
1408 product = recode_substring_pool ("UTF-8", dict_encoding,
1409 ss_cstr (header->eye_catcher), r->pool);
1410 ss_match_string (&product, ss_cstr ("@(#) SPSS DATA FILE"));
1411 ss_trim (&product, ss_cstr (" "));
1412 info->product = ss_xstrdup (product);
1415 /* Reads a variable (type 2) record from R and adds the
1416 corresponding variable to DICT.
1417 Also skips past additional variable records for long string
1420 parse_variable_records (struct sfm_reader *r, struct dictionary *dict,
1421 struct sfm_var_record *var_recs, size_t n_var_recs)
1423 const char *dict_encoding = dict_get_encoding (dict);
1424 struct sfm_var_record *rec;
1427 for (rec = var_recs; rec < &var_recs[n_var_recs]; )
1429 struct variable *var;
1434 name = recode_string_pool ("UTF-8", dict_encoding,
1435 rec->name, -1, r->pool);
1436 name[strcspn (name, " ")] = '\0';
1438 if (!dict_id_is_valid (dict, name, false)
1439 || name[0] == '$' || name[0] == '#')
1441 sys_error (r, rec->pos, _("Invalid variable name `%s'."), name);
1445 if (rec->width < 0 || rec->width > 255)
1447 sys_error (r, rec->pos,
1448 _("Bad width %d for variable %s."), rec->width, name);
1452 var = rec->var = dict_create_var (dict, name, rec->width);
1455 char *new_name = dict_make_unique_var_name (dict, NULL, NULL);
1456 sys_warn (r, rec->pos, _("Renaming variable with duplicate name "
1459 var = rec->var = dict_create_var_assert (dict, new_name, rec->width);
1463 /* Set the short name the same as the long name. */
1464 var_set_short_name (var, 0, name);
1466 /* Get variable label, if any. */
1471 utf8_label = recode_string_pool ("UTF-8", dict_encoding,
1472 rec->label, -1, r->pool);
1473 var_set_label (var, utf8_label);
1476 /* Set missing values. */
1477 if (rec->missing_value_code != 0)
1479 int width = var_get_width (var);
1480 struct missing_values mv;
1482 mv_init_pool (r->pool, &mv, width);
1483 if (var_is_numeric (var))
1485 bool has_range = rec->missing_value_code < 0;
1486 int n_discrete = (has_range
1487 ? rec->missing_value_code == -3
1488 : rec->missing_value_code);
1493 double low = parse_float (r, rec->missing, 0);
1494 double high = parse_float (r, rec->missing, 8);
1496 /* Deal with SPSS 21 change in representation. */
1500 mv_add_range (&mv, low, high);
1504 for (i = 0; i < n_discrete; i++)
1506 mv_add_num (&mv, parse_float (r, rec->missing, ofs));
1511 for (i = 0; i < rec->missing_value_code; i++)
1512 mv_add_str (&mv, rec->missing + 8 * i, MIN (width, 8));
1513 var_set_missing_values (var, &mv);
1517 parse_format_spec (r, rec->pos + 12, rec->print_format,
1518 PRINT_FORMAT, var, &n_warnings);
1519 parse_format_spec (r, rec->pos + 16, rec->write_format,
1520 WRITE_FORMAT, var, &n_warnings);
1522 /* Account for values.
1523 Skip long string continuation records, if any. */
1524 n_values = rec->width == 0 ? 1 : DIV_RND_UP (rec->width, 8);
1525 for (i = 1; i < n_values; i++)
1526 if (i + (rec - var_recs) >= n_var_recs || rec[i].width != -1)
1528 sys_error (r, rec->pos, _("Missing string continuation record."));
1537 /* Translates the format spec from sysfile format to internal
1540 parse_format_spec (struct sfm_reader *r, off_t pos, unsigned int format,
1541 enum which_format which, struct variable *v,
1544 const int max_warnings = 8;
1545 uint8_t raw_type = format >> 16;
1546 uint8_t w = format >> 8;
1555 ok = (fmt_from_io (raw_type, &f.type)
1556 && fmt_check_output (&f)
1557 && fmt_check_width_compat (&f, var_get_width (v)));
1562 if (which == PRINT_FORMAT)
1563 var_set_print_format (v, &f);
1565 var_set_write_format (v, &f);
1567 else if (format == 0)
1569 /* Actually observed in the wild. No point in warning about it. */
1571 else if (++*n_warnings <= max_warnings)
1573 if (which == PRINT_FORMAT)
1574 sys_warn (r, pos, _("Variable %s with width %d has invalid print "
1576 var_get_name (v), var_get_width (v), format);
1578 sys_warn (r, pos, _("Variable %s with width %d has invalid write "
1580 var_get_name (v), var_get_width (v), format);
1582 if (*n_warnings == max_warnings)
1583 sys_warn (r, -1, _("Suppressing further invalid format warnings."));
1588 parse_document (struct dictionary *dict, struct sfm_document_record *record)
1592 for (p = record->documents;
1593 p < record->documents + DOC_LINE_LENGTH * record->n_lines;
1594 p += DOC_LINE_LENGTH)
1596 struct substring line;
1598 line = recode_substring_pool ("UTF-8", dict_get_encoding (dict),
1599 ss_buffer (p, DOC_LINE_LENGTH), NULL);
1600 ss_rtrim (&line, ss_cstr (" "));
1601 line.string[line.length] = '\0';
1603 dict_add_document_line (dict, line.string, false);
1609 /* Parses record type 7, subtype 3. */
1611 parse_machine_integer_info (struct sfm_reader *r,
1612 const struct sfm_extension_record *record,
1613 struct any_read_info *info)
1615 int float_representation, expected_float_format;
1616 int integer_representation, expected_integer_format;
1618 /* Save version info. */
1619 info->version_major = parse_int (r, record->data, 0);
1620 info->version_minor = parse_int (r, record->data, 4);
1621 info->version_revision = parse_int (r, record->data, 8);
1623 /* Check floating point format. */
1624 float_representation = parse_int (r, record->data, 16);
1625 if (r->float_format == FLOAT_IEEE_DOUBLE_BE
1626 || r->float_format == FLOAT_IEEE_DOUBLE_LE)
1627 expected_float_format = 1;
1628 else if (r->float_format == FLOAT_Z_LONG)
1629 expected_float_format = 2;
1630 else if (r->float_format == FLOAT_VAX_G || r->float_format == FLOAT_VAX_D)
1631 expected_float_format = 3;
1634 if (float_representation != expected_float_format)
1636 sys_error (r, record->pos,
1637 _("Floating-point representation indicated by "
1638 "system file (%d) differs from expected (%d)."),
1639 float_representation, expected_float_format);
1643 /* Check integer format. */
1644 integer_representation = parse_int (r, record->data, 24);
1645 if (r->integer_format == INTEGER_MSB_FIRST)
1646 expected_integer_format = 1;
1647 else if (r->integer_format == INTEGER_LSB_FIRST)
1648 expected_integer_format = 2;
1651 if (integer_representation != expected_integer_format)
1652 sys_warn (r, record->pos,
1653 _("Integer format indicated by system file (%d) "
1654 "differs from expected (%d)."),
1655 integer_representation, expected_integer_format);
1660 /* Parses record type 7, subtype 4. */
1662 parse_machine_float_info (struct sfm_reader *r,
1663 const struct sfm_extension_record *record)
1665 double sysmis = parse_float (r, record->data, 0);
1666 double highest = parse_float (r, record->data, 8);
1667 double lowest = parse_float (r, record->data, 16);
1669 if (sysmis != SYSMIS)
1670 sys_warn (r, record->pos,
1671 _("File specifies unexpected value %g (%a) as %s, "
1672 "instead of %g (%a)."),
1673 sysmis, sysmis, "SYSMIS", SYSMIS, SYSMIS);
1675 if (highest != HIGHEST)
1676 sys_warn (r, record->pos,
1677 _("File specifies unexpected value %g (%a) as %s, "
1678 "instead of %g (%a)."),
1679 highest, highest, "HIGHEST", HIGHEST, HIGHEST);
1681 /* SPSS before version 21 used a unique value just bigger than SYSMIS as
1682 LOWEST. SPSS 21 uses SYSMIS for LOWEST, which is OK because LOWEST only
1683 appears in a context (missing values) where SYSMIS cannot. */
1684 if (lowest != LOWEST && lowest != SYSMIS)
1685 sys_warn (r, record->pos,
1686 _("File specifies unexpected value %g (%a) as %s, "
1687 "instead of %g (%a) or %g (%a)."),
1688 lowest, lowest, "LOWEST", LOWEST, LOWEST, SYSMIS, SYSMIS);
1691 /* Parses record type 7, subtype 10. */
1693 parse_extra_product_info (struct sfm_reader *r,
1694 const struct sfm_extension_record *record,
1695 struct any_read_info *info)
1697 struct text_record *text;
1699 text = open_text_record (r, record, true);
1700 info->product_ext = fix_line_ends (text_get_all (text));
1701 close_text_record (r, text);
1704 /* Parses record type 7, subtype 7 or 19. */
1706 parse_mrsets (struct sfm_reader *r, const struct sfm_extension_record *record,
1707 size_t *allocated_mrsets)
1709 struct text_record *text;
1711 text = open_text_record (r, record, false);
1714 struct sfm_mrset *mrset;
1715 size_t allocated_vars;
1718 /* Skip extra line feeds if present. */
1719 while (text_match (text, '\n'))
1722 if (r->n_mrsets >= *allocated_mrsets)
1723 r->mrsets = pool_2nrealloc (r->pool, r->mrsets, allocated_mrsets,
1725 mrset = &r->mrsets[r->n_mrsets];
1726 memset(mrset, 0, sizeof *mrset);
1728 mrset->name = text_get_token (text, ss_cstr ("="), NULL);
1729 if (mrset->name == NULL)
1732 if (text_match (text, 'C'))
1734 mrset->type = MRSET_MC;
1735 if (!text_match (text, ' '))
1737 sys_warn (r, record->pos,
1738 _("Missing space following `%c' at offset %zu "
1739 "in MRSETS record."), 'C', text_pos (text));
1743 else if (text_match (text, 'D'))
1745 mrset->type = MRSET_MD;
1746 mrset->cat_source = MRSET_VARLABELS;
1748 else if (text_match (text, 'E'))
1752 mrset->type = MRSET_MD;
1753 mrset->cat_source = MRSET_COUNTEDVALUES;
1754 if (!text_match (text, ' '))
1756 sys_warn (r, record->pos,
1757 _("Missing space following `%c' at offset %zu "
1758 "in MRSETS record."), 'E', text_pos (text));
1762 number = text_get_token (text, ss_cstr (" "), NULL);
1763 if (!strcmp (number, "11"))
1764 mrset->label_from_var_label = true;
1765 else if (strcmp (number, "1"))
1766 sys_warn (r, record->pos,
1767 _("Unexpected label source value following `E' "
1768 "at offset %zu in MRSETS record."),
1773 sys_warn (r, record->pos,
1774 _("Missing `C', `D', or `E' at offset %zu "
1775 "in MRSETS record."),
1780 if (mrset->type == MRSET_MD)
1782 mrset->counted = text_parse_counted_string (r, text);
1783 if (mrset->counted == NULL)
1787 mrset->label = text_parse_counted_string (r, text);
1788 if (mrset->label == NULL)
1796 var = text_get_token (text, ss_cstr (" \n"), &delimiter);
1799 if (delimiter != '\n')
1800 sys_warn (r, record->pos,
1801 _("Missing new-line parsing variable names "
1802 "at offset %zu in MRSETS record."),
1807 if (mrset->n_vars >= allocated_vars)
1808 mrset->vars = pool_2nrealloc (r->pool, mrset->vars,
1810 sizeof *mrset->vars);
1811 mrset->vars[mrset->n_vars++] = var;
1813 while (delimiter != '\n');
1817 close_text_record (r, text);
1821 decode_mrsets (struct sfm_reader *r, struct dictionary *dict)
1823 const struct sfm_mrset *s;
1825 for (s = r->mrsets; s < &r->mrsets[r->n_mrsets]; s++)
1827 struct stringi_set var_names;
1828 struct mrset *mrset;
1833 name = recode_string ("UTF-8", r->encoding, s->name, -1);
1836 sys_warn (r, -1, _("Multiple response set name `%s' does not begin "
1843 mrset = xzalloc (sizeof *mrset);
1845 mrset->type = s->type;
1846 mrset->cat_source = s->cat_source;
1847 mrset->label_from_var_label = s->label_from_var_label;
1848 if (s->label[0] != '\0')
1849 mrset->label = recode_string ("UTF-8", r->encoding, s->label, -1);
1851 stringi_set_init (&var_names);
1852 mrset->vars = xmalloc (s->n_vars * sizeof *mrset->vars);
1854 for (i = 0; i < s->n_vars; i++)
1856 struct variable *var;
1859 var_name = recode_string ("UTF-8", r->encoding, s->vars[i], -1);
1861 var = dict_lookup_var (dict, var_name);
1867 if (!stringi_set_insert (&var_names, var_name))
1870 _("MRSET %s contains duplicate variable name %s."),
1871 mrset->name, var_name);
1877 if (mrset->label == NULL && mrset->label_from_var_label
1878 && var_has_label (var))
1879 mrset->label = xstrdup (var_get_label (var));
1882 && var_get_type (var) != var_get_type (mrset->vars[0]))
1885 _("MRSET %s contains both string and "
1886 "numeric variables."), mrset->name);
1889 width = MIN (width, var_get_width (var));
1891 mrset->vars[mrset->n_vars++] = var;
1894 if (mrset->n_vars < 2)
1896 if (mrset->n_vars == 0)
1897 sys_warn (r, -1, _("MRSET %s has no variables."), mrset->name);
1899 sys_warn (r, -1, _("MRSET %s has only one variable."),
1901 mrset_destroy (mrset);
1902 stringi_set_destroy (&var_names);
1906 if (mrset->type == MRSET_MD)
1908 mrset->width = width;
1909 value_init (&mrset->counted, width);
1911 mrset->counted.f = c_strtod (s->counted, NULL);
1913 value_copy_str_rpad (&mrset->counted, width,
1914 (const uint8_t *) s->counted, ' ');
1917 dict_add_mrset (dict, mrset);
1918 stringi_set_destroy (&var_names);
1922 /* Read record type 7, subtype 11, which specifies how variables
1923 should be displayed in GUI environments. */
1925 parse_display_parameters (struct sfm_reader *r,
1926 const struct sfm_extension_record *record,
1927 struct dictionary *dict)
1929 bool includes_width;
1930 bool warned = false;
1935 n_vars = dict_get_var_cnt (dict);
1936 if (record->count == 3 * n_vars)
1937 includes_width = true;
1938 else if (record->count == 2 * n_vars)
1939 includes_width = false;
1942 sys_warn (r, record->pos,
1943 _("Extension 11 has bad count %u (for %zu variables)."),
1944 record->count, n_vars);
1949 for (i = 0; i < n_vars; ++i)
1951 struct variable *v = dict_get_var (dict, i);
1952 int measure, width, align;
1954 measure = parse_int (r, record->data, ofs);
1959 width = parse_int (r, record->data, ofs);
1965 align = parse_int (r, record->data, ofs);
1968 /* SPSS sometimes seems to set variables' measure to zero. */
1972 if (measure < 1 || measure > 3 || align < 0 || align > 2)
1975 sys_warn (r, record->pos,
1976 _("Invalid variable display parameters for variable "
1977 "%zu (%s). Default parameters substituted."),
1978 i, var_get_name (v));
1983 var_set_measure (v, (measure == 1 ? MEASURE_NOMINAL
1984 : measure == 2 ? MEASURE_ORDINAL
1986 var_set_alignment (v, (align == 0 ? ALIGN_LEFT
1987 : align == 1 ? ALIGN_RIGHT
1990 /* Older versions (SPSS 9.0) sometimes set the display
1991 width to zero. This causes confusion in the GUI, so
1992 only set the width if it is nonzero. */
1994 var_set_display_width (v, width);
1999 rename_var_and_save_short_names (struct dictionary *dict, struct variable *var,
2000 const char *new_name)
2002 size_t n_short_names;
2006 /* Renaming a variable may clear its short names, but we
2007 want to retain them, so we save them and re-set them
2009 n_short_names = var_get_short_name_cnt (var);
2010 short_names = xnmalloc (n_short_names, sizeof *short_names);
2011 for (i = 0; i < n_short_names; i++)
2013 const char *s = var_get_short_name (var, i);
2014 short_names[i] = s != NULL ? xstrdup (s) : NULL;
2017 /* Set long name. */
2018 dict_rename_var (dict, var, new_name);
2020 /* Restore short names. */
2021 for (i = 0; i < n_short_names; i++)
2023 var_set_short_name (var, i, short_names[i]);
2024 free (short_names[i]);
2029 /* Parses record type 7, subtype 13, which gives the long name that corresponds
2030 to each short name. Modifies variable names in DICT accordingly. */
2032 parse_long_var_name_map (struct sfm_reader *r,
2033 const struct sfm_extension_record *record,
2034 struct dictionary *dict)
2036 struct text_record *text;
2037 struct variable *var;
2042 /* There are no long variable names. Use the short variable names,
2043 converted to lowercase, as the long variable names. */
2046 for (i = 0; i < dict_get_var_cnt (dict); i++)
2048 struct variable *var = dict_get_var (dict, i);
2051 new_name = utf8_to_lower (var_get_name (var));
2052 rename_var_and_save_short_names (dict, var, new_name);
2059 /* Rename each of the variables, one by one. (In a correctly constructed
2060 system file, this cannot create any intermediate duplicate variable names,
2061 because all of the new variable names are longer than any of the old
2062 variable names and thus there cannot be any overlaps.) */
2063 text = open_text_record (r, record, true);
2064 while (read_variable_to_value_pair (r, dict, text, &var, &long_name))
2066 /* Validate long name. */
2067 if (!dict_id_is_valid (dict, long_name, false)
2068 || long_name[0] == '$' || long_name[0] == '#')
2070 sys_warn (r, record->pos,
2071 _("Long variable mapping from %s to invalid "
2072 "variable name `%s'."),
2073 var_get_name (var), long_name);
2077 /* Identify any duplicates. */
2078 if (utf8_strcasecmp (var_get_short_name (var, 0), long_name)
2079 && dict_lookup_var (dict, long_name) != NULL)
2081 sys_warn (r, record->pos,
2082 _("Duplicate long variable name `%s'."), long_name);
2086 rename_var_and_save_short_names (dict, var, long_name);
2088 close_text_record (r, text);
2091 /* Reads record type 7, subtype 14, which gives the real length
2092 of each very long string. Rearranges DICT accordingly. */
2094 parse_long_string_map (struct sfm_reader *r,
2095 const struct sfm_extension_record *record,
2096 struct dictionary *dict)
2098 struct text_record *text;
2099 struct variable *var;
2102 text = open_text_record (r, record, true);
2103 while (read_variable_to_value_pair (r, dict, text, &var, &length_s))
2105 size_t idx = var_get_dict_index (var);
2111 length = strtol (length_s, NULL, 10);
2112 if (length < 1 || length > MAX_STRING)
2114 sys_warn (r, record->pos,
2115 _("%s listed as string of invalid length %s "
2116 "in very long string record."),
2117 var_get_name (var), length_s);
2121 /* Check segments. */
2122 segment_cnt = sfm_width_to_segments (length);
2123 if (segment_cnt == 1)
2125 sys_warn (r, record->pos,
2126 _("%s listed in very long string record with width %s, "
2127 "which requires only one segment."),
2128 var_get_name (var), length_s);
2131 if (idx + segment_cnt > dict_get_var_cnt (dict))
2133 sys_error (r, record->pos,
2134 _("Very long string %s overflows dictionary."),
2135 var_get_name (var));
2139 /* Get the short names from the segments and check their
2141 for (i = 0; i < segment_cnt; i++)
2143 struct variable *seg = dict_get_var (dict, idx + i);
2144 int alloc_width = sfm_segment_alloc_width (length, i);
2145 int width = var_get_width (seg);
2148 var_set_short_name (var, i, var_get_short_name (seg, 0));
2149 if (ROUND_UP (width, 8) != ROUND_UP (alloc_width, 8))
2151 sys_error (r, record->pos,
2152 _("Very long string with width %ld has segment %d "
2153 "of width %d (expected %d)."),
2154 length, i, width, alloc_width);
2158 dict_delete_consecutive_vars (dict, idx + 1, segment_cnt - 1);
2159 var_set_width (var, length);
2161 close_text_record (r, text);
2162 dict_compact_values (dict);
2168 parse_value_labels (struct sfm_reader *r, struct dictionary *dict,
2169 const struct sfm_var_record *var_recs, size_t n_var_recs,
2170 const struct sfm_value_label_record *record)
2172 struct variable **vars;
2176 utf8_labels = pool_nmalloc (r->pool, record->n_labels, sizeof *utf8_labels);
2177 for (i = 0; i < record->n_labels; i++)
2178 utf8_labels[i] = recode_string_pool ("UTF-8", dict_get_encoding (dict),
2179 record->labels[i].label, -1,
2182 vars = pool_nmalloc (r->pool, record->n_vars, sizeof *vars);
2183 for (i = 0; i < record->n_vars; i++)
2185 vars[i] = lookup_var_by_index (r, record->pos,
2186 var_recs, n_var_recs, record->vars[i]);
2187 if (vars[i] == NULL)
2191 for (i = 1; i < record->n_vars; i++)
2192 if (var_get_type (vars[i]) != var_get_type (vars[0]))
2194 sys_error (r, record->pos,
2195 _("Variables associated with value label are not all of "
2196 "identical type. Variable %s is %s, but variable "
2198 var_get_name (vars[0]),
2199 var_is_numeric (vars[0]) ? _("numeric") : _("string"),
2200 var_get_name (vars[i]),
2201 var_is_numeric (vars[i]) ? _("numeric") : _("string"));
2205 for (i = 0; i < record->n_vars; i++)
2207 struct variable *var = vars[i];
2211 width = var_get_width (var);
2214 sys_error (r, record->pos,
2215 _("Value labels may not be added to long string "
2216 "variables (e.g. %s) using records types 3 and 4."),
2217 var_get_name (var));
2221 for (j = 0; j < record->n_labels; j++)
2223 struct sfm_value_label *label = &record->labels[j];
2226 value_init (&value, width);
2228 value.f = parse_float (r, label->value, 0);
2230 memcpy (value_str_rw (&value, width), label->value, width);
2232 if (!var_add_value_label (var, &value, utf8_labels[j]))
2234 if (r->written_by_readstat)
2236 /* Ignore the problem. ReadStat is buggy and emits value
2237 labels whose values are longer than string variables'
2238 widths, that are identical in the actual width of the
2239 variable, e.g. both values "ABC123" and "ABC456" for a
2240 string variable with width 3. */
2242 else if (var_is_numeric (var))
2243 sys_warn (r, record->pos,
2244 _("Duplicate value label for %g on %s."),
2245 value.f, var_get_name (var));
2247 sys_warn (r, record->pos,
2248 _("Duplicate value label for `%.*s' on %s."),
2249 width, value_str (&value, width),
2250 var_get_name (var));
2253 value_destroy (&value, width);
2257 pool_free (r->pool, vars);
2258 for (i = 0; i < record->n_labels; i++)
2259 pool_free (r->pool, utf8_labels[i]);
2260 pool_free (r->pool, utf8_labels);
2265 static struct variable *
2266 lookup_var_by_index (struct sfm_reader *r, off_t offset,
2267 const struct sfm_var_record *var_recs, size_t n_var_recs,
2270 const struct sfm_var_record *rec;
2272 if (idx < 1 || idx > n_var_recs)
2274 sys_error (r, offset,
2275 _("Variable index %d not in valid range 1...%zu."),
2280 rec = &var_recs[idx - 1];
2281 if (rec->var == NULL)
2283 sys_error (r, offset,
2284 _("Variable index %d refers to long string continuation."),
2292 /* Parses a set of custom attributes from TEXT into ATTRS.
2293 ATTRS may be a null pointer, in which case the attributes are
2294 read but discarded. */
2296 parse_attributes (struct sfm_reader *r, struct text_record *text,
2297 struct attrset *attrs)
2301 struct attribute *attr;
2305 /* Parse the key. */
2306 key = text_get_token (text, ss_cstr ("("), NULL);
2310 attr = attribute_create (key);
2311 for (index = 1; ; index++)
2313 /* Parse the value. */
2317 value = text_get_token (text, ss_cstr ("\n"), NULL);
2320 text_warn (r, text, _("Error parsing attribute value %s[%d]."),
2325 length = strlen (value);
2326 if (length >= 2 && value[0] == '\'' && value[length - 1] == '\'')
2328 value[length - 1] = '\0';
2329 attribute_add_value (attr, value + 1);
2334 _("Attribute value %s[%d] is not quoted: %s."),
2336 attribute_add_value (attr, value);
2339 /* Was this the last value for this attribute? */
2340 if (text_match (text, ')'))
2344 attrset_add (attrs, attr);
2346 attribute_destroy (attr);
2348 while (!text_match (text, '/'));
2351 /* Reads record type 7, subtype 17, which lists custom
2352 attributes on the data file. */
2354 parse_data_file_attributes (struct sfm_reader *r,
2355 const struct sfm_extension_record *record,
2356 struct dictionary *dict)
2358 struct text_record *text = open_text_record (r, record, true);
2359 parse_attributes (r, text, dict_get_attributes (dict));
2360 close_text_record (r, text);
2363 /* Parses record type 7, subtype 18, which lists custom
2364 attributes on individual variables. */
2366 parse_variable_attributes (struct sfm_reader *r,
2367 const struct sfm_extension_record *record,
2368 struct dictionary *dict)
2370 struct text_record *text;
2371 struct variable *var;
2373 text = open_text_record (r, record, true);
2374 while (text_read_variable_name (r, dict, text, ss_cstr (":"), &var))
2375 parse_attributes (r, text, var != NULL ? var_get_attributes (var) : NULL);
2376 close_text_record (r, text);
2380 assign_variable_roles (struct sfm_reader *r, struct dictionary *dict)
2382 size_t n_warnings = 0;
2385 for (i = 0; i < dict_get_var_cnt (dict); i++)
2387 struct variable *var = dict_get_var (dict, i);
2388 struct attrset *attrs = var_get_attributes (var);
2389 const struct attribute *attr = attrset_lookup (attrs, "$@Role");
2392 int value = atoi (attribute_get_value (attr, 0));
2414 role = ROLE_PARTITION;
2423 if (n_warnings++ == 0)
2424 sys_warn (r, -1, _("Invalid role for variable %s."),
2425 var_get_name (var));
2428 var_set_role (var, role);
2433 sys_warn (r, -1, _("%zu other variables had invalid roles."),
2438 check_overflow (struct sfm_reader *r,
2439 const struct sfm_extension_record *record,
2440 size_t ofs, size_t length)
2442 size_t end = record->size * record->count;
2443 if (length >= end || ofs + length > end)
2445 sys_warn (r, record->pos + end,
2446 _("Extension record subtype %d ends unexpectedly."),
2454 parse_long_string_value_labels (struct sfm_reader *r,
2455 const struct sfm_extension_record *record,
2456 struct dictionary *dict)
2458 const char *dict_encoding = dict_get_encoding (dict);
2459 size_t end = record->size * record->count;
2466 struct variable *var;
2471 /* Parse variable name length. */
2472 if (!check_overflow (r, record, ofs, 4))
2474 var_name_len = parse_int (r, record->data, ofs);
2477 /* Parse variable name, width, and number of labels. */
2478 if (!check_overflow (r, record, ofs, var_name_len)
2479 || !check_overflow (r, record, ofs, var_name_len + 8))
2481 var_name = recode_string_pool ("UTF-8", dict_encoding,
2482 (const char *) record->data + ofs,
2483 var_name_len, r->pool);
2484 width = parse_int (r, record->data, ofs + var_name_len);
2485 n_labels = parse_int (r, record->data, ofs + var_name_len + 4);
2486 ofs += var_name_len + 8;
2488 /* Look up 'var' and validate. */
2489 var = dict_lookup_var (dict, var_name);
2491 sys_warn (r, record->pos + ofs,
2492 _("Ignoring long string value label record for "
2493 "unknown variable %s."), var_name);
2494 else if (var_is_numeric (var))
2496 sys_warn (r, record->pos + ofs,
2497 _("Ignoring long string value label record for "
2498 "numeric variable %s."), var_name);
2501 else if (width != var_get_width (var))
2503 sys_warn (r, record->pos + ofs,
2504 _("Ignoring long string value label record for variable "
2505 "%s because the record's width (%d) does not match the "
2506 "variable's width (%d)."),
2507 var_name, width, var_get_width (var));
2512 value_init_pool (r->pool, &value, width);
2513 for (i = 0; i < n_labels; i++)
2515 size_t value_length, label_length;
2516 bool skip = var == NULL;
2518 /* Parse value length. */
2519 if (!check_overflow (r, record, ofs, 4))
2521 value_length = parse_int (r, record->data, ofs);
2525 if (!check_overflow (r, record, ofs, value_length))
2529 if (value_length == width)
2530 memcpy (value_str_rw (&value, width),
2531 (const uint8_t *) record->data + ofs, width);
2534 sys_warn (r, record->pos + ofs,
2535 _("Ignoring long string value label %zu for "
2536 "variable %s, with width %d, that has bad value "
2538 i, var_get_name (var), width, value_length);
2542 ofs += value_length;
2544 /* Parse label length. */
2545 if (!check_overflow (r, record, ofs, 4))
2547 label_length = parse_int (r, record->data, ofs);
2551 if (!check_overflow (r, record, ofs, label_length))
2557 label = recode_string_pool ("UTF-8", dict_encoding,
2558 (const char *) record->data + ofs,
2559 label_length, r->pool);
2560 if (!var_add_value_label (var, &value, label))
2561 sys_warn (r, record->pos + ofs,
2562 _("Duplicate value label for `%.*s' on %s."),
2563 width, value_str (&value, width),
2564 var_get_name (var));
2565 pool_free (r->pool, label);
2567 ofs += label_length;
2573 parse_long_string_missing_values (struct sfm_reader *r,
2574 const struct sfm_extension_record *record,
2575 struct dictionary *dict)
2577 const char *dict_encoding = dict_get_encoding (dict);
2578 size_t end = record->size * record->count;
2583 struct missing_values mv;
2585 struct variable *var;
2586 int n_missing_values;
2590 /* Parse variable name length. */
2591 if (!check_overflow (r, record, ofs, 4))
2593 var_name_len = parse_int (r, record->data, ofs);
2596 /* Parse variable name. */
2597 if (!check_overflow (r, record, ofs, var_name_len)
2598 || !check_overflow (r, record, ofs, var_name_len + 1))
2600 var_name = recode_string_pool ("UTF-8", dict_encoding,
2601 (const char *) record->data + ofs,
2602 var_name_len, r->pool);
2603 ofs += var_name_len;
2605 /* Parse number of missing values. */
2606 n_missing_values = ((const uint8_t *) record->data)[ofs];
2607 if (n_missing_values < 1 || n_missing_values > 3)
2608 sys_warn (r, record->pos + ofs,
2609 _("Long string missing values record says variable %s "
2610 "has %d missing values, but only 1 to 3 missing values "
2612 var_name, n_missing_values);
2615 /* Look up 'var' and validate. */
2616 var = dict_lookup_var (dict, var_name);
2618 sys_warn (r, record->pos + ofs,
2619 _("Ignoring long string missing value record for "
2620 "unknown variable %s."), var_name);
2621 else if (var_is_numeric (var))
2623 sys_warn (r, record->pos + ofs,
2624 _("Ignoring long string missing value record for "
2625 "numeric variable %s."), var_name);
2630 mv_init_pool (r->pool, &mv, var ? var_get_width (var) : 8);
2631 for (i = 0; i < n_missing_values; i++)
2633 size_t value_length;
2635 /* Parse value length. */
2636 if (!check_overflow (r, record, ofs, 4))
2638 value_length = parse_int (r, record->data, ofs);
2642 if (!check_overflow (r, record, ofs, value_length))
2646 && !mv_add_str (&mv, (const uint8_t *) record->data + ofs,
2648 sys_warn (r, record->pos + ofs,
2649 _("Ignoring long string missing value %zu for variable "
2650 "%s, with width %d, that has bad value width %zu."),
2651 i, var_get_name (var), var_get_width (var),
2653 ofs += value_length;
2656 var_set_missing_values (var, &mv);
2662 static void partial_record (struct sfm_reader *);
2664 static void read_error (struct casereader *, const struct sfm_reader *);
2666 static bool read_case_number (struct sfm_reader *, double *);
2667 static int read_case_string (struct sfm_reader *, uint8_t *, size_t);
2668 static int read_opcode (struct sfm_reader *);
2669 static bool read_compressed_number (struct sfm_reader *, double *);
2670 static int read_compressed_string (struct sfm_reader *, uint8_t *);
2671 static int read_whole_strings (struct sfm_reader *, uint8_t *, size_t);
2672 static bool skip_whole_strings (struct sfm_reader *, size_t);
2674 /* Reads and returns one case from READER's file. Returns a null
2675 pointer if not successful. */
2676 static struct ccase *
2677 sys_file_casereader_read (struct casereader *reader, void *r_)
2679 struct sfm_reader *r = r_;
2684 if (r->error || !r->sfm_var_cnt)
2687 c = case_create (r->proto);
2689 for (i = 0; i < r->sfm_var_cnt; i++)
2691 struct sfm_var *sv = &r->sfm_vars[i];
2692 union value *v = case_data_rw_idx (c, sv->case_index);
2694 if (sv->var_width == 0)
2695 retval = read_case_number (r, &v->f);
2698 uint8_t *s = value_str_rw (v, sv->var_width);
2699 retval = read_case_string (r, s + sv->offset, sv->segment_width);
2702 retval = skip_whole_strings (r, ROUND_DOWN (sv->padding, 8));
2704 sys_error (r, r->pos, _("File ends in partial string value."));
2716 if (r->case_cnt != -1)
2717 read_error (reader, r);
2722 /* Issues an error that R ends in a partial record. */
2724 partial_record (struct sfm_reader *r)
2726 sys_error (r, r->pos, _("File ends in partial case."));
2729 /* Issues an error that an unspecified error occurred SFM, and
2732 read_error (struct casereader *r, const struct sfm_reader *sfm)
2734 msg (ME, _("Error reading case from file %s."), fh_get_name (sfm->fh));
2735 casereader_force_error (r);
2738 /* Reads a number from R and stores its value in *D.
2739 If R is compressed, reads a compressed number;
2740 otherwise, reads a number in the regular way.
2741 Returns true if successful, false if end of file is
2742 reached immediately. */
2744 read_case_number (struct sfm_reader *r, double *d)
2746 if (r->compression == ANY_COMP_NONE)
2749 if (!try_read_bytes (r, number, sizeof number))
2751 float_convert (r->float_format, number, FLOAT_NATIVE_DOUBLE, d);
2755 return read_compressed_number (r, d);
2758 /* Reads LENGTH string bytes from R into S. Always reads a multiple of 8
2759 bytes; if LENGTH is not a multiple of 8, then extra bytes are read and
2760 discarded without being written to S. Reads compressed strings if S is
2761 compressed. Returns 1 if successful, 0 if end of file is reached
2762 immediately, or -1 for some kind of error. */
2764 read_case_string (struct sfm_reader *r, uint8_t *s, size_t length)
2766 size_t whole = ROUND_DOWN (length, 8);
2767 size_t partial = length % 8;
2771 int retval = read_whole_strings (r, s, whole);
2779 int retval = read_whole_strings (r, bounce, sizeof bounce);
2791 memcpy (s + whole, bounce, partial);
2797 /* Reads and returns the next compression opcode from R. */
2799 read_opcode (struct sfm_reader *r)
2801 assert (r->compression != ANY_COMP_NONE);
2805 if (r->opcode_idx >= sizeof r->opcodes)
2808 int retval = try_read_compressed_bytes (r, r->opcodes,
2814 opcode = r->opcodes[r->opcode_idx++];
2821 /* Reads a compressed number from R and stores its value in D.
2822 Returns true if successful, false if end of file is
2823 reached immediately. */
2825 read_compressed_number (struct sfm_reader *r, double *d)
2827 int opcode = read_opcode (r);
2835 return read_compressed_float (r, d);
2838 float_convert (r->float_format, " ", FLOAT_NATIVE_DOUBLE, d);
2839 if (!r->corruption_warning)
2841 r->corruption_warning = true;
2842 sys_warn (r, r->pos,
2843 _("Possible compressed data corruption: "
2844 "compressed spaces appear in numeric field."));
2853 *d = opcode - r->bias;
2860 /* Reads a compressed 8-byte string segment from R and stores it in DST. */
2862 read_compressed_string (struct sfm_reader *r, uint8_t *dst)
2867 opcode = read_opcode (r);
2875 retval = read_compressed_bytes (r, dst, 8);
2876 return retval == 1 ? 1 : -1;
2879 memset (dst, ' ', 8);
2884 double value = opcode - r->bias;
2885 float_convert (FLOAT_NATIVE_DOUBLE, &value, r->float_format, dst);
2888 /* This has actually been seen "in the wild". The submitter of the
2889 file that showed that the contents decoded as spaces, but they
2890 were at the end of the field so it's possible that the null
2891 bytes just acted as null terminators. */
2893 else if (!r->corruption_warning)
2895 r->corruption_warning = true;
2896 sys_warn (r, r->pos,
2897 _("Possible compressed data corruption: "
2898 "string contains compressed integer (opcode %d)."),
2906 /* Reads LENGTH string bytes from R into S. LENGTH must be a multiple of 8.
2907 Reads compressed strings if S is compressed. Returns 1 if successful, 0 if
2908 end of file is reached immediately, or -1 for some kind of error. */
2910 read_whole_strings (struct sfm_reader *r, uint8_t *s, size_t length)
2912 assert (length % 8 == 0);
2913 if (r->compression == ANY_COMP_NONE)
2914 return try_read_bytes (r, s, length);
2919 for (ofs = 0; ofs < length; ofs += 8)
2921 int retval = read_compressed_string (r, s + ofs);
2936 /* Skips LENGTH string bytes from R.
2937 LENGTH must be a multiple of 8.
2938 (LENGTH is also limited to 1024, but that's only because the
2939 current caller never needs more than that many bytes.)
2940 Returns true if successful, false if end of file is
2941 reached immediately. */
2943 skip_whole_strings (struct sfm_reader *r, size_t length)
2945 uint8_t buffer[1024];
2946 assert (length < sizeof buffer);
2947 return read_whole_strings (r, buffer, length);
2950 /* Helpers for reading records that contain structured text
2953 /* Maximum number of warnings to issue for a single text
2955 #define MAX_TEXT_WARNINGS 5
2960 struct substring buffer; /* Record contents. */
2961 off_t start; /* Starting offset in file. */
2962 size_t pos; /* Current position in buffer. */
2963 int n_warnings; /* Number of warnings issued or suppressed. */
2964 bool recoded; /* Recoded into UTF-8? */
2967 static struct text_record *
2968 open_text_record (struct sfm_reader *r,
2969 const struct sfm_extension_record *record,
2970 bool recode_to_utf8)
2972 struct text_record *text;
2973 struct substring raw;
2975 text = pool_alloc (r->pool, sizeof *text);
2976 raw = ss_buffer (record->data, record->size * record->count);
2977 text->start = record->pos;
2978 text->buffer = (recode_to_utf8
2979 ? recode_substring_pool ("UTF-8", r->encoding, raw, r->pool)
2982 text->n_warnings = 0;
2983 text->recoded = recode_to_utf8;
2988 /* Closes TEXT, frees its storage, and issues a final warning
2989 about suppressed warnings if necesary. */
2991 close_text_record (struct sfm_reader *r, struct text_record *text)
2993 if (text->n_warnings > MAX_TEXT_WARNINGS)
2994 sys_warn (r, -1, _("Suppressed %d additional related warnings."),
2995 text->n_warnings - MAX_TEXT_WARNINGS);
2997 pool_free (r->pool, ss_data (text->buffer));
3000 /* Reads a variable=value pair from TEXT.
3001 Looks up the variable in DICT and stores it into *VAR.
3002 Stores a null-terminated value into *VALUE. */
3004 read_variable_to_value_pair (struct sfm_reader *r, struct dictionary *dict,
3005 struct text_record *text,
3006 struct variable **var, char **value)
3010 if (!text_read_short_name (r, dict, text, ss_cstr ("="), var))
3013 *value = text_get_token (text, ss_buffer ("\t\0", 2), NULL);
3017 text->pos += ss_span (ss_substr (text->buffer, text->pos, SIZE_MAX),
3018 ss_buffer ("\t\0", 2));
3026 text_read_variable_name (struct sfm_reader *r, struct dictionary *dict,
3027 struct text_record *text, struct substring delimiters,
3028 struct variable **var)
3032 name = text_get_token (text, delimiters, NULL);
3036 *var = dict_lookup_var (dict, name);
3040 text_warn (r, text, _("Dictionary record refers to unknown variable %s."),
3047 text_read_short_name (struct sfm_reader *r, struct dictionary *dict,
3048 struct text_record *text, struct substring delimiters,
3049 struct variable **var)
3051 char *short_name = text_get_token (text, delimiters, NULL);
3052 if (short_name == NULL)
3055 *var = dict_lookup_var (dict, short_name);
3057 text_warn (r, text, _("Dictionary record refers to unknown variable %s."),
3062 /* Displays a warning for the current file position, limiting the
3063 number to MAX_TEXT_WARNINGS for TEXT. */
3065 text_warn (struct sfm_reader *r, struct text_record *text,
3066 const char *format, ...)
3068 if (text->n_warnings++ < MAX_TEXT_WARNINGS)
3072 va_start (args, format);
3073 sys_msg (r, text->start + text->pos, MW, format, args);
3079 text_get_token (struct text_record *text, struct substring delimiters,
3082 struct substring token;
3085 if (!ss_tokenize (text->buffer, delimiters, &text->pos, &token))
3088 end = &ss_data (token)[ss_length (token)];
3089 if (delimiter != NULL)
3092 return ss_data (token);
3095 /* Reads a integer value expressed in decimal, then a space, then a string that
3096 consists of exactly as many bytes as specified by the integer, then a space,
3097 from TEXT. Returns the string, null-terminated, as a subset of TEXT's
3098 buffer (so the caller should not free the string). */
3100 text_parse_counted_string (struct sfm_reader *r, struct text_record *text)
3108 while (text->pos < text->buffer.length)
3110 int c = text->buffer.string[text->pos];
3111 if (c < '0' || c > '9')
3113 n = (n * 10) + (c - '0');
3116 if (text->pos >= text->buffer.length || start == text->pos)
3118 sys_warn (r, text->start,
3119 _("Expecting digit at offset %zu in MRSETS record."),
3124 if (!text_match (text, ' '))
3126 sys_warn (r, text->start,
3127 _("Expecting space at offset %zu in MRSETS record."),
3132 if (text->pos + n > text->buffer.length)
3134 sys_warn (r, text->start,
3135 _("%zu-byte string starting at offset %zu "
3136 "exceeds record length %zu."),
3137 n, text->pos, text->buffer.length);
3141 s = &text->buffer.string[text->pos];
3144 sys_warn (r, text->start,
3145 _("Expecting space at offset %zu following %zu-byte string."),
3155 text_match (struct text_record *text, char c)
3157 if (text->pos >= text->buffer.length)
3160 if (text->buffer.string[text->pos] == c)
3169 /* Returns the current byte offset (as converted to UTF-8, if it was converted)
3170 inside the TEXT's string. */
3172 text_pos (const struct text_record *text)
3178 text_get_all (const struct text_record *text)
3180 return text->buffer.string;
3185 /* Displays a corruption message. */
3187 sys_msg (struct sfm_reader *r, off_t offset,
3188 int class, const char *format, va_list args)
3193 ds_init_empty (&text);
3195 ds_put_format (&text, _("`%s' near offset 0x%llx: "),
3196 fh_get_file_name (r->fh), (long long int) offset);
3198 ds_put_format (&text, _("`%s': "), fh_get_file_name (r->fh));
3199 ds_put_vformat (&text, format, args);
3201 m.category = msg_class_to_category (class);
3202 m.severity = msg_class_to_severity (class);
3208 m.text = ds_cstr (&text);
3213 /* Displays a warning for offset OFFSET in the file. */
3215 sys_warn (struct sfm_reader *r, off_t offset, const char *format, ...)
3219 va_start (args, format);
3220 sys_msg (r, offset, MW, format, args);
3224 /* Displays an error for the current file position and marks it as in an error
3227 sys_error (struct sfm_reader *r, off_t offset, const char *format, ...)
3231 va_start (args, format);
3232 sys_msg (r, offset, ME, format, args);
3238 /* Reads BYTE_CNT bytes into BUF.
3239 Returns 1 if exactly BYTE_CNT bytes are successfully read.
3240 Returns -1 if an I/O error or a partial read occurs.
3241 Returns 0 for an immediate end-of-file and, if EOF_IS_OK is false, reports
3244 read_bytes_internal (struct sfm_reader *r, bool eof_is_ok,
3245 void *buf, size_t byte_cnt)
3247 size_t bytes_read = fread (buf, 1, byte_cnt, r->file);
3248 r->pos += bytes_read;
3249 if (bytes_read == byte_cnt)
3251 else if (ferror (r->file))
3253 sys_error (r, r->pos, _("System error: %s."), strerror (errno));
3256 else if (!eof_is_ok || bytes_read != 0)
3258 sys_error (r, r->pos, _("Unexpected end of file."));
3265 /* Reads BYTE_CNT into BUF.
3266 Returns true if successful.
3267 Returns false upon I/O error or if end-of-file is encountered. */
3269 read_bytes (struct sfm_reader *r, void *buf, size_t byte_cnt)
3271 return read_bytes_internal (r, false, buf, byte_cnt) == 1;
3274 /* Reads BYTE_CNT bytes into BUF.
3275 Returns 1 if exactly BYTE_CNT bytes are successfully read.
3276 Returns 0 if an immediate end-of-file is encountered.
3277 Returns -1 if an I/O error or a partial read occurs. */
3279 try_read_bytes (struct sfm_reader *r, void *buf, size_t byte_cnt)
3281 return read_bytes_internal (r, true, buf, byte_cnt);
3284 /* Reads a 32-bit signed integer from R and stores its value in host format in
3285 *X. Returns true if successful, otherwise false. */
3287 read_int (struct sfm_reader *r, int *x)
3290 if (read_bytes (r, integer, sizeof integer) != 1)
3292 *x = integer_get (r->integer_format, integer, sizeof integer);
3297 read_uint (struct sfm_reader *r, unsigned int *x)
3302 ok = read_int (r, &y);
3307 /* Reads a 64-bit signed integer from R and returns its value in
3310 read_int64 (struct sfm_reader *r, long long int *x)
3313 if (read_bytes (r, integer, sizeof integer) != 1)
3315 *x = integer_get (r->integer_format, integer, sizeof integer);
3319 /* Reads a 64-bit signed integer from R and returns its value in
3322 read_uint64 (struct sfm_reader *r, unsigned long long int *x)
3327 ok = read_int64 (r, &y);
3333 parse_int (const struct sfm_reader *r, const void *data, size_t ofs)
3335 return integer_get (r->integer_format, (const uint8_t *) data + ofs, 4);
3339 parse_float (const struct sfm_reader *r, const void *data, size_t ofs)
3341 return float_get_double (r->float_format, (const uint8_t *) data + ofs);
3344 /* Reads exactly SIZE - 1 bytes into BUFFER
3345 and stores a null byte into BUFFER[SIZE - 1]. */
3347 read_string (struct sfm_reader *r, char *buffer, size_t size)
3352 ok = read_bytes (r, buffer, size - 1);
3354 buffer[size - 1] = '\0';
3358 /* Skips BYTES bytes forward in R. */
3360 skip_bytes (struct sfm_reader *r, size_t bytes)
3365 size_t chunk = MIN (sizeof buffer, bytes);
3366 if (!read_bytes (r, buffer, chunk))
3374 /* Returns a malloc()'d copy of S in which all lone CRs and CR LF pairs have
3375 been replaced by LFs.
3377 (A product that identifies itself as VOXCO INTERVIEWER 4.3 produces system
3378 files that use CR-only line ends in the file label and extra product
3381 fix_line_ends (const char *s)
3385 d = dst = xmalloc (strlen (s) + 1);
3404 read_ztrailer (struct sfm_reader *r,
3405 long long int zheader_ofs,
3406 long long int ztrailer_len);
3409 zalloc (voidpf pool_, uInt items, uInt size)
3411 struct pool *pool = pool_;
3413 return (!size || xalloc_oversized (items, size)
3415 : pool_malloc (pool, items * size));
3419 zfree (voidpf pool_, voidpf address)
3421 struct pool *pool = pool_;
3423 pool_free (pool, address);
3427 read_zheader (struct sfm_reader *r)
3430 long long int zheader_ofs;
3431 long long int ztrailer_ofs;
3432 long long int ztrailer_len;
3434 if (!read_int64 (r, &zheader_ofs)
3435 || !read_int64 (r, &ztrailer_ofs)
3436 || !read_int64 (r, &ztrailer_len))
3439 if (zheader_ofs != pos)
3441 sys_error (r, pos, _("Wrong ZLIB data header offset %#llx "
3442 "(expected %#llx)."),
3443 zheader_ofs, (long long int) pos);
3447 if (ztrailer_ofs < r->pos)
3449 sys_error (r, pos, _("Impossible ZLIB trailer offset 0x%llx."),
3454 if (ztrailer_len < 24 || ztrailer_len % 24)
3456 sys_error (r, pos, _("Invalid ZLIB trailer length %lld."), ztrailer_len);
3460 r->ztrailer_ofs = ztrailer_ofs;
3461 if (!read_ztrailer (r, zheader_ofs, ztrailer_len))
3464 if (r->zin_buf == NULL)
3466 r->zin_buf = pool_malloc (r->pool, ZIN_BUF_SIZE);
3467 r->zout_buf = pool_malloc (r->pool, ZOUT_BUF_SIZE);
3468 r->zstream.next_in = NULL;
3469 r->zstream.avail_in = 0;
3472 r->zstream.zalloc = zalloc;
3473 r->zstream.zfree = zfree;
3474 r->zstream.opaque = r->pool;
3476 return open_zstream (r);
3480 seek (struct sfm_reader *r, off_t offset)
3482 if (fseeko (r->file, offset, SEEK_SET))
3483 sys_error (r, 0, _("%s: seek failed (%s)."),
3484 fh_get_file_name (r->fh), strerror (errno));
3488 /* Performs some additional consistency checks on the ZLIB compressed data
3491 read_ztrailer (struct sfm_reader *r,
3492 long long int zheader_ofs,
3493 long long int ztrailer_len)
3495 long long int expected_uncmp_ofs;
3496 long long int expected_cmp_ofs;
3499 unsigned int block_size;
3500 unsigned int n_blocks;
3504 if (fstat (fileno (r->file), &s))
3506 sys_error (ME, 0, _("%s: stat failed (%s)."),
3507 fh_get_file_name (r->fh), strerror (errno));
3511 if (!S_ISREG (s.st_mode))
3513 /* We can't seek to the trailer and then back to the data in this file,
3514 so skip doing extra checks. */
3518 if (r->ztrailer_ofs + ztrailer_len != s.st_size)
3519 sys_warn (r, r->pos,
3520 _("End of ZLIB trailer (0x%llx) is not file size (0x%llx)."),
3521 r->ztrailer_ofs + ztrailer_len, (long long int) s.st_size);
3523 seek (r, r->ztrailer_ofs);
3525 /* Read fixed header from ZLIB data trailer. */
3526 if (!read_int64 (r, &bias))
3528 if (-bias != r->bias)
3530 sys_error (r, r->pos, _("ZLIB trailer bias (%lld) differs from "
3531 "file header bias (%.2f)."),
3536 if (!read_int64 (r, &zero))
3539 sys_warn (r, r->pos,
3540 _("ZLIB trailer \"zero\" field has nonzero value %lld."), zero);
3542 if (!read_uint (r, &block_size))
3544 if (block_size != ZBLOCK_SIZE)
3545 sys_warn (r, r->pos,
3546 _("ZLIB trailer specifies unexpected %u-byte block size."),
3549 if (!read_uint (r, &n_blocks))
3551 if (n_blocks != (ztrailer_len - 24) / 24)
3553 sys_error (r, r->pos,
3554 _("%lld-byte ZLIB trailer specifies %u data blocks (expected "
3556 ztrailer_len, n_blocks, (ztrailer_len - 24) / 24);
3560 expected_uncmp_ofs = zheader_ofs;
3561 expected_cmp_ofs = zheader_ofs + 24;
3562 for (i = 0; i < n_blocks; i++)
3564 off_t desc_ofs = r->pos;
3565 unsigned long long int uncompressed_ofs;
3566 unsigned long long int compressed_ofs;
3567 unsigned int uncompressed_size;
3568 unsigned int compressed_size;
3570 if (!read_uint64 (r, &uncompressed_ofs)
3571 || !read_uint64 (r, &compressed_ofs)
3572 || !read_uint (r, &uncompressed_size)
3573 || !read_uint (r, &compressed_size))
3576 if (uncompressed_ofs != expected_uncmp_ofs)
3578 sys_error (r, desc_ofs,
3579 _("ZLIB block descriptor %u reported uncompressed data "
3580 "offset %#llx, when %#llx was expected."),
3581 i, uncompressed_ofs, expected_uncmp_ofs);
3585 if (compressed_ofs != expected_cmp_ofs)
3587 sys_error (r, desc_ofs,
3588 _("ZLIB block descriptor %u reported compressed data "
3589 "offset %#llx, when %#llx was expected."),
3590 i, compressed_ofs, expected_cmp_ofs);
3594 if (i < n_blocks - 1)
3596 if (uncompressed_size != block_size)
3597 sys_warn (r, desc_ofs,
3598 _("ZLIB block descriptor %u reported block size %#x, "
3599 "when %#x was expected."),
3600 i, uncompressed_size, block_size);
3604 if (uncompressed_size > block_size)
3605 sys_warn (r, desc_ofs,
3606 _("ZLIB block descriptor %u reported block size %#x, "
3607 "when at most %#x was expected."),
3608 i, uncompressed_size, block_size);
3611 /* http://www.zlib.net/zlib_tech.html says that the maximum expansion
3612 from compression, with worst-case parameters, is 13.5% plus 11 bytes.
3613 This code checks for an expansion of more than 14.3% plus 11
3615 if (compressed_size > uncompressed_size + uncompressed_size / 7 + 11)
3617 sys_error (r, desc_ofs,
3618 _("ZLIB block descriptor %u reports compressed size %u "
3619 "and uncompressed size %u."),
3620 i, compressed_size, uncompressed_size);
3624 expected_uncmp_ofs += uncompressed_size;
3625 expected_cmp_ofs += compressed_size;
3628 if (expected_cmp_ofs != r->ztrailer_ofs)
3630 sys_error (r, r->pos, _("ZLIB trailer is at offset %#llx but %#llx "
3631 "would be expected from block descriptors."),
3632 r->ztrailer_ofs, expected_cmp_ofs);
3636 seek (r, zheader_ofs + 24);
3641 open_zstream (struct sfm_reader *r)
3645 r->zout_pos = r->zout_end = 0;
3646 error = inflateInit (&r->zstream);
3649 sys_error (r, r->pos, _("ZLIB initialization failed (%s)."),
3657 close_zstream (struct sfm_reader *r)
3661 error = inflateEnd (&r->zstream);
3664 sys_error (r, r->pos, _("Inconsistency at end of ZLIB stream (%s)."),
3672 read_bytes_zlib (struct sfm_reader *r, void *buf_, size_t byte_cnt)
3674 uint8_t *buf = buf_;
3683 /* Use already inflated data if there is any. */
3684 if (r->zout_pos < r->zout_end)
3686 unsigned int n = MIN (byte_cnt, r->zout_end - r->zout_pos);
3687 memcpy (buf, &r->zout_buf[r->zout_pos], n);
3696 /* We need to inflate some more data.
3697 Get some more input data if we don't have any. */
3698 if (r->zstream.avail_in == 0)
3700 unsigned int n = MIN (ZIN_BUF_SIZE, r->ztrailer_ofs - r->pos);
3705 int retval = try_read_bytes (r, r->zin_buf, n);
3708 r->zstream.avail_in = n;
3709 r->zstream.next_in = r->zin_buf;
3713 /* Inflate the (remaining) input data. */
3714 r->zstream.avail_out = ZOUT_BUF_SIZE;
3715 r->zstream.next_out = r->zout_buf;
3716 error = inflate (&r->zstream, Z_SYNC_FLUSH);
3718 r->zout_end = r->zstream.next_out - r->zout_buf;
3719 if (r->zout_end == 0)
3721 if (error != Z_STREAM_END)
3723 sys_error (r, r->pos, _("ZLIB stream inconsistency (%s)."),
3727 else if (!close_zstream (r) || !open_zstream (r))
3732 /* Process the output data and ignore 'error' for now. ZLIB will
3733 present it to us again on the next inflate() call. */
3739 read_compressed_bytes (struct sfm_reader *r, void *buf, size_t byte_cnt)
3741 if (r->compression == ANY_COMP_SIMPLE)
3742 return read_bytes (r, buf, byte_cnt);
3745 int retval = read_bytes_zlib (r, buf, byte_cnt);
3747 sys_error (r, r->pos, _("Unexpected end of ZLIB compressed data."));
3753 try_read_compressed_bytes (struct sfm_reader *r, void *buf, size_t byte_cnt)
3755 if (r->compression == ANY_COMP_SIMPLE)
3756 return try_read_bytes (r, buf, byte_cnt);
3758 return read_bytes_zlib (r, buf, byte_cnt);
3761 /* Reads a 64-bit floating-point number from R and returns its
3762 value in host format. */
3764 read_compressed_float (struct sfm_reader *r, double *d)
3768 if (!read_compressed_bytes (r, number, sizeof number))
3771 *d = float_get_double (r->float_format, number);
3775 static const struct casereader_class sys_file_casereader_class =
3777 sys_file_casereader_read,
3778 sys_file_casereader_destroy,
3783 const struct any_reader_class sys_file_reader_class =
3785 N_("SPSS System File"),