aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-08 18:39:07 -0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-08 18:39:07 -0400
commit400e556b34ff0563f34b191de5f632dc4377f0cd (patch)
tree34c70dfddf904bb220365dd93ea8bf8f8be080c1 /scripts
parent11800e61983677f92fd5a08f51beb9036f947d6e (diff)
Cleanup
Diffstat (limited to 'scripts')
-rw-r--r--scripts/download-from-binary-cache.pl.in26
1 files changed, 13 insertions, 13 deletions
diff --git a/scripts/download-from-binary-cache.pl.in b/scripts/download-from-binary-cache.pl.in
index a67818e7f..37f8db0a9 100644
--- a/scripts/download-from-binary-cache.pl.in
+++ b/scripts/download-from-binary-cache.pl.in
@@ -230,7 +230,7 @@ sub getCacheId {
sub cachedGetInfoFrom {
- my ($storePath, $pathHash, $binaryCacheUrl) = @_;
+ my ($storePath, $binaryCacheUrl) = @_;
$queryNAR->execute(getCacheId($binaryCacheUrl), basename($storePath));
my $res = $queryNAR->fetchrow_hashref();
@@ -260,16 +260,22 @@ sub printInfo {
}
+sub infoUrl {
+ my ($binaryCacheUrl, $storePath) = @_;
+ my $pathHash = substr(basename($storePath), 0, 32);
+ my $infoUrl = "$binaryCacheUrl/$pathHash.narinfo";
+}
+
+
sub printInfoParallel {
my @paths = @_;
# First print all paths for which we have cached info.
my @left;
foreach my $storePath (@paths) {
- my $pathHash = substr(basename($storePath), 0, 32);
my $found = 0;
foreach my $binaryCacheUrl (@binaryCacheUrls) {
- my $info = cachedGetInfoFrom($storePath, $pathHash, $binaryCacheUrl);
+ my $info = cachedGetInfoFrom($storePath, $binaryCacheUrl);
if (defined $info) {
printInfo($storePath, $info);
$found = 1;
@@ -286,13 +292,11 @@ sub printInfoParallel {
my @left2;
%requests = ();
foreach my $storePath (@left) {
- my $pathHash = substr(basename($storePath), 0, 32);
if (negativeHit($storePath, $binaryCacheUrl)) {
push @left2, $storePath;
next;
}
- my $infoUrl = "$binaryCacheUrl/$pathHash.narinfo";
- addRequest($storePath, $infoUrl);
+ addRequest($storePath, infoUrl($binaryCacheUrl, $storePath));
}
processRequests;
@@ -314,14 +318,12 @@ sub printInfoParallel {
sub downloadBinary {
my ($storePath) = @_;
- my $pathHash = substr(basename($storePath), 0, 32);
-
- cache: foreach my $binaryCacheUrl (@binaryCacheUrls) {
- my $info = cachedGetInfoFrom($storePath, $pathHash, $binaryCacheUrl);
+ foreach my $binaryCacheUrl (@binaryCacheUrls) {
+ my $info = cachedGetInfoFrom($storePath, $binaryCacheUrl);
unless (defined $info) {
next if negativeHit($storePath, $binaryCacheUrl);
- my $request = addRequest($storePath, "$binaryCacheUrl/$pathHash.narinfo");
+ my $request = addRequest($storePath, infoUrl($binaryCacheUrl, $storePath));
processRequests;
$info = processNARInfo($storePath, $binaryCacheUrl, $request);
}
@@ -368,8 +370,6 @@ if ($ARGV[0] eq "--query") {
my $storePath = <STDIN>; chomp $storePath;
# FIXME: want to give correct info here, but it's too slow.
print "0\n";
- #my $info = getInfo($storePath);
- #if (defined $info) { print "1\n"; } else { print "0\n"; }
}
elsif ($cmd eq "info") {