2003-04-09 14:26:48 +02:00
|
|
|
#! /usr/bin/perl -w
|
|
|
|
|
|
|
|
use strict;
|
2003-04-24 13:43:11 +02:00
|
|
|
|
|
|
|
my $keep = 0;
|
|
|
|
|
|
|
|
if (scalar @ARGV > 0 && $ARGV[0] eq "--keep") {
|
|
|
|
shift @ARGV;
|
|
|
|
$keep = 1;
|
|
|
|
}
|
|
|
|
|
2003-04-09 14:26:48 +02:00
|
|
|
my $hash = $ARGV[0];
|
|
|
|
$hash || die "no package hash specified";
|
|
|
|
|
|
|
|
my $prefix = $ENV{"NIX"} || "/nix"; # !!! use prefix
|
|
|
|
my $linkdir = "$prefix/var/nix/links";
|
|
|
|
|
|
|
|
# Build the specified package, and all its dependencies.
|
|
|
|
my $pkgdir = `nix getpkg $hash`;
|
|
|
|
if ($?) { die "`nix getpkg' failed"; }
|
|
|
|
chomp $pkgdir;
|
|
|
|
|
|
|
|
my $id = `nix info $hash | cut -c 34-`;
|
|
|
|
if ($?) { die "`nix info' failed"; }
|
|
|
|
chomp $id;
|
|
|
|
|
|
|
|
# Figure out a generation number.
|
|
|
|
my $nr = 0;
|
|
|
|
while (-e "$linkdir/$id-$nr") { $nr++; }
|
|
|
|
my $link = "$linkdir/$id-$nr";
|
|
|
|
|
|
|
|
# Create a symlink from $link to $pkgdir.
|
|
|
|
symlink($pkgdir, $link) or die "cannot create $link";
|
|
|
|
|
2003-04-09 14:46:44 +02:00
|
|
|
# Also store the hash of $pkgdir. This is useful for garbage
|
|
|
|
# collection and the like.
|
|
|
|
my $hashfile = "$linkdir/$id-$nr.hash";
|
|
|
|
open HASH, "> $hashfile" or die "cannot create $hashfile";
|
|
|
|
print HASH "$hash\n";
|
|
|
|
close HASH;
|
|
|
|
|
2003-04-24 13:43:11 +02:00
|
|
|
my $current = "$linkdir/current";
|
|
|
|
|
|
|
|
# Read the current generation so that we can delete it (if --keep
|
|
|
|
# wasn't specified).
|
|
|
|
my $oldlink = readlink($current);
|
|
|
|
|
2003-04-09 14:26:48 +02:00
|
|
|
# Make $link the current generation by pointing $linkdir/current to
|
|
|
|
# it. The rename() system call is supposed to be essentially atomic
|
|
|
|
# on Unix. That is, if we have links `current -> X' and `new_current
|
|
|
|
# -> Y', and we rename new_current to current, a process accessing
|
|
|
|
# current will see X or Y, but never a file-not-found or other error
|
|
|
|
# condition. This is sufficient to atomically switch the current link
|
|
|
|
# tree.
|
|
|
|
|
|
|
|
print "switching $current to $link\n";
|
|
|
|
|
|
|
|
my $tmplink = "$linkdir/new_current";
|
|
|
|
symlink($link, $tmplink) or die "cannot create $tmplink";
|
|
|
|
rename($tmplink, $current) or die "cannot rename $tmplink";
|
2003-04-24 13:43:11 +02:00
|
|
|
|
|
|
|
if (!$keep && defined $oldlink) {
|
|
|
|
print "deleting old $oldlink\n";
|
|
|
|
unlink $tmplink || print "cannot delete $tmplink";
|
|
|
|
unlink "$tmplink.hash" || print "cannot delete $tmplink.hash";
|
|
|
|
}
|