2 # Maintain "what's cooking" messages
6 my %reverts = ('next' => {
14 my (@u) = grep { $uniq{$_}++ == 0 } sort @_;
16 for (my $i = 0; $i < @u; $i++) {
20 } elsif ($i < @u - 2) {
27 sub describe_relation
{
28 my ($topic_info) = @_;
31 if (exists $topic_info->{'used'}) {
32 push @desc, ("is used by " .
33 phrase_these
(@
{$topic_info->{'used'}}));
36 if (exists $topic_info->{'uses'}) {
37 push @desc, ("uses " .
38 phrase_these
(@
{$topic_info->{'uses'}}));
41 if (exists $topic_info->{'shares'}) {
42 push @desc, ("is tangled with " .
43 phrase_these
(@
{$topic_info->{'shares'}}));
50 return "(this branch " . join("; ", @desc) . ".)";
54 my ($topic, $fork, $forkee, @overlap) = @_;
55 my %ovl = map { $_ => 1 } (@overlap, @
{$topic->{$forkee}{'log'}});
57 push @
{$topic->{$fork}{'uses'}}, $forkee;
58 push @
{$topic->{$forkee}{'used'}}, $fork;
59 @
{$topic->{$fork}{'log'}} = (grep { !exists $ovl{$_} }
60 @
{$topic->{$fork}{'log'}});
64 my ($topic, $one, $two) = @_;
68 qw(git log --abbrev=7), "--format=%m %h",
69 "$one...$two", "^master")
70 or die "$!: open log --left-right";
73 my ($sign, $sha1) = /^(.) (.*)/;
76 } elsif ($sign eq '>') {
80 close($fh) or die "$!: close log --left-right";
84 forks_from
($topic, $two, $one);
87 forks_from
($topic, $one, $two);
89 push @
{$topic->{$one}{'shares'}}, $two;
90 push @
{$topic->{$two}{'shares'}}, $one;
95 Inspect the current set of topics
101 'tipdate' => date of the tip commit,
102 'desc' => description string,
103 'log' => [ $commit,... ],
110 my (@base) = qw(master next pu);
113 qw(git for-each-ref),
114 "--format=%(refname:short) %(committerdate:iso8601)",
116 or die "$!: open for-each-ref";
122 my ($branch, $date) = /^(\S+) (.*)$/;
123 push @topic, $branch;
130 close($fh) or die "$!: close for-each-ref";
132 my %base = map { $_ => undef } @base;
134 my $show_branch_batch = 20;
137 my @t = (@base, splice(@topic, 0, $show_branch_batch));
138 my $header_delim = '-' x
scalar(@t);
139 my $contain_pat = '.' x
scalar(@t);
140 open($fh, '-|', qw(git show-branch --sparse --sha1-name),
141 map { "refs/heads/$_" } @t)
142 or die "$!: open show-branch";
146 if (/^$header_delim$/) {
147 $header_delim = undef;
151 my ($contain, $sha1, $log) =
152 ($_ =~ /^($contain_pat) \[([0-9a-f]+)\] (.*)$/);
154 for (my $i = 0; $i < @t; $i++) {
156 my $sign = substr($contain, $i, 1);
157 next if ($sign eq ' ');
158 next if (substr($contain, 0, 1) ne ' ');
160 if (!exists $commit{$sha1}) {
166 my $co = $commit{$sha1};
167 if (!exists $reverts{$branch}{$sha1}) {
168 $co->{'branch'}{$branch} = 1;
170 next if (exists $base{$branch});
171 push @
{$topic{$branch}{'log'}}, $sha1;
174 close($fh) or die "$!: close show-branch";
178 for my $sha1 (keys %commit) {
180 my $co = $commit{$sha1};
181 if (exists $co->{'branch'}{'next'}) {
183 } elsif (exists $co->{'branch'}{'pu'}) {
188 $co->{'log'} = $sign . ' ' . $co->{'log'};
189 my @t = (sort grep { !exists $base{$_} }
190 keys %{$co->{'branch'}});
196 for my $combo (keys %shared) {
197 my @combo = split(' ', $combo);
198 for (my $i = 0; $i < @combo - 1; $i++) {
199 for (my $j = $i + 1; $j < @combo; $j++) {
200 topic_relation
(\
%topic, $combo[$i], $combo[$j]);
206 qw(git log --first-parent --abbrev=7),
207 "--format=%ci %h %p :%s", "master..next")
208 or die "$!: open log master..next";
210 my ($date, $commit, $parent, $tips);
211 unless (($date, $commit, $parent, $tips) =
212 /^([-0-9]+) ..:..:.. .\d{4} (\S+) (\S+) ([^:]*):/) {
215 for my $tip (split(' ', $tips)) {
216 my $co = $commit{$tip};
217 next unless ($co->{'branch'}{'next'});
218 $co->{'merged'} = " (merged to 'next' on $date at $commit)";
221 close($fh) or die "$!: close log master..next";
223 for my $branch (keys %topic) {
225 my $n = scalar(@
{$topic{$branch}{'log'}});
227 delete $topic{$branch};
234 my $d = $topic{$branch}{'tipdate'};
235 my $head = "* $branch ($d) $n\n";
237 for (@
{$topic{$branch}{'log'}}) {
238 my $co = $commit{$_};
239 if (exists $co->{'merged'}) {
240 push @desc, $co->{'merged'};
242 push @desc, $commit{$_}->{'log'};
250 my $list = join("\n", map { " " . $_ } @desc);
251 my $relation = describe_relation
($topic{$branch});
252 $topic{$branch}{'desc'} = $head . $list;
254 $topic{$branch}{'desc'} .= "\n $relation";
262 my ($mon, $year, $issue, $dow, $date,
263 $master_at, $next_at, $text) = @_;
265 my $now_string = localtime;
266 my ($current_dow, $current_mon, $current_date, $current_year) =
267 ($now_string =~ /^(\w+) (\w+) (\d+) [\d:]+ (\d+)$/);
269 $mon ||= $current_mon;
270 $year ||= $current_year;
272 $dow ||= $current_dow;
273 $date ||= $current_date;
274 $master_at ||= '0' x
40;
275 $next_at ||= '0' x
40;
277 Here are the topics that have been cooking. Commits prefixed with '-' are
278 only in 'pu' (proposed updates) while commits prefixed with '+' are in 'next'.
279 The ones marked with '.' do not appear in any of the integration branches,
280 but I am still holding onto them.
282 You can find the changes described here in the integration branches of the
283 repositories listed at
285 http://git-blame.blogspot.com/p/git-public-repositories.html
289 To: git\@vger.kernel.org
290 Subject: What's cooking in git.git ($mon $year, #$issue; $dow, $date)
291 X-master-at: $master_at
294 What's cooking in git.git ($mon $year, #$issue; $dow, $date)
295 --------------------------------------------------
299 $text =~ s/\n+\Z/\n/;
303 my $blurb_match = <<'EOF';
305 Subject: What's cooking in \S+ \((\w+) (\d+), #(\d+); (\w+), (\d+)\)
306 X-master-at: ([0-9a-f]{40})
307 X-next-at: ([0-9a-f]{40})
309 What's cooking in \S+ \(\1 \2, #\3; \4, \5\)
314 my $blurb = "b..l..u..r..b";
321 my $last_empty = undef;
322 my (@section, %section, @branch, %branch, %description, @leader);
323 my $in_unedited_olde = 0;
327 'section_list' => [],
328 'section_data' => {},
329 'topic_description' => {
332 text
=> blurb_text
(),
338 open ($fh, '<', $fn) or die "$!: open $fn";
341 if ($in_unedited_olde) {
343 $in_unedited_olde = 0;
347 $in_unedited_olde = 1;
350 if ($in_unedited_olde) {
354 if (defined $section && /^-{20,}$/) {
361 if (/^\[(.*)\]\s*$/) {
364 if (!exists $section{$section}) {
365 push @section, $section;
366 $section{$section} = [];
370 if (defined $section && /^\* (\S+) /) {
373 if (!exists $branch{$branch}) {
374 push @branch, [$branch, $section];
375 $branch{$branch} = 1;
377 push @
{$section{$section}}, $branch;
379 if (defined $branch) {
380 my $was_last_empty = $last_empty;
382 if (!exists $description{$branch}) {
383 $description{$branch} = [];
385 if ($was_last_empty) {
386 push @
{$description{$branch}}, "";
388 push @
{$description{$branch}}, $_;
393 for my $branch (keys %description) {
394 my $ary = $description{$branch};
395 if ($branch eq $blurb) {
396 while (@
{$ary} && $ary->[-1] =~ /^-{30,}$/) {
399 $description{$branch} = +{
401 text
=> join("\n", @
{$ary}),
406 my $elem = shift @
{$ary};
407 last if ($elem eq '');
410 $description{$branch} = +{
411 desc
=> join("\n", @desc),
412 text
=> join("\n", @
{$ary}),
418 section_list
=> \
@section,
419 section_data
=> \
%section,
420 topic_description
=> \
%description,
425 my ($fn, $cooking) = @_;
428 open($fh, '>', $fn) or die "$!: open $fn";
429 print $fh $cooking->{'topic_description'}{$blurb}{'text'};
431 for my $section_name (@
{$cooking->{'section_list'}}) {
432 my $topic_list = $cooking->{'section_data'}{$section_name};
433 next if (!@
{$topic_list});
436 print $fh '-' x
50, "\n";
437 print $fh "[$section_name]\n";
438 for my $topic (@
{$topic_list}) {
439 my $d = $cooking->{'topic_description'}{$topic};
441 print $fh "\n", $d->{'desc'}, "\n";
443 print $fh "\n", $d->{'text'}, "\n";
450 my $graduated = 'Graduated to "master"';
451 my $new_topics = 'New Topics';
452 my $discarded = 'Discarded';
453 my $old_new_topics = 'Old New Topics';
457 my ($fh, $master_at, $next_at, $incremental);
460 qw(git for-each-ref),
461 "--format=%(refname:short) %(objectname)",
463 "refs/heads/next") or die "$!: open for-each-ref";
465 my ($branch, $at) = /^(\S+) (\S+)$/;
466 if ($branch eq 'master') { $master_at = $at; }
467 if ($branch eq 'next') { $next_at = $at; }
469 close($fh) or die "$!: close for-each-ref";
471 $incremental = ((-r
"Meta/whats-cooking.txt") &&
472 system("cd Meta && " .
473 "git diff --quiet --no-ext-diff HEAD -- " .
474 "whats-cooking.txt"));
476 my $now_string = localtime;
477 my ($current_dow, $current_mon, $current_date, $current_year) =
478 ($now_string =~ /^(\w+) (\w+) +(\d+) [\d:]+ (\d+)$/);
480 my $btext = $cooking->{'topic_description'}{$blurb}{'text'};
481 if ($btext !~ s/\A$blurb_match//) {
482 die "match pattern broken?";
484 my ($mon, $year, $issue, $dow, $date) = ($1, $2, $3, $4, $5);
486 if ($current_mon ne $mon || $current_year ne $year) {
488 } elsif (!$incremental) {
490 $issue = sprintf "%02d", ($issue + 1);
493 $year = $current_year;
495 $date = $current_date;
497 $cooking->{'topic_description'}{$blurb}{'text'} =
498 blurb_text
($mon, $year, $issue, $dow, $date,
499 $master_at, $next_at, $btext);
502 my $sd = $cooking->{'section_data'};
503 my $sl = $cooking->{'section_list'};
504 # Rename "New" to "Old New" and insert "New".
505 # Move "New" to "Old New"
508 for ($i = 0; $i < @
{$sl}; $i++) {
509 if ($sl->[$i] eq $new_topics) {
510 $sl->[$i] = $old_new_topics;
511 unshift @
{$sl}, $new_topics;
517 $sd->{$old_new_topics} = $sd->{$new_topics};
519 $sd->{$new_topics} = [];
526 my ($topic_desc) = @_;
527 for my $line (split(/\n/, $topic_desc)) {
528 if ($line =~ /^ [+-] /) {
536 my ($cooking, $current) = @_;
537 my $td = $cooking->{'topic_description'};
538 my $sd = $cooking->{'section_data'};
539 my $sl = $cooking->{'section_list'};
540 my (@new_topic, @gone_topic);
542 # Make sure "New Topics" and "Graduated" exists
543 if (!exists $sd->{$new_topics}) {
544 $sd->{$new_topics} = [];
545 unshift @
{$sl}, $new_topics;
548 if (!exists $sd->{$graduated}) {
549 $sd->{$graduated} = [];
550 unshift @
{$sl}, $graduated;
553 my $incremental = update_issue
($cooking);
555 for my $topic (sort keys %{$current}) {
556 if (!exists $td->{$topic}) {
557 # Ignore new topics without anything merged
558 if (topic_in_pu
($current->{$topic}{'desc'})) {
559 push @new_topic, $topic;
563 # Annotate if the contents of the topic changed
564 my $n = $current->{$topic}{'desc'};
565 my $o = $td->{$topic}{'desc'};
567 $td->{$topic}{'desc'} = $n . "\n<<\n" . $o ."\n>>";
571 for my $topic (sort keys %{$td}) {
572 next if ($topic eq $blurb);
573 next if (!$incremental &&
574 grep { $topic eq $_ } @
{$sd->{$graduated}});
575 next if (grep { $topic eq $_ } @
{$sd->{$discarded}});
576 if (!exists $current->{$topic}) {
577 push @gone_topic, $topic;
582 push @
{$sd->{$new_topics}}, $_;
583 $td->{$_}{'desc'} = $current->{$_}{'desc'};
587 $sd->{$graduated} = [];
591 for my $topic (@gone_topic) {
592 for my $section (@
{$sl}) {
593 my $pre = scalar(@
{$sd->{$section}});
594 @
{$sd->{$section}} = (grep { $_ ne $topic }
596 my $post = scalar(@
{$sd->{$section}});
597 next if ($pre == $post);
601 push @
{$sd->{$graduated}}, $_;
606 ################################################################
609 my ($what, $action, $topic) = @_;
610 if (!exists $what->{$action}) {
611 $what->{$action} = [];
613 push @
{$what->{$action}}, $topic;
620 return if (/^Graduated to/ || /^Discarded$/);
621 return $_ if (/^Stalled$/);
627 sub wildo_flush_topic
{
628 my ($in_section, $what, $topic) = @_;
629 if (defined $topic) {
630 my $action = section_action
($in_section);
632 wildo_queue
($what, $action, $topic);
638 my (%what, $topic, $last_merge_to_next, $in_section);
639 my $too_recent = '9999-99-99';
644 my $old_section = $in_section;
646 wildo_flush_topic
($old_section, \
%what, $topic);
651 if (/^\* (\S+) \(([-0-9]+)\) (\d+) commits?$/) {
652 wildo_flush_topic
($in_section, \
%what, $topic);
654 # tip-date, next-date, topic, count, pu-count
655 $topic = [$2, $too_recent, $1, $3, 0];
659 if (defined $topic &&
660 ($topic->[1] eq $too_recent) &&
661 ($topic->[4] == 0) &&
662 (/^ \(merged to 'next' on ([-0-9]+)/)) {
665 if (defined $topic && /^ - /) {
669 next unless defined $topic;
671 if (/^Will (?:\S+ ){0,2}(keep|merge|drop|discard|cook|kick|defer)[,. ]/ ||
672 /^Not urgent/ || /^Not ready/ || /^Waiting for / ||
673 /^Needs? / || /^Expecting / || /^May want to /) {
674 wildo_queue
(\
%what, $_, $topic);
677 if (/^Not urgent;/) {
678 wildo_queue
(\
%what, $_, $topic);
681 if (/Originally merged to 'next' on ([-0-9]+)/) {
685 wildo_flush_topic
($in_section, \
%what, $topic);
688 for my $what (sort keys %what) {
689 print "$ipbl$what\n";
690 for $topic (sort { (($a->[1] cmp $b->[1]) ||
691 ($a->[0] cmp $b->[0])) }
693 my ($tip, $next, $name, $count, $pu) = @
$topic;
696 if (($next eq $too_recent) || (0 < $pu)) {
701 $next =~ s
|^\d
{4}-|/|;
704 printf " %s %-60s %s%s %5s\n", $sign, $name, $tip, $next, $count;
710 ################################################################
714 my $topic = get_commit
();
715 my $cooking = read_previous
('Meta/whats-cooking.txt');
716 merge_cooking
($cooking, $topic);
717 write_cooking
('Meta/whats-cooking.txt', $cooking);
720 ################################################################
726 if (!GetOptions
("wildo" => \
$wildo)) {
727 print STDERR
"$0 [--wildo]";
733 push @ARGV, "Meta/whats-cooking.txt";