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