X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fcsv-file-writer.c;h=8e52df50756cdf1b3f75d0d4ea7c020bc3477f49;hb=85686ff9b5292a10af71b72c57a87df199e1a4ad;hp=7d35b1c2e0757a4ef3d7ea843b2b1b041cfc6037;hpb=fcb75da3200f19842a2eb12ca00063a727a226fd;p=pspp diff --git a/src/data/csv-file-writer.c b/src/data/csv-file-writer.c index 7d35b1c2e0..8e52df5075 100644 --- a/src/data/csv-file-writer.c +++ b/src/data/csv-file-writer.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2010 Free Software Foundation, Inc. + Copyright (C) 2010, 2011, 2012, 2013, 2014 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 @@ -45,6 +45,8 @@ #include "libpspp/message.h" #include "libpspp/str.h" +#include "gl/ftoastr.h" +#include "gl/minmax.h" #include "gl/unlocked-io.h" #include "gl/xalloc.h" @@ -95,7 +97,7 @@ csv_writer_options_init (struct csv_writer_options *opts) opts->use_value_labels = false; opts->use_print_formats = false; opts->decimal = settings_get_decimal_char (FMT_F); - opts->delimiter = 0; + opts->delimiter = ','; opts->qualifier = '"'; } @@ -120,9 +122,7 @@ csv_writer_open (struct file_handle *fh, const struct dictionary *dict, w->opts = *opts; - w->encoding = (dict_get_encoding (dict) - ? xstrdup (dict_get_encoding (dict)) - : NULL); + w->encoding = xstrdup (dict_get_encoding (dict)); w->n_csv_vars = dict_get_var_cnt (dict); w->csv_vars = xnmalloc (w->n_csv_vars, sizeof *w->csv_vars); @@ -158,7 +158,7 @@ csv_writer_open (struct file_handle *fh, const struct dictionary *dict, &w->file, NULL); if (w->rf == NULL) { - msg (ME, _("Error opening \"%s\" for writing as a system file: %s."), + msg (ME, _("Error opening `%s' for writing as a system file: %s."), fh_get_file_name (fh), strerror (errno)); goto error; } @@ -200,6 +200,12 @@ csv_output_buffer (struct csv_writer *w, const char *s, size_t len) putc (w->opts.qualifier, w->file); for (p = s; p < &s[len]; p++) { + /* We are writing the output file in text mode, so transform any + explicit CR-LF line breaks into LF only, to allow the C library to + use correct system-specific new-lines. */ + if (*p == '\r' && p[1] == '\n') + continue; + if (*p == w->opts.qualifier) putc (w->opts.qualifier, w->file); putc (*p, w->file); @@ -280,7 +286,8 @@ csv_write_var__ (struct csv_writer *w, const struct csv_var *cv, csv_output_format (w, cv, value); else { - char s[128]; + char s[MAX (DBL_STRLEN_BOUND, 128)]; + char *cp; switch (cv->format.type) { @@ -306,13 +313,10 @@ csv_write_var__ (struct csv_writer *w, const struct csv_var *cv, case FMT_RBHEX: case FMT_WKDAY: case FMT_MONTH: - snprintf (s, sizeof s, "%.*g", DBL_DIG + 1, value->f); - if (w->opts.decimal != '.') - { - char *cp = strchr (s, '.'); - if (cp != NULL) - *cp = w->opts.decimal; - } + dtoastr (s, sizeof s, 0, 0, value->f); + cp = strpbrk (s, ".,"); + if (cp != NULL) + *cp = w->opts.decimal; break; case FMT_DATE: @@ -459,7 +463,7 @@ close_writer (struct csv_writer *w) ok = false; if (!ok) - msg (ME, _("An I/O error occurred writing CSV file \"%s\"."), + msg (ME, _("An I/O error occurred writing CSV file `%s'."), fh_get_file_name (w->fh)); if (ok ? !replace_file_commit (w->rf) : !replace_file_abort (w->rf))