aboutsummaryrefslogtreecommitdiff
path: root/scripts/copy-from-other-stores.pl.in
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2008-08-02 12:54:35 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2008-08-02 12:54:35 +0000
commit3c92ea399d717dc45b3fa91424c0dadc0239ebf2 (patch)
tree7cde9f533a6ee575615da5452e04c05dc0939f02 /scripts/copy-from-other-stores.pl.in
parentfc691e1cbdcddb8c553cba06d4089bc1b60e3d98 (diff)
* Make nix-env --dry-run print the paths to be substituted correctly
again. (After the previous substituter mechanism refactoring I didn't update the code that obtains the references of substitutable paths.) This required some refactoring: the substituter programs are now kept running and receive/respond to info requests via stdin/stdout.
Diffstat (limited to 'scripts/copy-from-other-stores.pl.in')
-rw-r--r--scripts/copy-from-other-stores.pl.in71
1 files changed, 39 insertions, 32 deletions
diff --git a/scripts/copy-from-other-stores.pl.in b/scripts/copy-from-other-stores.pl.in
index 74efbd745..00de3ff99 100644
--- a/scripts/copy-from-other-stores.pl.in
+++ b/scripts/copy-from-other-stores.pl.in
@@ -2,6 +2,9 @@
use strict;
use File::Basename;
+use IO::Handle;
+
+STDOUT->autoflush(1);
my @remoteStoresAll = split ':', ($ENV{"NIX_OTHER_STORES"} or "");
@@ -33,42 +36,46 @@ sub findStorePath {
}
-if ($ARGV[0] eq "--query-paths") {
- foreach my $store (@remoteStores) {
- opendir DIR, "$store/var/nix/db/info" or next;
- print "@storedir@/$_\n" foreach readdir DIR;
- closedir DIR;
- }
-}
+if ($ARGV[0] eq "--query") {
+ while (<STDIN>) {
+ my $cmd = $_; chomp $cmd;
-elsif ($ARGV[0] eq "--query-info") {
- shift @ARGV;
-
- foreach my $storePath (@ARGV) {
-
- (my $infoFile) = findStorePath $storePath;
- next unless $infoFile;
-
- my $deriver = "";
- my @references = ();
-
- open INFO, "<$infoFile" or die "cannot read info file $infoFile\n";
- while (<INFO>) {
- chomp;
- #print STDERR "GOT $_\n";
- /^([\w-]+): (.*)$/ or die "bad info file";
- my $key = $1;
- my $value = $2;
- if ($key eq "Deriver") { $deriver = $value; }
- elsif ($key eq "References") { @references = split ' ', $value; }
+ if ($cmd eq "have") {
+ my $storePath = <STDIN>; chomp $storePath;
+ (my $infoFile) = findStorePath $storePath;
+ print STDOUT ($infoFile ? "1\n" : "0\n");
+ }
+
+ elsif ($cmd eq "info") {
+ my $storePath = <STDIN>; chomp $storePath;
+ (my $infoFile) = findStorePath $storePath;
+ if (!$infoFile) {
+ print "0\n";
+ next; # not an error
+ }
+ print "1\n";
+
+ my $deriver = "";
+ my @references = ();
+
+ open INFO, "<$infoFile" or die "cannot read info file $infoFile\n";
+ while (<INFO>) {
+ chomp;
+ /^([\w-]+): (.*)$/ or die "bad info file";
+ my $key = $1;
+ my $value = $2;
+ if ($key eq "Deriver") { $deriver = $value; }
+ elsif ($key eq "References") { @references = split ' ', $value; }
+ }
+ close INFO;
+
+ print "$deriver\n";
+ print scalar @references, "\n";
+ print "$_\n" foreach @references;
}
- close INFO;
- print "$storePath\n";
- print "$deriver\n";
- print scalar @references, "\n";
- print "$_\n" foreach @references;
+ else { die "unknown command `$cmd'"; }
}
}