chiark / gitweb /
e000e55624b3f2c5e94e3898c09c2d9642ab5b0f
[dgit.git] / git-debrebase
1 #!/usr/bin/perl -w
2 # git-debrebase
3 # Script helping make fast-forwarding histories while still rebasing
4 # upstream deltas when working on Debian packaging
5 #
6 # Copyright (C)2017 Ian Jackson
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 # usages:
22 #    git-debrebase status
23 #    git-debrebase start       # like ffqrebase start + debrebase launder
24 #    git-debrebase new-upstream [stuff]  # see below
25 #    git-debrebase <git-rebase options>  # does debrebase start if necessary
26 #
27 #    git-debrebase analyse
28 #    git-debrebase launder     # prints breakwater tip
29 #    git-debrebase create-new-upstream-breakwater [-f] <upstreaminfo>...
30 #
31 # <upstreaminfo> is
32 #    [,][<subdir>:][+]<commitid>[,...]
33 #
34 # if initial comma is supplied, entries are not positional.  Unspecified
35 # <subdir> means root (and there may be only one).
36 # xxx want auto branch names
37 # xxx too complicated
38 # how about for now
39 #    [+]<commit> [<subdir/> [+]<commit>...]
40 # ?  plus options
41 #     --new-upstream-different-subtrees
42 #
43 #  automatic case
44 #       git-debrebase new-upstream
45 #             - previous breakwater merge must be gdr-generated
46 #             - orig set is the same as before
47 #             - implicitly uses upstream branches according to orig set
48 #             - not all upstream branches need be updated
49 #             - insists on fast-forward of each branch, unless
50 #                  --force (or --force=<subdir>[/])
51 #  branch set adjustments
52 #       git-debrebase new-upstream --add <subdir>/
53 #       git-debrebase new-upstream --rm <subdir>/
54 #       git-debrebase new-upstream / [<subdir>/ ...]
55 #             - orig set is adjusted
56 #             - otherwise like auto (--add is not checked for ffness, obv)
57 #             - multiple --add and --rm may be specified
58 #             - --add makes new upstream the last contributor
59 #  explicit
60 #       git-debrebase / [<rootcommitid>] [<subdir>/ [<commitid>] ...]
61 #             - orig set is precisely as specified now
62 #             - previous breakwater merge is irrelevant
63 #             - no fast forward checks
64 #  for now only explicit with commitids
65
66     # implicitly uses `upstream'
67 #                                     # (or multiple other branches)
68 #       git-debrebase new-upstream \
69 #             [<subdir>/]=<commitid>
70
71 #    UPSTREAM[,[[SUBDIR:]SUBUPSTREAM]
72 #    default for SUBDIR: is from previous upstream merge[xxx terminology]
73 #    
74 #
75 #xxx
76 # when starting must record original start (for ff)
77 # and new rebase basis
78 #
79 #    git-ffqrebase start [BASE]
80 #                # records previous HEAD so it can be overwritten
81 #                # records base for future git-ffqrebase
82 #    git-ffqrebase set-base BASE
83 #    git-ffqrebase <git-rebase options>
84 #    git-ffqrebase finish
85 #    git-ffqrebase status [BRANCH]
86 #
87 #  refs/ffqrebase-prev/BRANCH    BRANCH may be refs/...; if not it means
88 #  refs/ffqrebase-base/BRANCH      refs/heads/BRANCH
89 #                               zero, one, or both of these may exist
90
91 use strict;
92
93 use Memoize;
94 use Data::Dumper;
95
96 use Debian::Dgit qw(:DEFAULT $wa);
97
98 sub cfg ($) {
99     my ($k) = @_;
100     $/ = "\0";
101     my @cmd = qw(git config -z);
102     push @cmd, qw(--get-all) if wantarray;
103     push @cmd, $k;
104     my $out = cmdoutput @cmd;
105     return split /\0/, $out;
106 }
107
108 memoize('cfg');
109
110 sub get_commit ($) {
111     my ($objid) = @_;
112     my ($type,$data) = git_cat_file $objid;
113     die unless $type eq 'commit';
114     $data =~ m/(?<=\n)\n/;
115     return ($`,$');
116 }
117
118 sub D_DEB ()     { return 0x1; } # debian/ (not including debian/patches/)
119 sub D_UPS ()     { return 0x2; } # upstream files
120 sub D_PAT_ADD () { return 0x4; } # debian/patches/ extra patches at end
121 sub D_PAT_OTH () { return 0x8; } # debian/patches other changes
122
123 our $rd = ".git/git-debrebase";
124 our $ud = "$rd/work";
125
126 sub commit_pr_info ($) {
127     my ($r) = @_;
128     return Data::Dumper->dump([$r], [qw(commit)]);
129 }
130
131 sub calculate_committer_authline () {
132     my $c = cmdoutput @git, qw(commit-tree --no-gpg-sign -m),
133         'DUMMY COMMIT (git-debrebase)', "$basis:";
134     my ($h,$m) = get_commit $c;
135     $h =~ m/^committer .*$/m or confess "($h) ?";
136     return $&;
137 }
138
139 # classify returns an info hash like this
140 #   CommitId => $objid
141 #   Hdr => # commit headers, including 1 final newline
142 #   Msg => # commit message (so one newline is dropped)
143 #   Tree => $treeobjid
144 #   Type => (see below)
145 #   Parents = [ {
146 #       Ix => $index # ie 0, 1, 2, ...
147 #       CommitId
148 #       Differs => return value from get_differs
149 #       IsOrigin
150 #       IsDggitImport => 'orig' 'tarball' 'unpatched' 'package' (as from dgit)
151 #     } ...]
152 #   NewMsg => # commit message, but with any [dgit import ...] edited
153 #             # to say "[was: ...]"
154 #
155 # Types:
156 #   Packaging
157 #   Upstream
158 #   AddPatches
159 #   Mixed
160 #   Unknown
161 #
162 #   Pseudomerge
163 #     has additional entres in classification result
164 #       Overwritten = [ subset of Parents ]
165 #       Contributor = $the_remaining_Parent
166 #
167 #   DgitImportUnpatched
168 #     has additional entry in classification result
169 #       OrigParents = [ subset of Parents ]
170 #
171 #   BreakwaterUpstreamMerge
172 #     has additional entry in classification result
173 #       OrigParents = [ subset of Parents ]
174
175 sub classify ($) {
176     my ($objid) = @_;
177
178     my ($h,$m) = get_commit $objid;
179
180     my ($t) = $h =~ m/^tree (\w+)$/m or die $cur;
181     my (@ph) = $h =~ m/^parent (\w+)$/m;
182     my @p;
183
184     my $r = {
185         CommitId => $objid,
186         Hdr => $hdr,
187         Msg => $m,
188         Tree => $t,
189         Parents => \@p,
190     };
191
192     foreach my $ph (@ph) {
193         push @p, {
194             Ix => $#p,
195             CommitId => $ph,
196             Differs => (get_differs $t, $ph),
197         };
198     }
199
200     my $classify = sub {
201         my ($type, @rest) = @_;
202         $r = { %r, Type => $type, @rest };
203         return $r;
204     };
205     my $unknown = sub {
206         my ($why) = @_;
207         $r = { %r, Type => Unknown };
208         return $r;
209     }
210
211     if (@p == 1) {
212         my $d = $r->{Parents}[0]{Differs};
213         if ($d == D_DPAT_ADD) {
214             return $classify->(qw(AddPatches));
215         } elsif ($d & (D_DPAT_ADD|D_DPAT_OTH)) {
216             return $unknown->("edits debian/patches");
217         } elsif ($d == D_DEB) {
218             return $classify->(qw(Packaging));
219         } elsif ($d == D_UPS) {
220             return $classify->(qw(Upstream));
221         } elsif ($d == D_DEB|D_UPS) {
222             return $classify->(qw(Mixed));
223         } elsif ($d == 0) {
224             return $unknown->("no changes");
225         } else {
226             confess "internal error $objid ?";
227         }
228     }
229     if (!@p) {
230         return $unknown->("origin commit");
231     }
232
233     my @identical = grep { !$_->{Differs} } @p;
234     if (@p == 2 && @identical == 1) {
235         my @overwritten = grep { $_->{Differs} } @p;
236         confess "internal error $objid ?" unless @overwritten==1;
237         return $classify->(qw(Pseudomerge),
238                            Overwritten => $overwritten[0],
239                            Contributor => $identical[0]);
240     }
241     if (@p == 2 && @identical == 2) {
242         my @bytime = nsort_by {
243             my ($ph,$pm) = get_commit $_->{CommitId};
244             $ph =~ m/^committer .* (\d+) [-+]\d+$/m or die "$_->{CommitId} ?";
245             $1;
246         } @p;
247         return $classify->(qw(Pseudomerge),
248                            SubType => qw(Ambiguous),
249                            Overwritten => $bytime[0],
250                            Contributor => $bytime[1]);
251     }!
252     foreach my $p (@p) {
253         my ($p_h, $p_m) = get_commit $p;
254         $p->{IsOrigin} = $p_h !~ m/^parent \w+$/m;
255         ($p->{IsDgitImport},) = $p_m =~ m/^\[dgit import ([0-9a-z]+) .*\]$/m;
256     }
257     my @orig_ps = grep { ($_->{IsDgitImport}//'X') eq 'orig' };
258     my $m2 = $m;
259     if (!(grep { !$_->{IsOrigin} } @p) and
260         (@origs >= @p - 1) and
261         $m2 =~ s{^\[(dgit import unpatched .*)\]$}{[was: $1]}m) {
262         $r->{NewMsg} = $m2;
263         return $classify->(qw(DgitImportUnpatched),
264                            OrigParents => \@orig_ps);
265     }
266
267     my ($stype, $series) = git_cat_file "$t:debian/patches/series";
268     my $haspatches = $stype ne 'missing' && $series =~ m/^\s*[^#\n\t ]/m;
269
270     # How to decide about l/r ordering of breakwater merges ?  git
271     # --topo-order prefers to expand 2nd parent first.  There's
272     # already an easy rune to look for debian/ history anyway (git log
273     # debian/) so debian breakwater branch should be 1st parent; that
274     # way also there's also an easy rune to look for the upstream
275     # patches (--topo-order).
276     if (@p == 2 &&
277         !$haspatches &&
278         !$p[0]{IsOrigin} && # breakwater merge never starts with an origin
279         !($p[0]{Differs} & ~D_DEB) &&
280         !($p[1]{Differs} & ~D_UPS)) {
281         return $classify->(qw(BreakwaterUpstreamMerge),
282                            OrigParents => [ $p[1] ]);
283     }
284     # xxx multi-.orig upstreams
285
286     return $unknown->("complex merge");
287 }
288
289 sub walk ($$$;$$$) {
290     my ($input, $pseudos_must_overwrite_this, $wantdebonly,
291         $report, $depth, $report_anomaly, $nogenerate) = @_;
292     # go through commits backwards
293     # we generate two lists of commits to apply
294     # => ($tip, $breakwater_tip)
295     my (@deb_cl, @ups_cl, @processed);
296     my %found;
297     my @pseudomerges;
298
299     $report //= sub { };
300     $report_anomaly //= sub {
301         my ($cl, $msg) = @_;
302         die "commit $cl: $msg\n";
303     };
304     $depth //= 0;
305
306     my $cl;
307     my $xmsg = sub {
308         my ($appendinfo) = @_;
309         my $ms = $cl->{Msg};
310         chomp $ms;
311         $ms .= "\n\n[git-debrebase $appendinfo]\n";
312         return (Msg => $ms);
313     };
314     my $rewrite_from_here = sub {
315         push @processed, { SpecialMethod => 'StartRewrite' };
316     };
317
318     my $cur = $input;
319
320     for (;;) {
321         $cl = classify $cur;
322         my $ty = $cl->{Type};
323         my $st = $cl->{SubType};
324         $report->($cl);
325         $found{$ty. ( defined($st) ? "-$st" : '' )}++;
326         my $p0 = $cl->{Parents}[0]{CommitId};
327         if ($ty eq 'AddPatches') {
328             $cur = $p0;
329             $rewrite_from_here->();
330             next;
331         } elsif ($ty eq 'Packaging') {
332             push @deb_cl, $cl;
333             push @processed, $cl;
334             $cur = $p0;
335             next;
336         } elsif ($ty eq 'Upstream') {
337             push @ups_cl, $cl;
338             push @processed, $cl;
339             $cur = $p0;
340             next;
341         } elsif ($ty eq 'Mixed') {
342             my $queue = sub {
343                 my ($q, $wh) = @_;
344                 my $cls = { $cl, $xmsg->("split mixed commit: $wh part") };
345                 push @$q, $cls;
346             };
347             $queue->(\@deb_cl, "debian");
348             $queue->(\@ups_cl, "upstream");
349             $rewrite_from_here->();
350             next;
351         } elsif ($ty eq 'Pseudomerge') {
352             if (defined $pseudos_must_overwrite_this &&
353                 !grep {
354                     is_fast_fwd $pseudos_must_overwrite_this, $_->{CommitId}
355                 },
356                 @{ $cl->{Overwritten} }) {
357                 $report_anomaly->($cl,
358                                   "Pseudomerge should overwrite".
359                                   " $pseudos_must_overwrite_this".
360                                   " but does not do so");
361             }
362             push @pseudomerges, $cl;
363             $rewrite_from_here->();
364             $cur = $ty->{Contributor};
365             next;
366         } elsif ($ty eq 'BreakwaterUpstreamMerge') {
367             $basis = $cur;
368             last;
369         } elsif ($ty eq 'DgitImportUnpatched' &&
370                  @pseudomerges == 1) {
371             # This import has a tree which is just like a breakwater
372             # tree, but it has the wrong history.  Its ought to have
373             # the previous breakwater (which dgit ought to have
374             # generated a pseudomerge to overwrite) as an ancestor.
375             # That will make the history of the debian/ files correct.
376             # As for the upstream version: either it's the same upstream
377             # as the previous breakwater, in which case that history is
378             # precisely right.  Otherwise, it was a non-gitish upload
379             # of a new upstream version.  We can tell these apart
380             # by looking at the tree of the supposed upstream.
381             my $differs = get_differs $previous_breakwater, $cl->{Tree};
382             if ($differs & D_UPS) {
383                 push @deb_cl, {
384                     %r,
385                     SpecialMethod => 'DgitImportUpstreamUpdate',
386                     $xmsg->("convert dgit import: debian changes")
387                 };
388             }
389             push @deb_cl, {
390                 %r,
391                 SpecialMethod => 'DgitImportDebianUpdate',
392                 $xmsg->("convert dgit import: upstream changes")
393             };
394             $basis = launder $pseudomerges[0]{Overwritten}, undef, 1,
395                 $report, $depth+1, $nogenerate;
396             $rewrite_from_here->();
397             last;
398         } else {
399             $report_anomaly->($cl, "Cannot cope with this commit");
400         }
401     }
402     # Now we build it back up again
403
404     if ($nogenerate) {
405         return (undef, $basis);
406     }
407
408     workarea_fresh();
409
410     my $rewriting = 1;
411
412     my $build = $basis;
413
414     my $rm_tree_cached = sub {
415         my ($subdir) = @_;
416         runcmd @git, qw(rm --quiet -rf --cached), $subdir;
417     };
418     my $read_tree_debian = sub {
419         my ($treeish) = @_;
420         $rm_tree_cached->(qw(debian));
421         runcmd @git, qw(read-tree --prefix=debian/), "$treeish:debian";
422     };
423     my $read_tree_upstream = sub {
424         my ($treeish) = @_;
425         runcmd @git, qw(read-tree), $treeish;
426         $read_tree_debian->($build);
427     };
428  
429     my $committer_authline = calculate_committer_authline();
430
431     in_workarea sub {
432         mkdir $rd or $!==EEXIST or die $!;
433         my $current_method;
434         foreach my $cl (qw(Debian), (reverse @deb_cl),
435                         { SpecialMethod => 'RecordBreakwaterTip' },
436                         qw(Upstream), (reverse @ups_cl)) {
437             if (!ref $cl) {
438                 $current_method = $cl;
439                 next;
440             }
441             $method = $cl->{SpecialMethod} // $current_method;
442             my @parents = ($build);
443             my $cltree = $cl->{CommitId}
444             if ($method eq 'Debian') {
445                 $read_tree_debian->($cltree);
446             } elsif ($method eq 'Upstream') {
447                 $read_tree_upstream->($cltree);
448             } elsif ($method eq 'StartRewrite') {
449                 $rewriting = 1;
450                 next;
451             } elsif ($method eq 'RecordBreakwaterTip') {
452                 last if $wantdebonly;
453                 $breakwater = $build;
454                 next;
455             } elsif ($method eq 'DgitImportDebianUpdate') {
456                 $read_tree_debian->($cltree);
457                 $rm_tree_cached(qw(debian/patches));
458             } elsif ($method eq 'DgitImportUpstreamUpdate') {
459                 $read_tree_upstream->($cltree);
460                 push @parents, map { $_->{CommitId} } @{ $cl->{OrigParents} };
461             } else {
462                 confess "$method ?";
463             }
464             $rewriting ||= $cl ne pop @processed;
465             my $newtree = cmdoutput @git, qw(write-tree);
466             my $ch = $cl->{Hdr};
467             $ch =~ s{^tree .*}{tree $newtree}m or confess "$ch ?";
468             $ch =~ s{^parent .*\n}{}m;
469             $ch =~ s{(?=^author}{
470                 map { "parent $_\n" } @parents
471             }me or confess "$ch ?";
472             if ($rewrite) {
473                 $ch =~ s{^committer .*$}{$committer_authline}m
474                     or confess "$ch ?";
475             }
476             my $cf = "$rd/m$rewrite"
477                 open CD, ">", $cf or die $!;
478             print CD $ch, "\n", $cl->{Msg}; or die $!;
479             close CD or die $!;
480             my @cmd = (@git, qw(hash-object));
481             push @cmd, qw(-w) if $rewrite;
482             push @cmd, qw(-t commit), $cf;
483             my $newcommit = cmdoutput @cmd;
484             confess "$ch ?" unless $rewrite or $newcommit eq $cl->{CommitId};
485             $build = $newcommit;
486         }
487     };
488
489     runcmd @git, qw(diff-tree --quiet),
490         map { $wantdebonly ? "$_:debian" : $_ },
491         $input, $build;
492
493     return ($build, $breakwater);
494 }
495
496 sub get_head () { return git_rev_parse qw(HEAD); }
497
498 sub update_head ($$) {
499     my ($old, $new, $mrest) = @_;
500     runcmd @git, qw(update-ref -m), "git-debrebase $mrest", $new, $old;
501 }
502
503 sub cmd_analyse () {
504     
505
506 sub cmd_launder () {
507     my $old = get_head();
508     my ($tip,$breakwater) = launder $old, 0, undef, 0;
509     update_head $old, $tip, 'launder';
510     # no tree changes except debian/patches
511     runcmd @git, qw(rm --quiet -rf debian/patches);
512     printf "# breakwater tip:\n%s\n", $breakwater;
513 }
514
515 my $toplevel = runcmd @git, qw(rev-parse --show-toplevel);
516 chdir $toplevel or die "chdir $toplevel: $!";
517
518 my $cmd = shift @ARGV;
519 my $cmdfn = $cmd;
520 $cmdfn =~ y/-/_/;
521 $cmdfn = ${*::}{"cmd_$cmdfn"};
522
523 $cmdfn or badusage "unknown git-debrebase sub-operation $cmd";
524 $cmdfn->();