sys-file-reader: Change some errors to warnings.
[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 The system missing value.
750
751 @item flt64 highest;
752 The value used for HIGHEST in missing values.
753
754 @item flt64 lowest;
755 The value used for LOWEST in missing values.
756 @end table
757
758 @node Multiple Response Sets Records
759 @section Multiple Response Sets Records
760
761 The system file format has two different types of records that
762 represent multiple response sets (@pxref{MRSETS,,,pspp, PSPP Users
763 Guide}).  The first type of record describes multiple response sets
764 that can be understood by SPSS before version 14.  The second type of
765 record, with a closely related format, is used for multiple dichotomy
766 sets that use the CATEGORYLABELS=COUNTEDVALUES feature added in
767 version 14.
768
769 @example
770 /* @r{Header.} */
771 int32               rec_type;
772 int32               subtype;
773 int32               size;
774 int32               count;
775
776 /* @r{Exactly @code{count} bytes of data.} */
777 char                mrsets[];
778 @end example
779
780 @table @code
781 @item int32 rec_type;
782 Record type.  Always set to 7.
783
784 @item int32 subtype;
785 Record subtype.  Set to 7 for records that describe multiple response
786 sets understood by SPSS before version 14, or to 19 for records that
787 describe dichotomy sets that use the CATEGORYLABELS=COUNTEDVALUES
788 feature added in version 14.
789
790 @item int32 size;
791 The size of each element in the @code{mrsets} member. Always set to 1.
792
793 @item int32 count;
794 The total number of bytes in @code{mrsets}.
795
796 @item char mrsets[];
797 Zero or more line feeds (byte 0x0a), followed by a series of multiple
798 response sets, each of which consists of the following:
799
800 @itemize @bullet
801 @item
802 The set's name (an identifier that begins with @samp{$}), in mixed
803 upper and lower case.
804
805 @item
806 An equals sign (@samp{=}).
807
808 @item
809 @samp{C} for a multiple category set, @samp{D} for a multiple
810 dichotomy set with CATEGORYLABELS=VARLABELS, or @samp{E} for a
811 multiple dichotomy set with CATEGORYLABELS=COUNTEDVALUES.
812
813 @item
814 For a multiple dichotomy set with CATEGORYLABELS=COUNTEDVALUES, a
815 space, followed by a number expressed as decimal digits, followed by a
816 space.  If LABELSOURCE=VARLABEL was specified on MRSETS, then the
817 number is 11; otherwise it is 1.@footnote{This part of the format may
818 not be fully understood, because only a single example of each
819 possibility has been examined.}
820
821 @item
822 For either kind of multiple dichotomy set, the counted value, as a
823 positive integer count specified as decimal digits, followed by a
824 space, followed by as many string bytes as specified in the count.  If
825 the set contains numeric variables, the string consists of the counted
826 integer value expressed as decimal digits.  If the set contains string
827 variables, the string contains the counted string value.  Either way,
828 the string may be padded on the right with spaces (older versions of
829 SPSS seem to always pad to a width of 8 bytes; newer versions don't).
830
831 @item
832 A space.
833
834 @item
835 The multiple response set's label, using the same format as for the
836 counted value for multiple dichotomy sets.  A string of length 0 means
837 that the set does not have a label.  A string of length 0 is also
838 written if LABELSOURCE=VARLABEL was specified.
839
840 @item
841 A space.
842
843 @item
844 The short names of the variables in the set, converted to lowercase,
845 each separated from the previous by a single space.
846
847 Even though a multiple response set must have at least two variables,
848 some system files contain multiple response sets with no variables at
849 all.  The source and meaning of these multiple response sets is
850 unknown.  (Perhaps they arise from creating a multiple response set
851 then deleting all the variables that it contains?)
852
853 @item
854 One line feed (byte 0x0a).  Sometimes multiple, even hundreds, of line
855 feeds are present.
856 @end itemize
857 @end table
858
859 Example: Given appropriate variable definitions, consider the
860 following MRSETS command:
861
862 @example
863 MRSETS /MCGROUP NAME=$a LABEL='my mcgroup' VARIABLES=a b c
864        /MDGROUP NAME=$b VARIABLES=g e f d VALUE=55
865        /MDGROUP NAME=$c LABEL='mdgroup #2' VARIABLES=h i j VALUE='Yes'
866        /MDGROUP NAME=$d LABEL='third mdgroup' CATEGORYLABELS=COUNTEDVALUES
867         VARIABLES=k l m VALUE=34
868        /MDGROUP NAME=$e CATEGORYLABELS=COUNTEDVALUES LABELSOURCE=VARLABEL
869         VARIABLES=n o p VALUE='choice'.
870 @end example
871
872 The above would generate the following multiple response set record of
873 subtype 7:
874
875 @example
876 $a=C 10 my mcgroup a b c
877 $b=D2 55 0  g e f d
878 $c=D3 Yes 10 mdgroup #2 h i j
879 @end example
880
881 It would also generate the following multiple response set record with
882 subtype 19:
883
884 @example
885 $d=E 1 2 34 13 third mdgroup k l m
886 $e=E 11 6 choice 0  n o p
887 @end example
888
889 @node Extra Product Info Record
890 @section Extra Product Info Record
891
892 This optional record appears to contain a text string that describes
893 the program that wrote the file and the source of the data.  (This is
894 redundant with the file label and product info found in the file
895 header record.)
896
897 @example
898 /* @r{Header.} */
899 int32               rec_type;
900 int32               subtype;
901 int32               size;
902 int32               count;
903
904 /* @r{Exactly @code{count} bytes of data.} */
905 char                info[];
906 @end example
907
908 @table @code
909 @item int32 rec_type;
910 Record type.  Always set to 7.
911
912 @item int32 subtype;
913 Record subtype.  Always set to 10.
914
915 @item int32 size;
916 The size of each element in the @code{info} member. Always set to 1.
917
918 @item int32 count;
919 The total number of bytes in @code{info}.
920
921 @item char info[];
922 A text string.  A product that identifies itself as @code{VOXCO
923 INTERVIEWER 4.3} uses CR-only line ends in this field, rather than the
924 more usual LF-only or CR LF line ends.
925 @end table
926
927 @node Variable Display Parameter Record
928 @section Variable Display Parameter Record
929
930 The variable display parameter record, if present, has the following
931 format:
932
933 @example
934 /* @r{Header.} */
935 int32               rec_type;
936 int32               subtype;
937 int32               size;
938 int32               count;
939
940 /* @r{Repeated @code{count} times}. */
941 int32               measure;
942 int32               width;           /* @r{Not always present.} */
943 int32               alignment;
944 @end example
945
946 @table @code
947 @item int32 rec_type;
948 Record type.  Always set to 7.
949
950 @item int32 subtype;
951 Record subtype.  Always set to 11.
952
953 @item int32 size;
954 The size of @code{int32}.  Always set to 4.
955
956 @item int32 count;
957 The number of sets of variable display parameters (ordinarily the
958 number of variables in the dictionary), times 2 or 3.
959 @end table
960
961 The remaining members are repeated @code{count} times, in the same
962 order as the variable records.  No element corresponds to variable
963 records that continue long string variables.  The meanings of these
964 members are as follows:
965
966 @table @code
967 @item int32 measure;
968 The measurement type of the variable:
969 @table @asis
970 @item 1
971 Nominal Scale
972 @item 2
973 Ordinal Scale
974 @item 3
975 Continuous Scale
976 @end table
977
978 SPSS sometimes writes a @code{measure} of 0.  PSPP interprets this as
979 nominal scale.
980
981 @item int32 width;
982 The width of the display column for the variable in characters.
983
984 This field is present if @var{count} is 3 times the number of
985 variables in the dictionary.  It is omitted if @var{count} is 2 times
986 the number of variables.
987
988 @item int32 alignment;
989 The alignment of the variable for display purposes:
990
991 @table @asis
992 @item 0
993 Left aligned
994 @item 1
995 Right aligned
996 @item 2
997 Centre aligned
998 @end table
999 @end table
1000
1001 @node Long Variable Names Record
1002 @section Long Variable Names Record
1003
1004 If present, the long variable names record has the following format:
1005
1006 @example
1007 /* @r{Header.} */
1008 int32               rec_type;
1009 int32               subtype;
1010 int32               size;
1011 int32               count;
1012
1013 /* @r{Exactly @code{count} bytes of data.} */
1014 char                var_name_pairs[];
1015 @end example
1016
1017 @table @code
1018 @item int32 rec_type;
1019 Record type.  Always set to 7.
1020
1021 @item int32 subtype;
1022 Record subtype.  Always set to 13.
1023
1024 @item int32 size;
1025 The size of each element in the @code{var_name_pairs} member. Always set to 1.
1026
1027 @item int32 count;
1028 The total number of bytes in @code{var_name_pairs}.
1029
1030 @item char var_name_pairs[];
1031 A list of @var{key}--@var{value} tuples, where @var{key} is the name
1032 of a variable, and @var{value} is its long variable name.
1033 The @var{key} field is at most 8 bytes long and must match the
1034 name of a variable which appears in the variable record (@pxref{Variable
1035 Record}).
1036 The @var{value} field is at most 64 bytes long.
1037 The @var{key} and @var{value} fields are separated by a @samp{=} byte.
1038 Each tuple is separated by a byte whose value is 09.  There is no
1039 trailing separator following the last tuple.
1040 The total length is @code{count} bytes.
1041 @end table
1042
1043 @node Very Long String Record
1044 @section Very Long String Record
1045
1046 Old versions of SPSS limited string variables to a width of 255 bytes.
1047 For backward compatibility with these older versions, the system file
1048 format represents a string longer than 255 bytes, called a @dfn{very
1049 long string}, as a collection of strings no longer than 255 bytes
1050 each.  The strings concatenated to make a very long string are called
1051 its @dfn{segments}; for consistency, variables other than very long
1052 strings are considered to have a single segment.
1053
1054 A very long string with a width of @var{w} has @var{n} =
1055 (@var{w} + 251) / 252 segments, that is, one segment for every
1056 252 bytes of width, rounding up.  It would be logical, then, for each
1057 of the segments except the last to have a width of 252 and the last
1058 segment to have the remainder, but this is not the case.  In fact,
1059 each segment except the last has a width of 255 bytes.  The last
1060 segment has width @var{w} - (@var{n} - 1) * 252; some versions
1061 of SPSS make it slightly wider, but not wide enough to make the last
1062 segment require another 8 bytes of data.
1063
1064 Data is packed tightly into segments of a very long string, 255 bytes
1065 per segment.  Because 255 bytes of segment data are allocated for
1066 every 252 bytes of the very long string's width (approximately), some
1067 unused space is left over at the end of the allocated segments.  Data
1068 in unused space is ignored.
1069
1070 Example: Consider a very long string of width 20,000.  Such a very
1071 long string has 20,000 / 252 = 80 (rounding up) segments.  The first
1072 79 segments have width 255; the last segment has width 20,000 - 79 *
1073 252 = 92 or slightly wider (up to 96 bytes, the next multiple of 8).
1074 The very long string's data is actually stored in the 19,890 bytes in
1075 the first 78 segments, plus the first 110 bytes of the 79th segment
1076 (19,890 + 110 = 20,000).  The remaining 145 bytes of the 79th segment
1077 and all 92 bytes of the 80th segment are unused.
1078
1079 The very long string record explains how to stitch together segments
1080 to obtain very long string data.  For each of the very long string
1081 variables in the dictionary, it specifies the name of its first
1082 segment's variable and the very long string variable's actual width.
1083 The remaining segments immediately follow the named variable in the
1084 system file's dictionary.
1085
1086 The very long string record, which is present only if the system file
1087 contains very long string variables, has the following format:
1088
1089 @example
1090 /* @r{Header.} */
1091 int32               rec_type;
1092 int32               subtype;
1093 int32               size;
1094 int32               count;
1095
1096 /* @r{Exactly @code{count} bytes of data.} */
1097 char                string_lengths[];
1098 @end example
1099
1100 @table @code
1101 @item int32 rec_type;
1102 Record type.  Always set to 7.
1103
1104 @item int32 subtype;
1105 Record subtype.  Always set to 14.
1106
1107 @item int32 size;
1108 The size of each element in the @code{string_lengths} member. Always set to 1.
1109
1110 @item int32 count;
1111 The total number of bytes in @code{string_lengths}.
1112
1113 @item char string_lengths[];
1114 A list of @var{key}--@var{value} tuples, where @var{key} is the name
1115 of a variable, and @var{value} is its length.
1116 The @var{key} field is at most 8 bytes long and must match the
1117 name of a variable which appears in the variable record (@pxref{Variable
1118 Record}).
1119 The @var{value} field is exactly 5 bytes long. It is a zero-padded,
1120 ASCII-encoded string that is the length of the variable.
1121 The @var{key} and @var{value} fields are separated by a @samp{=} byte.
1122 Tuples are delimited by a two-byte sequence @{00, 09@}.
1123 After the last tuple, there may be a single byte 00, or @{00, 09@}.
1124 The total length is @code{count} bytes.
1125 @end table
1126
1127 @node Character Encoding Record
1128 @section Character Encoding Record
1129
1130 This record, if present, indicates the character encoding for string data,
1131 long variable names, variable labels, value labels and other strings in the
1132 file.
1133
1134 @example
1135 /* @r{Header.} */
1136 int32               rec_type;
1137 int32               subtype;
1138 int32               size;
1139 int32               count;
1140
1141 /* @r{Exactly @code{count} bytes of data.} */
1142 char                encoding[];
1143 @end example
1144
1145 @table @code
1146 @item int32 rec_type;
1147 Record type.  Always set to 7.
1148
1149 @item int32 subtype;
1150 Record subtype.  Always set to 20.
1151
1152 @item int32 size;
1153 The size of each element in the @code{encoding} member. Always set to 1.
1154
1155 @item int32 count;
1156 The total number of bytes in @code{encoding}.
1157
1158 @item char encoding[];
1159 The name of the character encoding.  Normally this will be an official
1160 IANA character set name or alias.
1161 See @url{http://www.iana.org/assignments/character-sets}.
1162 Character set names are not case-sensitive, but SPSS appears to write
1163 them in all-uppercase.
1164 @end table
1165
1166 This record is not present in files generated by older software.  See
1167 also the @code{character_code} field in the machine integer info
1168 record (@pxref{character-code}).
1169
1170 When the character encoding record and the machine integer info record
1171 are both present, all system files observed in practice indicate the
1172 same character encoding, e.g.@: 1252 as @code{character_code} and
1173 @code{windows-1252} as @code{encoding}, 65001 and @code{UTF-8}, etc.
1174
1175 If, for testing purposes, a file is crafted with different
1176 @code{character_code} and @code{encoding}, it seems that
1177 @code{character_code} controls the encoding for all strings in the
1178 system file before the dictionary termination record, including
1179 strings in data (e.g.@: string missing values), and @code{encoding}
1180 controls the encoding for strings following the dictionary termination
1181 record.
1182
1183 @node Long String Value Labels Record
1184 @section Long String Value Labels Record
1185
1186 This record, if present, specifies value labels for long string
1187 variables.
1188
1189 @example
1190 /* @r{Header.} */
1191 int32               rec_type;
1192 int32               subtype;
1193 int32               size;
1194 int32               count;
1195
1196 /* @r{Repeated up to exactly @code{count} bytes.} */
1197 int32               var_name_len;
1198 char                var_name[];
1199 int32               var_width;
1200 int32               n_labels;
1201 long_string_label   labels[];
1202 @end example
1203
1204 @table @code
1205 @item int32 rec_type;
1206 Record type.  Always set to 7.
1207
1208 @item int32 subtype;
1209 Record subtype.  Always set to 21.
1210
1211 @item int32 size;
1212 Always set to 1.
1213
1214 @item int32 count;
1215 The number of bytes following the header until the next header.
1216
1217 @item int32 var_name_len;
1218 @itemx char var_name[];
1219 The number of bytes in the name of the variable that has long string
1220 value labels, plus the variable name itself, which consists of exactly
1221 @code{var_name_len} bytes.  The variable name is not padded to any
1222 particular boundary, nor is it null-terminated.
1223
1224 @item int32 var_width;
1225 The width of the variable, in bytes, which will be between 9 and
1226 32767.
1227
1228 @item int32 n_labels;
1229 @itemx long_string_label labels[];
1230 The long string labels themselves.  The @code{labels} array contains
1231 exactly @code{n_labels} elements, each of which has the following
1232 substructure:
1233
1234 @example
1235 int32               value_len;
1236 char                value[];
1237 int32               label_len;
1238 char                label[];
1239 @end example
1240
1241 @table @code
1242 @item int32 value_len;
1243 @itemx char value[];
1244 The string value being labeled.  @code{value_len} is the number of
1245 bytes in @code{value}; it is equal to @code{var_width}.  The
1246 @code{value} array is not padded or null-terminated.
1247
1248 @item int32 label_len;
1249 @itemx char label[];
1250 The label for the string value.  @code{label_len}, which must be
1251 between 0 and 120, is the number of bytes in @code{label}.  The
1252 @code{label} array is not padded or null-terminated.
1253 @end table
1254 @end table
1255
1256 @node Long String Missing Values Record
1257 @section Long String Missing Values Record
1258
1259 This record, if present, specifies missing values for long string
1260 variables.
1261
1262 @example
1263 /* @r{Header.} */
1264 int32               rec_type;
1265 int32               subtype;
1266 int32               size;
1267 int32               count;
1268
1269 /* @r{Repeated up to exactly @code{count} bytes.} */
1270 int32               var_name_len;
1271 char                var_name[];
1272 char                n_missing_values;
1273 long_string_missing_value   values[];
1274 @end example
1275
1276 @table @code
1277 @item int32 rec_type;
1278 Record type.  Always set to 7.
1279
1280 @item int32 subtype;
1281 Record subtype.  Always set to 22.
1282
1283 @item int32 size;
1284 Always set to 1.
1285
1286 @item int32 count;
1287 The number of bytes following the header until the next header.
1288
1289 @item int32 var_name_len;
1290 @itemx char var_name[];
1291 The number of bytes in the name of the long string variable that has
1292 missing values, plus the variable name itself, which consists of
1293 exactly @code{var_name_len} bytes.  The variable name is not padded to
1294 any particular boundary, nor is it null-terminated.
1295
1296 @item char n_missing_values;
1297 The number of missing values, either 1, 2, or 3.  (This is, unusually,
1298 a single byte instead of a 32-bit number.)
1299
1300 @item long_string_missing_value values[];
1301 The missing values themselves.  This array contains exactly
1302 @code{n_missing_values} elements, each of which has the following
1303 substructure:
1304
1305 @example
1306 int32               value_len;
1307 char                value[];
1308 @end example
1309
1310 @table @code
1311 @item int32 value_len;
1312 The length of the missing value string, in bytes.  This value should
1313 be 8, because long string variables are at least 8 bytes wide (by
1314 definition), only the first 8 bytes of a long string variable's
1315 missing values are allowed to be non-spaces, and any spaces within the
1316 first 8 bytes are included in the missing value here.
1317
1318 @item char value[];
1319 The missing value string, exactly @code{value_len} bytes, without
1320 any padding or null terminator.
1321 @end table
1322 @end table
1323
1324 @node Data File and Variable Attributes Records
1325 @section Data File and Variable Attributes Records
1326
1327 The data file and variable attributes records represent custom
1328 attributes for the system file or for individual variables in the
1329 system file, as defined on the DATAFILE ATTRIBUTE (@pxref{DATAFILE
1330 ATTRIBUTE,,,pspp, PSPP Users Guide}) and VARIABLE ATTRIBUTE commands
1331 (@pxref{VARIABLE ATTRIBUTE,,,pspp, PSPP Users Guide}), respectively.
1332
1333 @example
1334 /* @r{Header.} */
1335 int32               rec_type;
1336 int32               subtype;
1337 int32               size;
1338 int32               count;
1339
1340 /* @r{Exactly @code{count} bytes of data.} */
1341 char                attributes[];
1342 @end example
1343
1344 @table @code
1345 @item int32 rec_type;
1346 Record type.  Always set to 7.
1347
1348 @item int32 subtype;
1349 Record subtype.  Always set to 17 for a data file attribute record or
1350 to 18 for a variable attributes record.
1351
1352 @item int32 size;
1353 The size of each element in the @code{attributes} member. Always set to 1.
1354
1355 @item int32 count;
1356 The total number of bytes in @code{attributes}.
1357
1358 @item char attributes[];
1359 The attributes, in a text-based format.
1360
1361 In record type 17, this field contains a single attribute set.  An
1362 attribute set is a sequence of one or more attributes concatenated
1363 together.  Each attribute consists of a name, which has the same
1364 syntax as a variable name, followed by, inside parentheses, a sequence
1365 of one or more values.  Each value consists of a string enclosed in
1366 single quotes (@code{'}) followed by a line feed (byte 0x0a).  A value
1367 may contain single quote characters, which are not themselves escaped
1368 or quoted or required to be present in pairs.  There is no apparent
1369 way to embed a line feed in a value.  There is no distinction between
1370 an attribute with a single value and an attribute array with one
1371 element.
1372
1373 In record type 18, this field contains a sequence of one or more
1374 variable attribute sets.  If more than one variable attribute set is
1375 present, each one after the first is delimited from the previous by
1376 @code{/}.  Each variable attribute set consists of a long
1377 variable name,
1378 followed by @code{:}, followed by an attribute set with the same
1379 syntax as on record type 17.
1380
1381 The total length is @code{count} bytes.
1382 @end table
1383
1384 @subheading Example
1385
1386 A system file produced with the following VARIABLE ATTRIBUTE commands
1387 in effect:
1388
1389 @example
1390 VARIABLE ATTRIBUTE VARIABLES=dummy ATTRIBUTE=fred[1]('23') fred[2]('34').
1391 VARIABLE ATTRIBUTE VARIABLES=dummy ATTRIBUTE=bert('123').
1392 @end example
1393
1394 @noindent
1395 will contain a variable attribute record with the following contents:
1396
1397 @example
1398 0000  07 00 00 00 12 00 00 00  01 00 00 00 22 00 00 00  |............"...|
1399 0010  64 75 6d 6d 79 3a 66 72  65 64 28 27 32 33 27 0a  |dummy:fred('23'.|
1400 0020  27 33 34 27 0a 29 62 65  72 74 28 27 31 32 33 27  |'34'.)bert('123'|
1401 0030  0a 29                                             |.)              |
1402 @end example
1403
1404 @menu
1405 * Variable Roles::
1406 @end menu
1407
1408 @node Variable Roles
1409 @subsection Variable Roles
1410
1411 A variable's role is represented as an attribute named @code{$@@Role}.
1412 This attribute has a single element whose values and their meanings
1413 are:
1414
1415 @table @code
1416 @item 0
1417 Input.  This, the default, is the most common role.
1418 @item 1
1419 Output.
1420 @item 2
1421 Both.
1422 @item 3
1423 None.
1424 @item 4
1425 Partition.
1426 @item 5
1427 Split.
1428 @end table
1429
1430 @node Extended Number of Cases Record
1431 @section Extended Number of Cases Record
1432
1433 The file header record expresses the number of cases in the system
1434 file as an int32 (@pxref{File Header Record}).  This record allows the
1435 number of cases in the system file to be expressed as a 64-bit number.
1436
1437 @example
1438 int32               rec_type;
1439 int32               subtype;
1440 int32               size;
1441 int32               count;
1442 int64               unknown;
1443 int64               ncases64;
1444 @end example
1445
1446 @table @code
1447 @item int32 rec_type;
1448 Record type.  Always set to 7.
1449
1450 @item int32 subtype;
1451 Record subtype.  Always set to 16.
1452
1453 @item int32 size;
1454 Size of each element.  Always set to 8.
1455
1456 @item int32 count;
1457 Number of pieces of data in the data part.  Alway set to 2.
1458
1459 @item int64 unknown;
1460 Meaning unknown.  Always set to 1.
1461
1462 @item int64 ncases64;
1463 Number of cases in the file as a 64-bit integer.  Presumably this
1464 could be -1 to indicate that the number of cases is unknown, for the
1465 same reason as @code{ncases} in the file header record, but this has
1466 not been observed in the wild.
1467 @end table
1468
1469 @node Other Informational Records
1470 @section Other Informational Records
1471
1472 This chapter documents many specific types of extension records are
1473 documented here, but others are known to exist.  PSPP ignores unknown
1474 extension records when reading system files.
1475
1476 The following extension record subtypes have also been observed, with
1477 the following believed meanings:
1478
1479 @table @asis
1480 @item 5
1481 A set of grouped variables (according to Aapi H@"am@"al@"ainen).
1482
1483 @item 6
1484 Date info, probably related to USE (according to Aapi H@"am@"al@"ainen).
1485
1486 @item 24
1487 XML that describes how data in the file should be displayed on-screen.
1488 @end table
1489
1490 @node Dictionary Termination Record
1491 @section Dictionary Termination Record
1492
1493 The dictionary termination record separates all other records from the
1494 data records.
1495
1496 @example
1497 int32               rec_type;
1498 int32               filler;
1499 @end example
1500
1501 @table @code
1502 @item int32 rec_type;
1503 Record type.  Always set to 999.
1504
1505 @item int32 filler;
1506 Ignored padding.  Should be set to 0.
1507 @end table
1508
1509 @node Data Record
1510 @section Data Record
1511
1512 The data record must follow all other records in the system file.
1513 Every system file must have a data record that specifies data for at
1514 least one case.  The format of the data record varies depending on the
1515 value of @code{compression} in the file header record:
1516
1517 @table @asis
1518 @item 0: no compression
1519 Data is arranged as a series of 8-byte elements.
1520 Each element corresponds to
1521 the variable declared in the respective variable record (@pxref{Variable
1522 Record}).  Numeric values are given in @code{flt64} format; string
1523 values are literal characters string, padded on the right when
1524 necessary to fill out 8-byte units.
1525
1526 @item 1: bytecode compression
1527 The first 8 bytes
1528 of the data record is divided into a series of 1-byte command
1529 codes.  These codes have meanings as described below:
1530
1531 @table @asis
1532 @item 0
1533 Ignored.  If the program writing the system file accumulates compressed
1534 data in blocks of fixed length, 0 bytes can be used to pad out extra
1535 bytes remaining at the end of a fixed-size block.
1536
1537 @item 1 through 251
1538 A number with
1539 value @var{code} - @var{bias}, where
1540 @var{code} is the value of the compression code and @var{bias} is the
1541 variable @code{bias} from the file header.  For example,
1542 code 105 with bias 100.0 (the normal value) indicates a numeric variable
1543 of value 5.
1544 One file has been seen written by SPSS 14 that contained such a code
1545 in a @emph{string} field with the value 0 (after the bias is
1546 subtracted) as a way of encoding null bytes.
1547
1548 @item 252
1549 End of file.  This code may or may not appear at the end of the data
1550 stream.  PSPP always outputs this code but its use is not required.
1551
1552 @item 253
1553 A numeric or string value that is not
1554 compressible.  The value is stored in the 8 bytes following the
1555 current block of command bytes.  If this value appears twice in a block
1556 of command bytes, then it indicates the second group of 8 bytes following the
1557 command bytes, and so on.
1558
1559 @item 254
1560 An 8-byte string value that is all spaces.
1561
1562 @item 255
1563 The system-missing value.
1564 @end table
1565
1566 The end of the 8-byte group of bytecodes is followed by any 8-byte
1567 blocks of non-compressible values indicated by code 253.  After that
1568 follows another 8-byte group of bytecodes, then those bytecodes'
1569 non-compressible values.  The pattern repeats to the end of the file
1570 or a code with value 252.
1571
1572 @item 2: ZLIB compression
1573 The data record consists of the following, in order:
1574
1575 @itemize @bullet
1576 @item
1577 ZLIB data header, 24 bytes long.
1578
1579 @item
1580 One or more variable-length blocks of ZLIB compressed data.
1581
1582 @item
1583 ZLIB data trailer, with a 24-byte fixed header plus an additional 24
1584 bytes for each preceding ZLIB compressed data block.
1585 @end itemize
1586
1587 The ZLIB data header has the following format:
1588
1589 @example
1590 int64               zheader_ofs;
1591 int64               ztrailer_ofs;
1592 int64               ztrailer_len;
1593 @end example
1594
1595 @table @code
1596 @item int64 zheader_ofs;
1597 The offset, in bytes, of the beginning of this structure within the
1598 system file.
1599
1600 @item int64 ztrailer_ofs;
1601 The offset, in bytes, of the first byte of the ZLIB data trailer.
1602
1603 @item int64 ztrailer_len;
1604 The number of bytes in the ZLIB data trailer.  This and the previous
1605 field sum to the size of the system file in bytes.
1606 @end table
1607
1608 The data header is followed by @code{(ztrailer_ofs - 24) / 24} ZLIB
1609 compressed data blocks.  Each ZLIB compressed data block begins with a
1610 ZLIB header as specified in RFC@tie{}1950, e.g.@: hex bytes @code{78
1611 01} (the only header yet observed in practice).  Each block
1612 decompresses to a fixed number of bytes (in practice only
1613 @code{0x3ff000}-byte blocks have been observed), except that the last
1614 block of data may be shorter.  The last ZLIB compressed data block
1615 gends just before offset @code{ztrailer_ofs}.
1616
1617 The result of ZLIB decompression is bytecode compressed data as
1618 described above for compression format 1.
1619
1620 The ZLIB data trailer begins with the following 24-byte fixed header:
1621
1622 @example
1623 int64               bias;
1624 int64               zero;
1625 int32               block_size;
1626 int32               n_blocks;
1627 @end example
1628
1629 @table @code
1630 @item int64 int_bias;
1631 The compression bias as a negative integer, e.g.@: if @code{bias} in
1632 the file header record is 100.0, then @code{int_bias} is @minus{}100
1633 (this is the only value yet observed in practice).
1634
1635 @item int64 zero;
1636 Always observed to be zero.
1637
1638 @item int32 block_size;
1639 The number of bytes in each ZLIB compressed data block, except
1640 possibly the last, following decompression.  Only @code{0x3ff000} has
1641 been observed so far.
1642
1643 @item int32 n_blocks;
1644 The number of ZLIB compressed data blocks, always exactly
1645 @code{(ztrailer_ofs - 24) / 24}.
1646 @end table
1647
1648 The fixed header is followed by @code{n_blocks} 24-byte ZLIB data
1649 block descriptors, each of which describes the compressed data block
1650 corresponding to its offset.  Each block descriptor has the following
1651 format:
1652
1653 @example
1654 int64               uncompressed_ofs;
1655 int64               compressed_ofs;
1656 int32               uncompressed_size;
1657 int32               compressed_size;
1658 @end example
1659
1660 @table @code
1661 @item int64 uncompressed_ofs;
1662 The offset, in bytes, that this block of data would have in a similar
1663 system file that uses compression format 1.  This is
1664 @code{zheader_ofs} in the first block descriptor, and in each
1665 succeeding block descriptor it is the sum of the previous desciptor's
1666 @code{uncompressed_ofs} and @code{uncompressed_size}.
1667
1668 @item int64 compressed_ofs;
1669 The offset, in bytes, of the actual beginning of this compressed data
1670 block.  This is @code{zheader_ofs + 24} in the first block descriptor,
1671 and in each succeeding block descriptor it is the sum of the previous
1672 descriptor's @code{compressed_ofs} and @code{compressed_size}.  The
1673 final block descriptor's @code{compressed_ofs} and
1674 @code{compressed_size} sum to @code{ztrailer_ofs}.
1675
1676 @item int32 uncompressed_size;
1677 The number of bytes in this data block, after decompression.  This is
1678 @code{block_size} in every data block except the last, which may be
1679 smaller.
1680
1681 @item int32 compressed_size;
1682 The number of bytes in this data block, as stored compressed in this
1683 system file.
1684 @end table
1685 @end table
1686
1687 @setfilename ignored
1688
1689 @node Encrypted System Files
1690 @section Encrypted System Files
1691
1692 SPSS 21 and later support an encrypted system file format.
1693
1694 @quotation Warning
1695 The SPSS encrypted file format is poorly designed.  It is much cheaper
1696 and faster to decrypt a file encrypted this way than if a well
1697 designed alternative were used.  If you must use this format, use a
1698 10-byte randomly generated password.
1699 @end quotation
1700
1701 @subheading Encrypted File Format
1702
1703 Encrypted system files begin with the following 36-byte fixed header:
1704
1705 @example
1706 0000  1c 00 00 00 00 00 00 00  45 4e 43 52 59 50 54 45  |........ENCRYPTE|
1707 0010  44 53 41 56 15 00 00 00  00 00 00 00 00 00 00 00  |DSAV............|
1708 0020  00 00 00 00                                       |....|
1709 @end example
1710
1711 Following the fixed header is a complete system file in the usual
1712 format, except that each 16-byte block is encrypted with AES-256 in
1713 ECB mode.  The AES-256 key is derived from a password in the following
1714 way:
1715
1716 @enumerate 
1717 @item
1718 Start from the literal password typed by the user.  Truncate it to at
1719 most 10 bytes, then append (between 1 and 22) null bytes until there
1720 are exactly 32 bytes.  Call this @var{password}.
1721
1722 @item
1723 Let @var{constant} be the following 73-byte constant:
1724
1725 @example
1726 0000  00 00 00 01 35 27 13 cc  53 a7 78 89 87 53 22 11
1727 0010  d6 5b 31 58 dc fe 2e 7e  94 da 2f 00 cc 15 71 80
1728 0020  0a 6c 63 53 00 38 c3 38  ac 22 f3 63 62 0e ce 85
1729 0030  3f b8 07 4c 4e 2b 77 c7  21 f5 1a 80 1d 67 fb e1
1730 0040  e1 83 07 d8 0d 00 00 01  00
1731 @end example
1732
1733 @item
1734 Compute CMAC-AES-256(@var{password}, @var{constant}).  Call the
1735 16-byte result @var{cmac}.
1736
1737 @item
1738 The 32-byte AES-256 key is @var{cmac} || @var{cmac}, that is,
1739 @var{cmac} repeated twice.
1740 @end enumerate
1741
1742 @subsubheading Example
1743
1744 Consider the password @samp{pspp}.  @var{password} is:
1745
1746 @example
1747 0000  70 73 70 70 00 00 00 00  00 00 00 00 00 00 00 00  |pspp............|
1748 0010  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
1749 @end example
1750
1751 @noindent
1752 @var{cmac} is:
1753
1754 @example
1755 0000  3e da 09 8e 66 04 d4 fd  f9 63 0c 2c a8 6f b0 45
1756 @end example
1757
1758 @noindent
1759 The AES-256 key is:
1760
1761 @example
1762 0000  3e da 09 8e 66 04 d4 fd  f9 63 0c 2c a8 6f b0 45
1763 0010  3e da 09 8e 66 04 d4 fd  f9 63 0c 2c a8 6f b0 45
1764 @end example
1765
1766 @subheading Password Encoding
1767
1768 SPSS also supports what it calls ``encrypted passwords.''  These are
1769 not encrypted.  They are encoded with a simple, fixed scheme.  An
1770 encoded password is always a multiple of 2 characters long, and never
1771 longer than 20 characters.  The characters in an encoded password are
1772 always in the graphic ASCII range 33 through 126.  Each successive
1773 pair of characters in the password encodes a single byte in the
1774 plaintext password.
1775
1776 Use the following algorithm to decode a pair of characters:
1777
1778 @enumerate
1779 @item
1780 Let @var{a} be the ASCII code of the first character, and @var{b} be
1781 the ASCII code of the second character.
1782
1783 @item
1784 Let @var{ah} be the most significant 4 bits of @var{a}.  Find the line
1785 in the table below that has @var{ah} on the left side.  The right side
1786 of the line is a set of possible values for the most significant 4
1787 bits of the decoded byte.
1788
1789 @display
1790 @t{2 } @result{} @t{2367}
1791 @t{3 } @result{} @t{0145}
1792 @t{47} @result{} @t{89cd}
1793 @t{56} @result{} @t{abef}
1794 @end display
1795
1796 @item
1797 Let @var{bh} be the most significant 4 bits of @var{b}.  Find the line
1798 in the second table below that has @var{bh} on the left side.  The
1799 right side of the line is a set of possible values for the most
1800 significant 4 bits of the decoded byte.  Together with the results of
1801 the previous step, only a single possibility is left.
1802
1803 @display
1804 @t{2 } @result{} @t{139b}
1805 @t{3 } @result{} @t{028a}
1806 @t{47} @result{} @t{46ce}
1807 @t{56} @result{} @t{57df}
1808 @end display
1809
1810 @item
1811 Let @var{al} be the least significant 4 bits of @var{a}.  Find the
1812 line in the table below that has @var{al} on the left side.  The right
1813 side of the line is a set of possible values for the least significant
1814 4 bits of the decoded byte.
1815
1816 @display
1817 @t{03cf} @result{} @t{0145}
1818 @t{12de} @result{} @t{2367}
1819 @t{478b} @result{} @t{89cd}
1820 @t{569a} @result{} @t{abef}
1821 @end display
1822
1823 @item
1824 Let @var{bl} be the least significant 4 bits of @var{b}.  Find the
1825 line in the table below that has @var{bl} on the left side.  The right
1826 side of the line is a set of possible values for the least significant
1827 4 bits of the decoded byte.  Together with the results of the previous
1828 step, only a single possibility is left.
1829
1830 @display
1831 @t{03cf} @result{} @t{028a}
1832 @t{12de} @result{} @t{139b}
1833 @t{478b} @result{} @t{46ce}
1834 @t{569a} @result{} @t{57df}
1835 @end display
1836 @end enumerate
1837
1838 @subsubheading Example
1839
1840 Consider the encoded character pair @samp{-|}.  @var{a} is
1841 0x2d and @var{b} is 0x7c, so @var{ah} is 2, @var{bh} is 7, @var{al} is
1842 0xd, and @var{bl} is 0xc.  @var{ah} means that the most significant
1843 four bits of the decoded character is 2, 3, 6, or 7, and @var{bh}
1844 means that they are 4, 6, 0xc, or 0xe.  The single possibility in
1845 common is 6, so the most significant four bits are 6.  Similarly,
1846 @var{al} means that the least significant four bits are 2, 3, 6, or 7,
1847 and @var{bl} means they are 0, 2, 8, or 0xa, so the least significant
1848 four bits are 2.  The decoded character is therefore 0x62, the letter
1849 @samp{b}.