1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-2004, 2006 Free Software Foundation, Inc.
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.
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.
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/>. */
19 #include <language/data-io/data-writer.h>
27 #include <data/file-name.h>
28 #include <data/make-file.h>
29 #include <language/data-io/file-handle.h>
30 #include <libpspp/assertion.h>
31 #include <libpspp/integer-format.h>
32 #include <libpspp/message.h>
33 #include <libpspp/str.h>
39 #define _(msgid) gettext (msgid)
40 #define N_(msgid) (msgid)
42 /* Data file writer. */
45 struct file_handle *fh; /* File handle. */
46 struct fh_lock *lock; /* Exclusive access to file. */
47 FILE *file; /* Associated file. */
48 struct replace_file *rf; /* Atomic file replacement support. */
51 /* Opens a file handle for writing as a data file. */
53 dfm_open_writer (struct file_handle *fh)
58 lock = fh_lock (fh, FH_REF_FILE, N_("data file"), FH_ACC_WRITE, false);
62 w = fh_lock_get_aux (lock);
66 w = xmalloc (sizeof *w);
69 w->rf = replace_file_start (fh_get_file_name (w->fh), "wb",
70 (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP
71 | S_IROTH | S_IWOTH), &w->file, NULL);
74 msg (ME, _("An error occurred while opening \"%s\" for writing "
75 "as a data file: %s."),
76 fh_get_file_name (w->fh), strerror (errno));
80 fh_lock_set_aux (lock, w);
85 /* Returns false if an I/O error occurred on WRITER, true otherwise. */
87 dfm_write_error (const struct dfm_writer *writer)
89 return ferror (writer->file);
92 /* Writes record REC (which need not be null-terminated) having
93 length LEN to the file corresponding to HANDLE. Adds any
94 needed formatting, such as a trailing new-line. Returns true
95 on success, false on failure. */
97 dfm_put_record (struct dfm_writer *w, const char *rec, size_t len)
101 if (dfm_write_error (w))
104 switch (fh_get_mode (w->fh))
107 fwrite (rec, len, 1, w->file);
108 putc ('\n', w->file);
113 size_t record_width = fh_get_record_width (w->fh);
114 size_t write_bytes = MIN (len, record_width);
115 size_t pad_bytes = record_width - write_bytes;
116 fwrite (rec, write_bytes, 1, w->file);
117 while (pad_bytes > 0)
119 static const char spaces[32] = " ";
120 size_t chunk = MIN (pad_bytes, sizeof spaces);
121 fwrite (spaces, chunk, 1, w->file);
127 case FH_MODE_VARIABLE:
130 integer_convert (INTEGER_NATIVE, &size, INTEGER_LSB_FIRST, &size,
132 fwrite (&size, sizeof size, 1, w->file);
133 fwrite (rec, len, 1, w->file);
134 fwrite (&size, sizeof size, 1, w->file);
138 case FH_MODE_360_VARIABLE:
139 case FH_MODE_360_SPANNED:
142 if (fh_get_mode (w->fh) == FH_MODE_360_VARIABLE)
143 len = MIN (65527, len);
146 size_t chunk = MIN (65527, len - ofs);
147 uint32_t bdw = (chunk + 8) << 16;
148 int scc = (ofs == 0 && chunk == len ? 0
150 : ofs + chunk == len ? 2
152 uint32_t rdw = ((chunk + 4) << 16) | (scc << 8);
154 integer_convert (INTEGER_NATIVE, &bdw, INTEGER_MSB_FIRST, &bdw,
156 integer_convert (INTEGER_NATIVE, &rdw, INTEGER_MSB_FIRST, &rdw,
158 fwrite (&bdw, 1, sizeof bdw, w->file);
159 fwrite (&rdw, 1, sizeof rdw, w->file);
160 fwrite (rec + ofs, 1, chunk, w->file);
170 return !dfm_write_error (w);
173 /* Closes data file writer W. */
175 dfm_close_writer (struct dfm_writer *w)
181 if (fh_unlock (w->lock))
187 const char *file_name = fh_get_file_name (w->fh);
188 ok = !dfm_write_error (w) && !fn_close (file_name, w->file);
191 msg (ME, _("I/O error occurred writing data file \"%s\"."), file_name);
193 if (ok ? !replace_file_commit (w->rf) : !replace_file_abort (w->rf))
202 /* Returns the legacy character encoding of data written to WRITER. */
204 dfm_writer_get_legacy_encoding (const struct dfm_writer *writer)
206 return fh_get_legacy_encoding (writer->fh);