The improved --xattrs option is landing on the trunk.
[rsync/rsync.git] / sender.c
index b079955..8a3a7d5 100644 (file)
--- a/sender.c
+++ b/sender.c
@@ -3,12 +3,11 @@
  *
  * Copyright (C) 1996 Andrew Tridgell
  * Copyright (C) 1996 Paul Mackerras
- * Copyright (C) 2003, 2004, 2005, 2006 Wayne Davison
+ * Copyright (C) 2003-2007 Wayne Davison
  *
  * This program 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 2 of the License, or
- * (at your option) any later version.
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 #include "rsync.h"
 
 extern int verbose;
+extern int dry_run;
 extern int do_xfers;
 extern int am_server;
 extern int am_daemon;
-extern int incremental;
+extern int inc_recurse;
 extern int log_before_transfer;
 extern int stdout_format_has_i;
 extern int logfile_format_has_i;
@@ -34,6 +34,7 @@ extern int csum_length;
 extern int append_mode;
 extern int io_error;
 extern int allowed_lull;
+extern int preserve_xattrs;
 extern int protocol_version;
 extern int remove_source_files;
 extern int updating_basis_file;
@@ -44,7 +45,6 @@ extern int batch_fd;
 extern int write_batch;
 extern struct stats stats;
 extern struct file_list *cur_flist, *first_flist;
-extern char *stdout_format;
 
 /**
  * @file
@@ -146,8 +146,9 @@ void successful_send(int ndx)
                rsyserr(FERROR, errno, "sender failed to remove %s", fname);
 }
 
-void write_ndx_and_attrs(int f_out, int ndx, int iflags,
-                        uchar fnamecmp_type, char *buf, int len)
+static void write_ndx_and_attrs(int f_out, int ndx, int iflags,
+                               const char *fname, struct file_struct *file,
+                               uchar fnamecmp_type, char *buf, int len)
 {
        write_ndx(f_out, ndx);
        if (protocol_version < 29)
@@ -157,6 +158,10 @@ void write_ndx_and_attrs(int f_out, int ndx, int iflags,
                write_byte(f_out, fnamecmp_type);
        if (iflags & ITEM_XNAME_FOLLOWS)
                write_vstring(f_out, buf, len);
+#ifdef SUPPORT_XATTRS
+       if (preserve_xattrs && iflags & ITEM_REPORT_XATTR && !dry_run)
+               send_xattr_request(fname, file, f_out);
+#endif
 }
 
 void send_files(int f_in, int f_out)
@@ -181,14 +186,14 @@ void send_files(int f_in, int f_out)
                rprintf(FINFO, "send_files starting\n");
 
        while (1) {
-               if (incremental)
-                       send_extra_file_list(f_out, 1000);
+               if (inc_recurse)
+                       send_extra_file_list(f_out, FILECNT_LOOKAHEAD);
 
                /* This call also sets cur_flist. */
-               ndx = read_ndx_and_attrs(f_in, f_out, &iflags,
-                                        &fnamecmp_type, xname, &xlen);
+               ndx = read_ndx_and_attrs(f_in, &iflags, &fnamecmp_type,
+                                        xname, &xlen);
                if (ndx == NDX_DONE) {
-                       if (incremental && first_flist) {
+                       if (inc_recurse && first_flist) {
                                flist_free(first_flist);
                                if (first_flist) {
                                        write_ndx(f_out, NDX_DONE);
@@ -203,6 +208,9 @@ void send_files(int f_in, int f_out)
                        continue;
                }
 
+               if (inc_recurse)
+                       send_extra_file_list(f_out, FILECNT_LOOKAHEAD);
+
                file = cur_flist->files[ndx - cur_flist->ndx_start];
                if (F_ROOTDIR(file)) {
                        path = F_ROOTDIR(file);
@@ -217,8 +225,15 @@ void send_files(int f_in, int f_out)
                if (verbose > 2)
                        rprintf(FINFO, "send_files(%d, %s%s%s)\n", ndx, path,slash,fname);
 
+#ifdef SUPPORT_XATTRS
+               if (preserve_xattrs && iflags & ITEM_REPORT_XATTR)
+                       recv_xattr_request(file, f_in);
+#endif
+
                if (!(iflags & ITEM_TRANSFER)) {
                        maybe_log_item(file, iflags, itemizing, xname);
+                       write_ndx_and_attrs(f_out, ndx, iflags, fname, file,
+                                           fnamecmp_type, xname, xlen);
                        continue;
                }
                if (phase == 2) {
@@ -253,8 +268,8 @@ void send_files(int f_in, int f_out)
 
                if (!do_xfers) { /* log the transfer */
                        log_item(FCLIENT, file, &stats, iflags, NULL);
-                       write_ndx_and_attrs(f_out, ndx, iflags, fnamecmp_type,
-                                           xname, xlen);
+                       write_ndx_and_attrs(f_out, ndx, iflags, fname, file,
+                                           fnamecmp_type, xname, xlen);
                        continue;
                }
 
@@ -307,8 +322,8 @@ void send_files(int f_in, int f_out)
                                path,slash,fname, (double)st.st_size);
                }
 
-               write_ndx_and_attrs(f_out, ndx, iflags, fnamecmp_type,
-                                   xname, xlen);
+               write_ndx_and_attrs(f_out, ndx, iflags, fname, file,
+                                   fnamecmp_type, xname, xlen);
                write_sum_head(f_xfer, s);
 
                if (verbose > 2)