This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Embed.t fails on Win32
[perl5.git] / Porting / p4genpatch
CommitLineData
a619eb9e
JH
1#!/usr/bin/perl -w
2
3
4# p4genpatch - Generate a perl patch from the repository
5
6# Usage: $0 -h
7
8# andreas.koenig@anima.de
9
10use strict;
11use File::Temp qw(tempdir);
12use File::Compare;
00082bef
JH
13use File::Spec;
14use File::Spec::Unix;
a619eb9e 15use Time::Local;
667f40ee
GS
16use Getopt::Long;
17use Cwd qw(cwd);
a619eb9e
JH
18
19sub correctmtime ($$$);
20sub Usage ();
21
667f40ee
GS
22$0 =~ s|^.*[\\/]||;
23my $VERSION = '0.05';
24my $TOPDIR = cwd();
25my @P4opt;
26our %OPT = ( "d" => "u", b => "//depot/perl", "D" => "diff" );
a619eb9e 27Getopt::Long::Configure("no_ignore_case");
2d6becbd 28GetOptions(\%OPT, "b=s", "p=s", "d=s", "D=s", "h", "v", "V") or die Usage;
a619eb9e
JH
29print Usage and exit if $OPT{h};
30print "$VERSION\n" and exit if $OPT{V};
fc867767
GS
31die Usage unless @ARGV == 1 && $ARGV[0] =~ /^\d+$/;
32my $CHANGE = shift;
a619eb9e
JH
33
34for my $p4opt (qw(p)) {
35 push @P4opt, "-$p4opt $OPT{$p4opt}" if $OPT{$p4opt};
36}
37
fc867767 38my $system = "p4 @P4opt describe -s $CHANGE |";
a619eb9e
JH
39open my $p4, $system or die "Could not run $system";
40my @action;
41while (<$p4>) {
42 print;
ca8a8491
GS
43 next unless m|($OPT{b})|;
44 my($prefix) = $1;
45 $prefix =~ s|/[^/]+$||; # up to the last "/" in the match is to be stripped
a619eb9e
JH
46 if (my($file,$action) = m|^\.\.\. (//depot.*)\s(\w+)$|) {
47 next if $action eq "delete";
ca8a8491 48 push @action, [$action, $file, $prefix];
a619eb9e
JH
49 }
50}
51close $p4;
52
53my $tempdir;
9b174a27 54my @unlink;
a619eb9e
JH
55print "Differences ...\n";
56for my $a (@action) {
8d7ecf55 57 $tempdir ||= tempdir( "tmp-XXXX", CLEANUP => 1, TMPDIR => 1 );
9b174a27 58 @unlink = ();
ca8a8491
GS
59 my($action,$file,$prefix) = @$a;
60 my($path,$basename,$number) = $file =~ m|\Q$prefix\E/(.+/)?([^/]+)#(\d+)|;
00082bef
JH
61
62 my @splitdir = File::Spec::Unix->splitdir($path);
63 $path = File::Spec->catdir(@splitdir);
64
fc867767 65 my($depotfile) = $file =~ m|^(.+)#\d+\z|;
ca8a8491 66 die "Panic: Could not parse file[$file]" unless $number;
a619eb9e 67 $path = "" unless defined $path;
00082bef 68 my($d1,$d2,$prev,$prevchange,$prevfile,$doadd,$t1,$t2);
a619eb9e 69 $prev = $number-1;
fc867767
GS
70 $prevchange = $CHANGE-1;
71 # can't assume previous rev == $number-1 due to obliterated revisions
72 $prevfile = "$depotfile\@$prevchange";
73 if ($number == 1 or $action =~ /^(add|branch)$/) {
9b174a27 74 $d1 = $^O eq 'MacOS' ? File::Spec->devnull : "/dev/null";
00082bef 75 $t1 = $d1;
cbdeeddd 76 ++$doadd;
a619eb9e 77 } elsif ($action =~ /^(edit|integrate)$/) {
00082bef
JH
78 $d1 = File::Spec->catfile($path, "$basename-$prevchange");
79 $t1 = File::Spec->catfile($tempdir, $d1);
a619eb9e 80 warn "==> $d1 <==\n" if $OPT{v};
00082bef 81 my $system = qq[p4 @P4opt print -o "$t1" "$prevfile"];
a619eb9e
JH
82 my $status = `$system`;
83 if ($?) {
84 warn "$0: system[$system] failed, status[$?]\n";
85 next;
86 }
00082bef 87 chmod 0644, $t1;
fc867767
GS
88 if ($status =~ /\#(\d+) \s - \s \w+ \s change \s (\d+) \s /x) {
89 ($prev,$prevchange) = ($1,$2);
90 $prevfile = "$depotfile#$prev";
a619eb9e 91 my $oldd1 = $d1;
fc867767 92 $d1 =~ s/-\d+$/#$prev~$prevchange~/;
00082bef
JH
93 my $oldt1 = $t1;
94 $t1 = File::Spec->catfile($tempdir, $d1);
95 rename $oldt1, $t1;
a619eb9e 96 }
9b174a27 97 push @unlink, $t1;
a619eb9e
JH
98 } else {
99 die "Unknown action[$action]";
100 }
38dcbcb1 101 $d2 = File::Spec->catfile($path, $basename);
00082bef 102 $t2 = File::Spec->catfile($tempdir, $d2);
9b174a27 103 push @unlink, $t2;
a619eb9e 104 warn "==> $d2#$number <==\n" if $OPT{v};
00082bef 105 my $system = qq[p4 @P4opt print -o "$t2" "$file"];
a619eb9e
JH
106 # warn "system[$system]";
107 my $type = `$system`;
108 if ($?) {
109 warn "$0: `$system` failed, status[$?]\n";
110 next;
111 }
00082bef 112 chmod 0644, $t2;
a619eb9e
JH
113 $type =~ m|^//.*\((.+)\)$| or next;
114 $type = $1;
00082bef 115 if ($doadd or File::Compare::compare($t1, $t2)) {
667f40ee 116 print "\n==== $file ($type) ====\n";
a619eb9e
JH
117 unless ($type =~ /text/) {
118 next;
119 }
9b174a27
GS
120 unless ($^O eq 'MacOS') {
121 $d1 =~ s,\\,/,g;
122 $d2 =~ s,\\,/,g;
123 }
38dcbcb1 124 print "Index: $d2\n";
00082bef
JH
125 correctmtime($prevfile,$prev,$t1) unless $doadd;
126 correctmtime($file,$number,$t2);
667f40ee
GS
127 chdir $tempdir or warn "Could not chdir '$tempdir': $!";
128 $system = qq[$OPT{D} -$OPT{d} "$d1" "$d2"];
a619eb9e 129 system($system); # no return check because diff doesn't always return 0
667f40ee 130 chdir $TOPDIR or warn "Could not chdir '$TOPDIR': $!";
a619eb9e 131 }
9b174a27
GS
132}
133continue {
134 for (@unlink) {
a619eb9e
JH
135 unlink or warn "Could not unlink $_: $!" if -f;
136 }
137}
138print "End of Patch.\n";
139
00082bef 140my($tz_offset);
a619eb9e 141sub correctmtime ($$$) {
fc867767 142 my($depotfile,$nr,$localfile) = @_;
cbdeeddd
GS
143 my %fstat = map { /^\.\.\. (\w+) (.*)$/ } `p4 @P4opt fstat -s "$depotfile"`;
144 return unless exists($fstat{headRev}) and $fstat{headRev} == $nr;
00082bef
JH
145
146 if ($^O eq 'MacOS') { # fix epoch ... still off by three hours (EDT->PDT)
147 require Time::Local;
148 $tz_offset ||= sprintf "%+0.4d\n", (
149 Time::Local::timelocal(localtime) - Time::Local::timelocal(gmtime)
150 );
151 $fstat{headTime} += 2082844801 + $tz_offset;
152 }
153
fc867767 154 utime $fstat{headTime}, $fstat{headTime}, $localfile;
a619eb9e
JH
155}
156
157sub Usage () {
158 qq{Usage: $0 [OPTIONS] patchnumber
159
ca8a8491
GS
160 -p host:port p4 port (e.g. myhost:1666)
161 -d diffopt option to pass to diff(1)
162 -D diff diff(1) to use
163 -b branch(es) which branches to include (regex); everything up
164 to the last slash of matched portion of path is
165 stripped on local copy (default: //depot/perl)
166 -v verbose
167 -h print this help and exit
168 -V print version number and exit
a619eb9e
JH
169
170Fetches all required files from the repository, puts them into a
171temporary directory with sensible names and sensible modification
172times and composes a patch to STDOUT using external diff command.
173Requires repository access.
174
175Examples:
176 perl $0 12345 | gzip -c > 12345.gz
177 perl $0 -dc 12345 > change-12345.patch
ca8a8491 178 perl $0 -b //depot/maint-5.6/perl -v 8571 > 8571
a619eb9e
JH
179};
180}