A couple parsing improvements and a new test case added to
[rsync/rsync-patches.git] / fname-convert.diff
index 572c607..13075cc 100644 (file)
@@ -47,18 +47,18 @@ some utility functions.
 Note that you'll need to run 'make proto' after applying this patch.
 
 
---- orig/Makefile.in   2004-11-03 11:56:03
-+++ Makefile.in        2004-07-03 20:18:02
-@@ -35,7 +35,7 @@ OBJS1=rsync.o generator.o receiver.o cle
+--- orig/Makefile.in   2005-11-07 04:29:00
++++ Makefile.in        2005-11-07 04:36:50
+@@ -34,7 +34,7 @@ OBJS1=rsync.o generator.o receiver.o cle
        main.o checksum.o match.o syscall.o log.o backup.o
  OBJS2=options.o flist.o io.o compat.o hlink.o token.o uidlist.o socket.o \
-       fileio.o batch.o clientname.o
+       fileio.o batch.o clientname.o chmod.o
 -OBJS3=progress.o pipe.o
 +OBJS3=progress.o pipe.o fnameconv.o
  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     2005-02-07 20:41:56
+--- orig/cleanup.c     2005-11-10 16:58:36
 +++ cleanup.c  2005-01-10 10:40:51
 @@ -25,6 +25,7 @@ extern int io_error;
  extern int keep_partial;
@@ -77,27 +77,27 @@ Note that you'll need to run 'make proto' after applying this patch.
        if (cleanup_fname)
                do_unlink(cleanup_fname);
        if (code)
---- orig/errcode.h     2003-12-15 08:04:14
-+++ errcode.h  2004-07-02 21:38:59
-@@ -34,6 +34,7 @@
- #define RERR_STREAMIO   12      /* error in rsync protocol data stream */
- #define RERR_MESSAGEIO  13      /* errors with program diagnostics */
+--- orig/errcode.h     2005-12-16 23:48:43
++++ errcode.h  2005-09-29 17:23:35
+@@ -36,6 +36,7 @@
  #define RERR_IPC        14      /* error in IPC code */
-+#define RERR_FNAMECONV  15      /* error in filename conversion */
+ #define RERR_CRASHED    15      /* sibling crashed */
+ #define RERR_TERMINATED 16      /* sibling terminated abnormally */
++#define RERR_FNAMECONV  17      /* error in filename conversion */
  
- #define RERR_SIGNAL     20      /* status returned when sent SIGUSR1, SIGINT */
- #define RERR_WAITCHILD  21      /* some error returned by waitpid() */
---- orig/flist.c       2005-02-12 19:54:27
-+++ flist.c    2005-02-12 19:26:37
-@@ -67,6 +67,7 @@ extern int sanitize_paths;
- extern int max_delete;
+ #define RERR_SIGNAL1    19      /* status returned when sent SIGUSR1 */
+ #define RERR_SIGNAL     20      /* status returned when sent SIGINT, SIGTERM, SIGHUP */
+--- orig/flist.c       2005-11-10 16:58:36
++++ flist.c    2005-03-05 00:29:08
+@@ -57,6 +57,7 @@ extern int copy_unsafe_links;
+ extern int protocol_version;
+ extern int sanitize_paths;
  extern int orig_umask;
- extern int list_only;
 +extern char *fname_convert_cmd;
+ extern struct stats stats;
+ extern struct file_list *the_file_list;
  
- extern struct filter_list_struct filter_list;
- extern struct filter_list_struct server_filter_list;
-@@ -345,7 +346,10 @@ void send_file_entry(struct file_struct 
+@@ -336,7 +337,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;
  
-@@ -561,6 +565,9 @@ static void receive_file_entry(struct fi
+@@ -544,6 +548,9 @@ static struct file_struct *receive_file_
  
        strlcpy(lastname, thisname, MAXPATHLEN);
  
@@ -119,7 +119,7 @@ Note that you'll need to run 'make proto' after applying this patch.
        clean_fname(thisname, 0);
  
        if (sanitize_paths)
-@@ -1071,6 +1078,9 @@ struct file_list *send_file_list(int f, 
+@@ -1074,6 +1081,9 @@ struct file_list *send_file_list(int f, 
        start_write = stats.total_written;
        gettimeofday(&start_tv, NULL);
  
@@ -129,7 +129,7 @@ Note that you'll need to run 'make proto' after applying this patch.
        flist = flist_new(WITH_HLINK, "send_file_list");
  
        io_start_buffering_out();
-@@ -1249,6 +1259,9 @@ struct file_list *send_file_list(int f, 
+@@ -1286,6 +1296,9 @@ struct file_list *send_file_list(int f, 
        stats.flist_size = stats.total_written - start_write;
        stats.num_files = flist->count;
  
@@ -137,9 +137,9 @@ Note that you'll need to run 'make proto' after applying this patch.
 +              cleanup_fname_convert();
 +
        if (verbose > 3)
-               output_flist(flist, who_am_i());
+               output_flist(flist);
  
-@@ -1270,6 +1283,9 @@ struct file_list *recv_file_list(int f)
+@@ -1306,6 +1319,9 @@ struct file_list *recv_file_list(int f)
  
        start_read = stats.total_read;
  
@@ -147,9 +147,9 @@ Note that you'll need to run 'make proto' after applying this patch.
 +              init_fname_convert();
 +
        flist = flist_new(WITH_HLINK, "recv_file_list");
-       received_flist = flist;
  
-@@ -1323,6 +1339,9 @@ struct file_list *recv_file_list(int f)
+       flist->count = 0;
+@@ -1357,6 +1373,9 @@ struct file_list *recv_file_list(int f)
                        io_error |= read_int(f);
        }
  
@@ -157,7 +157,7 @@ Note that you'll need to run 'make proto' after applying this patch.
 +              cleanup_fname_convert();
 +
        if (verbose > 3)
-               output_flist(flist, who_am_i());
+               output_flist(flist);
  
 --- orig/fnameconv.c   2004-07-02 21:38:59
 +++ fnameconv.c        2004-07-02 21:38:59
@@ -233,10 +233,10 @@ Note that you'll need to run 'make proto' after applying this patch.
 +
 +/**
 + * Runs the filename converter process. Should be called before filename
-+ * conversion begins (actually it's not necessarh, but it keeps the proress report
++ * conversion begins (actually it's not necessarh, but it keeps the progress report
 + * nice and clean.
 + **/
-+void init_fname_convert()
++void init_fname_convert(void)
 +{
 +      if (fname_convert_cmd && conv_pid < 0) {
 +              char *args[MAX_ARGS];
@@ -382,10 +382,10 @@ 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   2005-02-13 05:50:28
-+++ generator.c        2005-02-03 02:07:33
-@@ -235,7 +235,13 @@ static void generate_and_send_sums(int f
-  * start sending checksums.
+--- orig/generator.c   2005-12-16 04:03:06
++++ generator.c        2005-03-05 00:29:37
+@@ -761,7 +761,13 @@ static int phase = 0;
+  * When fname is non-null, it must point to a MAXPATHLEN buffer!
   *
   * Note that f_out is set to -1 when doing final directory-permission and
 - * modification-time repair. */
@@ -396,22 +396,22 @@ Note that you'll need to run 'make proto' after applying this patch.
 + * 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_list *flist,
-                          struct file_struct *file, int ndx,
-                          int f_out, int f_out_name)
---- orig/log.c 2005-02-07 20:41:56
-+++ log.c      2004-07-03 20:18:02
-@@ -57,6 +57,7 @@ struct {
-       { RERR_STREAMIO   , "error in rsync protocol data stream" },
-       { RERR_MESSAGEIO  , "errors with program diagnostics" },
+ static void recv_generator(char *fname, struct file_struct *file, int ndx,
+                          int itemizing, int maybe_PERMS_REPORT,
+                          enum logcode code, int f_out)
+--- orig/log.c 2005-12-16 23:48:44
++++ log.c      2005-12-16 23:49:07
+@@ -68,6 +68,7 @@ struct {
        { RERR_IPC        , "error in IPC code" },
+       { RERR_CRASHED    , "sibling process crashed" },
+       { RERR_TERMINATED , "sibling process terminated abnormally" },
 +      { RERR_FNAMECONV  , "error in filename conversion" },
-       { RERR_SIGNAL     , "received SIGUSR1 or SIGINT" },
-       { RERR_WAITCHILD  , "some error returned by waitpid()" },
-       { RERR_MALLOC     , "error allocating core memory buffers" },
---- orig/main.c        2005-02-07 20:41:56
+       { RERR_SIGNAL1    , "received SIGUSR1" },
+       { RERR_SIGNAL     , "received SIGINT, SIGTERM, or SIGHUP" },
+       { RERR_WAITCHILD  , "waitpid() failed" },
+--- orig/main.c        2005-12-16 23:48:44
 +++ main.c     2004-07-22 00:31:47
-@@ -358,7 +358,7 @@ static pid_t do_cmd(char *cmd, char *mac
+@@ -414,7 +414,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
@@ -420,9 +420,9 @@ Note that you'll need to run 'make proto' after applying this patch.
  
        if (dir)
                free(dir);
---- orig/options.c     2005-02-13 05:50:28
-+++ options.c  2005-02-13 06:55:04
-@@ -128,6 +128,7 @@ char *basis_dir[MAX_BASIS_DIRS+1];
+--- orig/options.c     2005-12-16 23:48:44
++++ options.c  2005-10-26 16:49:33
+@@ -142,6 +142,7 @@ char *basis_dir[MAX_BASIS_DIRS+1];
  char *config_file = NULL;
  char *shell_cmd = NULL;
  char *log_format = NULL;
@@ -430,23 +430,23 @@ Note that you'll need to run 'make proto' after applying this patch.
  char *password_file = NULL;
  char *rsync_path = RSYNC_PATH;
  char *backup_dir = NULL;
-@@ -305,6 +306,7 @@ void usage(enum logcode F)
+@@ -330,6 +331,7 @@ void usage(enum logcode F)
    rprintf(F,"     --compare-dest=DIR      also compare destination files relative to DIR\n");
    rprintf(F,"     --copy-dest=DIR         ... and include copies of unchanged files\n");
    rprintf(F,"     --link-dest=DIR         hardlink to files in DIR when unchanged\n");
 +  rprintf(F,"     --fname-convert=CMD     invoke CMD for filename conversion\n");
    rprintf(F," -z, --compress              compress file data during the transfer\n");
+   rprintf(F,"     --compress-level=NUM    explicitly set compression level\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");
-@@ -411,6 +413,7 @@ static struct poptOption long_options[] 
-   {"compare-dest",     0,  POPT_ARG_STRING, 0, OPT_COMPARE_DEST, 0, 0 },
+@@ -464,6 +466,7 @@ static struct poptOption long_options[] 
    {"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        2005-02-07 20:41:56
+   {"compress",        'z', POPT_ARG_NONE,   0, 'z', 0, 0 },
+   {"compress-level",   0,  POPT_ARG_INT,    &def_compress_level, 'z', 0, 0 },
+   {0,                 'P', POPT_ARG_NONE,   0, 'P', 0, 0 },
+--- orig/pipe.c        2005-10-24 21:04:45
 +++ pipe.c     2004-07-03 20:18:02
 @@ -23,7 +23,6 @@
  
@@ -454,9 +454,9 @@ Note that you'll need to run 'make proto' after applying this patch.
  extern int am_server;
 -extern int blocking_io;
  extern int orig_umask;
- extern int write_batch;
  extern int filesfrom_fd;
-@@ -40,8 +39,10 @@ extern int filesfrom_fd;
+@@ -39,8 +38,10 @@ extern int filesfrom_fd;
   * If blocking_io is set then use blocking io on both fds. That can be
   * used to cope with badly broken rsh implementations like the one on
   * Solaris.
@@ -468,7 +468,7 @@ Note that you'll need to run 'make proto' after applying this patch.
  {
        pid_t pid;
        int to_child_pipe[2];
-@@ -56,7 +57,7 @@ pid_t piped_child(char **command, int *f
+@@ -55,7 +56,7 @@ pid_t piped_child(char **command, int *f
                exit_cleanup(RERR_IPC);
        }
  
@@ -477,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     2005-01-28 23:01:10
+--- orig/syscall.c     2005-09-15 18:09:15
 +++ syscall.c  2004-07-02 21:39:00
-@@ -259,3 +259,34 @@ char *d_name(struct dirent *di)
+@@ -274,3 +274,34 @@ char *d_name(struct dirent *di)
        return di->d_name;
  #endif
  }
@@ -514,11 +514,11 @@ Note that you'll need to run 'make proto' after applying this patch.
 +
 +      return result;
 +}
---- orig/util.c        2005-02-11 10:53:15
+--- orig/util.c        2005-11-12 20:13:05
 +++ util.c     2004-07-03 20:18:02
-@@ -1224,3 +1224,55 @@ void *_realloc_array(void *ptr, unsigned
-               return malloc(size * num);
-       return realloc(ptr, size * num);
+@@ -1411,3 +1411,55 @@ uint32 fuzzy_distance(const char *s1, in
+       return a[len2-1];
  }
 +
 +/**