summary refs log tree commit diff
path: root/bin/git-comment.pl
blob: 53a0c1d521bb75ed6b6249b76ac8fb6246625ea1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env perl

# FIXME?
use lib (split(/:/, $ENV{GITPERLLIB} || '/opt/local/share/perl5'));

use strict;
use warnings;
use Getopt::Long qw(:config pass_through);
use Git;

my $repo = Git->repository();

my $comment_start = $repo->config('comment.start') // "/*";
my $comment_lead = $repo->config('comment.lead') // " *";
my $comment_end = $repo->config('comment.end') // " */";
GetOptions(
	'comment-start=s' => \$comment_start,
	'comment-lead=s' => \$comment_lead,
	'comment-end:s' => \$comment_end,
) or die;

my ($pipe, $ctx) = $repo->command_output_pipe('blame', '--porcelain', @ARGV);

my ($commit, %abbrev, %summary, %body, %printed);
while (<$pipe>) {
	chomp;
	if (/^([[:xdigit:]]+) \d+ \d+ \d+/) {
		$commit = $1;
		next if $abbrev{$commit};
		my @body = $repo->command(
			'show', '--no-patch', '--pretty=format:%h%n%b', $commit
		);
		$abbrev{$commit} = shift @body;
		$body{$commit} = \@body;
	} elsif (/^summary (.*)/) {
		$summary{$commit} = $1;
	} elsif (/^\t(\s*)(.*)/) {
		my ($indent, $line) = ($1, $2);
		if (@{$body{$commit}} && !$printed{$commit}) {
			print "$indent$comment_start $abbrev{$commit} $summary{$commit}\n";
			print "$indent$comment_lead\n";
			foreach (@{$body{$commit}}) {
				print "$indent$comment_lead";
				print " $_" if $_;
				print "\n";
			}
			print "$indent$comment_end\n" if $comment_end;
			$printed{$commit} = 1;
		}
		print "$indent$line\n";
	}
}

$repo->command_close_pipe($pipe, $ctx);