clean-temp: Clarify what it does.
[gnulib.git] / lib / clean-temp.h
1 /* Temporary directories and temporary files with automatic cleanup.
2    Copyright (C) 2006, 2011 Free Software Foundation, Inc.
3    Written by Bruno Haible <bruno@clisp.org>, 2006.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 #ifndef _CLEAN_TEMP_H
19 #define _CLEAN_TEMP_H
20
21 #include <stdbool.h>
22 #include <stdio.h>
23 #include <sys/types.h>
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29
30 /* Temporary directories and temporary files should be automatically removed
31    when the program exits either normally or through a fatal signal.  We can't
32    rely on the "unlink before close" idiom, because it works only on Unix and
33    also - if no signal blocking is used - leaves a time window where a fatal
34    signal would not clean up the temporary file.
35
36    Also, open file descriptors need to be closed before the temporary files
37    and the temporary directories can be removed, because only on Unix
38    (excluding Cygwin) can one remove directories containing open files.
39
40    This module provides support for temporary directories and temporary files
41    inside these temporary directories.  Temporary files without temporary
42    directories are not supported here.  The temporary directories and files
43    are automatically cleaned up (at the latest) when the program exits or
44    dies from a fatal signal such as SIGINT, SIGTERM, SIGHUP, but not if it
45    dies from a fatal signal such as SIGQUIT, SIGKILL, or SIGABRT, SIGSEGV,
46    SIGBUS, SIGILL, SIGFPE,  */
47
48 struct temp_dir
49 {
50   /* The absolute pathname of the directory.  */
51   const char * const dir_name;
52   /* Whether errors during explicit cleanup are reported to standard error.  */
53   bool cleanup_verbose;
54   /* More fields are present here, but not public.  */
55 };
56
57 /* Create a temporary directory.
58    PREFIX is used as a prefix for the name of the temporary directory. It
59    should be short and still give an indication about the program.
60    PARENTDIR can be used to specify the parent directory; if NULL, a default
61    parent directory is used (either $TMPDIR or /tmp or similar).
62    CLEANUP_VERBOSE determines whether errors during explicit cleanup are
63    reported to standard error.
64    Return a fresh 'struct temp_dir' on success.  Upon error, an error message
65    is shown and NULL is returned.  */
66 extern struct temp_dir * create_temp_dir (const char *prefix,
67                                           const char *parentdir,
68                                           bool cleanup_verbose);
69
70 /* Register the given ABSOLUTE_FILE_NAME as being a file inside DIR, that
71    needs to be removed before DIR can be removed.
72    Should be called before the file ABSOLUTE_FILE_NAME is created.  */
73 extern void register_temp_file (struct temp_dir *dir,
74                                 const char *absolute_file_name);
75
76 /* Unregister the given ABSOLUTE_FILE_NAME as being a file inside DIR, that
77    needs to be removed before DIR can be removed.
78    Should be called when the file ABSOLUTE_FILE_NAME could not be created.  */
79 extern void unregister_temp_file (struct temp_dir *dir,
80                                   const char *absolute_file_name);
81
82 /* Register the given ABSOLUTE_DIR_NAME as being a subdirectory inside DIR,
83    that needs to be removed before DIR can be removed.
84    Should be called before the subdirectory ABSOLUTE_DIR_NAME is created.  */
85 extern void register_temp_subdir (struct temp_dir *dir,
86                                   const char *absolute_dir_name);
87
88 /* Unregister the given ABSOLUTE_DIR_NAME as being a subdirectory inside DIR,
89    that needs to be removed before DIR can be removed.
90    Should be called when the subdirectory ABSOLUTE_DIR_NAME could not be
91    created.  */
92 extern void unregister_temp_subdir (struct temp_dir *dir,
93                                     const char *absolute_dir_name);
94
95 /* Remove the given ABSOLUTE_FILE_NAME and unregister it.
96    Return 0 upon success, or -1 if there was some problem.  */
97 extern int cleanup_temp_file (struct temp_dir *dir,
98                               const char *absolute_file_name);
99
100 /* Remove the given ABSOLUTE_DIR_NAME and unregister it.
101    Return 0 upon success, or -1 if there was some problem.  */
102 extern int cleanup_temp_subdir (struct temp_dir *dir,
103                                 const char *absolute_dir_name);
104
105 /* Remove all registered files and subdirectories inside DIR.
106    Return 0 upon success, or -1 if there was some problem.  */
107 extern int cleanup_temp_dir_contents (struct temp_dir *dir);
108
109 /* Remove all registered files and subdirectories inside DIR and DIR itself.
110    DIR cannot be used any more after this call.
111    Return 0 upon success, or -1 if there was some problem.  */
112 extern int cleanup_temp_dir (struct temp_dir *dir);
113
114 /* Open a temporary file in a temporary directory.
115    Registers the resulting file descriptor to be closed.  */
116 extern int open_temp (const char *file_name, int flags, mode_t mode);
117 extern FILE * fopen_temp (const char *file_name, const char *mode);
118
119 /* Close a temporary file in a temporary directory.
120    Unregisters the previously registered file descriptor.  */
121 extern int close_temp (int fd);
122 extern int fclose_temp (FILE *fp);
123
124 /* Like fwriteerror.
125    Unregisters the previously registered file descriptor.  */
126 extern int fwriteerror_temp (FILE *fp);
127
128 /* Like close_stream.
129    Unregisters the previously registered file descriptor.  */
130 extern int close_stream_temp (FILE *fp);
131
132
133 #ifdef __cplusplus
134 }
135 #endif
136
137 #endif /* _CLEAN_TEMP_H */