* Propagate the deriver of a path through the substitute mechanism.

* Removed some dead code (successor stuff) from nix-push.
* Updated terminology in the tests (store expr -> drv path).
* Check that the deriver is set properly in the tests.
This commit is contained in:
Eelco Dolstra 2005-02-09 12:57:13 +00:00
parent 582e01c06f
commit 98df735b51
18 changed files with 86 additions and 74 deletions

View File

@ -81,6 +81,7 @@ foreach my $storePath (keys %narFiles) {
my $narFileList = $narFiles{$storePath}; my $narFileList = $narFiles{$storePath};
foreach my $narFile (@{$narFileList}) { foreach my $narFile (@{$narFileList}) {
print WRITE "$storePath\n"; print WRITE "$storePath\n";
print WRITE "$narFile->{deriver}\n";
print WRITE "$libexecDir/nix/download-using-manifests.pl\n"; print WRITE "$libexecDir/nix/download-using-manifests.pl\n";
print WRITE "0\n"; print WRITE "0\n";
my @references = split " ", $narFile->{references}; my @references = split " ", $narFile->{references};

View File

@ -138,7 +138,6 @@ print STDERR "creating manifest...\n";
my %narFiles; my %narFiles;
my %patches; my %patches;
my %successors;
my @nararchives; my @nararchives;
for (my $n = 0; $n < scalar @storePaths; $n++) { for (my $n = 0; $n < scalar @storePaths; $n++) {
@ -169,7 +168,14 @@ for (my $n = 0; $n < scalar @storePaths; $n++) {
my $narbz2Size = (stat $narfile)[7]; my $narbz2Size = (stat $narfile)[7];
my $references = join(" ", split(" ", `$binDir/nix-store --query --references '$storePath'`)); my $references = `$binDir/nix-store --query --references '$storePath'`;
die "cannot query references for `$storePath'" if $? != 0;
$references = join(" ", split(" ", $references));
my $deriver = `$binDir/nix-store --query --deriver '$storePath'`;
die "cannot query deriver for `$storePath'" if $? != 0;
chomp $deriver;
$deriver = "" if $deriver eq "unknown-deriver";
my $url; my $url;
if ($localCopy) { if ($localCopy) {
@ -184,27 +190,12 @@ for (my $n = 0; $n < scalar @storePaths; $n++) {
, narHash => $narHash , narHash => $narHash
, hashAlgo => "sha1" , hashAlgo => "sha1"
, references => $references , references => $references
, deriver => $deriver
} }
]; ];
if ($storePath =~ /\.store$/) {
open PREDS, "$binDir/nix-store --query --predecessors $storePath |" or die "cannot run nix";
while (<PREDS>) {
chomp;
die unless (/^\//);
my $pred = $_;
# Only include predecessors that are themselves being
# pushed.
if (defined $storePaths{$pred}) {
$successors{$pred} = $storePath;
}
}
close PREDS;
}
} }
writeManifest $manifest, \%narFiles, \%patches, \%successors; writeManifest $manifest, \%narFiles, \%patches;
sub copyFile { sub copyFile {

View File

@ -51,6 +51,7 @@ sub readManifest {
my $patchType; my $patchType;
my $narHash; my $narHash;
my $references; my $references;
my $deriver;
while (<MANIFEST>) { while (<MANIFEST>) {
chomp; chomp;
@ -73,6 +74,7 @@ sub readManifest {
undef $baseHash; undef $baseHash;
undef $patchType; undef $patchType;
$references = ""; $references = "";
$deriver = "";
} }
} else { } else {
@ -102,6 +104,7 @@ sub readManifest {
push @{$narFileList}, push @{$narFileList},
{ url => $url, hash => $hash, size => $size { url => $url, hash => $hash, size => $size
, narHash => $narHash, references => $references , narHash => $narHash, references => $references
, deriver => $deriver
}; };
} }
@ -131,6 +134,7 @@ sub readManifest {
elsif (/^\s*Type:\s*(\S+)\s*$/) { $patchType = $1; } elsif (/^\s*Type:\s*(\S+)\s*$/) { $patchType = $1; }
elsif (/^\s*NarHash:\s*(\S+)\s*$/) { $narHash = $1; } elsif (/^\s*NarHash:\s*(\S+)\s*$/) { $narHash = $1; }
elsif (/^\s*References:\s*(.*)\s*$/) { $references = $1; } elsif (/^\s*References:\s*(.*)\s*$/) { $references = $1; }
elsif (/^\s*Deriver:\s*(\S+)\s*$/) { $deriver = $1; }
# Compatibility; # Compatibility;
elsif (/^\s*NarURL:\s*(\S+)\s*$/) { $url = $1; } elsif (/^\s*NarURL:\s*(\S+)\s*$/) { $url = $1; }
@ -148,7 +152,6 @@ sub writeManifest
my $manifest = shift; my $manifest = shift;
my $narFiles = shift; my $narFiles = shift;
my $patches = shift; my $patches = shift;
my $successors = shift;
open MANIFEST, ">$manifest.tmp"; # !!! check exclusive open MANIFEST, ">$manifest.tmp"; # !!! check exclusive
@ -164,11 +167,8 @@ sub writeManifest
print MANIFEST " Size: $narFile->{size}\n"; print MANIFEST " Size: $narFile->{size}\n";
print MANIFEST " References: $narFile->{references}\n" print MANIFEST " References: $narFile->{references}\n"
if defined $narFile->{references} && $narFile->{references} ne ""; if defined $narFile->{references} && $narFile->{references} ne "";
foreach my $p (keys %{$successors}) { # !!! quadratic print MANIFEST " Deriver: $narFile->{deriver}\n"
if ($$successors{$p} eq $storePath) { if defined $narFile->{deriver} && $narFile->{deriver} ne "";
print MANIFEST " SuccOf: $p\n";
}
}
print MANIFEST "}\n"; print MANIFEST "}\n";
} }
} }

View File

@ -1502,7 +1502,8 @@ void SubstitutionGoal::finished()
Transaction txn; Transaction txn;
createStoreTransaction(txn); createStoreTransaction(txn);
registerValidPath(txn, storePath, contentHash, references, ""); registerValidPath(txn, storePath, contentHash,
references, sub.deriver);
txn.commit(); txn.commit();
outputLock->setDeletion(true); outputLock->setDeletion(true);

View File

@ -391,6 +391,9 @@ Path queryDeriver(const Transaction & txn, const Path & storePath)
} }
const int substituteVersion = 2;
static Substitutes readSubstitutes(const Transaction & txn, static Substitutes readSubstitutes(const Transaction & txn,
const Path & srcPath) const Path & srcPath)
{ {
@ -406,13 +409,15 @@ static Substitutes readSubstitutes(const Transaction & txn,
break; break;
} }
Strings ss2 = unpackStrings(*i); Strings ss2 = unpackStrings(*i);
if (ss2.size() == 3) { if (ss2.size() == 0) continue;
/* Another old-style substitute. */ int version;
continue; if (!string2Int(ss2.front(), version)) continue;
} if (version != substituteVersion) continue;
if (ss2.size() != 2) throw Error("malformed substitute"); if (ss2.size() != 4) throw Error("malformed substitute");
Strings::iterator j = ss2.begin(); Strings::iterator j = ss2.begin();
j++;
Substitute sub; Substitute sub;
sub.deriver = *j++;
sub.program = *j++; sub.program = *j++;
sub.args = unpackStrings(*j++); sub.args = unpackStrings(*j++);
subs.push_back(sub); subs.push_back(sub);
@ -431,6 +436,8 @@ static void writeSubstitutes(const Transaction & txn,
i != subs.end(); ++i) i != subs.end(); ++i)
{ {
Strings ss2; Strings ss2;
ss2.push_back((format("%1%") % substituteVersion).str());
ss2.push_back(i->deriver);
ss2.push_back(i->program); ss2.push_back(i->program);
ss2.push_back(packStrings(i->args)); ss2.push_back(packStrings(i->args));
ss.push_back(packStrings(ss2)); ss.push_back(packStrings(ss2));

View File

@ -16,7 +16,10 @@ const int nixSchemaVersion = 2;
path (typically by fetching it from somewhere, e.g., from the path (typically by fetching it from somewhere, e.g., from the
network). */ network). */
struct Substitute struct Substitute
{ {
/* The derivation that built this store path (empty if none). */
Path deriver;
/* Program to be executed to create the store path. Must be in /* Program to be executed to create the store path. Must be in
the output path of `storeExpr'. */ the output path of `storeExpr'. */
Path program; Path program;

View File

@ -280,6 +280,7 @@ static void opSubstitute(Strings opFlags, Strings opArgs)
PathSet references; PathSet references;
getline(cin, srcPath); getline(cin, srcPath);
if (cin.eof()) break; if (cin.eof()) break;
getline(cin, sub.deriver);
getline(cin, sub.program); getline(cin, sub.program);
string s; string s;
int n; int n;

View File

@ -1,10 +1,10 @@
export NIX_BUILD_HOOK="build-hook.hook.sh" export NIX_BUILD_HOOK="build-hook.hook.sh"
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate build-hook.nix) drvPath=$($TOP/src/nix-instantiate/nix-instantiate build-hook.nix)
echo "store expr is $storeExpr" echo "derivation is $drvPath"
outPath=$($TOP/src/nix-store/nix-store -quf "$storeExpr") outPath=$($TOP/src/nix-store/nix-store -quf "$drvPath")
echo "output path is $outPath" echo "output path is $outPath"

View File

@ -1,15 +1,15 @@
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate dependencies.nix) drvPath=$($TOP/src/nix-instantiate/nix-instantiate dependencies.nix)
echo "store expr is $storeExpr" echo "derivation is $drvPath"
outPath=$($TOP/src/nix-store/nix-store -rvv "$storeExpr") outPath=$($TOP/src/nix-store/nix-store -rvv "$drvPath")
echo "output path is $outPath" echo "output path is $outPath"
text=$(cat "$outPath"/foobar) text=$(cat "$outPath"/foobar)
if test "$text" != "FOOBAR"; then exit 1; fi if test "$text" != "FOOBAR"; then exit 1; fi
deps=$($TOP/src/nix-store/nix-store -quR "$storeExpr") deps=$($TOP/src/nix-store/nix-store -quR "$drvPath")
echo "output closure contains $deps" echo "output closure contains $deps"
@ -24,3 +24,7 @@ input2OutPath=$(echo "$deps" | grep "dependencies-input-2")
# The referers closure of input-2 should include outPath. # The referers closure of input-2 should include outPath.
$TOP/src/nix-store/nix-store -q --referers-closure "$input2OutPath" | grep "$outPath" $TOP/src/nix-store/nix-store -q --referers-closure "$input2OutPath" | grep "$outPath"
# Check that the derivers are set properly.
test $($TOP/src/nix-store/nix-store -q --deriver "$outPath") = "$drvPath"
$TOP/src/nix-store/nix-store -q --deriver "$input2OutPath" | grep -q -- "-input-2.drv"

View File

@ -1,14 +1,14 @@
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate fallback.nix) drvPath=$($TOP/src/nix-instantiate/nix-instantiate fallback.nix)
echo "store expr is $storeExpr" echo "derivation is $drvPath"
outPath=$($TOP/src/nix-store/nix-store -q --fallback "$storeExpr") outPath=$($TOP/src/nix-store/nix-store -q --fallback "$drvPath")
echo "output path is $outPath" echo "output path is $outPath"
# Register a non-existant substitute # Register a non-existant substitute
(echo $outPath && echo $TOP/no-such-program && echo 0 && echo 0) | $TOP/src/nix-store/nix-store --substitute (echo $outPath && echo "" && echo $TOP/no-such-program && echo 0 && echo 0) | $TOP/src/nix-store/nix-store --substitute
# Build the derivation # Build the derivation
$TOP/src/nix-store/nix-store -r --fallback "$storeExpr" $TOP/src/nix-store/nix-store -r --fallback "$drvPath"
text=$(cat "$outPath"/hello) text=$(cat "$outPath"/hello)
if test "$text" != "Hello World!"; then exit 1; fi if test "$text" != "Hello World!"; then exit 1; fi

View File

@ -1,17 +1,17 @@
storeExpr1=$($TOP/src/nix-instantiate/nix-instantiate gc-concurrent.nix) drvPath1=$($TOP/src/nix-instantiate/nix-instantiate gc-concurrent.nix)
outPath1=$($TOP/src/nix-store/nix-store -q $storeExpr1) outPath1=$($TOP/src/nix-store/nix-store -q $drvPath1)
storeExpr2=$($TOP/src/nix-instantiate/nix-instantiate gc-concurrent2.nix) drvPath2=$($TOP/src/nix-instantiate/nix-instantiate gc-concurrent2.nix)
outPath2=$($TOP/src/nix-store/nix-store -q $storeExpr2) outPath2=$($TOP/src/nix-store/nix-store -q $drvPath2)
ln -s $storeExpr2 "$NIX_STATE_DIR"/gcroots/foo2 ln -s $drvPath2 "$NIX_STATE_DIR"/gcroots/foo2
# Start build #1 in the background. It starts immediately. # Start build #1 in the background. It starts immediately.
$TOP/src/nix-store/nix-store -rvv "$storeExpr1" & $TOP/src/nix-store/nix-store -rvv "$drvPath1" &
pid1=$! pid1=$!
# Start build #2 in the background after 3 seconds. # Start build #2 in the background after 3 seconds.
(sleep 3 && $TOP/src/nix-store/nix-store -rvv "$storeExpr2") & (sleep 3 && $TOP/src/nix-store/nix-store -rvv "$drvPath2") &
pid2=$! pid2=$!
# Run the garbage collector while the build is running. Note: the GC # Run the garbage collector while the build is running. Note: the GC

View File

@ -1,5 +1,5 @@
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate dependencies.nix) drvPath=$($TOP/src/nix-instantiate/nix-instantiate dependencies.nix)
outPath=$($TOP/src/nix-store/nix-store -rvv "$storeExpr") outPath=$($TOP/src/nix-store/nix-store -rvv "$drvPath")
# Set a GC root. # Set a GC root.
ln -s $outPath "$NIX_STATE_DIR"/gcroots/foo ln -s $outPath "$NIX_STATE_DIR"/gcroots/foo
@ -11,4 +11,4 @@ cat $outPath/foobar
cat $outPath/input-2/bar cat $outPath/input-2/bar
# Check that the derivation has been GC'd. # Check that the derivation has been GC'd.
if cat $storeExpr > /dev/null; then false; fi if cat $drvPath > /dev/null; then false; fi

View File

@ -1,15 +1,15 @@
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate locking.nix) drvPath=$($TOP/src/nix-instantiate/nix-instantiate locking.nix)
echo "store expr is $storeExpr" echo "derivation is $drvPath"
for i in 1 2 3 4 5; do for i in 1 2 3 4 5; do
echo "WORKER $i" echo "WORKER $i"
$TOP/src/nix-store/nix-store -rvv "$storeExpr" & $TOP/src/nix-store/nix-store -rvv "$drvPath" &
done done
sleep 5 sleep 5
outPath=$($TOP/src/nix-store/nix-store -qvvf "$storeExpr") outPath=$($TOP/src/nix-store/nix-store -qvvf "$drvPath")
echo "output path is $outPath" echo "output path is $outPath"

View File

@ -31,3 +31,7 @@ echo "building $drvPath using substitutes..."
$TOP/src/nix-store/nix-store -r $drvPath $TOP/src/nix-store/nix-store -r $drvPath
cat $outPath/input-2/bar cat $outPath/input-2/bar
# Check that the derivers are set properly.
test $($TOP/src/nix-store/nix-store -q --deriver "$outPath") = "$drvPath"
$TOP/src/nix-store/nix-store -q --deriver $(readlink $outPath/input-2) | grep -q -- "-input-2.drv"

View File

@ -1,8 +1,8 @@
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate parallel.nix) drvPath=$($TOP/src/nix-instantiate/nix-instantiate parallel.nix)
echo "store expr is $storeExpr" echo "derivation is $drvPath"
outPath=$($TOP/src/nix-store/nix-store -qfvv -j10000 "$storeExpr") outPath=$($TOP/src/nix-store/nix-store -qfvv -j10000 "$drvPath")
echo "output path is $outPath" echo "output path is $outPath"

View File

@ -1,8 +1,8 @@
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate simple.nix) drvPath=$($TOP/src/nix-instantiate/nix-instantiate simple.nix)
echo "store expr is $storeExpr" echo "derivation is $drvPath"
outPath=$($TOP/src/nix-store/nix-store -rvv "$storeExpr") outPath=$($TOP/src/nix-store/nix-store -rvv "$drvPath")
echo "output path is $outPath" echo "output path is $outPath"

View File

@ -1,20 +1,20 @@
# Instantiate. # Instantiate.
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate substitutes.nix) drvPath=$($TOP/src/nix-instantiate/nix-instantiate substitutes.nix)
echo "store expr is $storeExpr" echo "derivation is $drvPath"
# Find the output path. # Find the output path.
outPath=$($TOP/src/nix-store/nix-store -qvv "$storeExpr") outPath=$($TOP/src/nix-store/nix-store -qvv "$drvPath")
echo "output path is $outPath" echo "output path is $outPath"
regSub() { regSub() {
(echo $1 && echo $2 && echo 3 && echo $outPath && echo Hallo && echo Wereld && echo 0) | $TOP/src/nix-store/nix-store --substitute (echo $1 && echo "" && echo $2 && echo 3 && echo $outPath && echo Hallo && echo Wereld && echo 0) | $TOP/src/nix-store/nix-store --substitute
} }
# Register a substitute for the output path. # Register a substitute for the output path.
regSub $outPath $(pwd)/substituter.sh regSub $outPath $(pwd)/substituter.sh
$TOP/src/nix-store/nix-store -rvv "$storeExpr" $TOP/src/nix-store/nix-store -rvv "$drvPath"
text=$(cat "$outPath"/hello) text=$(cat "$outPath"/hello)
if test "$text" != "Hallo Wereld"; then exit 1; fi if test "$text" != "Hallo Wereld"; then exit 1; fi

View File

@ -1,13 +1,13 @@
# Instantiate. # Instantiate.
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate substitutes2.nix) drvPath=$($TOP/src/nix-instantiate/nix-instantiate substitutes2.nix)
echo "store expr is $storeExpr" echo "derivation is $drvPath"
# Find the output path. # Find the output path.
outPath=$($TOP/src/nix-store/nix-store -qvvvvv "$storeExpr") outPath=$($TOP/src/nix-store/nix-store -qvvvvv "$drvPath")
echo "output path is $outPath" echo "output path is $outPath"
regSub() { regSub() {
(echo $1 && echo $2 && echo 3 && echo $outPath && echo Hallo && echo Wereld && echo 0) | $TOP/src/nix-store/nix-store --substitute (echo $1 && echo "" && echo $2 && echo 3 && echo $outPath && echo Hallo && echo Wereld && echo 0) | $TOP/src/nix-store/nix-store --substitute
} }
# Register a substitute for the output path. # Register a substitute for the output path.
@ -17,7 +17,7 @@ regSub $outPath $(pwd)/substituter.sh
# precedence over the previous one. It will fail. # precedence over the previous one. It will fail.
regSub $outPath $(pwd)/substituter2.sh regSub $outPath $(pwd)/substituter2.sh
$TOP/src/nix-store/nix-store -rvv "$storeExpr" $TOP/src/nix-store/nix-store -rvv "$drvPath"
text=$(cat "$outPath"/hello) text=$(cat "$outPath"/hello)
if test "$text" != "Hallo Wereld"; then exit 1; fi if test "$text" != "Hallo Wereld"; then exit 1; fi