Fixed skipping of unneeded updates in a batch file when
authorWayne Davison <wayned@samba.org>
Wed, 24 Sep 2008 02:27:14 +0000 (19:27 -0700)
committerWayne Davison <wayned@samba.org>
Wed, 24 Sep 2008 02:31:14 +0000 (19:31 -0700)
incremental recursion is active.  Added test.

generator.c
receiver.c
testsuite/batch-mode.test

index 8557740..4bc3f67 100644 (file)
@@ -2285,6 +2285,9 @@ void generate_files(int f_out, const char *local_name)
                }
        } while ((cur_flist = cur_flist->next) != NULL);
 
+       if (read_batch)
+               write_ndx(f_out, NDX_DONE);
+
        if (delete_during)
                delete_in_dir(NULL, NULL, &dev_zero);
        phase++;
index 3afc40f..72972b0 100644 (file)
@@ -351,6 +351,8 @@ static void handle_delayed_updates(char *local_name)
 
 static int get_next_gen_ndx(int fd, int next_gen_ndx, int desired_ndx)
 {
+       static int batch_eof = 0;
+
        while (next_gen_ndx < desired_ndx) {
                if (next_gen_ndx >= 0) {
                        struct file_struct *file = cur_flist->files[next_gen_ndx];
@@ -359,14 +361,16 @@ static int get_next_gen_ndx(int fd, int next_gen_ndx, int desired_ndx)
                                file->flags & FLAG_FILE_SENT ? " resend of" : "",
                                f_name(file, NULL));
                }
-               next_gen_ndx = read_int(fd);
+               next_gen_ndx = batch_eof ? -1 : read_int(fd);
                if (next_gen_ndx == -1) {
                        if (inc_recurse)
                                next_gen_ndx = first_flist->prev->used + first_flist->prev->ndx_start;
                        else
                                next_gen_ndx = cur_flist->used;
+                       batch_eof = 1;
                }
        }
+
        return next_gen_ndx;
 }
 
@@ -520,8 +524,6 @@ int recv_files(int f_in, char *local_name)
                                        "(Skipping batched update for \"%s\")\n",
                                        fname);
                                discard_receive_data(f_in, F_LENGTH(file));
-                               if (inc_recurse)
-                                       send_msg_int(MSG_NO_SEND, ndx);
                                continue;
                        }
                        next_gen_ndx = -1;
index 6b32ca5..7f92e48 100644 (file)
@@ -41,6 +41,8 @@ runtest "--read-batch from daemon" 'checkit "$RSYNC -av --read-batch=BATCH \"$to
 rm -rf "$todir"
 runtest "BATCH.sh use of --read-batch" 'checkit "./BATCH.sh" "$chkdir" "$todir"'
 
+runtest "do-nothing re-run of batch" 'checkit "./BATCH.sh" "$chkdir" "$todir"'
+
 rm -rf "$todir"
 mkdir "$todir" || test_fail "failed to restore empty destination directory"
 runtest "daemon recv --write-batch" 'checkit "\"$ignore23\" $RSYNC -av --write-batch=BATCH \"$fromdir/\" rsync://localhost/test-to" "$chkdir" "$todir"'