ba390c1c0243b7e3f32facffb712bc6f936ca6b3
[pspp] / doc / dev / system-file-format.texi
1 @c PSPP - a program for statistical analysis.
2 @c Copyright (C) 2019 Free Software Foundation, Inc.
3 @c Permission is granted to copy, distribute and/or modify this document
4 @c under the terms of the GNU Free Documentation License, Version 1.3
5 @c or any later version published by the Free Software Foundation;
6 @c with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
7 @c A copy of the license is included in the section entitled "GNU
8 @c Free Documentation License".
9 @c
10
11 @node System File Format
12 @chapter System File Format
13
14 An SPSS system file holds a set of cases and dictionary information
15 that describes how they may be interpreted.  The system file format
16 dates back 40+ years and has evolved greatly over that time to support
17 new features, but in a way to facilitate interchange between even the
18 oldest and newest versions of software.  This chapter describes the
19 system file format.
20
21 System files use four data types: 8-bit characters, 32-bit integers,
22 64-bit integers,
23 and 64-bit floating points, called here @code{char}, @code{int32},
24 @code{int64}, and
25 @code{flt64}, respectively.  Data is not necessarily aligned on a word
26 or double-word boundary: the long variable name record (@pxref{Long
27 Variable Names Record}) and very long string records (@pxref{Very Long
28 String Record}) have arbitrary byte length and can therefore cause all
29 data coming after them in the file to be misaligned.
30
31 Integer data in system files may be big-endian or little-endian.  A
32 reader may detect the endianness of a system file by examining
33 @code{layout_code} in the file header record
34 (@pxref{layout_code,,@code{layout_code}}).
35
36 Floating-point data in system files may nominally be in IEEE 754, IBM,
37 or VAX formats.  A reader may detect the floating-point format in use
38 by examining @code{bias} in the file header record
39 (@pxref{bias,,@code{bias}}).
40
41 PSPP detects big-endian and little-endian integer formats in system
42 files and translates as necessary.  PSPP also detects the
43 floating-point format in use, as well as the endianness of IEEE 754
44 floating-point numbers, and translates as needed.  However, only IEEE
45 754 numbers with the same endianness as integer data in the same file
46 have actually been observed in system files, and it is likely that
47 other formats are obsolete or were never used.
48
49 System files use a few floating point values for special purposes:
50
51 @table @asis
52 @item SYSMIS
53 The system-missing value is represented by the largest possible
54 negative number in the floating point format (@code{-DBL_MAX}).
55
56 @item HIGHEST
57 HIGHEST is used as the high end of a missing value range with an
58 unbounded maximum.  It is represented by the largest possible positive
59 number (@code{DBL_MAX}).
60
61 @item LOWEST
62 LOWEST is used as the low end of a missing value range with an
63 unbounded minimum.  It was originally represented by the
64 second-largest negative number (in IEEE 754 format,
65 @code{0xffeffffffffffffe}).  System files written by SPSS 21 and later
66 instead use the largest negative number (@code{-DBL_MAX}), the same
67 value as SYSMIS.  This does not lead to ambiguity because LOWEST
68 appears in system files only in missing value ranges, which never
69 contain SYSMIS.
70 @end table
71
72 System files may use most character encodings based on an 8-bit unit.
73 UTF-16 and UTF-32, based on wider units, appear to be unacceptable.
74 @code{rec_type} in the file header record is sufficient to distinguish
75 between ASCII and EBCDIC based encodings.  The best way to determine
76 the specific encoding in use is to consult the character encoding
77 record (@pxref{Character Encoding Record}), if present, and failing
78 that the @code{character_code} in the machine integer info record
79 (@pxref{Machine Integer Info Record}).  The same encoding should be
80 used for the dictionary and the data in the file, although it is
81 possible to artificially synthesize files that use different encodings
82 (@pxref{Character Encoding Record}).
83
84 @menu
85 * System File Record Structure::
86 * File Header Record::
87 * Variable Record::
88 * Value Labels Records::
89 * Document Record::
90 * Machine Integer Info Record::
91 * Machine Floating-Point Info Record::
92 * Multiple Response Sets Records::
93 * Extra Product Info Record::
94 * Variable Display Parameter Record::
95 * Variable Sets Record::
96 * Long Variable Names Record::
97 * Very Long String Record::
98 * Character Encoding Record::
99 * Long String Value Labels Record::
100 * Long String Missing Values Record::
101 * Data File and Variable Attributes Records::
102 * Extended Number of Cases Record::
103 * Other Informational Records::
104 * Dictionary Termination Record::
105 * Data Record::
106 @end menu
107
108 @node System File Record Structure
109 @section System File Record Structure
110
111 System files are divided into records with the following format:
112
113 @example
114 int32               type;
115 char                data[];
116 @end example
117
118 This header does not identify the length of the @code{data} or any
119 information about what it contains, so the system file reader must
120 understand the format of @code{data} based on @code{type}.  However,
121 records with type 7, called @dfn{extension records}, have a stricter
122 format:
123
124 @example
125 int32               type;
126 int32               subtype;
127 int32               size;
128 int32               count;
129 char                data[size * count];
130 @end example
131
132 @table @code
133 @item int32 rec_type;
134 Record type.  Always set to 7.
135
136 @item int32 subtype;
137 Record subtype.  This value identifies a particular kind of extension
138 record.
139
140 @item int32 size;
141 The size of each piece of data that follows the header, in bytes.
142 Known extension records use 1, 4, or 8, for @code{char}, @code{int32},
143 and @code{flt64} format data, respectively.
144
145 @item int32 count;
146 The number of pieces of data that follow the header.
147
148 @item char data[size * count];
149 Data, whose format and interpretation depend on the subtype.
150 @end table
151
152 An extension record contains exactly @code{size * count} bytes of
153 data, which allows a reader that does not understand an extension
154 record to skip it.  Extension records provide only nonessential
155 information, so this allows for files written by newer software to
156 preserve backward compatibility with older or less capable readers.
157
158 Records in a system file must appear in the following order:
159
160 @itemize @bullet
161 @item
162 File header record.
163
164 @item
165 Variable records.
166
167 @item
168 All pairs of value labels records and value label variables records,
169 if present.
170
171 @item
172 Document record, if present.
173
174 @item
175 Extension (type 7) records, in ascending numerical order of their
176 subtypes.
177
178 System files written by SPSS include at most one of each kind of
179 extension record.  This is generally true of system files written by
180 other software as well, with known exceptions noted below in the
181 individual sections about each type of record.
182
183 @item
184 Dictionary termination record.
185
186 @item
187 Data record.
188 @end itemize
189
190 We advise authors of programs that read system files to tolerate
191 format variations.  Various kinds of misformatting and corruption have
192 been observed in system files written by SPSS and other software
193 alike.  In particular, because extension records provide nonessential
194 information, it is generally better to ignore an extension record
195 entirely than to refuse to read a system file.
196
197 The following sections describe the known kinds of records.
198
199 @node File Header Record
200 @section File Header Record
201
202 A system file begins with the file header, with the following format:
203
204 @example
205 char                rec_type[4];
206 char                prod_name[60];
207 int32               layout_code;
208 int32               nominal_case_size;
209 int32               compression;
210 int32               weight_index;
211 int32               ncases;
212 flt64               bias;
213 char                creation_date[9];
214 char                creation_time[8];
215 char                file_label[64];
216 char                padding[3];
217 @end example
218
219 @table @code
220 @item char rec_type[4];
221 Record type code, either @samp{$FL2} for system files with
222 uncompressed data or data compressed with simple bytecode compression,
223 or @samp{$FL3} for system files with ZLIB compressed data.
224
225 This is truly a character field that uses the character encoding as
226 other strings.  Thus, in a file with an ASCII-based character encoding
227 this field contains @code{24 46 4c 32} or @code{24 46 4c 33}, and in a
228 file with an EBCDIC-based encoding this field contains @code{5b c6 d3
229 f2}.  (No EBCDIC-based ZLIB-compressed files have been observed.)
230
231 @item char prod_name[60];
232 Product identification string.  This always begins with the characters
233 @samp{@@(#) SPSS DATA FILE}.  PSPP uses the remaining characters to
234 give its version and the operating system name; for example, @samp{GNU
235 pspp 0.1.4 - sparc-sun-solaris2.5.2}.  The string is truncated if it
236 would be longer than 60 characters; otherwise it is padded on the right
237 with spaces.
238
239 The product name field allow readers to behave differently based on
240 quirks in the way that particular software writes system files.
241 @xref{Value Labels Records}, for the detail of the quirk that the PSPP
242 system file reader tolerates in files written by ReadStat, which has
243 @code{https://github.com/WizardMac/ReadStat} in @code{prod_name}.
244
245 @anchor{layout_code}
246 @item int32 layout_code;
247 Normally set to 2, although a few system files have been spotted in
248 the wild with a value of 3 here.  PSPP use this value to determine the
249 file's integer endianness (@pxref{System File Format}).
250
251 @item int32 nominal_case_size;
252 Number of data elements per case.  This is the number of variables,
253 except that long string variables add extra data elements (one for every
254 8 characters after the first 8).  However, string variables do not
255 contribute to this value beyond the first 255 bytes.   Further, some
256 software always writes -1 or 0 in this field.  In general, it is
257 unsafe for systems reading system files to rely upon this value.
258
259 @item int32 compression;
260 Set to 0 if the data in the file is not compressed, 1 if the data is
261 compressed with simple bytecode compression, 2 if the data is ZLIB
262 compressed.  This field has value 2 if and only if @code{rec_type} is
263 @samp{$FL3}.
264
265 @item int32 weight_index;
266 If one of the variables in the data set is used as a weighting
267 variable, set to the dictionary index of that variable, plus 1
268 (@pxref{Dictionary Index}).  Otherwise, set to 0.
269
270 @item int32 ncases;
271 Set to the number of cases in the file if it is known, or -1 otherwise.
272
273 In the general case it is not possible to determine the number of cases
274 that will be output to a system file at the time that the header is
275 written.  The way that this is dealt with is by writing the entire
276 system file, including the header, then seeking back to the beginning of
277 the file and writing just the @code{ncases} field.  For files in which
278 this is not valid, the seek operation fails.  In this case,
279 @code{ncases} remains -1.
280
281 @anchor{bias}
282 @item flt64 bias;
283 Compression bias, ordinarily set to 100.  Only integers between
284 @code{1 - bias} and @code{251 - bias} can be compressed.
285
286 By assuming that its value is 100, PSPP uses @code{bias} to determine
287 the file's floating-point format and endianness (@pxref{System File
288 Format}).  If the compression bias is not 100, PSPP cannot auto-detect
289 the floating-point format and assumes that it is IEEE 754 format with
290 the same endianness as the system file's integers, which is correct
291 for all known system files.
292
293 @item char creation_date[9];
294 Date of creation of the system file, in @samp{dd mmm yy}
295 format, with the month as standard English abbreviations, using an
296 initial capital letter and following with lowercase.  If the date is not
297 available then this field is arbitrarily set to @samp{01 Jan 70}.
298
299 @item char creation_time[8];
300 Time of creation of the system file, in @samp{hh:mm:ss}
301 format and using 24-hour time.  If the time is not available then this
302 field is arbitrarily set to @samp{00:00:00}.
303
304 @item char file_label[64];
305 File label declared by the user, if any (@pxref{FILE LABEL,,,pspp,
306 PSPP Users Guide}).  Padded on the right with spaces.
307
308 A product that identifies itself as @code{VOXCO INTERVIEWER 4.3} uses
309 CR-only line ends in this field, rather than the more usual LF-only or
310 CR LF line ends.
311
312 @item char padding[3];
313 Ignored padding bytes to make the structure a multiple of 32 bits in
314 length.  Set to zeros.
315 @end table
316
317 @node Variable Record
318 @section Variable Record
319
320 There must be one variable record for each numeric variable and each
321 string variable with width 8 bytes or less.  String variables wider
322 than 8 bytes have one variable record for each 8 bytes, rounding up.
323 The first variable record for a long string specifies the variable's
324 correct dictionary information.  Subsequent variable records for a
325 long string are filled with dummy information: a type of -1, no
326 variable label or missing values, print and write formats that are
327 ignored, and an empty string as name.  A few system files have been
328 encountered that include a variable label on dummy variable records,
329 so readers should take care to parse dummy variable records in the
330 same way as other variable records.
331
332 @anchor{Dictionary Index}
333 The @dfn{dictionary index} of a variable is a 1-based offset in the set of
334 variable records, including dummy variable records for long string
335 variables.  The first variable record has a dictionary index of 1, the
336 second has a dictionary index of 2, and so on.
337
338 The system file format does not directly support string variables
339 wider than 255 bytes.  Such very long string variables are represented
340 by a number of narrower string variables.  @xref{Very Long String
341 Record}, for details.
342
343 A system file should contain at least one variable and thus at least
344 one variable record, but system files have been observed in the wild
345 without any variables (thus, no data either).
346
347 @example
348 int32               rec_type;
349 int32               type;
350 int32               has_var_label;
351 int32               n_missing_values;
352 int32               print;
353 int32               write;
354 char                name[8];
355
356 /* @r{Present only if @code{has_var_label} is 1.} */
357 int32               label_len;
358 char                label[];
359
360 /* @r{Present only if @code{n_missing_values} is nonzero}. */
361 flt64               missing_values[];
362 @end example
363
364 @table @code
365 @item int32 rec_type;
366 Record type code.  Always set to 2.
367
368 @item int32 type;
369 Variable type code.  Set to 0 for a numeric variable.  For a short
370 string variable or the first part of a long string variable, this is set
371 to the width of the string.  For the second and subsequent parts of a
372 long string variable, set to -1, and the remaining fields in the
373 structure are ignored.
374
375 @item int32 has_var_label;
376 If this variable has a variable label, set to 1; otherwise, set to 0.
377
378 @item int32 n_missing_values;
379 If the variable has no missing values, set to 0.  If the variable has
380 one, two, or three discrete missing values, set to 1, 2, or 3,
381 respectively.  If the variable has a range for missing variables, set to
382 -2; if the variable has a range for missing variables plus a single
383 discrete value, set to -3.
384
385 A long string variable always has the value 0 here.  A separate record
386 indicates missing values for long string variables (@pxref{Long String
387 Missing Values Record}).
388
389 @item int32 print;
390 Print format for this variable.  See below.
391
392 @item int32 write;
393 Write format for this variable.  See below.
394
395 @item char name[8];
396 Variable name.  The variable name must begin with a capital letter or
397 the at-sign (@samp{@@}).  Subsequent characters may also be digits, octothorpes
398 (@samp{#}), dollar signs (@samp{$}), underscores (@samp{_}), or full
399 stops (@samp{.}).  The variable name is padded on the right with spaces.
400
401 The @samp{name} fields should be unique within a system file.  System
402 files written by SPSS that contain very long string variables with
403 similar names sometimes contain duplicate names that are later
404 eliminated by resolving the very long string names (@pxref{Very Long
405 String Record}).  PSPP handles duplicates by assigning them new,
406 unique names.
407
408 @item int32 label_len;
409 This field is present only if @code{has_var_label} is set to 1.  It is
410 set to the length, in characters, of the variable label.  The
411 documented maximum length varies from 120 to 255 based on SPSS
412 version, but some files have been seen with longer labels.  PSPP
413 accepts labels of any length.
414
415 @item char label[];
416 This field is present only if @code{has_var_label} is set to 1.  It has
417 length @code{label_len}, rounded up to the nearest multiple of 32 bits.
418 The first @code{label_len} characters are the variable's variable label.
419
420 @item flt64 missing_values[];
421 This field is present only if @code{n_missing_values} is nonzero.  It
422 has the same number of 8-byte elements as the absolute value of
423 @code{n_missing_values}.  Each element is interpreted as a number for
424 numeric variables (with HIGHEST and LOWEST indicated as described in
425 the chapter introduction).  For string variables of width less than 8
426 bytes, elements are right-padded with spaces; for string variables
427 wider than 8 bytes, only the first 8 bytes of each missing value are
428 specified, with the remainder implicitly all spaces.
429
430 For discrete missing values, each element represents one missing
431 value.  When a range is present, the first element denotes the minimum
432 value in the range, and the second element denotes the maximum value
433 in the range.  When a range plus a value are present, the third
434 element denotes the additional discrete missing value.
435 @end table
436
437 @anchor{System File Output Formats}
438 The @code{print} and @code{write} members of sysfile_variable are output
439 formats coded into @code{int32} types.  The least-significant byte
440 of the @code{int32} represents the number of decimal places, and the
441 next two bytes in order of increasing significance represent field width
442 and format type, respectively.  The most-significant byte is not
443 used and should be set to zero.
444
445 Format types are defined as follows:
446
447 @quotation
448 @multitable {Value} {@code{DATETIME}}
449 @headitem Value
450 @tab Meaning
451 @item 0
452 @tab Not used.
453 @item 1
454 @tab @code{A}
455 @item 2
456 @tab @code{AHEX}
457 @item 3
458 @tab @code{COMMA}
459 @item 4
460 @tab @code{DOLLAR}
461 @item 5
462 @tab @code{F}
463 @item 6
464 @tab @code{IB}
465 @item 7
466 @tab @code{PIBHEX}
467 @item 8
468 @tab @code{P}
469 @item 9
470 @tab @code{PIB}
471 @item 10
472 @tab @code{PK}
473 @item 11
474 @tab @code{RB}
475 @item 12
476 @tab @code{RBHEX}
477 @item 13
478 @tab Not used.
479 @item 14
480 @tab Not used.
481 @item 15
482 @tab @code{Z}
483 @item 16
484 @tab @code{N}
485 @item 17
486 @tab @code{E}
487 @item 18
488 @tab Not used.
489 @item 19
490 @tab Not used.
491 @item 20
492 @tab @code{DATE}
493 @item 21
494 @tab @code{TIME}
495 @item 22
496 @tab @code{DATETIME}
497 @item 23
498 @tab @code{ADATE}
499 @item 24
500 @tab @code{JDATE}
501 @item 25
502 @tab @code{DTIME}
503 @item 26
504 @tab @code{WKDAY}
505 @item 27
506 @tab @code{MONTH}
507 @item 28
508 @tab @code{MOYR}
509 @item 29
510 @tab @code{QYR}
511 @item 30
512 @tab @code{WKYR}
513 @item 31
514 @tab @code{PCT}
515 @item 32
516 @tab @code{DOT}
517 @item 33
518 @tab @code{CCA}
519 @item 34
520 @tab @code{CCB}
521 @item 35
522 @tab @code{CCC}
523 @item 36
524 @tab @code{CCD}
525 @item 37
526 @tab @code{CCE}
527 @item 38
528 @tab @code{EDATE}
529 @item 39
530 @tab @code{SDATE}
531 @item 40
532 @tab @code{MTIME}
533 @item 41
534 @tab @code{YMDHMS}
535 @end multitable
536 @end quotation
537
538 A few system files have been observed in the wild with invalid
539 @code{write} fields, in particular with value 0.  Readers should
540 probably treat invalid @code{print} or @code{write} fields as some
541 default format.
542
543 @node Value Labels Records
544 @section Value Labels Records
545
546 The value label records documented in this section are used for
547 numeric and short string variables only.  Long string variables may
548 have value labels, but their value labels are recorded using a
549 different record type (@pxref{Long String Value Labels Record}).
550
551 ReadStat (@pxref{File Header Record}) writes value labels that label a
552 single value more than once.  In more detail, it emits value labels
553 whose values are longer than string variables' widths, that are
554 identical in the actual width of the variable, e.g.@: labels for
555 values @code{ABC123} and @code{ABC456} for a string variable with
556 width 3.  For files written by this software, PSPP ignores such
557 labels.
558
559 The value label record has the following format:
560
561 @example
562 int32               rec_type;
563 int32               label_count;
564
565 /* @r{Repeated @code{n_label} times}. */
566 char                value[8];
567 char                label_len;
568 char                label[];
569 @end example
570
571 @table @code
572 @item int32 rec_type;
573 Record type.  Always set to 3.
574
575 @item int32 label_count;
576 Number of value labels present in this record.
577 @end table
578
579 The remaining fields are repeated @code{count} times.  Each
580 repetition specifies one value label.
581
582 @table @code
583 @item char value[8];
584 A numeric value or a short string value padded as necessary to 8 bytes
585 in length.  Its type and width cannot be determined until the
586 following value label variables record (see below) is read.
587
588 @item char label_len;
589 The label's length, in bytes.  The documented maximum length varies
590 from 60 to 120 based on SPSS version.  PSPP supports value labels up
591 to 255 bytes long.
592
593 @item char label[];
594 @code{label_len} bytes of the actual label, followed by up to 7 bytes
595 of padding to bring @code{label} and @code{label_len} together to a
596 multiple of 8 bytes in length.
597 @end table
598
599 The value label record is always immediately followed by a value label
600 variables record with the following format:
601
602 @example
603 int32               rec_type;
604 int32               var_count;
605 int32               vars[];
606 @end example
607
608 @table @code
609 @item int32 rec_type;
610 Record type.  Always set to 4.
611
612 @item int32 var_count;
613 Number of variables that the associated value labels from the value
614 label record are to be applied.
615
616 @item int32 vars[];
617 A list of 1-based dictionary indexes of variables to which to apply the value
618 labels (@pxref{Dictionary Index}).  There are @code{var_count}
619 elements.
620
621 String variables wider than 8 bytes may not be specified in this list.
622 @end table
623
624 @node Document Record
625 @section Document Record
626
627 The document record, if present, has the following format:
628
629 @example
630 int32               rec_type;
631 int32               n_lines;
632 char                lines[][80];
633 @end example
634
635 @table @code
636 @item int32 rec_type;
637 Record type.  Always set to 6.
638
639 @item int32 n_lines;
640 Number of lines of documents present.  This should be greater than
641 zero, but ReadStats writes system files with zero @code{n_lines}.
642
643 @item char lines[][80];
644 Document lines.  The number of elements is defined by @code{n_lines}.
645 Lines shorter than 80 characters are padded on the right with spaces.
646 @end table
647
648 @node Machine Integer Info Record
649 @section Machine Integer Info Record
650
651 The integer info record, if present, has the following format:
652
653 @example
654 /* @r{Header.} */
655 int32               rec_type;
656 int32               subtype;
657 int32               size;
658 int32               count;
659
660 /* @r{Data.} */
661 int32               version_major;
662 int32               version_minor;
663 int32               version_revision;
664 int32               machine_code;
665 int32               floating_point_rep;
666 int32               compression_code;
667 int32               endianness;
668 int32               character_code;
669 @end example
670
671 @table @code
672 @item int32 rec_type;
673 Record type.  Always set to 7.
674
675 @item int32 subtype;
676 Record subtype.  Always set to 3.
677
678 @item int32 size;
679 Size of each piece of data in the data part, in bytes.  Always set to 4.
680
681 @item int32 count;
682 Number of pieces of data in the data part.  Always set to 8.
683
684 @item int32 version_major;
685 PSPP major version number.  In version @var{x}.@var{y}.@var{z}, this
686 is @var{x}.
687
688 @item int32 version_minor;
689 PSPP minor version number.  In version @var{x}.@var{y}.@var{z}, this
690 is @var{y}.
691
692 @item int32 version_revision;
693 PSPP version revision number.  In version @var{x}.@var{y}.@var{z},
694 this is @var{z}.
695
696 @item int32 machine_code;
697 Machine code.  PSPP always set this field to value to -1, but other
698 values may appear.
699
700 @item int32 floating_point_rep;
701 Floating point representation code.  For IEEE 754 systems this is 1.
702 IBM 370 sets this to 2, and DEC VAX E to 3.
703
704 @item int32 compression_code;
705 Compression code.  Always set to 1, regardless of whether or how the
706 file is compressed.
707
708 @item int32 endianness;
709 Machine endianness.  1 indicates big-endian, 2 indicates little-endian.
710
711 @item int32 character_code;
712 @anchor{character-code} Character code.  The following values have
713 been actually observed in system files:
714
715 @table @asis
716 @item 1
717 EBCDIC.
718
719 @item 2
720 7-bit ASCII.
721
722 @item 1250
723 The @code{windows-1250} code page for Central European and Eastern
724 European languages.
725
726 @item 1252
727 The @code{windows-1252} code page for Western European languages.
728
729 @item 28591
730 ISO 8859-1.
731
732 @item 65001
733 UTF-8.
734 @end table
735
736 The following additional values are known to be defined:
737
738 @table @asis
739 @item 3
740 8-bit ``ASCII''.
741
742 @item 4
743 DEC Kanji.
744 @end table
745
746 Other Windows code page numbers are known to be generally valid.
747
748 Old versions of SPSS for Unix and Windows always wrote value 2 in this
749 field, regardless of the encoding in use.  Newer versions also write
750 the character encoding as a string (see @ref{Character Encoding
751 Record}).
752 @end table
753
754 @node Machine Floating-Point Info Record
755 @section Machine Floating-Point Info Record
756
757 The floating-point info record, if present, has the following format:
758
759 @example
760 /* @r{Header.} */
761 int32               rec_type;
762 int32               subtype;
763 int32               size;
764 int32               count;
765
766 /* @r{Data.} */
767 flt64               sysmis;
768 flt64               highest;
769 flt64               lowest;
770 @end example
771
772 @table @code
773 @item int32 rec_type;
774 Record type.  Always set to 7.
775
776 @item int32 subtype;
777 Record subtype.  Always set to 4.
778
779 @item int32 size;
780 Size of each piece of data in the data part, in bytes.  Always set to 8.
781
782 @item int32 count;
783 Number of pieces of data in the data part.  Always set to 3.
784
785 @item flt64 sysmis;
786 @itemx flt64 highest;
787 @itemx flt64 lowest;
788 The system missing value, the value used for HIGHEST in missing
789 values, and the value used for LOWEST in missing values, respectively.
790 @xref{System File Format}, for more information.
791
792 The SPSSWriter library in PHP, which identifies itself as @code{FOM
793 SPSS 1.0.0} in the file header record @code{prod_name} field, writes
794 unexpected values to these fields, but it uses the same values
795 consistently throughout the rest of the file.
796 @end table
797
798 @node Multiple Response Sets Records
799 @section Multiple Response Sets Records
800
801 The system file format has two different types of records that
802 represent multiple response sets (@pxref{MRSETS,,,pspp, PSPP Users
803 Guide}).  The first type of record describes multiple response sets
804 that can be understood by SPSS before version 14.  The second type of
805 record, with a closely related format, is used for multiple dichotomy
806 sets that use the CATEGORYLABELS=COUNTEDVALUES feature added in
807 version 14.
808
809 @example
810 /* @r{Header.} */
811 int32               rec_type;
812 int32               subtype;
813 int32               size;
814 int32               count;
815
816 /* @r{Exactly @code{count} bytes of data.} */
817 char                mrsets[];
818 @end example
819
820 @table @code
821 @item int32 rec_type;
822 Record type.  Always set to 7.
823
824 @item int32 subtype;
825 Record subtype.  Set to 7 for records that describe multiple response
826 sets understood by SPSS before version 14, or to 19 for records that
827 describe dichotomy sets that use the CATEGORYLABELS=COUNTEDVALUES
828 feature added in version 14.
829
830 @item int32 size;
831 The size of each element in the @code{mrsets} member. Always set to 1.
832
833 @item int32 count;
834 The total number of bytes in @code{mrsets}.
835
836 @item char mrsets[];
837 Zero or more line feeds (byte 0x0a), followed by a series of multiple
838 response sets, each of which consists of the following:
839
840 @itemize @bullet
841 @item
842 The set's name (an identifier that begins with @samp{$}), in mixed
843 upper and lower case.
844
845 @item
846 An equals sign (@samp{=}).
847
848 @item
849 @samp{C} for a multiple category set, @samp{D} for a multiple
850 dichotomy set with CATEGORYLABELS=VARLABELS, or @samp{E} for a
851 multiple dichotomy set with CATEGORYLABELS=COUNTEDVALUES.
852
853 @item
854 For a multiple dichotomy set with CATEGORYLABELS=COUNTEDVALUES, a
855 space, followed by a number expressed as decimal digits, followed by a
856 space.  If LABELSOURCE=VARLABEL was specified on MRSETS, then the
857 number is 11; otherwise it is 1.@footnote{This part of the format may
858 not be fully understood, because only a single example of each
859 possibility has been examined.}
860
861 @item
862 For either kind of multiple dichotomy set, the counted value, as a
863 positive integer count specified as decimal digits, followed by a
864 space, followed by as many string bytes as specified in the count.  If
865 the set contains numeric variables, the string consists of the counted
866 integer value expressed as decimal digits.  If the set contains string
867 variables, the string contains the counted string value.  Either way,
868 the string may be padded on the right with spaces (older versions of
869 SPSS seem to always pad to a width of 8 bytes; newer versions don't).
870
871 @item
872 A space.
873
874 @item
875 The multiple response set's label, using the same format as for the
876 counted value for multiple dichotomy sets.  A string of length 0 means
877 that the set does not have a label.  A string of length 0 is also
878 written if LABELSOURCE=VARLABEL was specified.
879
880 @item
881 A space.
882
883 @item
884 The short names of the variables in the set, converted to lowercase,
885 each separated from the previous by a single space.
886
887 Even though a multiple response set must have at least two variables,
888 some system files contain multiple response sets with no variables or
889 one variable.  The source and meaning of these multiple response sets is
890 unknown.  (Perhaps they arise from creating a multiple response set
891 then deleting all the variables that it contains?)
892
893 @item
894 One line feed (byte 0x0a).  Sometimes multiple, even hundreds, of line
895 feeds are present.
896 @end itemize
897 @end table
898
899 Example: Given appropriate variable definitions, consider the
900 following MRSETS command:
901
902 @example
903 MRSETS /MCGROUP NAME=$a LABEL='my mcgroup' VARIABLES=a b c
904        /MDGROUP NAME=$b VARIABLES=g e f d VALUE=55
905        /MDGROUP NAME=$c LABEL='mdgroup #2' VARIABLES=h i j VALUE='Yes'
906        /MDGROUP NAME=$d LABEL='third mdgroup' CATEGORYLABELS=COUNTEDVALUES
907         VARIABLES=k l m VALUE=34
908        /MDGROUP NAME=$e CATEGORYLABELS=COUNTEDVALUES LABELSOURCE=VARLABEL
909         VARIABLES=n o p VALUE='choice'.
910 @end example
911
912 The above would generate the following multiple response set record of
913 subtype 7:
914
915 @example
916 $a=C 10 my mcgroup a b c
917 $b=D2 55 0  g e f d
918 $c=D3 Yes 10 mdgroup #2 h i j
919 @end example
920
921 It would also generate the following multiple response set record with
922 subtype 19:
923
924 @example
925 $d=E 1 2 34 13 third mdgroup k l m
926 $e=E 11 6 choice 0  n o p
927 @end example
928
929 @node Extra Product Info Record
930 @section Extra Product Info Record
931
932 This optional record appears to contain a text string that describes
933 the program that wrote the file and the source of the data.  (This is
934 redundant with the file label and product info found in the file
935 header record.)
936
937 @example
938 /* @r{Header.} */
939 int32               rec_type;
940 int32               subtype;
941 int32               size;
942 int32               count;
943
944 /* @r{Exactly @code{count} bytes of data.} */
945 char                info[];
946 @end example
947
948 @table @code
949 @item int32 rec_type;
950 Record type.  Always set to 7.
951
952 @item int32 subtype;
953 Record subtype.  Always set to 10.
954
955 @item int32 size;
956 The size of each element in the @code{info} member. Always set to 1.
957
958 @item int32 count;
959 The total number of bytes in @code{info}.
960
961 @item char info[];
962 A text string.  A product that identifies itself as @code{VOXCO
963 INTERVIEWER 4.3} uses CR-only line ends in this field, rather than the
964 more usual LF-only or CR LF line ends.
965 @end table
966
967 @node Variable Display Parameter Record
968 @section Variable Display Parameter Record
969
970 The variable display parameter record, if present, has the following
971 format:
972
973 @example
974 /* @r{Header.} */
975 int32               rec_type;
976 int32               subtype;
977 int32               size;
978 int32               count;
979
980 /* @r{Repeated @code{count} times}. */
981 int32               measure;
982 int32               width;           /* @r{Not always present.} */
983 int32               alignment;
984 @end example
985
986 @table @code
987 @item int32 rec_type;
988 Record type.  Always set to 7.
989
990 @item int32 subtype;
991 Record subtype.  Always set to 11.
992
993 @item int32 size;
994 The size of @code{int32}.  Always set to 4.
995
996 @item int32 count;
997 The number of sets of variable display parameters (ordinarily the
998 number of variables in the dictionary), times 2 or 3.
999 @end table
1000
1001 The remaining members are repeated @code{count} times, in the same
1002 order as the variable records.  No element corresponds to variable
1003 records that continue long string variables.  The meanings of these
1004 members are as follows:
1005
1006 @table @code
1007 @item int32 measure;
1008 The measurement level of the variable:
1009 @table @asis
1010 @item 0
1011 Unknown
1012 @item 1
1013 Nominal
1014 @item 2
1015 Ordinal
1016 @item 3
1017 Scale
1018 @end table
1019
1020 An ``unknown'' @code{measure} of 0 means that the variable was created
1021 in some way that doesn't make the measurement level clear, e.g.@: with
1022 a @code{COMPUTE} transformation.  PSPP sets the measurement level the
1023 first time it reads the data using the rules documented in
1024 @ref{Measurement Level,,,pspp, PSPP Users Guide}, so this should
1025 rarely appear.
1026
1027 @item int32 width;
1028 The width of the display column for the variable in characters.
1029
1030 This field is present if @var{count} is 3 times the number of
1031 variables in the dictionary.  It is omitted if @var{count} is 2 times
1032 the number of variables.
1033
1034 @item int32 alignment;
1035 The alignment of the variable for display purposes:
1036
1037 @table @asis
1038 @item 0
1039 Left aligned
1040 @item 1
1041 Right aligned
1042 @item 2
1043 Centre aligned
1044 @end table
1045 @end table
1046
1047 @node Variable Sets Record
1048 @section Variable Sets Record
1049
1050 The SPSS GUI offers users the ability to arrange variables in sets.
1051 Users may enable and disable sets individually, and the data editor
1052 and analysis dialog boxes only show enabled sets.  Syntax does not use
1053 variable sets.
1054
1055 The variable sets record, if present, has the following format:
1056
1057 @example
1058 /* @r{Header.} */
1059 int32               rec_type;
1060 int32               subtype;
1061 int32               size;
1062 int32               count;
1063
1064 /* @r{Exactly @code{count} bytes of text.} */
1065 char                text[];
1066 @end example
1067
1068 @table @code
1069 @item int32 rec_type;
1070 Record type.  Always set to 7.
1071
1072 @item int32 subtype;
1073 Record subtype.  Always set to 5.
1074
1075 @item int32 size;
1076 Always set to 1.
1077
1078 @item int32 count;
1079 The total number of bytes in @code{text}.
1080
1081 @item char text[];
1082 The variable sets, in a text-based format.
1083
1084 Each variable set occupies one line of text, each of which ends with a
1085 line feed (byte 0x0a), optionally preceded by a carriage return (byte
1086 0x0d).
1087
1088 Each line begins with the name of the variable set, followed by an
1089 equals sign (@samp{=}) and a space (byte 0x20), followed by the long
1090 variable names of the members of the set, separated by spaces.  A
1091 variable set may be empty, in which case the equals sign and the space
1092 following it are still present.
1093 @end table
1094
1095 @node Long Variable Names Record
1096 @section Long Variable Names Record
1097
1098 If present, the long variable names record has the following format:
1099
1100 @example
1101 /* @r{Header.} */
1102 int32               rec_type;
1103 int32               subtype;
1104 int32               size;
1105 int32               count;
1106
1107 /* @r{Exactly @code{count} bytes of data.} */
1108 char                var_name_pairs[];
1109 @end example
1110
1111 @table @code
1112 @item int32 rec_type;
1113 Record type.  Always set to 7.
1114
1115 @item int32 subtype;
1116 Record subtype.  Always set to 13.
1117
1118 @item int32 size;
1119 The size of each element in the @code{var_name_pairs} member. Always set to 1.
1120
1121 @item int32 count;
1122 The total number of bytes in @code{var_name_pairs}.
1123
1124 @item char var_name_pairs[];
1125 A list of @var{key}--@var{value} tuples, where @var{key} is the name
1126 of a variable, and @var{value} is its long variable name.
1127 The @var{key} field is at most 8 bytes long and must match the
1128 name of a variable which appears in the variable record (@pxref{Variable
1129 Record}).
1130 The @var{value} field is at most 64 bytes long.
1131 The @var{key} and @var{value} fields are separated by a @samp{=} byte.
1132 Each tuple is separated by a byte whose value is 09.  There is no
1133 trailing separator following the last tuple.
1134 The total length is @code{count} bytes.
1135 @end table
1136
1137 @node Very Long String Record
1138 @section Very Long String Record
1139
1140 Old versions of SPSS limited string variables to a width of 255 bytes.
1141 For backward compatibility with these older versions, the system file
1142 format represents a string longer than 255 bytes, called a @dfn{very
1143 long string}, as a collection of strings no longer than 255 bytes
1144 each.  The strings concatenated to make a very long string are called
1145 its @dfn{segments}; for consistency, variables other than very long
1146 strings are considered to have a single segment.
1147
1148 A very long string with a width of @var{w} has @var{n} =
1149 (@var{w} + 251) / 252 segments, that is, one segment for every
1150 252 bytes of width, rounding up.  It would be logical, then, for each
1151 of the segments except the last to have a width of 252 and the last
1152 segment to have the remainder, but this is not the case.  In fact,
1153 each segment except the last has a width of 255 bytes.  The last
1154 segment has width @var{w} - (@var{n} - 1) * 252; some versions
1155 of SPSS make it slightly wider, but not wide enough to make the last
1156 segment require another 8 bytes of data.
1157
1158 Data is packed tightly into segments of a very long string, 255 bytes
1159 per segment.  Because 255 bytes of segment data are allocated for
1160 every 252 bytes of the very long string's width (approximately), some
1161 unused space is left over at the end of the allocated segments.  Data
1162 in unused space is ignored.
1163
1164 Example: Consider a very long string of width 20,000.  Such a very
1165 long string has 20,000 / 252 = 80 (rounding up) segments.  The first
1166 79 segments have width 255; the last segment has width 20,000 - 79 *
1167 252 = 92 or slightly wider (up to 96 bytes, the next multiple of 8).
1168 The very long string's data is actually stored in the 19,890 bytes in
1169 the first 78 segments, plus the first 110 bytes of the 79th segment
1170 (19,890 + 110 = 20,000).  The remaining 145 bytes of the 79th segment
1171 and all 92 bytes of the 80th segment are unused.
1172
1173 The very long string record explains how to stitch together segments
1174 to obtain very long string data.  For each of the very long string
1175 variables in the dictionary, it specifies the name of its first
1176 segment's variable and the very long string variable's actual width.
1177 The remaining segments immediately follow the named variable in the
1178 system file's dictionary.
1179
1180 The very long string record, which is present only if the system file
1181 contains very long string variables, has the following format:
1182
1183 @example
1184 /* @r{Header.} */
1185 int32               rec_type;
1186 int32               subtype;
1187 int32               size;
1188 int32               count;
1189
1190 /* @r{Exactly @code{count} bytes of data.} */
1191 char                string_lengths[];
1192 @end example
1193
1194 @table @code
1195 @item int32 rec_type;
1196 Record type.  Always set to 7.
1197
1198 @item int32 subtype;
1199 Record subtype.  Always set to 14.
1200
1201 @item int32 size;
1202 The size of each element in the @code{string_lengths} member. Always set to 1.
1203
1204 @item int32 count;
1205 The total number of bytes in @code{string_lengths}.
1206
1207 @item char string_lengths[];
1208 A list of @var{key}--@var{value} tuples, where @var{key} is the name
1209 of a variable, and @var{value} is its length.
1210 The @var{key} field is at most 8 bytes long and must match the
1211 name of a variable which appears in the variable record (@pxref{Variable
1212 Record}).
1213 The @var{value} field is exactly 5 bytes long. It is a zero-padded,
1214 ASCII-encoded string that is the length of the variable.
1215 The @var{key} and @var{value} fields are separated by a @samp{=} byte.
1216 Tuples are delimited by a two-byte sequence @{00, 09@}.
1217 After the last tuple, there may be a single byte 00, or @{00, 09@}.
1218 The total length is @code{count} bytes.
1219 @end table
1220
1221 @node Character Encoding Record
1222 @section Character Encoding Record
1223
1224 This record, if present, indicates the character encoding for string data,
1225 long variable names, variable labels, value labels and other strings in the
1226 file.
1227
1228 @example
1229 /* @r{Header.} */
1230 int32               rec_type;
1231 int32               subtype;
1232 int32               size;
1233 int32               count;
1234
1235 /* @r{Exactly @code{count} bytes of data.} */
1236 char                encoding[];
1237 @end example
1238
1239 @table @code
1240 @item int32 rec_type;
1241 Record type.  Always set to 7.
1242
1243 @item int32 subtype;
1244 Record subtype.  Always set to 20.
1245
1246 @item int32 size;
1247 The size of each element in the @code{encoding} member. Always set to 1.
1248
1249 @item int32 count;
1250 The total number of bytes in @code{encoding}.
1251
1252 @item char encoding[];
1253 The name of the character encoding.  Normally this will be an official
1254 IANA character set name or alias.
1255 See @url{http://www.iana.org/assignments/character-sets}.
1256 Character set names are not case-sensitive, but SPSS appears to write
1257 them in all-uppercase.
1258 @end table
1259
1260 This record is not present in files generated by older software.  See
1261 also the @code{character_code} field in the machine integer info
1262 record (@pxref{character-code}).
1263
1264 When the character encoding record and the machine integer info record
1265 are both present, all system files observed in practice indicate the
1266 same character encoding, e.g.@: 1252 as @code{character_code} and
1267 @code{windows-1252} as @code{encoding}, 65001 and @code{UTF-8}, etc.
1268
1269 If, for testing purposes, a file is crafted with different
1270 @code{character_code} and @code{encoding}, it seems that
1271 @code{character_code} controls the encoding for all strings in the
1272 system file before the dictionary termination record, including
1273 strings in data (e.g.@: string missing values), and @code{encoding}
1274 controls the encoding for strings following the dictionary termination
1275 record.
1276
1277 @node Long String Value Labels Record
1278 @section Long String Value Labels Record
1279
1280 This record, if present, specifies value labels for long string
1281 variables.
1282
1283 @example
1284 /* @r{Header.} */
1285 int32               rec_type;
1286 int32               subtype;
1287 int32               size;
1288 int32               count;
1289
1290 /* @r{Repeated up to exactly @code{count} bytes.} */
1291 int32               var_name_len;
1292 char                var_name[];
1293 int32               var_width;
1294 int32               n_labels;
1295 long_string_label   labels[];
1296 @end example
1297
1298 @table @code
1299 @item int32 rec_type;
1300 Record type.  Always set to 7.
1301
1302 @item int32 subtype;
1303 Record subtype.  Always set to 21.
1304
1305 @item int32 size;
1306 Always set to 1.
1307
1308 @item int32 count;
1309 The number of bytes following the header until the next header.
1310
1311 @item int32 var_name_len;
1312 @itemx char var_name[];
1313 The number of bytes in the name of the variable that has long string
1314 value labels, plus the variable name itself, which consists of exactly
1315 @code{var_name_len} bytes.  The variable name is not padded to any
1316 particular boundary, nor is it null-terminated.
1317
1318 @item int32 var_width;
1319 The width of the variable, in bytes, which will be between 9 and
1320 32767.
1321
1322 @item int32 n_labels;
1323 @itemx long_string_label labels[];
1324 The long string labels themselves.  The @code{labels} array contains
1325 exactly @code{n_labels} elements, each of which has the following
1326 substructure:
1327
1328 @example
1329 int32               value_len;
1330 char                value[];
1331 int32               label_len;
1332 char                label[];
1333 @end example
1334
1335 @table @code
1336 @item int32 value_len;
1337 @itemx char value[];
1338 The string value being labeled.  @code{value_len} is the number of
1339 bytes in @code{value}; it is equal to @code{var_width}.  The
1340 @code{value} array is not padded or null-terminated.
1341
1342 @item int32 label_len;
1343 @itemx char label[];
1344 The label for the string value.  @code{label_len}, which must be
1345 between 0 and 120, is the number of bytes in @code{label}.  The
1346 @code{label} array is not padded or null-terminated.
1347 @end table
1348 @end table
1349
1350 @node Long String Missing Values Record
1351 @section Long String Missing Values Record
1352
1353 This record, if present, specifies missing values for long string
1354 variables.
1355
1356 @example
1357 /* @r{Header.} */
1358 int32               rec_type;
1359 int32               subtype;
1360 int32               size;
1361 int32               count;
1362
1363 /* @r{Repeated up to exactly @code{count} bytes.} */
1364 int32               var_name_len;
1365 char                var_name[];
1366 char                n_missing_values;
1367 int32               value_len;
1368 char                values[values_len * n_missing_values];
1369 @end example
1370
1371 @table @code
1372 @item int32 rec_type;
1373 Record type.  Always set to 7.
1374
1375 @item int32 subtype;
1376 Record subtype.  Always set to 22.
1377
1378 @item int32 size;
1379 Always set to 1.
1380
1381 @item int32 count;
1382 The number of bytes following the header until the next header.
1383
1384 @item int32 var_name_len;
1385 @itemx char var_name[];
1386 The number of bytes in the name of the long string variable that has
1387 missing values, plus the variable name itself, which consists of
1388 exactly @code{var_name_len} bytes.  The variable name is not padded to
1389 any particular boundary, nor is it null-terminated.
1390
1391 @item char n_missing_values;
1392 The number of missing values, either 1, 2, or 3.  (This is, unusually,
1393 a single byte instead of a 32-bit number.)
1394
1395 @item int32 value_len;
1396 The length of each missing value string, in bytes.  This value should
1397 be 8, because long string variables are at least 8 bytes wide (by
1398 definition), only the first 8 bytes of a long string variable's
1399 missing values are allowed to be non-spaces, and any spaces within the
1400 first 8 bytes are included in the missing value here.
1401
1402 @item char values[values_len * n_missing_values]
1403 The missing values themselves, without any padding or null
1404 terminators.
1405 @end table
1406
1407 An earlier version of this document stated that @code{value_len} was
1408 repeated before each of the missing values, so that there was an extra
1409 @code{int32} value of 8 before each missing value after the first.
1410 Old versions of PSPP wrote data files in this format.  Readers can
1411 tolerate this mistake, if they wish, by noticing and skipping the
1412 extra @code{int32} values, which wouldn't ordinarily occur in strings.
1413
1414 @node Data File and Variable Attributes Records
1415 @section Data File and Variable Attributes Records
1416
1417 The data file and variable attributes records represent custom
1418 attributes for the system file or for individual variables in the
1419 system file, as defined on the DATAFILE ATTRIBUTE (@pxref{DATAFILE
1420 ATTRIBUTE,,,pspp, PSPP Users Guide}) and VARIABLE ATTRIBUTE commands
1421 (@pxref{VARIABLE ATTRIBUTE,,,pspp, PSPP Users Guide}), respectively.
1422
1423 @example
1424 /* @r{Header.} */
1425 int32               rec_type;
1426 int32               subtype;
1427 int32               size;
1428 int32               count;
1429
1430 /* @r{Exactly @code{count} bytes of data.} */
1431 char                attributes[];
1432 @end example
1433
1434 @table @code
1435 @item int32 rec_type;
1436 Record type.  Always set to 7.
1437
1438 @item int32 subtype;
1439 Record subtype.  Always set to 17 for a data file attribute record or
1440 to 18 for a variable attributes record.
1441
1442 @item int32 size;
1443 The size of each element in the @code{attributes} member. Always set to 1.
1444
1445 @item int32 count;
1446 The total number of bytes in @code{attributes}.
1447
1448 @item char attributes[];
1449 The attributes, in a text-based format.
1450
1451 In record subtype 17, this field contains a single attribute set.  An
1452 attribute set is a sequence of one or more attributes concatenated
1453 together.  Each attribute consists of a name, which has the same
1454 syntax as a variable name, followed by, inside parentheses, a sequence
1455 of one or more values.  Each value consists of a string enclosed in
1456 single quotes (@code{'}) followed by a line feed (byte 0x0a).  A value
1457 may contain single quote characters, which are not themselves escaped
1458 or quoted or required to be present in pairs.  There is no apparent
1459 way to embed a line feed in a value.  There is no distinction between
1460 an attribute with a single value and an attribute array with one
1461 element.
1462
1463 In record subtype 18, this field contains a sequence of one or more
1464 variable attribute sets.  If more than one variable attribute set is
1465 present, each one after the first is delimited from the previous by
1466 @code{/}.  Each variable attribute set consists of a long
1467 variable name,
1468 followed by @code{:}, followed by an attribute set with the same
1469 syntax as on record subtype 17.
1470
1471 System files written by @code{Stata 14.1/-savespss- 1.77 by
1472 S.Radyakin} may include multiple records with subtype 18, one per
1473 variable that has variable attributes.
1474
1475 The total length is @code{count} bytes.
1476 @end table
1477
1478 @subheading Example
1479
1480 A system file produced with the following VARIABLE ATTRIBUTE commands
1481 in effect:
1482
1483 @example
1484 VARIABLE ATTRIBUTE VARIABLES=dummy ATTRIBUTE=fred[1]('23') fred[2]('34').
1485 VARIABLE ATTRIBUTE VARIABLES=dummy ATTRIBUTE=bert('123').
1486 @end example
1487
1488 @noindent
1489 will contain a variable attribute record with the following contents:
1490
1491 @example
1492 0000  07 00 00 00 12 00 00 00  01 00 00 00 22 00 00 00  |............"...|
1493 0010  64 75 6d 6d 79 3a 66 72  65 64 28 27 32 33 27 0a  |dummy:fred('23'.|
1494 0020  27 33 34 27 0a 29 62 65  72 74 28 27 31 32 33 27  |'34'.)bert('123'|
1495 0030  0a 29                                             |.)              |
1496 @end example
1497
1498 @menu
1499 * Variable Roles::
1500 @end menu
1501
1502 @node Variable Roles
1503 @subsection Variable Roles
1504
1505 A variable's role is represented as an attribute named @code{$@@Role}.
1506 This attribute has a single element whose values and their meanings
1507 are:
1508
1509 @table @code
1510 @item 0
1511 Input.  This, the default, is the most common role.
1512 @item 1
1513 Output.
1514 @item 2
1515 Both.
1516 @item 3
1517 None.
1518 @item 4
1519 Partition.
1520 @item 5
1521 Split.
1522 @end table
1523
1524 @node Extended Number of Cases Record
1525 @section Extended Number of Cases Record
1526
1527 The file header record expresses the number of cases in the system
1528 file as an int32 (@pxref{File Header Record}).  This record allows the
1529 number of cases in the system file to be expressed as a 64-bit number.
1530
1531 @example
1532 int32               rec_type;
1533 int32               subtype;
1534 int32               size;
1535 int32               count;
1536 int64               unknown;
1537 int64               ncases64;
1538 @end example
1539
1540 @table @code
1541 @item int32 rec_type;
1542 Record type.  Always set to 7.
1543
1544 @item int32 subtype;
1545 Record subtype.  Always set to 16.
1546
1547 @item int32 size;
1548 Size of each element.  Always set to 8.
1549
1550 @item int32 count;
1551 Number of pieces of data in the data part.  Alway set to 2.
1552
1553 @item int64 unknown;
1554 Meaning unknown.  Always set to 1.
1555
1556 @item int64 ncases64;
1557 Number of cases in the file as a 64-bit integer.  Presumably this
1558 could be -1 to indicate that the number of cases is unknown, for the
1559 same reason as @code{ncases} in the file header record, but this has
1560 not been observed in the wild.
1561 @end table
1562
1563 @node Other Informational Records
1564 @section Other Informational Records
1565
1566 This chapter documents many specific types of extension records are
1567 documented here, but others are known to exist.  PSPP ignores unknown
1568 extension records when reading system files.
1569
1570 The following extension record subtypes have also been observed, with
1571 the following believed meanings:
1572
1573 @table @asis
1574 @item 6
1575 Date info, probably related to USE (according to Aapi H@"am@"al@"ainen).
1576
1577 @item 12
1578 A UUID in the format described in RFC 4122.  Only two examples
1579 observed, both written by SPSS 13, and in each case the UUID contained
1580 both upper and lower case.
1581
1582 @item 24
1583 XML that describes how data in the file should be displayed on-screen.
1584 @end table
1585
1586 @node Dictionary Termination Record
1587 @section Dictionary Termination Record
1588
1589 The dictionary termination record separates all other records from the
1590 data records.
1591
1592 @example
1593 int32               rec_type;
1594 int32               filler;
1595 @end example
1596
1597 @table @code
1598 @item int32 rec_type;
1599 Record type.  Always set to 999.
1600
1601 @item int32 filler;
1602 Ignored padding.  Should be set to 0.
1603 @end table
1604
1605 @node Data Record
1606 @section Data Record
1607
1608 The data record must follow all other records in the system file.
1609 Every system file must have a data record that specifies data for at
1610 least one case.  The format of the data record varies depending on the
1611 value of @code{compression} in the file header record:
1612
1613 @table @asis
1614 @item 0: no compression
1615 Data is arranged as a series of 8-byte elements.
1616 Each element corresponds to
1617 the variable declared in the respective variable record (@pxref{Variable
1618 Record}).  Numeric values are given in @code{flt64} format; string
1619 values are literal characters string, padded on the right when
1620 necessary to fill out 8-byte units.
1621
1622 @item 1: bytecode compression
1623 The first 8 bytes
1624 of the data record is divided into a series of 1-byte command
1625 codes.  These codes have meanings as described below:
1626
1627 @table @asis
1628 @item 0
1629 Ignored.  If the program writing the system file accumulates compressed
1630 data in blocks of fixed length, 0 bytes can be used to pad out extra
1631 bytes remaining at the end of a fixed-size block.
1632
1633 @item 1 through 251
1634 A number with
1635 value @var{code} - @var{bias}, where
1636 @var{code} is the value of the compression code and @var{bias} is the
1637 variable @code{bias} from the file header.  For example,
1638 code 105 with bias 100.0 (the normal value) indicates a numeric variable
1639 of value 5.
1640
1641 A code of 0 (after subtracting the bias) in a string field encodes
1642 null bytes.  This is unusual, since a string field normally encodes
1643 text data, but it exists in real system files.
1644
1645 @item 252
1646 End of file.  This code may or may not appear at the end of the data
1647 stream.  PSPP always outputs this code but its use is not required.
1648
1649 @item 253
1650 A numeric or string value that is not
1651 compressible.  The value is stored in the 8 bytes following the
1652 current block of command bytes.  If this value appears twice in a block
1653 of command bytes, then it indicates the second group of 8 bytes following the
1654 command bytes, and so on.
1655
1656 @item 254
1657 An 8-byte string value that is all spaces.
1658
1659 @item 255
1660 The system-missing value.
1661 @end table
1662
1663 The end of the 8-byte group of bytecodes is followed by any 8-byte
1664 blocks of non-compressible values indicated by code 253.  After that
1665 follows another 8-byte group of bytecodes, then those bytecodes'
1666 non-compressible values.  The pattern repeats to the end of the file
1667 or a code with value 252.
1668
1669 @item 2: ZLIB compression
1670 The data record consists of the following, in order:
1671
1672 @itemize @bullet
1673 @item
1674 ZLIB data header, 24 bytes long.
1675
1676 @item
1677 One or more variable-length blocks of ZLIB compressed data.
1678
1679 @item
1680 ZLIB data trailer, with a 24-byte fixed header plus an additional 24
1681 bytes for each preceding ZLIB compressed data block.
1682 @end itemize
1683
1684 The ZLIB data header has the following format:
1685
1686 @example
1687 int64               zheader_ofs;
1688 int64               ztrailer_ofs;
1689 int64               ztrailer_len;
1690 @end example
1691
1692 @table @code
1693 @item int64 zheader_ofs;
1694 The offset, in bytes, of the beginning of this structure within the
1695 system file.
1696
1697 @item int64 ztrailer_ofs;
1698 The offset, in bytes, of the first byte of the ZLIB data trailer.
1699
1700 @item int64 ztrailer_len;
1701 The number of bytes in the ZLIB data trailer.  This and the previous
1702 field sum to the size of the system file in bytes.
1703 @end table
1704
1705 The data header is followed by @code{(ztrailer_len - 24) / 24} ZLIB
1706 compressed data blocks.  Each ZLIB compressed data block begins with a
1707 ZLIB header as specified in RFC@tie{}1950, e.g.@: hex bytes @code{78
1708 01} (the only header yet observed in practice).  Each block
1709 decompresses to a fixed number of bytes (in practice only
1710 @code{0x3ff000}-byte blocks have been observed), except that the last
1711 block of data may be shorter.  The last ZLIB compressed data block
1712 gends just before offset @code{ztrailer_ofs}.
1713
1714 The result of ZLIB decompression is bytecode compressed data as
1715 described above for compression format 1.
1716
1717 The ZLIB data trailer begins with the following 24-byte fixed header:
1718
1719 @example
1720 int64               bias;
1721 int64               zero;
1722 int32               block_size;
1723 int32               n_blocks;
1724 @end example
1725
1726 @table @code
1727 @item int64 int_bias;
1728 The compression bias as a negative integer, e.g.@: if @code{bias} in
1729 the file header record is 100.0, then @code{int_bias} is @minus{}100
1730 (this is the only value yet observed in practice).
1731
1732 @item int64 zero;
1733 Always observed to be zero.
1734
1735 @item int32 block_size;
1736 The number of bytes in each ZLIB compressed data block, except
1737 possibly the last, following decompression.  Only @code{0x3ff000} has
1738 been observed so far.
1739
1740 @item int32 n_blocks;
1741 The number of ZLIB compressed data blocks, always exactly
1742 @code{(ztrailer_len - 24) / 24}.
1743 @end table
1744
1745 The fixed header is followed by @code{n_blocks} 24-byte ZLIB data
1746 block descriptors, each of which describes the compressed data block
1747 corresponding to its offset.  Each block descriptor has the following
1748 format:
1749
1750 @example
1751 int64               uncompressed_ofs;
1752 int64               compressed_ofs;
1753 int32               uncompressed_size;
1754 int32               compressed_size;
1755 @end example
1756
1757 @table @code
1758 @item int64 uncompressed_ofs;
1759 The offset, in bytes, that this block of data would have in a similar
1760 system file that uses compression format 1.  This is
1761 @code{zheader_ofs} in the first block descriptor, and in each
1762 succeeding block descriptor it is the sum of the previous desciptor's
1763 @code{uncompressed_ofs} and @code{uncompressed_size}.
1764
1765 @item int64 compressed_ofs;
1766 The offset, in bytes, of the actual beginning of this compressed data
1767 block.  This is @code{zheader_ofs + 24} in the first block descriptor,
1768 and in each succeeding block descriptor it is the sum of the previous
1769 descriptor's @code{compressed_ofs} and @code{compressed_size}.  The
1770 final block descriptor's @code{compressed_ofs} and
1771 @code{compressed_size} sum to @code{ztrailer_ofs}.
1772
1773 @item int32 uncompressed_size;
1774 The number of bytes in this data block, after decompression.  This is
1775 @code{block_size} in every data block except the last, which may be
1776 smaller.
1777
1778 @item int32 compressed_size;
1779 The number of bytes in this data block, as stored compressed in this
1780 system file.
1781 @end table
1782 @end table
1783
1784 @setfilename ignored