Fixed warnings generated by gcc 4.1.2
[pspp-builds.git] / src / data / sys-file-writer.c
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301, USA. */
19
20 #include <config.h>
21 #include "sys-file-writer.h"
22 #include "sfm-private.h"
23 #include <libpspp/message.h>
24 #include <stdlib.h>
25 #include <ctype.h>
26 #include <errno.h>
27 #include <fcntl.h>
28 #include <sys/stat.h>
29 #include <time.h>
30 #include <unistd.h>
31 #include <libpspp/alloc.h>
32 #include "case.h"
33 #include "dictionary.h"
34 #include <libpspp/message.h>
35 #include "file-handle-def.h"
36 #include <libpspp/hash.h>
37 #include <libpspp/magic.h>
38 #include <libpspp/misc.h>
39 #include "settings.h"
40 #include "stat-macros.h"
41 #include <libpspp/str.h>
42 #include "value-labels.h"
43 #include "variable.h"
44 #include <libpspp/version.h>
45 #include <minmax.h>
46
47 #include "gettext.h"
48 #define _(msgid) gettext (msgid)
49
50 /* Compression bias used by PSPP.  Values between (1 -
51    COMPRESSION_BIAS) and (251 - COMPRESSION_BIAS) inclusive can be
52    compressed. */
53 #define COMPRESSION_BIAS 100
54
55 /* System file writer. */
56 struct sfm_writer
57   {
58     struct file_handle *fh;     /* File handle. */
59     FILE *file;                 /* File stream. */
60
61     int needs_translation;      /* 0=use fast path, 1=translation needed. */
62     int compress;               /* 1=compressed, 0=not compressed. */
63     int case_cnt;               /* Number of cases written so far. */
64     size_t flt64_cnt;           /* Number of flt64 elements in case. */
65     bool has_vls;               /* Does the dict have very long strings? */
66
67     /* Compression buffering. */
68     flt64 *buf;                 /* Buffered data. */
69     flt64 *end;                 /* Buffer end. */
70     flt64 *ptr;                 /* Current location in buffer. */
71     unsigned char *x;           /* Location in current instruction octet. */
72     unsigned char *y;           /* End of instruction octet. */
73
74     /* Variables. */
75     struct sfm_var *vars;       /* Variables. */
76     size_t var_cnt;             /* Number of variables. */
77     size_t var_cnt_vls;         /* Number of variables including 
78                                    very long string components. */
79   };
80
81 /* A variable in a system file. */
82 struct sfm_var 
83   {
84     int width;                  /* 0=numeric, otherwise string width. */
85     int fv;                     /* Index into case. */
86     size_t flt64_cnt;           /* Number of flt64 elements. */
87   };
88
89 static char *append_string_max (char *, const char *, const char *);
90 static void write_header (struct sfm_writer *, const struct dictionary *);
91 static void buf_write (struct sfm_writer *, const void *, size_t);
92 static void write_variable (struct sfm_writer *, const struct variable *);
93 static void write_value_labels (struct sfm_writer *,
94                                 struct variable *, int idx);
95 static void write_rec_7_34 (struct sfm_writer *);
96
97 static void write_longvar_table (struct sfm_writer *w, 
98                                  const struct dictionary *dict);
99
100 static void write_vls_length_table (struct sfm_writer *w, 
101                               const struct dictionary *dict);
102
103
104 static void write_variable_display_parameters (struct sfm_writer *w, 
105                                                const struct dictionary *dict);
106
107 static void write_documents (struct sfm_writer *, const struct dictionary *);
108
109 static inline int
110 var_flt64_cnt (const struct variable *v) 
111 {
112   assert(sizeof(flt64) == MAX_SHORT_STRING);
113   return width_to_bytes(v->width) / MAX_SHORT_STRING ;
114 }
115
116 static inline int
117 var_flt64_cnt_nom (const struct variable *v) 
118 {
119   return v->type == NUMERIC ? 1 : DIV_RND_UP (v->width, sizeof (flt64));
120 }
121
122
123 /* Returns default options for writing a system file. */
124 struct sfm_write_options
125 sfm_writer_default_options (void) 
126 {
127   struct sfm_write_options opts;
128   opts.create_writeable = true;
129   opts.compress = get_scompression ();
130   opts.version = 3;
131   return opts;
132 }
133
134
135 /* Return a short variable name to be used as the continuation of the
136    variable with the short name SN.
137
138    FIXME: Need to resolve clashes somehow.
139
140  */
141 static const char *
142 cont_var_name(const char *sn, int idx)
143 {
144   static char s[SHORT_NAME_LEN + 1];
145
146   char abb[SHORT_NAME_LEN + 1 - 3]= {0}; 
147
148   strncpy(abb, sn, SHORT_NAME_LEN - 3);
149
150   snprintf(s, SHORT_NAME_LEN + 1, "%s%03d", abb, idx);
151
152   return s;
153 }
154
155
156 /* Opens the system file designated by file handle FH for writing
157    cases from dictionary D according to the given OPTS.  If
158    COMPRESS is nonzero, the system file will be compressed.
159
160    No reference to D is retained, so it may be modified or
161    destroyed at will after this function returns.  D is not
162    modified by this function, except to assign short names. */
163 struct sfm_writer *
164 sfm_open_writer (struct file_handle *fh, struct dictionary *d,
165                  struct sfm_write_options opts)
166 {
167   struct sfm_writer *w = NULL;
168   mode_t mode;
169   int fd;
170   int idx;
171   int i;
172
173   /* Check version. */
174   if (opts.version != 2 && opts.version != 3) 
175     {
176       msg (ME, _("Unknown system file version %d. Treating as version %d."),
177            opts.version, 3);
178       opts.version = 3;
179     }
180
181   /* Create file. */
182   mode = S_IRUSR | S_IRGRP | S_IROTH;
183   if (opts.create_writeable)
184     mode |= S_IWUSR | S_IWGRP | S_IWOTH;
185   fd = open (fh_get_file_name (fh), O_WRONLY | O_CREAT | O_TRUNC, mode);
186   if (fd < 0) 
187     goto open_error;
188
189   /* Open file handle. */
190   if (!fh_open (fh, FH_REF_FILE, "system file", "we"))
191     goto error;
192
193   /* Create and initialize writer. */
194   w = xmalloc (sizeof *w);
195   w->fh = fh;
196   w->file = fdopen (fd, "w");
197
198   w->needs_translation = dict_compacting_would_change (d);
199   w->compress = opts.compress;
200   w->case_cnt = 0;
201   w->flt64_cnt = 0;
202   w->has_vls = false;
203
204   w->buf = w->end = w->ptr = NULL;
205   w->x = w->y = NULL;
206
207   w->var_cnt = dict_get_var_cnt (d);
208   w->var_cnt_vls = w->var_cnt;
209   w->vars = xnmalloc (w->var_cnt, sizeof *w->vars);
210   for (i = 0; i < w->var_cnt; i++) 
211     {
212       const struct variable *dv = dict_get_var (d, i);
213       struct sfm_var *sv = &w->vars[i];
214       sv->width = dv->width;
215       /* spss compatibility nonsense */
216       if ( dv->width > MAX_LONG_STRING ) 
217           w->has_vls = true;
218
219       sv->fv = dv->fv;
220       sv->flt64_cnt = var_flt64_cnt (dv);
221     }
222
223   /* Check that file create succeeded. */
224   if (w->file == NULL) 
225     {
226       close (fd);
227       goto open_error;
228     }
229
230   /* Write the file header. */
231   write_header (w, d);
232
233   /* Write basic variable info. */
234   dict_assign_short_names (d);
235   for (i = 0; i < dict_get_var_cnt (d); i++)
236     {
237       int count = 0;
238       const struct variable *v = dict_get_var(d, i);
239       int wcount = v->width;
240
241       do {
242         struct variable var_cont = *v;
243         if ( v->type == ALPHA) 
244           {
245             if ( 0 != count ) 
246               {
247                 mv_init(&var_cont.miss, 0);
248                 strcpy(var_cont.short_name,
249                        cont_var_name(v->short_name, count));
250                 var_cont.label = NULL;
251                 w->var_cnt_vls++;
252               }
253             count++;
254             if ( wcount > MAX_LONG_STRING ) 
255               {
256                 var_cont.width = MAX_LONG_STRING;
257                 wcount -= EFFECTIVE_LONG_STRING_LENGTH;
258               }
259             else
260               {
261                 var_cont.width = wcount;
262                 wcount -= var_cont.width;
263               }
264         
265             var_cont.write.w = var_cont.width;
266             var_cont.print.w = var_cont.width;
267           }
268
269         write_variable (w, &var_cont);
270       } while(wcount > 0);
271     }
272
273   /* Write out value labels. */
274   for (idx = i = 0; i < dict_get_var_cnt (d); i++)
275     {
276       struct variable *v = dict_get_var (d, i);
277
278       write_value_labels (w, v, idx);
279       idx += var_flt64_cnt (v);
280     }
281
282   if (dict_get_documents (d) != NULL)
283     write_documents (w, d);
284
285   write_rec_7_34 (w);
286
287   write_variable_display_parameters (w, d);
288
289   if (opts.version >= 3) 
290     write_longvar_table (w, d);
291
292   write_vls_length_table(w, d);
293
294   /* Write end-of-headers record. */
295   {
296     struct
297       {
298         int32_t rec_type ;
299         int32_t filler ;
300     } ATTRIBUTE((packed))
301     rec_999;
302
303     rec_999.rec_type = 999;
304     rec_999.filler = 0;
305
306     buf_write (w, &rec_999, sizeof rec_999);
307   }
308
309   if (w->compress) 
310     {
311       w->buf = xnmalloc (128, sizeof *w->buf);
312       w->ptr = w->buf;
313       w->end = &w->buf[128];
314       w->x = (unsigned char *) w->ptr++;
315       w->y = (unsigned char *) w->ptr;
316     }
317
318   if (sfm_write_error (w))
319     goto error;
320   
321   return w;
322
323  error:
324   sfm_close_writer (w);
325   return NULL;
326
327  open_error:
328   msg (ME, _("Error opening \"%s\" for writing as a system file: %s."),
329        fh_get_file_name (fh), strerror (errno));
330   goto error;
331 }
332
333 /* Returns value of X truncated to two least-significant digits. */
334 static int
335 rerange (int x)
336 {
337   if (x < 0)
338     x = -x;
339   if (x >= 100)
340     x %= 100;
341   return x;
342 }
343
344 /* Write the sysfile_header header to system file W. */
345 static void
346 write_header (struct sfm_writer *w, const struct dictionary *d)
347 {
348   struct sysfile_header hdr;
349   char *p;
350   int i;
351
352   time_t t;
353
354   memcpy (hdr.rec_type, "$FL2", 4);
355
356   p = stpcpy (hdr.prod_name, "@(#) SPSS DATA FILE ");
357   p = append_string_max (p, version, &hdr.prod_name[60]);
358   p = append_string_max (p, " - ", &hdr.prod_name[60]);
359   p = append_string_max (p, host_system, &hdr.prod_name[60]);
360   memset (p, ' ', &hdr.prod_name[60] - p);
361
362   hdr.layout_code = 2;
363
364   w->flt64_cnt = 0;
365   for (i = 0; i < dict_get_var_cnt (d); i++)
366     {
367       w->flt64_cnt += var_flt64_cnt (dict_get_var (d, i));
368     }
369   hdr.nominal_case_size = w->flt64_cnt;
370
371   hdr.compress = w->compress;
372
373   if (dict_get_weight (d) != NULL)
374     {
375       struct variable *weight_var;
376       int recalc_weight_idx = 1;
377       int i;
378
379       weight_var = dict_get_weight (d);
380       for (i = 0; ; i++) 
381         {
382           struct variable *v = dict_get_var (d, i);
383           if (v == weight_var)
384             break;
385           recalc_weight_idx += var_flt64_cnt (v);
386         }
387       hdr.weight_idx = recalc_weight_idx;
388     }
389   else
390     hdr.weight_idx = 0;
391
392   hdr.case_cnt = -1;
393   hdr.bias = COMPRESSION_BIAS;
394
395   if (time (&t) == (time_t) -1)
396     {
397       memcpy (hdr.creation_date, "01 Jan 70", 9);
398       memcpy (hdr.creation_time, "00:00:00", 8);
399     }
400   else
401     {
402       static const char *month_name[12] =
403         {
404           "Jan", "Feb", "Mar", "Apr", "May", "Jun",
405           "Jul", "Aug", "Sep", "Oct", "Nov", "Dec",
406         };
407       struct tm *tmp = localtime (&t);
408       int day = rerange (tmp->tm_mday);
409       int mon = rerange (tmp->tm_mon + 1);
410       int year = rerange (tmp->tm_year);
411       int hour = rerange (tmp->tm_hour + 1);
412       int min = rerange (tmp->tm_min + 1);
413       int sec = rerange (tmp->tm_sec + 1);
414       char buf[10];
415
416       sprintf (buf, "%02d %s %02d", day, month_name[mon - 1], year);
417       memcpy (hdr.creation_date, buf, sizeof hdr.creation_date);
418       sprintf (buf, "%02d:%02d:%02d", hour - 1, min - 1, sec - 1);
419       memcpy (hdr.creation_time, buf, sizeof hdr.creation_time);
420     }
421   
422   {
423     const char *label = dict_get_label (d);
424     if (label == NULL)
425       label = "";
426
427     buf_copy_str_rpad (hdr.file_label, sizeof hdr.file_label, label); 
428   }
429   
430   memset (hdr.padding, 0, sizeof hdr.padding);
431
432   buf_write (w, &hdr, sizeof hdr);
433 }
434
435 /* Translates format spec from internal form in SRC to system file
436    format in DEST. */
437 static inline void
438 write_format_spec (const struct fmt_spec *src, int32_t *dest)
439 {
440   assert(check_output_specifier(src, true));
441   *dest = (formats[src->type].spss << 16) | (src->w << 8) | src->d;
442 }
443
444 /* Write the variable record(s) for primary variable P and secondary
445    variable S to system file W. */
446 static void
447 write_variable (struct sfm_writer *w, const struct variable *v)
448 {
449   struct sysfile_variable sv;
450
451   /* Missing values. */
452   struct missing_values mv;
453   flt64 m[3];           /* Missing value values. */
454   int nm;               /* Number of missing values, possibly negative. */
455
456   sv.rec_type = 2;
457   sv.type = min(v->width, MAX_LONG_STRING);
458   sv.has_var_label = (v->label != NULL);
459
460   mv_copy (&mv, &v->miss);
461   nm = 0;
462   if (mv_has_range (&mv)) 
463     {
464       double x, y;
465       mv_pop_range (&mv, &x, &y);
466       m[nm++] = x == LOWEST ? second_lowest_flt64 : x;
467       m[nm++] = y == HIGHEST ? FLT64_MAX : y;
468     }
469   while (mv_has_value (&mv))
470     {
471       union value value;
472       mv_pop_value (&mv, &value);
473       if (v->type == NUMERIC)
474         m[nm] = value.f;
475       else
476         buf_copy_rpad ((char *) &m[nm], sizeof m[nm], value.s, v->width);
477       nm++;
478     }
479   if (mv_has_range (&v->miss))
480     nm = -nm;
481
482   sv.n_missing_values = nm;
483   write_format_spec (&v->print, &sv.print);
484   write_format_spec (&v->write, &sv.write);
485   buf_copy_str_rpad (sv.name, sizeof sv.name, v->short_name);
486   buf_write (w, &sv, sizeof sv);
487
488   if (v->label)
489     {
490       struct label
491         {
492           int32_t label_len ;
493           char label[255] ;
494       } ATTRIBUTE((packed))
495       l;
496
497       int ext_len;
498
499       l.label_len = min (strlen (v->label), 255);
500       ext_len = ROUND_UP (l.label_len, sizeof l.label_len);
501       memcpy (l.label, v->label, l.label_len);
502       memset (&l.label[l.label_len], ' ', ext_len - l.label_len);
503
504       buf_write (w, &l, offsetof (struct label, label) + ext_len);
505     }
506
507   if (nm)
508     buf_write (w, m, sizeof *m * abs (nm));
509
510   if (v->type == ALPHA && v->width > (int) sizeof (flt64))
511     {
512       int i;
513       int pad_count;
514
515       sv.type = -1;
516       sv.has_var_label = 0;
517       sv.n_missing_values = 0;
518       memset (&sv.print, 0, sizeof sv.print);
519       memset (&sv.write, 0, sizeof sv.write);
520       memset (&sv.name, 0, sizeof sv.name);
521
522       pad_count = DIV_RND_UP (min(v->width, MAX_LONG_STRING),
523                               (int) sizeof (flt64)) - 1;
524       for (i = 0; i < pad_count; i++)
525         buf_write (w, &sv, sizeof sv);
526     }
527 }
528
529 /* Writes the value labels for variable V having system file
530    variable index IDX to system file W. */
531 static void
532 write_value_labels (struct sfm_writer *w, struct variable *v, int idx)
533 {
534   struct value_label_rec
535     {
536       int32_t rec_type ;
537       int32_t n_labels ;
538       flt64 labels[1] ;
539     } ATTRIBUTE((packed));
540
541   struct var_idx_rec
542     {
543       int32_t rec_type ;
544       int32_t n_vars ;
545       int32_t vars[1] ;
546     } ATTRIBUTE((packed));
547
548   struct val_labs_iterator *i;
549   struct value_label_rec *vlr;
550   struct var_idx_rec vir;
551   struct val_lab *vl;
552   size_t vlr_size;
553   flt64 *loc;
554
555   if (!val_labs_count (v->val_labs))
556     return;
557
558   /* Pass 1: Count bytes. */
559   vlr_size = (sizeof (struct value_label_rec)
560               + sizeof (flt64) * (val_labs_count (v->val_labs) - 1));
561   for (vl = val_labs_first (v->val_labs, &i); vl != NULL;
562        vl = val_labs_next (v->val_labs, &i))
563     vlr_size += ROUND_UP (strlen (vl->label) + 1, sizeof (flt64));
564
565   /* Pass 2: Copy bytes. */
566   vlr = xmalloc (vlr_size);
567   vlr->rec_type = 3;
568   vlr->n_labels = val_labs_count (v->val_labs);
569   loc = vlr->labels;
570   for (vl = val_labs_first_sorted (v->val_labs, &i); vl != NULL;
571        vl = val_labs_next (v->val_labs, &i))
572     {
573       size_t len = strlen (vl->label);
574
575       *loc++ = vl->value.f;
576       *(unsigned char *) loc = len;
577       memcpy (&((char *) loc)[1], vl->label, len);
578       memset (&((char *) loc)[1 + len], ' ',
579               REM_RND_UP (len + 1, sizeof (flt64)));
580       loc += DIV_RND_UP (len + 1, sizeof (flt64));
581     }
582   
583   buf_write (w, vlr, vlr_size);
584   free (vlr);
585
586   vir.rec_type = 4;
587   vir.n_vars = 1;
588   vir.vars[0] = idx + 1;
589   buf_write (w, &vir, sizeof vir);
590 }
591
592 /* Writes record type 6, document record. */
593 static void
594 write_documents (struct sfm_writer *w, const struct dictionary *d)
595 {
596   struct
597   {
598     int32_t rec_type ;          /* Always 6. */
599     int32_t n_lines ;           /* Number of lines of documents. */
600   } ATTRIBUTE((packed)) rec_6;
601
602   const char *documents;
603   size_t n_lines;
604
605   documents = dict_get_documents (d);
606   n_lines = strlen (documents) / 80;
607
608   rec_6.rec_type = 6;
609   rec_6.n_lines = n_lines;
610   buf_write (w, &rec_6, sizeof rec_6);
611   buf_write (w, documents, 80 * n_lines);
612 }
613
614 /* Write the alignment, width and scale values */
615 static void
616 write_variable_display_parameters (struct sfm_writer *w, 
617                                    const struct dictionary *dict)
618 {
619   int i;
620
621   struct
622   {
623     int32_t rec_type ;
624     int32_t subtype ;
625     int32_t elem_size ;
626     int32_t n_elem ;
627   } ATTRIBUTE((packed)) vdp_hdr;
628
629   vdp_hdr.rec_type = 7;
630   vdp_hdr.subtype = 11;
631   vdp_hdr.elem_size = 4;
632   vdp_hdr.n_elem = w->var_cnt_vls * 3;
633
634   buf_write (w, &vdp_hdr, sizeof vdp_hdr);
635
636   for ( i = 0 ; i < w->var_cnt ; ++i ) 
637     {
638       struct variable *v;
639       struct
640       {
641         int32_t measure ;
642         int32_t width ;
643         int32_t align ;
644       } ATTRIBUTE((packed)) params;
645
646       v = dict_get_var(dict, i);
647
648       params.measure = v->measure;
649       params.width = v->display_width;
650       params.align = v->alignment;
651       
652       buf_write (w, &params, sizeof(params));
653
654       if ( v->width > MAX_LONG_STRING ) 
655         {
656           int wcount = v->width - EFFECTIVE_LONG_STRING_LENGTH ;
657
658           while (wcount > 0) 
659             {
660               params.width = wcount > MAX_LONG_STRING ? 32 : wcount;
661             
662               buf_write (w, &params, sizeof(params));
663
664               wcount -= EFFECTIVE_LONG_STRING_LENGTH ;
665             } 
666         }
667     }
668 }
669
670 /* Writes the table of lengths for Very Long String Variables */
671 static void 
672 write_vls_length_table (struct sfm_writer *w, 
673                         const struct dictionary *dict)
674 {
675   int i;
676   struct
677   {
678     int32_t rec_type ;
679     int32_t subtype ;
680     int32_t elem_size ;
681     int32_t n_elem ;
682   } ATTRIBUTE((packed)) vls_hdr;
683
684   struct string vls_length_map;
685
686   ds_init_empty (&vls_length_map);
687
688   vls_hdr.rec_type = 7;
689   vls_hdr.subtype = 14;
690   vls_hdr.elem_size = 1;
691
692
693   for (i = 0; i < dict_get_var_cnt (dict); ++i)
694     {
695       const struct variable *v = dict_get_var (dict, i);
696       
697       if ( v->width <=  MAX_LONG_STRING ) 
698         continue;
699
700       ds_put_format (&vls_length_map, "%s=%05d", v->short_name, v->width);
701       ds_put_char (&vls_length_map, '\0');
702       ds_put_char (&vls_length_map, '\t');
703     }
704
705   vls_hdr.n_elem = ds_length (&vls_length_map);
706
707   if ( vls_hdr.n_elem > 0 ) 
708     {
709       buf_write (w, &vls_hdr, sizeof vls_hdr);
710       buf_write (w, ds_data (&vls_length_map), ds_length (&vls_length_map));
711     }
712
713   ds_destroy (&vls_length_map);
714 }
715
716 /* Writes the long variable name table */
717 static void
718 write_longvar_table (struct sfm_writer *w, const struct dictionary *dict)
719 {
720   struct
721     {
722       int32_t rec_type ;
723       int32_t subtype ;
724       int32_t elem_size ;
725       int32_t n_elem ;
726   } ATTRIBUTE((packed)) lv_hdr;
727
728   struct string long_name_map;
729   size_t i;
730
731   ds_init_empty (&long_name_map);
732   for (i = 0; i < dict_get_var_cnt (dict); i++)
733     {
734       struct variable *v = dict_get_var (dict, i);
735       
736       if (i)
737         ds_put_char (&long_name_map, '\t');
738       ds_put_format (&long_name_map, "%s=%s", v->short_name, v->name);
739     }
740
741   lv_hdr.rec_type = 7;
742   lv_hdr.subtype = 13;
743   lv_hdr.elem_size = 1;
744   lv_hdr.n_elem = ds_length (&long_name_map);
745
746   buf_write (w, &lv_hdr, sizeof lv_hdr);
747   buf_write (w, ds_data (&long_name_map), ds_length (&long_name_map));
748
749   ds_destroy (&long_name_map);
750 }
751
752 /* Writes record type 7, subtypes 3 and 4. */
753 static void
754 write_rec_7_34 (struct sfm_writer *w)
755 {
756   struct
757     {
758       int32_t rec_type_3 ;
759       int32_t subtype_3 ;
760       int32_t data_type_3 ;
761       int32_t n_elem_3 ;
762       int32_t elem_3[8] ;
763       int32_t rec_type_4 ;
764       int32_t subtype_4 ;
765       int32_t data_type_4 ;
766       int32_t n_elem_4 ;
767       flt64 elem_4[3] ;
768   } ATTRIBUTE((packed)) rec_7;
769
770   /* Components of the version number, from major to minor. */
771   int version_component[3];
772   
773   /* Used to step through the version string. */
774   char *p;
775
776   /* Parses the version string, which is assumed to be of the form
777      #.#x, where each # is a string of digits, and x is a single
778      letter. */
779   version_component[0] = strtol (bare_version, &p, 10);
780   if (*p == '.')
781     p++;
782   version_component[1] = strtol (bare_version, &p, 10);
783   version_component[2] = (isalpha ((unsigned char) *p)
784                           ? tolower ((unsigned char) *p) - 'a' : 0);
785     
786   rec_7.rec_type_3 = 7;
787   rec_7.subtype_3 = 3;
788   rec_7.data_type_3 = sizeof (int32_t);
789   rec_7.n_elem_3 = 8;
790   rec_7.elem_3[0] = version_component[0];
791   rec_7.elem_3[1] = version_component[1];
792   rec_7.elem_3[2] = version_component[2];
793   rec_7.elem_3[3] = -1;
794
795   /* PORTME: 1=IEEE754, 2=IBM 370, 3=DEC VAX E. */
796 #ifdef FPREP_IEEE754
797   rec_7.elem_3[4] = 1;
798 #endif
799
800   rec_7.elem_3[5] = 1;
801
802   /* PORTME: 1=big-endian, 2=little-endian. */
803 #if WORDS_BIGENDIAN
804   rec_7.elem_3[6] = 1;
805 #else
806   rec_7.elem_3[6] = 2;
807 #endif
808
809   /* PORTME: 1=EBCDIC, 2=7-bit ASCII, 3=8-bit ASCII, 4=DEC Kanji. */
810   rec_7.elem_3[7] = 2;
811
812   rec_7.rec_type_4 = 7;
813   rec_7.subtype_4 = 4;
814   rec_7.data_type_4 = sizeof (flt64);
815   rec_7.n_elem_4 = 3;
816   rec_7.elem_4[0] = -FLT64_MAX;
817   rec_7.elem_4[1] = FLT64_MAX;
818   rec_7.elem_4[2] = second_lowest_flt64;
819
820   buf_write (w, &rec_7, sizeof rec_7);
821 }
822
823 /* Write NBYTES starting at BUF to the system file represented by
824    H. */
825 static void
826 buf_write (struct sfm_writer *w, const void *buf, size_t nbytes)
827 {
828   assert (buf != NULL);
829   fwrite (buf, nbytes, 1, w->file);
830 }
831
832 /* Copies string DEST to SRC with the proviso that DEST does not reach
833    byte END; no null terminator is copied.  Returns a pointer to the
834    byte after the last byte copied. */
835 static char *
836 append_string_max (char *dest, const char *src, const char *end)
837 {
838   int nbytes = min (end - dest, (int) strlen (src));
839   memcpy (dest, src, nbytes);
840   return dest + nbytes;
841 }
842
843 /* Makes certain that the compression buffer of H has room for another
844    element.  If there's not room, pads out the current instruction
845    octet with zero and dumps out the buffer. */
846 static void
847 ensure_buf_space (struct sfm_writer *w)
848 {
849   if (w->ptr >= w->end)
850     {
851       memset (w->x, 0, w->y - w->x);
852       w->x = w->y;
853       w->ptr = w->buf;
854       buf_write (w, w->buf, sizeof *w->buf * 128);
855     }
856 }
857
858 static void write_compressed_data (struct sfm_writer *w, const flt64 *elem);
859
860 /* Writes case C to system file W.
861    Returns 1 if successful, 0 if an I/O error occurred. */
862 int
863 sfm_write_case (struct sfm_writer *w, const struct ccase *c)
864 {
865   if (ferror (w->file))
866     return 0;
867   
868   w->case_cnt++;
869
870   if (!w->needs_translation && !w->compress
871       && sizeof (flt64) == sizeof (union value) && ! w->has_vls )
872     {
873       /* Fast path: external and internal representations are the
874          same and the dictionary is properly ordered.  Write
875          directly to file. */
876       buf_write (w, case_data_all (c), sizeof (union value) * w->flt64_cnt);
877     }
878   else 
879     {
880       /* Slow path: internal and external representations differ.
881          Write into a bounce buffer, then write to W. */
882       flt64 *bounce;
883       flt64 *bounce_cur;
884       flt64 *bounce_end;
885       size_t bounce_size;
886       size_t i;
887
888       bounce_size = sizeof *bounce * w->flt64_cnt;
889       bounce = bounce_cur = local_alloc (bounce_size);
890       bounce_end = bounce + bounce_size;
891
892       for (i = 0; i < w->var_cnt; i++) 
893         {
894           struct sfm_var *v = &w->vars[i];
895
896           memset(bounce_cur, ' ', v->flt64_cnt * sizeof (flt64));
897
898           if (v->width == 0) 
899             {
900               *bounce_cur = case_num (c, v->fv);
901               bounce_cur += v->flt64_cnt;
902             }
903           else 
904             { int ofs = 0;
905             while (ofs < v->width)
906               {
907                 int chunk = MIN (MAX_LONG_STRING, v->width - ofs);
908                 int nv = DIV_RND_UP (chunk, sizeof (flt64));
909                 buf_copy_rpad ((char *) bounce_cur, nv * sizeof (flt64),
910                                case_data (c, v->fv)->s + ofs, chunk);
911                 bounce_cur += nv;
912                 ofs += chunk;
913               }
914             }
915
916         }
917
918       if (!w->compress)
919         buf_write (w, bounce, bounce_size);
920       else
921         write_compressed_data (w, bounce);
922
923       local_free (bounce); 
924     }
925   
926   return !sfm_write_error (w);
927 }
928
929 static void
930 put_instruction (struct sfm_writer *w, unsigned char instruction) 
931 {
932   if (w->x >= w->y)
933     {
934       ensure_buf_space (w);
935       w->x = (unsigned char *) w->ptr++;
936       w->y = (unsigned char *) w->ptr;
937     }
938   *w->x++ = instruction;
939 }
940
941 static void
942 put_element (struct sfm_writer *w, const flt64 *elem) 
943 {
944   ensure_buf_space (w);
945   memcpy (w->ptr++, elem, sizeof *elem);
946 }
947
948 static void
949 write_compressed_data (struct sfm_writer *w, const flt64 *elem) 
950 {
951   size_t i;
952
953   for (i = 0; i < w->var_cnt; i++)
954     {
955       struct sfm_var *v = &w->vars[i];
956
957       if (v->width == 0) 
958         {
959           if (*elem == -FLT64_MAX)
960             put_instruction (w, 255);
961           else if (*elem >= 1 - COMPRESSION_BIAS
962                    && *elem <= 251 - COMPRESSION_BIAS
963                    && *elem == (int) *elem) 
964             put_instruction (w, (int) *elem + COMPRESSION_BIAS);
965           else
966             {
967               put_instruction (w, 253);
968               put_element (w, elem);
969             }
970           elem++;
971         }
972       else 
973         {
974           size_t j;
975           
976           for (j = 0; j < v->flt64_cnt; j++, elem++) 
977             {
978               if (!memcmp (elem, "        ", sizeof (flt64)))
979                 put_instruction (w, 254);
980               else 
981                 {
982                   put_instruction (w, 253);
983                   put_element (w, elem);
984                 }
985             }
986         }
987     }
988 }
989
990 /* Returns true if an I/O error has occurred on WRITER, false otherwise. */
991 bool
992 sfm_write_error (const struct sfm_writer *writer)
993 {
994   return ferror (writer->file);
995 }
996
997 /* Closes a system file after we're done with it.
998    Returns true if successful, false if an I/O error occurred. */
999 bool
1000 sfm_close_writer (struct sfm_writer *w)
1001 {
1002   bool ok;
1003   
1004   if (w == NULL)
1005     return true;
1006
1007   ok = true;
1008   if (w->file != NULL) 
1009     {
1010       /* Flush buffer. */
1011       if (w->buf != NULL && w->ptr > w->buf)
1012         {
1013           memset (w->x, 0, w->y - w->x);
1014           buf_write (w, w->buf, (w->ptr - w->buf) * sizeof *w->buf);
1015         }
1016       fflush (w->file);
1017
1018       ok = !sfm_write_error (w);
1019
1020       /* Seek back to the beginning and update the number of cases.
1021          This is just a courtesy to later readers, so there's no need
1022          to check return values or report errors. */
1023       if (ok && !fseek (w->file, offsetof (struct sysfile_header, case_cnt),
1024                         SEEK_SET))
1025         {
1026           int32_t case_cnt = w->case_cnt;
1027           fwrite (&case_cnt, sizeof case_cnt, 1, w->file);
1028           clearerr (w->file);
1029         }
1030
1031       if (fclose (w->file) == EOF)
1032         ok = false;
1033
1034       if (!ok)
1035         msg (ME, _("An I/O error occurred writing system file \"%s\"."),
1036              fh_get_file_name (w->fh));
1037     }
1038
1039   fh_close (w->fh, "system file", "we");
1040   
1041   free (w->buf);
1042   free (w->vars);
1043   free (w);
1044
1045   return ok;
1046 }