summaryrefslogtreecommitdiff
path: root/IkiWiki/Rcs/git.pm
blob: 05eaa8d78eba8f408bdaa4645a3eca28d31ea213 (plain)
  1. #!/usr/bin/perl
  2. use warnings;
  3. use strict;
  4. use IkiWiki;
  5. use Encode;
  6. use open qw{:utf8 :std};
  7. package IkiWiki;
  8. my $origin_branch = 'origin'; # Git ref for main repository
  9. my $master_branch = 'master'; # working branch
  10. my $sha1_pattern = qr/[0-9a-fA-F]{40}/; # pattern to validate Git sha1sums
  11. my $dummy_commit_msg = 'dummy commit'; # message to skip in recent changes
  12. sub _safe_git (&@) { #{{{
  13. # Start a child process safely without resorting /bin/sh.
  14. # Return command output or success state (in scalar context).
  15. my ($error_handler, @cmdline) = @_;
  16. my $pid = open my $OUT, "-|";
  17. error("Cannot fork: $!") if !defined $pid;
  18. if (!$pid) {
  19. # In child.
  20. open STDERR, ">&STDOUT"
  21. or error("Cannot dup STDOUT: $!");
  22. # Git commands want to be in wc.
  23. chdir $config{srcdir}
  24. or error("Cannot chdir to $config{srcdir}: $!");
  25. exec @cmdline or error("Cannot exec '@cmdline': $!");
  26. }
  27. # In parent.
  28. my @lines;
  29. while (<$OUT>) {
  30. chomp;
  31. push @lines, $_;
  32. }
  33. close $OUT;
  34. ($error_handler || sub { })->("'@cmdline' failed: $!") if $?;
  35. return wantarray ? @lines : ($? == 0);
  36. }
  37. # Convenient wrappers.
  38. sub run_or_die ($@) { _safe_git(\&error, @_) }
  39. sub run_or_cry ($@) { _safe_git(sub { warn @_ }, @_) }
  40. sub run_or_non ($@) { _safe_git(undef, @_) }
  41. #}}}
  42. sub _merge_past ($$$) { #{{{
  43. # Unlike with Subversion, Git cannot make a 'svn merge -rN:M file'.
  44. # Git merge commands work with the committed changes, except in the
  45. # implicit case of '-m' of git-checkout(1). So we should invent a
  46. # kludge here. In principle, we need to create a throw-away branch
  47. # in preparing for the merge itself. Since branches are cheap (and
  48. # branching is fast), this shouldn't cost high.
  49. #
  50. # The main problem is the presence of _uncommitted_ local changes. One
  51. # possible approach to get rid of this situation could be that we first
  52. # make a temporary commit in the master branch and later restore the
  53. # initial state (this is possible since Git has the ability to undo a
  54. # commit, i.e. 'git-reset --soft HEAD^'). The method can be summarized
  55. # as follows:
  56. #
  57. # - create a diff of HEAD:current-sha1
  58. # - dummy commit
  59. # - create a dummy branch and switch to it
  60. # - rewind to past (reset --hard to the current-sha1)
  61. # - apply the diff and commit
  62. # - switch to master and do the merge with the dummy branch
  63. # - make a soft reset (undo the last commit of master)
  64. #
  65. # The above method has some drawbacks: (1) it needs a redundant commit
  66. # just to get rid of local changes, (2) somewhat slow because of the
  67. # required system forks. Until someone points a more straight method
  68. # (which I would be grateful) I have implemented an alternative method.
  69. # In this approach, we hide all the modified files from Git by renaming
  70. # them (using the 'rename' builtin) and later restore those files in
  71. # the throw-away branch (that is, we put the files themselves instead
  72. # of applying a patch).
  73. my ($sha1, $file, $message) = @_;
  74. my @undo; # undo stack for cleanup in case of an error
  75. my $conflict; # file content with conflict markers
  76. eval {
  77. # Hide local changes from Git by renaming the modified file.
  78. # Relative paths must be converted to absolute for renaming.
  79. my ($target, $hidden) = (
  80. "$config{srcdir}/${file}", "$config{srcdir}/${file}.${sha1}"
  81. );
  82. rename($target, $hidden)
  83. or error("rename '$target' to '$hidden' failed: $!");
  84. # Ensure to restore the renamed file on error.
  85. push @undo, sub {
  86. return if ! -e "$hidden"; # already renamed
  87. rename($hidden, $target)
  88. or warn "rename '$hidden' to '$target' failed: $!";
  89. };
  90. my $branch = "throw_away_${sha1}"; # supposed to be unique
  91. # Create a throw-away branch and rewind backward.
  92. push @undo, sub { run_or_cry('git-branch', '-D', $branch) };
  93. run_or_die('git-branch', $branch, $sha1);
  94. # Switch to throw-away branch for the merge operation.
  95. push @undo, sub {
  96. if (!run_or_cry('git-checkout', $master_branch)) {
  97. run_or_cry('git-checkout','-f',$master_branch);
  98. }
  99. };
  100. run_or_die('git-checkout', $branch);
  101. # Put the modified file in _this_ branch.
  102. rename($hidden, $target)
  103. or error("rename '$hidden' to '$target' failed: $!");
  104. # _Silently_ commit all modifications in the current branch.
  105. run_or_non('git-commit', '-m', $message, '-a');
  106. # ... and re-switch to master.
  107. run_or_die('git-checkout', $master_branch);
  108. # Attempt to merge without complaining.
  109. if (!run_or_non('git-pull', '--no-commit', '.', $branch)) {
  110. $conflict = readfile($target);
  111. run_or_die('git-reset', '--hard');
  112. }
  113. };
  114. my $failure = $@;
  115. # Process undo stack (in reverse order). By policy cleanup
  116. # actions should normally print a warning on failure.
  117. while (my $handle = pop @undo) {
  118. $handle->();
  119. }
  120. error("Git merge failed!\n$failure\n") if $failure;
  121. return $conflict;
  122. } #}}}
  123. sub _parse_diff_tree (@) { #{{{
  124. # Parse the raw diff tree chunk and return the info hash.
  125. # See git-diff-tree(1) for the syntax.
  126. my ($dt_ref) = @_;
  127. # End of stream?
  128. return if !defined @{ $dt_ref } || !length @{ $dt_ref }[0];
  129. my %ci;
  130. # Header line.
  131. HEADER: while (my $line = shift @{ $dt_ref }) {
  132. return if $line !~ m/^(.+) ($sha1_pattern)/;
  133. my $sha1 = $1;
  134. $ci{'sha1'} = $sha1;
  135. last HEADER;
  136. }
  137. # Identification lines for the commit.
  138. IDENT: while (my $line = shift @{ $dt_ref }) {
  139. # Regexps are semi-stolen from gitweb.cgi.
  140. if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
  141. $ci{'tree'} = $1;
  142. } elsif ($line =~ m/^parent ([0-9a-fA-F]{40})$/) {
  143. # XXX: collecting in reverse order
  144. push @{ $ci{'parents'} }, $1;
  145. } elsif ($line =~ m/^(author|committer) (.*) ([0-9]+) (.*)$/) {
  146. my ($who, $name, $epoch, $tz) =
  147. ($1, $2, $3, $4 );
  148. $ci{ $who } = $name;
  149. $ci{ "${who}_epoch" } = $epoch;
  150. $ci{ "${who}_tz" } = $tz;
  151. if ($name =~ m/^([^<]+) <([^@]+)/) {
  152. my ($fullname, $username) = ($1, $2);
  153. $ci{"${who}_fullname"} = $fullname;
  154. $ci{"${who}_username"} = $username;
  155. } else {
  156. $ci{"${who}_fullname"} =
  157. $ci{"${who}_username"} = $name;
  158. }
  159. } elsif ($line =~ m/^$/) {
  160. # Trailing empty line signals next section.
  161. last IDENT;
  162. }
  163. }
  164. error("No 'tree' or 'parents' seen in diff-tree output")
  165. if !defined $ci{'tree'} || !defined $ci{'parents'};
  166. $ci{'parent'} = @{ $ci{'parents'} }[0];
  167. # Commit message.
  168. COMMENT: while (my $line = shift @{ $dt_ref }) {
  169. if ($line =~ m/^$/) {
  170. # Trailing empty line signals next section.
  171. last COMMENT;
  172. };
  173. $line =~ s/^ //;
  174. push @{ $ci{'comment'} }, $line;
  175. }
  176. # Modified files.
  177. FILE: while (my $line = shift @{ $dt_ref }) {
  178. if ($line =~ m{^:
  179. ([0-7]{6})[ ] # from mode
  180. ([0-7]{6})[ ] # to mode
  181. ($sha1_pattern)[ ] # from sha1
  182. ($sha1_pattern)[ ] # to sha1
  183. (.) # status
  184. ([0-9]{0,3})\t # similarity
  185. (.*) # file
  186. $}xo) {
  187. my ($sha1_from, $sha1_to, $file) =
  188. ($3, $4, $7 );
  189. if ($file =~ m/^"(.*)"$/) {
  190. ($file=$1) =~ s/\\([0-7]{1,3})/chr(oct($1))/eg;
  191. }
  192. if (length $file) {
  193. push @{ $ci{'details'} }, {
  194. 'file' => decode_utf8($file),
  195. 'sha1_from' => $sha1_from,
  196. 'sha1_to' => $sha1_to,
  197. };
  198. }
  199. next FILE;
  200. };
  201. last FILE;
  202. }
  203. warn "No detail in diff-tree output" if !defined $ci{'details'};
  204. return \%ci;
  205. } #}}}
  206. sub git_commit_info (;$$) { #{{{
  207. # Return an array of commit info hashes of num commits (default: 1)
  208. # starting from the given sha1sum (default: HEAD).
  209. my ($sha1, $num) = @_;
  210. $num ||= 1;
  211. my @raw_lines =
  212. run_or_die(qq{git-rev-list --max-count=$num $sha1 |
  213. git-diff-tree --stdin --pretty=raw -M -r});
  214. my @ci;
  215. while (my $parsed = _parse_diff_tree(\@raw_lines)) {
  216. push @ci, $parsed;
  217. }
  218. warn "Cannot parse commit info for '$sha1' commit" if !@ci;
  219. return wantarray ? @ci : $ci[0];
  220. } #}}}
  221. sub git_sha1 (;$) { #{{{
  222. # Return head sha1sum (of given file).
  223. my $file = shift || q{--};
  224. # Ignore error since a non-existing file might be given.
  225. my ($sha1) = run_or_non('git-rev-list', '--max-count=1', 'HEAD', $file);
  226. if ($sha1) {
  227. ($sha1) = $sha1 =~ m/($sha1_pattern)/; # sha1 is untainted now
  228. } else { debug("Empty sha1sum for '$file'.") }
  229. return defined $sha1 ? $sha1 : q{};
  230. } #}}}
  231. sub rcs_update () { #{{{
  232. # Update working directory.
  233. run_or_cry('git-pull', $origin_branch);
  234. } #}}}
  235. sub rcs_prepedit ($) { #{{{
  236. # Return the commit sha1sum of the file when editing begins.
  237. # This will be later used in rcs_commit if a merge is required.
  238. my ($file) = @_;
  239. return git_sha1($file);
  240. } #}}}
  241. sub rcs_commit ($$$;$$) { #{{{
  242. # Try to commit the page; returns undef on _success_ and
  243. # a version of the page with the rcs's conflict markers on
  244. # failure.
  245. my ($file, $message, $rcstoken, $user, $ipaddr) = @_;
  246. if (defined $user) {
  247. $message="web commit by $user".(length $message ? ": $message" : "");
  248. }
  249. elsif (defined $ipaddr) {
  250. $message="web commit from $ipaddr".(length $message ? ": $message" : "");
  251. }
  252. # XXX: Wiki directory is in the unlocked state when starting this
  253. # action. But it takes time for a Git process to finish its job
  254. # (especially if a merge required), so we must re-lock to prevent
  255. # race conditions. Only when the time of the real commit action
  256. # (i.e. git-push(1)) comes, we'll unlock the directory.
  257. lockwiki();
  258. # Check to see if the page has been changed by someone else since
  259. # rcs_prepedit was called.
  260. my $cur = git_sha1($file);
  261. my ($prev) = $rcstoken =~ /^($sha1_pattern)$/; # untaint
  262. if (defined $cur && defined $prev && $cur ne $prev) {
  263. my $conflict = _merge_past($prev, $file, $dummy_commit_msg);
  264. return $conflict if defined $conflict;
  265. }
  266. # git-commit(1) returns non-zero if file has not been really changed.
  267. # so we should ignore its exit status (hence run_or_non).
  268. $message = possibly_foolish_untaint($message);
  269. if (run_or_non('git-commit', '-m', $message, '-i', $file)) {
  270. unlockwiki();
  271. run_or_cry('git-push', $origin_branch);
  272. }
  273. return undef; # success
  274. } #}}}
  275. sub rcs_add ($) { # {{{
  276. # Add file to archive.
  277. my ($file) = @_;
  278. run_or_cry('git-add', $file);
  279. } #}}}
  280. sub rcs_recentchanges ($) { #{{{
  281. # List of recent changes.
  282. my ($num) = @_;
  283. eval q{use Date::Parse};
  284. error($@) if $@;
  285. my ($sha1, $type, $when, $diffurl, $user, @pages, @message, @rets);
  286. INFO: foreach my $ci (git_commit_info('HEAD', $num)) {
  287. my $title = @{ $ci->{'comment'} }[0];
  288. # Skip redundant commits.
  289. next INFO if ($title eq $dummy_commit_msg);
  290. $sha1 = $ci->{'sha1'};
  291. $type = "web";
  292. $when = time - $ci->{'author_epoch'};
  293. DETAIL: foreach my $detail (@{ $ci->{'details'} }) {
  294. my $diffurl = $config{'diffurl'};
  295. my $file = $detail->{'file'};
  296. $diffurl =~ s/\[\[file\]\]/$file/go;
  297. $diffurl =~ s/\[\[sha1_parent\]\]/$ci->{'parent'}/go;
  298. $diffurl =~ s/\[\[sha1_from\]\]/$detail->{'sha1_from'}/go;
  299. $diffurl =~ s/\[\[sha1_to\]\]/$detail->{'sha1_to'}/go;
  300. push @pages, {
  301. page => pagename($file),
  302. diffurl => $diffurl,
  303. };
  304. }
  305. push @message, { line => $title };
  306. if (defined $message[0] &&
  307. $message[0]->{line} =~ m/$config{web_commit_regexp}/) {
  308. $user=defined $2 ? "$2" : "$3";
  309. $message[0]->{line}=$4;
  310. } else {
  311. $type ="git";
  312. $user = $ci->{'author_username'};
  313. }
  314. push @rets, {
  315. rev => $sha1,
  316. user => $user,
  317. committype => $type,
  318. when => $when,
  319. message => [@message],
  320. pages => [@pages],
  321. } if @pages;
  322. $sha1 = $type = $when = $diffurl = $user = undef;
  323. @pages = @message = ();
  324. }
  325. return @rets;
  326. } #}}}
  327. sub rcs_notify () { #{{{
  328. # Send notification mail to subscribed users.
  329. #
  330. # In usual Git usage, hooks/update script is presumed to send
  331. # notification mails (see git-receive-pack(1)). But we prefer
  332. # hooks/post-update to support IkiWiki commits coming from a
  333. # cloned repository (through command line) because post-update
  334. # is called _after_ each ref in repository is updated (update
  335. # hook is called _before_ the repository is updated). Since
  336. # post-update hook does not accept command line arguments, we
  337. # don't have an $ENV variable in this function.
  338. #
  339. # Here, we rely on a simple fact: we can extract all parts of the
  340. # notification content by parsing the "HEAD" commit (which also
  341. # triggers a refresh of IkiWiki pages) and we can obtain the diff
  342. # by comparing HEAD and HEAD^ (the previous commit).
  343. my $sha1 = 'HEAD'; # the commit which triggers this action
  344. my $ci = git_commit_info($sha1);
  345. return if !defined $ci;
  346. my @changed_pages = map { $_->{'file'} } @{ $ci->{'details'} };
  347. my ($user, $message);
  348. if (@{ $ci->{'comment'} }[0] =~ m/$config{web_commit_regexp}/) {
  349. $user = defined $2 ? "$2" : "$3";
  350. $message = $4;
  351. } else {
  352. $user = $ci->{'author_username'};
  353. $message = join "\n", @{ $ci->{'comment'} };
  354. }
  355. require IkiWiki::UserInfo;
  356. send_commit_mails(
  357. sub {
  358. $message;
  359. },
  360. sub {
  361. join "\n", run_or_die('git-diff', "${sha1}^", $sha1);
  362. }, $user, @changed_pages);
  363. } #}}}
  364. sub rcs_getctime ($) { #{{{
  365. # Get the ctime of file.
  366. my ($file) = @_;
  367. my $sha1 = git_sha1($file);
  368. my $ci = git_commit_info($sha1);
  369. my $ctime = $ci->{'author_epoch'};
  370. debug("ctime for '$file': ". localtime($ctime) . "\n");
  371. return $ctime;
  372. } #}}}
  373. 1