Fixed a couple DEL_OWNED_BY_US glitches.
[rsync/rsync.git] / support / patch-update
... / ...
CommitLineData
1#!/usr/bin/perl -w
2# This script is used to turn one or more of the "patch/*" branches
3# into one or more diffs in the "patches" directory. Pass the option
4# --gen if you want generated files in the diffs. Pass the name of
5# one or more diffs if you want to just update a subset of all the
6# diffs.
7
8use strict;
9use Getopt::Long;
10
11my $patches_dir = 'patches';
12my $tmp_dir = "patches.$$";
13
14&Getopt::Long::Configure('bundling');
15&usage if !&GetOptions(
16 'skip-check' => \( my $skip_branch_check ),
17 'gen:s' => \( my $incl_generated_files ),
18 'help|h' => \( my $help_opt ),
19);
20&usage if $help_opt;
21
22if (defined $incl_generated_files) {
23 $patches_dir = $incl_generated_files if $incl_generated_files ne '';
24 $incl_generated_files = 1;
25}
26
27die "No '$patches_dir' directory was found.\n" unless -d $patches_dir;
28die "No '.git' directory present in the current dir.\n" unless -d '.git';
29
30unless ($skip_branch_check) {
31 open(IN, '-|', 'git status') or die $!;
32 my $status = join('', <IN>);
33 close IN;
34 die "The checkout is not clean:\n", $status unless $status =~ /\nnothing to commit \(working directory clean\)/;
35 die "The checkout is not on the master branch.\n" unless $status =~ /^# On branch master\n/;
36}
37
38my @extra_files;
39open(IN, '<', 'Makefile.in') or die "Couldn't open Makefile.in: $!\n";
40while (<IN>) {
41 if (s/^GENFILES=//) {
42 while (s/\\$//) {
43 $_ .= <IN>;
44 }
45 @extra_files = split(' ', $_);
46 last;
47 }
48}
49close IN;
50
51if ($incl_generated_files) {
52 die "'$tmp_dir' must not exist in the current directory.\n" if -e $tmp_dir;
53 mkdir($tmp_dir, 0700) or die "Unable to mkdir($tmp_dir): $!\n";
54 system "./config.status Makefile && make gen && rsync -a @extra_files $tmp_dir/master/" and exit 1;
55}
56my $last_touch = time;
57
58my(@patches, %local_patch);
59if (@ARGV) {
60 foreach (@ARGV) {
61 s{^(patches|patch|origin/patch)/} {};
62 s{\.diff$} {};
63 push(@patches, $_);
64 }
65 open(PIPE, '-|', 'git', 'branch', '-l') or die $!;
66} else {
67 open(PIPE, '-|', 'git', 'branch', '-a') or die $!;
68}
69while (<PIPE>) {
70 if (m# origin/patch/(.*)#) {
71 push(@patches, $1);
72 } elsif (m# patch/(.*)#) {
73 $local_patch{$1} = 1;
74 }
75}
76close PIPE;
77
78my(%parent, %description);
79foreach my $patch (@patches) {
80 my $branch = ($local_patch{$patch} ? '' : 'origin/') . "patch/$patch";
81 my $desc = '';
82 open(PIPE, '-|', 'git', 'diff', '-U1000', "master...$branch", '--', "PATCH.$patch") or die $!;
83 while (<PIPE>) {
84 last if /^@@ /;
85 }
86 while (<PIPE>) {
87 next unless s/^[ +]//;
88 if (m#patch -p1 <patches/(\S+)\.diff# && $1 ne $patch) {
89 $parent{$patch} = $1;
90 }
91 $desc .= $_;
92 }
93 $description{$patch} = $desc;
94}
95
96my %completed;
97foreach my $patch (@patches) {
98 next if $completed{$patch}++;
99 update_patch($patch);
100}
101
102if ($incl_generated_files) {
103 system "rm -rf $tmp_dir";
104}
105
106sleep 1 if $last_touch == time;
107system "git checkout master" and die $!;
108
109exit;
110
111
112sub update_patch
113{
114 my($patch) = @_;
115
116 my $parent = $parent{$patch};
117 if (defined $parent) {
118 unless ($completed{$parent}++) {
119 update_patch($parent);
120 }
121 $parent = "patch/$parent";
122 } else {
123 $parent = 'master';
124 }
125
126 print "======== $patch ========\n";
127
128 sleep 1 if $incl_generated_files && $last_touch == time;
129 if ($local_patch{$patch}) {
130 system "git checkout patch/$patch" and exit 1;
131 } else {
132 system "git checkout --track -b patch/$patch origin/patch/$patch" and exit 1;
133 }
134
135 open(OUT, '>', "$patches_dir/$patch.diff") or die $!;
136 print OUT $description{$patch}, "\n";
137
138 if (system("git rebase -m $parent") != 0) {
139 print qq|"git rebase -m $parent" incomplete -- please fix.\n|;
140 $ENV{PS1} = "[$parent] patch/$patch: ";
141 system $ENV{SHELL} and exit 1;
142 }
143
144 if ($incl_generated_files) {
145 system "./config.status Makefile && make gen && rsync -a @extra_files $tmp_dir/$patch/" and exit 1;
146 }
147 $last_touch = time;
148
149 open(PIPE, '-|', 'git', 'diff', $parent) or die $!;
150 DIFF: while (<PIPE>) {
151 while (m{^diff --git a/PATCH}) {
152 while (<PIPE>) {
153 last if m{^diff --git a/};
154 }
155 last DIFF if !defined $_;
156 }
157 next if /^index /;
158 print OUT $_;
159 }
160 close PIPE;
161
162 if ($incl_generated_files) {
163 $parent =~ s#.*/##;
164 open(PIPE, '-|', 'diff', '-up', "$tmp_dir/$parent", "$tmp_dir/$patch") or die $!;
165 while (<PIPE>) {
166 s#^(diff -up) $tmp_dir/[^/]+/(.*?) $tmp_dir/[^/]+/(.*)#$1 a/$2 b/$3#o;
167 s#^\Q---\E $tmp_dir/[^/]+/([^\t]+)\t.*#--- a/$1#o;
168 s#^\Q+++\E $tmp_dir/[^/]+/([^\t]+)\t.*#+++ b/$1#o;
169 print OUT $_;
170 }
171 close PIPE;
172 }
173
174 close OUT;
175}
176
177exit;
178
179sub usage
180{
181 die <<EOT;
182Usage: patch-update [OPTIONS]
183
184--gen[=DIR] Inlcude generated files.
185--skip-check Skip the master-branch, clean-checkout check.
186EOT
187}