1 @node System File Format
2 @appendix System File Format
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.
8 System files use four data types: 8-bit characters, 32-bit integers,
10 and 64-bit floating points, called here @code{char}, @code{int32},
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.
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}}).
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}}).
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 has actually been observed in system files, and it is likely that
34 other formats are obsolete or were never used.
36 System files use a few floating point values for special purposes:
40 The system-missing value is represented by the largest possible
41 negative number in the floating point format (@code{-DBL_MAX}).
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}).
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
59 System files are divided into records, each of which begins with a
60 4-byte record type, usually regarded as an @code{int32}.
62 The records must appear in the following order:
72 All pairs of value labels records and value label variables records,
76 Document record, if present.
79 Extension (type 7) records, in ascending numerical order of their
83 Dictionary termination record.
89 Each type of record is described separately below.
92 * File Header Record::
94 * Value Labels Records::
96 * Machine Integer Info Record::
97 * Machine Floating-Point Info Record::
98 * Multiple Response Sets Records::
99 * Variable Display Parameter Record::
100 * Long Variable Names Record::
101 * Very Long String Record::
102 * Character Encoding Record::
103 * Long String Value Labels Record::
104 * Data File and Variable Attributes Records::
105 * Extended Number of Cases Record::
106 * Miscellaneous Informational Records::
107 * Dictionary Termination Record::
111 @node File Header Record
112 @section File Header Record
114 The file header is always the first record in the file. It has the
121 int32 nominal_case_size;
126 char creation_date[9];
127 char creation_time[8];
133 @item char rec_type[4];
134 Record type code, set to @samp{$FL2}, that is, either @code{24 46 4c
135 32} if the file uses an ASCII-based character encoding, or @code{5b c6
136 d3 f2} if the file uses an EBCDIC-based character encoding.
138 @item char prod_name[60];
139 Product identification string. This always begins with the characters
140 @samp{@@(#) SPSS DATA FILE}. PSPP uses the remaining characters to
141 give its version and the operating system name; for example, @samp{GNU
142 pspp 0.1.4 - sparc-sun-solaris2.5.2}. The string is truncated if it
143 would be longer than 60 characters; otherwise it is padded on the right
147 @item int32 layout_code;
148 Normally set to 2, although a few system files have been spotted in
149 the wild with a value of 3 here. PSPP use this value to determine the
150 file's integer endianness (@pxref{System File Format}).
152 @item int32 nominal_case_size;
153 Number of data elements per case. This is the number of variables,
154 except that long string variables add extra data elements (one for every
155 8 characters after the first 8). However, string variables do not
156 contribute to this value beyond the first 255 bytes. Further, system
157 files written by some systems set this value to -1. In general, it is
158 unsafe for systems reading system files to rely upon this value.
160 @item int32 compressed;
161 Set to 1 if the data in the file is compressed, 0 otherwise.
163 @item int32 weight_index;
164 If one of the variables in the data set is used as a weighting
165 variable, set to the dictionary index of that variable, plus 1
166 (@pxref{Dictionary Index}). Otherwise, set to 0.
169 Set to the number of cases in the file if it is known, or -1 otherwise.
171 In the general case it is not possible to determine the number of cases
172 that will be output to a system file at the time that the header is
173 written. The way that this is dealt with is by writing the entire
174 system file, including the header, then seeking back to the beginning of
175 the file and writing just the @code{ncases} field. For files in which
176 this is not valid, the seek operation fails. In this case,
177 @code{ncases} remains -1.
181 Compression bias, ordinarily set to 100. Only integers between
182 @code{1 - bias} and @code{251 - bias} can be compressed.
184 By assuming that its value is 100, PSPP uses @code{bias} to determine
185 the file's floating-point format and endianness (@pxref{System File
186 Format}). If the compression bias is not 100, PSPP cannot auto-detect
187 the floating-point format and assumes that it is IEEE 754 format with
188 the same endianness as the system file's integers, which is correct
189 for all known system files.
191 @item char creation_date[9];
192 Date of creation of the system file, in @samp{dd mmm yy}
193 format, with the month as standard English abbreviations, using an
194 initial capital letter and following with lowercase. If the date is not
195 available then this field is arbitrarily set to @samp{01 Jan 70}.
197 @item char creation_time[8];
198 Time of creation of the system file, in @samp{hh:mm:ss}
199 format and using 24-hour time. If the time is not available then this
200 field is arbitrarily set to @samp{00:00:00}.
202 @item char file_label[64];
203 File label declared by the user, if any (@pxref{FILE LABEL,,,pspp,
204 PSPP Users Guide}). Padded on the right with spaces.
206 @item char padding[3];
207 Ignored padding bytes to make the structure a multiple of 32 bits in
208 length. Set to zeros.
211 @node Variable Record
212 @section Variable Record
214 There must be one variable record for each numeric variable and each
215 string variable with width 8 bytes or less. String variables wider
216 than 8 bytes have one variable record for each 8 bytes, rounding up.
217 The first variable record for a long string specifies the variable's
218 correct dictionary information. Subsequent variable records for a
219 long string are filled with dummy information: a type of -1, no
220 variable label or missing values, print and write formats that are
221 ignored, and an empty string as name. A few system files have been
222 encountered that include a variable label on dummy variable records,
223 so readers should take care to parse dummy variable records in the
224 same way as other variable records.
226 @anchor{Dictionary Index}
227 The @dfn{dictionary index} of a variable is its offset in the set of
228 variable records, including dummy variable records for long string
229 variables. The first variable record has a dictionary index of 0, the
230 second has a dictionary index of 1, and so on.
232 The system file format does not directly support string variables
233 wider than 255 bytes. Such very long string variables are represented
234 by a number of narrower string variables. @xref{Very Long String
235 Record}, for details.
241 int32 n_missing_values;
246 /* @r{Present only if @code{has_var_label} is 1.} */
250 /* @r{Present only if @code{n_missing_values} is nonzero}. */
251 flt64 missing_values[];
255 @item int32 rec_type;
256 Record type code. Always set to 2.
259 Variable type code. Set to 0 for a numeric variable. For a short
260 string variable or the first part of a long string variable, this is set
261 to the width of the string. For the second and subsequent parts of a
262 long string variable, set to -1, and the remaining fields in the
263 structure are ignored.
265 @item int32 has_var_label;
266 If this variable has a variable label, set to 1; otherwise, set to 0.
268 @item int32 n_missing_values;
269 If the variable has no missing values, set to 0. If the variable has
270 one, two, or three discrete missing values, set to 1, 2, or 3,
271 respectively. If the variable has a range for missing variables, set to
272 -2; if the variable has a range for missing variables plus a single
273 discrete value, set to -3.
276 Print format for this variable. See below.
279 Write format for this variable. See below.
282 Variable name. The variable name must begin with a capital letter or
283 the at-sign (@samp{@@}). Subsequent characters may also be digits, octothorpes
284 (@samp{#}), dollar signs (@samp{$}), underscores (@samp{_}), or full
285 stops (@samp{.}). The variable name is padded on the right with spaces.
287 @item int32 label_len;
288 This field is present only if @code{has_var_label} is set to 1. It is
289 set to the length, in characters, of the variable label. The
290 documented maximum length varies from 120 to 255 based on SPSS
291 version, but some files have been seen with longer labels. PSPP
292 accepts longer labels and truncates them to 255 bytes on input.
295 This field is present only if @code{has_var_label} is set to 1. It has
296 length @code{label_len}, rounded up to the nearest multiple of 32 bits.
297 The first @code{label_len} characters are the variable's variable label.
299 @item flt64 missing_values[];
300 This field is present only if @code{n_missing_values} is nonzero. It
301 has the same number of 8-byte elements as the absolute value of
302 @code{n_missing_values}. Each element is interpreted as a number for
303 numeric variables (with HIGHEST and LOWEST indicated as described in
304 the chapter introduction). For string variables of width less than 8
305 bytes, elements are right-padded with spaces; for string variables
306 wider than 8 bytes, only the first 8 bytes of each missing value are
307 specified, with the remainder implicitly all spaces.
309 For discrete missing values, each element represents one missing
310 value. When a range is present, the first element denotes the minimum
311 value in the range, and the second element denotes the maximum value
312 in the range. When a range plus a value are present, the third
313 element denotes the additional discrete missing value.
316 The @code{print} and @code{write} members of sysfile_variable are output
317 formats coded into @code{int32} types. The least-significant byte
318 of the @code{int32} represents the number of decimal places, and the
319 next two bytes in order of increasing significance represent field width
320 and format type, respectively. The most-significant byte is not
321 used and should be set to zero.
323 Format types are defined as follows:
326 @multitable {Value} {@code{DATETIME}}
412 A few system files have been observed in the wild with invalid
413 @code{write} fields, in particular with value 0. Readers should
414 probably treat invalid @code{print} or @code{write} fields as some
417 @node Value Labels Records
418 @section Value Labels Records
420 The value label records documented in this section are used for
421 numeric and short string variables only. Long string variables may
422 have value labels, but their value labels are recorded using a
423 different record type (@pxref{Long String Value Labels Record}).
425 The value label record has the following format:
431 /* @r{Repeated @code{label_cnt} times}. */
438 @item int32 rec_type;
439 Record type. Always set to 3.
441 @item int32 label_count;
442 Number of value labels present in this record.
445 The remaining fields are repeated @code{count} times. Each
446 repetition specifies one value label.
450 A numeric value or a short string value padded as necessary to 8 bytes
451 in length. Its type and width cannot be determined until the
452 following value label variables record (see below) is read.
454 @item char label_len;
455 The label's length, in bytes. The documented maximum length varies
456 from 60 to 120 based on SPSS version. PSPP supports value labels up
460 @code{label_len} bytes of the actual label, followed by up to 7 bytes
461 of padding to bring @code{label} and @code{label_len} together to a
462 multiple of 8 bytes in length.
465 The value label record is always immediately followed by a value label
466 variables record with the following format:
475 @item int32 rec_type;
476 Record type. Always set to 4.
478 @item int32 var_count;
479 Number of variables that the associated value labels from the value
480 label record are to be applied.
483 A list of dictionary indexes of variables to which to apply the value
484 labels (@pxref{Dictionary Index}). There are @code{var_count}
487 String variables wider than 8 bytes may not be specified in this list.
490 @node Document Record
491 @section Document Record
493 The document record, if present, has the following format:
502 @item int32 rec_type;
503 Record type. Always set to 6.
506 Number of lines of documents present.
508 @item char lines[][80];
509 Document lines. The number of elements is defined by @code{n_lines}.
510 Lines shorter than 80 characters are padded on the right with spaces.
513 @node Machine Integer Info Record
514 @section Machine Integer Info Record
516 The integer info record, if present, has the following format:
528 int32 version_revision;
530 int32 floating_point_rep;
531 int32 compression_code;
533 int32 character_code;
537 @item int32 rec_type;
538 Record type. Always set to 7.
541 Record subtype. Always set to 3.
544 Size of each piece of data in the data part, in bytes. Always set to 4.
547 Number of pieces of data in the data part. Always set to 8.
549 @item int32 version_major;
550 PSPP major version number. In version @var{x}.@var{y}.@var{z}, this
553 @item int32 version_minor;
554 PSPP minor version number. In version @var{x}.@var{y}.@var{z}, this
557 @item int32 version_revision;
558 PSPP version revision number. In version @var{x}.@var{y}.@var{z},
561 @item int32 machine_code;
562 Machine code. PSPP always set this field to value to -1, but other
565 @item int32 floating_point_rep;
566 Floating point representation code. For IEEE 754 systems this is 1.
567 IBM 370 sets this to 2, and DEC VAX E to 3.
569 @item int32 compression_code;
570 Compression code. Always set to 1.
572 @item int32 endianness;
573 Machine endianness. 1 indicates big-endian, 2 indicates little-endian.
575 @item int32 character_code;
576 @anchor{character-code} Character code. The following values have
577 been actually observed in system files:
587 The @code{windows-1250} code page for Central European and Eastern
591 The @code{windows-1252} code page for Western European languages.
600 The following additional values are known to be defined:
610 Other Windows code page numbers are known to be generally valid.
612 Old versions of SPSS for Unix and Windows always wrote value 2 in this
613 field, regardless of the encoding in use. Newer versions also write
614 the character encoding as a string (see @ref{Character Encoding
618 @node Machine Floating-Point Info Record
619 @section Machine Floating-Point Info Record
621 The floating-point info record, if present, has the following format:
637 @item int32 rec_type;
638 Record type. Always set to 7.
641 Record subtype. Always set to 4.
644 Size of each piece of data in the data part, in bytes. Always set to 8.
647 Number of pieces of data in the data part. Always set to 3.
650 The system missing value.
653 The value used for HIGHEST in missing values.
656 The value used for LOWEST in missing values.
659 @node Multiple Response Sets Records
660 @section Multiple Response Sets Records
662 The system file format has two different types of records that
663 represent multiple response sets (@pxref{MRSETS,,,pspp, PSPP Users
664 Guide}). The first type of record describes multiple response sets
665 that can be understood by SPSS before version 14. The second type of
666 record, with a closely related format, is used for multiple dichotomy
667 sets that use the CATEGORYLABELS=COUNTEDVALUES feature added in
677 /* @r{Exactly @code{count} bytes of data.} */
682 @item int32 rec_type;
683 Record type. Always set to 7.
686 Record subtype. Set to 7 for records that describe multiple response
687 sets understood by SPSS before version 14, or to 19 for records that
688 describe dichotomy sets that use the CATEGORYLABELS=COUNTEDVALUES
689 feature added in version 14.
692 The size of each element in the @code{mrsets} member. Always set to 1.
695 The total number of bytes in @code{mrsets}.
698 A series of multiple response sets, each of which consists of the
703 The set's name (an identifier that begins with @samp{$}), in mixed
704 upper and lower case.
707 An equals sign (@samp{=}).
710 @samp{C} for a multiple category set, @samp{D} for a multiple
711 dichotomy set with CATEGORYLABELS=VARLABELS, or @samp{E} for a
712 multiple dichotomy set with CATEGORYLABELS=COUNTEDVALUES.
715 For a multiple dichotomy set with CATEGORYLABELS=COUNTEDVALUES, a
716 space, followed by a number expressed as decimal digits, followed by a
717 space. If LABELSOURCE=VARLABEL was specified on MRSETS, then the
718 number is 11; otherwise it is 1.@footnote{This part of the format may
719 not be fully understood, because only a single example of each
720 possibility has been examined.}
723 For either kind of multiple dichotomy set, the counted value, as a
724 positive integer count specified as decimal digits, followed by a
725 space, followed by as many string bytes as specified in the count. If
726 the set contains numeric variables, the string consists of the counted
727 integer value expressed as decimal digits. If the set contains string
728 variables, the string contains the counted string value. Either way,
729 the string may be padded on the right with spaces (older versions of
730 SPSS seem to always pad to a width of 8 bytes; newer versions don't).
736 The multiple response set's label, using the same format as for the
737 counted value for multiple dichotomy sets. A string of length 0 means
738 that the set does not have a label. A string of length 0 is also
739 written if LABELSOURCE=VARLABEL was specified.
745 The short names of the variables in the set, converted to lowercase,
746 each separated from the previous by a single space.
749 A line feed (byte 0x0a).
753 Example: Given appropriate variable definitions, consider the
754 following MRSETS command:
757 MRSETS /MCGROUP NAME=$a LABEL='my mcgroup' VARIABLES=a b c
758 /MDGROUP NAME=$b VARIABLES=g e f d VALUE=55
759 /MDGROUP NAME=$c LABEL='mdgroup #2' VARIABLES=h i j VALUE='Yes'
760 /MDGROUP NAME=$d LABEL='third mdgroup' CATEGORYLABELS=COUNTEDVALUES
761 VARIABLES=k l m VALUE=34
762 /MDGROUP NAME=$e CATEGORYLABELS=COUNTEDVALUES LABELSOURCE=VARLABEL
763 VARIABLES=n o p VALUE='choice'.
766 The above would generate the following multiple response set record of
770 $a=C 10 my mcgroup a b c
772 $c=D3 Yes 10 mdgroup #2 h i j
775 It would also generate the following multiple response set record with
779 $d=E 1 2 34 13 third mdgroup k l m
780 $e=E 11 6 choice 0 n o p
783 @node Variable Display Parameter Record
784 @section Variable Display Parameter Record
786 The variable display parameter record, if present, has the following
796 /* @r{Repeated @code{count} times}. */
798 int32 width; /* @r{Not always present.} */
803 @item int32 rec_type;
804 Record type. Always set to 7.
807 Record subtype. Always set to 11.
810 The size of @code{int32}. Always set to 4.
813 The number of sets of variable display parameters (ordinarily the
814 number of variables in the dictionary), times 2 or 3.
817 The remaining members are repeated @code{count} times, in the same
818 order as the variable records. No element corresponds to variable
819 records that continue long string variables. The meanings of these
820 members are as follows:
824 The measurement type of the variable:
834 SPSS sometimes writes a @code{measure} of 0. PSPP interprets this as
838 The width of the display column for the variable in characters.
840 This field is present if @var{count} is 3 times the number of
841 variables in the dictionary. It is omitted if @var{count} is 2 times
842 the number of variables.
844 @item int32 alignment;
845 The alignment of the variable for display purposes:
857 @node Long Variable Names Record
858 @section Long Variable Names Record
860 If present, the long variable names record has the following format:
869 /* @r{Exactly @code{count} bytes of data.} */
870 char var_name_pairs[];
874 @item int32 rec_type;
875 Record type. Always set to 7.
878 Record subtype. Always set to 13.
881 The size of each element in the @code{var_name_pairs} member. Always set to 1.
884 The total number of bytes in @code{var_name_pairs}.
886 @item char var_name_pairs[];
887 A list of @var{key}--@var{value} tuples, where @var{key} is the name
888 of a variable, and @var{value} is its long variable name.
889 The @var{key} field is at most 8 bytes long and must match the
890 name of a variable which appears in the variable record (@pxref{Variable
892 The @var{value} field is at most 64 bytes long.
893 The @var{key} and @var{value} fields are separated by a @samp{=} byte.
894 Each tuple is separated by a byte whose value is 09. There is no
895 trailing separator following the last tuple.
896 The total length is @code{count} bytes.
899 @node Very Long String Record
900 @section Very Long String Record
902 Old versions of SPSS limited string variables to a width of 255 bytes.
903 For backward compatibility with these older versions, the system file
904 format represents a string longer than 255 bytes, called a @dfn{very
905 long string}, as a collection of strings no longer than 255 bytes
906 each. The strings concatenated to make a very long string are called
907 its @dfn{segments}; for consistency, variables other than very long
908 strings are considered to have a single segment.
910 A very long string with a width of @var{w} has @var{n} =
911 (@var{w} + 251) / 252 segments, that is, one segment for every
912 252 bytes of width, rounding up. It would be logical, then, for each
913 of the segments except the last to have a width of 252 and the last
914 segment to have the remainder, but this is not the case. In fact,
915 each segment except the last has a width of 255 bytes. The last
916 segment has width @var{w} - (@var{n} - 1) * 252; some versions
917 of SPSS make it slightly wider, but not wide enough to make the last
918 segment require another 8 bytes of data.
920 Data is packed tightly into segments of a very long string, 255 bytes
921 per segment. Because 255 bytes of segment data are allocated for
922 every 252 bytes of the very long string's width (approximately), some
923 unused space is left over at the end of the allocated segments. Data
924 in unused space is ignored.
926 Example: Consider a very long string of width 20,000. Such a very
927 long string has 20,000 / 252 = 80 (rounding up) segments. The first
928 79 segments have width 255; the last segment has width 20,000 - 79 *
929 252 = 92 or slightly wider (up to 96 bytes, the next multiple of 8).
930 The very long string's data is actually stored in the 19,890 bytes in
931 the first 78 segments, plus the first 110 bytes of the 79th segment
932 (19,890 + 110 = 20,000). The remaining 145 bytes of the 79th segment
933 and all 92 bytes of the 80th segment are unused.
935 The very long string record explains how to stitch together segments
936 to obtain very long string data. For each of the very long string
937 variables in the dictionary, it specifies the name of its first
938 segment's variable and the very long string variable's actual width.
939 The remaining segments immediately follow the named variable in the
940 system file's dictionary.
942 The very long string record, which is present only if the system file
943 contains very long string variables, has the following format:
952 /* @r{Exactly @code{count} bytes of data.} */
953 char string_lengths[];
957 @item int32 rec_type;
958 Record type. Always set to 7.
961 Record subtype. Always set to 14.
964 The size of each element in the @code{string_lengths} member. Always set to 1.
967 The total number of bytes in @code{string_lengths}.
969 @item char string_lengths[];
970 A list of @var{key}--@var{value} tuples, where @var{key} is the name
971 of a variable, and @var{value} is its length.
972 The @var{key} field is at most 8 bytes long and must match the
973 name of a variable which appears in the variable record (@pxref{Variable
975 The @var{value} field is exactly 5 bytes long. It is a zero-padded,
976 ASCII-encoded string that is the length of the variable.
977 The @var{key} and @var{value} fields are separated by a @samp{=} byte.
978 Tuples are delimited by a two-byte sequence @{00, 09@}.
979 After the last tuple, there may be a single byte 00, or @{00, 09@}.
980 The total length is @code{count} bytes.
983 @node Character Encoding Record
984 @section Character Encoding Record
986 This record, if present, indicates the character encoding for string data,
987 long variable names, variable labels, value labels and other strings in the
997 /* @r{Exactly @code{count} bytes of data.} */
1002 @item int32 rec_type;
1003 Record type. Always set to 7.
1005 @item int32 subtype;
1006 Record subtype. Always set to 20.
1009 The size of each element in the @code{encoding} member. Always set to 1.
1012 The total number of bytes in @code{encoding}.
1014 @item char encoding[];
1015 The name of the character encoding. Normally this will be an official
1016 IANA character set name or alias.
1017 See @url{http://www.iana.org/assignments/character-sets}.
1018 Character set names are not case-sensitive, but SPSS appears to write
1019 them in all-uppercase.
1022 This record is not present in files generated by older software. See
1023 also the @code{character_code} field in the machine integer info
1024 record (@pxref{character-code}).
1026 When the character encoding record and the machine integer info record
1027 are both present, all system files observed in practice indicate the
1028 same character encoding, e.g.@: 1252 as @code{character_code} and
1029 @code{windows-1252} as @code{encoding}, 65001 and @code{UTF-8}, etc.
1031 If, for testing purposes, a file is crafted with different
1032 @code{character_code} and @code{encoding}, it seems that
1033 @code{character_code} controls the encoding for all strings in the
1034 system file before the dictionary termination record, including
1035 strings in data (e.g.@: string missing values), and @code{encoding}
1036 controls the encoding for strings following the dictionary termination
1039 @node Long String Value Labels Record
1040 @section Long String Value Labels Record
1042 This record, if present, specifies value labels for long string
1052 /* @r{Repeated up to exactly @code{count} bytes.} */
1057 long_string_label labels[];
1061 @item int32 rec_type;
1062 Record type. Always set to 7.
1064 @item int32 subtype;
1065 Record subtype. Always set to 21.
1071 The number of bytes following the header until the next header.
1073 @item int32 var_name_len;
1074 @itemx char var_name[];
1075 The number of bytes in the name of the variable that has long string
1076 value labels, plus the variable name itself, which consists of exactly
1077 @code{var_name_len} bytes. The variable name is not padded to any
1078 particular boundary, nor is it null-terminated.
1080 @item int32 var_width;
1081 The width of the variable, in bytes, which will be between 9 and
1084 @item int32 n_labels;
1085 @itemx long_string_label labels[];
1086 The long string labels themselves. The @code{labels} array contains
1087 exactly @code{n_labels} elements, each of which has the following
1098 @item int32 value_len;
1099 @itemx char value[];
1100 The string value being labeled. @code{value_len} is the number of
1101 bytes in @code{value}; it is equal to @code{var_width}. The
1102 @code{value} array is not padded or null-terminated.
1104 @item int32 label_len;
1105 @itemx char label[];
1106 The label for the string value. @code{label_len}, which must be
1107 between 0 and 120, is the number of bytes in @code{label}. The
1108 @code{label} array is not padded or null-terminated.
1112 @node Data File and Variable Attributes Records
1113 @section Data File and Variable Attributes Records
1115 The data file and variable attributes records represent custom
1116 attributes for the system file or for individual variables in the
1117 system file, as defined on the DATAFILE ATTRIBUTE (@pxref{DATAFILE
1118 ATTRIBUTE,,,pspp, PSPP Users Guide}) and VARIABLE ATTRIBUTE commands
1119 (@pxref{VARIABLE ATTRIBUTE,,,pspp, PSPP Users Guide}), respectively.
1128 /* @r{Exactly @code{count} bytes of data.} */
1133 @item int32 rec_type;
1134 Record type. Always set to 7.
1136 @item int32 subtype;
1137 Record subtype. Always set to 17 for a data file attribute record or
1138 to 18 for a variable attributes record.
1141 The size of each element in the @code{attributes} member. Always set to 1.
1144 The total number of bytes in @code{attributes}.
1146 @item char attributes[];
1147 The attributes, in a text-based format.
1149 In record type 17, this field contains a single attribute set. An
1150 attribute set is a sequence of one or more attributes concatenated
1151 together. Each attribute consists of a name, which has the same
1152 syntax as a variable name, followed by, inside parentheses, a sequence
1153 of one or more values. Each value consists of a string enclosed in
1154 single quotes (@code{'}) followed by a line feed (byte 0x0a). A value
1155 may contain single quote characters, which are not themselves escaped
1156 or quoted or required to be present in pairs. There is no apparent
1157 way to embed a line feed in a value. There is no distinction between
1158 an attribute with a single value and an attribute array with one
1161 In record type 18, this field contains a sequence of one or more
1162 variable attribute sets. If more than one variable attribute set is
1163 present, each one after the first is delimited from the previous by
1164 @code{/}. Each variable attribute set consists of a long
1166 followed by @code{:}, followed by an attribute set with the same
1167 syntax as on record type 17.
1169 The total length is @code{count} bytes.
1174 A system file produced with the following VARIABLE ATTRIBUTE commands
1178 VARIABLE ATTRIBUTE VARIABLES=dummy ATTRIBUTE=fred[1]('23') fred[2]('34').
1179 VARIABLE ATTRIBUTE VARIABLES=dummy ATTRIBUTE=bert('123').
1183 will contain a variable attribute record with the following contents:
1186 00000000 07 00 00 00 12 00 00 00 01 00 00 00 22 00 00 00 |............"...|
1187 00000010 64 75 6d 6d 79 3a 66 72 65 64 28 27 32 33 27 0a |dummy:fred('23'.|
1188 00000020 27 33 34 27 0a 29 62 65 72 74 28 27 31 32 33 27 |'34'.)bert('123'|
1189 00000030 0a 29 |.) |
1196 @node Variable Roles
1197 @subsection Variable Roles
1199 A variable's role is represented as an attribute named @code{$@@Role}.
1200 This attribute has a single element whose values and their meanings
1205 Input. This, the default, is the most common role.
1218 @node Extended Number of Cases Record
1219 @section Extended Number of Cases Record
1221 The file header record expresses the number of cases in the system
1222 file as an int32 (@pxref{File Header Record}). This record allows the
1223 number of cases in the system file to be expressed as a 64-bit number.
1235 @item int32 rec_type;
1236 Record type. Always set to 7.
1238 @item int32 subtype;
1239 Record subtype. Always set to 16.
1242 Size of each element. Always set to 8.
1245 Number of pieces of data in the data part. Alway set to 2.
1247 @item int64 unknown;
1248 Meaning unknown. Always set to 1.
1250 @item int64 ncases64;
1251 Number of cases in the file as a 64-bit integer. Presumably this
1252 could be -1 to indicate that the number of cases is unknown, for the
1253 same reason as @code{ncases} in the file header record, but this has
1254 not been observed in the wild.
1257 @node Miscellaneous Informational Records
1258 @section Miscellaneous Informational Records
1260 Some specific types of miscellaneous informational records are
1261 documented here, but others are known to exist. PSPP ignores unknown
1262 miscellaneous informational records when reading system files.
1271 /* @r{Exactly @code{size * count} bytes of data.} */
1276 @item int32 rec_type;
1277 Record type. Always set to 7.
1279 @item int32 subtype;
1280 Record subtype. May take any value. According to Aapi
1281 H@"am@"al@"ainen, value 5 indicates a set of grouped variables and 6
1282 indicates date info (probably related to USE). Subtype 24 appears to
1283 contain XML that describes how data in the file should be displayed
1287 Size of each piece of data in the data part. Should have the value 1,
1288 4, or 8, for @code{char}, @code{int32}, and @code{flt64} format data,
1292 Number of pieces of data in the data part.
1295 Arbitrary data. There must be @code{size} times @code{count} bytes of
1299 @node Dictionary Termination Record
1300 @section Dictionary Termination Record
1302 The dictionary termination record separates all other records from the
1311 @item int32 rec_type;
1312 Record type. Always set to 999.
1315 Ignored padding. Should be set to 0.
1319 @section Data Record
1321 Data records must follow all other records in the system file. There must
1322 be at least one data record in every system file.
1324 The format of data records varies depending on whether the data is
1325 compressed. Regardless, the data is arranged in a series of 8-byte
1328 When data is not compressed,
1329 each element corresponds to
1330 the variable declared in the respective variable record (@pxref{Variable
1331 Record}). Numeric values are given in @code{flt64} format; string
1332 values are literal characters string, padded on the right when
1333 necessary to fill out 8-byte units.
1335 Compressed data is arranged in the following manner: the first 8 bytes
1336 in the data section is divided into a series of 1-byte command
1337 codes. These codes have meanings as described below:
1341 Ignored. If the program writing the system file accumulates compressed
1342 data in blocks of fixed length, 0 bytes can be used to pad out extra
1343 bytes remaining at the end of a fixed-size block.
1347 value @var{code} - @var{bias}, where
1348 @var{code} is the value of the compression code and @var{bias} is the
1349 variable @code{bias} from the file header. For example,
1350 code 105 with bias 100.0 (the normal value) indicates a numeric variable
1352 One file has been seen written by SPSS 14 that contained such a code
1353 in a @emph{string} field with the value 0 (after the bias is
1354 subtracted) as a way of encoding null bytes.
1357 End of file. This code may or may not appear at the end of the data
1358 stream. PSPP always outputs this code but its use is not required.
1361 A numeric or string value that is not
1362 compressible. The value is stored in the 8 bytes following the
1363 current block of command bytes. If this value appears twice in a block
1364 of command bytes, then it indicates the second group of 8 bytes following the
1365 command bytes, and so on.
1368 An 8-byte string value that is all spaces.
1371 The system-missing value.
1374 When the end of the an 8-byte group of command bytes is reached, any
1375 blocks of non-compressible values indicated by code 253 are skipped,
1376 and the next element of command bytes is read and interpreted, until
1377 the end of the file or a code with value 252 is reached.
1378 @setfilename ignored