chiark / gitweb /
d9bc9432cd423bc7ffcce120780aa750539cc7fb
[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 # git-debrebase without start, if already started, is willing
92 # to strip pseudomerges provided that they overwrite exactly
93 # the previous HEAD
94 #  xxxx is this right ?  what matters is have we pushed
95 #    I think in fact the right answer is:
96 #       git-debrebase always strips out pseudomerges from its branch
97 #       a pseudomerge is put in at the time we want to push
98 #       at that time, we make a pseudomerge of the remote tracking
99 #           branch (if raw git) or the dgit view (if dgit)
100 #       for raw git git-ffqrebase, do want preciseley to record
101 #           value of remote tracking branch or our branch, on start, so we
102 #           overwrite only things we intend to
103 #  the previous pseudomerge    check for tags and remote branches ?
104
105 use strict;
106
107 use Memoize;
108 use Data::Dumper;
109
110 use Debian::Dgit qw(:DEFAULT $wa);
111
112 sub cfg ($) {
113     my ($k) = @_;
114     $/ = "\0";
115     my @cmd = qw(git config -z);
116     push @cmd, qw(--get-all) if wantarray;
117     push @cmd, $k;
118     my $out = cmdoutput @cmd;
119     return split /\0/, $out;
120 }
121
122 memoize('cfg');
123
124 sub get_commit ($) {
125     my ($objid) = @_;
126     my ($type,$data) = git_cat_file $objid;
127     die unless $type eq 'commit';
128     $data =~ m/(?<=\n)\n/;
129     return ($`,$');
130 }
131
132 sub D_DEB ()     { return 0x1; } # debian/ (not including debian/patches/)
133 sub D_UPS ()     { return 0x2; } # upstream files
134 sub D_PAT_ADD () { return 0x4; } # debian/patches/ extra patches at end
135 sub D_PAT_OTH () { return 0x8; } # debian/patches other changes
136
137 our $rd = ".git/git-debrebase";
138 our $ud = "$rd/work";
139
140 sub commit_pr_info ($) {
141     my ($r) = @_;
142     return Data::Dumper->dump([$r], [qw(commit)]);
143 }
144
145 sub calculate_committer_authline () {
146     my $c = cmdoutput @git, qw(commit-tree --no-gpg-sign -m),
147         'DUMMY COMMIT (git-debrebase)', "$basis:";
148     my ($h,$m) = get_commit $c;
149     $h =~ m/^committer .*$/m or confess "($h) ?";
150     return $&;
151 }
152
153 # classify returns an info hash like this
154 #   CommitId => $objid
155 #   Hdr => # commit headers, including 1 final newline
156 #   Msg => # commit message (so one newline is dropped)
157 #   Tree => $treeobjid
158 #   Type => (see below)
159 #   Parents = [ {
160 #       Ix => $index # ie 0, 1, 2, ...
161 #       CommitId
162 #       Differs => return value from get_differs
163 #       IsOrigin
164 #       IsDggitImport => 'orig' 'tarball' 'unpatched' 'package' (as from dgit)
165 #     } ...]
166 #   NewMsg => # commit message, but with any [dgit import ...] edited
167 #             # to say "[was: ...]"
168 #
169 # Types:
170 #   Packaging
171 #   Upstream
172 #   AddPatches
173 #   Mixed
174 #   Unknown
175 #
176 #   Pseudomerge
177 #     has additional entres in classification result
178 #       Overwritten = [ subset of Parents ]
179 #       Contributor = $the_remaining_Parent
180 #
181 #   DgitImportUnpatched
182 #     has additional entry in classification result
183 #       OrigParents = [ subset of Parents ]
184 #
185 #   BreakwaterUpstreamMerge
186 #     has additional entry in classification result
187 #       OrigParents = [ subset of Parents ]
188
189 sub classify ($) {
190     my ($objid) = @_;
191
192     my ($h,$m) = get_commit $objid;
193
194     my ($t) = $h =~ m/^tree (\w+)$/m or die $cur;
195     my (@ph) = $h =~ m/^parent (\w+)$/m;
196     my @p;
197
198     my $r = {
199         CommitId => $objid,
200         Hdr => $hdr,
201         Msg => $m,
202         Tree => $t,
203         Parents => \@p,
204     };
205
206     foreach my $ph (@ph) {
207         push @p, {
208             Ix => $#p,
209             CommitId => $ph,
210             Differs => (get_differs $t, $ph),
211         };
212     }
213
214     my $classify = sub {
215         my ($type, @rest) = @_;
216         $r = { %r, Type => $type, @rest };
217         return $r;
218     };
219     my $unknown = sub {
220         my ($why) = @_;
221         $r = { %r, Type => Unknown };
222         return $r;
223     }
224
225     if (@p == 1) {
226         my $d = $r->{Parents}[0]{Differs};
227         if ($d == D_DPAT_ADD) {
228             return $classify->(qw(AddPatches));
229         } elsif ($d & (D_DPAT_ADD|D_DPAT_OTH)) {
230             return $unknown->("edits debian/patches");
231         } elsif ($d == D_DEB) {
232             return $classify->(qw(Packaging));
233         } elsif ($d == D_UPS) {
234             return $classify->(qw(Upstream));
235         } elsif ($d == D_DEB|D_UPS) {
236             return $classify->(qw(Mixed));
237         } elsif ($d == 0) {
238             return $unknown->("no changes");
239         } else {
240             confess "internal error $objid ?";
241         }
242     }
243     if (!@p) {
244         return $unknown->("origin commit");
245     }
246
247     my @identical = grep { !$_->{Differs} } @p;
248     if (@p == 2 && @identical == 1) {
249         my @overwritten = grep { $_->{Differs} } @p;
250         confess "internal error $objid ?" unless @overwritten==1;
251         return $classify->(qw(Pseudomerge),
252                            Overwritten => $overwritten[0],
253                            Contributor => $identical[0]);
254     }
255     if (@p == 2 && @identical == 2) {
256         my @bytime = nsort_by {
257             my ($ph,$pm) = get_commit $_->{CommitId};
258             $ph =~ m/^committer .* (\d+) [-+]\d+$/m or die "$_->{CommitId} ?";
259             $1;
260         } @p;
261         return $classify->(qw(Pseudomerge),
262                            SubType => qw(Ambiguous),
263                            Overwritten => $bytime[0],
264                            Contributor => $bytime[1]);
265     }!
266     foreach my $p (@p) {
267         my ($p_h, $p_m) = get_commit $p;
268         $p->{IsOrigin} = $p_h !~ m/^parent \w+$/m;
269         ($p->{IsDgitImport},) = $p_m =~ m/^\[dgit import ([0-9a-z]+) .*\]$/m;
270     }
271     my @orig_ps = grep { ($_->{IsDgitImport}//'X') eq 'orig' };
272     my $m2 = $m;
273     if (!(grep { !$_->{IsOrigin} } @p) and
274         (@origs >= @p - 1) and
275         $m2 =~ s{^\[(dgit import unpatched .*)\]$}{[was: $1]}m) {
276         $r->{NewMsg} = $m2;
277         return $classify->(qw(DgitImportUnpatched),
278                            OrigParents => \@orig_ps);
279     }
280
281     my ($stype, $series) = git_cat_file "$t:debian/patches/series";
282     my $haspatches = $stype ne 'missing' && $series =~ m/^\s*[^#\n\t ]/m;
283
284     # How to decide about l/r ordering of breakwater merges ?  git
285     # --topo-order prefers to expand 2nd parent first.  There's
286     # already an easy rune to look for debian/ history anyway (git log
287     # debian/) so debian breakwater branch should be 1st parent; that
288     # way also there's also an easy rune to look for the upstream
289     # patches (--topo-order).
290     if (@p == 2 &&
291         !$haspatches &&
292         !$p[0]{IsOrigin} && # breakwater merge never starts with an origin
293         !($p[0]{Differs} & ~D_DEB) &&
294         !($p[1]{Differs} & ~D_UPS)) {
295         return $classify->(qw(BreakwaterUpstreamMerge),
296                            OrigParents => [ $p[1] ]);
297     }
298     # xxx multi-.orig upstreams
299
300     return $unknown->("complex merge");
301 }
302
303 sub walk ($;$$$$) {
304     my ($input,
305         $nogenerate,$report,
306         $wantdebonly,$depth) = @_;
307     # go through commits backwards
308     # we generate two lists of commits to apply
309     # => ($tip, $breakwater_tip)
310     my (@deb_cl, @ups_cl, @processed);
311     my %found;
312     my @pseudomerges;
313
314     $depth //= 0;
315
316     my $cl;
317     my $xmsg = sub {
318         my ($appendinfo) = @_;
319         my $ms = $cl->{Msg};
320         chomp $ms;
321         $ms .= "\n\n[git-debrebase $appendinfo]\n";
322         return (Msg => $ms);
323     };
324     my $rewrite_from_here = sub {
325         push @processed, { SpecialMethod => 'StartRewrite' };
326     };
327
328     my $cur = $input;
329
330     my $prdelim = "";
331     my $prprdelim = sub { print $report $prdelim if $report; $prdelim=""; }
332
333     for (;;) {
334         $cl = classify $cur;
335         my $ty = $cl->{Type};
336         my $st = $cl->{SubType};
337         if ($report) {
338             print $report $prdelim, "$cl->{CommitId} $cl->{Type}";
339             $prdelim = "\n";
340         }
341         $found{$ty. ( defined($st) ? "-$st" : '' )}++;
342         push @processed, $cl;
343         my $p0 = $cl->{Parents}[0]{CommitId};
344         if ($ty eq 'AddPatches') {
345             $cur = $p0;
346             $rewrite_from_here->();
347             next;
348         } elsif ($ty eq 'Packaging') {
349             push @deb_cl, $cl;
350             $cur = $p0;
351             next;
352         } elsif ($ty eq 'Upstream') {
353             push @ups_cl, $cl;
354             $cur = $p0;
355             next;
356         } elsif ($ty eq 'Mixed') {
357             my $queue = sub {
358                 my ($q, $wh) = @_;
359                 my $cls = { $cl, $xmsg->("split mixed commit: $wh part") };
360                 push @$q, $cls;
361             };
362             $queue->(\@deb_cl, "debian");
363             $queue->(\@ups_cl, "upstream");
364             $rewrite_from_here->();
365             next;
366         } elsif ($ty eq 'Pseudomerge') {
367             print $report " Contributor=$ty->{Contributor}" if $report;
368             push @pseudomerges, $cl;
369             $rewrite_from_here->();
370             $cur = $ty->{Contributor};
371             next;
372         } elsif ($ty eq 'BreakwaterUpstreamMerge') {
373             $basis = $cur;
374             last;
375         } elsif ($ty eq 'DgitImportUnpatched' &&
376                  @pseudomerges == 1) {
377             # This import has a tree which is just like a breakwater
378             # tree, but it has the wrong history.  Its ought to have
379             # the previous breakwater (which dgit ought to have
380             # generated a pseudomerge to overwrite) as an ancestor.
381             # That will make the history of the debian/ files correct.
382             # As for the upstream version: either it's the same upstream
383             # as the previous breakwater, in which case that history is
384             # precisely right.  Otherwise, it was a non-gitish upload
385             # of a new upstream version.  We can tell these apart
386             # by looking at the tree of the supposed upstream.
387             my $differs = get_differs $previous_breakwater, $cl->{Tree};
388             printf $report " Differs=%#x", $differs if $report;
389             if ($differs & D_UPS) {
390                 printf $report " D_UPS" if $report;
391                 push @deb_cl, {
392                     %r,
393                     SpecialMethod => 'DgitImportUpstreamUpdate',
394                     $xmsg->("convert dgit import: debian changes")
395                 };
396             }
397             push @deb_cl, {
398                 %r,
399                 SpecialMethod => 'DgitImportDebianUpdate',
400                 $xmsg->("convert dgit import: upstream changes")
401             };
402             $prprdelim->();
403             $basis = walk
404                 $pseudomerges[0]{Overwritten},
405                 $nogenerate, $report,
406                 1, $depth+1;
407             $rewrite_from_here->();
408             last;
409         } else {
410             print $report " Unprocessable" if $report;
411             $prprdelim->();
412             if ($nogenerate) {
413                 return (undef,undef);
414             }
415             die "commit $cur: Cannot cope with this commit";
416         }
417     }
418     $prprdelim->();
419     if ($nogenerate) {
420         return (undef, $basis);
421     }
422
423     # Now we build it back up again
424
425     workarea_fresh();
426
427     my $rewriting = 0;
428
429     my $build = $basis;
430
431     my $rm_tree_cached = sub {
432         my ($subdir) = @_;
433         runcmd @git, qw(rm --quiet -rf --cached), $subdir;
434     };
435     my $read_tree_debian = sub {
436         my ($treeish) = @_;
437         $rm_tree_cached->(qw(debian));
438         runcmd @git, qw(read-tree --prefix=debian/), "$treeish:debian";
439     };
440     my $read_tree_upstream = sub {
441         my ($treeish) = @_;
442         runcmd @git, qw(read-tree), $treeish;
443         $read_tree_debian->($build);
444     };
445  
446     my $committer_authline = calculate_committer_authline();
447
448     in_workarea sub {
449         mkdir $rd or $!==EEXIST or die $!;
450         my $current_method;
451         foreach my $cl (qw(Debian), (reverse @deb_cl),
452                         { SpecialMethod => 'RecordBreakwaterTip' },
453                         qw(Upstream), (reverse @ups_cl)) {
454             if (!ref $cl) {
455                 $current_method = $cl;
456                 next;
457             }
458             $method = $cl->{SpecialMethod} // $current_method;
459             my @parents = ($build);
460             my $cltree = $cl->{CommitId}
461             if ($method eq 'Debian') {
462                 $read_tree_debian->($cltree);
463             } elsif ($method eq 'Upstream') {
464                 $read_tree_upstream->($cltree);
465             } elsif ($method eq 'StartRewrite') {
466                 $rewriting = 1;
467                 next;
468             } elsif ($method eq 'RecordBreakwaterTip') {
469                 last if $wantdebonly;
470                 $breakwater = $build;
471                 next;
472             } elsif ($method eq 'DgitImportDebianUpdate') {
473                 $read_tree_debian->($cltree);
474                 $rm_tree_cached(qw(debian/patches));
475             } elsif ($method eq 'DgitImportUpstreamUpdate') {
476                 $read_tree_upstream->($cltree);
477                 push @parents, map { $_->{CommitId} } @{ $cl->{OrigParents} };
478             } else {
479                 confess "$method ?";
480             }
481             $rewriting ||= $cl ne pop @processed;
482             my $newtree = cmdoutput @git, qw(write-tree);
483             my $ch = $cl->{Hdr};
484             $ch =~ s{^tree .*}{tree $newtree}m or confess "$ch ?";
485             $ch =~ s{^parent .*\n}{}m;
486             $ch =~ s{(?=^author}{
487                 map { "parent $_\n" } @parents
488             }me or confess "$ch ?";
489             if ($rewrite) {
490                 $ch =~ s{^committer .*$}{$committer_authline}m
491                     or confess "$ch ?";
492             }
493             my $cf = "$rd/m$rewrite"
494                 open CD, ">", $cf or die $!;
495             print CD $ch, "\n", $cl->{Msg}; or die $!;
496             close CD or die $!;
497             my @cmd = (@git, qw(hash-object));
498             push @cmd, qw(-w) if $rewrite;
499             push @cmd, qw(-t commit), $cf;
500             my $newcommit = cmdoutput @cmd;
501             confess "$ch ?" unless $rewrite or $newcommit eq $cl->{CommitId};
502             $build = $newcommit;
503         }
504     };
505
506     runcmd @git, qw(diff-tree --quiet),
507         map { $wantdebonly ? "$_:debian" : $_ },
508         $input, $build;
509
510     return ($build, $breakwater);
511 }
512
513 sub get_head () { return git_rev_parse qw(HEAD); }
514
515 sub update_head ($$) {
516     my ($old, $new, $mrest) = @_;
517     runcmd @git, qw(update-ref -m), "git-debrebase $mrest", $new, $old;
518 }
519
520 sub cmd_launder () {
521     badusage "no arguments to launder allowed";
522     my $old = get_head();
523     my ($tip,$breakwater) = walk $old;
524     update_head $old, $tip, 'launder';
525     # no tree changes except debian/patches
526     runcmd @git, qw(rm --quiet -rf debian/patches);
527     printf "# breakwater tip\n%s\n", $breakwater;
528 }
529
530 sub cmd_analyse () {
531     die if ($ARGV[0]//'') =~ m/^-/;
532     badusage "too many arguments to analyse" if @ARGV>1;
533     my ($old) = @ARGV;
534     if (defined $old) {
535         $old = git_rev_parse $old;
536     } else {
537         $old = get_head();
538     }
539     my ($dummy,$breakwater) = walk $old, 1,*STDOUT;
540     print "$breakwater BREAKWATER\n";
541     STDOUT->error and die $!;
542 }
543
544 my $toplevel = runcmd @git, qw(rev-parse --show-toplevel);
545 chdir $toplevel or die "chdir $toplevel: $!";
546
547 my $cmd = shift @ARGV;
548 my $cmdfn = $cmd;
549 $cmdfn =~ y/-/_/;
550 $cmdfn = ${*::}{"cmd_$cmdfn"};
551
552 $cmdfn or badusage "unknown git-debrebase sub-operation $cmd";
553 $cmdfn->();