Set LC_COLLATE=C explicitly in the environment.
[rsync/rsync-patches.git] / verify-patches
1 #!/usr/bin/perl
2
3 use strict;
4 use Getopt::Long;
5
6 my @generated_files = qw( proto.h configure config.h.in rsync.1 rsyncd.conf.5 );
7
8 my($no_cvs, $failures_only, $minor_updates, $prepare_source);
9 my @auto_cmds;
10
11 &Getopt::Long::Configure('bundling');
12 GetOptions(
13     'no-cvs|n' => \$no_cvs,
14     'failures-only|f' => \$failures_only,
15     'minor-updates|u' => \$minor_updates,
16     'prepare-source|p' => \$prepare_source,
17     'auto-cmd|a=s' => sub { push(@auto_cmds, $_[1]) },
18 ) or &usage;
19
20 $" = '|';
21 my $auto_regex = @auto_cmds ? qr/^(@auto_cmds)$/i : qr/^never$/;
22 my $interesting_fuzz = $minor_updates ? '\d' : '[2-9]';
23 $" = ' ';
24
25 chdir('patches') if -d 'patches';
26
27 if (!-f 'verify-patches') {
28     die <<EOT;
29 Please run this script from the root of the rsync dir or
30 from inside the patches subdir.
31 EOT
32 }
33
34 $ENV{'LC_COLLATE'} = 'C';
35 $| = 1;
36 my $CONF_OPTS = '-C';
37
38 my($has_dependencies, @new, @rejects);
39
40 END {
41     &restore_cvsdir;
42     system "rsync -a --del cvsdir/ workdir/" if -d 'cvsdir';
43 };
44
45 my $root;
46 open(IN, '../CVS/Root') or die $!;
47 chomp($root = <IN>);
48 close IN;
49
50 mkdir('tmp', 0777) unless -d 'tmp';
51 chdir('tmp') or die "Unable to chdir to 'tmp'";
52
53 mkdir('workdir') unless -d 'workdir';
54 open(OUT, '>exclude') or die $!;
55 print OUT join("\n", 'CVS', @generated_files), "\n";
56 close OUT;
57
58 unless ($no_cvs) {
59     print "Using CVS to update the tmp/cvsdir copy of the source.\n";
60     system qq|cvs -qd "$root" co -P -d cvsdir rsync|;
61 }
62
63 @ARGV = glob('../*.diff') unless @ARGV;
64
65 DIFF:
66 foreach my $diff (@ARGV) {
67     next unless $diff =~ /\.diff$/;
68     next if $diff =~ /gzip-rsyncable[-_a-z]*\.diff$/;
69     $diff =~ s#^(patches|\.\.)/##;
70
71     my $conf_opts;
72     open(IN, "../$diff") or die $!;
73     while (<IN>) {
74         last if /^--- /;
75         if (/^Depends-On-Patch: (\S+.diff)$/) {
76             my $dep = $1;
77             $has_dependencies = 1;
78             print "\nApplying dependency patch $dep...\n";
79             if (system("patch -d cvsdir -p1 -b -Vt <../$dep") != 0) {
80                 print "Unable to cleanly apply dependency patch -- skipping $diff\n";
81                 system "rm -f cvsdir/*.rej cvsdir/*/*.rej";
82                 &restore_cvsdir;
83                 next DIFF;
84             }
85             sleep(1) if $prepare_source; # Ensure later diffs get later times.
86         }
87         if (!defined($conf_opts) && s#^\s+\./configure\s+##) {
88             chomp($conf_opts = $_);
89             $conf_opts =~ s/\s*\(.*?\)//;
90         }
91     }
92     close IN;
93     $conf_opts = '' unless defined $conf_opts;
94
95     my $default = apply_patch($diff);
96
97     if ($prepare_source) {
98         print "\nPreparing the source...\n";
99         chdir('workdir') or die $!;
100         system "./prepare-source";
101         chdir('..') or die $!;
102     }
103
104     if ($default =~ s/^D,// || $default eq 'N') {
105         my $def = generate_new_patch($diff);
106         $default = 'U,N' if $default eq 'N' && $def eq 'E';
107         $default = 'N' if !$minor_updates && $default eq 'U,N';
108     }
109
110     my $first_time = 1;
111     PROMPT:
112     while (1) {
113         print "\n----------- $diff ------------\n",
114             "\nFix rejects, Diff create, Edit both diffs, Update patch,\n",
115             "Apply patch again, !(CMD), Build rsync, Next, Quit: [$default] ";
116         my $ans = $default;
117         if ($first_time && $default =~ /$auto_regex/) {
118             print $default, "\n";
119         } else {
120             my $input = <STDIN>;
121             chomp $input;
122             if ($input =~ s/^(-a|--auto-cmd=?)\s*//) {
123                 push(@auto_cmds, $input eq '' ? $default : $input);
124                 $" = '|';
125                 $auto_regex = qr/^(@auto_cmds)$/i;
126                 $" = ' ';
127                 next;
128             }
129             $ans = $input if $input ne '';
130         }
131         $first_time = 0;
132         while ($ans =~ s/^\s*(!|\w)((?<!!)[^;,]*|[^;]*)[;,]?//) {
133             my $cmd = "\U$1\E";
134             if ($cmd eq '!') {
135                 $cmd = $2 || $ENV{'SHELL'};
136                 chdir('workdir') or die $!;
137                 system $cmd;
138                 chdir('..') or die $!;
139                 $default = 'D';
140                 next;
141             }
142             if ($cmd eq 'A') {
143                 $default = apply_patch($diff);
144                 next;
145             }
146             if ($cmd eq 'B') {
147                 chdir('workdir') or die $!;
148                 my $cmd = "./prepare-source && ./configure $CONF_OPTS $conf_opts && make";
149                 print "Running: $cmd\n";
150                 system $cmd;
151                 chdir('..') or die $!;
152                 $default = '!make test';
153                 next;
154             }
155             if ($cmd eq 'D') {
156                 $default = generate_new_patch($diff);
157                 next;
158             }
159             if ($cmd eq 'E') {
160                 chdir('workdir') or die $!;
161                 system "vim -d ../../$diff ../new.patch";
162                 chdir('..') or die $!;
163                 $default = 'U,A,D';
164                 next;
165             }
166             if ($cmd eq 'F') {
167                 chdir('workdir') or die $!;
168                 system "vim @rejects";
169                 chdir('..') or die $!;
170                 $default = 'D,E';
171                 next;
172             }
173             if ($cmd eq 'N') {
174                 last PROMPT;
175             }
176             if ($cmd eq 'Q') {
177                 exit;
178             }
179             if ($cmd eq 'U') {
180                 system "cp -p new.patch ../$diff";
181                 print "\nUpdated $diff from new.patch\n";
182                 $default = 'A';
183                 next;
184             }
185         }
186     }
187
188     &restore_cvsdir;
189 }
190
191 exit;
192
193
194 sub apply_patch
195 {
196     my($diff) = @_;
197
198     undef @new;
199     system "rsync -a --delete --exclude='*~' cvsdir/ workdir/";
200     print "\nApplying patch $diff...\n";
201     undef @rejects;
202     my($saw_offset, $saw_fuzz);
203     open(IN, "patch -d workdir -p1 --no-backup-if-mismatch <../$diff |") or die $!;
204     while (<IN>) {
205         print $_;
206         chomp;
207         if (s/^patching file //) {
208             push(@new, $_) unless -f "cvsdir/$_";
209         } elsif (s/.* saving rejects to file //) {
210             push(@rejects, $_);
211         } elsif (/^Hunk #\d+ succeeded at \d+( with fuzz $interesting_fuzz)?/o) {
212             $saw_fuzz ||= defined $1;
213             $saw_offset = 1;
214         }
215     }
216     close IN;
217     return 'F,D,E' if @rejects;
218     return 'D,E' if $saw_fuzz && !$failures_only;
219     return 'D,U,N' if $saw_offset && !$failures_only;
220     'N';
221 }
222
223 sub filter_diff
224 {
225     my($cmd) = @_;
226     open(IN, '-|', $cmd) or die $!;
227     while (<IN>) {
228         next if /^(diff -|Index: |Only in )/;
229         s#^\Q--- cvsdir/\E([^\t]+).*#--- old/$1#;
230         s#^\Q+++ workdir/\E([^\t]+).*#+++ new/$1#;
231         print OUT $_;
232     }
233     close IN;
234 }
235
236 sub generate_new_patch
237 {
238     my($diff) = @_;
239
240     foreach (@new) {
241         system "touch -r workdir/$_ cvsdir/$_";
242     }
243     open(IN, "../$diff") or die $!;
244     open(OUT, '>new.patch') or die $!;
245     while (<IN>) {
246         last if /^--- /;
247         print OUT $_;
248     }
249     close IN;
250     &filter_diff('diff --exclude-from=exclude -upr cvsdir workdir');
251     if ($prepare_source) {
252         # These are not included in the diff above so that patch will give
253         # generated files a later timestamp than the source files.
254         foreach my $fn (@generated_files) {
255             &filter_diff("diff -up cvsdir/$fn workdir");
256         }
257     }
258     close OUT;
259     foreach (@new) {
260         unlink("cvsdir/$_");
261     }
262     print "\nDiffing... ";
263     if (system("diff ../$diff new.patch >/dev/null") == 0) {
264         print "new patch is identical to old.\n";
265         return 'N';
266     }
267     print "New patch DIFFERS from old.\n";
268     'E';
269 }
270
271 sub restore_cvsdir
272 {
273     return unless $has_dependencies;
274     $has_dependencies = 0;
275
276     chdir('cvsdir') or die $!;
277     foreach (glob('*.~[1-9]~'), glob('*/*.~[1-9]~')) {
278         my $fn;
279         ($fn = $_) =~ s/\.~1~$//;
280         if ($fn eq $_) {
281             unlink($_);
282         } elsif (-r $_) {
283             rename($_, $fn);
284         } else {
285             unlink($_);
286             unlink($fn);
287         }
288     }
289     chdir('..') or die $!;
290 }
291
292 sub usage
293 {
294     die <<EOT;
295 Usage: $0 [OPTS] [DIFF-FILE...]
296  -a, --auto-cmd=REGEX  If default_cmd =~ /^(REGEX)\$/, enter it automatically
297  -f, --failures-only   Suggest skipping patches that don't have failing hunks
298  -n, --no-cvs          Don't update tmp/cvsdir at the start of the run
299  -p, --prepare-source  Run ./prepare-source and include generated files in diff
300  -u, --minor-updates   Suggest 'U' for even minor changes in the diff
301 EOT
302 }