1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
/*
* fitscleanup.c
*
* Signal-catching routines to clean-up temporary files.
*
*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*
* This file part of: AstrOmatic FITS/LDAC library
*
* Copyright: (C) 1995-2010 Emmanuel Bertin -- IAP/CNRS/UPMC
*
* License: GNU General Public License
*
* AstrOmatic software is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
* AstrOmatic software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with AstrOmatic software.
* If not, see <http://www.gnu.org/licenses/>.
*
* Last modified: 09/10/2010
*
*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "fitscat_defs.h"
#include "fitscat.h"
#define CLEANUP_NFILES 64
void (*exit_func)(void);
char **cleanup_filename;
int cleanup_nfiles;
/****** cleanup_files ********************************************************
PROTO void cleanup_files(void)
PURPOSE Remove temporary files on exit.
INPUT -.
OUTPUT -.
NOTES -.
AUTHOR E. Bertin (IAP)
VERSION 25/04/2002
***/
void cleanup_files(void)
{
char **filename;
int i;
filename = cleanup_filename;
for (i=cleanup_nfiles; i--;)
{
remove(*filename);
free(*(filename++));
}
if (cleanup_nfiles)
{
free(cleanup_filename);
cleanup_nfiles = 0;
}
return;
}
/****** add_cleanupfilename **************************************************
PROTO void add_cleanupfilename(char *filename)
PURPOSE Add a file name to the list of files to be cleaned up at exit.
INPUT pointer to filename char string.
OUTPUT -.
NOTES -.
AUTHOR E. Bertin (IAP)
VERSION 10/01/2003
***/
void add_cleanupfilename(char *filename)
{
if (!cleanup_nfiles)
{
QMALLOC(cleanup_filename, char *, CLEANUP_NFILES);
}
else if (!(cleanup_nfiles%CLEANUP_NFILES))
{
QREALLOC(cleanup_filename, char *, cleanup_nfiles+CLEANUP_NFILES);
}
QMALLOC(cleanup_filename[cleanup_nfiles], char, MAXCHARS);
strcpy(cleanup_filename[cleanup_nfiles++], filename);
return;
}
/****** remove_cleanupfilename ***********************************************
PROTO void remove_cleanupfilename(char *filename)
PURPOSE remove a file name from the list of files to be cleaned up at exit.
INPUT pointer to filename char string.
OUTPUT -.
NOTES -.
AUTHOR E. Bertin (IAP)
VERSION 16/07/2007
***/
void remove_cleanupfilename(char *filename)
{
char **filename2, **filename3;
int i, j;
if (!cleanup_nfiles)
return;
/* Search the cleanup filename list for a match */
filename2 = cleanup_filename;
for (i=cleanup_nfiles; i--;)
if (!strcmp(filename, *(filename2++)))
{
/* Match found: update the list and free memory is necessary*/
filename3 = filename2 - 1;
free(*filename3);
for (j=i; j--;)
*(filename3++) = *(filename2++);
if (!((--cleanup_nfiles)%CLEANUP_NFILES))
{
if (cleanup_nfiles)
{
QREALLOC(cleanup_filename, char *, cleanup_nfiles);
}
else
free(cleanup_filename);
}
break;
}
return;
}
/****** install_cleanup ******************************************************
PROTO void install_cleanup(void (*func)(void))
PURPOSE Install the signal-catching and exit routines to start cleanup_files().
INPUT A pointer to a function to be executed on exit.
OUTPUT -.
NOTES Catches everything except STOP and KILL signals.
AUTHOR E. Bertin (IAP)
VERSION 25/04/2002
***/
void install_cleanup(void (*func)(void))
{
void signal_function(int signum);
exit_func = func;
atexit(cleanup_files);
/* Catch CTRL-Cs */
signal(SIGINT, signal_function);
/* Catch bus errors */
#ifdef SIGBUS // TODO: what if it is an enum?
signal(SIGBUS, signal_function);
#endif
/* Catch segmentation faults */
signal(SIGSEGV, signal_function);
/* Catch floating exceptions */
signal(SIGFPE, signal_function);
return;
}
/****** signal_function ******************************************************
PROTO void signal_function(void)
PURPOSE The routine called when a signal is catched. Clean up temporary files
and execute a user-provided function.
INPUT signal number.
OUTPUT -.
NOTES .
AUTHOR E. Bertin (IAP)
VERSION 25/04/2002
***/
void signal_function(int signum)
{
cleanup_files();
if (exit_func)
exit_func();
switch(signum)
{
case SIGINT:
fprintf(stderr, "^C\n");
exit(-1);
#ifdef SIGBUS
case SIGBUS:
fprintf(stderr, "bus error\n");
exit(-1);
#endif
case SIGSEGV:
fprintf(stderr, "segmentation fault\n");
exit(-1);
case SIGFPE:
fprintf(stderr, "floating exception\n");
exit(-1);
default:
exit(-1);
}
return;
}
|