9 use open qw{:utf8 :std};
11 my $sha1_pattern = qr/[0-9a-fA-F]{40}/; # pattern to validate Git sha1sums
12 my $dummy_commit_msg = 'dummy commit'; # message to skip in recent changes
14 sub _safe_git (&@) { #{{{
15 # Start a child process safely without resorting /bin/sh.
16 # Return command output or success state (in scalar context).
18 my ($error_handler, @cmdline) = @_;
20 my $pid = open my $OUT, "-|";
22 error("Cannot fork: $!") if !defined $pid;
26 # Git commands want to be in wc.
28 or error("Cannot chdir to $config{srcdir}: $!");
29 exec @cmdline or error("Cannot exec '@cmdline': $!");
41 $error_handler->("'@cmdline' failed: $!") if $? && $error_handler;
43 return wantarray ? @lines : ($? == 0);
45 # Convenient wrappers.
46 sub run_or_die ($@) { _safe_git(\&error, @_) }
47 sub run_or_cry ($@) { _safe_git(sub { warn @_ }, @_) }
48 sub run_or_non ($@) { _safe_git(undef, @_) }
51 sub _merge_past ($$$) { #{{{
52 # Unlike with Subversion, Git cannot make a 'svn merge -rN:M file'.
53 # Git merge commands work with the committed changes, except in the
54 # implicit case of '-m' of git checkout(1). So we should invent a
55 # kludge here. In principle, we need to create a throw-away branch
56 # in preparing for the merge itself. Since branches are cheap (and
57 # branching is fast), this shouldn't cost high.
59 # The main problem is the presence of _uncommitted_ local changes. One
60 # possible approach to get rid of this situation could be that we first
61 # make a temporary commit in the master branch and later restore the
62 # initial state (this is possible since Git has the ability to undo a
63 # commit, i.e. 'git reset --soft HEAD^'). The method can be summarized
66 # - create a diff of HEAD:current-sha1
68 # - create a dummy branch and switch to it
69 # - rewind to past (reset --hard to the current-sha1)
70 # - apply the diff and commit
71 # - switch to master and do the merge with the dummy branch
72 # - make a soft reset (undo the last commit of master)
74 # The above method has some drawbacks: (1) it needs a redundant commit
75 # just to get rid of local changes, (2) somewhat slow because of the
76 # required system forks. Until someone points a more straight method
77 # (which I would be grateful) I have implemented an alternative method.
78 # In this approach, we hide all the modified files from Git by renaming
79 # them (using the 'rename' builtin) and later restore those files in
80 # the throw-away branch (that is, we put the files themselves instead
81 # of applying a patch).
83 my ($sha1, $file, $message) = @_;
85 my @undo; # undo stack for cleanup in case of an error
86 my $conflict; # file content with conflict markers
89 # Hide local changes from Git by renaming the modified file.
90 # Relative paths must be converted to absolute for renaming.
91 my ($target, $hidden) = (
92 "$config{srcdir}/${file}", "$config{srcdir}/${file}.${sha1}"
94 rename($target, $hidden)
95 or error("rename '$target' to '$hidden' failed: $!");
96 # Ensure to restore the renamed file on error.
98 return if ! -e "$hidden"; # already renamed
99 rename($hidden, $target)
100 or warn "rename '$hidden' to '$target' failed: $!";
103 my $branch = "throw_away_${sha1}"; # supposed to be unique
105 # Create a throw-away branch and rewind backward.
106 push @undo, sub { run_or_cry('git', 'branch', '-D', $branch) };
107 run_or_die('git', 'branch', $branch, $sha1);
109 # Switch to throw-away branch for the merge operation.
111 if (!run_or_cry('git', 'checkout', $config{gitmaster_branch})) {
112 run_or_cry('git', 'checkout','-f',$config{gitmaster_branch});
115 run_or_die('git', 'checkout', $branch);
117 # Put the modified file in _this_ branch.
118 rename($hidden, $target)
119 or error("rename '$hidden' to '$target' failed: $!");
121 # _Silently_ commit all modifications in the current branch.
122 run_or_non('git', 'commit', '-m', $message, '-a');
123 # ... and re-switch to master.
124 run_or_die('git', 'checkout', $config{gitmaster_branch});
126 # Attempt to merge without complaining.
127 if (!run_or_non('git', 'pull', '--no-commit', '.', $branch)) {
128 $conflict = readfile($target);
129 run_or_die('git', 'reset', '--hard');
134 # Process undo stack (in reverse order). By policy cleanup
135 # actions should normally print a warning on failure.
136 while (my $handle = pop @undo) {
140 error("Git merge failed!\n$failure\n") if $failure;
145 sub _parse_diff_tree ($@) { #{{{
146 # Parse the raw diff tree chunk and return the info hash.
147 # See git-diff-tree(1) for the syntax.
149 my ($prefix, $dt_ref) = @_;
152 return if !defined @{ $dt_ref } ||
153 !defined @{ $dt_ref }[0] || !length @{ $dt_ref }[0];
157 while (my $line = shift @{ $dt_ref }) {
158 return if $line !~ m/^(.+) ($sha1_pattern)/;
165 # Identification lines for the commit.
166 while (my $line = shift @{ $dt_ref }) {
167 # Regexps are semi-stolen from gitweb.cgi.
168 if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
171 elsif ($line =~ m/^parent ([0-9a-fA-F]{40})$/) {
172 # XXX: collecting in reverse order
173 push @{ $ci{'parents'} }, $1;
175 elsif ($line =~ m/^(author|committer) (.*) ([0-9]+) (.*)$/) {
176 my ($who, $name, $epoch, $tz) =
180 $ci{ "${who}_epoch" } = $epoch;
181 $ci{ "${who}_tz" } = $tz;
183 if ($name =~ m/^([^<]+) <([^@>]+)/) {
184 my ($fullname, $username) = ($1, $2);
185 $ci{"${who}_fullname"} = $fullname;
186 $ci{"${who}_username"} = $username;
189 $ci{"${who}_fullname"} =
190 $ci{"${who}_username"} = $name;
193 elsif ($line =~ m/^$/) {
194 # Trailing empty line signals next section.
199 debug("No 'tree' seen in diff-tree output") if !defined $ci{'tree'};
201 if (defined $ci{'parents'}) {
202 $ci{'parent'} = @{ $ci{'parents'} }[0];
205 $ci{'parent'} = 0 x 40;
209 while (my $line = shift @{ $dt_ref }) {
210 if ($line =~ m/^$/) {
211 # Trailing empty line signals next section.
215 push @{ $ci{'comment'} }, $line;
219 while (my $line = shift @{ $dt_ref }) {
221 (:+) # number of parents
222 ([^\t]+)\t # modes, sha1, status
225 my $num_parents = length $1;
226 my @tmp = split(" ", $2);
227 my ($file, $file_to) = split("\t", $3);
228 my @mode_from = splice(@tmp, 0, $num_parents);
229 my $mode_to = shift(@tmp);
230 my @sha1_from = splice(@tmp, 0, $num_parents);
231 my $sha1_to = shift(@tmp);
232 my $status = shift(@tmp);
234 if ($file =~ m/^"(.*)"$/) {
235 ($file=$1) =~ s/\\([0-7]{1,3})/chr(oct($1))/eg;
237 $file =~ s/^\Q$prefix\E//;
239 push @{ $ci{'details'} }, {
240 'file' => decode_utf8($file),
241 'sha1_from' => $sha1_from[0],
242 'sha1_to' => $sha1_to,
253 sub git_commit_info ($;$) { #{{{
254 # Return an array of commit info hashes of num commits (default: 1)
255 # starting from the given sha1sum.
257 my ($sha1, $num) = @_;
261 my @raw_lines = run_or_die('git', 'log', "--max-count=$num",
262 '--pretty=raw', '--raw', '--abbrev=40', '--always', '-c',
263 '-r', $sha1, '--', '.');
264 my ($prefix) = run_or_die('git', 'rev-parse', '--show-prefix');
267 while (my $parsed = _parse_diff_tree(($prefix or ""), \@raw_lines)) {
271 warn "Cannot parse commit info for '$sha1' commit" if !@ci;
273 return wantarray ? @ci : $ci[0];
276 sub git_sha1 (;$) { #{{{
277 # Return head sha1sum (of given file).
279 my $file = shift || q{--};
281 # Ignore error since a non-existing file might be given.
282 my ($sha1) = run_or_non('git', 'rev-list', '--max-count=1', 'HEAD',
285 ($sha1) = $sha1 =~ m/($sha1_pattern)/; # sha1 is untainted now
286 } else { debug("Empty sha1sum for '$file'.") }
287 return defined $sha1 ? $sha1 : q{};
290 sub rcs_update () { #{{{
291 # Update working directory.
293 if (length $config{gitorigin_branch}) {
294 run_or_cry('git', 'pull', $config{gitorigin_branch});
298 sub rcs_prepedit ($) { #{{{
299 # Return the commit sha1sum of the file when editing begins.
300 # This will be later used in rcs_commit if a merge is required.
304 return git_sha1($file);
307 sub rcs_commit ($$$;$$) { #{{{
308 # Try to commit the page; returns undef on _success_ and
309 # a version of the page with the rcs's conflict markers on
312 my ($file, $message, $rcstoken, $user, $ipaddr) = @_;
315 $message = "web commit by $user" .
316 (length $message ? ": $message" : "");
318 elsif (defined $ipaddr) {
319 $message = "web commit from $ipaddr" .
320 (length $message ? ": $message" : "");
323 # Check to see if the page has been changed by someone else since
324 # rcs_prepedit was called.
325 my $cur = git_sha1($file);
326 my ($prev) = $rcstoken =~ /^($sha1_pattern)$/; # untaint
328 if (defined $cur && defined $prev && $cur ne $prev) {
329 my $conflict = _merge_past($prev, $file, $dummy_commit_msg);
330 return $conflict if defined $conflict;
333 # git commit returns non-zero if file has not been really changed.
334 # so we should ignore its exit status (hence run_or_non).
335 $message = possibly_foolish_untaint($message);
336 if (run_or_non('git', 'commit', '-q', '-m', $message, '-i', $file)) {
337 if (length $config{gitorigin_branch}) {
338 run_or_cry('git', 'push', $config{gitorigin_branch});
342 return undef; # success
345 sub rcs_add ($) { # {{{
346 # Add file to archive.
350 run_or_cry('git', 'add', $file);
353 sub rcs_recentchanges ($) { #{{{
354 # List of recent changes.
358 eval q{use Date::Parse};
362 foreach my $ci (git_commit_info('HEAD', $num)) {
363 # Skip redundant commits.
364 next if (@{$ci->{'comment'}}[0] eq $dummy_commit_msg);
366 my ($sha1, $when) = (
368 $ci->{'author_epoch'}
371 my (@pages, @messages);
372 foreach my $detail (@{ $ci->{'details'} }) {
373 my $file = $detail->{'file'};
375 my $diffurl = $config{'diffurl'};
376 $diffurl =~ s/\[\[file\]\]/$file/go;
377 $diffurl =~ s/\[\[sha1_parent\]\]/$ci->{'parent'}/go;
378 $diffurl =~ s/\[\[sha1_from\]\]/$detail->{'sha1_from'}/go;
379 $diffurl =~ s/\[\[sha1_to\]\]/$detail->{'sha1_to'}/go;
382 page => pagename($file),
387 push @messages, { line => $_ } foreach grep {
388 ! m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i
389 } @{$ci->{'comment'}};
391 my ($user, $type) = (q{}, "web");
393 if (defined $messages[0] &&
394 $messages[0]->{line} =~ m/$config{web_commit_regexp}/) {
395 $user = defined $2 ? "$2" : "$3";
396 $messages[0]->{line} = $4;
400 $user = $ci->{'author_username'};
408 message => [@messages],
412 last if @rets >= $num;
418 sub rcs_diff ($) { #{{{
420 my ($sha1) = $rev =~ /^($sha1_pattern)$/; # untaint
422 foreach my $line (run_or_non("git", "show", $sha1)) {
423 if (@lines || $line=~/^diff --git/) {
424 push @lines, $line."\n";
431 return join("", @lines);
435 sub rcs_getctime ($) { #{{{
437 # Remove srcdir prefix
438 $file =~ s/^\Q$config{srcdir}\E\/?//;
440 my $sha1 = git_sha1($file);
441 my $ci = git_commit_info($sha1);
442 my $ctime = $ci->{'author_epoch'};
443 debug("ctime for '$file': ". localtime($ctime));