2010-04-19 12:47:56 +02:00
|
|
|
#include "util.hh"
|
|
|
|
#include "get-drvs.hh"
|
2010-04-21 17:08:58 +02:00
|
|
|
#include "derivations.hh"
|
|
|
|
#include "store-api.hh"
|
|
|
|
#include "globals.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "eval.hh"
|
2013-11-19 14:09:03 +01:00
|
|
|
#include "eval-inline.hh"
|
2010-04-21 17:08:58 +02:00
|
|
|
#include "profiles.hh"
|
2010-04-19 12:47:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
|
|
|
DrvInfos queryInstalled(EvalState & state, const Path & userEnv)
|
|
|
|
{
|
2010-04-19 14:10:04 +02:00
|
|
|
DrvInfos elems;
|
2010-04-21 17:08:58 +02:00
|
|
|
Path manifestFile = userEnv + "/manifest.nix";
|
|
|
|
if (pathExists(manifestFile)) {
|
|
|
|
Value v;
|
2011-08-06 15:02:55 +02:00
|
|
|
state.evalFile(manifestFile, v);
|
2010-10-22 16:47:42 +02:00
|
|
|
Bindings bindings;
|
2012-10-04 21:22:25 +02:00
|
|
|
getDerivations(state, v, "", bindings, elems, false);
|
2013-11-19 11:18:13 +01:00
|
|
|
}
|
2010-04-19 12:47:56 +02:00
|
|
|
return elems;
|
2010-04-19 14:10:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-21 17:08:58 +02:00
|
|
|
bool createUserEnv(EvalState & state, DrvInfos & elems,
|
|
|
|
const Path & profile, bool keepDerivations,
|
|
|
|
const string & lockToken)
|
|
|
|
{
|
|
|
|
/* Build the components in the user environment, if they don't
|
|
|
|
exist already. */
|
|
|
|
PathSet drvsToBuild;
|
2013-11-19 14:09:03 +01:00
|
|
|
foreach (DrvInfos::iterator, i, elems)
|
|
|
|
if (i->queryDrvPath() != "")
|
|
|
|
drvsToBuild.insert(i->queryDrvPath());
|
2010-04-21 17:08:58 +02:00
|
|
|
|
|
|
|
debug(format("building user environment dependencies"));
|
2012-10-03 21:35:42 +02:00
|
|
|
store->buildPaths(drvsToBuild, state.repair);
|
2010-04-21 17:08:58 +02:00
|
|
|
|
|
|
|
/* Construct the whole top level derivation. */
|
|
|
|
PathSet references;
|
|
|
|
Value manifest;
|
|
|
|
state.mkList(manifest, elems.size());
|
|
|
|
unsigned int n = 0;
|
|
|
|
foreach (DrvInfos::iterator, i, elems) {
|
|
|
|
/* Create a pseudo-derivation containing the name, system,
|
2012-12-04 14:20:36 +01:00
|
|
|
output paths, and optionally the derivation path, as well
|
|
|
|
as the meta attributes. */
|
2013-11-19 14:09:03 +01:00
|
|
|
Path drvPath = keepDerivations ? i->queryDrvPath() : "";
|
2010-04-21 17:08:58 +02:00
|
|
|
|
2010-10-23 20:18:07 +02:00
|
|
|
Value & v(*state.allocValue());
|
2010-04-21 17:08:58 +02:00
|
|
|
manifest.list.elems[n++] = &v;
|
2012-12-04 14:20:36 +01:00
|
|
|
state.mkAttrs(v, 16);
|
2010-04-21 17:08:58 +02:00
|
|
|
|
2010-10-22 16:47:42 +02:00
|
|
|
mkString(*state.allocAttr(v, state.sType), "derivation");
|
|
|
|
mkString(*state.allocAttr(v, state.sName), i->name);
|
2012-12-04 14:20:36 +01:00
|
|
|
if (!i->system.empty())
|
|
|
|
mkString(*state.allocAttr(v, state.sSystem), i->system);
|
2013-11-19 14:09:03 +01:00
|
|
|
mkString(*state.allocAttr(v, state.sOutPath), i->queryOutPath());
|
2010-04-21 17:08:58 +02:00
|
|
|
if (drvPath != "")
|
2013-11-19 14:09:03 +01:00
|
|
|
mkString(*state.allocAttr(v, state.sDrvPath), i->queryDrvPath());
|
2010-10-24 21:52:33 +02:00
|
|
|
|
2012-12-04 14:20:36 +01:00
|
|
|
// Copy each output.
|
2013-11-19 14:09:03 +01:00
|
|
|
DrvInfo::Outputs outputs = i->queryOutputs();
|
2012-12-04 14:20:36 +01:00
|
|
|
Value & vOutputs = *state.allocAttr(v, state.sOutputs);
|
|
|
|
state.mkList(vOutputs, outputs.size());
|
|
|
|
unsigned int m = 0;
|
|
|
|
foreach (DrvInfo::Outputs::iterator, j, outputs) {
|
|
|
|
mkString(*(vOutputs.list.elems[m++] = state.allocValue()), j->first);
|
|
|
|
Value & vOutputs = *state.allocAttr(v, state.symbols.create(j->first));
|
|
|
|
state.mkAttrs(vOutputs, 2);
|
|
|
|
mkString(*state.allocAttr(vOutputs, state.sOutPath), j->second);
|
|
|
|
|
|
|
|
/* This is only necessary when installing store paths, e.g.,
|
|
|
|
`nix-env -i /nix/store/abcd...-foo'. */
|
|
|
|
store->addTempRoot(j->second);
|
|
|
|
store->ensurePath(j->second);
|
|
|
|
|
|
|
|
references.insert(j->second);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy the meta attributes.
|
2010-10-24 21:52:33 +02:00
|
|
|
Value & vMeta = *state.allocAttr(v, state.sMeta);
|
2010-10-24 22:09:37 +02:00
|
|
|
state.mkAttrs(vMeta, 16);
|
2013-11-19 14:09:03 +01:00
|
|
|
StringSet metaNames = i->queryMetaNames();
|
|
|
|
foreach (StringSet::iterator, j, metaNames) {
|
|
|
|
Value * v = i->queryMeta(*j);
|
|
|
|
state.strictForceValue(*v); // FIXME
|
|
|
|
vMeta.attrs->push_back(Attr(state.symbols.create(*j), v));
|
2010-04-21 17:08:58 +02:00
|
|
|
}
|
2010-10-24 21:52:33 +02:00
|
|
|
v.attrs->sort();
|
2012-12-03 18:19:49 +01:00
|
|
|
|
2010-04-21 17:08:58 +02:00
|
|
|
if (drvPath != "") references.insert(drvPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Also write a copy of the list of user environment elements to
|
|
|
|
the store; we need it for future modifications of the
|
|
|
|
environment. */
|
|
|
|
Path manifestFile = store->addTextToStore("env-manifest.nix",
|
|
|
|
(format("%1%") % manifest).str(), references);
|
|
|
|
|
|
|
|
/* Get the environment builder expression. */
|
|
|
|
Value envBuilder;
|
2012-01-03 01:16:29 +01:00
|
|
|
state.evalFile(state.findFile("nix/buildenv.nix"), envBuilder);
|
2010-04-21 17:08:58 +02:00
|
|
|
|
|
|
|
/* Construct a Nix expression that calls the user environment
|
|
|
|
builder with the manifest as argument. */
|
|
|
|
Value args, topLevel;
|
2010-10-24 22:09:37 +02:00
|
|
|
state.mkAttrs(args, 3);
|
2010-10-22 16:47:42 +02:00
|
|
|
mkString(*state.allocAttr(args, state.symbols.create("manifest")),
|
2010-04-21 17:08:58 +02:00
|
|
|
manifestFile, singleton<PathSet>(manifestFile));
|
2010-10-24 21:52:33 +02:00
|
|
|
args.attrs->push_back(Attr(state.symbols.create("derivations"), &manifest));
|
|
|
|
args.attrs->sort();
|
2010-04-21 17:08:58 +02:00
|
|
|
mkApp(topLevel, envBuilder, args);
|
2012-12-03 18:19:49 +01:00
|
|
|
|
2010-04-21 17:08:58 +02:00
|
|
|
/* Evaluate it. */
|
|
|
|
debug("evaluating user environment builder");
|
2013-11-19 14:09:03 +01:00
|
|
|
state.forceValue(topLevel);
|
|
|
|
PathSet context;
|
|
|
|
Path topLevelDrv = state.coerceToPath(*topLevel.attrs->find(state.sDrvPath)->value, context);
|
|
|
|
Path topLevelOut = state.coerceToPath(*topLevel.attrs->find(state.sOutPath)->value, context);
|
2012-12-03 18:19:49 +01:00
|
|
|
|
2010-04-21 17:08:58 +02:00
|
|
|
/* Realise the resulting store expression. */
|
|
|
|
debug("building user environment");
|
2013-11-19 14:09:03 +01:00
|
|
|
store->buildPaths(singleton<PathSet>(topLevelDrv), state.repair);
|
2010-04-21 17:08:58 +02:00
|
|
|
|
|
|
|
/* Switch the current user environment to the output path. */
|
|
|
|
PathLocks lock;
|
|
|
|
lockProfile(lock, profile);
|
|
|
|
|
|
|
|
Path lockTokenCur = optimisticLockProfile(profile);
|
|
|
|
if (lockToken != lockTokenCur) {
|
|
|
|
printMsg(lvlError, format("profile `%1%' changed while we were busy; restarting") % profile);
|
|
|
|
return false;
|
|
|
|
}
|
2012-12-03 18:19:49 +01:00
|
|
|
|
2010-04-21 17:08:58 +02:00
|
|
|
debug(format("switching to new user environment"));
|
2013-11-19 14:09:03 +01:00
|
|
|
Path generation = createGeneration(profile, topLevelOut);
|
2010-04-21 17:08:58 +02:00
|
|
|
switchLink(profile, generation);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-19 12:47:56 +02:00
|
|
|
}
|