add the -r flag from darcs-all
authorSimon Marlow <marlowsd@gmail.com>
Thu, 13 Jan 2011 11:16:54 +0000 (11:16 +0000)
committerSimon Marlow <marlowsd@gmail.com>
Thu, 13 Jan 2011 11:16:54 +0000 (11:16 +0000)
sync-all

index 9db2dbb..930cfd2 100644 (file)
--- a/sync-all
+++ b/sync-all
@@ -12,34 +12,96 @@ my $defaultrepo = `git config remote.$remote.url`;       chomp $defaultrepo;
 my $defaultrepo_base;
 my $checked_out_tree;
 
-if ($defaultrepo =~ /^...*:/) {
-    # HTTP or SSH
-    # Above regex says "at least two chars before the :", to avoid
-    # catching Win32 drives ("C:\").
-    $defaultrepo_base = $defaultrepo;
-    $defaultrepo_base =~ s#/[^/]+/?$##;
-    $checked_out_tree = 0;
-}
-elsif ($defaultrepo =~ /^\/|\.\.\/|.:(\/|\\)/) {
-    # Local filesystem, either absolute or relative path
-    # (assumes a checked-out tree):
-    $defaultrepo_base = $defaultrepo;
-    $checked_out_tree = 1;
-}
-else {
-    die "Couldn't work out defaultrepo";
-}
+my @packages;
 
 my $verbose = 2;
+my $ignore_failure = 0;
+my $want_remote_repo = 0;
+my $checked_out_flag = 0;
+
 my $get_mode;
 
 # Flags specific to a particular command
-my $ignore_failure = 0;
 my $local_repo_unnecessary = 0;
 
-# Always define the empty tag so that we fetch the /required/ packages
 my %tags;
-$tags{"-"} = 1;
+
+# Figure out where to get the other repositories from.
+sub getrepo {
+    my $basedir = ".";
+    my $repo = $defaultrepo || `cat $basedir/_darcs/prefs/defaultrepo`;
+    chomp $repo;
+
+    my $repo_base;
+    my $checked_out_tree;
+
+    if ($repo =~ /^...*:/) {
+        # HTTP or SSH
+        # Above regex says "at least two chars before the :", to avoid
+        # catching Win32 drives ("C:\").
+        $repo_base = $repo;
+
+        # --checked-out is needed if you want to use a checked-out repo
+        # over SSH or HTTP
+        if ($checked_out_flag) {
+            $checked_out_tree = 1;
+        } else {
+            $checked_out_tree = 0;
+        }
+
+        # Don't drop the last part of the path if specified with -r, as
+        # it expects repos of the form:
+        #
+        #   http://darcs.haskell.org
+        #
+        # rather than
+        #   
+        #   http://darcs.haskell.org/ghc
+        #
+        if (!$defaultrepo) {
+            $repo_base =~ s#/[^/]+/?$##;
+        }
+    }
+    elsif ($repo =~ /^\/|\.\.\/|.:(\/|\\)/) {
+        # Local filesystem, either absolute or relative path
+        # (assumes a checked-out tree):
+        $repo_base = $repo;
+        $checked_out_tree = 1;
+    }
+    else {
+        die "Couldn't work out repo";
+    }
+
+    return $repo_base, $checked_out_tree;
+}
+
+sub parsePackages {
+    my @repos;
+    my $lineNum;
+
+    open IN, "< packages.git" or die "Can't open packages file";
+    @repos = <IN>;
+    close IN;
+
+    @packages = ();
+    $lineNum = 0;
+    foreach (@repos) {
+        chomp;
+        $lineNum++;
+        if (/^([^# ]+) +([^ ]+) +([^ ]+) +([^ ]+) +([^ ]+)$/) {
+            my %line;
+            $line{"localpath"}  = $1;
+            $line{"tag"}        = $2;
+            $line{"remotepath"} = $3;
+            $line{"vcs"}        = $4;
+            $line{"upstream"}   = $5;
+            push @packages, \%line;
+        }
+        elsif (! /^(#.*)?$/) {
+            die "Bad content on line $lineNum of packages file: $_";
+        }
+    }
+}
 
 sub message {
     if ($verbose >= 2) {
@@ -81,33 +143,36 @@ sub scmall {
     my $remotepath;
     my $scm;
     my $upstream;
+    my $line;
 
     my $path;
     my $wd_before = getcwd;
 
     my @scm_args;
 
-    open IN, "< packages" or die "Can't open packages file";
-    while (<IN>) {
-        chomp;
-        if (/^([^# ]+) +(?:([^ ]+) +)?([^ ]+) +([^ ]+) +([^ ]+)$/) {
-            $localpath = $1;
-            $tag = defined($2) ? $2 : "";
-            $remotepath = $3;
-            $scm = $4;
-            $upstream = $5;
+    my ($repo_base, $checked_out_tree) = getrepo();
+
+    parsePackages;
+
+    for $line (@packages) {
+
+            $localpath  = $$line{"localpath"};
+            $tag        = $$line{"tag"};
+            $remotepath = $$line{"remotepath"};
+            $scm        = $$line{"vcs"};
+            $upstream   = $$line{"upstream"};
 
             # Check the SCM is OK as early as possible
             die "Unknown SCM: $scm" if (($scm ne "darcs") and ($scm ne "git"));
 
             # Work out the path for this package in the repo we pulled from
             if ($checked_out_tree) {
-                $path = "$defaultrepo_base/$localpath";
+                $path = "$repo_base/$localpath";
             }
             else {
-                $path = "$defaultrepo_base/$remotepath";
+                $path = "$repo_base/$remotepath";
             }
-            
+
             # Work out the arguments we should give to the SCM
             if ($command =~ /^(?:w|wh|wha|what|whats|whatsn|whatsne|whatsnew)$/) {
                 @scm_args = (($scm eq "darcs" and "whatsnew")
@@ -118,9 +183,11 @@ sub scmall {
             }
             elsif ($command =~ /^(?:pus|push)$/) {
                 @scm_args = "push";
+                $want_remote_repo = 1;
             }
             elsif ($command =~ /^(?:pul|pull)$/) {
                 @scm_args = "pull";
+                $want_remote_repo = 1;
                 # Q: should we append the -a argument for darcs repos?
             }
             elsif ($command =~ /^(?:g|ge|get)$/) {
@@ -154,16 +221,25 @@ sub scmall {
             elsif ($command =~ /^(?:s|se|sen|send)$/) {
                 @scm_args = (($scm eq "darcs" and "send")
                           or ($scm eq "git" and "send-email"));
+                $want_remote_repo = 1;
             }
             else {
                 die "Unknown command: $command";
             }
             
             # Actually execute the command
-            chdir $wd_before or die "Could not change to $wd_before";
             if (repoexists ($scm, $localpath)) {
-                chdir $localpath or die "Could not change to $localpath";
-                scm ($scm, @scm_args, @_);
+                if ($want_remote_repo) {
+                    if ($scm eq "darcs") {
+                        scm ($scm, @scm_args, @_, "--repodir=$localpath", $path);
+                    } else {
+                        # git pull doesn't like to be used with --work-dir
+                        scm ($scm, "--git-dir=$localpath/.git", @scm_args, @_, $path, "master");
+                    }
+                } else {
+                    # git status *must* be used with --work-dir, if we don't chdir() to the dir
+                    scm ($scm, "--git-dir=$localpath/.git", "--work-tree=$localpath", @scm_args, @_);
+                }
             }
             elsif ($local_repo_unnecessary) {
                 # Don't bother to change directory in this case
@@ -175,12 +251,7 @@ sub scmall {
             else {
                 message "== $localpath repo not present; skipping";
             }
-        }
-        elsif (! /^(#.*)?$/) {
-            die "Bad line: $_";
-        }
     }
-    close IN;
 }
 
 sub main {
@@ -188,6 +259,9 @@ sub main {
         die "error: sync-all must be run from the top level of the ghc tree."
     }
 
+    $tags{"-"} = 1;
+    $tags{"dph"} = 1;
+
     while ($#_ ne -1) {
         my $arg = shift;
         # We handle -q here as well as lower down as we need to skip over it
@@ -198,12 +272,20 @@ sub main {
         elsif ($arg eq "-s") {
             $verbose = 0;
         }
+        elsif ($arg eq "-r") {
+            $defaultrepo = shift;
+        }
         elsif ($arg eq "--ignore-failure") {
             $ignore_failure = 1;
         }
         elsif ($arg eq "--complete" || $arg eq "--partial") {
             $get_mode = $arg;
         }
+        # Use --checked-out if the remote repos are a checked-out tree,
+        # rather than the master trees.
+        elsif ($arg eq "--checked-out") {
+            $checked_out_flag = 1;
+        }
         # --<tag> says we grab the libs tagged 'tag' with
         # 'get'. It has no effect on the other commands.
         elsif ($arg =~ m/^--/) {
@@ -243,7 +325,7 @@ END
         while (<IN>) {
             chomp;
             if (/^([^# ]+) +(?:([^ ]+) +)?([^ ]+) +([^ ]+)/) {
-                if (defined($2)) {
+                if (defined($2) && $2 ne "-") {
                     $available_tags{$2} = 1;
                 }
             }
@@ -255,7 +337,7 @@ END
         
         # Show those tags and the help text
         my @available_tags = keys %available_tags;
-        print "$help@available_tags";
+        print "$help@available_tags\n";
         exit 1;
     }
     else {