1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2004 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/>. */
26 #include <data/file-name.h>
27 #include <data/make-file.h>
28 #include <libpspp/ll.h>
29 #include <libpspp/message.h>
31 #include "fatal-signal.h"
36 #define _(msgid) gettext (msgid)
38 /* Non ansi compilers may set this */
40 #define P_tmpdir "/tmp"
43 /* Creates a temporary file and stores its name in *FILE_NAME and
44 a file descriptor for it in *FD. Returns success. Caller is
45 responsible for freeing *FILE_NAME. */
47 make_temp_file (int *fd, char **file_name)
49 const char *parent_dir;
51 assert (file_name != NULL);
54 if (getenv ("TMPDIR") != NULL)
55 parent_dir = getenv ("TMPDIR");
57 parent_dir = P_tmpdir;
59 *file_name = xmalloc (strlen (parent_dir) + 32);
60 sprintf (*file_name, "%s/psppXXXXXX", parent_dir);
61 *fd = mkstemp (*file_name);
64 msg (ME, _("%s: Creating temporary file: %s."),
65 *file_name, strerror (errno));
74 /* Creates a temporary file and stores its name in *FILE_NAME and
75 a file stream for it in *FP. Returns success. Caller is
76 responsible for freeing *FILE_NAME and for closing *FP */
78 make_unique_file_stream (FILE **fp, char **file_name)
80 static int serial = 0;
81 const char *parent_dir;
85 Need to check for pre-existing file name.
86 Need also to pass in the directory instead of using /tmp
89 assert (file_name != NULL);
92 if (getenv ("TMPDIR") != NULL)
93 parent_dir = getenv ("TMPDIR");
95 parent_dir = P_tmpdir;
97 *file_name = xmalloc (strlen (parent_dir) + 32);
100 sprintf (*file_name, "%s/pspp%d.png", parent_dir, serial++);
102 *fp = fopen(*file_name, "w");
106 msg (ME, _("%s: Creating file: %s."), *file_name, strerror (errno));
122 static struct ll_list all_files = LL_INITIALIZER (all_files);
124 static void free_replace_file (struct replace_file *);
125 static void unlink_replace_files (void);
127 struct replace_file *
128 replace_file_start (const char *file_name, const char *mode,
129 mode_t permissions, FILE **fp, char **tmp_name)
131 static bool registered;
133 struct replace_file *rf;
136 /* If FILE_NAME represents a special file, write to it directly
137 instead of trying to replace it. */
138 if (stat (file_name, &s) == 0 && !S_ISREG (s.st_mode))
140 /* Open file descriptor. */
141 fd = open (file_name, O_WRONLY);
144 msg (ME, _("Opening %s for writing: %s."),
145 file_name, strerror (errno));
149 /* Open file as stream. */
150 *fp = fdopen (fd, mode);
153 msg (ME, _("Opening stream for %s: %s."),
154 file_name, strerror (errno));
159 rf = xmalloc (sizeof *rf);
160 rf->file_name = NULL;
161 rf->tmp_name = xstrdup (file_name);
162 if (tmp_name != NULL)
163 *tmp_name = rf->tmp_name;
169 at_fatal_signal (unlink_replace_files);
172 block_fatal_signals ();
174 rf = xmalloc (sizeof *rf);
175 rf->file_name = xstrdup (file_name);
178 /* Generate unique temporary file name. */
179 rf->tmp_name = xasprintf ("%s.tmpXXXXXX", file_name);
180 if (gen_tempname (rf->tmp_name, GT_NOCREATE) < 0)
182 msg (ME, _("Creating temporary file to replace %s: %s."),
183 rf->file_name, strerror (errno));
187 /* Create file by that name. */
188 fd = open (rf->tmp_name, O_WRONLY | O_CREAT | O_EXCL, permissions);
193 msg (ME, _("Creating temporary file %s: %s."),
194 rf->tmp_name, strerror (errno));
201 /* Open file as stream. */
202 *fp = fdopen (fd, mode);
205 msg (ME, _("Opening stream for temporary file %s: %s."),
206 rf->tmp_name, strerror (errno));
208 unlink (rf->tmp_name);
212 /* Register file for deletion. */
213 ll_push_head (&all_files, &rf->ll);
214 unblock_fatal_signals ();
216 if (tmp_name != NULL)
217 *tmp_name = rf->tmp_name;
222 unblock_fatal_signals ();
223 free_replace_file (rf);
225 if (tmp_name != NULL)
231 replace_file_commit (struct replace_file *rf)
235 if (rf->file_name != NULL)
239 block_fatal_signals ();
240 ok = rename (rf->tmp_name, rf->file_name) == 0;
243 unblock_fatal_signals ();
246 msg (ME, _("Replacing %s by %s: %s."),
247 rf->tmp_name, rf->file_name, strerror (save_errno));
251 /* Special file: no temporary file to rename. */
253 free_replace_file (rf);
259 replace_file_abort (struct replace_file *rf)
263 if (rf->file_name != NULL)
267 block_fatal_signals ();
268 ok = unlink (rf->tmp_name) == 0;
271 unblock_fatal_signals ();
274 msg (ME, _("Removing %s: %s."), rf->tmp_name, strerror (save_errno));
278 /* Special file: no temporary file to unlink. */
280 free_replace_file (rf);
286 free_replace_file (struct replace_file *rf)
288 free (rf->file_name);
294 unlink_replace_files (void)
296 struct replace_file *rf;
298 block_fatal_signals ();
299 ll_for_each (rf, struct replace_file, ll, &all_files)
301 /* We don't free_replace_file(RF) because calling free is unsafe
302 from an asynchronous signal handler. */
303 unlink (rf->tmp_name);
306 unblock_fatal_signals ();