3 # Update an older edition of What's Cooking with the latest data.
5 # Usage: UWC [ old [ new ] ]
7 # Giving no parameter is the same as giving a single "-" to the command.
9 # The command reads the old edition of (annotated) "What's Cooking"
10 # message from "old", and "new". If "old" is "-", it is read from
11 # the standard input. If "new" is not specified, WC script is run
12 # and its output is used.
14 # An annotated "What's Cooking" message can have group header (a line
15 # that has the group name enclosed in "[" and "]"), and annotatation
16 # paragraphs after each topic's commit list, in addition to the bare
19 # The group headers, topics in each group and their order in the group,
20 # and annotation to topics are preserved from the "old" message. The
21 # list of commits in each topic is replaced with the one taken from the
22 # "new" message. Any topic in "new" that did not exist in "old" appear
23 # in "New Topics" group. Also, topics that do not appear in the "new"
24 # message are marked with <<deleted>>, topics whose commit list are
25 # different from "old" are marked with <<updated from...>>>.
27 # Typically the maintainer would place the What's Cooking message
28 # previously sent in a buffer in Emacs, and filter the buffer contents
29 # with this script, to prepare an up-to-date message.
31 sub parse_whats_cooking
{
35 my %wc = ("group list" => [], "topic hash" => {});
37 my $skipping_comment = 0;
46 if (/^Here are the topics that have been/) {
56 if ($skipping_comment) {
58 $skipping_comment = 0;
63 if (!$skipping_comment && /^<</) {
64 $skipping_comment = 1;
70 push @
{$wc{"group list"}}, $group;
76 if (!defined $group) {
77 if (/^\* (\S+) (\(.*\) \d+ commits?)$/) {
80 push @
{$wc{"group list"}}, $group;
88 if (/^\* (\S+) (\(.*\) \d+ commits?)$/) {
95 $wc{"topic hash"}{$topic->{"topic"}} = $topic;
96 push @
{$wc{" $group"}}, $topic;
100 if (/^ [-+.?*] / || /^ \S/) {
101 $topic->{"names"} .= $_;
104 $topic->{"text"} .= $_;
111 $wc{"head text"} = $head;
112 for $topic (values %{$wc{"topic hash"}}) {
113 for ($topic->{"text"}) {
121 sub print_whats_cooking
{
124 print $wc->{"head text"}, "\n";
126 for my $group (@
{$wc->{"group list"}}) {
127 print "\n", "-" x
64, "\n";
129 for my $topic (@
{$wc->{" $group"}}) {
130 next if ($topic->{"head"} eq '');
131 print "\n", $topic->{"head"};
132 print $topic->{"names"};
133 if ($topic->{"text"} ne '') {
134 print "\n", $topic->{"text"}, "\n";
141 my ($wc, $topic) = @_;
142 $topic->{"status"} = "deleted";
145 sub merge_whats_cooking
{
146 my ($old_wc, $new_wc) = @_;
150 for $group (@
{$old_wc->{"group list"}}) {
151 for my $topic (@
{$old_wc->{" $group"}}) {
152 my $name = $topic->{"topic"};
153 my $newtopic = delete $new_wc->{"topic hash"}{$name};
155 if (!defined $newtopic) {
156 push @gone, +{ @
{[ %$topic ]} };
157 $topic->{"text"} = "";
158 $topic->{"names"} = "";
159 $topic->{"head"} = "";
162 if (($newtopic->{"names"} ne $topic->{"names"}) ||
163 ($newtopic->{"head"} ne $topic->{"head"})) {
164 my $text = ("<<updated from\n" .
166 $topic->{"names"} . ">>");
168 if ($topic->{"text"} ne '') {
169 $text .= "\n\n" . $topic->{"text"};
175 $topic->{"text"} = $text;
176 $topic->{"names"} = $newtopic->{"names"};
177 $topic->{"head"} = $newtopic->{"head"};
182 if (%{$new_wc->{"topic hash"}}) {
184 $group = 'Graduated to "master"';
185 if (!exists $old_wc->{" $group"}) {
186 unshift @
{$old_wc->{"group list"}}, $group;
187 $old_wc->{" $group"} = [];
189 push @
{$old_wc->{" $group"}}, @gone;
191 $group = "New Topics";
192 if (!exists $old_wc->{" $group"}) {
193 unshift @
{$old_wc->{"group list"}}, $group;
194 $old_wc->{" $group"} = [];
196 for my $topic (values %{$new_wc->{"topic hash"}}) {
197 my $name = $topic->{"topic"};
198 $old_wc->{"topic hash"}{$name} = $topic;
199 push @
{$old_wc->{" $group"}}, $topic;
200 $topic->{"text"} = $topic->{"text"};
208 if (@ARGV != 2 && @ARGV != 1) {
209 die "Usage: $0 old [new]\n";
212 my ($old_wc, $new_wc);
214 if ($ARGV[0] eq '-') {
219 $old_wc = parse_whats_cooking
(\
*FH
);
225 open FH
, "Meta/WC generate |";
227 $new_wc = parse_whats_cooking
(\
*FH
);
230 merge_whats_cooking
($old_wc, $new_wc);
231 print_whats_cooking
($old_wc);