1 /* PSPP - computes sample statistics.
2 Copyright (C) 1997-2004 Free Software Foundation, Inc.
3 Written by Ben Pfaff <blp@gnu.org>.
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.
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.
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
21 #include "dfm-write.h"
27 #include "file-handle.h"
32 #define _(msgid) gettext (msgid)
34 /* Data file writer. */
37 struct file_handle *fh; /* File handle. */
38 struct file_ext file; /* Associated file. */
39 char *bounce; /* Bounce buffer for fixed-size fields. */
42 /* Opens a file handle for writing as a data file. */
44 dfm_open_writer (struct file_handle *fh)
49 aux = fh_open (fh, "data file", "ws");
55 w = *aux = xmalloc (sizeof *w);
60 w->file.filename = xstrdup (handle_get_filename (w->fh));
63 w->file.sequence_no = NULL;
65 w->file.postopen = NULL;
66 w->file.preclose = NULL;
68 if (!fn_open_ext (&w->file))
70 msg (ME, _("An error occurred while opening \"%s\" for writing "
71 "as a data file: %s."),
72 handle_get_filename (w->fh), strerror (errno));
84 /* Writes record REC having length LEN to the file corresponding to
85 HANDLE. REC is not null-terminated. Returns nonzero on success,
88 dfm_put_record (struct dfm_writer *w, const char *rec, size_t len)
92 if (handle_get_mode (w->fh) == MODE_BINARY
93 && len < handle_get_record_width (w->fh))
95 size_t rec_width = handle_get_record_width (w->fh);
96 if (w->bounce == NULL)
97 w->bounce = xmalloc (rec_width);
98 memcpy (w->bounce, rec, len);
99 memset (&w->bounce[len], 0, rec_width - len);
104 if (fwrite (rec, len, 1, w->file.file) != 1)
106 msg (ME, _("Error writing file %s: %s."),
107 handle_get_name (w->fh), strerror (errno));
115 /* Closes data file writer W. */
117 dfm_close_writer (struct dfm_writer *w)
119 if (fh_close (w->fh, "data file", "ws"))
124 fn_close_ext (&w->file);
125 free (w->file.filename);
126 w->file.filename = NULL;