X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fsys-file-writer.c;h=4907ad7389ba32a2ecf900e762b06a5651b1c321;hb=5c3291dc396b795696e94f47780308fd7ace6fc4;hp=7804e5914f72d7ac49f06a1f8ccb1bd71aec48ce;hpb=9b94efd7513afdb12a6023024e00e50801532fee;p=pspp-builds.git diff --git a/src/data/sys-file-writer.c b/src/data/sys-file-writer.c index 7804e591..4907ad73 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 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2006, 2007, 2009 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 @@ -33,6 +33,7 @@ #include #include +#include #include #include #include @@ -102,6 +103,9 @@ static void write_float_info_record (struct sfm_writer *); static void write_longvar_table (struct sfm_writer *w, const struct dictionary *dict); +static void write_encoding_record (struct sfm_writer *w, + const struct dictionary *); + static void write_vls_length_table (struct sfm_writer *w, const struct dictionary *dict); @@ -111,6 +115,11 @@ static void write_variable_display_parameters (struct sfm_writer *w, static void write_documents (struct sfm_writer *, const struct dictionary *); +static void write_data_file_attributes (struct sfm_writer *, + const struct dictionary *); +static void write_variable_attributes (struct sfm_writer *, + const struct dictionary *); + static void write_int (struct sfm_writer *, int32_t); static inline void convert_double_to_output_format (double, uint8_t[8]); static void write_float (struct sfm_writer *, double); @@ -120,8 +129,9 @@ static void write_zeros (struct sfm_writer *, size_t); static void write_spaces (struct sfm_writer *, size_t); static void write_value (struct sfm_writer *, const union value *, int width); -static void write_case_uncompressed (struct sfm_writer *, struct ccase *); -static void write_case_compressed (struct sfm_writer *, struct ccase *); +static void write_case_uncompressed (struct sfm_writer *, + const struct ccase *); +static void write_case_compressed (struct sfm_writer *, const struct ccase *); static void flush_compressed (struct sfm_writer *); static void put_cmp_opcode (struct sfm_writer *, uint8_t); static void put_cmp_number (struct sfm_writer *, double); @@ -235,6 +245,12 @@ sfm_open_writer (struct file_handle *fh, struct dictionary *d, write_vls_length_table (w, d); + if (attrset_count (dict_get_attributes (d))) + write_data_file_attributes (w, d); + write_variable_attributes (w, d); + + write_encoding_record (w, d); + /* Write end-of-headers record. */ write_int (w, 999); write_int (w, 0); @@ -245,8 +261,7 @@ sfm_open_writer (struct file_handle *fh, struct dictionary *d, return NULL; } - return casewriter_create (dict_get_next_value_idx (d), - &sys_file_casewriter_class, w); + return casewriter_create (dict_get_proto (d), &sys_file_casewriter_class, w); error: close_writer (w); @@ -482,26 +497,31 @@ static void write_value_labels (struct sfm_writer *w, struct variable *v, int idx) { const struct val_labs *val_labs; - struct val_labs_iterator *i; - struct val_lab *vl; + const struct val_lab **labels; + size_t n_labels; + size_t i; val_labs = var_get_value_labels (v); - if (val_labs == NULL) + n_labels = val_labs_count (val_labs); + if (n_labels == 0) return; /* Value label record. */ write_int (w, 3); /* Record type. */ write_int (w, val_labs_count (val_labs)); - for (vl = val_labs_first_sorted (val_labs, &i); vl != NULL; - vl = val_labs_next (val_labs, &i)) + labels = val_labs_sorted (val_labs); + for (i = 0; i < n_labels; i++) { - uint8_t len = MIN (strlen (vl->label), 255); + const struct val_lab *vl = labels[i]; + const char *label = val_lab_get_label (vl); + uint8_t len = MIN (strlen (label), 255); - write_value (w, &vl->value, var_get_width (v)); + write_value (w, val_lab_get_value (vl), var_get_width (v)); write_bytes (w, &len, 1); - write_bytes (w, vl->label, len); + write_bytes (w, label, len); write_zeros (w, REM_RND_UP (len + 1, 8)); } + free (labels); /* Value label variable record. */ write_int (w, 4); /* Record type. */ @@ -520,6 +540,72 @@ write_documents (struct sfm_writer *w, const struct dictionary *d) write_bytes (w, dict_get_documents (d), line_cnt * DOC_LINE_LENGTH); } +static void +put_attrset (struct string *string, const struct attrset *attrs) +{ + const struct attribute *attr; + struct attrset_iterator i; + + for (attr = attrset_first (attrs, &i); attr != NULL; + attr = attrset_next (attrs, &i)) + { + size_t n_values = attribute_get_n_values (attr); + size_t j; + + ds_put_cstr (string, attribute_get_name (attr)); + ds_put_char (string, '('); + for (j = 0; j < n_values; j++) + ds_put_format (string, "'%s'\n", attribute_get_value (attr, j)); + ds_put_char (string, ')'); + } +} + +static void +write_attribute_record (struct sfm_writer *w, const struct string *content, + int subtype) +{ + write_int (w, 7); + write_int (w, subtype); + write_int (w, 1); + write_int (w, ds_length (content)); + write_bytes (w, ds_data (content), ds_length (content)); +} + +static void +write_data_file_attributes (struct sfm_writer *w, + const struct dictionary *d) +{ + struct string s = DS_EMPTY_INITIALIZER; + put_attrset (&s, dict_get_attributes (d)); + write_attribute_record (w, &s, 17); + ds_destroy (&s); +} + +static void +write_variable_attributes (struct sfm_writer *w, const struct dictionary *d) +{ + struct string s = DS_EMPTY_INITIALIZER; + size_t n_vars = dict_get_var_cnt (d); + size_t n_attrsets = 0; + size_t i; + + 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_char (&s, '/'); + ds_put_format (&s, "%s:", var_get_short_name (v, 0)); + put_attrset (&s, attrs); + } + } + if (n_attrsets) + write_attribute_record (w, &s, 18); + ds_destroy (&s); +} + /* Write the alignment, width and scale values. */ static void write_variable_display_parameters (struct sfm_writer *w, @@ -583,6 +669,24 @@ write_vls_length_table (struct sfm_writer *w, ds_destroy (&map); } + +static void +write_encoding_record (struct sfm_writer *w, + const struct dictionary *d) +{ + const char *enc = dict_get_encoding (d); + + if ( NULL == enc) + return; + + write_int (w, 7); /* Record type. */ + write_int (w, 20); /* Record subtype. */ + write_int (w, 1); /* Data item (char) size. */ + write_int (w, strlen (enc)); /* Number of data items. */ + write_string (w, enc, strlen (enc)); +} + + /* Writes the long variable name table. */ static void write_longvar_table (struct sfm_writer *w, const struct dictionary *dict) @@ -671,7 +775,7 @@ sys_file_casewriter_write (struct casewriter *writer, void *w_, if (ferror (w->file)) { casewriter_force_error (writer); - case_destroy (c); + case_unref (c); return; } @@ -682,7 +786,7 @@ sys_file_casewriter_write (struct casewriter *writer, void *w_, else write_case_compressed (w, c); - case_destroy (c); + case_unref (c); } /* Destroys system file writer W. */ @@ -760,7 +864,7 @@ static const struct casewriter_class sys_file_casewriter_class = /* Writes case C to system file W, without compressing it. */ static void -write_case_uncompressed (struct sfm_writer *w, struct ccase *c) +write_case_uncompressed (struct sfm_writer *w, const struct ccase *c) { size_t i; @@ -768,12 +872,12 @@ write_case_uncompressed (struct sfm_writer *w, struct ccase *c) { struct sfm_var *v = &w->sfm_vars[i]; - if (v->width == 0) + if (v->var_width == 0) write_float (w, case_num_idx (c, v->case_index)); else { write_bytes (w, case_str_idx (c, v->case_index) + v->offset, - v->width); + v->segment_width); write_spaces (w, v->padding); } } @@ -781,7 +885,7 @@ write_case_uncompressed (struct sfm_writer *w, struct ccase *c) /* Writes case C to system file W, with compression. */ static void -write_case_compressed (struct sfm_writer *w, struct ccase *c) +write_case_compressed (struct sfm_writer *w, const struct ccase *c) { size_t i; @@ -789,7 +893,7 @@ write_case_compressed (struct sfm_writer *w, struct ccase *c) { struct sfm_var *v = &w->sfm_vars[i]; - if (v->width == 0) + if (v->var_width == 0) { double d = case_num_idx (c, v->case_index); if (d == SYSMIS) @@ -813,7 +917,7 @@ write_case_compressed (struct sfm_writer *w, struct ccase *c) multiple of 8, by ensuring that the final partial oct (8 byte unit) is treated as padded with spaces on the right. */ - for (width = v->width; width > 0; width -= 8, offset += 8) + for (width = v->segment_width; width > 0; width -= 8, offset += 8) { const void *data = case_str_idx (c, v->case_index) + offset; int chunk_size = MIN (width, 8); @@ -936,13 +1040,13 @@ write_value (struct sfm_writer *w, const union value *value, int width) write_float (w, value->f); else { - write_bytes (w, value->s, width); + write_bytes (w, value_str (value, width), width); write_zeros (w, 8 - width); } } /* Writes null-terminated STRING in a field of the given WIDTH to - W. If WIDTH is longer than WIDTH, it is truncated; if WIDTH + W. If STRING is longer than WIDTH, it is truncated; if WIDTH is narrowed, it is padded on the right with spaces. */ static void write_string (struct sfm_writer *w, const char *string, size_t width)