2004-02-06 15:57:10 +01:00
|
|
|
#include "profiles.hh"
|
2004-02-06 15:49:41 +01:00
|
|
|
#include "names.hh"
|
2003-11-19 18:27:16 +01:00
|
|
|
#include "globals.hh"
|
2006-03-06 12:21:15 +01:00
|
|
|
#include "misc.hh"
|
2003-11-19 18:27:16 +01:00
|
|
|
#include "shared.hh"
|
|
|
|
#include "parser.hh"
|
|
|
|
#include "eval.hh"
|
2003-12-01 16:55:05 +01:00
|
|
|
#include "help.txt.hh"
|
2006-02-08 14:21:16 +01:00
|
|
|
#include "get-drvs.hh"
|
2006-07-26 17:05:15 +02:00
|
|
|
#include "attr-path.hh"
|
2007-01-14 13:32:44 +01:00
|
|
|
#include "common-opts.hh"
|
2006-08-03 17:52:09 +02:00
|
|
|
#include "xml-writer.hh"
|
2006-11-30 18:43:04 +01:00
|
|
|
#include "store-api.hh"
|
2010-04-19 12:47:56 +02:00
|
|
|
#include "user-env.hh"
|
2006-09-04 23:06:23 +02:00
|
|
|
#include "util.hh"
|
2003-11-19 18:27:16 +01:00
|
|
|
|
2004-02-06 17:03:27 +01:00
|
|
|
#include <cerrno>
|
|
|
|
#include <ctime>
|
2005-05-04 18:33:20 +02:00
|
|
|
#include <algorithm>
|
2006-03-01 18:44:28 +01:00
|
|
|
#include <iostream>
|
2006-08-03 17:52:09 +02:00
|
|
|
#include <sstream>
|
2004-02-06 17:03:27 +01:00
|
|
|
|
2007-09-17 18:08:24 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2005-10-06 17:01:46 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2003-11-19 18:27:16 +01:00
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
using namespace nix;
|
|
|
|
using std::cout;
|
|
|
|
|
|
|
|
|
2005-02-11 17:56:45 +01:00
|
|
|
typedef enum {
|
|
|
|
srcNixExprDrvs,
|
|
|
|
srcNixExprs,
|
|
|
|
srcStorePaths,
|
|
|
|
srcProfile,
|
2006-07-25 13:53:22 +02:00
|
|
|
srcAttrPath,
|
2005-02-11 17:56:45 +01:00
|
|
|
srcUnknown
|
|
|
|
} InstallSourceType;
|
|
|
|
|
|
|
|
|
|
|
|
struct InstallSourceInfo
|
|
|
|
{
|
|
|
|
InstallSourceType type;
|
|
|
|
Path nixExprPath; /* for srcNixExprDrvs, srcNixExprs */
|
|
|
|
Path profile; /* for srcProfile */
|
|
|
|
string systemFilter; /* for srcNixExprDrvs */
|
2007-10-29 15:31:45 +01:00
|
|
|
bool prebuiltOnly;
|
2010-04-07 17:47:06 +02:00
|
|
|
Bindings autoArgs;
|
2007-10-29 15:31:45 +01:00
|
|
|
InstallSourceInfo() : prebuiltOnly(false) { };
|
2005-02-11 17:56:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-12-21 23:34:41 +01:00
|
|
|
struct Globals
|
|
|
|
{
|
2005-02-11 17:56:45 +01:00
|
|
|
InstallSourceInfo instSource;
|
2004-02-06 11:30:20 +01:00
|
|
|
Path profile;
|
2003-12-21 23:34:41 +01:00
|
|
|
EvalState state;
|
2004-02-09 12:59:39 +01:00
|
|
|
bool dryRun;
|
2004-06-28 16:40:26 +02:00
|
|
|
bool preserveInstalled;
|
2005-02-14 14:07:09 +01:00
|
|
|
bool keepDerivations;
|
2006-09-25 16:00:59 +02:00
|
|
|
string forceName;
|
2003-12-21 23:34:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef void (* Operation) (Globals & globals,
|
2007-09-17 21:24:07 +02:00
|
|
|
Strings args, Strings opFlags, Strings opArgs);
|
2003-11-19 18:27:16 +01:00
|
|
|
|
|
|
|
|
2003-12-01 16:55:05 +01:00
|
|
|
void printHelp()
|
|
|
|
{
|
2010-02-24 14:24:27 +01:00
|
|
|
cout << string((char *) helpText);
|
2003-12-01 16:55:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-17 21:24:07 +02:00
|
|
|
static string needArg(Strings::iterator & i,
|
|
|
|
Strings & args, const string & arg)
|
|
|
|
{
|
|
|
|
if (i == args.end()) throw UsageError(
|
|
|
|
format("`%1%' requires an argument") % arg);
|
|
|
|
return *i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static bool parseInstallSourceOptions(Globals & globals,
|
|
|
|
Strings::iterator & i, Strings & args, const string & arg)
|
|
|
|
{
|
|
|
|
if (arg == "--from-expression" || arg == "-E")
|
|
|
|
globals.instSource.type = srcNixExprs;
|
|
|
|
else if (arg == "--from-profile") {
|
|
|
|
globals.instSource.type = srcProfile;
|
|
|
|
globals.instSource.profile = needArg(i, args, arg);
|
|
|
|
}
|
|
|
|
else if (arg == "--attr" || arg == "-A")
|
|
|
|
globals.instSource.type = srcAttrPath;
|
2007-10-29 15:31:45 +01:00
|
|
|
else if (arg == "--prebuilt-only" || arg == "-b")
|
|
|
|
globals.instSource.prebuiltOnly = true;
|
2007-09-17 21:24:07 +02:00
|
|
|
else return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-17 18:08:24 +02:00
|
|
|
static bool isNixExpr(const Path & path)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
if (stat(path.c_str(), &st) == -1)
|
|
|
|
throw SysError(format("getting information about `%1%'") % path);
|
|
|
|
|
|
|
|
return !S_ISDIR(st.st_mode) || pathExists(path + "/default.nix");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void getAllExprs(EvalState & state,
|
2010-04-14 11:39:06 +02:00
|
|
|
const Path & path, ExprAttrs & attrs)
|
2007-09-17 18:08:24 +02:00
|
|
|
{
|
|
|
|
Strings names = readDirectory(path);
|
2008-08-25 15:31:57 +02:00
|
|
|
StringSet namesSorted(names.begin(), names.end());
|
2007-09-17 18:08:24 +02:00
|
|
|
|
2008-08-25 15:31:57 +02:00
|
|
|
foreach (StringSet::iterator, i, namesSorted) {
|
2007-09-17 18:08:24 +02:00
|
|
|
Path path2 = path + "/" + *i;
|
2007-09-18 16:01:14 +02:00
|
|
|
|
|
|
|
struct stat st;
|
|
|
|
if (stat(path2.c_str(), &st) == -1)
|
|
|
|
continue; // ignore dangling symlinks in ~/.nix-defexpr
|
|
|
|
|
2008-08-25 15:31:57 +02:00
|
|
|
if (isNixExpr(path2)) {
|
|
|
|
/* Strip off the `.nix' filename suffix (if applicable),
|
|
|
|
otherwise the attribute cannot be selected with the
|
|
|
|
`-A' option. Useful if you want to stick a Nix
|
|
|
|
expression directly in ~/.nix-defexpr. */
|
|
|
|
string attrName = *i;
|
|
|
|
if (hasSuffix(attrName, ".nix"))
|
|
|
|
attrName = string(attrName, 0, attrName.size() - 4);
|
2010-04-14 11:39:06 +02:00
|
|
|
attrs.attrs[state.symbols.create(attrName)] =
|
2010-05-06 18:46:48 +02:00
|
|
|
ExprAttrs::Attr(parseExprFromFile(state, absPath(path2)), noPos);
|
2008-08-25 15:31:57 +02:00
|
|
|
}
|
2007-09-17 18:08:24 +02:00
|
|
|
else
|
2008-08-25 15:31:57 +02:00
|
|
|
/* `path2' is a directory (with no default.nix in it);
|
|
|
|
recurse into it. */
|
2007-09-17 18:08:24 +02:00
|
|
|
getAllExprs(state, path2, attrs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-12 20:30:11 +02:00
|
|
|
static Expr * loadSourceExpr(EvalState & state, const Path & path)
|
2007-09-17 18:08:24 +02:00
|
|
|
{
|
|
|
|
if (isNixExpr(path)) return parseExprFromFile(state, absPath(path));
|
|
|
|
|
|
|
|
/* The path is a directory. Put the Nix expressions in the
|
|
|
|
directory in an attribute set, with the file name of each
|
|
|
|
expression as the attribute name. Recurse into subdirectories
|
|
|
|
(but keep the attribute set flat, not nested, to make it easier
|
|
|
|
for a user to have a ~/.nix-defexpr directory that includes
|
|
|
|
some system-wide directory). */
|
2010-04-14 11:39:06 +02:00
|
|
|
ExprAttrs * attrs = new ExprAttrs;
|
2010-05-06 18:46:48 +02:00
|
|
|
attrs->attrs[state.symbols.create("_combineChannels")] =
|
|
|
|
ExprAttrs::Attr(new ExprList(), noPos);
|
2010-04-14 11:39:06 +02:00
|
|
|
getAllExprs(state, path, *attrs);
|
|
|
|
return attrs;
|
2007-09-17 18:08:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-11 17:56:45 +01:00
|
|
|
static void loadDerivations(EvalState & state, Path nixExprPath,
|
2010-04-07 17:47:06 +02:00
|
|
|
string systemFilter, const Bindings & autoArgs,
|
2007-09-17 21:24:07 +02:00
|
|
|
const string & pathPrefix, DrvInfos & elems)
|
2003-11-19 18:27:16 +01:00
|
|
|
{
|
2010-03-31 21:12:08 +02:00
|
|
|
Value v;
|
2010-04-07 17:47:06 +02:00
|
|
|
findAlongAttrPath(state, pathPrefix, autoArgs, loadSourceExpr(state, nixExprPath), v);
|
2010-03-31 21:12:08 +02:00
|
|
|
|
|
|
|
getDerivations(state, v, pathPrefix, autoArgs, elems);
|
2004-07-01 15:56:56 +02:00
|
|
|
|
|
|
|
/* Filter out all derivations not applicable to the current
|
|
|
|
system. */
|
2006-02-08 14:21:16 +01:00
|
|
|
for (DrvInfos::iterator i = elems.begin(), j; i != elems.end(); i = j) {
|
2004-07-01 15:56:56 +02:00
|
|
|
j = i; j++;
|
2006-02-08 14:21:16 +01:00
|
|
|
if (systemFilter != "*" && i->system != systemFilter)
|
2005-02-14 17:16:02 +01:00
|
|
|
elems.erase(i);
|
2005-02-11 17:56:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-01-05 17:26:43 +01:00
|
|
|
static Path getHomeDir()
|
|
|
|
{
|
2004-05-12 11:35:51 +02:00
|
|
|
Path homeDir(getEnv("HOME", ""));
|
2004-01-05 17:26:43 +01:00
|
|
|
if (homeDir == "") throw Error("HOME environment variable not set");
|
|
|
|
return homeDir;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static Path getDefNixExprPath()
|
|
|
|
{
|
|
|
|
return getHomeDir() + "/.nix-defexpr";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-30 17:53:39 +02:00
|
|
|
static int getPriority(EvalState & state, const DrvInfo & drv)
|
|
|
|
{
|
|
|
|
MetaValue value = drv.queryMetaInfo(state, "priority");
|
|
|
|
int prio = 0;
|
|
|
|
if (value.type == MetaValue::tpInt) prio = value.intValue;
|
|
|
|
else if (value.type == MetaValue::tpString)
|
|
|
|
/* Backwards compatibility. Priorities used to be strings
|
|
|
|
before we had support for integer meta field. */
|
|
|
|
string2Int(value.stringValue, prio);
|
|
|
|
return prio;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-05-01 22:33:18 +02:00
|
|
|
static int comparePriorities(EvalState & state,
|
|
|
|
const DrvInfo & drv1, const DrvInfo & drv2)
|
|
|
|
{
|
2009-06-30 17:53:39 +02:00
|
|
|
return getPriority(state, drv2) - getPriority(state, drv1);
|
2007-05-01 22:33:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-29 15:31:45 +01:00
|
|
|
static bool isPrebuilt(EvalState & state, const DrvInfo & elem)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
store->isValidPath(elem.queryOutPath(state)) ||
|
|
|
|
store->hasSubstitutes(elem.queryOutPath(state));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static DrvInfos filterBySelector(EvalState & state, const DrvInfos & allElems,
|
|
|
|
const Strings & args, bool newestOnly, bool prebuiltOnly)
|
2005-02-15 11:49:31 +01:00
|
|
|
{
|
|
|
|
DrvNames selectors = drvNamesFromArgs(args);
|
|
|
|
|
2006-02-08 14:21:16 +01:00
|
|
|
DrvInfos elems;
|
2006-03-10 11:24:46 +01:00
|
|
|
set<unsigned int> done;
|
2005-02-15 11:49:31 +01:00
|
|
|
|
2006-02-17 18:47:54 +01:00
|
|
|
for (DrvNames::iterator i = selectors.begin();
|
|
|
|
i != selectors.end(); ++i)
|
|
|
|
{
|
2006-09-04 23:06:23 +02:00
|
|
|
typedef list<std::pair<DrvInfo, unsigned int> > Matches;
|
2006-03-10 11:24:46 +01:00
|
|
|
Matches matches;
|
|
|
|
unsigned int n = 0;
|
2006-02-17 18:47:54 +01:00
|
|
|
for (DrvInfos::const_iterator j = allElems.begin();
|
2006-03-10 11:24:46 +01:00
|
|
|
j != allElems.end(); ++j, ++n)
|
2006-02-17 18:47:54 +01:00
|
|
|
{
|
|
|
|
DrvName drvName(j->name);
|
|
|
|
if (i->matches(drvName)) {
|
|
|
|
i->hits++;
|
2007-10-29 15:31:45 +01:00
|
|
|
if (!prebuiltOnly || isPrebuilt(state, *j))
|
|
|
|
matches.push_back(std::pair<DrvInfo, unsigned int>(*j, n));
|
2006-02-17 18:47:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-17 19:11:45 +01:00
|
|
|
/* If `newestOnly', if a selector matches multiple derivations
|
2007-05-01 22:33:18 +02:00
|
|
|
with the same name, pick the one with the highest priority.
|
|
|
|
If there are multiple derivations with the same priority,
|
|
|
|
pick the one with the highest version. If there are
|
|
|
|
multiple derivations with the same priority and name and
|
2006-02-17 19:11:45 +01:00
|
|
|
version, then pick the first one. */
|
2006-02-17 18:47:54 +01:00
|
|
|
if (newestOnly) {
|
|
|
|
|
|
|
|
/* Map from package names to derivations. */
|
2006-09-04 23:06:23 +02:00
|
|
|
typedef map<string, std::pair<DrvInfo, unsigned int> > Newest;
|
2006-03-10 11:24:46 +01:00
|
|
|
Newest newest;
|
2006-02-17 19:11:45 +01:00
|
|
|
StringSet multiple;
|
2006-02-17 18:47:54 +01:00
|
|
|
|
2006-03-10 11:24:46 +01:00
|
|
|
for (Matches::iterator j = matches.begin(); j != matches.end(); ++j) {
|
|
|
|
DrvName drvName(j->first.name);
|
2007-05-01 22:33:18 +02:00
|
|
|
int d = 1;
|
|
|
|
|
2006-03-10 11:24:46 +01:00
|
|
|
Newest::iterator k = newest.find(drvName.name);
|
2007-05-01 22:33:18 +02:00
|
|
|
|
2006-02-17 19:11:45 +01:00
|
|
|
if (k != newest.end()) {
|
2007-05-01 22:33:18 +02:00
|
|
|
d = comparePriorities(state, j->first, k->second.first);
|
|
|
|
if (d == 0)
|
|
|
|
d = compareVersions(drvName.version, DrvName(k->second.first.name).version);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (d > 0) {
|
2006-02-17 18:47:54 +01:00
|
|
|
newest[drvName.name] = *j;
|
2007-05-01 22:33:18 +02:00
|
|
|
multiple.erase(j->first.name);
|
|
|
|
} else if (d == 0) {
|
|
|
|
multiple.insert(j->first.name);
|
|
|
|
}
|
2006-02-17 18:47:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
matches.clear();
|
2006-03-10 11:24:46 +01:00
|
|
|
for (Newest::iterator j = newest.begin(); j != newest.end(); ++j) {
|
|
|
|
if (multiple.find(j->second.first.name) != multiple.end())
|
2006-02-17 19:11:45 +01:00
|
|
|
printMsg(lvlInfo,
|
|
|
|
format("warning: there are multiple derivations named `%1%'; using the first one")
|
2006-03-10 11:24:46 +01:00
|
|
|
% j->second.first.name);
|
2006-02-17 18:47:54 +01:00
|
|
|
matches.push_back(j->second);
|
2006-02-17 19:11:45 +01:00
|
|
|
}
|
2006-02-17 18:47:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Insert only those elements in the final list that we
|
|
|
|
haven't inserted before. */
|
2006-03-10 11:24:46 +01:00
|
|
|
for (Matches::iterator j = matches.begin(); j != matches.end(); ++j)
|
|
|
|
if (done.find(j->second) == done.end()) {
|
|
|
|
done.insert(j->second);
|
|
|
|
elems.push_back(j->first);
|
2006-02-17 18:47:54 +01:00
|
|
|
}
|
|
|
|
}
|
2005-02-15 11:49:31 +01:00
|
|
|
|
|
|
|
/* Check that all selectors have been used. */
|
|
|
|
for (DrvNames::iterator i = selectors.begin();
|
|
|
|
i != selectors.end(); ++i)
|
2007-11-29 17:18:24 +01:00
|
|
|
if (i->hits == 0 && i->fullName != "*")
|
2005-02-15 11:49:31 +01:00
|
|
|
throw Error(format("selector `%1%' matches no derivations")
|
|
|
|
% i->fullName);
|
|
|
|
|
|
|
|
return elems;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-29 17:18:24 +01:00
|
|
|
static bool isPath(const string & s)
|
|
|
|
{
|
|
|
|
return s.find('/') != string::npos;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-14 17:16:02 +01:00
|
|
|
static void queryInstSources(EvalState & state,
|
|
|
|
const InstallSourceInfo & instSource, const Strings & args,
|
2006-02-17 18:47:54 +01:00
|
|
|
DrvInfos & elems, bool newestOnly)
|
2003-11-20 14:48:48 +01:00
|
|
|
{
|
2005-02-14 18:35:10 +01:00
|
|
|
InstallSourceType type = instSource.type;
|
2007-11-29 17:18:24 +01:00
|
|
|
if (type == srcUnknown && args.size() > 0 && isPath(args.front()))
|
2005-02-14 18:35:10 +01:00
|
|
|
type = srcStorePaths;
|
|
|
|
|
|
|
|
switch (type) {
|
2003-11-20 14:48:48 +01:00
|
|
|
|
2005-02-14 17:16:02 +01:00
|
|
|
/* Get the available user environment elements from the
|
|
|
|
derivations specified in a Nix expression, including only
|
|
|
|
those with names matching any of the names in `args'. */
|
|
|
|
case srcUnknown:
|
|
|
|
case srcNixExprDrvs: {
|
|
|
|
|
|
|
|
/* Load the derivations from the (default or specified)
|
|
|
|
Nix expression. */
|
2006-02-08 14:21:16 +01:00
|
|
|
DrvInfos allElems;
|
2005-02-14 17:16:02 +01:00
|
|
|
loadDerivations(state, instSource.nixExprPath,
|
2007-09-17 21:24:07 +02:00
|
|
|
instSource.systemFilter, instSource.autoArgs, "", allElems);
|
2005-02-14 17:16:02 +01:00
|
|
|
|
2007-10-29 15:31:45 +01:00
|
|
|
elems = filterBySelector(state, allElems, args,
|
|
|
|
newestOnly, instSource.prebuiltOnly);
|
2005-02-14 17:16:02 +01:00
|
|
|
|
|
|
|
break;
|
2003-11-24 12:01:19 +01:00
|
|
|
}
|
2005-02-14 17:16:02 +01:00
|
|
|
|
2005-02-14 18:07:43 +01:00
|
|
|
/* Get the available user environment elements from the Nix
|
|
|
|
expressions specified on the command line; these should be
|
|
|
|
functions that take the default Nix expression file as
|
|
|
|
argument, e.g., if the file is `./foo.nix', then the
|
|
|
|
argument `x: x.bar' is equivalent to `(x: x.bar)
|
|
|
|
(import ./foo.nix)' = `(import ./foo.nix).bar'. */
|
2005-02-15 13:05:47 +01:00
|
|
|
case srcNixExprs: {
|
|
|
|
|
2010-04-14 11:39:06 +02:00
|
|
|
Expr * e1 = loadSourceExpr(state, instSource.nixExprPath);
|
2005-02-14 18:07:43 +01:00
|
|
|
|
2010-03-31 21:12:08 +02:00
|
|
|
foreach (Strings::const_iterator, i, args) {
|
2010-04-14 11:39:06 +02:00
|
|
|
Expr * e2 = parseExprFromString(state, *i, absPath("."));
|
|
|
|
Expr * call = new ExprApp(e2, e1);
|
2010-03-31 21:12:08 +02:00
|
|
|
Value v; state.eval(call, v);
|
|
|
|
getDerivations(state, v, "", instSource.autoArgs, elems);
|
2005-02-14 18:07:43 +01:00
|
|
|
}
|
|
|
|
|
2005-02-14 17:16:02 +01:00
|
|
|
break;
|
2005-02-15 13:05:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* The available user environment elements are specified as a
|
|
|
|
list of store paths (which may or may not be
|
|
|
|
derivations). */
|
|
|
|
case srcStorePaths: {
|
2005-02-14 18:35:10 +01:00
|
|
|
|
|
|
|
for (Strings::const_iterator i = args.begin();
|
|
|
|
i != args.end(); ++i)
|
|
|
|
{
|
2007-11-29 17:18:24 +01:00
|
|
|
Path path = followLinksToStorePath(*i);
|
2005-02-14 18:35:10 +01:00
|
|
|
|
2006-02-08 14:21:16 +01:00
|
|
|
DrvInfo elem;
|
2010-03-31 21:12:08 +02:00
|
|
|
elem.attrs = new Bindings;
|
2007-11-29 17:18:24 +01:00
|
|
|
string name = baseNameOf(path);
|
2006-05-11 04:19:43 +02:00
|
|
|
string::size_type dash = name.find('-');
|
2005-02-14 18:35:10 +01:00
|
|
|
if (dash != string::npos)
|
|
|
|
name = string(name, dash + 1);
|
|
|
|
|
2007-11-29 17:18:24 +01:00
|
|
|
if (isDerivation(path)) {
|
|
|
|
elem.setDrvPath(path);
|
|
|
|
elem.setOutPath(findOutput(derivationFromPath(path), "out"));
|
2005-02-14 18:35:10 +01:00
|
|
|
if (name.size() >= drvExtension.size() &&
|
|
|
|
string(name, name.size() - drvExtension.size()) == drvExtension)
|
|
|
|
name = string(name, 0, name.size() - drvExtension.size());
|
|
|
|
}
|
2007-11-29 17:18:24 +01:00
|
|
|
else elem.setOutPath(path);
|
2005-02-14 18:35:10 +01:00
|
|
|
|
|
|
|
elem.name = name;
|
2006-02-08 15:32:33 +01:00
|
|
|
|
|
|
|
elems.push_back(elem);
|
2005-02-14 18:35:10 +01:00
|
|
|
}
|
|
|
|
|
2005-02-14 17:16:02 +01:00
|
|
|
break;
|
2005-02-15 13:05:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the available user environment elements from another
|
|
|
|
user environment. These are then filtered as in the
|
|
|
|
`srcNixExprDrvs' case. */
|
|
|
|
case srcProfile: {
|
2006-02-17 18:47:54 +01:00
|
|
|
elems = filterBySelector(state,
|
|
|
|
queryInstalled(state, instSource.profile),
|
2007-10-29 15:31:45 +01:00
|
|
|
args, newestOnly, instSource.prebuiltOnly);
|
2005-02-14 17:16:02 +01:00
|
|
|
break;
|
2005-02-15 13:05:47 +01:00
|
|
|
}
|
2006-07-25 13:53:22 +02:00
|
|
|
|
|
|
|
case srcAttrPath: {
|
2010-04-07 17:47:06 +02:00
|
|
|
foreach (Strings::const_iterator, i, args) {
|
|
|
|
Value v;
|
|
|
|
findAlongAttrPath(state, *i, instSource.autoArgs,
|
|
|
|
loadSourceExpr(state, instSource.nixExprPath), v);
|
|
|
|
getDerivations(state, v, "", instSource.autoArgs, elems);
|
|
|
|
}
|
2006-07-25 13:53:22 +02:00
|
|
|
break;
|
|
|
|
}
|
2003-11-20 14:48:48 +01:00
|
|
|
}
|
2005-02-14 17:16:02 +01:00
|
|
|
}
|
2003-11-20 14:48:48 +01:00
|
|
|
|
2004-06-28 16:40:26 +02:00
|
|
|
|
2006-03-06 12:21:15 +01:00
|
|
|
static void printMissing(EvalState & state, const DrvInfos & elems)
|
|
|
|
{
|
2008-08-04 15:44:46 +02:00
|
|
|
PathSet targets;
|
|
|
|
foreach (DrvInfos::const_iterator, i, elems) {
|
2006-03-06 12:21:15 +01:00
|
|
|
Path drvPath = i->queryDrvPath(state);
|
|
|
|
if (drvPath != "")
|
|
|
|
targets.insert(drvPath);
|
|
|
|
else
|
|
|
|
targets.insert(i->queryOutPath(state));
|
|
|
|
}
|
|
|
|
|
2008-08-04 15:44:46 +02:00
|
|
|
printMissing(targets);
|
2006-03-06 12:21:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-30 17:53:39 +02:00
|
|
|
static bool keep(MetaInfo & meta)
|
|
|
|
{
|
|
|
|
MetaValue value = meta["keep"];
|
|
|
|
return value.type == MetaValue::tpString && value.stringValue == "true";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-14 17:16:02 +01:00
|
|
|
static void installDerivations(Globals & globals,
|
|
|
|
const Strings & args, const Path & profile)
|
|
|
|
{
|
|
|
|
debug(format("installing derivations"));
|
|
|
|
|
|
|
|
/* Get the set of user environment elements to be installed. */
|
2006-02-08 14:21:16 +01:00
|
|
|
DrvInfos newElems;
|
2006-02-17 18:47:54 +01:00
|
|
|
queryInstSources(globals.state, globals.instSource, args, newElems, true);
|
2005-02-14 17:16:02 +01:00
|
|
|
|
|
|
|
StringSet newNames;
|
2006-09-25 16:00:59 +02:00
|
|
|
for (DrvInfos::iterator i = newElems.begin(); i != newElems.end(); ++i) {
|
|
|
|
/* `forceName' is a hack to get package names right in some
|
|
|
|
one-click installs, namely those where the name used in the
|
|
|
|
path is not the one we want (e.g., `java-front' versus
|
|
|
|
`java-front-0.9pre15899'). */
|
|
|
|
if (globals.forceName != "")
|
|
|
|
i->name = globals.forceName;
|
2006-02-08 14:21:16 +01:00
|
|
|
newNames.insert(DrvName(i->name).name);
|
2006-09-25 16:00:59 +02:00
|
|
|
}
|
2005-02-14 17:16:02 +01:00
|
|
|
|
|
|
|
/* Add in the already installed derivations, unless they have the
|
|
|
|
same name as a to-be-installed element. */
|
|
|
|
|
2008-08-04 18:21:45 +02:00
|
|
|
while (true) {
|
|
|
|
string lockToken = optimisticLockProfile(profile);
|
|
|
|
|
|
|
|
DrvInfos installedElems = queryInstalled(globals.state, profile);
|
|
|
|
|
|
|
|
DrvInfos allElems(newElems);
|
|
|
|
foreach (DrvInfos::iterator, i, installedElems) {
|
|
|
|
DrvName drvName(i->name);
|
|
|
|
MetaInfo meta = i->queryMetaInfo(globals.state);
|
|
|
|
if (!globals.preserveInstalled &&
|
|
|
|
newNames.find(drvName.name) != newNames.end() &&
|
2009-06-30 17:53:39 +02:00
|
|
|
!keep(meta))
|
2008-08-04 18:21:45 +02:00
|
|
|
printMsg(lvlInfo,
|
|
|
|
format("replacing old `%1%'") % i->name);
|
|
|
|
else
|
|
|
|
allElems.push_back(*i);
|
|
|
|
}
|
2003-11-20 14:48:48 +01:00
|
|
|
|
2008-08-04 18:21:45 +02:00
|
|
|
foreach (DrvInfos::iterator, i, newElems)
|
|
|
|
printMsg(lvlInfo, format("installing `%1%'") % i->name);
|
2008-08-04 15:11:09 +02:00
|
|
|
|
2008-08-04 18:21:45 +02:00
|
|
|
printMissing(globals.state, newElems);
|
2008-08-04 15:11:09 +02:00
|
|
|
|
2008-08-04 18:21:45 +02:00
|
|
|
if (globals.dryRun) return;
|
2004-02-09 12:59:39 +01:00
|
|
|
|
2008-08-04 18:21:45 +02:00
|
|
|
if (createUserEnv(globals.state, allElems,
|
|
|
|
profile, globals.keepDerivations, lockToken)) break;
|
|
|
|
}
|
2003-11-20 14:48:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-21 23:34:41 +01:00
|
|
|
static void opInstall(Globals & globals,
|
2007-09-17 21:24:07 +02:00
|
|
|
Strings args, Strings opFlags, Strings opArgs)
|
2003-11-19 18:27:16 +01:00
|
|
|
{
|
2007-09-17 21:24:07 +02:00
|
|
|
for (Strings::iterator i = opFlags.begin(); i != opFlags.end(); ) {
|
|
|
|
string arg = *i++;
|
|
|
|
if (parseInstallSourceOptions(globals, i, opFlags, arg)) ;
|
|
|
|
else if (arg == "--preserve-installed" || arg == "-P")
|
|
|
|
globals.preserveInstalled = true;
|
|
|
|
else throw UsageError(format("unknown flag `%1%'") % arg);
|
|
|
|
}
|
2003-11-19 18:27:16 +01:00
|
|
|
|
2005-02-14 17:16:02 +01:00
|
|
|
installDerivations(globals, opArgs, globals.profile);
|
2003-12-22 00:58:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-27 14:17:25 +02:00
|
|
|
typedef enum { utLt, utLeq, utEq, utAlways } UpgradeType;
|
2004-02-09 12:59:39 +01:00
|
|
|
|
|
|
|
|
2005-02-14 14:07:09 +01:00
|
|
|
static void upgradeDerivations(Globals & globals,
|
2007-02-02 02:52:42 +01:00
|
|
|
const Strings & args, UpgradeType upgradeType)
|
* Upgrade operation in `nix-env'. For instance, you can say
nix-env -u foo.nix strategoxt
to replace the installed `strategoxt' derivation with the one from `foo.nix', if
the latter has a higher version number. This is a no-op if `strategoxt' is not
installed. Wildcards are also accepted, so
nix-env -u foo.nix '*'
will replace any installed derivation with newer versions from `foo.nix', if
available.
The notion of "version number" is somewhat ad hoc, but should be useful in most
cases, as evidenced by the following unit tests for the version comparator:
TEST("1.0", "2.3", -1);
TEST("2.1", "2.3", -1);
TEST("2.3", "2.3", 0);
TEST("2.5", "2.3", 1);
TEST("3.1", "2.3", 1);
TEST("2.3.1", "2.3", 1);
TEST("2.3.1", "2.3a", 1);
TEST("2.3pre1", "2.3", -1);
TEST("2.3pre3", "2.3pre12", -1);
TEST("2.3a", "2.3c", -1);
TEST("2.3pre1", "2.3c", -1);
TEST("2.3pre1", "2.3q", -1);
(-1 = less, 0 = equal, 1 = greater)
* A new verbosity level `lvlInfo', between `lvlError' and `lvlTalkative'. This is
the default for `nix-env', so without any `-v' flags users should get useful
output, e.g.,
$ nix-env -u foo.nix strategoxt
upgrading `strategoxt-0.9.2' to `strategoxt-0.9.3'
2003-12-22 17:04:00 +01:00
|
|
|
{
|
2005-02-11 17:56:45 +01:00
|
|
|
debug(format("upgrading derivations"));
|
* Upgrade operation in `nix-env'. For instance, you can say
nix-env -u foo.nix strategoxt
to replace the installed `strategoxt' derivation with the one from `foo.nix', if
the latter has a higher version number. This is a no-op if `strategoxt' is not
installed. Wildcards are also accepted, so
nix-env -u foo.nix '*'
will replace any installed derivation with newer versions from `foo.nix', if
available.
The notion of "version number" is somewhat ad hoc, but should be useful in most
cases, as evidenced by the following unit tests for the version comparator:
TEST("1.0", "2.3", -1);
TEST("2.1", "2.3", -1);
TEST("2.3", "2.3", 0);
TEST("2.5", "2.3", 1);
TEST("3.1", "2.3", 1);
TEST("2.3.1", "2.3", 1);
TEST("2.3.1", "2.3a", 1);
TEST("2.3pre1", "2.3", -1);
TEST("2.3pre3", "2.3pre12", -1);
TEST("2.3a", "2.3c", -1);
TEST("2.3pre1", "2.3c", -1);
TEST("2.3pre1", "2.3q", -1);
(-1 = less, 0 = equal, 1 = greater)
* A new verbosity level `lvlInfo', between `lvlError' and `lvlTalkative'. This is
the default for `nix-env', so without any `-v' flags users should get useful
output, e.g.,
$ nix-env -u foo.nix strategoxt
upgrading `strategoxt-0.9.2' to `strategoxt-0.9.3'
2003-12-22 17:04:00 +01:00
|
|
|
|
|
|
|
/* Upgrade works as follows: we take all currently installed
|
|
|
|
derivations, and for any derivation matching any selector, look
|
|
|
|
for a derivation in the input Nix expression that has the same
|
|
|
|
name and a higher version number. */
|
|
|
|
|
2008-08-04 18:21:45 +02:00
|
|
|
while (true) {
|
|
|
|
string lockToken = optimisticLockProfile(globals.profile);
|
|
|
|
|
|
|
|
DrvInfos installedElems = queryInstalled(globals.state, globals.profile);
|
* Upgrade operation in `nix-env'. For instance, you can say
nix-env -u foo.nix strategoxt
to replace the installed `strategoxt' derivation with the one from `foo.nix', if
the latter has a higher version number. This is a no-op if `strategoxt' is not
installed. Wildcards are also accepted, so
nix-env -u foo.nix '*'
will replace any installed derivation with newer versions from `foo.nix', if
available.
The notion of "version number" is somewhat ad hoc, but should be useful in most
cases, as evidenced by the following unit tests for the version comparator:
TEST("1.0", "2.3", -1);
TEST("2.1", "2.3", -1);
TEST("2.3", "2.3", 0);
TEST("2.5", "2.3", 1);
TEST("3.1", "2.3", 1);
TEST("2.3.1", "2.3", 1);
TEST("2.3.1", "2.3a", 1);
TEST("2.3pre1", "2.3", -1);
TEST("2.3pre3", "2.3pre12", -1);
TEST("2.3a", "2.3c", -1);
TEST("2.3pre1", "2.3c", -1);
TEST("2.3pre1", "2.3q", -1);
(-1 = less, 0 = equal, 1 = greater)
* A new verbosity level `lvlInfo', between `lvlError' and `lvlTalkative'. This is
the default for `nix-env', so without any `-v' flags users should get useful
output, e.g.,
$ nix-env -u foo.nix strategoxt
upgrading `strategoxt-0.9.2' to `strategoxt-0.9.3'
2003-12-22 17:04:00 +01:00
|
|
|
|
2008-08-04 18:21:45 +02:00
|
|
|
/* Fetch all derivations from the input file. */
|
|
|
|
DrvInfos availElems;
|
|
|
|
queryInstSources(globals.state, globals.instSource, args, availElems, false);
|
* Upgrade operation in `nix-env'. For instance, you can say
nix-env -u foo.nix strategoxt
to replace the installed `strategoxt' derivation with the one from `foo.nix', if
the latter has a higher version number. This is a no-op if `strategoxt' is not
installed. Wildcards are also accepted, so
nix-env -u foo.nix '*'
will replace any installed derivation with newer versions from `foo.nix', if
available.
The notion of "version number" is somewhat ad hoc, but should be useful in most
cases, as evidenced by the following unit tests for the version comparator:
TEST("1.0", "2.3", -1);
TEST("2.1", "2.3", -1);
TEST("2.3", "2.3", 0);
TEST("2.5", "2.3", 1);
TEST("3.1", "2.3", 1);
TEST("2.3.1", "2.3", 1);
TEST("2.3.1", "2.3a", 1);
TEST("2.3pre1", "2.3", -1);
TEST("2.3pre3", "2.3pre12", -1);
TEST("2.3a", "2.3c", -1);
TEST("2.3pre1", "2.3c", -1);
TEST("2.3pre1", "2.3q", -1);
(-1 = less, 0 = equal, 1 = greater)
* A new verbosity level `lvlInfo', between `lvlError' and `lvlTalkative'. This is
the default for `nix-env', so without any `-v' flags users should get useful
output, e.g.,
$ nix-env -u foo.nix strategoxt
upgrading `strategoxt-0.9.2' to `strategoxt-0.9.3'
2003-12-22 17:04:00 +01:00
|
|
|
|
2008-08-04 18:21:45 +02:00
|
|
|
/* Go through all installed derivations. */
|
|
|
|
DrvInfos newElems;
|
|
|
|
foreach (DrvInfos::iterator, i, installedElems) {
|
|
|
|
DrvName drvName(i->name);
|
* Upgrade operation in `nix-env'. For instance, you can say
nix-env -u foo.nix strategoxt
to replace the installed `strategoxt' derivation with the one from `foo.nix', if
the latter has a higher version number. This is a no-op if `strategoxt' is not
installed. Wildcards are also accepted, so
nix-env -u foo.nix '*'
will replace any installed derivation with newer versions from `foo.nix', if
available.
The notion of "version number" is somewhat ad hoc, but should be useful in most
cases, as evidenced by the following unit tests for the version comparator:
TEST("1.0", "2.3", -1);
TEST("2.1", "2.3", -1);
TEST("2.3", "2.3", 0);
TEST("2.5", "2.3", 1);
TEST("3.1", "2.3", 1);
TEST("2.3.1", "2.3", 1);
TEST("2.3.1", "2.3a", 1);
TEST("2.3pre1", "2.3", -1);
TEST("2.3pre3", "2.3pre12", -1);
TEST("2.3a", "2.3c", -1);
TEST("2.3pre1", "2.3c", -1);
TEST("2.3pre1", "2.3q", -1);
(-1 = less, 0 = equal, 1 = greater)
* A new verbosity level `lvlInfo', between `lvlError' and `lvlTalkative'. This is
the default for `nix-env', so without any `-v' flags users should get useful
output, e.g.,
$ nix-env -u foo.nix strategoxt
upgrading `strategoxt-0.9.2' to `strategoxt-0.9.3'
2003-12-22 17:04:00 +01:00
|
|
|
|
2009-10-13 11:30:17 +02:00
|
|
|
try {
|
2007-04-28 01:48:14 +02:00
|
|
|
|
2009-10-13 11:30:17 +02:00
|
|
|
MetaInfo meta = i->queryMetaInfo(globals.state);
|
|
|
|
if (keep(meta)) {
|
|
|
|
newElems.push_back(*i);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the derivation in the input Nix expression
|
|
|
|
with the same name that satisfies the version
|
|
|
|
constraints specified by upgradeType. If there are
|
|
|
|
multiple matches, take the one with the highest
|
|
|
|
priority. If there are still multiple matches,
|
|
|
|
take the one with the highest version. */
|
|
|
|
DrvInfos::iterator bestElem = availElems.end();
|
|
|
|
DrvName bestName;
|
|
|
|
foreach (DrvInfos::iterator, j, availElems) {
|
|
|
|
DrvName newName(j->name);
|
|
|
|
if (newName.name == drvName.name) {
|
|
|
|
int d = comparePriorities(globals.state, *i, *j);
|
|
|
|
if (d == 0) d = compareVersions(drvName.version, newName.version);
|
|
|
|
if ((upgradeType == utLt && d < 0) ||
|
|
|
|
(upgradeType == utLeq && d <= 0) ||
|
|
|
|
(upgradeType == utEq && d == 0) ||
|
|
|
|
upgradeType == utAlways)
|
|
|
|
{
|
|
|
|
int d2 = -1;
|
|
|
|
if (bestElem != availElems.end()) {
|
|
|
|
d2 = comparePriorities(globals.state, *bestElem, *j);
|
|
|
|
if (d2 == 0) d2 = compareVersions(bestName.version, newName.version);
|
|
|
|
}
|
|
|
|
if (d2 < 0) {
|
|
|
|
bestElem = j;
|
|
|
|
bestName = newName;
|
|
|
|
}
|
2008-08-04 18:21:45 +02:00
|
|
|
}
|
2004-02-09 12:59:39 +01:00
|
|
|
}
|
|
|
|
}
|
2009-10-13 11:30:17 +02:00
|
|
|
|
|
|
|
if (bestElem != availElems.end() &&
|
|
|
|
i->queryOutPath(globals.state) !=
|
|
|
|
bestElem->queryOutPath(globals.state))
|
|
|
|
{
|
|
|
|
printMsg(lvlInfo,
|
|
|
|
format("upgrading `%1%' to `%2%'")
|
|
|
|
% i->name % bestElem->name);
|
|
|
|
newElems.push_back(*bestElem);
|
|
|
|
} else newElems.push_back(*i);
|
|
|
|
|
|
|
|
} catch (Error & e) {
|
|
|
|
e.addPrefix(format("while trying to find an upgrade for `%1%':\n") % i->name);
|
|
|
|
throw;
|
2003-12-23 23:13:36 +01:00
|
|
|
}
|
2008-08-04 18:21:45 +02:00
|
|
|
}
|
* Upgrade operation in `nix-env'. For instance, you can say
nix-env -u foo.nix strategoxt
to replace the installed `strategoxt' derivation with the one from `foo.nix', if
the latter has a higher version number. This is a no-op if `strategoxt' is not
installed. Wildcards are also accepted, so
nix-env -u foo.nix '*'
will replace any installed derivation with newer versions from `foo.nix', if
available.
The notion of "version number" is somewhat ad hoc, but should be useful in most
cases, as evidenced by the following unit tests for the version comparator:
TEST("1.0", "2.3", -1);
TEST("2.1", "2.3", -1);
TEST("2.3", "2.3", 0);
TEST("2.5", "2.3", 1);
TEST("3.1", "2.3", 1);
TEST("2.3.1", "2.3", 1);
TEST("2.3.1", "2.3a", 1);
TEST("2.3pre1", "2.3", -1);
TEST("2.3pre3", "2.3pre12", -1);
TEST("2.3a", "2.3c", -1);
TEST("2.3pre1", "2.3c", -1);
TEST("2.3pre1", "2.3q", -1);
(-1 = less, 0 = equal, 1 = greater)
* A new verbosity level `lvlInfo', between `lvlError' and `lvlTalkative'. This is
the default for `nix-env', so without any `-v' flags users should get useful
output, e.g.,
$ nix-env -u foo.nix strategoxt
upgrading `strategoxt-0.9.2' to `strategoxt-0.9.3'
2003-12-22 17:04:00 +01:00
|
|
|
|
2008-08-04 18:21:45 +02:00
|
|
|
printMissing(globals.state, newElems);
|
2008-08-04 15:11:09 +02:00
|
|
|
|
2008-08-04 18:21:45 +02:00
|
|
|
if (globals.dryRun) return;
|
2004-02-09 12:59:39 +01:00
|
|
|
|
2008-08-04 18:21:45 +02:00
|
|
|
if (createUserEnv(globals.state, newElems,
|
|
|
|
globals.profile, globals.keepDerivations, lockToken)) break;
|
|
|
|
}
|
* Upgrade operation in `nix-env'. For instance, you can say
nix-env -u foo.nix strategoxt
to replace the installed `strategoxt' derivation with the one from `foo.nix', if
the latter has a higher version number. This is a no-op if `strategoxt' is not
installed. Wildcards are also accepted, so
nix-env -u foo.nix '*'
will replace any installed derivation with newer versions from `foo.nix', if
available.
The notion of "version number" is somewhat ad hoc, but should be useful in most
cases, as evidenced by the following unit tests for the version comparator:
TEST("1.0", "2.3", -1);
TEST("2.1", "2.3", -1);
TEST("2.3", "2.3", 0);
TEST("2.5", "2.3", 1);
TEST("3.1", "2.3", 1);
TEST("2.3.1", "2.3", 1);
TEST("2.3.1", "2.3a", 1);
TEST("2.3pre1", "2.3", -1);
TEST("2.3pre3", "2.3pre12", -1);
TEST("2.3a", "2.3c", -1);
TEST("2.3pre1", "2.3c", -1);
TEST("2.3pre1", "2.3q", -1);
(-1 = less, 0 = equal, 1 = greater)
* A new verbosity level `lvlInfo', between `lvlError' and `lvlTalkative'. This is
the default for `nix-env', so without any `-v' flags users should get useful
output, e.g.,
$ nix-env -u foo.nix strategoxt
upgrading `strategoxt-0.9.2' to `strategoxt-0.9.3'
2003-12-22 17:04:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-22 00:58:56 +01:00
|
|
|
static void opUpgrade(Globals & globals,
|
2007-09-17 21:24:07 +02:00
|
|
|
Strings args, Strings opFlags, Strings opArgs)
|
2003-12-22 00:58:56 +01:00
|
|
|
{
|
2004-02-09 12:59:39 +01:00
|
|
|
UpgradeType upgradeType = utLt;
|
2007-09-17 21:24:07 +02:00
|
|
|
for (Strings::iterator i = opFlags.begin(); i != opFlags.end(); ) {
|
|
|
|
string arg = *i++;
|
|
|
|
if (parseInstallSourceOptions(globals, i, opFlags, arg)) ;
|
|
|
|
else if (arg == "--lt") upgradeType = utLt;
|
|
|
|
else if (arg == "--leq") upgradeType = utLeq;
|
|
|
|
else if (arg == "--eq") upgradeType = utEq;
|
|
|
|
else if (arg == "--always") upgradeType = utAlways;
|
|
|
|
else throw UsageError(format("unknown flag `%1%'") % arg);
|
|
|
|
}
|
2003-12-22 00:58:56 +01:00
|
|
|
|
2007-02-02 02:52:42 +01:00
|
|
|
upgradeDerivations(globals, opArgs, upgradeType);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void setMetaFlag(EvalState & state, DrvInfo & drv,
|
|
|
|
const string & name, const string & value)
|
|
|
|
{
|
|
|
|
MetaInfo meta = drv.queryMetaInfo(state);
|
2009-06-30 17:53:39 +02:00
|
|
|
MetaValue v;
|
|
|
|
v.type = MetaValue::tpString;
|
|
|
|
v.stringValue = value;
|
|
|
|
meta[name] = v;
|
2007-02-02 02:52:42 +01:00
|
|
|
drv.setMetaInfo(meta);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void opSetFlag(Globals & globals,
|
2007-09-17 21:24:07 +02:00
|
|
|
Strings args, Strings opFlags, Strings opArgs)
|
2007-02-02 02:52:42 +01:00
|
|
|
{
|
|
|
|
if (opFlags.size() > 0)
|
|
|
|
throw UsageError(format("unknown flag `%1%'") % opFlags.front());
|
|
|
|
if (opArgs.size() < 2)
|
|
|
|
throw UsageError("not enough arguments to `--set-flag'");
|
|
|
|
|
|
|
|
Strings::iterator arg = opArgs.begin();
|
|
|
|
string flagName = *arg++;
|
|
|
|
string flagValue = *arg++;
|
|
|
|
DrvNames selectors = drvNamesFromArgs(Strings(arg, opArgs.end()));
|
|
|
|
|
2008-08-04 18:21:45 +02:00
|
|
|
while (true) {
|
|
|
|
string lockToken = optimisticLockProfile(globals.profile);
|
2007-02-02 02:52:42 +01:00
|
|
|
|
2008-08-04 18:21:45 +02:00
|
|
|
DrvInfos installedElems = queryInstalled(globals.state, globals.profile);
|
|
|
|
|
|
|
|
/* Update all matching derivations. */
|
|
|
|
foreach (DrvInfos::iterator, i, installedElems) {
|
|
|
|
DrvName drvName(i->name);
|
|
|
|
foreach (DrvNames::iterator, j, selectors)
|
|
|
|
if (j->matches(drvName)) {
|
|
|
|
printMsg(lvlInfo,
|
|
|
|
format("setting flag on `%1%'") % i->name);
|
|
|
|
setMetaFlag(globals.state, *i, flagName, flagValue);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-02-02 02:52:42 +01:00
|
|
|
|
2008-08-04 18:21:45 +02:00
|
|
|
/* Write the new user environment. */
|
|
|
|
if (createUserEnv(globals.state, installedElems,
|
|
|
|
globals.profile, globals.keepDerivations, lockToken)) break;
|
|
|
|
}
|
2003-11-19 18:27:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-12 20:06:02 +01:00
|
|
|
static void opSet(Globals & globals,
|
2007-09-17 21:24:07 +02:00
|
|
|
Strings args, Strings opFlags, Strings opArgs)
|
2006-12-12 20:06:02 +01:00
|
|
|
{
|
2007-09-17 21:24:07 +02:00
|
|
|
for (Strings::iterator i = opFlags.begin(); i != opFlags.end(); ) {
|
|
|
|
string arg = *i++;
|
|
|
|
if (parseInstallSourceOptions(globals, i, opFlags, arg)) ;
|
|
|
|
else throw UsageError(format("unknown flag `%1%'") % arg);
|
|
|
|
}
|
2006-12-12 20:06:02 +01:00
|
|
|
|
|
|
|
DrvInfos elems;
|
|
|
|
queryInstSources(globals.state, globals.instSource, opArgs, elems, true);
|
|
|
|
|
|
|
|
if (elems.size() != 1)
|
|
|
|
throw Error("--set requires exactly one derivation");
|
|
|
|
|
|
|
|
DrvInfo & drv(elems.front());
|
|
|
|
|
2008-08-04 16:58:50 +02:00
|
|
|
if (drv.queryDrvPath(globals.state) != "") {
|
|
|
|
PathSet paths = singleton<PathSet>(drv.queryDrvPath(globals.state));
|
|
|
|
printMissing(paths);
|
|
|
|
if (globals.dryRun) return;
|
|
|
|
store->buildDerivations(paths);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
printMissing(singleton<PathSet>(drv.queryOutPath(globals.state)));
|
|
|
|
if (globals.dryRun) return;
|
2006-12-12 20:06:02 +01:00
|
|
|
store->ensurePath(drv.queryOutPath(globals.state));
|
2008-08-04 16:58:50 +02:00
|
|
|
}
|
2006-12-12 20:06:02 +01:00
|
|
|
|
|
|
|
debug(format("switching to new user environment"));
|
|
|
|
Path generation = createGeneration(globals.profile, drv.queryOutPath(globals.state));
|
|
|
|
switchLink(globals.profile, generation);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-29 17:18:24 +01:00
|
|
|
static void uninstallDerivations(Globals & globals, Strings & selectors,
|
2005-02-14 14:07:09 +01:00
|
|
|
Path & profile)
|
2003-11-20 14:48:48 +01:00
|
|
|
{
|
2008-08-04 18:21:45 +02:00
|
|
|
while (true) {
|
|
|
|
string lockToken = optimisticLockProfile(profile);
|
|
|
|
|
|
|
|
DrvInfos installedElems = queryInstalled(globals.state, profile);
|
|
|
|
DrvInfos newElems;
|
|
|
|
|
|
|
|
foreach (DrvInfos::iterator, i, installedElems) {
|
|
|
|
DrvName drvName(i->name);
|
|
|
|
bool found = false;
|
|
|
|
foreach (Strings::iterator, j, selectors)
|
|
|
|
/* !!! the repeated calls to followLinksToStorePath()
|
|
|
|
are expensive, should pre-compute them. */
|
|
|
|
if ((isPath(*j) && i->queryOutPath(globals.state) == followLinksToStorePath(*j))
|
|
|
|
|| DrvName(*j).matches(drvName))
|
|
|
|
{
|
|
|
|
printMsg(lvlInfo, format("uninstalling `%1%'") % i->name);
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!found) newElems.push_back(*i);
|
|
|
|
}
|
2003-11-20 14:48:48 +01:00
|
|
|
|
2008-08-04 18:21:45 +02:00
|
|
|
if (globals.dryRun) return;
|
2004-02-09 12:59:39 +01:00
|
|
|
|
2008-08-04 18:21:45 +02:00
|
|
|
if (createUserEnv(globals.state, newElems,
|
|
|
|
profile, globals.keepDerivations, lockToken)) break;
|
|
|
|
}
|
2003-11-20 14:48:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-21 23:34:41 +01:00
|
|
|
static void opUninstall(Globals & globals,
|
2007-09-17 21:24:07 +02:00
|
|
|
Strings args, Strings opFlags, Strings opArgs)
|
2003-11-20 14:48:48 +01:00
|
|
|
{
|
2003-12-21 23:34:41 +01:00
|
|
|
if (opFlags.size() > 0)
|
2006-07-25 13:53:22 +02:00
|
|
|
throw UsageError(format("unknown flag `%1%'") % opFlags.front());
|
2007-11-29 17:18:24 +01:00
|
|
|
uninstallDerivations(globals, opArgs, globals.profile);
|
2003-11-20 14:48:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-14 17:09:55 +02:00
|
|
|
static bool cmpChars(char a, char b)
|
|
|
|
{
|
|
|
|
return toupper(a) < toupper(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-08 14:21:16 +01:00
|
|
|
static bool cmpElemByName(const DrvInfo & a, const DrvInfo & b)
|
2004-02-02 11:51:54 +01:00
|
|
|
{
|
2004-10-14 17:09:55 +02:00
|
|
|
return lexicographical_compare(
|
|
|
|
a.name.begin(), a.name.end(),
|
|
|
|
b.name.begin(), b.name.end(), cmpChars);
|
2004-02-02 11:51:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-01 15:35:10 +02:00
|
|
|
typedef list<Strings> Table;
|
|
|
|
|
|
|
|
|
|
|
|
void printTable(Table & table)
|
|
|
|
{
|
2004-10-29 13:22:49 +02:00
|
|
|
unsigned int nrColumns = table.size() > 0 ? table.front().size() : 0;
|
2004-07-01 15:35:10 +02:00
|
|
|
|
2004-10-29 13:22:49 +02:00
|
|
|
vector<unsigned int> widths;
|
2004-07-01 15:35:10 +02:00
|
|
|
widths.resize(nrColumns);
|
|
|
|
|
2009-07-02 10:52:12 +02:00
|
|
|
foreach (Table::iterator, i, table) {
|
2004-07-01 15:35:10 +02:00
|
|
|
assert(i->size() == nrColumns);
|
2004-10-29 13:22:49 +02:00
|
|
|
Strings::iterator j;
|
|
|
|
unsigned int column;
|
2004-07-01 15:35:10 +02:00
|
|
|
for (j = i->begin(), column = 0; j != i->end(); ++j, ++column)
|
|
|
|
if (j->size() > widths[column]) widths[column] = j->size();
|
|
|
|
}
|
|
|
|
|
2009-07-02 10:52:12 +02:00
|
|
|
foreach (Table::iterator, i, table) {
|
2004-10-29 13:22:49 +02:00
|
|
|
Strings::iterator j;
|
|
|
|
unsigned int column;
|
2009-07-02 10:52:12 +02:00
|
|
|
for (j = i->begin(), column = 0; j != i->end(); ++j, ++column) {
|
|
|
|
string s = *j;
|
|
|
|
replace(s.begin(), s.end(), '\n', ' ');
|
|
|
|
cout << s;
|
2004-07-01 15:35:10 +02:00
|
|
|
if (column < nrColumns - 1)
|
2009-07-02 10:52:12 +02:00
|
|
|
cout << string(widths[column] - s.size() + 2, ' ');
|
2004-07-01 15:35:10 +02:00
|
|
|
}
|
2006-09-04 23:06:23 +02:00
|
|
|
cout << std::endl;
|
2004-07-01 15:35:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
* New query option: `--compare-versions' or `-c' to compare installed
versions to available versions, or vice versa.
For example, the following compares installed versions to available
versions:
$ nix-env -qc
autoconf-2.59 = 2.59
automake-1.9.4 < 1.9.6
f-spot-0.0.10 - ?
firefox-1.0.4 < 1.0.7
...
I.e., there are newer versions available (in the current default Nix
expression) for Automake and Firefox, but not for Autoconf, and
F-Spot is missing altogether.
Conversely, the available versions can be compared to the installed
versions:
$ nix-env -qac
autoconf-2.59 = 2.59
automake-1.9.6 > 1.9.4
bash-3.0 - ?
firefox-1.0.7 > 1.0.4
...
Note that bash is available but no version of it is installed.
If multiple versions are available for comparison, then the highest
is used. E.g., if Subversion 1.2.0 is installed, and Subversion
1.1.4 and 1.2.3 are available, then `nix-env -qc' will print `<
1.2.3', not `> 1.1.4'.
If higher versions are available, the version column is printed in
red (using ANSI escape codes).
2005-10-06 16:44:54 +02:00
|
|
|
/* This function compares the version of a element against the
|
|
|
|
versions in the given set of elements. `cvLess' means that only
|
|
|
|
lower versions are in the set, `cvEqual' means that at most an
|
|
|
|
equal version is in the set, and `cvGreater' means that there is at
|
|
|
|
least one element with a higher version in the set. `cvUnavail'
|
|
|
|
means that there are no elements with the same name in the set. */
|
|
|
|
|
|
|
|
typedef enum { cvLess, cvEqual, cvGreater, cvUnavail } VersionDiff;
|
|
|
|
|
|
|
|
static VersionDiff compareVersionAgainstSet(
|
2006-02-08 14:21:16 +01:00
|
|
|
const DrvInfo & elem, const DrvInfos & elems, string & version)
|
* New query option: `--compare-versions' or `-c' to compare installed
versions to available versions, or vice versa.
For example, the following compares installed versions to available
versions:
$ nix-env -qc
autoconf-2.59 = 2.59
automake-1.9.4 < 1.9.6
f-spot-0.0.10 - ?
firefox-1.0.4 < 1.0.7
...
I.e., there are newer versions available (in the current default Nix
expression) for Automake and Firefox, but not for Autoconf, and
F-Spot is missing altogether.
Conversely, the available versions can be compared to the installed
versions:
$ nix-env -qac
autoconf-2.59 = 2.59
automake-1.9.6 > 1.9.4
bash-3.0 - ?
firefox-1.0.7 > 1.0.4
...
Note that bash is available but no version of it is installed.
If multiple versions are available for comparison, then the highest
is used. E.g., if Subversion 1.2.0 is installed, and Subversion
1.1.4 and 1.2.3 are available, then `nix-env -qc' will print `<
1.2.3', not `> 1.1.4'.
If higher versions are available, the version column is printed in
red (using ANSI escape codes).
2005-10-06 16:44:54 +02:00
|
|
|
{
|
|
|
|
DrvName name(elem.name);
|
|
|
|
|
|
|
|
VersionDiff diff = cvUnavail;
|
|
|
|
version = "?";
|
|
|
|
|
2006-02-08 14:21:16 +01:00
|
|
|
for (DrvInfos::const_iterator i = elems.begin(); i != elems.end(); ++i) {
|
|
|
|
DrvName name2(i->name);
|
* New query option: `--compare-versions' or `-c' to compare installed
versions to available versions, or vice versa.
For example, the following compares installed versions to available
versions:
$ nix-env -qc
autoconf-2.59 = 2.59
automake-1.9.4 < 1.9.6
f-spot-0.0.10 - ?
firefox-1.0.4 < 1.0.7
...
I.e., there are newer versions available (in the current default Nix
expression) for Automake and Firefox, but not for Autoconf, and
F-Spot is missing altogether.
Conversely, the available versions can be compared to the installed
versions:
$ nix-env -qac
autoconf-2.59 = 2.59
automake-1.9.6 > 1.9.4
bash-3.0 - ?
firefox-1.0.7 > 1.0.4
...
Note that bash is available but no version of it is installed.
If multiple versions are available for comparison, then the highest
is used. E.g., if Subversion 1.2.0 is installed, and Subversion
1.1.4 and 1.2.3 are available, then `nix-env -qc' will print `<
1.2.3', not `> 1.1.4'.
If higher versions are available, the version column is printed in
red (using ANSI escape codes).
2005-10-06 16:44:54 +02:00
|
|
|
if (name.name == name2.name) {
|
|
|
|
int d = compareVersions(name.version, name2.version);
|
|
|
|
if (d < 0) {
|
|
|
|
diff = cvGreater;
|
|
|
|
version = name2.version;
|
|
|
|
}
|
|
|
|
else if (diff != cvGreater && d == 0) {
|
|
|
|
diff = cvEqual;
|
|
|
|
version = name2.version;
|
|
|
|
}
|
|
|
|
else if (diff != cvGreater && diff != cvEqual && d > 0) {
|
|
|
|
diff = cvLess;
|
|
|
|
if (version == "" || compareVersions(version, name2.version) < 0)
|
|
|
|
version = name2.version;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return diff;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static string colorString(const string & s)
|
|
|
|
{
|
2005-10-06 17:01:46 +02:00
|
|
|
if (!isatty(STDOUT_FILENO)) return s;
|
* New query option: `--compare-versions' or `-c' to compare installed
versions to available versions, or vice versa.
For example, the following compares installed versions to available
versions:
$ nix-env -qc
autoconf-2.59 = 2.59
automake-1.9.4 < 1.9.6
f-spot-0.0.10 - ?
firefox-1.0.4 < 1.0.7
...
I.e., there are newer versions available (in the current default Nix
expression) for Automake and Firefox, but not for Autoconf, and
F-Spot is missing altogether.
Conversely, the available versions can be compared to the installed
versions:
$ nix-env -qac
autoconf-2.59 = 2.59
automake-1.9.6 > 1.9.4
bash-3.0 - ?
firefox-1.0.7 > 1.0.4
...
Note that bash is available but no version of it is installed.
If multiple versions are available for comparison, then the highest
is used. E.g., if Subversion 1.2.0 is installed, and Subversion
1.1.4 and 1.2.3 are available, then `nix-env -qc' will print `<
1.2.3', not `> 1.1.4'.
If higher versions are available, the version column is printed in
red (using ANSI escape codes).
2005-10-06 16:44:54 +02:00
|
|
|
return "\e[1;31m" + s + "\e[0m";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-21 23:34:41 +01:00
|
|
|
static void opQuery(Globals & globals,
|
2007-09-17 21:24:07 +02:00
|
|
|
Strings args, Strings opFlags, Strings opArgs)
|
2003-11-19 18:27:16 +01:00
|
|
|
{
|
2006-08-03 17:52:09 +02:00
|
|
|
typedef vector< map<string, string> > ResultSet;
|
2007-09-17 21:24:07 +02:00
|
|
|
Strings remaining;
|
|
|
|
string attrPath;
|
2006-08-03 17:52:09 +02:00
|
|
|
|
2004-07-01 15:13:37 +02:00
|
|
|
bool printStatus = false;
|
|
|
|
bool printName = true;
|
2006-07-25 18:40:38 +02:00
|
|
|
bool printAttrPath = false;
|
2004-07-01 15:13:37 +02:00
|
|
|
bool printSystem = false;
|
|
|
|
bool printDrvPath = false;
|
2005-02-11 17:56:45 +01:00
|
|
|
bool printOutPath = false;
|
2006-03-10 17:20:42 +01:00
|
|
|
bool printDescription = false;
|
2007-05-01 13:30:52 +02:00
|
|
|
bool printMeta = false;
|
2007-04-26 16:20:31 +02:00
|
|
|
bool prebuiltOnly = false;
|
* New query option: `--compare-versions' or `-c' to compare installed
versions to available versions, or vice versa.
For example, the following compares installed versions to available
versions:
$ nix-env -qc
autoconf-2.59 = 2.59
automake-1.9.4 < 1.9.6
f-spot-0.0.10 - ?
firefox-1.0.4 < 1.0.7
...
I.e., there are newer versions available (in the current default Nix
expression) for Automake and Firefox, but not for Autoconf, and
F-Spot is missing altogether.
Conversely, the available versions can be compared to the installed
versions:
$ nix-env -qac
autoconf-2.59 = 2.59
automake-1.9.6 > 1.9.4
bash-3.0 - ?
firefox-1.0.7 > 1.0.4
...
Note that bash is available but no version of it is installed.
If multiple versions are available for comparison, then the highest
is used. E.g., if Subversion 1.2.0 is installed, and Subversion
1.1.4 and 1.2.3 are available, then `nix-env -qc' will print `<
1.2.3', not `> 1.1.4'.
If higher versions are available, the version column is printed in
red (using ANSI escape codes).
2005-10-06 16:44:54 +02:00
|
|
|
bool compareVersions = false;
|
2006-08-03 17:52:09 +02:00
|
|
|
bool xmlOutput = false;
|
2004-07-01 15:13:37 +02:00
|
|
|
|
2003-11-19 18:27:16 +01:00
|
|
|
enum { sInstalled, sAvailable } source = sInstalled;
|
|
|
|
|
2004-10-27 12:24:44 +02:00
|
|
|
readOnlyMode = true; /* makes evaluation a bit faster */
|
|
|
|
|
2007-09-17 21:24:07 +02:00
|
|
|
for (Strings::iterator i = args.begin(); i != args.end(); ) {
|
|
|
|
string arg = *i++;
|
|
|
|
if (arg == "--status" || arg == "-s") printStatus = true;
|
|
|
|
else if (arg == "--no-name") printName = false;
|
|
|
|
else if (arg == "--system") printSystem = true;
|
|
|
|
else if (arg == "--description") printDescription = true;
|
|
|
|
else if (arg == "--compare-versions" || arg == "-c") compareVersions = true;
|
|
|
|
else if (arg == "--drv-path") printDrvPath = true;
|
|
|
|
else if (arg == "--out-path") printOutPath = true;
|
|
|
|
else if (arg == "--meta") printMeta = true;
|
|
|
|
else if (arg == "--installed") source = sInstalled;
|
|
|
|
else if (arg == "--available" || arg == "-a") source = sAvailable;
|
|
|
|
else if (arg == "--prebuilt-only" || arg == "-b") prebuiltOnly = true;
|
|
|
|
else if (arg == "--xml") xmlOutput = true;
|
|
|
|
else if (arg == "--attr-path" || arg == "-P") printAttrPath = true;
|
|
|
|
else if (arg == "--attr" || arg == "-A")
|
|
|
|
attrPath = needArg(i, args, arg);
|
|
|
|
else if (arg[0] == '-')
|
|
|
|
throw UsageError(format("unknown flag `%1%'") % arg);
|
|
|
|
else remaining.push_back(arg);
|
2006-03-10 11:24:46 +01:00
|
|
|
}
|
2003-11-19 18:27:16 +01:00
|
|
|
|
2007-09-17 21:24:07 +02:00
|
|
|
if (remaining.size() == 0)
|
|
|
|
printMsg(lvlInfo, "warning: you probably meant to specify the argument '*' to show all packages");
|
|
|
|
|
* New query option: `--compare-versions' or `-c' to compare installed
versions to available versions, or vice versa.
For example, the following compares installed versions to available
versions:
$ nix-env -qc
autoconf-2.59 = 2.59
automake-1.9.4 < 1.9.6
f-spot-0.0.10 - ?
firefox-1.0.4 < 1.0.7
...
I.e., there are newer versions available (in the current default Nix
expression) for Automake and Firefox, but not for Autoconf, and
F-Spot is missing altogether.
Conversely, the available versions can be compared to the installed
versions:
$ nix-env -qac
autoconf-2.59 = 2.59
automake-1.9.6 > 1.9.4
bash-3.0 - ?
firefox-1.0.7 > 1.0.4
...
Note that bash is available but no version of it is installed.
If multiple versions are available for comparison, then the highest
is used. E.g., if Subversion 1.2.0 is installed, and Subversion
1.1.4 and 1.2.3 are available, then `nix-env -qc' will print `<
1.2.3', not `> 1.1.4'.
If higher versions are available, the version column is printed in
red (using ANSI escape codes).
2005-10-06 16:44:54 +02:00
|
|
|
|
|
|
|
/* Obtain derivation information from the specified source. */
|
2006-02-08 14:21:16 +01:00
|
|
|
DrvInfos availElems, installedElems;
|
2003-11-19 18:27:16 +01:00
|
|
|
|
2007-09-17 21:24:07 +02:00
|
|
|
if (source == sInstalled || compareVersions || printStatus)
|
* New query option: `--compare-versions' or `-c' to compare installed
versions to available versions, or vice versa.
For example, the following compares installed versions to available
versions:
$ nix-env -qc
autoconf-2.59 = 2.59
automake-1.9.4 < 1.9.6
f-spot-0.0.10 - ?
firefox-1.0.4 < 1.0.7
...
I.e., there are newer versions available (in the current default Nix
expression) for Automake and Firefox, but not for Autoconf, and
F-Spot is missing altogether.
Conversely, the available versions can be compared to the installed
versions:
$ nix-env -qac
autoconf-2.59 = 2.59
automake-1.9.6 > 1.9.4
bash-3.0 - ?
firefox-1.0.7 > 1.0.4
...
Note that bash is available but no version of it is installed.
If multiple versions are available for comparison, then the highest
is used. E.g., if Subversion 1.2.0 is installed, and Subversion
1.1.4 and 1.2.3 are available, then `nix-env -qc' will print `<
1.2.3', not `> 1.1.4'.
If higher versions are available, the version column is printed in
red (using ANSI escape codes).
2005-10-06 16:44:54 +02:00
|
|
|
installedElems = queryInstalled(globals.state, globals.profile);
|
2003-11-19 18:27:16 +01:00
|
|
|
|
2007-09-17 21:24:07 +02:00
|
|
|
if (source == sAvailable || compareVersions)
|
* New query option: `--compare-versions' or `-c' to compare installed
versions to available versions, or vice versa.
For example, the following compares installed versions to available
versions:
$ nix-env -qc
autoconf-2.59 = 2.59
automake-1.9.4 < 1.9.6
f-spot-0.0.10 - ?
firefox-1.0.4 < 1.0.7
...
I.e., there are newer versions available (in the current default Nix
expression) for Automake and Firefox, but not for Autoconf, and
F-Spot is missing altogether.
Conversely, the available versions can be compared to the installed
versions:
$ nix-env -qac
autoconf-2.59 = 2.59
automake-1.9.6 > 1.9.4
bash-3.0 - ?
firefox-1.0.7 > 1.0.4
...
Note that bash is available but no version of it is installed.
If multiple versions are available for comparison, then the highest
is used. E.g., if Subversion 1.2.0 is installed, and Subversion
1.1.4 and 1.2.3 are available, then `nix-env -qc' will print `<
1.2.3', not `> 1.1.4'.
If higher versions are available, the version column is printed in
red (using ANSI escape codes).
2005-10-06 16:44:54 +02:00
|
|
|
loadDerivations(globals.state, globals.instSource.nixExprPath,
|
2006-08-23 18:33:21 +02:00
|
|
|
globals.instSource.systemFilter, globals.instSource.autoArgs,
|
2007-09-17 21:24:07 +02:00
|
|
|
attrPath, availElems);
|
2003-11-19 18:27:16 +01:00
|
|
|
|
2006-03-10 11:24:46 +01:00
|
|
|
DrvInfos elems = filterBySelector(globals.state,
|
|
|
|
source == sInstalled ? installedElems : availElems,
|
2007-10-29 15:31:45 +01:00
|
|
|
remaining, false, prebuiltOnly);
|
2006-03-10 11:24:46 +01:00
|
|
|
|
2006-02-08 14:21:16 +01:00
|
|
|
DrvInfos & otherElems(source == sInstalled ? availElems : installedElems);
|
2004-02-02 11:51:54 +01:00
|
|
|
|
* New query option: `--compare-versions' or `-c' to compare installed
versions to available versions, or vice versa.
For example, the following compares installed versions to available
versions:
$ nix-env -qc
autoconf-2.59 = 2.59
automake-1.9.4 < 1.9.6
f-spot-0.0.10 - ?
firefox-1.0.4 < 1.0.7
...
I.e., there are newer versions available (in the current default Nix
expression) for Automake and Firefox, but not for Autoconf, and
F-Spot is missing altogether.
Conversely, the available versions can be compared to the installed
versions:
$ nix-env -qac
autoconf-2.59 = 2.59
automake-1.9.6 > 1.9.4
bash-3.0 - ?
firefox-1.0.7 > 1.0.4
...
Note that bash is available but no version of it is installed.
If multiple versions are available for comparison, then the highest
is used. E.g., if Subversion 1.2.0 is installed, and Subversion
1.1.4 and 1.2.3 are available, then `nix-env -qc' will print `<
1.2.3', not `> 1.1.4'.
If higher versions are available, the version column is printed in
red (using ANSI escape codes).
2005-10-06 16:44:54 +02:00
|
|
|
|
2004-02-02 11:51:54 +01:00
|
|
|
/* Sort them by name. */
|
2006-02-08 14:21:16 +01:00
|
|
|
/* !!! */
|
|
|
|
vector<DrvInfo> elems2;
|
|
|
|
for (DrvInfos::iterator i = elems.begin(); i != elems.end(); ++i)
|
|
|
|
elems2.push_back(*i);
|
2005-02-14 17:16:02 +01:00
|
|
|
sort(elems2.begin(), elems2.end(), cmpElemByName);
|
2003-11-19 18:27:16 +01:00
|
|
|
|
* New query option: `--compare-versions' or `-c' to compare installed
versions to available versions, or vice versa.
For example, the following compares installed versions to available
versions:
$ nix-env -qc
autoconf-2.59 = 2.59
automake-1.9.4 < 1.9.6
f-spot-0.0.10 - ?
firefox-1.0.4 < 1.0.7
...
I.e., there are newer versions available (in the current default Nix
expression) for Automake and Firefox, but not for Autoconf, and
F-Spot is missing altogether.
Conversely, the available versions can be compared to the installed
versions:
$ nix-env -qac
autoconf-2.59 = 2.59
automake-1.9.6 > 1.9.4
bash-3.0 - ?
firefox-1.0.7 > 1.0.4
...
Note that bash is available but no version of it is installed.
If multiple versions are available for comparison, then the highest
is used. E.g., if Subversion 1.2.0 is installed, and Subversion
1.1.4 and 1.2.3 are available, then `nix-env -qc' will print `<
1.2.3', not `> 1.1.4'.
If higher versions are available, the version column is printed in
red (using ANSI escape codes).
2005-10-06 16:44:54 +02:00
|
|
|
|
2004-07-01 15:13:37 +02:00
|
|
|
/* We only need to know the installed paths when we are querying
|
|
|
|
the status of the derivation. */
|
2005-05-08 12:32:09 +02:00
|
|
|
PathSet installed; /* installed paths */
|
2004-07-01 15:13:37 +02:00
|
|
|
|
2005-05-08 12:32:09 +02:00
|
|
|
if (printStatus) {
|
2006-02-08 14:21:16 +01:00
|
|
|
for (DrvInfos::iterator i = installedElems.begin();
|
2005-05-08 12:32:09 +02:00
|
|
|
i != installedElems.end(); ++i)
|
2006-02-08 14:21:16 +01:00
|
|
|
installed.insert(i->queryOutPath(globals.state));
|
2005-05-08 12:32:09 +02:00
|
|
|
}
|
* New query option: `--compare-versions' or `-c' to compare installed
versions to available versions, or vice versa.
For example, the following compares installed versions to available
versions:
$ nix-env -qc
autoconf-2.59 = 2.59
automake-1.9.4 < 1.9.6
f-spot-0.0.10 - ?
firefox-1.0.4 < 1.0.7
...
I.e., there are newer versions available (in the current default Nix
expression) for Automake and Firefox, but not for Autoconf, and
F-Spot is missing altogether.
Conversely, the available versions can be compared to the installed
versions:
$ nix-env -qac
autoconf-2.59 = 2.59
automake-1.9.6 > 1.9.4
bash-3.0 - ?
firefox-1.0.7 > 1.0.4
...
Note that bash is available but no version of it is installed.
If multiple versions are available for comparison, then the highest
is used. E.g., if Subversion 1.2.0 is installed, and Subversion
1.1.4 and 1.2.3 are available, then `nix-env -qc' will print `<
1.2.3', not `> 1.1.4'.
If higher versions are available, the version column is printed in
red (using ANSI escape codes).
2005-10-06 16:44:54 +02:00
|
|
|
|
|
|
|
|
2006-08-03 17:52:09 +02:00
|
|
|
/* Print the desired columns, or XML output. */
|
2004-07-01 15:35:10 +02:00
|
|
|
Table table;
|
2006-09-04 23:06:23 +02:00
|
|
|
std::ostringstream dummy;
|
2006-08-16 12:32:30 +02:00
|
|
|
XMLWriter xml(true, *(xmlOutput ? &cout : &dummy));
|
2006-08-03 17:52:09 +02:00
|
|
|
XMLOpenElement xmlRoot(xml, "items");
|
2004-07-01 15:35:10 +02:00
|
|
|
|
2009-06-30 17:53:39 +02:00
|
|
|
foreach (vector<DrvInfo>::iterator, i, elems2) {
|
2006-03-08 17:03:58 +01:00
|
|
|
try {
|
2010-04-16 15:44:02 +02:00
|
|
|
startNest(nest, lvlDebug, format("outputting query result `%1%'") % i->attrPath);
|
2006-08-03 17:52:09 +02:00
|
|
|
|
|
|
|
/* For table output. */
|
2006-03-08 17:03:58 +01:00
|
|
|
Strings columns;
|
2006-08-03 17:52:09 +02:00
|
|
|
|
|
|
|
/* For XML output. */
|
|
|
|
XMLAttrs attrs;
|
2007-04-26 16:20:31 +02:00
|
|
|
|
2006-03-08 17:03:58 +01:00
|
|
|
if (printStatus) {
|
2006-11-30 23:43:55 +01:00
|
|
|
bool hasSubs = store->hasSubstitutes(i->queryOutPath(globals.state));
|
2006-08-03 17:52:09 +02:00
|
|
|
bool isInstalled = installed.find(i->queryOutPath(globals.state)) != installed.end();
|
2006-11-30 18:43:04 +01:00
|
|
|
bool isValid = store->isValidPath(i->queryOutPath(globals.state));
|
2006-08-03 17:52:09 +02:00
|
|
|
if (xmlOutput) {
|
|
|
|
attrs["installed"] = isInstalled ? "1" : "0";
|
|
|
|
attrs["valid"] = isValid ? "1" : "0";
|
2006-11-30 23:43:55 +01:00
|
|
|
attrs["substitutable"] = hasSubs ? "1" : "0";
|
2006-08-03 17:52:09 +02:00
|
|
|
} else
|
|
|
|
columns.push_back(
|
|
|
|
(string) (isInstalled ? "I" : "-")
|
|
|
|
+ (isValid ? "P" : "-")
|
2006-11-30 23:43:55 +01:00
|
|
|
+ (hasSubs ? "S" : "-"));
|
2006-03-08 17:03:58 +01:00
|
|
|
}
|
2004-07-01 15:13:37 +02:00
|
|
|
|
2006-08-03 17:52:09 +02:00
|
|
|
if (xmlOutput)
|
|
|
|
attrs["attrPath"] = i->attrPath;
|
|
|
|
else if (printAttrPath)
|
|
|
|
columns.push_back(i->attrPath);
|
2006-07-25 18:40:38 +02:00
|
|
|
|
2006-08-03 17:52:09 +02:00
|
|
|
if (xmlOutput)
|
|
|
|
attrs["name"] = i->name;
|
|
|
|
else if (printName)
|
|
|
|
columns.push_back(i->name);
|
2006-03-08 17:03:58 +01:00
|
|
|
|
|
|
|
if (compareVersions) {
|
|
|
|
/* Compare this element against the versions of the
|
|
|
|
same named packages in either the set of available
|
|
|
|
elements, or the set of installed elements. !!!
|
|
|
|
This is O(N * M), should be O(N * lg M). */
|
|
|
|
string version;
|
|
|
|
VersionDiff diff = compareVersionAgainstSet(*i, otherElems, version);
|
2006-08-03 17:52:09 +02:00
|
|
|
|
2006-03-08 17:03:58 +01:00
|
|
|
char ch;
|
|
|
|
switch (diff) {
|
|
|
|
case cvLess: ch = '>'; break;
|
|
|
|
case cvEqual: ch = '='; break;
|
|
|
|
case cvGreater: ch = '<'; break;
|
|
|
|
case cvUnavail: ch = '-'; break;
|
|
|
|
default: abort();
|
|
|
|
}
|
2006-08-03 17:52:09 +02:00
|
|
|
|
|
|
|
if (xmlOutput) {
|
|
|
|
if (diff != cvUnavail) {
|
|
|
|
attrs["versionDiff"] = ch;
|
|
|
|
attrs["maxComparedVersion"] = version;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
string column = (string) "" + ch + " " + version;
|
|
|
|
if (diff == cvGreater) column = colorString(column);
|
|
|
|
columns.push_back(column);
|
|
|
|
}
|
* New query option: `--compare-versions' or `-c' to compare installed
versions to available versions, or vice versa.
For example, the following compares installed versions to available
versions:
$ nix-env -qc
autoconf-2.59 = 2.59
automake-1.9.4 < 1.9.6
f-spot-0.0.10 - ?
firefox-1.0.4 < 1.0.7
...
I.e., there are newer versions available (in the current default Nix
expression) for Automake and Firefox, but not for Autoconf, and
F-Spot is missing altogether.
Conversely, the available versions can be compared to the installed
versions:
$ nix-env -qac
autoconf-2.59 = 2.59
automake-1.9.6 > 1.9.4
bash-3.0 - ?
firefox-1.0.7 > 1.0.4
...
Note that bash is available but no version of it is installed.
If multiple versions are available for comparison, then the highest
is used. E.g., if Subversion 1.2.0 is installed, and Subversion
1.1.4 and 1.2.3 are available, then `nix-env -qc' will print `<
1.2.3', not `> 1.1.4'.
If higher versions are available, the version column is printed in
red (using ANSI escape codes).
2005-10-06 16:44:54 +02:00
|
|
|
}
|
|
|
|
|
2006-08-03 17:52:09 +02:00
|
|
|
if (xmlOutput) {
|
|
|
|
if (i->system != "") attrs["system"] = i->system;
|
|
|
|
}
|
|
|
|
else if (printSystem)
|
|
|
|
columns.push_back(i->system);
|
2005-10-06 17:51:59 +02:00
|
|
|
|
2006-08-03 17:52:09 +02:00
|
|
|
if (printDrvPath) {
|
|
|
|
string drvPath = i->queryDrvPath(globals.state);
|
|
|
|
if (xmlOutput) {
|
|
|
|
if (drvPath != "") attrs["drvPath"] = drvPath;
|
|
|
|
} else
|
|
|
|
columns.push_back(drvPath == "" ? "-" : drvPath);
|
|
|
|
}
|
2005-02-11 17:56:45 +01:00
|
|
|
|
2006-08-03 17:52:09 +02:00
|
|
|
if (printOutPath) {
|
|
|
|
string outPath = i->queryOutPath(globals.state);
|
|
|
|
if (xmlOutput) {
|
|
|
|
if (outPath != "") attrs["outPath"] = outPath;
|
|
|
|
} else
|
|
|
|
columns.push_back(outPath);
|
|
|
|
}
|
2006-03-10 17:20:42 +01:00
|
|
|
|
|
|
|
if (printDescription) {
|
|
|
|
MetaInfo meta = i->queryMetaInfo(globals.state);
|
2009-06-30 17:53:39 +02:00
|
|
|
MetaValue value = meta["description"];
|
|
|
|
string descr = value.type == MetaValue::tpString ? value.stringValue : "";
|
2006-08-03 17:52:09 +02:00
|
|
|
if (xmlOutput) {
|
|
|
|
if (descr != "") attrs["description"] = descr;
|
|
|
|
} else
|
|
|
|
columns.push_back(descr);
|
2006-03-10 17:20:42 +01:00
|
|
|
}
|
2006-08-03 17:52:09 +02:00
|
|
|
|
2006-08-16 12:32:30 +02:00
|
|
|
if (xmlOutput)
|
2007-05-01 13:30:52 +02:00
|
|
|
if (printMeta) {
|
|
|
|
XMLOpenElement item(xml, "item", attrs);
|
|
|
|
MetaInfo meta = i->queryMetaInfo(globals.state);
|
|
|
|
for (MetaInfo::iterator j = meta.begin(); j != meta.end(); ++j) {
|
|
|
|
XMLAttrs attrs2;
|
|
|
|
attrs2["name"] = j->first;
|
2009-06-30 17:53:39 +02:00
|
|
|
if (j->second.type == MetaValue::tpString) {
|
|
|
|
attrs2["type"] = "string";
|
|
|
|
attrs2["value"] = j->second.stringValue;
|
|
|
|
xml.writeEmptyElement("meta", attrs2);
|
|
|
|
} else if (j->second.type == MetaValue::tpInt) {
|
|
|
|
attrs2["type"] = "int";
|
|
|
|
attrs2["value"] = (format("%1%") % j->second.intValue).str();
|
|
|
|
xml.writeEmptyElement("meta", attrs2);
|
|
|
|
} else if (j->second.type == MetaValue::tpStrings) {
|
|
|
|
attrs2["type"] = "strings";
|
|
|
|
XMLOpenElement m(xml, "meta", attrs2);
|
|
|
|
foreach (Strings::iterator, k, j->second.stringValues) {
|
|
|
|
XMLAttrs attrs3;
|
|
|
|
attrs3["value"] = *k;
|
|
|
|
xml.writeEmptyElement("string", attrs3);
|
|
|
|
}
|
|
|
|
}
|
2007-05-01 13:30:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
xml.writeEmptyElement("item", attrs);
|
2006-08-16 12:32:30 +02:00
|
|
|
else
|
2006-08-03 17:52:09 +02:00
|
|
|
table.push_back(columns);
|
|
|
|
|
2006-10-17 16:01:45 +02:00
|
|
|
cout.flush();
|
|
|
|
|
2006-08-03 17:52:09 +02:00
|
|
|
} catch (AssertionError & e) {
|
2007-08-06 18:08:09 +02:00
|
|
|
printMsg(lvlTalkative, format("skipping derivation named `%1%' which gives an assertion failure") % i->name);
|
2006-03-08 17:03:58 +01:00
|
|
|
}
|
2003-11-19 18:27:16 +01:00
|
|
|
}
|
2004-07-01 15:35:10 +02:00
|
|
|
|
2006-08-03 17:52:09 +02:00
|
|
|
if (!xmlOutput) printTable(table);
|
2003-11-19 18:27:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-01-05 12:18:59 +01:00
|
|
|
static void opSwitchProfile(Globals & globals,
|
2007-09-17 21:24:07 +02:00
|
|
|
Strings args, Strings opFlags, Strings opArgs)
|
2004-01-05 12:18:59 +01:00
|
|
|
{
|
|
|
|
if (opFlags.size() > 0)
|
2004-02-06 17:03:27 +01:00
|
|
|
throw UsageError(format("unknown flag `%1%'") % opFlags.front());
|
2004-02-06 11:59:06 +01:00
|
|
|
if (opArgs.size() != 1)
|
2004-02-06 17:03:27 +01:00
|
|
|
throw UsageError(format("exactly one argument expected"));
|
2004-01-05 12:18:59 +01:00
|
|
|
|
2006-12-02 17:41:36 +01:00
|
|
|
Path profile = absPath(opArgs.front());
|
2004-02-06 11:59:06 +01:00
|
|
|
Path profileLink = getHomeDir() + "/.nix-profile";
|
2004-01-05 12:18:59 +01:00
|
|
|
|
2004-02-06 11:30:20 +01:00
|
|
|
switchLink(profileLink, profile);
|
2004-01-05 17:26:43 +01:00
|
|
|
}
|
2004-01-05 12:18:59 +01:00
|
|
|
|
2004-01-05 17:26:43 +01:00
|
|
|
|
2004-02-08 15:07:43 +01:00
|
|
|
static const int prevGen = -2;
|
|
|
|
|
|
|
|
|
|
|
|
static void switchGeneration(Globals & globals, int dstGen)
|
|
|
|
{
|
2006-09-15 00:33:53 +02:00
|
|
|
PathLocks lock;
|
|
|
|
lockProfile(lock, globals.profile);
|
|
|
|
|
2004-02-08 15:07:43 +01:00
|
|
|
int curGen;
|
|
|
|
Generations gens = findGenerations(globals.profile, curGen);
|
|
|
|
|
|
|
|
Generation dst;
|
|
|
|
for (Generations::iterator i = gens.begin(); i != gens.end(); ++i)
|
|
|
|
if ((dstGen == prevGen && i->number < curGen) ||
|
|
|
|
(dstGen >= 0 && i->number == dstGen))
|
|
|
|
dst = *i;
|
|
|
|
|
2009-06-30 17:53:39 +02:00
|
|
|
if (!dst) {
|
2004-02-08 15:07:43 +01:00
|
|
|
if (dstGen == prevGen)
|
|
|
|
throw Error(format("no generation older than the current (%1%) exists")
|
|
|
|
% curGen);
|
|
|
|
else
|
|
|
|
throw Error(format("generation %1% does not exist") % dstGen);
|
2009-06-30 17:53:39 +02:00
|
|
|
}
|
2004-02-08 15:07:43 +01:00
|
|
|
|
2004-02-10 14:42:58 +01:00
|
|
|
printMsg(lvlInfo, format("switching from generation %1% to %2%")
|
|
|
|
% curGen % dst.number);
|
|
|
|
|
|
|
|
if (globals.dryRun) return;
|
|
|
|
|
2004-02-08 15:07:43 +01:00
|
|
|
switchLink(globals.profile, dst.path);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void opSwitchGeneration(Globals & globals,
|
2007-09-17 21:24:07 +02:00
|
|
|
Strings args, Strings opFlags, Strings opArgs)
|
2004-02-08 15:07:43 +01:00
|
|
|
{
|
|
|
|
if (opFlags.size() > 0)
|
|
|
|
throw UsageError(format("unknown flag `%1%'") % opFlags.front());
|
|
|
|
if (opArgs.size() != 1)
|
|
|
|
throw UsageError(format("exactly one argument expected"));
|
|
|
|
|
|
|
|
int dstGen;
|
2004-09-10 15:32:08 +02:00
|
|
|
if (!string2Int(opArgs.front(), dstGen))
|
2004-02-08 15:07:43 +01:00
|
|
|
throw UsageError(format("expected a generation number"));
|
|
|
|
|
|
|
|
switchGeneration(globals, dstGen);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void opRollback(Globals & globals,
|
2007-09-17 21:24:07 +02:00
|
|
|
Strings args, Strings opFlags, Strings opArgs)
|
2004-02-08 15:07:43 +01:00
|
|
|
{
|
|
|
|
if (opFlags.size() > 0)
|
|
|
|
throw UsageError(format("unknown flag `%1%'") % opFlags.front());
|
|
|
|
if (opArgs.size() != 0)
|
|
|
|
throw UsageError(format("no arguments expected"));
|
|
|
|
|
|
|
|
switchGeneration(globals, prevGen);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-06 17:03:27 +01:00
|
|
|
static void opListGenerations(Globals & globals,
|
2007-09-17 21:24:07 +02:00
|
|
|
Strings args, Strings opFlags, Strings opArgs)
|
2004-02-06 17:03:27 +01:00
|
|
|
{
|
|
|
|
if (opFlags.size() > 0)
|
|
|
|
throw UsageError(format("unknown flag `%1%'") % opFlags.front());
|
|
|
|
if (opArgs.size() != 0)
|
|
|
|
throw UsageError(format("no arguments expected"));
|
|
|
|
|
2006-09-15 00:33:53 +02:00
|
|
|
PathLocks lock;
|
|
|
|
lockProfile(lock, globals.profile);
|
|
|
|
|
2004-02-06 17:16:55 +01:00
|
|
|
int curGen;
|
|
|
|
Generations gens = findGenerations(globals.profile, curGen);
|
2004-02-06 17:03:27 +01:00
|
|
|
|
|
|
|
for (Generations::iterator i = gens.begin(); i != gens.end(); ++i) {
|
|
|
|
tm t;
|
|
|
|
if (!localtime_r(&i->creationTime, &t)) throw Error("cannot convert time");
|
2004-02-06 17:16:55 +01:00
|
|
|
cout << format("%|4| %|4|-%|02|-%|02| %|02|:%|02|:%|02| %||\n")
|
2004-02-06 17:03:27 +01:00
|
|
|
% i->number
|
|
|
|
% (t.tm_year + 1900) % (t.tm_mon + 1) % t.tm_mday
|
2004-02-06 17:16:55 +01:00
|
|
|
% t.tm_hour % t.tm_min % t.tm_sec
|
|
|
|
% (i->number == curGen ? "(current)" : "");
|
2004-02-06 17:03:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-09-10 15:32:08 +02:00
|
|
|
static void deleteGeneration2(const Path & profile, unsigned int gen)
|
|
|
|
{
|
|
|
|
printMsg(lvlInfo, format("removing generation %1%") % gen);
|
|
|
|
deleteGeneration(profile, gen);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void opDeleteGenerations(Globals & globals,
|
2007-09-17 21:24:07 +02:00
|
|
|
Strings args, Strings opFlags, Strings opArgs)
|
2004-09-10 15:32:08 +02:00
|
|
|
{
|
|
|
|
if (opFlags.size() > 0)
|
|
|
|
throw UsageError(format("unknown flag `%1%'") % opFlags.front());
|
|
|
|
|
2006-09-15 00:33:53 +02:00
|
|
|
PathLocks lock;
|
|
|
|
lockProfile(lock, globals.profile);
|
|
|
|
|
2004-09-10 15:32:08 +02:00
|
|
|
int curGen;
|
|
|
|
Generations gens = findGenerations(globals.profile, curGen);
|
|
|
|
|
|
|
|
for (Strings::iterator i = opArgs.begin(); i != opArgs.end(); ++i) {
|
|
|
|
|
|
|
|
if (*i == "old") {
|
|
|
|
for (Generations::iterator j = gens.begin(); j != gens.end(); ++j)
|
|
|
|
if (j->number != curGen)
|
|
|
|
deleteGeneration2(globals.profile, j->number);
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
int n;
|
|
|
|
if (!string2Int(*i, n) || n < 0)
|
|
|
|
throw UsageError(format("invalid generation specifier `%1%'") % *i);
|
|
|
|
bool found = false;
|
|
|
|
for (Generations::iterator j = gens.begin(); j != gens.end(); ++j) {
|
|
|
|
if (j->number == n) {
|
|
|
|
deleteGeneration2(globals.profile, j->number);
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found)
|
|
|
|
printMsg(lvlError, format("generation %1% does not exist") % n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-19 18:27:16 +01:00
|
|
|
void run(Strings args)
|
|
|
|
{
|
2007-09-17 21:24:07 +02:00
|
|
|
Strings opFlags, opArgs, remaining;
|
2003-11-19 18:27:16 +01:00
|
|
|
Operation op = 0;
|
2003-12-21 23:34:41 +01:00
|
|
|
|
|
|
|
Globals globals;
|
2005-02-14 14:07:09 +01:00
|
|
|
|
2005-02-11 17:56:45 +01:00
|
|
|
globals.instSource.type = srcUnknown;
|
|
|
|
globals.instSource.nixExprPath = getDefNixExprPath();
|
|
|
|
globals.instSource.systemFilter = thisSystem;
|
|
|
|
|
2004-02-09 12:59:39 +01:00
|
|
|
globals.dryRun = false;
|
2004-06-28 16:40:26 +02:00
|
|
|
globals.preserveInstalled = false;
|
2003-11-19 18:27:16 +01:00
|
|
|
|
2005-02-14 14:07:09 +01:00
|
|
|
globals.keepDerivations =
|
|
|
|
queryBoolSetting("env-keep-derivations", false);
|
|
|
|
|
2007-01-14 13:32:44 +01:00
|
|
|
for (Strings::iterator i = args.begin(); i != args.end(); ) {
|
|
|
|
string arg = *i++;
|
2003-11-19 18:27:16 +01:00
|
|
|
|
|
|
|
Operation oldOp = op;
|
|
|
|
|
|
|
|
if (arg == "--install" || arg == "-i")
|
|
|
|
op = opInstall;
|
2007-01-14 13:32:44 +01:00
|
|
|
else if (parseOptionArg(arg, i, args.end(),
|
|
|
|
globals.state, globals.instSource.autoArgs))
|
|
|
|
;
|
2006-09-25 16:00:59 +02:00
|
|
|
else if (arg == "--force-name") // undocumented flag for nix-install-package
|
|
|
|
globals.forceName = needArg(i, args, arg);
|
2003-12-21 23:34:41 +01:00
|
|
|
else if (arg == "--uninstall" || arg == "-e")
|
2003-11-20 14:48:48 +01:00
|
|
|
op = opUninstall;
|
2003-12-22 00:58:56 +01:00
|
|
|
else if (arg == "--upgrade" || arg == "-u")
|
|
|
|
op = opUpgrade;
|
2007-02-02 02:52:42 +01:00
|
|
|
else if (arg == "--set-flag")
|
|
|
|
op = opSetFlag;
|
2006-12-12 20:06:02 +01:00
|
|
|
else if (arg == "--set")
|
|
|
|
op = opSet;
|
2003-11-20 14:48:48 +01:00
|
|
|
else if (arg == "--query" || arg == "-q")
|
2003-11-19 18:27:16 +01:00
|
|
|
op = opQuery;
|
2007-02-02 02:52:42 +01:00
|
|
|
else if (arg == "--profile" || arg == "-p")
|
2005-02-14 17:16:02 +01:00
|
|
|
globals.profile = absPath(needArg(i, args, arg));
|
2007-02-02 02:52:42 +01:00
|
|
|
else if (arg == "--file" || arg == "-f")
|
2005-02-14 17:16:02 +01:00
|
|
|
globals.instSource.nixExprPath = absPath(needArg(i, args, arg));
|
2004-02-06 11:30:20 +01:00
|
|
|
else if (arg == "--switch-profile" || arg == "-S")
|
2004-01-05 12:18:59 +01:00
|
|
|
op = opSwitchProfile;
|
2004-02-08 15:07:43 +01:00
|
|
|
else if (arg == "--switch-generation" || arg == "-G")
|
|
|
|
op = opSwitchGeneration;
|
|
|
|
else if (arg == "--rollback")
|
|
|
|
op = opRollback;
|
2004-02-06 17:03:27 +01:00
|
|
|
else if (arg == "--list-generations")
|
|
|
|
op = opListGenerations;
|
2004-09-10 15:32:08 +02:00
|
|
|
else if (arg == "--delete-generations")
|
|
|
|
op = opDeleteGenerations;
|
2004-02-09 12:59:39 +01:00
|
|
|
else if (arg == "--dry-run") {
|
|
|
|
printMsg(lvlInfo, "(dry run; not doing anything)");
|
|
|
|
globals.dryRun = true;
|
|
|
|
}
|
2007-02-02 02:52:42 +01:00
|
|
|
else if (arg == "--system-filter")
|
2005-02-14 17:16:02 +01:00
|
|
|
globals.instSource.systemFilter = needArg(i, args, arg);
|
2007-09-17 21:24:07 +02:00
|
|
|
else {
|
|
|
|
remaining.push_back(arg);
|
2008-09-18 11:08:54 +02:00
|
|
|
if (arg[0] == '-') {
|
2007-09-17 21:24:07 +02:00
|
|
|
opFlags.push_back(arg);
|
2008-09-18 11:08:54 +02:00
|
|
|
if (arg == "--from-profile") { /* !!! hack */
|
|
|
|
if (i != args.end()) opFlags.push_back(*i++);
|
|
|
|
}
|
|
|
|
} else opArgs.push_back(arg);
|
2007-09-17 21:24:07 +02:00
|
|
|
}
|
2003-11-19 18:27:16 +01:00
|
|
|
|
|
|
|
if (oldOp && oldOp != op)
|
|
|
|
throw UsageError("only one operation may be specified");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!op) throw UsageError("no operation specified");
|
|
|
|
|
2004-02-06 11:59:06 +01:00
|
|
|
if (globals.profile == "") {
|
|
|
|
Path profileLink = getHomeDir() + "/.nix-profile";
|
|
|
|
globals.profile = pathExists(profileLink)
|
|
|
|
? absPath(readLink(profileLink), dirOf(profileLink))
|
|
|
|
: canonPath(nixStateDir + "/profiles/default");
|
|
|
|
}
|
|
|
|
|
2006-11-30 18:43:04 +01:00
|
|
|
store = openStore();
|
2003-11-19 18:27:16 +01:00
|
|
|
|
2007-09-17 21:24:07 +02:00
|
|
|
op(globals, remaining, opFlags, opArgs);
|
2003-11-19 18:27:16 +01:00
|
|
|
|
2010-03-31 21:12:08 +02:00
|
|
|
globals.state.printStats();
|
2003-11-19 18:27:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string programId = "nix-env";
|