rsync.c was getting a bit unwieldy so I split the code into 3 modules,
[rsync/rsync.git] / cleanup.c
1 /* 
2    Copyright (C) Andrew Tridgell 1996
3    Copyright (C) Paul Mackerras 1996
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 2 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, write to the Free Software
17    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include "rsync.h"
21
22 /* handling the cleanup when a transfer is interrupted is tricky when
23    --partial is selected. We need to ensure that the partial file is
24    kept if any real data has been transferred */
25 int cleanup_got_literal=0;
26
27 static char *cleanup_fname;
28 static char *cleanup_new_fname;
29 static struct file_struct *cleanup_file;
30
31 void exit_cleanup(int code)
32 {
33         extern int keep_partial;
34
35         signal(SIGUSR1, SIG_IGN);
36
37         if (cleanup_got_literal && cleanup_fname && keep_partial) {
38                 char *fname = cleanup_fname;
39                 cleanup_fname = NULL;
40                 finish_transfer(cleanup_new_fname, fname, cleanup_file);
41         }
42         io_flush();
43         if (cleanup_fname)
44                 do_unlink(cleanup_fname);
45         if (code) {
46                 kill_all(SIGUSR1);
47         }
48         exit(code);
49 }
50
51 void cleanup_disable(void)
52 {
53         cleanup_fname = NULL;
54         cleanup_got_literal = 0;
55 }
56
57
58 void cleanup_set(char *fnametmp, char *fname, struct file_struct *file)
59 {
60         cleanup_fname = fnametmp;
61         cleanup_new_fname = fname;
62         cleanup_file = file;
63 }