about summary refs log tree commit diff
path: root/scripts/nix-switch.in
blob: 9fcb598e30a365a0c1171b263e76a2d3f67058c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#! /usr/bin/perl -w

use strict;

my $keep = 0;
my $sourceroot = 1;
my $name = "current";
my $srcid;

my $argnr = 0;
while ($argnr < scalar @ARGV) {
    my $arg = $ARGV[$argnr++];
    if ($arg eq "--keep") { $keep = 1; }
    elsif ($arg eq "--no-source") { $sourceroot = 0; }
    elsif ($arg eq "--name") { $name = $ARGV[$argnr++]; }
    elsif ($arg =~ /^\//) { $srcid = $arg; }
    else { die "unknown argument `$arg'" };
}

my $linkdir = "@localstatedir@/nix/links";

# Build the specified package, and all its dependencies.
my $nfid = `nix --install $srcid`;
if ($?) { die "`nix --install' failed"; }
chomp $nfid;
die unless $nfid =~ /^\//;

my $pkgdir = `nix --query --list $nfid`;
if ($?) { die "`nix --query --list' failed"; }
chomp $pkgdir;

# Figure out a generation number.
opendir(DIR, $linkdir);
my $nr = 0;
foreach my $n (sort(readdir(DIR))) {
    next if (!($n =~ /^\d+$/));
    $nr = $n + 1 if ($n >= $nr);
}
closedir(DIR);

my $link = "$linkdir/$nr";

# Create a symlink from $link to $pkgdir.
symlink($pkgdir, $link) or die "cannot create $link: $!";

# Store the id of the normal form.  This is useful for garbage
# collection and the like.
my $idfile = "$linkdir/$nr.id";
open ID, "> $idfile" or die "cannot create $idfile";
print ID "$nfid\n";
close ID;

# Optionally store the source id.
if ($sourceroot) {
    $idfile = "$linkdir/$nr-src.id";
    open ID, "> $idfile" or die "cannot create $idfile";
    print ID "$srcid\n";
    close ID;
}

my $current = "$linkdir/$name";

# Read the current generation so that we can delete it (if --keep
# wasn't specified).
my $oldlink = readlink($current);

# 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_$name";
symlink($link, $tmplink) or die "cannot create $tmplink";
rename($tmplink, $current) or die "cannot rename $tmplink";

if (!$keep && defined $oldlink) {
    print "deleting old $oldlink\n";
    unlink($oldlink) == 1 or print "cannot delete $oldlink\n";
    unlink("$oldlink.id") == 1 or print "cannot delete $oldlink.id\n";
    unlink("$oldlink-src.id");
}