X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fsys-file-writer.c;h=1b73e737c1bca6efcaf1ccecf799ae0c8d2c18bf;hb=refs%2Fbuilds%2F20130826030511%2Fpspp;hp=9586cbc2e38e503c75ede6be7ea754bd93d80a11;hpb=e24089bbe924045c7b98e4bbcc0dc1c4b8703429;p=pspp diff --git a/src/data/sys-file-writer.c b/src/data/sys-file-writer.c index 9586cbc2e3..1b73e737c1 100644 --- a/src/data/sys-file-writer.c +++ b/src/data/sys-file-writer.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2006, 2007, 2009, 2010, 2011 Free Software Foundation, Inc. + Copyright (C) 1997-2000, 2006-2013 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -74,6 +74,7 @@ struct sfm_writer bool compress; /* 1=compressed, 0=not compressed. */ casenumber case_cnt; /* Number of cases written so far. */ + uint8_t space; /* ' ' in the file's character encoding. */ /* Compression buffering. @@ -176,6 +177,7 @@ struct casewriter * sfm_open_writer (struct file_handle *fh, struct dictionary *d, struct sfm_write_options opts) { + struct encoding_info encoding_info; struct sfm_writer *w; mode_t mode; int i; @@ -227,6 +229,9 @@ sfm_open_writer (struct file_handle *fh, struct dictionary *d, goto error; } + get_encoding_info (&encoding_info, dict_get_encoding (d)); + w->space = encoding_info.space[0]; + /* Write the file header. */ write_header (w, d); @@ -254,9 +259,12 @@ sfm_open_writer (struct file_handle *fh, struct dictionary *d, write_long_string_value_labels (w, d); - if (attrset_count (dict_get_attributes (d))) - write_data_file_attributes (w, d); - write_variable_attributes (w, d); + if (opts.version >= 3) + { + if (attrset_count (dict_get_attributes (d))) + write_data_file_attributes (w, d); + write_variable_attributes (w, d); + } write_mrsets (w, d, false); @@ -311,6 +319,7 @@ calc_oct_idx (const struct dictionary *d, struct variable *target_var) static void write_header (struct sfm_writer *w, const struct dictionary *d) { + const char *dict_encoding = dict_get_encoding (d); char prod_name[61]; char creation_date[10]; char creation_time[9]; @@ -320,12 +329,15 @@ write_header (struct sfm_writer *w, const struct dictionary *d) time_t t; /* Record-type code. */ - write_string (w, "$FL2", 4); + if (is_encoding_ebcdic_compatible (dict_encoding)) + write_string (w, EBCDIC_MAGIC, 4); + else + write_string (w, ASCII_MAGIC, 4); /* Product identification. */ snprintf (prod_name, sizeof prod_name, "@(#) SPSS DATA FILE %s - %s", version, host_system); - write_string (w, prod_name, 60); + write_utf8_string (w, dict_encoding, prod_name, 60); /* Layout code. */ write_int (w, 2); @@ -374,14 +386,14 @@ write_header (struct sfm_writer *w, const struct dictionary *d) snprintf (creation_time, sizeof creation_time, "%02d:%02d:%02d", hour - 1, min - 1, sec - 1); } - write_string (w, creation_date, 9); - write_string (w, creation_time, 8); + write_utf8_string (w, dict_encoding, creation_date, 9); + write_utf8_string (w, dict_encoding, creation_time, 8); /* File label. */ file_label = dict_get_label (d); if (file_label == NULL) file_label = ""; - write_utf8_string (w, dict_get_encoding (d), file_label, 64); + write_utf8_string (w, dict_encoding, file_label, 64); /* Padding. */ write_zeros (w, 3); @@ -671,6 +683,46 @@ write_data_file_attributes (struct sfm_writer *w, ds_destroy (&s); } +static void +add_role_attribute (enum var_role role, struct attrset *attrs) +{ + struct attribute *attr; + const char *s; + + switch (role) + { + case ROLE_NONE: + default: + s = "0"; + break; + + case ROLE_INPUT: + s = "1"; + break; + + case ROLE_OUTPUT: + s = "2"; + break; + + case ROLE_BOTH: + s = "3"; + break; + + case ROLE_PARTITION: + s = "4"; + break; + + case ROLE_SPLIT: + s = "5"; + break; + } + attrset_delete (attrs, "$@Role"); + + attr = attribute_create ("$@Role"); + attribute_add_value (attr, s); + attrset_add (attrs, attr); +} + static void write_variable_attributes (struct sfm_writer *w, const struct dictionary *d) { @@ -682,14 +734,16 @@ write_variable_attributes (struct sfm_writer *w, const struct dictionary *d) for (i = 0; i < n_vars; i++) { struct variable *v = dict_get_var (d, i); - struct attrset *attrs = var_get_attributes (v); - if (attrset_count (attrs)) - { - if (n_attrsets++) - ds_put_byte (&s, '/'); - ds_put_format (&s, "%s:", var_get_name (v)); - put_attrset (&s, attrs); - } + struct attrset attrs; + + attrset_clone (&attrs, var_get_attributes (v)); + + add_role_attribute (var_get_role (v), &attrs); + if (n_attrsets++) + ds_put_byte (&s, '/'); + ds_put_format (&s, "%s:", var_get_name (v)); + put_attrset (&s, &attrs); + attrset_destroy (&attrs); } if (n_attrsets) write_utf8_record (w, dict_get_encoding (d), &s, 18); @@ -708,6 +762,12 @@ write_mrsets (struct sfm_writer *w, const struct dictionary *dict, size_t n_mrsets; size_t i; + if (is_encoding_ebcdic_compatible (encoding)) + { + /* FIXME. */ + return; + } + n_mrsets = dict_get_n_mrsets (dict); if (n_mrsets == 0) return; @@ -759,11 +819,12 @@ write_mrsets (struct sfm_writer *w, const struct dictionary *dict, for (j = 0; j < mrset->n_vars; j++) { const char *short_name_utf8 = var_get_short_name (mrset->vars[j], 0); + char *lower_name_utf8 = utf8_to_lower (short_name_utf8); char *short_name = recode_string (encoding, "UTF-8", - short_name_utf8, -1); - str_lowercase (short_name); + lower_name_utf8, -1); ds_put_format (&s, " %s", short_name); free (short_name); + free (lower_name_utf8); } ds_put_byte (&s, '\n'); } @@ -952,6 +1013,7 @@ static void write_integer_info_record (struct sfm_writer *w, const struct dictionary *d) { + const char *dict_encoding = dict_get_encoding (d); int version_component[3]; int float_format; int codepage; @@ -973,13 +1035,21 @@ write_integer_info_record (struct sfm_writer *w, abort (); /* Choose codepage. */ - codepage = sys_get_codepage_from_encoding (dict_get_encoding (d)); + codepage = sys_get_codepage_from_encoding (dict_encoding); if (codepage == 0) { - /* Default to "7-bit ASCII" if the codepage number is unknown, because + /* The codepage is unknown. Choose a default. + + For an EBCDIC-compatible encoding, use the value for EBCDIC. + + For an ASCII-compatible encoding, default to "7-bit ASCII", because many files use this codepage number regardless of their actual - encoding. */ - codepage = 2; + encoding. + */ + if (is_encoding_ascii_compatible (dict_encoding)) + codepage = 2; + else if (is_encoding_ebcdic_compatible (dict_encoding)) + codepage = 1; } /* Write record. */ @@ -1238,7 +1308,7 @@ put_cmp_string (struct sfm_writer *w, const void *data, size_t size) assert (w->data_cnt < 8); assert (size <= 8); - memset (w->data[w->data_cnt], ' ', 8); + memset (w->data[w->data_cnt], w->space, 8); memcpy (w->data[w->data_cnt], data, size); w->data_cnt++; } @@ -1300,7 +1370,7 @@ write_string (struct sfm_writer *w, const char *string, size_t width) size_t pad_bytes = width - data_bytes; write_bytes (w, string, data_bytes); while (pad_bytes-- > 0) - putc (' ', w->file); + putc (w->space, w->file); } /* Recodes null-terminated UTF-8 encoded STRING into ENCODING, and writes the @@ -1361,5 +1431,5 @@ static void write_spaces (struct sfm_writer *w, size_t n) { while (n-- > 0) - putc (' ', w->file); + putc (w->space, w->file); }