X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/e844be4e7bfb2c0d9ea583cb4d507217f14ffa4d..32cbfe7b17ba8ec661fc27fd773909709d100e8a:/sender.c diff --git a/sender.c b/sender.c index e1bee367..b745f6f7 100644 --- a/sender.c +++ b/sender.c @@ -20,21 +20,22 @@ #include "rsync.h" extern int verbose; -extern int log_before_transfer; -extern int itemize_changes; -extern int csum_length; -extern struct stats stats; -extern int io_error; extern int dry_run; extern int am_server; extern int am_daemon; +extern int log_before_transfer; +extern int log_format_has_i; +extern int daemon_log_format_has_i; +extern int csum_length; +extern int io_error; extern int protocol_version; +extern int remove_sent_files; extern int updating_basis_file; extern int make_backups; extern int do_progress; extern int inplace; -extern char *log_format; extern struct stats stats; +extern char *log_format; /** @@ -98,7 +99,32 @@ static struct sum_struct *receive_sums(int f) return s; } +static struct file_list *the_flist; +void successful_send(int i) +{ + char fname[MAXPATHLEN]; + struct file_struct *file; + unsigned int offset; + + if (!the_flist || i < 0 || i >= the_flist->count) + return; + + file = the_flist->files[i]; + /* The generator might tell us about symlinks we didn't send. */ + if (!(file->flags & FLAG_SENT) && !S_ISLNK(file->mode)) + return; + if (file->dir.root) { + offset = stringjoin(fname, sizeof fname, + file->dir.root, "/", NULL); + } else + offset = 0; + f_name_to(file, fname + offset); + if (remove_sent_files && do_unlink(fname) == 0 && verbose > 1) { + rprintf(FINFO, "sender removed %s\n", + safe_fname(fname + offset)); + } +} void send_files(struct file_list *flist, int f_out, int f_in) { @@ -112,11 +138,15 @@ void send_files(struct file_list *flist, int f_out, int f_in) int phase = 0; struct stats initial_stats; int save_make_backups = make_backups; + int itemizing = am_daemon ? daemon_log_format_has_i + : !am_server && log_format_has_i; int i, j; if (verbose > 2) rprintf(FINFO, "send_files starting\n"); + the_flist = flist; + while (1) { unsigned int offset; @@ -137,21 +167,41 @@ void send_files(struct file_list *flist, int f_out, int f_in) } if (i < 0 || i >= flist->count) { + /* Handle the new keep-alive (no-op) packet. */ + if (i == flist->count && protocol_version >= 29 + && read_shortint(f_in) == ITEM_IS_NEW) { + write_int(f_out, i); + write_shortint(f_out, ITEM_IS_NEW); + continue; + } rprintf(FERROR, "Invalid file index %d (count=%d)\n", i, flist->count); exit_cleanup(RERR_PROTOCOL); } file = flist->files[i]; + if (file->dir.root) { + /* N.B. We're sure that this fits, so offset is OK. */ + offset = strlcpy(fname, file->dir.root, sizeof fname); + if (!offset || fname[offset-1] != '/') + fname[offset++] = '/'; + } else + offset = 0; + fname2 = f_name_to(file, fname + offset); + + if (verbose > 2) + rprintf(FINFO, "send_files(%d, %s)\n", i, fname); if (protocol_version >= 29) { - iflags = read_short(f_in); + iflags = read_shortint(f_in); if (!(iflags & ITEM_UPDATING) || !S_ISREG(file->mode)) { + int see_item = itemizing && (iflags || verbose > 1); + write_int(f_out, i); + write_shortint(f_out, iflags); if (am_server) { - write_int(f_out, i); - write_short(f_out, iflags); - } else if (itemize_changes - || iflags & ITEM_UPDATING + if (am_daemon && !dry_run && see_item) + log_send(file, &stats, iflags); + } else if (see_item || iflags & ITEM_UPDATING || (S_ISDIR(file->mode) && iflags & ITEM_REPORT_TIME)) log_send(file, &stats, iflags); @@ -161,8 +211,7 @@ void send_files(struct file_list *flist, int f_out, int f_in) iflags = ITEM_UPDATING | ITEM_MISSING_DATA; if (inplace && protocol_version >= 29) { - uchar fnamecmp_type = read_byte(f_in); - updating_basis_file = fnamecmp_type == FNAMECMP_FNAME; + updating_basis_file = !(iflags & ITEM_USING_ALT_BASIS); } else updating_basis_file = inplace && !make_backups; @@ -176,24 +225,12 @@ void send_files(struct file_list *flist, int f_out, int f_in) stats.num_transferred_files++; stats.total_transferred_size += file->length; - if (file->dir.root) { - /* N.B. We're sure that this fits, so offset is OK. */ - offset = strlcpy(fname, file->dir.root, sizeof fname); - if (!offset || fname[offset-1] != '/') - fname[offset++] = '/'; - } else - offset = 0; - fname2 = f_name_to(file, fname + offset); - - if (verbose > 2) - rprintf(FINFO, "send_files(%d, %s)\n", i, fname); - if (dry_run) { /* log the transfer */ if (!am_server && log_format) log_send(file, &stats, iflags); write_int(f_out, i); if (protocol_version >= 29) - write_short(f_out, iflags); + write_shortint(f_out, iflags); continue; } @@ -246,7 +283,7 @@ void send_files(struct file_list *flist, int f_out, int f_in) write_int(f_out, i); if (protocol_version >= 29) - write_short(f_out, iflags); + write_shortint(f_out, iflags); write_sum_head(f_out, s); if (verbose > 2) { @@ -282,6 +319,9 @@ void send_files(struct file_list *flist, int f_out, int f_in) rprintf(FINFO, "sender finished %s\n", safe_fname(fname)); } + + /* Flag that we actually sent this entry. */ + file->flags |= FLAG_SENT; } make_backups = save_make_backups;