3 # This tool is copyright (c) 2005, Martin Langhoff.
4 # It is released under the Gnu Public License, version 2.
6 # The basic idea is to walk the output of tla abrowse,
7 # fetch the changesets and apply them.
12 git-archimport [ -h ] [ -v ] [ -T ] [ -t tempdir ] <archive>/<branch> [ <archive>/<branch> ]
14 Imports a project from one or more Arch repositories. It will follow branches
15 and repositories within the namespaces defined by the <archive/branch>
16 parameters suppplied. If it cannot find the remote branch a merge comes from
17 it will just import it as a regular commit. If it can find it, it will mark it
18 as a merge whenever possible.
20 See man (1) git-archimport for more details.
24 - create tag objects instead of ref tags
25 - audit shell-escaping of filenames
26 - hide our private tags somewhere smarter
27 - find a way to make "cat *patches | patch" safe even when patchfiles are missing newlines
31 Add print in front of the shell commands invoked via backticks.
39 use File
::Temp
qw(tempfile tempdir);
40 use File
::Path
qw(mkpath);
41 use File
::Basename
qw(basename dirname);
42 use String
::ShellQuote
;
46 use POSIX
qw(strftime dup2);
47 use Data
::Dumper qw
/ Dumper /;
50 $SIG{'PIPE'}="IGNORE";
53 my $git_dir = $ENV{"GIT_DIR"} || ".git";
54 $ENV{"GIT_DIR"} = $git_dir;
56 our($opt_h,$opt_v, $opt_T,
61 Usage: ${\basename $0} # fetch/update GIT from Arch
62 [ -h ] [ -v ] [ -T ] [ -t tempdir ]
63 repository/arch-branch [ repository/arch-branch] ...
68 getopts
("Thvt:") or usage
();
71 @ARGV >= 1 or usage
();
72 my @arch_roots = @ARGV;
74 my ($tmpdir, $tmpdirname) = tempdir
('git-archimport-XXXXXX', TMPDIR
=> 1, CLEANUP
=> 1);
75 my $tmp = $opt_t || 1;
76 $tmp = tempdir
('git-archimport-XXXXXX', TMPDIR
=> 1, CLEANUP
=> 1);
77 $opt_v && print "+ Using $tmp as temporary directory\n";
79 my @psets = (); # the collection
80 my %psets = (); # the collection, by name
82 my %rptags = (); # my reverse private tags
83 # to map a SHA1 to a commitid
85 foreach my $root (@arch_roots) {
86 my ($arepo, $abranch) = split(m!/!, $root);
87 open ABROWSE
, "tla abrowse -f -A $arepo --desc --merges $abranch |"
88 or die "Problems with tla abrowse: $!";
90 my %ps = (); # the current one
97 # first record padded w 8 spaces
100 # store the record we just captured
102 my %temp = %ps; # break references
103 push (@psets, \
%temp);
104 $psets{$temp{id
}} = \
%temp;
108 my ($id, $type) = split(m/\s{3}/, $_);
113 if ($type =~ m/^\(simple changeset\)/) {
115 } elsif ($type eq '(initial import)') {
117 } elsif ($type =~ m/^\(tag revision of (.+)\)/) {
121 warn "Unknown type $type";
127 # 10 leading spaces or more
128 # indicate commit metadata
131 if ($lastseen eq 'id' && m/^\d{4}-\d{2}-\d{2}/) {
133 my ($date, $authoremail) = split(m/\s{2,}/, $_);
135 $ps{date
} =~ s/\bGMT$//; # strip off trailign GMT
136 if ($ps{date
} =~ m/\b\w+$/) {
137 warn 'Arch dates not in GMT?! - imported dates will be wrong';
140 $authoremail =~ m/^(.+)\s(\S+)$/;
146 } elsif ($lastseen eq 'date') {
147 # the only hint is position
148 # subject is after date
152 } elsif ($lastseen eq 'subj' && $_ eq 'merges in:') {
154 $lastseen = 'merges';
156 } elsif ($lastseen eq 'merges' && s/^\s{2}//) {
157 push (@
{$ps{merges
}}, $_);
159 warn 'more metadata after merges!?';
166 my %temp = %ps; # break references
167 push (@psets, \
%temp);
168 $psets{ $temp{id
} } = \
%temp;
172 } # end foreach $root
174 ## Order patches by time
175 @psets = sort {$a->{date
}.$b->{id
} cmp $b->{date
}.$b->{id
}} @psets;
177 #print Dumper \@psets;
180 ## TODO cleanup irrelevant patches
181 ## and put an initial import
184 unless (-d
$git_dir) { # initial import
185 if ($psets[0]{type
} eq 'i' || $psets[0]{type
} eq 't') {
186 print "Starting import from $psets[0]{id}\n";
191 die "Need to start from an import or a tag -- cannot use $psets[0]{id}";
193 } else { # progressing an import
195 opendir(DIR
, "$git_dir/archimport/tags")
196 || die "can't opendir: $!";
197 while (my $file = readdir(DIR
)) {
198 # skip non-interesting-files
199 next unless -f
"$git_dir/archimport/tags/$file";
200 next if $file =~ m/--base-0$/; # don't care for base-0
201 my $sha = ptag
($file);
203 # reconvert the 3rd '--' sequence from the end
205 # $file = reverse $file;
206 # $file =~ s!^(.+?--.+?--.+?--.+?)--(.+)$!$1/$2!;
207 # $file = reverse $file;
208 $rptags{$sha} = $file;
214 foreach my $ps (@psets) {
216 $ps->{branch
} = branchname
($ps->{id
});
219 # ensure we have a clean state
221 if (`git diff-files`) {
222 die "Unclean tree when about to process $ps->{id} " .
223 " - did we fail to commit cleanly before?";
228 # skip commits already in repo
230 if (ptag
($ps->{id
})) {
231 $opt_v && print "Skipping already imported: $ps->{id}\n";
236 # create the branch if needed
238 if ($ps->{type
} eq 'i' && !$import) {
239 die "Should not have more than one 'Initial import' per GIT import: $ps->{id}";
242 unless ($import) { # skip for import
243 if ( -e
"$git_dir/refs/heads/$ps->{branch}") {
244 # we know about this branch
245 `git checkout $ps->{branch}`;
247 # new branch! we need to verify a few things
248 die "Branch on a non-tag!" unless $ps->{type
} eq 't';
249 my $branchpoint = ptag
($ps->{tag
});
250 die "Tagging from unknown id unsupported: $ps->{tag}"
253 # find where we are supposed to branch from
254 `git checkout -b $ps->{branch} $branchpoint`;
256 # If we trust Arch with the fact that this is just
257 # a tag, and it does not affect the state of the tree
258 # then we just tag and move on
259 tag
($ps->{id
}, $branchpoint);
260 ptag
($ps->{id
}, $branchpoint);
261 print " * Tagged $ps->{id} at $branchpoint\n";
268 # Apply the import/changeset/merge into the working tree
270 if ($ps->{type
} eq 'i' || $ps->{type
} eq 't') {
271 apply_import
($ps) or die $!;
273 } elsif ($ps->{type
} eq 's') {
278 # prepare update git's index, based on what arch knows
279 # about the pset, resolve parents, etc
283 my $commitlog = `tla cat-archive-log -A $ps->{repo} $ps->{id}`;
284 die "Error in cat-archive-log: $!" if $?
;
286 # parselog will git-add/rm files
287 # and generally prepare things for the commit
288 # NOTE: parselog will shell-quote filenames!
289 my ($sum, $msg, $add, $del, $mod, $ren) = parselog
($commitlog);
290 my $logmessage = "$sum\n$msg";
293 # imports don't give us good info
294 # on added files. Shame on them
295 if ($ps->{type
} eq 'i' || $ps->{type
} eq 't') {
296 `find . -type f -print0 | grep -zv '^./$git_dir' | xargs -0 -l100 git-update-index --add`;
297 `git-ls-files --deleted -z | xargs --no-run-if-empty -0 -l100 git-update-index --remove`;
302 my @slice = splice(@
$add, 0, 100);
303 my $slice = join(' ', @slice);
304 `git-update-index --add $slice`;
305 die "Error in git-update-index --add: $!" if $?
;
309 foreach my $file (@
$del) {
310 unlink $file or die "Problems deleting $file : $!";
313 my @slice = splice(@
$del, 0, 100);
314 my $slice = join(' ', @slice);
315 `git-update-index --remove $slice`;
316 die "Error in git-update-index --remove: $!" if $?
;
319 if (@
$ren) { # renamed
321 die "Odd number of entries in rename!?";
325 my $from = pop @
$ren;
328 unless (-d dirname
($to)) {
329 mkpath
(dirname
($to)); # will die on err
331 #print "moving $from $to";
333 die "Error renaming $from $to : $!" if $?
;
334 `git-update-index --remove $from`;
335 die "Error in git-update-index --remove: $!" if $?
;
336 `git-update-index --add $to`;
337 die "Error in git-update-index --add: $!" if $?
;
341 if (@
$mod) { # must be _after_ renames
343 my @slice = splice(@
$mod, 0, 100);
344 my $slice = join(' ', @slice);
345 `git-update-index $slice`;
346 die "Error in git-update-index: $!" if $?
;
350 # warn "errors when running git-update-index! $!";
351 $tree = `git-write-tree`;
352 die "cannot write tree $!" if $?
;
360 if ( -e
"$git_dir/refs/heads/$ps->{branch}") {
361 if (open HEAD
, "<$git_dir/refs/heads/$ps->{branch}") {
367 if ($ps->{type
} eq 's') {
368 warn "Could not find the right head for the branch $ps->{branch}";
374 push @par, find_parents
($ps);
376 my $par = join (' ', @par);
379 # Commit, tag and clean state
382 $ENV{GIT_AUTHOR_NAME
} = $ps->{author
};
383 $ENV{GIT_AUTHOR_EMAIL
} = $ps->{email
};
384 $ENV{GIT_AUTHOR_DATE
} = $ps->{date
};
385 $ENV{GIT_COMMITTER_NAME
} = $ps->{author
};
386 $ENV{GIT_COMMITTER_EMAIL
} = $ps->{email
};
387 $ENV{GIT_COMMITTER_DATE
} = $ps->{date
};
389 my ($pid, $commit_rh, $commit_wh);
390 $commit_rh = 'commit_rh';
391 $commit_wh = 'commit_wh';
393 $pid = open2
(*READER
, *WRITER
, "git-commit-tree $tree $par")
395 print WRITER
$logmessage; # write
397 my $commitid = <READER
>; # read
400 waitpid $pid,0; # close;
402 if (length $commitid != 40) {
403 die "Something went wrong with the commit! $! $commitid";
408 open HEAD
, ">$git_dir/refs/heads/$ps->{branch}";
409 print HEAD
$commitid;
411 unlink ("$git_dir/HEAD");
412 symlink("refs/heads/$ps->{branch}","$git_dir/HEAD");
415 ptag
($ps->{id
}, $commitid); # private tag
416 if ($opt_T || $ps->{type
} eq 't' || $ps->{type
} eq 'i') {
417 tag
($ps->{id
}, $commitid);
419 print " * Committed $ps->{id}\n";
420 print " + tree $tree\n";
421 print " + commit $commitid\n";
422 $opt_v && print " + commit date is $ps->{date} \n";
423 $opt_v && print " + parents: $par \n";
429 my @parts = split(m/--/, $id);
430 return join('--', @parts[0..1]);
435 my $bname = branchname
($ps->{id
});
439 `tla get -s --no-pristine -A $ps->{repo} $ps->{id} $tmp/import`;
440 die "Cannot get import: $!" if $?
;
441 `rsync -v --archive --delete --exclude '$git_dir' --exclude '.arch-ids' --exclude '{arch}' $tmp/import/* ./`;
442 die "Cannot rsync import:$!" if $?
;
444 `rm -fr $tmp/import`;
445 die "Cannot remove tempdir: $!" if $?
;
457 `tla get-changeset -A $ps->{repo} $ps->{id} $tmp/changeset`;
458 die "Cannot get changeset: $!" if $?
;
461 if (`find $tmp/changeset/patches -type f -name '*.patch'`) {
462 # this can be sped up considerably by doing
463 # (find | xargs cat) | patch
464 # but that cna get mucked up by patches
465 # with missing trailing newlines or the standard
466 # 'missing newline' flag in the patch - possibly
467 # produced with an old/buggy diff.
468 # slow and safe, we invoke patch once per patchfile
469 `find $tmp/changeset/patches -type f -name '*.patch' -print0 | grep -zv '{arch}' | xargs -iFILE -0 --no-run-if-empty patch -p1 --forward -iFILE`;
470 die "Problem applying patches! $!" if $?
;
473 # apply changed binary files
474 if (my @modified = `find $tmp/changeset/patches -type f -name '*.modified'`) {
475 foreach my $mod (@modified) {
478 $orig =~ s/\.modified$//; # lazy
479 $orig =~ s!^\Q$tmp\E/changeset/patches/!!;
480 #print "rsync -p '$mod' '$orig'";
481 `rsync -p $mod ./$orig`;
482 die "Problem applying binary changes! $!" if $?
;
487 `rsync --archive --exclude '$git_dir' --exclude '.arch-ids' --exclude '{arch}' $tmp/changeset/new-files-archive/* ./`;
489 # deleted files are hinted from the commitlog processing
491 `rm -fr $tmp/changeset`;
496 # A log entry looks like
497 # Revision: moodle-org--moodle--1.3.3--patch-15
498 # Archive: arch-eduforge@catalyst.net.nz--2004
499 # Creator: Penny Leach <penny@catalyst.net.nz>
500 # Date: Wed May 25 14:15:34 NZST 2005
501 # Standard-date: 2005-05-25 02:15:34 GMT
502 # New-files: lang/de/.arch-ids/block_glossary_random.php.id
503 # lang/de/.arch-ids/block_html.php.id
504 # New-directories: lang/de/help/questionnaire
505 # lang/de/help/questionnaire/.arch-ids
506 # Renamed-files: .arch-ids/db_sears.sql.id db/.arch-ids/db_sears.sql.id
507 # db_sears.sql db/db_sears.sql
508 # Removed-files: lang/be/docs/.arch-ids/release.html.id
509 # lang/be/docs/.arch-ids/releaseold.html.id
510 # Modified-files: admin/cron.php admin/delete.php
511 # admin/editor.html backup/lib.php backup/restore.php
512 # New-patches: arch-eduforge@catalyst.net.nz--2004/moodle-org--moodle--1.3.3--patch-15
513 # Summary: Updating to latest from MOODLE_14_STABLE (1.4.5+)
516 # Updating yadda tadda tadda madda
521 my (@add, @del, @mod, @ren, @kw, $sum, $msg );
523 if ($log =~ m/(?:\n|^)New-files:(.*?)(?=\n\w)/s ) {
525 @add = split(m/\s+/s, $files);
528 if ($log =~ m/(?:\n|^)Removed-files:(.*?)(?=\n\w)/s ) {
530 @del = split(m/\s+/s, $files);
533 if ($log =~ m/(?:\n|^)Modified-files:(.*?)(?=\n\w)/s ) {
535 @mod = split(m/\s+/s, $files);
538 if ($log =~ m/(?:\n|^)Renamed-files:(.*?)(?=\n\w)/s ) {
540 @ren = split(m/\s+/s, $files);
544 if ($log =~ m/^Summary:(.+?)$/m ) {
551 if ($log =~ m/\n\n(.+)$/s) {
559 foreach my $ref ( (\
@add, \
@del, \
@mod, \
@ren) ) {
561 while (my $t = pop @
$ref) {
562 next unless length ($t);
563 next if $t =~ m!\{arch\}/!;
564 next if $t =~ m!\.arch-ids/!;
565 next if $t =~ m!\.arch-inventory$!;
566 push (@tmp, shell_quote
($t));
571 #print Dumper [$sum, $msg, \@add, \@del, \@mod, \@ren];
572 return ($sum, $msg, \
@add, \
@del, \
@mod, \
@ren);
577 my ($tag, $commit) = @_;
579 $tag = shell_quote
($tag);
582 open(C
,">$git_dir/refs/tags/$tag")
583 or die "Cannot create tag $tag: $!\n";
585 or die "Cannot write tag $tag: $!\n";
587 or die "Cannot write tag $tag: $!\n";
588 print " * Created tag ' $tag' on '$commit'\n" if $opt_v;
590 open(C
,"<$git_dir/refs/tags/$tag")
591 or die "Cannot read tag $tag: $!\n";
594 die "Error reading tag $tag: $!\n" unless length $commit == 40;
596 or die "Cannot read tag $tag: $!\n";
601 # write/read a private tag
602 # reads fail softly if the tag isn't there
604 my ($tag, $commit) = @_;
606 $tag = shell_quote
($tag);
608 unless (-d
"$git_dir/archimport/tags") {
609 mkpath
("$git_dir/archimport/tags");
612 if ($commit) { # write
613 open(C
,">$git_dir/archimport/tags/$tag")
614 or die "Cannot create tag $tag: $!\n";
616 or die "Cannot write tag $tag: $!\n";
618 or die "Cannot write tag $tag: $!\n";
619 $rptags{$commit} = $tag
620 unless $tag =~ m/--base-0$/;
622 # if the tag isn't there, return 0
623 unless ( -s
"$git_dir/archimport/tags/$tag") {
626 open(C
,"<$git_dir/archimport/tags/$tag")
627 or die "Cannot read tag $tag: $!\n";
630 die "Error reading tag $tag: $!\n" unless length $commit == 40;
632 or die "Cannot read tag $tag: $!\n";
633 unless (defined $rptags{$commit}) {
634 $rptags{$commit} = $tag;
642 # Identify what branches are merging into me
643 # and whether we are fully merged
644 # git-merge-base <headsha> <headsha> should tell
645 # me what the base of the merge should be
649 my %branches; # holds an arrayref per branch
650 # the arrayref contains a list of
651 # merged patches between the base
652 # of the merge and the current head
654 my @parents; # parents found for this commit
656 # simple loop to split the merges
658 foreach my $merge (@
{$ps->{merges
}}) {
659 my $branch = branchname
($merge);
660 unless (defined $branches{$branch} ){
661 $branches{$branch} = [];
663 push @
{$branches{$branch}}, $merge;
667 # foreach branch find a merge base and walk it to the
668 # head where we are, collecting the merged patchsets that
669 # Arch has recorded. Keep that in @have
670 # Compare that with the commits on the other branch
671 # between merge-base and the tip of the branch (@need)
672 # and see if we have a series of consecutive patches
673 # starting from the merge base. The tip of the series
674 # of consecutive patches merged is our new parent for
677 foreach my $branch (keys %branches) {
678 my $mergebase = `git-merge-base $branch $ps->{branch}`;
679 die "Cannot find merge base for $branch and $ps->{branch}" if $?
;
682 # now walk up to the mergepoint collecting what patches we have
683 my $branchtip = git_rev_parse
($ps->{branch
});
684 my @ancestors = `git-rev-list --merge-order $branchtip ^$mergebase`;
685 my %have; # collected merges this branch has
686 foreach my $merge (@
{$ps->{merges
}}) {
690 foreach my $par (@ancestors) {
691 $par = commitid2pset
($par);
692 if (defined $par->{merges
}) {
693 foreach my $merge (@
{$par->{merges
}}) {
694 $ancestorshave{$merge}=1;
698 # print "++++ Merges in $ps->{id} are....\n";
699 # my @have = sort keys %have; print Dumper(\@have);
701 # merge what we have with what ancestors have
702 %have = (%have, %ancestorshave);
704 # see what the remote branch has - these are the merges we
705 # will want to have in a consecutive series from the mergebase
706 my $otherbranchtip = git_rev_parse
($branch);
707 my @needraw = `git-rev-list --merge-order $otherbranchtip ^$mergebase`;
709 foreach my $needps (@needraw) { # get the psets
710 $needps = commitid2pset
($needps);
711 # git-rev-list will also
712 # list commits merged in via earlier
713 # merges. we are only interested in commits
714 # from the branch we're looking at
715 if ($branch eq $needps->{branch
}) {
716 push @need, $needps->{id
};
720 # print "++++ Merges from $branch we want are....\n";
721 # print Dumper(\@need);
724 while (my $needed_commit = pop @need) {
725 if ($have{$needed_commit}) {
726 $newparent = $needed_commit;
728 last; # break out of the while
732 push @parents, $newparent;
736 } # end foreach branch
738 # prune redundant parents
740 foreach my $p (@parents) {
743 foreach my $p (@parents) {
744 next unless exists $psets{$p}{merges
};
745 next unless ref $psets{$p}{merges
};
746 my @merges = @
{$psets{$p}{merges
}};
747 foreach my $merge (@merges) {
748 if ($parents{$merge}) {
749 delete $parents{$merge};
753 @parents = keys %parents;
754 @parents = map { " -p " . ptag
($_) } @parents;
760 my $val = `git-rev-parse $name`;
761 die "Error: git-rev-parse $name" if $?
;
766 # resolve a SHA1 to a known patchset
768 my $commitid = shift;
770 my $name = $rptags{$commitid}
771 || die "Cannot find reverse tag mapping for $commitid";
772 # the keys in %rptag are slightly munged; unmunge
773 # reconvert the 3rd '--' sequence from the end
775 $name = reverse $name;
776 $name =~ s!^(.+?--.+?--.+?--.+?)--(.+)$!$1/$2!;
777 $name = reverse $name;
778 my $ps = $psets{$name}
779 || (print Dumper
(sort keys %psets)) && die "Cannot find patchset for $name";