b655f44073a353737d526a32f0b7159bea2e28c5
[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/format.h"
37 #include "data/make-file.h"
38 #include "data/missing-values.h"
39 #include "data/mrset.h"
40 #include "data/settings.h"
41 #include "data/short-names.h"
42 #include "data/value-labels.h"
43 #include "data/variable.h"
44 #include "libpspp/float-format.h"
45 #include "libpspp/i18n.h"
46 #include "libpspp/integer-format.h"
47 #include "libpspp/message.h"
48 #include "libpspp/misc.h"
49 #include "libpspp/str.h"
50 #include "libpspp/string-array.h"
51 #include "libpspp/version.h"
52
53 #include "gl/xmemdup0.h"
54 #include "gl/minmax.h"
55 #include "gl/unlocked-io.h"
56 #include "gl/xalloc.h"
57
58 #include "gettext.h"
59 #define _(msgid) gettext (msgid)
60 #define N_(msgid) (msgid)
61
62 /* Compression bias used by PSPP.  Values between (1 -
63    COMPRESSION_BIAS) and (251 - COMPRESSION_BIAS) inclusive can be
64    compressed. */
65 #define COMPRESSION_BIAS 100
66
67 /* System file writer. */
68 struct sfm_writer
69   {
70     struct file_handle *fh;     /* File handle. */
71     struct fh_lock *lock;       /* Mutual exclusion for file. */
72     FILE *file;                 /* File stream. */
73     struct replace_file *rf;    /* Ticket for replacing output file. */
74
75     enum any_compression compression;
76     casenumber case_cnt;        /* Number of cases written so far. */
77     uint8_t space;              /* ' ' in the file's character encoding. */
78
79     /* Simple compression buffering.
80
81        Compressed data is output as a series of 8-byte elements, with 1 to 9
82        such elements clustered together.  The first element in a cluster is 8
83        1-byte opcodes.  Some opcodes call for an additional element in the
84        cluster (hence, if there are eight such opcodes, then the cluster
85        contains a full 9 elements).
86
87        cbuf[] holds a cluster at a time. */
88     uint8_t cbuf[9][8];
89     int n_opcodes;              /* Number of opcodes in cbuf[0] so far. */
90     int n_elements;             /* Number of elements in cbuf[] so far. */
91
92     /* ZLIB compression. */
93     z_stream zstream;           /* ZLIB deflater. */
94     off_t zstart;
95     struct zblock *blocks;
96     size_t n_blocks, allocated_blocks;
97
98     /* Variables. */
99     struct sfm_var *sfm_vars;   /* Variables. */
100     size_t sfm_var_cnt;         /* Number of variables. */
101     size_t segment_cnt;         /* Number of variables including extra segments
102                                    for long string variables. */
103   };
104
105 struct zblock
106   {
107     unsigned int uncompressed_size;
108     unsigned int compressed_size;
109   };
110
111 static const struct casewriter_class sys_file_casewriter_class;
112
113 static void write_header (struct sfm_writer *, const struct dictionary *);
114 static void write_variable (struct sfm_writer *, const struct variable *);
115 static void write_value_labels (struct sfm_writer *,
116                                 const struct dictionary *);
117 static void write_integer_info_record (struct sfm_writer *,
118                                        const struct dictionary *);
119 static void write_float_info_record (struct sfm_writer *);
120
121 static void write_longvar_table (struct sfm_writer *w,
122                                  const struct dictionary *dict);
123
124 static void write_encoding_record (struct sfm_writer *w,
125                                    const struct dictionary *);
126
127 static void write_vls_length_table (struct sfm_writer *w,
128                               const struct dictionary *dict);
129
130 static void write_long_string_value_labels (struct sfm_writer *,
131                                             const struct dictionary *);
132 static void write_long_string_missing_values (struct sfm_writer *,
133                                               const struct dictionary *);
134
135 static void write_mrsets (struct sfm_writer *, const struct dictionary *,
136                           bool pre_v14);
137
138 static void write_variable_display_parameters (struct sfm_writer *w,
139                                                const struct dictionary *dict);
140
141 static void write_documents (struct sfm_writer *, const struct dictionary *);
142
143 static void write_data_file_attributes (struct sfm_writer *,
144                                         const struct dictionary *);
145 static void write_variable_attributes (struct sfm_writer *,
146                                        const struct dictionary *);
147
148 static void write_int (struct sfm_writer *, int32_t);
149 static void write_int64 (struct sfm_writer *, int64_t);
150 static inline void convert_double_to_output_format (double, uint8_t[8]);
151 static void write_float (struct sfm_writer *, double);
152 static void write_string (struct sfm_writer *, const char *, size_t);
153 static void write_utf8_string (struct sfm_writer *, const char *encoding,
154                                const char *string, size_t width);
155 static void write_utf8_record (struct sfm_writer *, const char *encoding,
156                                const struct string *content, int subtype);
157 static void write_string_record (struct sfm_writer *,
158                                  const struct substring content, int subtype);
159 static void write_bytes (struct sfm_writer *, const void *, size_t);
160 static void write_zeros (struct sfm_writer *, size_t);
161 static void write_spaces (struct sfm_writer *, size_t);
162 static void write_value (struct sfm_writer *, const union value *, int width);
163
164 static void write_case_uncompressed (struct sfm_writer *,
165                                      const struct ccase *);
166 static void write_case_compressed (struct sfm_writer *, const struct ccase *);
167 static void flush_compressed (struct sfm_writer *);
168 static void put_cmp_opcode (struct sfm_writer *, uint8_t);
169 static void put_cmp_number (struct sfm_writer *, double);
170 static void put_cmp_string (struct sfm_writer *, const void *, size_t);
171
172 static bool start_zstream (struct sfm_writer *);
173 static void finish_zstream (struct sfm_writer *);
174 static void write_ztrailer (struct sfm_writer *);
175
176 static bool write_error (const struct sfm_writer *);
177 static bool close_writer (struct sfm_writer *);
178
179 /* Returns default options for writing a system file. */
180 struct sfm_write_options
181 sfm_writer_default_options (void)
182 {
183   struct sfm_write_options opts;
184   opts.compression = (settings_get_scompression ()
185                       ? ANY_COMP_SIMPLE
186                       : ANY_COMP_NONE);
187   opts.create_writeable = true;
188   opts.version = 3;
189   return opts;
190 }
191
192 /* Opens the system file designated by file handle FH for writing
193    cases from dictionary D according to the given OPTS.
194
195    No reference to D is retained, so it may be modified or
196    destroyed at will after this function returns.  D is not
197    modified by this function, except to assign short names. */
198 struct casewriter *
199 sfm_open_writer (struct file_handle *fh, struct dictionary *d,
200                  struct sfm_write_options opts)
201 {
202   struct encoding_info encoding_info;
203   struct sfm_writer *w;
204   mode_t mode;
205   int i;
206
207   /* Check version. */
208   if (opts.version != 2 && opts.version != 3)
209     {
210       msg (ME, _("Unknown system file version %d. Treating as version %d."),
211            opts.version, 3);
212       opts.version = 3;
213     }
214
215   /* Create and initialize writer. */
216   w = xzalloc (sizeof *w);
217   w->fh = fh_ref (fh);
218   w->lock = NULL;
219   w->file = NULL;
220   w->rf = NULL;
221
222   /* Use the requested compression, except that no EBCDIC-based ZLIB compressed
223      files have been observed, so drop back to simple compression for those
224      files. */
225   w->compression = opts.compression;
226   if (w->compression == ANY_COMP_ZLIB
227       && is_encoding_ebcdic_compatible (dict_get_encoding (d)))
228     w->compression = ANY_COMP_SIMPLE;
229
230   w->case_cnt = 0;
231
232   w->n_opcodes = w->n_elements = 0;
233   memset (w->cbuf[0], 0, 8);
234
235   /* Figure out how to map in-memory case data to on-disk case
236      data.  Also count the number of segments.  Very long strings
237      occupy multiple segments, otherwise each variable only takes
238      one segment. */
239   w->segment_cnt = sfm_dictionary_to_sfm_vars (d, &w->sfm_vars,
240                                                &w->sfm_var_cnt);
241
242   /* Open file handle as an exclusive writer. */
243   /* TRANSLATORS: this fragment will be interpolated into
244      messages in fh_lock() that identify types of files. */
245   w->lock = fh_lock (fh, FH_REF_FILE, N_("system file"), FH_ACC_WRITE, true);
246   if (w->lock == NULL)
247     goto error;
248
249   /* Create the file on disk. */
250   mode = 0444;
251   if (opts.create_writeable)
252     mode |= 0222;
253   w->rf = replace_file_start (fh, "wb", mode, &w->file);
254   if (w->rf == NULL)
255     {
256       msg (ME, _("Error opening `%s' for writing as a system file: %s."),
257            fh_get_file_name (fh), strerror (errno));
258       goto error;
259     }
260
261   get_encoding_info (&encoding_info, dict_get_encoding (d));
262   w->space = encoding_info.space[0];
263
264   /* Write the file header. */
265   write_header (w, d);
266
267   /* Write basic variable info. */
268   short_names_assign (d);
269   for (i = 0; i < dict_get_var_cnt (d); i++)
270     write_variable (w, dict_get_var (d, i));
271
272   write_value_labels (w, d);
273
274   if (dict_get_document_line_cnt (d) > 0)
275     write_documents (w, d);
276
277   write_integer_info_record (w, d);
278   write_float_info_record (w);
279
280   write_mrsets (w, d, true);
281
282   write_variable_display_parameters (w, d);
283
284   if (opts.version >= 3)
285     write_longvar_table (w, d);
286
287   write_vls_length_table (w, d);
288
289   write_long_string_value_labels (w, d);
290   write_long_string_missing_values (w, d);
291
292   if (opts.version >= 3)
293     {
294       if (attrset_count (dict_get_attributes (d)))
295         write_data_file_attributes (w, d);
296       write_variable_attributes (w, d);
297     }
298
299   write_mrsets (w, d, false);
300
301   write_encoding_record (w, d);
302
303   /* Write end-of-headers record. */
304   write_int (w, 999);
305   write_int (w, 0);
306
307   if (w->compression == ANY_COMP_ZLIB)
308     {
309       w->zstream.zalloc = Z_NULL;
310       w->zstream.zfree = Z_NULL;
311       w->zstream.opaque = Z_NULL;
312       w->zstart = ftello (w->file);
313
314       write_int64 (w, w->zstart);
315       write_int64 (w, 0);
316       write_int64 (w, 0);
317
318       start_zstream (w);
319     }
320
321   if (write_error (w))
322     goto error;
323
324   return casewriter_create (dict_get_proto (d), &sys_file_casewriter_class, w);
325
326 error:
327   close_writer (w);
328   return NULL;
329 }
330
331 /* Returns value of X truncated to two least-significant digits. */
332 static int
333 rerange (int x)
334 {
335   if (x < 0)
336     x = -x;
337   if (x >= 100)
338     x %= 100;
339   return x;
340 }
341
342 /* Calculates the offset of data for TARGET_VAR from the
343    beginning of each case's data for dictionary D.  The return
344    value is in "octs" (8-byte units). */
345 static int
346 calc_oct_idx (const struct dictionary *d, struct variable *target_var)
347 {
348   int oct_idx;
349   int i;
350
351   oct_idx = 0;
352   for (i = 0; i < dict_get_var_cnt (d); i++)
353     {
354       struct variable *var = dict_get_var (d, i);
355       if (var == target_var)
356         break;
357       oct_idx += sfm_width_to_octs (var_get_width (var));
358     }
359   return oct_idx;
360 }
361
362 /* Write the sysfile_header header to system file W. */
363 static void
364 write_header (struct sfm_writer *w, const struct dictionary *d)
365 {
366   const char *dict_encoding = dict_get_encoding (d);
367   char prod_name[61];
368   const char *file_label;
369   struct variable *weight;
370
371   time_t t;
372
373   /* Record-type code. */
374   if (is_encoding_ebcdic_compatible (dict_encoding))
375     write_string (w, EBCDIC_MAGIC, 4);
376   else if (w->compression == ANY_COMP_ZLIB)
377     write_string (w, ASCII_ZMAGIC, 4);
378   else
379     write_string (w, ASCII_MAGIC, 4);
380
381   /* Product identification. */
382   snprintf (prod_name, sizeof prod_name, "@(#) SPSS DATA FILE %s - %s",
383             version, host_system);
384   write_utf8_string (w, dict_encoding, prod_name, 60);
385
386   /* Layout code. */
387   write_int (w, 2);
388
389   /* Number of `union value's per case. */
390   write_int (w, calc_oct_idx (d, NULL));
391
392   /* Compressed? */
393   write_int (w, (w->compression == ANY_COMP_NONE ? 0
394                  : w->compression == ANY_COMP_SIMPLE ? 1
395                  : 2));
396
397   /* Weight variable. */
398   weight = dict_get_weight (d);
399   write_int (w, weight != NULL ? calc_oct_idx (d, weight) + 1 : 0);
400
401   /* Number of cases.  We don't know this in advance, so we write
402      -1 to indicate an unknown number of cases.  Later we can
403      come back and overwrite it with the true value. */
404   write_int (w, -1);
405
406   /* Compression bias. */
407   write_float (w, COMPRESSION_BIAS);
408
409   /* Creation date and time. */
410   char *creation_date, *creation_time;
411   if (time (&t) == (time_t) -1)
412     {
413       creation_date = xstrdup ("01 Jan 70");
414       creation_time = xstrdup ( "00:00:00");
415     }
416   else
417     {
418       static const char *const month_name[12] =
419         {
420           "Jan", "Feb", "Mar", "Apr", "May", "Jun",
421           "Jul", "Aug", "Sep", "Oct", "Nov", "Dec",
422         };
423       struct tm *tmp = localtime (&t);
424       int day = rerange (tmp->tm_mday);
425       int mon = rerange (tmp->tm_mon + 1);
426       int year = rerange (tmp->tm_year);
427       int hour = rerange (tmp->tm_hour + 1);
428       int min = rerange (tmp->tm_min + 1);
429       int sec = rerange (tmp->tm_sec + 1);
430
431       creation_date = xasprintf ("%02d %s %02d",
432                                  day, month_name[mon - 1], year);
433       creation_time = xasprintf ("%02d:%02d:%02d", hour - 1, min - 1, sec - 1);
434     }
435   write_utf8_string (w, dict_encoding, creation_date, 9);
436   write_utf8_string (w, dict_encoding, creation_time, 8);
437   free (creation_time);
438   free (creation_date);
439
440   /* File label. */
441   file_label = dict_get_label (d);
442   if (file_label == NULL)
443     file_label = "";
444   write_utf8_string (w, dict_encoding, file_label, 64);
445
446   /* Padding. */
447   write_zeros (w, 3);
448 }
449
450 /* Write format spec FMT to W, after adjusting it to be
451    compatible with the given WIDTH. */
452 static void
453 write_format (struct sfm_writer *w, struct fmt_spec fmt, int width)
454 {
455   assert (fmt_check_output (&fmt));
456   assert (sfm_width_to_segments (width) == 1);
457
458   if (width > 0)
459     fmt_resize (&fmt, width);
460   write_int (w, (fmt_to_io (fmt.type) << 16) | (fmt.w << 8) | fmt.d);
461 }
462
463 /* Write a string continuation variable record for each 8-byte
464    section beyond the initial 8 bytes, for a variable of the
465    given WIDTH. */
466 static void
467 write_variable_continuation_records (struct sfm_writer *w, int width)
468 {
469   int position;
470
471   assert (sfm_width_to_segments (width) == 1);
472   for (position = 8; position < width; position += 8)
473     {
474       write_int (w, 2);   /* Record type. */
475       write_int (w, -1);  /* Width. */
476       write_int (w, 0);   /* No variable label. */
477       write_int (w, 0);   /* No missing values. */
478       write_int (w, 0);   /* Print format. */
479       write_int (w, 0);   /* Write format. */
480       write_zeros (w, 8);   /* Name. */
481     }
482 }
483
484 /* Write the variable record(s) for variable V to system file
485    W. */
486 static void
487 write_variable (struct sfm_writer *w, const struct variable *v)
488 {
489   int width = var_get_width (v);
490   int segment_cnt = sfm_width_to_segments (width);
491   int seg0_width = sfm_segment_alloc_width (width, 0);
492   const char *encoding = var_get_encoding (v);
493   int i;
494
495   /* Record type. */
496   write_int (w, 2);
497
498   /* Width. */
499   write_int (w, seg0_width);
500
501   /* Variable has a variable label? */
502   write_int (w, var_has_label (v));
503
504   /* Number of missing values.  If there is a range, then the
505      range counts as 2 missing values and causes the number to be
506      negated.
507
508      Missing values for long string variables are written in a separate
509      record. */
510   enum { MAX_SHORT_STRING = 8 };
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
958   /* Figure out the size in advance. */
959   size = 0;
960   for (i = 0; i < n_vars; i++)
961     {
962       struct variable *var = dict_get_var (dict, i);
963       const struct val_labs *val_labs = var_get_value_labels (var);
964       int width = var_get_width (var);
965       const struct val_lab *val_lab;
966
967       if (val_labs_count (val_labs) == 0 || width < 9)
968         continue;
969
970       size += 12;
971       size += recode_string_len (encoding, "UTF-8", var_get_name (var), -1);
972       for (val_lab = val_labs_first (val_labs); val_lab != NULL;
973            val_lab = val_labs_next (val_labs, val_lab))
974         {
975           size += 8 + width;
976           size += recode_string_len (encoding, "UTF-8",
977                                      val_lab_get_escaped_label (val_lab), -1);
978         }
979     }
980   if (size == 0)
981     return;
982
983   write_int (w, 7);             /* Record type. */
984   write_int (w, 21);            /* Record subtype */
985   write_int (w, 1);             /* Data item (byte) size. */
986   write_int (w, size);          /* Number of data items. */
987
988   for (i = 0; i < n_vars; i++)
989     {
990       struct variable *var = dict_get_var (dict, i);
991       const struct val_labs *val_labs = var_get_value_labels (var);
992       int width = var_get_width (var);
993       const struct val_lab *val_lab;
994       char *var_name;
995
996       if (val_labs_count (val_labs) == 0 || width < 9)
997         continue;
998
999       var_name = recode_string (encoding, "UTF-8", var_get_name (var), -1);
1000       write_int (w, strlen (var_name));
1001       write_bytes (w, var_name, strlen (var_name));
1002       free (var_name);
1003
1004       write_int (w, width);
1005       write_int (w, val_labs_count (val_labs));
1006       for (val_lab = val_labs_first (val_labs); val_lab != NULL;
1007            val_lab = val_labs_next (val_labs, val_lab))
1008         {
1009           char *label;
1010           size_t len;
1011
1012           write_int (w, width);
1013           write_bytes (w, value_str (val_lab_get_value (val_lab), width),
1014                        width);
1015
1016           label = recode_string (var_get_encoding (var), "UTF-8",
1017                                  val_lab_get_escaped_label (val_lab), -1);
1018           len = strlen (label);
1019           write_int (w, len);
1020           write_bytes (w, label, len);
1021           free (label);
1022         }
1023     }
1024 }
1025
1026 static void
1027 write_long_string_missing_values (struct sfm_writer *w,
1028                                   const struct dictionary *dict)
1029 {
1030   const char *encoding = dict_get_encoding (dict);
1031   size_t n_vars = dict_get_var_cnt (dict);
1032   size_t size, i;
1033
1034   /* Figure out the size in advance. */
1035   size = 0;
1036   for (i = 0; i < n_vars; i++)
1037     {
1038       struct variable *var = dict_get_var (dict, i);
1039       const struct missing_values *mv = var_get_missing_values (var);
1040       int width = var_get_width (var);
1041
1042       if (mv_is_empty (mv) || width < 9)
1043         continue;
1044
1045       size += 4;
1046       size += recode_string_len (encoding, "UTF-8", var_get_name (var), -1);
1047       size += 1;
1048       size += mv_n_values (mv) * (4 + 8);
1049     }
1050   if (size == 0)
1051     return;
1052
1053   write_int (w, 7);             /* Record type. */
1054   write_int (w, 22);            /* Record subtype */
1055   write_int (w, 1);             /* Data item (byte) size. */
1056   write_int (w, size);          /* Number of data items. */
1057
1058   for (i = 0; i < n_vars; i++)
1059     {
1060       struct variable *var = dict_get_var (dict, i);
1061       const struct missing_values *mv = var_get_missing_values (var);
1062       int width = var_get_width (var);
1063       uint8_t n_missing_values;
1064       char *var_name;
1065       int j;
1066
1067       if (mv_is_empty (mv) || width < 9)
1068         continue;
1069
1070       var_name = recode_string (encoding, "UTF-8", var_get_name (var), -1);
1071       write_int (w, strlen (var_name));
1072       write_bytes (w, var_name, strlen (var_name));
1073       free (var_name);
1074
1075       n_missing_values = mv_n_values (mv);
1076       write_bytes (w, &n_missing_values, 1);
1077
1078       for (j = 0; j < n_missing_values; j++)
1079         {
1080           const union value *value = mv_get_value (mv, j);
1081
1082           write_int (w, 8);
1083           write_bytes (w, value_str (value, width), 8);
1084         }
1085     }
1086 }
1087
1088 static void
1089 write_encoding_record (struct sfm_writer *w,
1090                        const struct dictionary *d)
1091 {
1092   /* IANA says "...character set names may be up to 40 characters taken
1093      from the printable characters of US-ASCII," so character set names
1094      don't need to be recoded to be in UTF-8.
1095
1096      We convert encoding names to uppercase because SPSS writes encoding
1097      names in uppercase. */
1098   char *encoding = xstrdup (dict_get_encoding (d));
1099   str_uppercase (encoding);
1100   write_string_record (w, ss_cstr (encoding), 20);
1101   free (encoding);
1102 }
1103
1104 /* Writes the long variable name table. */
1105 static void
1106 write_longvar_table (struct sfm_writer *w, const struct dictionary *dict)
1107 {
1108   struct string map;
1109   size_t i;
1110
1111   ds_init_empty (&map);
1112   for (i = 0; i < dict_get_var_cnt (dict); i++)
1113     {
1114       struct variable *v = dict_get_var (dict, i);
1115       if (i)
1116         ds_put_byte (&map, '\t');
1117       ds_put_format (&map, "%s=%s",
1118                      var_get_short_name (v, 0), var_get_name (v));
1119     }
1120   write_utf8_record (w, dict_get_encoding (dict), &map, 13);
1121   ds_destroy (&map);
1122 }
1123
1124 /* Write integer information record. */
1125 static void
1126 write_integer_info_record (struct sfm_writer *w,
1127                            const struct dictionary *d)
1128 {
1129   const char *dict_encoding = dict_get_encoding (d);
1130   int version_component[3];
1131   int float_format;
1132   int codepage;
1133
1134   /* Parse the version string. */
1135   memset (version_component, 0, sizeof version_component);
1136   sscanf (bare_version, "%d.%d.%d",
1137           &version_component[0], &version_component[1], &version_component[2]);
1138
1139   /* Figure out the floating-point format. */
1140   if (FLOAT_NATIVE_64_BIT == FLOAT_IEEE_DOUBLE_LE
1141       || FLOAT_NATIVE_64_BIT == FLOAT_IEEE_DOUBLE_BE)
1142     float_format = 1;
1143   else if (FLOAT_NATIVE_64_BIT == FLOAT_Z_LONG)
1144     float_format = 2;
1145   else if (FLOAT_NATIVE_64_BIT == FLOAT_VAX_D)
1146     float_format = 3;
1147   else
1148     abort ();
1149
1150   /* Choose codepage. */
1151   codepage = sys_get_codepage_from_encoding (dict_encoding);
1152   if (codepage == 0)
1153     {
1154       /* The codepage is unknown.  Choose a default.
1155
1156          For an EBCDIC-compatible encoding, use the value for EBCDIC.
1157
1158          For an ASCII-compatible encoding, default to "7-bit ASCII", because
1159          many files use this codepage number regardless of their actual
1160          encoding.
1161       */
1162       if (is_encoding_ascii_compatible (dict_encoding))
1163         codepage = 2;
1164       else if (is_encoding_ebcdic_compatible (dict_encoding))
1165         codepage = 1;
1166     }
1167
1168   /* Write record. */
1169   write_int (w, 7);             /* Record type. */
1170   write_int (w, 3);             /* Record subtype. */
1171   write_int (w, 4);             /* Data item (int32) size. */
1172   write_int (w, 8);             /* Number of data items. */
1173   write_int (w, version_component[0]);
1174   write_int (w, version_component[1]);
1175   write_int (w, version_component[2]);
1176   write_int (w, -1);          /* Machine code. */
1177   write_int (w, float_format);
1178   write_int (w, 1);           /* Compression code. */
1179   write_int (w, INTEGER_NATIVE == INTEGER_MSB_FIRST ? 1 : 2);
1180   write_int (w, codepage);
1181 }
1182
1183 /* Write floating-point information record. */
1184 static void
1185 write_float_info_record (struct sfm_writer *w)
1186 {
1187   write_int (w, 7);             /* Record type. */
1188   write_int (w, 4);             /* Record subtype. */
1189   write_int (w, 8);             /* Data item (flt64) size. */
1190   write_int (w, 3);             /* Number of data items. */
1191   write_float (w, SYSMIS);      /* System-missing value. */
1192   write_float (w, HIGHEST);     /* Value used for HIGHEST in missing values. */
1193   write_float (w, LOWEST);      /* Value used for LOWEST in missing values. */
1194 }
1195 \f
1196 /* Writes case C to system file W. */
1197 static void
1198 sys_file_casewriter_write (struct casewriter *writer, void *w_,
1199                            struct ccase *c)
1200 {
1201   struct sfm_writer *w = w_;
1202
1203   if (ferror (w->file))
1204     {
1205       casewriter_force_error (writer);
1206       case_unref (c);
1207       return;
1208     }
1209
1210   w->case_cnt++;
1211
1212   if (w->compression == ANY_COMP_NONE)
1213     write_case_uncompressed (w, c);
1214   else
1215     write_case_compressed (w, c);
1216
1217   case_unref (c);
1218 }
1219
1220 /* Destroys system file writer W. */
1221 static void
1222 sys_file_casewriter_destroy (struct casewriter *writer, void *w_)
1223 {
1224   struct sfm_writer *w = w_;
1225   if (!close_writer (w))
1226     casewriter_force_error (writer);
1227 }
1228
1229 /* Returns true if an I/O error has occurred on WRITER, false otherwise. */
1230 static bool
1231 write_error (const struct sfm_writer *writer)
1232 {
1233   return ferror (writer->file);
1234 }
1235
1236 /* Closes a system file after we're done with it.
1237    Returns true if successful, false if an I/O error occurred. */
1238 static bool
1239 close_writer (struct sfm_writer *w)
1240 {
1241   bool ok;
1242
1243   if (w == NULL)
1244     return true;
1245
1246   ok = true;
1247   if (w->file != NULL)
1248     {
1249       /* Flush buffer. */
1250       flush_compressed (w);
1251       if (w->compression == ANY_COMP_ZLIB)
1252         {
1253           finish_zstream (w);
1254           write_ztrailer (w);
1255         }
1256       fflush (w->file);
1257
1258       ok = !write_error (w);
1259
1260       /* Seek back to the beginning and update the number of cases.
1261          This is just a courtesy to later readers, so there's no need
1262          to check return values or report errors. */
1263       if (ok && w->case_cnt <= INT32_MAX && !fseeko (w->file, 80, SEEK_SET))
1264         {
1265           write_int (w, w->case_cnt);
1266           clearerr (w->file);
1267         }
1268
1269       if (fclose (w->file) == EOF)
1270         ok = false;
1271
1272       if (!ok)
1273         msg (ME, _("An I/O error occurred writing system file `%s'."),
1274              fh_get_file_name (w->fh));
1275
1276       if (ok ? !replace_file_commit (w->rf) : !replace_file_abort (w->rf))
1277         ok = false;
1278     }
1279
1280   free (w->blocks);
1281
1282   fh_unlock (w->lock);
1283   fh_unref (w->fh);
1284
1285   free (w->sfm_vars);
1286   free (w);
1287
1288   return ok;
1289 }
1290
1291 /* System file writer casewriter class. */
1292 static const struct casewriter_class sys_file_casewriter_class =
1293   {
1294     sys_file_casewriter_write,
1295     sys_file_casewriter_destroy,
1296     NULL,
1297   };
1298 \f
1299 /* Writes case C to system file W, without compressing it. */
1300 static void
1301 write_case_uncompressed (struct sfm_writer *w, const struct ccase *c)
1302 {
1303   size_t i;
1304
1305   for (i = 0; i < w->sfm_var_cnt; i++)
1306     {
1307       struct sfm_var *v = &w->sfm_vars[i];
1308
1309       if (v->var_width == 0)
1310         write_float (w, case_num_idx (c, v->case_index));
1311       else
1312         {
1313           write_bytes (w, case_str_idx (c, v->case_index) + v->offset,
1314                        v->segment_width);
1315           write_spaces (w, v->padding);
1316         }
1317     }
1318 }
1319
1320 /* Writes case C to system file W, with compression. */
1321 static void
1322 write_case_compressed (struct sfm_writer *w, const struct ccase *c)
1323 {
1324   size_t i;
1325
1326   for (i = 0; i < w->sfm_var_cnt; i++)
1327     {
1328       struct sfm_var *v = &w->sfm_vars[i];
1329
1330       if (v->var_width == 0)
1331         {
1332           double d = case_num_idx (c, v->case_index);
1333           if (d == SYSMIS)
1334             put_cmp_opcode (w, 255);
1335           else if (d >= 1 - COMPRESSION_BIAS
1336                    && d <= 251 - COMPRESSION_BIAS
1337                    && d == (int) d)
1338             put_cmp_opcode (w, (int) d + COMPRESSION_BIAS);
1339           else
1340             put_cmp_number (w, d);
1341         }
1342       else
1343         {
1344           int offset = v->offset;
1345           int width, padding;
1346
1347           /* This code properly deals with a width that is not a
1348              multiple of 8, by ensuring that the final partial
1349              oct (8 byte unit) is treated as padded with spaces
1350              on the right. */
1351           for (width = v->segment_width; width > 0; width -= 8, offset += 8)
1352             {
1353               const void *data = case_str_idx (c, v->case_index) + offset;
1354               int chunk_size = MIN (width, 8);
1355               if (!memcmp (data, "        ", chunk_size))
1356                 put_cmp_opcode (w, 254);
1357               else
1358                 put_cmp_string (w, data, chunk_size);
1359             }
1360
1361           /* This code deals properly with padding that is not a
1362              multiple of 8 bytes, by discarding the remainder,
1363              which was already effectively padded with spaces in
1364              the previous loop.  (Note that v->width + v->padding
1365              is always a multiple of 8.) */
1366           for (padding = v->padding / 8; padding > 0; padding--)
1367             put_cmp_opcode (w, 254);
1368         }
1369     }
1370 }
1371
1372 static bool
1373 start_zstream (struct sfm_writer *w)
1374 {
1375   int error;
1376
1377   error = deflateInit (&w->zstream, 1);
1378   if (error != Z_OK)
1379     {
1380       msg (ME, _("Failed to initialize ZLIB for compression (%s)."),
1381            w->zstream.msg);
1382       return false;
1383     }
1384   return true;
1385 }
1386
1387 static void
1388 finish_zstream (struct sfm_writer *w)
1389 {
1390   struct zblock *block;
1391   int error;
1392
1393   assert (w->zstream.total_in <= ZBLOCK_SIZE);
1394
1395   w->zstream.next_in = NULL;
1396   w->zstream.avail_in = 0;
1397   do
1398     {
1399       uint8_t buf[4096];
1400
1401       w->zstream.next_out = buf;
1402       w->zstream.avail_out = sizeof buf;
1403       error = deflate (&w->zstream, Z_FINISH);
1404       write_bytes (w, buf, w->zstream.next_out - buf);
1405     }
1406   while (error == Z_OK);
1407
1408   if (error != Z_STREAM_END)
1409     msg (ME, _("Failed to complete ZLIB stream compression (%s)."),
1410          w->zstream.msg);
1411
1412   if (w->n_blocks >= w->allocated_blocks)
1413     w->blocks = x2nrealloc (w->blocks, &w->allocated_blocks,
1414                             sizeof *w->blocks);
1415   block = &w->blocks[w->n_blocks++];
1416   block->uncompressed_size = w->zstream.total_in;
1417   block->compressed_size = w->zstream.total_out;
1418   deflateEnd (&w->zstream);
1419 }
1420
1421 static void
1422 write_zlib (struct sfm_writer *w, const void *data_, unsigned int n)
1423 {
1424   const uint8_t *data = data_;
1425
1426   while (n > 0)
1427     {
1428       unsigned int chunk;
1429
1430       if (w->zstream.total_in >= ZBLOCK_SIZE)
1431         {
1432           finish_zstream (w);
1433           start_zstream (w);
1434         }
1435
1436       chunk = MIN (n, ZBLOCK_SIZE - w->zstream.total_in);
1437
1438       w->zstream.next_in = CONST_CAST (uint8_t *, data);
1439       w->zstream.avail_in = chunk;
1440       do
1441         {
1442           uint8_t buf[4096];
1443           int error;
1444
1445           w->zstream.next_out = buf;
1446           w->zstream.avail_out = sizeof buf;
1447           error = deflate (&w->zstream, Z_NO_FLUSH);
1448           write_bytes (w, buf, w->zstream.next_out - buf);
1449           if (error != Z_OK)
1450             {
1451               msg (ME, _("ZLIB stream compression failed (%s)."),
1452                    w->zstream.msg);
1453               return;
1454             }
1455         }
1456       while (w->zstream.avail_in > 0 || w->zstream.avail_out == 0);
1457       data += chunk;
1458       n -= chunk;
1459     }
1460 }
1461
1462 static void
1463 write_ztrailer (struct sfm_writer *w)
1464 {
1465   long long int uncompressed_ofs;
1466   long long int compressed_ofs;
1467   const struct zblock *block;
1468
1469   write_int64 (w, -COMPRESSION_BIAS);
1470   write_int64 (w, 0);
1471   write_int (w, ZBLOCK_SIZE);
1472   write_int (w, w->n_blocks);
1473
1474   uncompressed_ofs = w->zstart;
1475   compressed_ofs = w->zstart + 24;
1476   for (block = w->blocks; block < &w->blocks[w->n_blocks]; block++)
1477     {
1478       write_int64 (w, uncompressed_ofs);
1479       write_int64 (w, compressed_ofs);
1480       write_int (w, block->uncompressed_size);
1481       write_int (w, block->compressed_size);
1482
1483       uncompressed_ofs += block->uncompressed_size;
1484       compressed_ofs += block->compressed_size;
1485     }
1486
1487   if (!fseeko (w->file, w->zstart + 8, SEEK_SET))
1488     {
1489       write_int64 (w, compressed_ofs);
1490       write_int64 (w, 24 + (w->n_blocks * 24));
1491     }
1492   else
1493     msg (ME, _("%s: Seek failed (%s)."),
1494          fh_get_file_name (w->fh), strerror (errno));
1495 }
1496
1497 /* Flushes buffered compressed opcodes and data to W. */
1498 static void
1499 flush_compressed (struct sfm_writer *w)
1500 {
1501   if (w->n_opcodes)
1502     {
1503       unsigned int n = 8 * (1 + w->n_elements);
1504       if (w->compression == ANY_COMP_SIMPLE)
1505         write_bytes (w, w->cbuf, n);
1506       else
1507         write_zlib (w, w->cbuf, n);
1508
1509       w->n_opcodes = w->n_elements = 0;
1510       memset (w->cbuf[0], 0, 8);
1511     }
1512 }
1513
1514 /* Appends OPCODE to the buffered set of compression opcodes in
1515    W.  Flushes the compression buffer beforehand if necessary. */
1516 static void
1517 put_cmp_opcode (struct sfm_writer *w, uint8_t opcode)
1518 {
1519   if (w->n_opcodes >= 8)
1520     flush_compressed (w);
1521
1522   w->cbuf[0][w->n_opcodes++] = opcode;
1523 }
1524
1525 /* Appends NUMBER to the buffered compression data in W. */
1526 static void
1527 put_cmp_number (struct sfm_writer *w, double number)
1528 {
1529   put_cmp_opcode (w, 253);
1530   convert_double_to_output_format (number, w->cbuf[++w->n_elements]);
1531 }
1532
1533 /* Appends SIZE bytes of DATA to the buffered compression data in
1534    W, followed by enough spaces to pad the output data to exactly
1535    8 bytes (thus, SIZE must be no greater than 8). */
1536 static void
1537 put_cmp_string (struct sfm_writer *w, const void *data, size_t size)
1538 {
1539   assert (size <= 8);
1540
1541   put_cmp_opcode (w, 253);
1542   w->n_elements++;
1543   memset (w->cbuf[w->n_elements], w->space, 8);
1544   memcpy (w->cbuf[w->n_elements], data, size);
1545 }
1546 \f
1547 /* Writes 32-bit integer X to the output file for writer W. */
1548 static void
1549 write_int (struct sfm_writer *w, int32_t x)
1550 {
1551   write_bytes (w, &x, sizeof x);
1552 }
1553
1554 /* Writes 64-bit integer X to the output file for writer W. */
1555 static void
1556 write_int64 (struct sfm_writer *w, int64_t x)
1557 {
1558   write_bytes (w, &x, sizeof x);
1559 }
1560
1561 /* Converts NATIVE to the 64-bit format used in output files in
1562    OUTPUT. */
1563 static inline void
1564 convert_double_to_output_format (double native, uint8_t output[8])
1565 {
1566   /* If "double" is not a 64-bit type, then convert it to a
1567      64-bit type.  Otherwise just copy it. */
1568   if (FLOAT_NATIVE_DOUBLE != FLOAT_NATIVE_64_BIT)
1569     float_convert (FLOAT_NATIVE_DOUBLE, &native, FLOAT_NATIVE_64_BIT, output);
1570   else
1571     memcpy (output, &native, sizeof native);
1572 }
1573
1574 /* Writes floating-point number X to the output file for writer
1575    W. */
1576 static void
1577 write_float (struct sfm_writer *w, double x)
1578 {
1579   uint8_t output[8];
1580   convert_double_to_output_format (x, output);
1581   write_bytes (w, output, sizeof output);
1582 }
1583
1584 /* Writes contents of VALUE with the given WIDTH to W, padding
1585    with zeros to a multiple of 8 bytes.
1586    To avoid a branch, and because we don't actually need to
1587    support it, WIDTH must be no bigger than 8. */
1588 static void
1589 write_value (struct sfm_writer *w, const union value *value, int width)
1590 {
1591   assert (width <= 8);
1592   if (width == 0)
1593     write_float (w, value->f);
1594   else
1595     {
1596       write_bytes (w, value_str (value, width), width);
1597       write_zeros (w, 8 - width);
1598     }
1599 }
1600
1601 /* Writes null-terminated STRING in a field of the given WIDTH to W.  If STRING
1602    is longer than WIDTH, it is truncated; if STRING is shorter than WIDTH, it
1603    is padded on the right with spaces. */
1604 static void
1605 write_string (struct sfm_writer *w, const char *string, size_t width)
1606 {
1607   size_t data_bytes = MIN (strlen (string), width);
1608   size_t pad_bytes = width - data_bytes;
1609   write_bytes (w, string, data_bytes);
1610   while (pad_bytes-- > 0)
1611     putc (w->space, w->file);
1612 }
1613
1614 /* Recodes null-terminated UTF-8 encoded STRING into ENCODING, and writes the
1615    recoded version in a field of the given WIDTH to W.  The string is truncated
1616    or padded on the right with spaces to exactly WIDTH bytes. */
1617 static void
1618 write_utf8_string (struct sfm_writer *w, const char *encoding,
1619                    const char *string, size_t width)
1620 {
1621   char *s = recode_string (encoding, "UTF-8", string, -1);
1622   write_string (w, s, width);
1623   free (s);
1624 }
1625
1626 /* Writes a record with type 7, subtype SUBTYPE that contains CONTENT recoded
1627    from UTF-8 encoded into ENCODING. */
1628 static void
1629 write_utf8_record (struct sfm_writer *w, const char *encoding,
1630                    const struct string *content, int subtype)
1631 {
1632   struct substring s;
1633
1634   s = recode_substring_pool (encoding, "UTF-8", ds_ss (content), NULL);
1635   write_string_record (w, s, subtype);
1636   ss_dealloc (&s);
1637 }
1638
1639 /* Writes a record with type 7, subtype SUBTYPE that contains the string
1640    CONTENT. */
1641 static void
1642 write_string_record (struct sfm_writer *w,
1643                      const struct substring content, int subtype)
1644 {
1645   write_int (w, 7);
1646   write_int (w, subtype);
1647   write_int (w, 1);
1648   write_int (w, ss_length (content));
1649   write_bytes (w, ss_data (content), ss_length (content));
1650 }
1651
1652 /* Writes SIZE bytes of DATA to W's output file. */
1653 static void
1654 write_bytes (struct sfm_writer *w, const void *data, size_t size)
1655 {
1656   fwrite (data, 1, size, w->file);
1657 }
1658
1659 /* Writes N zeros to W's output file. */
1660 static void
1661 write_zeros (struct sfm_writer *w, size_t n)
1662 {
1663   while (n-- > 0)
1664     putc (0, w->file);
1665 }
1666
1667 /* Writes N spaces to W's output file. */
1668 static void
1669 write_spaces (struct sfm_writer *w, size_t n)
1670 {
1671   while (n-- > 0)
1672     putc (w->space, w->file);
1673 }