replace_file_start: remove parameter TMP_FILE
[pspp] / src / data / sys-file-writer.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-2000, 2006-2014 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #include <config.h>
18
19 #include "data/sys-file-writer.h"
20 #include "data/sys-file-private.h"
21
22 #include <ctype.h>
23 #include <errno.h>
24 #include <stdint.h>
25 #include <stdlib.h>
26 #include <sys/stat.h>
27 #include <time.h>
28 #include <zlib.h>
29
30 #include "data/attributes.h"
31 #include "data/case.h"
32 #include "data/casewriter-provider.h"
33 #include "data/casewriter.h"
34 #include "data/dictionary.h"
35 #include "data/file-handle-def.h"
36 #include "data/file-name.h"
37 #include "data/format.h"
38 #include "data/make-file.h"
39 #include "data/missing-values.h"
40 #include "data/mrset.h"
41 #include "data/settings.h"
42 #include "data/short-names.h"
43 #include "data/value-labels.h"
44 #include "data/variable.h"
45 #include "libpspp/float-format.h"
46 #include "libpspp/i18n.h"
47 #include "libpspp/integer-format.h"
48 #include "libpspp/message.h"
49 #include "libpspp/misc.h"
50 #include "libpspp/str.h"
51 #include "libpspp/string-array.h"
52 #include "libpspp/version.h"
53
54 #include "gl/xmemdup0.h"
55 #include "gl/minmax.h"
56 #include "gl/unlocked-io.h"
57 #include "gl/xalloc.h"
58
59 #include "gettext.h"
60 #define _(msgid) gettext (msgid)
61 #define N_(msgid) (msgid)
62
63 /* Compression bias used by PSPP.  Values between (1 -
64    COMPRESSION_BIAS) and (251 - COMPRESSION_BIAS) inclusive can be
65    compressed. */
66 #define COMPRESSION_BIAS 100
67
68 /* System file writer. */
69 struct sfm_writer
70   {
71     struct file_handle *fh;     /* File handle. */
72     struct fh_lock *lock;       /* Mutual exclusion for file. */
73     FILE *file;                 /* File stream. */
74     struct replace_file *rf;    /* Ticket for replacing output file. */
75
76     enum any_compression compression;
77     casenumber case_cnt;        /* Number of cases written so far. */
78     uint8_t space;              /* ' ' in the file's character encoding. */
79
80     /* Simple compression buffering.
81
82        Compressed data is output as a series of 8-byte elements, with 1 to 9
83        such elements clustered together.  The first element in a cluster is 8
84        1-byte opcodes.  Some opcodes call for an additional element in the
85        cluster (hence, if there are eight such opcodes, then the cluster
86        contains a full 9 elements).
87
88        cbuf[] holds a cluster at a time. */
89     uint8_t cbuf[9][8];
90     int n_opcodes;              /* Number of opcodes in cbuf[0] so far. */
91     int n_elements;             /* Number of elements in cbuf[] so far. */
92
93     /* ZLIB compression. */
94     z_stream zstream;           /* ZLIB deflater. */
95     off_t zstart;
96     struct zblock *blocks;
97     size_t n_blocks, allocated_blocks;
98
99     /* Variables. */
100     struct sfm_var *sfm_vars;   /* Variables. */
101     size_t sfm_var_cnt;         /* Number of variables. */
102     size_t segment_cnt;         /* Number of variables including extra segments
103                                    for long string variables. */
104   };
105
106 struct zblock
107   {
108     unsigned int uncompressed_size;
109     unsigned int compressed_size;
110   };
111
112 static const struct casewriter_class sys_file_casewriter_class;
113
114 static void write_header (struct sfm_writer *, const struct dictionary *);
115 static void write_variable (struct sfm_writer *, const struct variable *);
116 static void write_value_labels (struct sfm_writer *,
117                                 const struct dictionary *);
118 static void write_integer_info_record (struct sfm_writer *,
119                                        const struct dictionary *);
120 static void write_float_info_record (struct sfm_writer *);
121
122 static void write_longvar_table (struct sfm_writer *w,
123                                  const struct dictionary *dict);
124
125 static void write_encoding_record (struct sfm_writer *w,
126                                    const struct dictionary *);
127
128 static void write_vls_length_table (struct sfm_writer *w,
129                               const struct dictionary *dict);
130
131 static void write_long_string_value_labels (struct sfm_writer *,
132                                             const struct dictionary *);
133 static void write_long_string_missing_values (struct sfm_writer *,
134                                               const struct dictionary *);
135
136 static void write_mrsets (struct sfm_writer *, const struct dictionary *,
137                           bool pre_v14);
138
139 static void write_variable_display_parameters (struct sfm_writer *w,
140                                                const struct dictionary *dict);
141
142 static void write_documents (struct sfm_writer *, const struct dictionary *);
143
144 static void write_data_file_attributes (struct sfm_writer *,
145                                         const struct dictionary *);
146 static void write_variable_attributes (struct sfm_writer *,
147                                        const struct dictionary *);
148
149 static void write_int (struct sfm_writer *, int32_t);
150 static void write_int64 (struct sfm_writer *, int64_t);
151 static inline void convert_double_to_output_format (double, uint8_t[8]);
152 static void write_float (struct sfm_writer *, double);
153 static void write_string (struct sfm_writer *, const char *, size_t);
154 static void write_utf8_string (struct sfm_writer *, const char *encoding,
155                                const char *string, size_t width);
156 static void write_utf8_record (struct sfm_writer *, const char *encoding,
157                                const struct string *content, int subtype);
158 static void write_string_record (struct sfm_writer *,
159                                  const struct substring content, int subtype);
160 static void write_bytes (struct sfm_writer *, const void *, size_t);
161 static void write_zeros (struct sfm_writer *, size_t);
162 static void write_spaces (struct sfm_writer *, size_t);
163 static void write_value (struct sfm_writer *, const union value *, int width);
164
165 static void write_case_uncompressed (struct sfm_writer *,
166                                      const struct ccase *);
167 static void write_case_compressed (struct sfm_writer *, const struct ccase *);
168 static void flush_compressed (struct sfm_writer *);
169 static void put_cmp_opcode (struct sfm_writer *, uint8_t);
170 static void put_cmp_number (struct sfm_writer *, double);
171 static void put_cmp_string (struct sfm_writer *, const void *, size_t);
172
173 static bool start_zstream (struct sfm_writer *);
174 static void finish_zstream (struct sfm_writer *);
175 static void write_ztrailer (struct sfm_writer *);
176
177 static bool write_error (const struct sfm_writer *);
178 static bool close_writer (struct sfm_writer *);
179
180 /* Returns default options for writing a system file. */
181 struct sfm_write_options
182 sfm_writer_default_options (void)
183 {
184   struct sfm_write_options opts;
185   opts.compression = (settings_get_scompression ()
186                       ? ANY_COMP_SIMPLE
187                       : ANY_COMP_NONE);
188   opts.create_writeable = true;
189   opts.version = 3;
190   return opts;
191 }
192
193 /* Opens the system file designated by file handle FH for writing
194    cases from dictionary D according to the given OPTS.
195
196    No reference to D is retained, so it may be modified or
197    destroyed at will after this function returns.  D is not
198    modified by this function, except to assign short names. */
199 struct casewriter *
200 sfm_open_writer (struct file_handle *fh, struct dictionary *d,
201                  struct sfm_write_options opts)
202 {
203   struct encoding_info encoding_info;
204   struct sfm_writer *w;
205   mode_t mode;
206   int i;
207
208   /* Check version. */
209   if (opts.version != 2 && opts.version != 3)
210     {
211       msg (ME, _("Unknown system file version %d. Treating as version %d."),
212            opts.version, 3);
213       opts.version = 3;
214     }
215
216   /* Create and initialize writer. */
217   w = xzalloc (sizeof *w);
218   w->fh = fh_ref (fh);
219   w->lock = NULL;
220   w->file = NULL;
221   w->rf = NULL;
222
223   /* Use the requested compression, except that no EBCDIC-based ZLIB compressed
224      files have been observed, so drop back to simple compression for those
225      files. */
226   w->compression = opts.compression;
227   if (w->compression == ANY_COMP_ZLIB
228       && is_encoding_ebcdic_compatible (dict_get_encoding (d)))
229     w->compression = ANY_COMP_SIMPLE;
230
231   w->case_cnt = 0;
232
233   w->n_opcodes = w->n_elements = 0;
234   memset (w->cbuf[0], 0, 8);
235
236   /* Figure out how to map in-memory case data to on-disk case
237      data.  Also count the number of segments.  Very long strings
238      occupy multiple segments, otherwise each variable only takes
239      one segment. */
240   w->segment_cnt = sfm_dictionary_to_sfm_vars (d, &w->sfm_vars,
241                                                &w->sfm_var_cnt);
242
243   /* Open file handle as an exclusive writer. */
244   /* TRANSLATORS: this fragment will be interpolated into
245      messages in fh_lock() that identify types of files. */
246   w->lock = fh_lock (fh, FH_REF_FILE, N_("system file"), FH_ACC_WRITE, true);
247   if (w->lock == NULL)
248     goto error;
249
250   /* Create the file on disk. */
251   mode = 0444;
252   if (opts.create_writeable)
253     mode |= 0222;
254   w->rf = replace_file_start (fh, "wb", mode, &w->file);
255   if (w->rf == NULL)
256     {
257       msg (ME, _("Error opening `%s' for writing as a system file: %s."),
258            fh_get_file_name (fh), strerror (errno));
259       goto error;
260     }
261
262   get_encoding_info (&encoding_info, dict_get_encoding (d));
263   w->space = encoding_info.space[0];
264
265   /* Write the file header. */
266   write_header (w, d);
267
268   /* Write basic variable info. */
269   short_names_assign (d);
270   for (i = 0; i < dict_get_var_cnt (d); i++)
271     write_variable (w, dict_get_var (d, i));
272
273   write_value_labels (w, d);
274
275   if (dict_get_document_line_cnt (d) > 0)
276     write_documents (w, d);
277
278   write_integer_info_record (w, d);
279   write_float_info_record (w);
280
281   write_mrsets (w, d, true);
282
283   write_variable_display_parameters (w, d);
284
285   if (opts.version >= 3)
286     write_longvar_table (w, d);
287
288   write_vls_length_table (w, d);
289
290   write_long_string_value_labels (w, d);
291   write_long_string_missing_values (w, d);
292
293   if (opts.version >= 3)
294     {
295       if (attrset_count (dict_get_attributes (d)))
296         write_data_file_attributes (w, d);
297       write_variable_attributes (w, d);
298     }
299
300   write_mrsets (w, d, false);
301
302   write_encoding_record (w, d);
303
304   /* Write end-of-headers record. */
305   write_int (w, 999);
306   write_int (w, 0);
307
308   if (w->compression == ANY_COMP_ZLIB)
309     {
310       w->zstream.zalloc = Z_NULL;
311       w->zstream.zfree = Z_NULL;
312       w->zstream.opaque = Z_NULL;
313       w->zstart = ftello (w->file);
314
315       write_int64 (w, w->zstart);
316       write_int64 (w, 0);
317       write_int64 (w, 0);
318
319       start_zstream (w);
320     }
321
322   if (write_error (w))
323     goto error;
324
325   return casewriter_create (dict_get_proto (d), &sys_file_casewriter_class, w);
326
327 error:
328   close_writer (w);
329   return NULL;
330 }
331
332 /* Returns value of X truncated to two least-significant digits. */
333 static int
334 rerange (int x)
335 {
336   if (x < 0)
337     x = -x;
338   if (x >= 100)
339     x %= 100;
340   return x;
341 }
342
343 /* Calculates the offset of data for TARGET_VAR from the
344    beginning of each case's data for dictionary D.  The return
345    value is in "octs" (8-byte units). */
346 static int
347 calc_oct_idx (const struct dictionary *d, struct variable *target_var)
348 {
349   int oct_idx;
350   int i;
351
352   oct_idx = 0;
353   for (i = 0; i < dict_get_var_cnt (d); i++)
354     {
355       struct variable *var = dict_get_var (d, i);
356       if (var == target_var)
357         break;
358       oct_idx += sfm_width_to_octs (var_get_width (var));
359     }
360   return oct_idx;
361 }
362
363 /* Write the sysfile_header header to system file W. */
364 static void
365 write_header (struct sfm_writer *w, const struct dictionary *d)
366 {
367   const char *dict_encoding = dict_get_encoding (d);
368   char prod_name[61];
369   char creation_date[10];
370   char creation_time[9];
371   const char *file_label;
372   struct variable *weight;
373
374   time_t t;
375
376   /* Record-type code. */
377   if (is_encoding_ebcdic_compatible (dict_encoding))
378     write_string (w, EBCDIC_MAGIC, 4);
379   else if (w->compression == ANY_COMP_ZLIB)
380     write_string (w, ASCII_ZMAGIC, 4);
381   else
382     write_string (w, ASCII_MAGIC, 4);
383
384   /* Product identification. */
385   snprintf (prod_name, sizeof prod_name, "@(#) SPSS DATA FILE %s - %s",
386             version, host_system);
387   write_utf8_string (w, dict_encoding, prod_name, 60);
388
389   /* Layout code. */
390   write_int (w, 2);
391
392   /* Number of `union value's per case. */
393   write_int (w, calc_oct_idx (d, NULL));
394
395   /* Compressed? */
396   write_int (w, (w->compression == ANY_COMP_NONE ? 0
397                  : w->compression == ANY_COMP_SIMPLE ? 1
398                  : 2));
399
400   /* Weight variable. */
401   weight = dict_get_weight (d);
402   write_int (w, weight != NULL ? calc_oct_idx (d, weight) + 1 : 0);
403
404   /* Number of cases.  We don't know this in advance, so we write
405      -1 to indicate an unknown number of cases.  Later we can
406      come back and overwrite it with the true value. */
407   write_int (w, -1);
408
409   /* Compression bias. */
410   write_float (w, COMPRESSION_BIAS);
411
412   /* Creation date and time. */
413   if (time (&t) == (time_t) -1)
414     {
415       strcpy (creation_date, "01 Jan 70");
416       strcpy (creation_time, "00:00:00");
417     }
418   else
419     {
420       static const char *const month_name[12] =
421         {
422           "Jan", "Feb", "Mar", "Apr", "May", "Jun",
423           "Jul", "Aug", "Sep", "Oct", "Nov", "Dec",
424         };
425       struct tm *tmp = localtime (&t);
426       int day = rerange (tmp->tm_mday);
427       int mon = rerange (tmp->tm_mon + 1);
428       int year = rerange (tmp->tm_year);
429       int hour = rerange (tmp->tm_hour + 1);
430       int min = rerange (tmp->tm_min + 1);
431       int sec = rerange (tmp->tm_sec + 1);
432
433       snprintf (creation_date, sizeof creation_date,
434                 "%02d %s %02d", day, month_name[mon - 1], year);
435       snprintf (creation_time, sizeof creation_time,
436                 "%02d:%02d:%02d", hour - 1, min - 1, sec - 1);
437     }
438   write_utf8_string (w, dict_encoding, creation_date, 9);
439   write_utf8_string (w, dict_encoding, creation_time, 8);
440
441   /* File label. */
442   file_label = dict_get_label (d);
443   if (file_label == NULL)
444     file_label = "";
445   write_utf8_string (w, dict_encoding, file_label, 64);
446
447   /* Padding. */
448   write_zeros (w, 3);
449 }
450
451 /* Write format spec FMT to W, after adjusting it to be
452    compatible with the given WIDTH. */
453 static void
454 write_format (struct sfm_writer *w, struct fmt_spec fmt, int width)
455 {
456   assert (fmt_check_output (&fmt));
457   assert (sfm_width_to_segments (width) == 1);
458
459   if (width > 0)
460     fmt_resize (&fmt, width);
461   write_int (w, (fmt_to_io (fmt.type) << 16) | (fmt.w << 8) | fmt.d);
462 }
463
464 /* Write a string continuation variable record for each 8-byte
465    section beyond the initial 8 bytes, for a variable of the
466    given WIDTH. */
467 static void
468 write_variable_continuation_records (struct sfm_writer *w, int width)
469 {
470   int position;
471
472   assert (sfm_width_to_segments (width) == 1);
473   for (position = 8; position < width; position += 8)
474     {
475       write_int (w, 2);   /* Record type. */
476       write_int (w, -1);  /* Width. */
477       write_int (w, 0);   /* No variable label. */
478       write_int (w, 0);   /* No missing values. */
479       write_int (w, 0);   /* Print format. */
480       write_int (w, 0);   /* Write format. */
481       write_zeros (w, 8);   /* Name. */
482     }
483 }
484
485 /* Write the variable record(s) for variable V to system file
486    W. */
487 static void
488 write_variable (struct sfm_writer *w, const struct variable *v)
489 {
490   int width = var_get_width (v);
491   int segment_cnt = sfm_width_to_segments (width);
492   int seg0_width = sfm_segment_alloc_width (width, 0);
493   const char *encoding = var_get_encoding (v);
494   int i;
495
496   /* Record type. */
497   write_int (w, 2);
498
499   /* Width. */
500   write_int (w, seg0_width);
501
502   /* Variable has a variable label? */
503   write_int (w, var_has_label (v));
504
505   /* Number of missing values.  If there is a range, then the
506      range counts as 2 missing values and causes the number to be
507      negated.
508
509      Missing values for long string variables are written in a separate
510      record. */
511   if (width <= MAX_SHORT_STRING)
512     {
513       const struct missing_values *mv = var_get_missing_values (v);
514       if (mv_has_range (mv))
515         write_int (w, -2 - mv_n_values (mv));
516       else
517         write_int (w, mv_n_values (mv));
518     }
519   else
520     write_int (w, 0);
521
522   /* Print and write formats. */
523   write_format (w, *var_get_print_format (v), seg0_width);
524   write_format (w, *var_get_write_format (v), seg0_width);
525
526   /* Short name.
527      The full name is in a translation table written
528      separately. */
529   write_utf8_string (w, encoding, var_get_short_name (v, 0), 8);
530
531   /* Value label. */
532   if (var_has_label (v))
533     {
534       char *label = recode_string (encoding, UTF8, var_get_label (v), -1);
535       size_t label_len = MIN (strlen (label), 255);
536       size_t padded_len = ROUND_UP (label_len, 4);
537       write_int (w, label_len);
538       write_string (w, label, padded_len);
539       free (label);
540     }
541
542   /* Write the missing values, if any, range first. */
543   if (width <= MAX_SHORT_STRING)
544     {
545       const struct missing_values *mv = var_get_missing_values (v);
546       if (mv_has_range (mv))
547         {
548           double x, y;
549           mv_get_range (mv, &x, &y);
550           write_float (w, x);
551           write_float (w, y);
552         }
553       for (i = 0; i < mv_n_values (mv); i++)
554         write_value (w, mv_get_value (mv, i), width);
555     }
556
557   write_variable_continuation_records (w, seg0_width);
558
559   /* Write additional segments for very long string variables. */
560   for (i = 1; i < segment_cnt; i++)
561     {
562       int seg_width = sfm_segment_alloc_width (width, i);
563       struct fmt_spec fmt = fmt_for_output (FMT_A, MAX (seg_width, 1), 0);
564
565       write_int (w, 2);           /* Variable record. */
566       write_int (w, seg_width);   /* Width. */
567       write_int (w, 0);           /* No variable label. */
568       write_int (w, 0);           /* No missing values. */
569       write_format (w, fmt, seg_width); /* Print format. */
570       write_format (w, fmt, seg_width); /* Write format. */
571       write_utf8_string (w, encoding, var_get_short_name (v, i), 8);
572
573       write_variable_continuation_records (w, seg_width);
574     }
575 }
576
577 /* Writes the value labels to system file W.
578
579    Value labels for long string variables are written separately,
580    by write_long_string_value_labels. */
581 static void
582 write_value_labels (struct sfm_writer *w, const struct dictionary *d)
583 {
584   struct label_set
585     {
586       struct hmap_node hmap_node;
587       const struct val_labs *val_labs;
588       int *indexes;
589       size_t n_indexes, allocated_indexes;
590     };
591
592   size_t n_sets, allocated_sets;
593   struct label_set **sets;
594   struct hmap same_sets;
595   size_t i;
596   int idx;
597
598   n_sets = allocated_sets = 0;
599   sets = NULL;
600   hmap_init (&same_sets);
601
602   idx = 0;
603   for (i = 0; i < dict_get_var_cnt (d); i++)
604     {
605       struct variable *v = dict_get_var (d, i);
606
607       if (var_has_value_labels (v) && var_get_width (v) <= 8)
608         {
609           const struct val_labs *val_labs = var_get_value_labels (v);
610           unsigned int hash = val_labs_hash (val_labs, 0);
611           struct label_set *set;
612
613           HMAP_FOR_EACH_WITH_HASH (set, struct label_set, hmap_node,
614                                    hash, &same_sets)
615             {
616               if (val_labs_equal (set->val_labs, val_labs))
617                 {
618                   if (set->n_indexes >= set->allocated_indexes)
619                     set->indexes = x2nrealloc (set->indexes,
620                                                &set->allocated_indexes,
621                                                sizeof *set->indexes);
622                   set->indexes[set->n_indexes++] = idx;
623                   goto next_var;
624                 }
625             }
626
627           set = xmalloc (sizeof *set);
628           set->val_labs = val_labs;
629           set->indexes = xmalloc (sizeof *set->indexes);
630           set->indexes[0] = idx;
631           set->n_indexes = 1;
632           set->allocated_indexes = 1;
633           hmap_insert (&same_sets, &set->hmap_node, hash);
634
635           if (n_sets >= allocated_sets)
636             sets = x2nrealloc (sets, &allocated_sets, sizeof *sets);
637           sets[n_sets++] = set;
638         }
639
640     next_var:
641       idx += sfm_width_to_octs (var_get_width (v));
642     }
643
644   for (i = 0; i < n_sets; i++)
645     {
646       const struct label_set *set = sets[i];
647       const struct val_labs *val_labs = set->val_labs;
648       size_t n_labels = val_labs_count (val_labs);
649       int width = val_labs_get_width (val_labs);
650       const struct val_lab **labels;
651       size_t j;
652
653       /* Value label record. */
654       write_int (w, 3);             /* Record type. */
655       write_int (w, n_labels);
656       labels = val_labs_sorted (val_labs);
657       for (j = 0; j < n_labels; j++)
658         {
659           const struct val_lab *vl = labels[j];
660           char *label = recode_string (dict_get_encoding (d), UTF8,
661                                        val_lab_get_escaped_label (vl), -1);
662           uint8_t len = MIN (strlen (label), 255);
663
664           write_value (w, val_lab_get_value (vl), width);
665           write_bytes (w, &len, 1);
666           write_bytes (w, label, len);
667           write_zeros (w, REM_RND_UP (len + 1, 8));
668           free (label);
669         }
670       free (labels);
671
672       /* Value label variable record. */
673       write_int (w, 4);              /* Record type. */
674       write_int (w, set->n_indexes);
675       for (j = 0; j < set->n_indexes; j++)
676         write_int (w, set->indexes[j] + 1);
677     }
678
679   for (i = 0; i < n_sets; i++)
680     {
681       struct label_set *set = sets[i];
682
683       free (set->indexes);
684       free (set);
685     }
686   free (sets);
687   hmap_destroy (&same_sets);
688 }
689
690 /* Writes record type 6, document record. */
691 static void
692 write_documents (struct sfm_writer *w, const struct dictionary *d)
693 {
694   const struct string_array *docs = dict_get_documents (d);
695   const char *enc = dict_get_encoding (d);
696   size_t i;
697
698   write_int (w, 6);             /* Record type. */
699   write_int (w, docs->n);
700   for (i = 0; i < docs->n; i++)
701     {
702       char *s = recode_string (enc, "UTF-8", docs->strings[i], -1);
703       size_t s_len = strlen (s);
704       size_t write_len = MIN (s_len, DOC_LINE_LENGTH);
705
706       write_bytes (w, s, write_len);
707       write_spaces (w, DOC_LINE_LENGTH - write_len);
708       free (s);
709     }
710 }
711
712 static void
713 put_attrset (struct string *string, const struct attrset *attrs)
714 {
715   const struct attribute *attr;
716   struct attrset_iterator i;
717
718   for (attr = attrset_first (attrs, &i); attr != NULL;
719        attr = attrset_next (attrs, &i)) 
720     {
721       size_t n_values = attribute_get_n_values (attr);
722       size_t j;
723
724       ds_put_cstr (string, attribute_get_name (attr));
725       ds_put_byte (string, '(');
726       for (j = 0; j < n_values; j++) 
727         ds_put_format (string, "'%s'\n", attribute_get_value (attr, j));
728       ds_put_byte (string, ')');
729     }
730 }
731
732 static void
733 write_data_file_attributes (struct sfm_writer *w,
734                             const struct dictionary *d)
735 {
736   struct string s = DS_EMPTY_INITIALIZER;
737   put_attrset (&s, dict_get_attributes (d));
738   write_utf8_record (w, dict_get_encoding (d), &s, 17);
739   ds_destroy (&s);
740 }
741
742 static void
743 add_role_attribute (enum var_role role, struct attrset *attrs)
744 {
745   struct attribute *attr;
746   const char *s;
747
748   switch (role)
749     {
750     case ROLE_INPUT:
751     default:
752       s = "0";
753       break;
754
755     case ROLE_TARGET:
756       s = "1";
757       break;
758
759     case ROLE_BOTH:
760       s = "2";
761       break;
762
763     case ROLE_NONE:
764       s = "3";
765       break;
766
767     case ROLE_PARTITION:
768       s = "4";
769       break;
770
771     case ROLE_SPLIT:
772       s = "5";
773       break;
774     }
775   attrset_delete (attrs, "$@Role");
776
777   attr = attribute_create ("$@Role");
778   attribute_add_value (attr, s);
779   attrset_add (attrs, attr);
780 }
781
782 static void
783 write_variable_attributes (struct sfm_writer *w, const struct dictionary *d)
784 {
785   struct string s = DS_EMPTY_INITIALIZER;
786   size_t n_vars = dict_get_var_cnt (d);
787   size_t n_attrsets = 0;
788   size_t i;
789
790   for (i = 0; i < n_vars; i++)
791     { 
792       struct variable *v = dict_get_var (d, i);
793       struct attrset attrs;
794
795       attrset_clone (&attrs, var_get_attributes (v));
796
797       add_role_attribute (var_get_role (v), &attrs);
798       if (n_attrsets++)
799         ds_put_byte (&s, '/');
800       ds_put_format (&s, "%s:", var_get_name (v));
801       put_attrset (&s, &attrs);
802       attrset_destroy (&attrs);
803     }
804   if (n_attrsets)
805     write_utf8_record (w, dict_get_encoding (d), &s, 18);
806   ds_destroy (&s);
807 }
808
809 /* Write multiple response sets.  If PRE_V14 is true, writes sets supported by
810    SPSS before release 14, otherwise writes sets supported only by later
811    versions. */
812 static void
813 write_mrsets (struct sfm_writer *w, const struct dictionary *dict,
814               bool pre_v14)
815 {
816   const char *encoding = dict_get_encoding (dict);
817   struct string s = DS_EMPTY_INITIALIZER;
818   size_t n_mrsets;
819   size_t i;
820
821   if (is_encoding_ebcdic_compatible (encoding))
822     {
823       /* FIXME. */
824       return;
825     }
826
827   n_mrsets = dict_get_n_mrsets (dict);
828   if (n_mrsets == 0)
829     return;
830
831   for (i = 0; i < n_mrsets; i++)
832     {
833       const struct mrset *mrset = dict_get_mrset (dict, i);
834       char *name;
835       size_t j;
836
837       if ((mrset->type != MRSET_MD || mrset->cat_source != MRSET_COUNTEDVALUES)
838           != pre_v14)
839         continue;
840
841       name = recode_string (encoding, "UTF-8", mrset->name, -1);
842       ds_put_format (&s, "%s=", name);
843       free (name);
844
845       if (mrset->type == MRSET_MD)
846         {
847           char *counted;
848
849           if (mrset->cat_source == MRSET_COUNTEDVALUES)
850             ds_put_format (&s, "E %d ", mrset->label_from_var_label ? 11 : 1);
851           else
852             ds_put_byte (&s, 'D');
853
854           if (mrset->width == 0)
855             counted = xasprintf ("%.0f", mrset->counted.f);
856           else
857             counted = xmemdup0 (value_str (&mrset->counted, mrset->width),
858                                 mrset->width);
859           ds_put_format (&s, "%zu %s", strlen (counted), counted);
860           free (counted);
861         }
862       else
863         ds_put_byte (&s, 'C');
864       ds_put_byte (&s, ' ');
865
866       if (mrset->label && !mrset->label_from_var_label)
867         {
868           char *label = recode_string (encoding, "UTF-8", mrset->label, -1);
869           ds_put_format (&s, "%zu %s", strlen (label), label);
870           free (label);
871         }
872       else
873         ds_put_cstr (&s, "0 ");
874
875       for (j = 0; j < mrset->n_vars; j++)
876         {
877           const char *short_name_utf8 = var_get_short_name (mrset->vars[j], 0);
878           char *lower_name_utf8 = utf8_to_lower (short_name_utf8);
879           char *short_name = recode_string (encoding, "UTF-8",
880                                             lower_name_utf8, -1);
881           ds_put_format (&s, " %s", short_name);
882           free (short_name);
883           free (lower_name_utf8);
884         }
885       ds_put_byte (&s, '\n');
886     }
887
888   if (!ds_is_empty (&s))
889     write_string_record (w, ds_ss (&s), pre_v14 ? 7 : 19);
890   ds_destroy (&s);
891 }
892
893 /* Write the alignment, width and scale values. */
894 static void
895 write_variable_display_parameters (struct sfm_writer *w,
896                                    const struct dictionary *dict)
897 {
898   int i;
899
900   write_int (w, 7);             /* Record type. */
901   write_int (w, 11);            /* Record subtype. */
902   write_int (w, 4);             /* Data item (int32) size. */
903   write_int (w, w->segment_cnt * 3); /* Number of data items. */
904
905   for (i = 0; i < dict_get_var_cnt (dict); ++i)
906     {
907       struct variable *v = dict_get_var (dict, i);
908       int width = var_get_width (v);
909       int segment_cnt = sfm_width_to_segments (width);
910       int measure = (var_get_measure (v) == MEASURE_NOMINAL ? 1
911                      : var_get_measure (v) == MEASURE_ORDINAL ? 2
912                      : 3);
913       int alignment = (var_get_alignment (v) == ALIGN_LEFT ? 0
914                        : var_get_alignment (v) == ALIGN_RIGHT ? 1
915                        : 2);
916       int i;
917
918       for (i = 0; i < segment_cnt; i++)
919         {
920           int width_left = width - sfm_segment_effective_offset (width, i);
921           write_int (w, measure);
922           write_int (w, (i == 0 ? var_get_display_width (v)
923                          : var_default_display_width (width_left)));
924           write_int (w, alignment);
925         }
926     }
927 }
928
929 /* Writes the table of lengths for very long string variables. */
930 static void
931 write_vls_length_table (struct sfm_writer *w,
932                         const struct dictionary *dict)
933 {
934   struct string map;
935   int i;
936
937   ds_init_empty (&map);
938   for (i = 0; i < dict_get_var_cnt (dict); ++i)
939     {
940       const struct variable *v = dict_get_var (dict, i);
941       if (sfm_width_to_segments (var_get_width (v)) > 1)
942         ds_put_format (&map, "%s=%05d%c\t",
943                        var_get_short_name (v, 0), var_get_width (v), 0);
944     }
945   if (!ds_is_empty (&map))
946     write_utf8_record (w, dict_get_encoding (dict), &map, 14);
947   ds_destroy (&map);
948 }
949
950 static void
951 write_long_string_value_labels (struct sfm_writer *w,
952                                 const struct dictionary *dict)
953 {
954   const char *encoding = dict_get_encoding (dict);
955   size_t n_vars = dict_get_var_cnt (dict);
956   size_t size, i;
957   off_t start UNUSED;
958
959   /* Figure out the size in advance. */
960   size = 0;
961   for (i = 0; i < n_vars; i++)
962     {
963       struct variable *var = dict_get_var (dict, i);
964       const struct val_labs *val_labs = var_get_value_labels (var);
965       int width = var_get_width (var);
966       const struct val_lab *val_lab;
967
968       if (val_labs_count (val_labs) == 0 || width < 9)
969         continue;
970
971       size += 12;
972       size += recode_string_len (encoding, "UTF-8", var_get_name (var), -1);
973       for (val_lab = val_labs_first (val_labs); val_lab != NULL;
974            val_lab = val_labs_next (val_labs, val_lab))
975         {
976           size += 8 + width;
977           size += recode_string_len (encoding, "UTF-8",
978                                      val_lab_get_escaped_label (val_lab), -1);
979         }
980     }
981   if (size == 0)
982     return;
983
984   write_int (w, 7);             /* Record type. */
985   write_int (w, 21);            /* Record subtype */
986   write_int (w, 1);             /* Data item (byte) size. */
987   write_int (w, size);          /* Number of data items. */
988
989   start = ftello (w->file);
990   for (i = 0; i < n_vars; i++)
991     {
992       struct variable *var = dict_get_var (dict, i);
993       const struct val_labs *val_labs = var_get_value_labels (var);
994       int width = var_get_width (var);
995       const struct val_lab *val_lab;
996       char *var_name;
997
998       if (val_labs_count (val_labs) == 0 || width < 9)
999         continue;
1000
1001       var_name = recode_string (encoding, "UTF-8", var_get_name (var), -1);
1002       write_int (w, strlen (var_name));
1003       write_bytes (w, var_name, strlen (var_name));
1004       free (var_name);
1005
1006       write_int (w, width);
1007       write_int (w, val_labs_count (val_labs));
1008       for (val_lab = val_labs_first (val_labs); val_lab != NULL;
1009            val_lab = val_labs_next (val_labs, val_lab))
1010         {
1011           char *label;
1012           size_t len;
1013
1014           write_int (w, width);
1015           write_bytes (w, value_str (val_lab_get_value (val_lab), width),
1016                        width);
1017
1018           label = recode_string (var_get_encoding (var), "UTF-8",
1019                                  val_lab_get_escaped_label (val_lab), -1);
1020           len = strlen (label);
1021           write_int (w, len);
1022           write_bytes (w, label, len);
1023           free (label);
1024         }
1025     }
1026   assert (ftello (w->file) == start + size);
1027 }
1028
1029 static void
1030 write_long_string_missing_values (struct sfm_writer *w,
1031                                   const struct dictionary *dict)
1032 {
1033   const char *encoding = dict_get_encoding (dict);
1034   size_t n_vars = dict_get_var_cnt (dict);
1035   size_t size, i;
1036   off_t start UNUSED;
1037
1038   /* Figure out the size in advance. */
1039   size = 0;
1040   for (i = 0; i < n_vars; i++)
1041     {
1042       struct variable *var = dict_get_var (dict, i);
1043       const struct missing_values *mv = var_get_missing_values (var);
1044       int width = var_get_width (var);
1045
1046       if (mv_is_empty (mv) || width < 9)
1047         continue;
1048
1049       size += 4;
1050       size += recode_string_len (encoding, "UTF-8", var_get_name (var), -1);
1051       size += 1;
1052       size += mv_n_values (mv) * (4 + 8);
1053     }
1054   if (size == 0)
1055     return;
1056
1057   write_int (w, 7);             /* Record type. */
1058   write_int (w, 22);            /* Record subtype */
1059   write_int (w, 1);             /* Data item (byte) size. */
1060   write_int (w, size);          /* Number of data items. */
1061
1062   start = ftello (w->file);
1063   for (i = 0; i < n_vars; i++)
1064     {
1065       struct variable *var = dict_get_var (dict, i);
1066       const struct missing_values *mv = var_get_missing_values (var);
1067       int width = var_get_width (var);
1068       uint8_t n_missing_values;
1069       char *var_name;
1070       int j;
1071
1072       if (mv_is_empty (mv) || width < 9)
1073         continue;
1074
1075       var_name = recode_string (encoding, "UTF-8", var_get_name (var), -1);
1076       write_int (w, strlen (var_name));
1077       write_bytes (w, var_name, strlen (var_name));
1078       free (var_name);
1079
1080       n_missing_values = mv_n_values (mv);
1081       write_bytes (w, &n_missing_values, 1);
1082
1083       for (j = 0; j < n_missing_values; j++)
1084         {
1085           const union value *value = mv_get_value (mv, j);
1086
1087           write_int (w, 8);
1088           write_bytes (w, value_str (value, width), 8);
1089         }
1090     }
1091   assert (ftello (w->file) == start + size);
1092 }
1093
1094 static void
1095 write_encoding_record (struct sfm_writer *w,
1096                        const struct dictionary *d)
1097 {
1098   /* IANA says "...character set names may be up to 40 characters taken
1099      from the printable characters of US-ASCII," so character set names
1100      don't need to be recoded to be in UTF-8.
1101
1102      We convert encoding names to uppercase because SPSS writes encoding
1103      names in uppercase. */
1104   char *encoding = xstrdup (dict_get_encoding (d));
1105   str_uppercase (encoding);
1106   write_string_record (w, ss_cstr (encoding), 20);
1107   free (encoding);
1108 }
1109
1110 /* Writes the long variable name table. */
1111 static void
1112 write_longvar_table (struct sfm_writer *w, const struct dictionary *dict)
1113 {
1114   struct string map;
1115   size_t i;
1116
1117   ds_init_empty (&map);
1118   for (i = 0; i < dict_get_var_cnt (dict); i++)
1119     {
1120       struct variable *v = dict_get_var (dict, i);
1121       if (i)
1122         ds_put_byte (&map, '\t');
1123       ds_put_format (&map, "%s=%s",
1124                      var_get_short_name (v, 0), var_get_name (v));
1125     }
1126   write_utf8_record (w, dict_get_encoding (dict), &map, 13);
1127   ds_destroy (&map);
1128 }
1129
1130 /* Write integer information record. */
1131 static void
1132 write_integer_info_record (struct sfm_writer *w,
1133                            const struct dictionary *d)
1134 {
1135   const char *dict_encoding = dict_get_encoding (d);
1136   int version_component[3];
1137   int float_format;
1138   int codepage;
1139
1140   /* Parse the version string. */
1141   memset (version_component, 0, sizeof version_component);
1142   sscanf (bare_version, "%d.%d.%d",
1143           &version_component[0], &version_component[1], &version_component[2]);
1144
1145   /* Figure out the floating-point format. */
1146   if (FLOAT_NATIVE_64_BIT == FLOAT_IEEE_DOUBLE_LE
1147       || FLOAT_NATIVE_64_BIT == FLOAT_IEEE_DOUBLE_BE)
1148     float_format = 1;
1149   else if (FLOAT_NATIVE_64_BIT == FLOAT_Z_LONG)
1150     float_format = 2;
1151   else if (FLOAT_NATIVE_64_BIT == FLOAT_VAX_D)
1152     float_format = 3;
1153   else
1154     abort ();
1155
1156   /* Choose codepage. */
1157   codepage = sys_get_codepage_from_encoding (dict_encoding);
1158   if (codepage == 0)
1159     {
1160       /* The codepage is unknown.  Choose a default.
1161
1162          For an EBCDIC-compatible encoding, use the value for EBCDIC.
1163
1164          For an ASCII-compatible encoding, default to "7-bit ASCII", because
1165          many files use this codepage number regardless of their actual
1166          encoding.
1167       */
1168       if (is_encoding_ascii_compatible (dict_encoding))
1169         codepage = 2;
1170       else if (is_encoding_ebcdic_compatible (dict_encoding))
1171         codepage = 1;
1172     }
1173
1174   /* Write record. */
1175   write_int (w, 7);             /* Record type. */
1176   write_int (w, 3);             /* Record subtype. */
1177   write_int (w, 4);             /* Data item (int32) size. */
1178   write_int (w, 8);             /* Number of data items. */
1179   write_int (w, version_component[0]);
1180   write_int (w, version_component[1]);
1181   write_int (w, version_component[2]);
1182   write_int (w, -1);          /* Machine code. */
1183   write_int (w, float_format);
1184   write_int (w, 1);           /* Compression code. */
1185   write_int (w, INTEGER_NATIVE == INTEGER_MSB_FIRST ? 1 : 2);
1186   write_int (w, codepage);
1187 }
1188
1189 /* Write floating-point information record. */
1190 static void
1191 write_float_info_record (struct sfm_writer *w)
1192 {
1193   write_int (w, 7);             /* Record type. */
1194   write_int (w, 4);             /* Record subtype. */
1195   write_int (w, 8);             /* Data item (flt64) size. */
1196   write_int (w, 3);             /* Number of data items. */
1197   write_float (w, SYSMIS);      /* System-missing value. */
1198   write_float (w, HIGHEST);     /* Value used for HIGHEST in missing values. */
1199   write_float (w, LOWEST);      /* Value used for LOWEST in missing values. */
1200 }
1201 \f
1202 /* Writes case C to system file W. */
1203 static void
1204 sys_file_casewriter_write (struct casewriter *writer, void *w_,
1205                            struct ccase *c)
1206 {
1207   struct sfm_writer *w = w_;
1208
1209   if (ferror (w->file))
1210     {
1211       casewriter_force_error (writer);
1212       case_unref (c);
1213       return;
1214     }
1215
1216   w->case_cnt++;
1217
1218   if (w->compression == ANY_COMP_NONE)
1219     write_case_uncompressed (w, c);
1220   else
1221     write_case_compressed (w, c);
1222
1223   case_unref (c);
1224 }
1225
1226 /* Destroys system file writer W. */
1227 static void
1228 sys_file_casewriter_destroy (struct casewriter *writer, void *w_)
1229 {
1230   struct sfm_writer *w = w_;
1231   if (!close_writer (w))
1232     casewriter_force_error (writer);
1233 }
1234
1235 /* Returns true if an I/O error has occurred on WRITER, false otherwise. */
1236 static bool
1237 write_error (const struct sfm_writer *writer)
1238 {
1239   return ferror (writer->file);
1240 }
1241
1242 /* Closes a system file after we're done with it.
1243    Returns true if successful, false if an I/O error occurred. */
1244 static bool
1245 close_writer (struct sfm_writer *w)
1246 {
1247   bool ok;
1248
1249   if (w == NULL)
1250     return true;
1251
1252   ok = true;
1253   if (w->file != NULL)
1254     {
1255       /* Flush buffer. */
1256       flush_compressed (w);
1257       if (w->compression == ANY_COMP_ZLIB)
1258         {
1259           finish_zstream (w);
1260           write_ztrailer (w);
1261         }
1262       fflush (w->file);
1263
1264       ok = !write_error (w);
1265
1266       /* Seek back to the beginning and update the number of cases.
1267          This is just a courtesy to later readers, so there's no need
1268          to check return values or report errors. */
1269       if (ok && w->case_cnt <= INT32_MAX && !fseeko (w->file, 80, SEEK_SET))
1270         {
1271           write_int (w, w->case_cnt);
1272           clearerr (w->file);
1273         }
1274
1275       if (fclose (w->file) == EOF)
1276         ok = false;
1277
1278       if (!ok)
1279         msg (ME, _("An I/O error occurred writing system file `%s'."),
1280              fh_get_file_name (w->fh));
1281
1282       if (ok ? !replace_file_commit (w->rf) : !replace_file_abort (w->rf))
1283         ok = false;
1284     }
1285
1286   free (w->blocks);
1287
1288   fh_unlock (w->lock);
1289   fh_unref (w->fh);
1290
1291   free (w->sfm_vars);
1292   free (w);
1293
1294   return ok;
1295 }
1296
1297 /* System file writer casewriter class. */
1298 static const struct casewriter_class sys_file_casewriter_class =
1299   {
1300     sys_file_casewriter_write,
1301     sys_file_casewriter_destroy,
1302     NULL,
1303   };
1304 \f
1305 /* Writes case C to system file W, without compressing it. */
1306 static void
1307 write_case_uncompressed (struct sfm_writer *w, const struct ccase *c)
1308 {
1309   size_t i;
1310
1311   for (i = 0; i < w->sfm_var_cnt; i++)
1312     {
1313       struct sfm_var *v = &w->sfm_vars[i];
1314
1315       if (v->var_width == 0)
1316         write_float (w, case_num_idx (c, v->case_index));
1317       else
1318         {
1319           write_bytes (w, case_str_idx (c, v->case_index) + v->offset,
1320                        v->segment_width);
1321           write_spaces (w, v->padding);
1322         }
1323     }
1324 }
1325
1326 /* Writes case C to system file W, with compression. */
1327 static void
1328 write_case_compressed (struct sfm_writer *w, const struct ccase *c)
1329 {
1330   size_t i;
1331
1332   for (i = 0; i < w->sfm_var_cnt; i++)
1333     {
1334       struct sfm_var *v = &w->sfm_vars[i];
1335
1336       if (v->var_width == 0)
1337         {
1338           double d = case_num_idx (c, v->case_index);
1339           if (d == SYSMIS)
1340             put_cmp_opcode (w, 255);
1341           else if (d >= 1 - COMPRESSION_BIAS
1342                    && d <= 251 - COMPRESSION_BIAS
1343                    && d == (int) d)
1344             put_cmp_opcode (w, (int) d + COMPRESSION_BIAS);
1345           else
1346             put_cmp_number (w, d);
1347         }
1348       else
1349         {
1350           int offset = v->offset;
1351           int width, padding;
1352
1353           /* This code properly deals with a width that is not a
1354              multiple of 8, by ensuring that the final partial
1355              oct (8 byte unit) is treated as padded with spaces
1356              on the right. */
1357           for (width = v->segment_width; width > 0; width -= 8, offset += 8)
1358             {
1359               const void *data = case_str_idx (c, v->case_index) + offset;
1360               int chunk_size = MIN (width, 8);
1361               if (!memcmp (data, "        ", chunk_size))
1362                 put_cmp_opcode (w, 254);
1363               else
1364                 put_cmp_string (w, data, chunk_size);
1365             }
1366
1367           /* This code deals properly with padding that is not a
1368              multiple of 8 bytes, by discarding the remainder,
1369              which was already effectively padded with spaces in
1370              the previous loop.  (Note that v->width + v->padding
1371              is always a multiple of 8.) */
1372           for (padding = v->padding / 8; padding > 0; padding--)
1373             put_cmp_opcode (w, 254);
1374         }
1375     }
1376 }
1377
1378 static bool
1379 start_zstream (struct sfm_writer *w)
1380 {
1381   int error;
1382
1383   error = deflateInit (&w->zstream, 1);
1384   if (error != Z_OK)
1385     {
1386       msg (ME, _("Failed to initialize ZLIB for compression (%s)."),
1387            w->zstream.msg);
1388       return false;
1389     }
1390   return true;
1391 }
1392
1393 static void
1394 finish_zstream (struct sfm_writer *w)
1395 {
1396   struct zblock *block;
1397   int error;
1398
1399   assert (w->zstream.total_in <= ZBLOCK_SIZE);
1400
1401   w->zstream.next_in = NULL;
1402   w->zstream.avail_in = 0;
1403   do
1404     {
1405       uint8_t buf[4096];
1406
1407       w->zstream.next_out = buf;
1408       w->zstream.avail_out = sizeof buf;
1409       error = deflate (&w->zstream, Z_FINISH);
1410       write_bytes (w, buf, w->zstream.next_out - buf);
1411     }
1412   while (error == Z_OK);
1413
1414   if (error != Z_STREAM_END)
1415     msg (ME, _("Failed to complete ZLIB stream compression (%s)."),
1416          w->zstream.msg);
1417
1418   if (w->n_blocks >= w->allocated_blocks)
1419     w->blocks = x2nrealloc (w->blocks, &w->allocated_blocks,
1420                             sizeof *w->blocks);
1421   block = &w->blocks[w->n_blocks++];
1422   block->uncompressed_size = w->zstream.total_in;
1423   block->compressed_size = w->zstream.total_out;
1424 }
1425
1426 static void
1427 write_zlib (struct sfm_writer *w, const void *data_, unsigned int n)
1428 {
1429   const uint8_t *data = data_;
1430
1431   while (n > 0)
1432     {
1433       unsigned int chunk;
1434
1435       if (w->zstream.total_in >= ZBLOCK_SIZE)
1436         {
1437           finish_zstream (w);
1438           start_zstream (w);
1439         }
1440
1441       chunk = MIN (n, ZBLOCK_SIZE - w->zstream.total_in);
1442
1443       w->zstream.next_in = CONST_CAST (uint8_t *, data);
1444       w->zstream.avail_in = chunk;
1445       do
1446         {
1447           uint8_t buf[4096];
1448           int error;
1449
1450           w->zstream.next_out = buf;
1451           w->zstream.avail_out = sizeof buf;
1452           error = deflate (&w->zstream, Z_NO_FLUSH);
1453           write_bytes (w, buf, w->zstream.next_out - buf);
1454           if (error != Z_OK)
1455             {
1456               msg (ME, _("ZLIB stream compression failed (%s)."),
1457                    w->zstream.msg);
1458               return;
1459             }
1460         }
1461       while (w->zstream.avail_in > 0 || w->zstream.avail_out == 0);
1462       data += chunk;
1463       n -= chunk;
1464     }
1465 }
1466
1467 static void
1468 write_ztrailer (struct sfm_writer *w)
1469 {
1470   long long int uncompressed_ofs;
1471   long long int compressed_ofs;
1472   const struct zblock *block;
1473
1474   write_int64 (w, -COMPRESSION_BIAS);
1475   write_int64 (w, 0);
1476   write_int (w, ZBLOCK_SIZE);
1477   write_int (w, w->n_blocks);
1478
1479   uncompressed_ofs = w->zstart;
1480   compressed_ofs = w->zstart + 24;
1481   for (block = w->blocks; block < &w->blocks[w->n_blocks]; block++)
1482     {
1483       write_int64 (w, uncompressed_ofs);
1484       write_int64 (w, compressed_ofs);
1485       write_int (w, block->uncompressed_size);
1486       write_int (w, block->compressed_size);
1487
1488       uncompressed_ofs += block->uncompressed_size;
1489       compressed_ofs += block->compressed_size;
1490     }
1491
1492   if (!fseeko (w->file, w->zstart + 8, SEEK_SET))
1493     {
1494       write_int64 (w, compressed_ofs);
1495       write_int64 (w, 24 + (w->n_blocks * 24));
1496     }
1497   else
1498     msg (ME, _("%s: Seek failed (%s)."),
1499          fh_get_file_name (w->fh), strerror (errno));
1500 }
1501
1502 /* Flushes buffered compressed opcodes and data to W. */
1503 static void
1504 flush_compressed (struct sfm_writer *w)
1505 {
1506   if (w->n_opcodes)
1507     {
1508       unsigned int n = 8 * (1 + w->n_elements);
1509       if (w->compression == ANY_COMP_SIMPLE)
1510         write_bytes (w, w->cbuf, n);
1511       else
1512         write_zlib (w, w->cbuf, n);
1513
1514       w->n_opcodes = w->n_elements = 0;
1515       memset (w->cbuf[0], 0, 8);
1516     }
1517 }
1518
1519 /* Appends OPCODE to the buffered set of compression opcodes in
1520    W.  Flushes the compression buffer beforehand if necessary. */
1521 static void
1522 put_cmp_opcode (struct sfm_writer *w, uint8_t opcode)
1523 {
1524   if (w->n_opcodes >= 8)
1525     flush_compressed (w);
1526
1527   w->cbuf[0][w->n_opcodes++] = opcode;
1528 }
1529
1530 /* Appends NUMBER to the buffered compression data in W. */
1531 static void
1532 put_cmp_number (struct sfm_writer *w, double number)
1533 {
1534   put_cmp_opcode (w, 253);
1535   convert_double_to_output_format (number, w->cbuf[++w->n_elements]);
1536 }
1537
1538 /* Appends SIZE bytes of DATA to the buffered compression data in
1539    W, followed by enough spaces to pad the output data to exactly
1540    8 bytes (thus, SIZE must be no greater than 8). */
1541 static void
1542 put_cmp_string (struct sfm_writer *w, const void *data, size_t size)
1543 {
1544   assert (size <= 8);
1545
1546   put_cmp_opcode (w, 253);
1547   w->n_elements++;
1548   memset (w->cbuf[w->n_elements], w->space, 8);
1549   memcpy (w->cbuf[w->n_elements], data, size);
1550 }
1551 \f
1552 /* Writes 32-bit integer X to the output file for writer W. */
1553 static void
1554 write_int (struct sfm_writer *w, int32_t x)
1555 {
1556   write_bytes (w, &x, sizeof x);
1557 }
1558
1559 /* Writes 64-bit integer X to the output file for writer W. */
1560 static void
1561 write_int64 (struct sfm_writer *w, int64_t x)
1562 {
1563   write_bytes (w, &x, sizeof x);
1564 }
1565
1566 /* Converts NATIVE to the 64-bit format used in output files in
1567    OUTPUT. */
1568 static inline void
1569 convert_double_to_output_format (double native, uint8_t output[8])
1570 {
1571   /* If "double" is not a 64-bit type, then convert it to a
1572      64-bit type.  Otherwise just copy it. */
1573   if (FLOAT_NATIVE_DOUBLE != FLOAT_NATIVE_64_BIT)
1574     float_convert (FLOAT_NATIVE_DOUBLE, &native, FLOAT_NATIVE_64_BIT, output);
1575   else
1576     memcpy (output, &native, sizeof native);
1577 }
1578
1579 /* Writes floating-point number X to the output file for writer
1580    W. */
1581 static void
1582 write_float (struct sfm_writer *w, double x)
1583 {
1584   uint8_t output[8];
1585   convert_double_to_output_format (x, output);
1586   write_bytes (w, output, sizeof output);
1587 }
1588
1589 /* Writes contents of VALUE with the given WIDTH to W, padding
1590    with zeros to a multiple of 8 bytes.
1591    To avoid a branch, and because we don't actually need to
1592    support it, WIDTH must be no bigger than 8. */
1593 static void
1594 write_value (struct sfm_writer *w, const union value *value, int width)
1595 {
1596   assert (width <= 8);
1597   if (width == 0)
1598     write_float (w, value->f);
1599   else
1600     {
1601       write_bytes (w, value_str (value, width), width);
1602       write_zeros (w, 8 - width);
1603     }
1604 }
1605
1606 /* Writes null-terminated STRING in a field of the given WIDTH to W.  If STRING
1607    is longer than WIDTH, it is truncated; if STRING is shorter than WIDTH, it
1608    is padded on the right with spaces. */
1609 static void
1610 write_string (struct sfm_writer *w, const char *string, size_t width)
1611 {
1612   size_t data_bytes = MIN (strlen (string), width);
1613   size_t pad_bytes = width - data_bytes;
1614   write_bytes (w, string, data_bytes);
1615   while (pad_bytes-- > 0)
1616     putc (w->space, w->file);
1617 }
1618
1619 /* Recodes null-terminated UTF-8 encoded STRING into ENCODING, and writes the
1620    recoded version in a field of the given WIDTH to W.  The string is truncated
1621    or padded on the right with spaces to exactly WIDTH bytes. */
1622 static void
1623 write_utf8_string (struct sfm_writer *w, const char *encoding,
1624                    const char *string, size_t width)
1625 {
1626   char *s = recode_string (encoding, "UTF-8", string, -1);
1627   write_string (w, s, width);
1628   free (s);
1629 }
1630
1631 /* Writes a record with type 7, subtype SUBTYPE that contains CONTENT recoded
1632    from UTF-8 encoded into ENCODING. */
1633 static void
1634 write_utf8_record (struct sfm_writer *w, const char *encoding,
1635                    const struct string *content, int subtype)
1636 {
1637   struct substring s;
1638
1639   s = recode_substring_pool (encoding, "UTF-8", ds_ss (content), NULL);
1640   write_string_record (w, s, subtype);
1641   ss_dealloc (&s);
1642 }
1643
1644 /* Writes a record with type 7, subtype SUBTYPE that contains the string
1645    CONTENT. */
1646 static void
1647 write_string_record (struct sfm_writer *w,
1648                      const struct substring content, int subtype)
1649 {
1650   write_int (w, 7);
1651   write_int (w, subtype);
1652   write_int (w, 1);
1653   write_int (w, ss_length (content));
1654   write_bytes (w, ss_data (content), ss_length (content));
1655 }
1656
1657 /* Writes SIZE bytes of DATA to W's output file. */
1658 static void
1659 write_bytes (struct sfm_writer *w, const void *data, size_t size)
1660 {
1661   fwrite (data, 1, size, w->file);
1662 }
1663
1664 /* Writes N zeros to W's output file. */
1665 static void
1666 write_zeros (struct sfm_writer *w, size_t n)
1667 {
1668   while (n-- > 0)
1669     putc (0, w->file);
1670 }
1671
1672 /* Writes N spaces to W's output file. */
1673 static void
1674 write_spaces (struct sfm_writer *w, size_t n)
1675 {
1676   while (n-- > 0)
1677     putc (w->space, w->file);
1678 }