Updated to apply cleanly.
[rsync/rsync-patches.git] / fname-convert.diff
index a35ea00..eac4927 100644 (file)
@@ -58,18 +58,18 @@ Note that you'll need to run 'make proto' after applying this patch.
  DAEMON_OBJ = params.o loadparm.o clientserver.o access.o connection.o authenticate.o
  popt_OBJS=popt/findme.o  popt/popt.o  popt/poptconfig.o \
        popt/popthelp.o popt/poptparse.o
---- orig/cleanup.c     2004-10-14 17:11:40
-+++ cleanup.c  2004-07-03 20:18:02
-@@ -24,6 +24,7 @@
- extern int io_error;
+--- orig/cleanup.c     2005-02-07 20:41:56
++++ cleanup.c  2005-01-10 10:40:51
+@@ -25,6 +25,7 @@ extern int io_error;
  extern int keep_partial;
  extern int log_got_error;
+ extern char *partial_dir;
 +extern char *fname_convert_cmd;
  
  /**
   * Close all open sockets and files, allowing a (somewhat) graceful
-@@ -124,6 +125,8 @@ void _exit_cleanup(int code, const char 
-               finish_transfer(cleanup_new_fname, fname, cleanup_file, 0);
+@@ -125,6 +126,8 @@ void _exit_cleanup(int code, const char 
+                               !partial_dir);
        }
        io_flush(FULL_FLUSH);
 +      if (fname_convert_cmd)
@@ -87,17 +87,17 @@ Note that you'll need to run 'make proto' after applying this patch.
  
  #define RERR_SIGNAL     20      /* status returned when sent SIGUSR1, SIGINT */
  #define RERR_WAITCHILD  21      /* some error returned by waitpid() */
---- orig/flist.c       2004-09-21 09:40:27
-+++ flist.c    2004-08-12 18:35:53
-@@ -44,6 +44,7 @@ extern int cvs_exclude;
+--- orig/flist.c       2005-02-26 19:27:54
++++ flist.c    2005-02-26 19:32:53
+@@ -59,6 +59,7 @@ extern int copy_unsafe_links;
+ extern int protocol_version;
+ extern int sanitize_paths;
+ extern int orig_umask;
++extern char *fname_convert_cmd;
  
- extern int recurse;
  extern char curr_dir[MAXPATHLEN];
-+extern char *fname_convert_cmd;
- extern char *files_from;
- extern int filesfrom_fd;
  
-@@ -359,7 +360,10 @@ void send_file_entry(struct file_struct 
+@@ -338,7 +339,10 @@ void send_file_entry(struct file_struct 
  
        io_write_phase = "send_file_entry";
  
@@ -109,7 +109,7 @@ Note that you'll need to run 'make proto' after applying this patch.
  
        flags = base_flags;
  
-@@ -572,6 +576,9 @@ void receive_file_entry(struct file_stru
+@@ -554,6 +558,9 @@ static struct file_struct *receive_file_
  
        strlcpy(lastname, thisname, MAXPATHLEN);
  
@@ -119,19 +119,19 @@ Note that you'll need to run 'make proto' after applying this patch.
        clean_fname(thisname, 0);
  
        if (sanitize_paths)
-@@ -1079,6 +1086,9 @@ struct file_list *send_file_list(int f, 
+@@ -1071,6 +1078,9 @@ struct file_list *send_file_list(int f, 
        start_write = stats.total_written;
+       gettimeofday(&start_tv, NULL);
  
 +      if (!am_server)
 +              init_fname_convert();
 +
-       flist = flist_new(f == -1 ? WITHOUT_HLINK : WITH_HLINK,
-           "send_file_list");
+       flist = flist_new(WITH_HLINK, "send_file_list");
  
-@@ -1251,6 +1261,9 @@ struct file_list *send_file_list(int f, 
-               stats.num_files = flist->count;
-       }
+       io_start_buffering_out();
+@@ -1253,6 +1263,9 @@ struct file_list *send_file_list(int f, 
+       stats.flist_size = stats.total_written - start_write;
+       stats.num_files = flist->count;
  
 +      if (fname_convert_cmd && !am_server)
 +              cleanup_fname_convert();
@@ -139,7 +139,7 @@ Note that you'll need to run 'make proto' after applying this patch.
        if (verbose > 3)
                output_flist(flist);
  
-@@ -1272,6 +1285,9 @@ struct file_list *recv_file_list(int f)
+@@ -1274,6 +1287,9 @@ struct file_list *recv_file_list(int f)
  
        start_read = stats.total_read;
  
@@ -149,7 +149,7 @@ Note that you'll need to run 'make proto' after applying this patch.
        flist = flist_new(WITH_HLINK, "recv_file_list");
        received_flist = flist;
  
-@@ -1325,6 +1341,9 @@ struct file_list *recv_file_list(int f)
+@@ -1327,6 +1343,9 @@ struct file_list *recv_file_list(int f)
                        io_error |= read_int(f);
        }
  
@@ -382,24 +382,26 @@ Note that you'll need to run 'make proto' after applying this patch.
 +      if (verbose > 2)
 +              rprintf(FINFO, "Converted filename: %s -> %s\n", src, dest);
 +}
---- orig/generator.c   2004-11-27 17:53:24
-+++ generator.c        2004-07-03 20:18:02
-@@ -255,6 +255,12 @@ static void generate_and_send_sums(int f
+--- orig/generator.c   2005-02-27 18:24:42
++++ generator.c        2005-02-03 02:07:33
+@@ -554,7 +554,13 @@ static int find_fuzzy(struct file_struct
+  * start sending checksums.
   *
-  * @note This comment was added later by mbp who was trying to work it
-  * out.  It might be wrong.
+  * Note that f_out is set to -1 when doing final directory-permission and
+- * modification-time repair. */
++ * modification-time repair.
 + *
 + * TODO: The filename seen in recv_generator is after filename
 + * conversion.  In verbose mode, directories, symlinks and device
 + * files are printf()ed here but regular files are rprintf()ed on the
 + * sender (unconverted). To solve the above, move all progress
-+ * reporting to the sender.
-  */
static void recv_generator(char *fname, struct file_struct *file, int i,
-                          int f_out, int f_out_name)
---- orig/log.c 2004-09-07 19:54:51
++ * reporting to the sender. */
+ static void recv_generator(char *fname, struct file_list *flist,
                         struct file_struct *file, int ndx,
+                          int itemizing, int maybe_PERMS_REPORT,
+--- orig/log.c 2005-02-26 05:22:50
 +++ log.c      2004-07-03 20:18:02
-@@ -57,6 +57,7 @@ struct {
+@@ -63,6 +63,7 @@ struct {
        { RERR_STREAMIO   , "error in rsync protocol data stream" },
        { RERR_MESSAGEIO  , "errors with program diagnostics" },
        { RERR_IPC        , "error in IPC code" },
@@ -407,9 +409,9 @@ Note that you'll need to run 'make proto' after applying this patch.
        { RERR_SIGNAL     , "received SIGUSR1 or SIGINT" },
        { RERR_WAITCHILD  , "some error returned by waitpid()" },
        { RERR_MALLOC     , "error allocating core memory buffers" },
---- orig/main.c        2004-11-27 17:53:24
+--- orig/main.c        2005-03-01 03:39:47
 +++ main.c     2004-07-22 00:31:47
-@@ -333,7 +333,7 @@ static pid_t do_cmd(char *cmd, char *mac
+@@ -362,7 +362,7 @@ static pid_t do_cmd(char *cmd, char *mac
                        whole_file = 1;
                ret = local_child(argc, args, f_in, f_out, child_main);
        } else
@@ -418,33 +420,33 @@ Note that you'll need to run 'make proto' after applying this patch.
  
        if (dir)
                free(dir);
---- orig/options.c     2004-11-27 18:27:35
-+++ options.c  2004-11-27 18:09:09
-@@ -132,6 +132,7 @@ char backup_dir_buf[MAXPATHLEN];
int rsync_port = 0;
int copy_dest = 0;
int link_dest = 0;
+--- orig/options.c     2005-03-01 05:49:24
++++ options.c  2005-02-14 02:50:32
+@@ -137,6 +137,7 @@ char *basis_dir[MAX_BASIS_DIRS+1];
char *config_file = NULL;
char *shell_cmd = NULL;
char *log_format = NULL;
 +char *fname_convert_cmd = NULL;
- int verbose = 0;
- int quiet = 0;
-@@ -289,6 +290,7 @@ void usage(enum logcode F)
-   rprintf(F,"     --copy-dest=DIR         ... and include copies of unchanged files\n");
+ char *password_file = NULL;
+ char *rsync_path = RSYNC_PATH;
+ char *backup_dir = NULL;
+@@ -318,6 +319,7 @@ void usage(enum logcode F)
+   rprintf(F," -y, --fuzzy                 find similar file for basis if no dest file\n");
+   rprintf(F,"     --compare-dest=DIR      also compare destination files relative to DIR\n");
    rprintf(F,"     --link-dest=DIR         hardlink to files in DIR when unchanged\n");
-   rprintf(F," -P                          equivalent to --partial --progress\n");
 +  rprintf(F,"     --fname-convert=CMD     invoke CMD for filename conversion\n");
-   rprintf(F," -z, --compress              compress file data\n");
-   rprintf(F," -C, --cvs-exclude           auto ignore files in the same way CVS does\n");
-   rprintf(F,"     --exclude=PATTERN       exclude files matching PATTERN\n");
-@@ -383,6 +385,7 @@ static struct poptOption long_options[] 
+   rprintf(F," -z, --compress              compress file data during the transfer\n");
+   rprintf(F," -C, --cvs-exclude           auto-ignore files the same way CVS does\n");
+   rprintf(F," -f, --filter=RULE           add a file-filtering RULE\n");
+@@ -426,6 +428,7 @@ static struct poptOption long_options[] 
    {"compare-dest",     0,  POPT_ARG_STRING, 0, OPT_COMPARE_DEST, 0, 0 },
-   {"copy-dest",        0,  POPT_ARG_STRING, 0, OPT_COPY_DEST, 0, 0 },
    {"link-dest",        0,  POPT_ARG_STRING, 0, OPT_LINK_DEST, 0, 0 },
+   {"fuzzy",           'y', POPT_ARG_NONE,   &fuzzy_basis, 0, 0, 0 },
 +  {"fname-convert",    0,  POPT_ARG_STRING, &fname_convert_cmd, 0, 0, 0 },
    /* TODO: Should this take an optional int giving the compression level? */
    {"compress",        'z', POPT_ARG_NONE,   &do_compression, 0, 0, 0 },
    {"stats",            0,  POPT_ARG_NONE,   &do_stats, 0, 0, 0 },
---- orig/pipe.c        2004-08-12 18:34:38
+--- orig/pipe.c        2005-02-07 20:41:56
 +++ pipe.c     2004-07-03 20:18:02
 @@ -23,7 +23,6 @@
  
@@ -475,9 +477,9 @@ Note that you'll need to run 'make proto' after applying this patch.
        if (pid == -1) {
                rsyserr(FERROR, errno, "fork");
                exit_cleanup(RERR_IPC);
---- orig/syscall.c     2004-10-06 00:12:16
+--- orig/syscall.c     2005-02-14 02:45:11
 +++ syscall.c  2004-07-02 21:39:00
-@@ -265,3 +265,34 @@ char *d_name(struct dirent *di)
+@@ -259,3 +259,34 @@ char *d_name(struct dirent *di)
        return di->d_name;
  #endif
  }
@@ -512,11 +514,11 @@ Note that you'll need to run 'make proto' after applying this patch.
 +
 +      return result;
 +}
---- orig/util.c        2004-09-07 21:45:30
+--- orig/util.c        2005-02-23 02:57:27
 +++ util.c     2004-07-03 20:18:02
-@@ -1217,3 +1217,55 @@ void *_realloc_array(void *ptr, unsigned
-               return malloc(size * num);
-       return realloc(ptr, size * num);
+@@ -1327,3 +1327,55 @@ uint32 fuzzy_distance(const char *s1, in
+       return a[len2-1];
  }
 +
 +/**