chiark / gitweb /
git-debrebase: git-debrebase; get_commit: use new $etype
[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 Carp;
109 use POSIX;
110 use Data::Dumper;
111 use Getopt::Long qw(:config posix_default gnu_compat bundling);
112
113 use Debian::Dgit qw(:DEFAULT $wa);
114
115 sub badusage ($) {
116     my ($m) = @_;
117     die "bad usage: $m\n";
118 }
119
120 sub cfg ($) {
121     my ($k) = @_;
122     $/ = "\0";
123     my @cmd = qw(git config -z);
124     push @cmd, qw(--get-all) if wantarray;
125     push @cmd, $k;
126     my $out = cmdoutput @cmd;
127     return split /\0/, $out;
128 }
129
130 memoize('cfg');
131
132 sub get_commit ($) {
133     my ($objid) = @_;
134     my $data = git_cat_file $objid, 'commit';
135     $data =~ m/(?<=\n)\n/ or die "$objid ($data) ?";
136     return ($`,$');
137 }
138
139 sub D_DEB ()     { return 0x1; } # debian/ (not including debian/patches/)
140 sub D_UPS ()     { return 0x2; } # upstream files
141 sub D_PAT_ADD () { return 0x4; } # debian/patches/ extra patches at end
142 sub D_PAT_OTH () { return 0x8; } # debian/patches other changes
143
144 our $rd = ".git/git-debrebase";
145 our $ud = "$rd/work";
146 our @git = qw(git);
147
148 sub get_differs ($$) {
149     my ($x,$y) = @_;
150     # This resembles quiltify_trees_differ, in dgit, a bit.
151     # But we don't care about modes, or dpkg-source-unrepresentable
152     # changes, and we don't need the plethora of different modes.
153     # Conversely we need to distinguish different kinds of changes to
154     # debian/ and debian/patches/.
155
156     my $differs = 0;
157
158     my $rundiff = sub {
159         my ($opts, $limits, $fn) = @_;
160         my @cmd = (@git, qw(diff-tree -z --no-renames));
161         push @cmd, @$opts;
162         push @cmd, "$_:" foreach $x, $y;
163         push @cmd, @$limits;
164         my $diffs = cmdoutput @cmd;
165         foreach (split /\0/, $diffs) { $fn->(); }
166     };
167
168     $rundiff->([qw(--name-only)], [], sub {
169         $differs |= $_ eq 'debian' ? D_DEB : D_UPS;
170     });
171
172     if ($differs & D_DEB) {
173         $differs &= ~D_DEB;
174         $rundiff->([qw(--name-only -r)], [qw(debian)], sub {
175             $differs |= $_ eq m{^debian/patches/} ? D_PAT_OTH : D_DEB;
176         });
177         die "mysterious debian changes $x..$y"
178             unless $differs & (D_PAT_OTH|D_DEB);
179     }
180
181     if ($differs & D_PAT_OTH) {
182         my $mode;
183         $differs &= ~D_PAT_OTH;
184         my $pat_oth = sub {
185             $differs |= D_PAT_OTH;
186             no warnings qw(exiting);  last;
187         };
188         $rundiff->([qw(--name-status -r)], [qw(debian/patches/)], sub {
189             no warnings qw(exiting);
190             if (!defined $mode) {
191                 $mode = $_;  next;
192             }
193             die unless s{^debian/patches/}{};
194             my $ok;
195             if ($mode eq 'A' && !m/(?:^|\.)series$/s) {
196                 $ok = 1;
197             } elsif ($mode eq 'M' && $_ eq 'series') {
198                 my $x_s = git_cat_file "$x:debian/patches/series", 'blob';
199                 my $y_s = git_cat_file "$y:debian/patches/series", 'blob';
200                 chomp $x_s;  $x_s .= "\n";
201                 $ok = $x_s eq substr($y_s, 0, length $x_s);
202             } else {
203                 # nope
204             }
205             $mode = undef;
206             $differs |= $ok ? D_PAT_ADD : D_PAT_OTH;
207         });
208         die "mysterious debian/patches changes $x..$y"
209             unless $differs & (D_PAT_ADD|D_PAT_OTH);
210     }
211
212     printdebug sprintf "get_differs %s, %s = %#x\n", $x, $y, $differs;
213
214     return $differs;
215 }
216
217 sub commit_pr_info ($) {
218     my ($r) = @_;
219     return Data::Dumper->dump([$r], [qw(commit)]);
220 }
221
222 sub calculate_committer_authline () {
223     my $c = cmdoutput @git, qw(commit-tree --no-gpg-sign -m),
224         'DUMMY COMMIT (git-debrebase)', "HEAD:";
225     my ($h,$m) = get_commit $c;
226     $h =~ m/^committer .*$/m or confess "($h) ?";
227     return $&;
228 }
229
230 # classify returns an info hash like this
231 #   CommitId => $objid
232 #   Hdr => # commit headers, including 1 final newline
233 #   Msg => # commit message (so one newline is dropped)
234 #   Tree => $treeobjid
235 #   Type => (see below)
236 #   Parents = [ {
237 #       Ix => $index # ie 0, 1, 2, ...
238 #       CommitId
239 #       Differs => return value from get_differs
240 #       IsOrigin
241 #       IsDggitImport => 'orig' 'tarball' 'unpatched' 'package' (as from dgit)
242 #     } ...]
243 #   NewMsg => # commit message, but with any [dgit import ...] edited
244 #             # to say "[was: ...]"
245 #
246 # Types:
247 #   Packaging
248 #   Upstream
249 #   AddPatches
250 #   Mixed
251 #   Unknown
252 #
253 #   Pseudomerge
254 #     has additional entres in classification result
255 #       Overwritten = [ subset of Parents ]
256 #       Contributor = $the_remaining_Parent
257 #
258 #   DgitImportUnpatched
259 #     has additional entry in classification result
260 #       OrigParents = [ subset of Parents ]
261 #
262 #   BreakwaterUpstreamMerge
263 #     has additional entry in classification result
264 #       OrigParents = [ subset of Parents ]
265
266 sub classify ($) {
267     my ($objid) = @_;
268
269     my ($h,$m) = get_commit $objid;
270
271     my ($t) = $h =~ m/^tree (\w+)$/m or die $objid;
272     my (@ph) = $h =~ m/^parent (\w+)$/mg;
273     my @p;
274
275     my $r = {
276         CommitId => $objid,
277         Hdr => $h,
278         Msg => $m,
279         Tree => $t,
280         Parents => \@p,
281     };
282
283     foreach my $ph (@ph) {
284         push @p, {
285             Ix => $#p,
286             CommitId => $ph,
287             Differs => (get_differs $t, $ph),
288         };
289     }
290
291     printdebug "classify $objid \$t=$t \@p",
292         (map { sprintf " %s/%#x", $_->{CommitId}, $_->{Differs} } @p),
293         "\n";
294
295     my $classify = sub {
296         my ($type, @rest) = @_;
297         $r = { %$r, Type => $type, @rest };
298         if ($debuglevel) {
299             my $dd = new Data::Dumper [ $r ];
300             Terse $dd 1; Indent $dd 0; Useqq $dd 1;
301             printdebug " = $type ".(Dump $dd)."\n";
302         }
303         return $r;
304     };
305     my $unknown = sub {
306         my ($why) = @_;
307         $r = { %$r, Type => qw(Unknown) };
308         printdebug " ** Unknown\n";
309         return $r;
310     };
311
312     if (@p == 1) {
313         my $d = $r->{Parents}[0]{Differs};
314         if ($d == D_PAT_ADD) {
315             return $classify->(qw(AddPatches));
316         } elsif ($d & (D_PAT_ADD|D_PAT_OTH)) {
317             return $unknown->("edits debian/patches");
318         } elsif ($d == D_DEB) {
319             my ($ty,$dummy) = git_cat_file "$ph[0]:debian";
320             if ($ty eq 'tree') {
321                 return $classify->(qw(Packaging));
322             } elsif ($ty eq 'missing') {
323                 return $classify->(qw(BreakwaterStart));
324             } else {
325                 return $unknown->("parent's debian is not a directory");
326             }
327         } elsif ($d == D_UPS) {
328             return $classify->(qw(Upstream));
329         } elsif ($d == (D_DEB|D_UPS)) {
330             return $classify->(qw(Mixed));
331         } elsif ($d == 0) {
332             return $unknown->("no changes");
333         } else {
334             confess "internal error $objid ?";
335         }
336     }
337     if (!@p) {
338         return $unknown->("origin commit");
339     }
340
341     my @identical = grep { !$_->{Differs} } @p;
342     if (@p == 2 && @identical == 1) {
343         my @overwritten = grep { $_->{Differs} } @p;
344         confess "internal error $objid ?" unless @overwritten==1;
345         return $classify->(qw(Pseudomerge),
346                            Overwritten => $overwritten[0],
347                            Contributor => $identical[0]);
348     }
349     if (@p == 2 && @identical == 2) {
350         my @bytime = nsort_by {
351             my ($ph,$pm) = get_commit $_->{CommitId};
352             $ph =~ m/^committer .* (\d+) [-+]\d+$/m or die "$_->{CommitId} ?";
353             $1;
354         } @p;
355         return $classify->(qw(Pseudomerge),
356                            SubType => qw(Ambiguous),
357                            Overwritten => $bytime[0],
358                            Contributor => $bytime[1]);
359     }
360     foreach my $p (@p) {
361         my ($p_h, $p_m) = get_commit $p;
362         $p->{IsOrigin} = $p_h !~ m/^parent \w+$/m;
363         ($p->{IsDgitImport},) = $p_m =~ m/^\[dgit import ([0-9a-z]+) .*\]$/m;
364     }
365     my @orig_ps = grep { ($_->{IsDgitImport}//'X') eq 'orig' } @p;
366     my $m2 = $m;
367     if (!(grep { !$_->{IsOrigin} } @p) and
368         (@orig_ps >= @p - 1) and
369         $m2 =~ s{^\[(dgit import unpatched .*)\]$}{[was: $1]}m) {
370         $r->{NewMsg} = $m2;
371         return $classify->(qw(DgitImportUnpatched),
372                            OrigParents => \@orig_ps);
373     }
374
375     my ($stype, $series) = git_cat_file "$t:debian/patches/series";
376     my $haspatches = $stype ne 'missing' && $series =~ m/^\s*[^#\n\t ]/m;
377
378     # How to decide about l/r ordering of breakwater merges ?  git
379     # --topo-order prefers to expand 2nd parent first.  There's
380     # already an easy rune to look for debian/ history anyway (git log
381     # debian/) so debian breakwater branch should be 1st parent; that
382     # way also there's also an easy rune to look for the upstream
383     # patches (--topo-order).
384     if (@p == 2 &&
385         !$haspatches &&
386         !$p[0]{IsOrigin} && # breakwater merge never starts with an origin
387         !($p[0]{Differs} & ~D_DEB) &&
388         !($p[1]{Differs} & ~D_UPS)) {
389         return $classify->(qw(BreakwaterUpstreamMerge),
390                            OrigParents => [ $p[1] ]);
391     }
392     # xxx multi-.orig upstreams
393
394     return $unknown->("complex merge");
395 }
396
397 sub walk ($;$$);
398 sub walk ($;$$) {
399     my ($input,
400         $nogenerate,$report) = @_;
401     # => ($tip, $breakwater_tip)
402     # (or nothing, if $nogenerate)
403
404     # go through commits backwards
405     # we generate two lists of commits to apply:
406     # breakwater branch and upstream patches
407     my (@brw_cl, @upp_cl, @processed);
408     my %found;
409     my $upp_limit;
410     my @pseudomerges;
411
412     my $cl;
413     my $xmsg = sub {
414         my ($appendinfo) = @_;
415         my $ms = $cl->{Msg};
416         chomp $ms;
417         $ms .= "\n\n[git-debrebase $appendinfo]\n";
418         return (Msg => $ms);
419     };
420     my $rewrite_from_here = sub {
421         my $sp_cl = { SpecialMethod => 'StartRewrite' };
422         push @brw_cl, $sp_cl;
423         push @processed, $sp_cl;
424     };
425     my $cur = $input;
426
427     my $prdelim = "";
428     my $prprdelim = sub { print $report $prdelim if $report; $prdelim=""; };
429
430     my $prline = sub {
431         return unless $report;
432         print $report $prdelim, @_;
433         $prdelim = "\n";
434     };
435
436     my $bomb = sub { # usage: return $bomb->();
437         print $report " Unprocessable" if $report;
438         $prprdelim->();
439         if ($nogenerate) {
440             return (undef,undef);
441         }
442         die "commit $cur: Cannot cope with this commit";
443     };
444
445     my $build;
446     my $breakwater;
447
448     my $build_start = sub {
449         my ($msg, $parent) = @_;
450         $prline->(" $msg");
451         $build = $parent;
452         no warnings qw(exiting); last;
453     };
454
455     for (;;) {
456         $cl = classify $cur;
457         my $ty = $cl->{Type};
458         my $st = $cl->{SubType};
459         $prline->("$cl->{CommitId} $cl->{Type}");
460         $found{$ty. ( defined($st) ? "-$st" : '' )}++;
461         push @processed, $cl;
462         my $p0 = @{ $cl->{Parents} }==1 ? $cl->{Parents}[0]{CommitId} : undef;
463         if ($ty eq 'AddPatches') {
464             $cur = $p0;
465             $rewrite_from_here->();
466             next;
467         } elsif ($ty eq 'Packaging') {
468             push @brw_cl, $cl;
469             $cur = $p0;
470             next;
471         } elsif ($ty eq 'BreakwaterStart') {
472             $build_start->('FirstPackaging', $cur);
473         } elsif ($ty eq 'Upstream') {
474             push @upp_cl, $cl;
475             $cur = $p0;
476             next;
477         } elsif ($ty eq 'Mixed') {
478             my $queue = sub {
479                 my ($q, $wh) = @_;
480                 my $cls = { $cl, $xmsg->("split mixed commit: $wh part") };
481                 push @$q, $cls;
482             };
483             $queue->(\@brw_cl, "debian");
484             $queue->(\@upp_cl, "upstream");
485             $rewrite_from_here->();
486             $cur = $p0;
487             next;
488         } elsif ($ty eq 'Pseudomerge') {
489             my $contrib = $cl->{Contributor}{CommitId};
490             print $report " Contributor=$contrib" if $report;
491             push @pseudomerges, $cl;
492             $rewrite_from_here->();
493             $cur = $contrib;
494             next;
495         } elsif ($ty eq 'BreakwaterUpstreamMerge') {
496             $build_start->("PreviousBreakwater", $cur);
497         } elsif ($ty eq 'DgitImportUnpatched') {
498             my $pm = $pseudomerges[-1];
499             if (defined $pm) {
500                 # To an extent, this is heuristic.  Imports don't have
501                 # a useful history of the debian/ branch.  We assume
502                 # that the first pseudomerge after an import has a
503                 # useful history of debian/, and ignore the histories
504                 # from later pseudomerges.  Often the first pseudomerge
505                 # will be the dgit import of the upload to the actual
506                 # suite intended by the non-dgit NMUer, and later
507                 # pseudomerges may represent in-archive copies.
508                 my $ovwrs = $pm->{Overwritten};
509                 printf $report " PM=%s \@Overwr:%d", $pm, (scalar @$ovwrs)
510                     if $report;
511                 if (@$ovwrs != 1) {
512                     return $bomb->();
513                 }
514                 my $ovwr = $ovwrs->[0]{CommitId};
515                 printf $report " Overwr=%s", $ovwr if $report;
516                 # This import has a tree which is just like a
517                 # breakwater tree, but it has the wrong history.  It
518                 # ought to have the previous breakwater (which the
519                 # pseudomerge overwrote) as an ancestor.  That will
520                 # make the history of the debian/ files correct.  As
521                 # for the upstream version: either it's the same as
522                 # was ovewritten (ie, same as the previous
523                 # breakwater), in which case that history is precisely
524                 # right; or, otherwise, it was a non-gitish upload of a
525                 # new upstream version.  We can tell these apart by
526                 # looking at the tree of the supposed upstream.
527                 push @brw_cl, {
528                     %$cl,
529                     SpecialMethod => 'DgitImportDebianUpdate',
530                     $xmsg->("convert dgit import: debian changes")
531                 };
532                 my $differs = (get_differs $ovwr, $cl->{Tree});
533                 printf $report " Differs=%#x", $differs if $report;
534                 if ($differs & D_UPS) {
535                     printf $report " D_UPS" if $report;
536                     # This will also trigger if a non-dgit git-based NMU
537                     # deleted .gitignore (which is a thing that some of
538                     # the existing git tools do if the user doesn't
539                     # somehow tell them not to).  Ah well.
540                     push @brw_cl, {
541                         %$cl,
542                         SpecialMethod => 'DgitImportUpstreamUpdate',
543                         $xmsg->("convert dgit import: upstream changes")
544                     };
545                 }
546                 $prline->(" Import");
547                 $rewrite_from_here->();
548                 $upp_limit //= $#upp_cl; # further, deeper, patches discarded
549                 $cur = $ovwr;
550                 next;
551             } else {
552                 # Everything is from this import.  This kind of import
553                 # is already in valid breakwater format, with the
554                 # patches as commits.
555                 printf $report " NoPM" if $report;
556                 # last thing we processed will have been the first patch,
557                 # if there is one; which is fine, so no need to rewrite
558                 # on account of this import
559                 $build_start->("ImportOrigin", $cur);
560             }
561             die "$ty ?";
562         } else {
563             return $bomb->();
564         }
565     }
566     $prprdelim->();
567     return if $nogenerate;
568
569     # Now we build it back up again
570
571     workarea_fresh();
572
573     my $rewriting = 0;
574
575     my $rm_tree_cached = sub {
576         my ($subdir) = @_;
577         runcmd @git, qw(rm --quiet -rf --cached), $subdir;
578     };
579     my $read_tree_debian = sub {
580         my ($treeish) = @_;
581         $rm_tree_cached->(qw(debian));
582         runcmd @git, qw(read-tree --prefix=debian/), "$treeish:debian";
583     };
584     my $read_tree_upstream = sub {
585         my ($treeish) = @_;
586         runcmd @git, qw(read-tree), $treeish;
587         $read_tree_debian->($build);
588     };
589  
590     my $committer_authline = calculate_committer_authline();
591
592     in_workarea sub {
593         mkdir $rd or $!==EEXIST or die $!;
594         my $current_method;
595         foreach my $cl (qw(Debian), (reverse @brw_cl),
596                         { SpecialMethod => 'RecordBreakwaterTip' },
597                         qw(Upstream), (reverse @upp_cl)) {
598             if (!ref $cl) {
599                 $current_method = $cl;
600                 next;
601             }
602             my $method = $cl->{SpecialMethod} // $current_method;
603             my @parents = ($build);
604             my $cltree = $cl->{CommitId};
605             if ($method eq 'Debian') {
606                 $read_tree_debian->($cltree);
607             } elsif ($method eq 'Upstream') {
608                 $read_tree_upstream->($cltree);
609             } elsif ($method eq 'StartRewrite') {
610                 $rewriting = 1;
611                 next;
612             } elsif ($method eq 'RecordBreakwaterTip') {
613                 $breakwater = $build;
614                 next;
615             } elsif ($method eq 'DgitImportDebianUpdate') {
616                 $read_tree_debian->($cltree);
617                 $rm_tree_cached->(qw(debian/patches));
618             } elsif ($method eq 'DgitImportUpstreamUpdate') {
619                 $read_tree_upstream->($cltree);
620                 push @parents, map { $_->{CommitId} } @{ $cl->{OrigParents} };
621             } else {
622                 confess "$method ?";
623             }
624             $rewriting ||= $cl ne pop @processed;
625             my $newtree = cmdoutput @git, qw(write-tree);
626             my $ch = $cl->{Hdr};
627             $ch =~ s{^tree .*}{tree $newtree}m or confess "$ch ?";
628             $ch =~ s{^parent .*\n}{}m;
629             $ch =~ s{(?=^author)}{
630                 map { "parent $_\n" } @parents
631             }me or confess "$ch ?";
632             if ($rewriting) {
633                 $ch =~ s{^committer .*$}{$committer_authline}m
634                     or confess "$ch ?";
635             }
636             my $cf = "$rd/m$rewriting";
637             open CD, ">", $cf or die $!;
638             print CD $ch, "\n", $cl->{Msg} or die $!;
639             close CD or die $!;
640             my @cmd = (@git, qw(hash-object));
641             push @cmd, qw(-w) if $rewriting;
642             push @cmd, qw(-t commit), $cf;
643             my $newcommit = cmdoutput @cmd;
644             confess "$ch ?" unless $rewriting or $newcommit eq $cl->{CommitId};
645             $build = $newcommit;
646         }
647     };
648
649     runcmd @git, qw(diff-tree --quiet), $input, $build;
650
651     return ($build, $breakwater);
652 }
653
654 sub get_head () { return git_rev_parse qw(HEAD); }
655
656 sub update_head ($$$) {
657     my ($old, $new, $mrest) = @_;
658     runcmd @git, qw(update-ref -m), "git-debrebase $mrest", $new, $old;
659 }
660
661 sub cmd_launder () {
662     badusage "no arguments to launder allowed";
663     my $old = get_head();
664     my ($tip,$breakwater) = walk $old;
665     update_head $old, $tip, 'launder';
666     # no tree changes except debian/patches
667     runcmd @git, qw(rm --quiet -rf debian/patches);
668     printf "# breakwater tip\n%s\n", $breakwater;
669 }
670
671 sub cmd_analyse () {
672     die if ($ARGV[0]//'') =~ m/^-/;
673     badusage "too many arguments to analyse" if @ARGV>1;
674     my ($old) = @ARGV;
675     if (defined $old) {
676         $old = git_rev_parse $old;
677     } else {
678         $old = get_head();
679     }
680     my ($dummy,$breakwater) = walk $old, 1,*STDOUT;
681     STDOUT->error and die $!;
682 }
683
684 GetOptions("D+" => \$debuglevel) or die badusage "bad options\n";
685 initdebug('git-debrebase ');
686 enabledebug if $debuglevel;
687
688 my $toplevel = cmdoutput @git, qw(rev-parse --show-toplevel);
689 chdir $toplevel or die "chdir $toplevel: $!";
690
691 my $cmd = shift @ARGV;
692 my $cmdfn = $cmd;
693 $cmdfn =~ y/-/_/;
694 $cmdfn = ${*::}{"cmd_$cmdfn"};
695
696 $cmdfn or badusage "unknown git-debrebase sub-operation $cmd";
697 $cmdfn->();