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