2016-02-09 22:28:29 +02:00
|
|
|
#include "command.hh"
|
|
|
|
#include "store-api.hh"
|
2017-04-25 14:20:26 +03:00
|
|
|
#include "derivations.hh"
|
2019-11-08 16:13:32 +02:00
|
|
|
#include "nixexpr.hh"
|
2019-07-12 16:32:17 +03:00
|
|
|
#include "profiles.hh"
|
2016-02-09 22:28:29 +02:00
|
|
|
|
2019-12-04 01:36:04 +02:00
|
|
|
extern char * * environ;
|
|
|
|
|
2016-02-09 22:28:29 +02:00
|
|
|
namespace nix {
|
|
|
|
|
2019-06-18 17:01:35 +03:00
|
|
|
Commands * RegisterCommand::commands = nullptr;
|
2016-02-09 22:28:29 +02:00
|
|
|
|
2016-03-21 19:03:36 +02:00
|
|
|
StoreCommand::StoreCommand()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-04-25 12:20:37 +03:00
|
|
|
ref<Store> StoreCommand::getStore()
|
|
|
|
{
|
|
|
|
if (!_store)
|
|
|
|
_store = createStore();
|
|
|
|
return ref<Store>(_store);
|
|
|
|
}
|
|
|
|
|
2017-03-16 15:25:54 +02:00
|
|
|
ref<Store> StoreCommand::createStore()
|
|
|
|
{
|
2017-10-23 20:34:49 +03:00
|
|
|
return openStore();
|
2017-03-16 15:25:54 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 22:28:29 +02:00
|
|
|
void StoreCommand::run()
|
|
|
|
{
|
2017-09-08 15:46:55 +03:00
|
|
|
run(getStore());
|
2016-02-09 22:28:29 +02:00
|
|
|
}
|
|
|
|
|
2017-09-27 19:28:54 +03:00
|
|
|
StorePathsCommand::StorePathsCommand(bool recursive)
|
|
|
|
: recursive(recursive)
|
2016-03-29 15:29:50 +03:00
|
|
|
{
|
2017-09-27 19:28:54 +03:00
|
|
|
if (recursive)
|
|
|
|
mkFlag()
|
|
|
|
.longName("no-recursive")
|
|
|
|
.description("apply operation to specified paths only")
|
|
|
|
.set(&this->recursive, false);
|
|
|
|
else
|
|
|
|
mkFlag()
|
|
|
|
.longName("recursive")
|
|
|
|
.shortName('r')
|
|
|
|
.description("apply operation to closure of the specified paths")
|
|
|
|
.set(&this->recursive, true);
|
|
|
|
|
2016-04-14 22:14:29 +03:00
|
|
|
mkFlag(0, "all", "apply operation to the entire store", &all);
|
2016-03-29 15:29:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void StorePathsCommand::run(ref<Store> store)
|
|
|
|
{
|
2019-12-05 20:11:09 +02:00
|
|
|
StorePaths storePaths;
|
2017-04-25 14:20:26 +03:00
|
|
|
|
2016-04-14 22:14:29 +03:00
|
|
|
if (all) {
|
2017-04-25 14:20:26 +03:00
|
|
|
if (installables.size())
|
2017-07-30 14:27:57 +03:00
|
|
|
throw UsageError("'--all' does not expect arguments");
|
2016-04-14 22:14:29 +03:00
|
|
|
for (auto & p : store->queryAllValidPaths())
|
2019-12-05 20:11:09 +02:00
|
|
|
storePaths.push_back(p.clone());
|
2016-04-14 22:14:29 +03:00
|
|
|
}
|
2016-03-29 15:29:50 +03:00
|
|
|
|
2016-04-14 22:14:29 +03:00
|
|
|
else {
|
2018-03-30 01:56:13 +03:00
|
|
|
for (auto & p : toStorePaths(store, realiseMode, installables))
|
2019-12-05 20:11:09 +02:00
|
|
|
storePaths.push_back(p.clone());
|
2016-04-14 22:14:29 +03:00
|
|
|
|
|
|
|
if (recursive) {
|
2019-12-05 20:11:09 +02:00
|
|
|
StorePathSet closure;
|
|
|
|
store->computeFSClosure(storePathsToSet(storePaths), closure, false, false);
|
|
|
|
storePaths.clear();
|
|
|
|
for (auto & p : closure)
|
|
|
|
storePaths.push_back(p.clone());
|
2016-04-14 22:14:29 +03:00
|
|
|
}
|
2016-03-29 15:29:50 +03:00
|
|
|
}
|
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
run(store, std::move(storePaths));
|
2016-03-29 15:29:50 +03:00
|
|
|
}
|
|
|
|
|
2017-05-04 15:16:26 +03:00
|
|
|
void StorePathCommand::run(ref<Store> store)
|
|
|
|
{
|
2017-09-10 16:58:30 +03:00
|
|
|
auto storePaths = toStorePaths(store, NoBuild, installables);
|
2017-05-04 15:16:26 +03:00
|
|
|
|
|
|
|
if (storePaths.size() != 1)
|
|
|
|
throw UsageError("this command requires exactly one store path");
|
|
|
|
|
|
|
|
run(store, *storePaths.begin());
|
|
|
|
}
|
|
|
|
|
2019-11-08 16:13:32 +02:00
|
|
|
Strings editorFor(const Pos & pos)
|
|
|
|
{
|
2019-11-22 17:06:44 +02:00
|
|
|
auto editor = getEnv("EDITOR").value_or("cat");
|
2019-11-08 16:13:32 +02:00
|
|
|
auto args = tokenizeString<Strings>(editor);
|
|
|
|
if (pos.line > 0 && (
|
|
|
|
editor.find("emacs") != std::string::npos ||
|
|
|
|
editor.find("nano") != std::string::npos ||
|
|
|
|
editor.find("vim") != std::string::npos))
|
|
|
|
args.push_back(fmt("+%d", pos.line));
|
|
|
|
args.push_back(pos.file);
|
|
|
|
return args;
|
|
|
|
}
|
|
|
|
|
2019-07-12 16:32:17 +03:00
|
|
|
MixProfile::MixProfile()
|
|
|
|
{
|
|
|
|
mkFlag()
|
|
|
|
.longName("profile")
|
|
|
|
.description("profile to update")
|
|
|
|
.labels({"path"})
|
|
|
|
.dest(&profile);
|
|
|
|
}
|
|
|
|
|
2019-12-11 15:53:30 +02:00
|
|
|
void MixProfile::updateProfile(const StorePath & storePath)
|
2019-07-12 16:32:17 +03:00
|
|
|
{
|
|
|
|
if (!profile) return;
|
|
|
|
auto store = getStore().dynamic_pointer_cast<LocalFSStore>();
|
|
|
|
if (!store) throw Error("'--profile' is not supported for this Nix store");
|
2019-09-02 16:59:19 +03:00
|
|
|
auto profile2 = absPath(*profile);
|
|
|
|
switchLink(profile2,
|
2019-07-12 16:32:17 +03:00
|
|
|
createGeneration(
|
|
|
|
ref<LocalFSStore>(store),
|
2019-12-11 15:53:30 +02:00
|
|
|
profile2, store->printStorePath(storePath)));
|
2019-07-12 16:32:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void MixProfile::updateProfile(const Buildables & buildables)
|
|
|
|
{
|
|
|
|
if (!profile) return;
|
|
|
|
|
2019-12-11 15:53:30 +02:00
|
|
|
std::optional<StorePath> result;
|
2019-07-12 16:32:17 +03:00
|
|
|
|
|
|
|
for (auto & buildable : buildables) {
|
|
|
|
for (auto & output : buildable.outputs) {
|
|
|
|
if (result)
|
|
|
|
throw Error("'--profile' requires that the arguments produce a single store path, but there are multiple");
|
2019-12-11 15:53:30 +02:00
|
|
|
result = output.second.clone();
|
2019-07-12 16:32:17 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!result)
|
|
|
|
throw Error("'--profile' requires that the arguments produce a single store path, but there are none");
|
|
|
|
|
|
|
|
updateProfile(*result);
|
|
|
|
}
|
|
|
|
|
2019-10-22 01:21:58 +03:00
|
|
|
MixDefaultProfile::MixDefaultProfile()
|
|
|
|
{
|
|
|
|
profile = getDefaultProfile();
|
|
|
|
}
|
|
|
|
|
2019-11-08 01:16:48 +02:00
|
|
|
MixEnvironment::MixEnvironment() : ignoreEnvironment(false) {
|
|
|
|
mkFlag()
|
|
|
|
.longName("ignore-environment")
|
|
|
|
.shortName('i')
|
|
|
|
.description("clear the entire environment (except those specified with --keep)")
|
|
|
|
.set(&ignoreEnvironment, true);
|
|
|
|
|
|
|
|
mkFlag()
|
|
|
|
.longName("keep")
|
|
|
|
.shortName('k')
|
|
|
|
.description("keep specified environment variable")
|
|
|
|
.arity(1)
|
|
|
|
.labels({"name"})
|
|
|
|
.handler([&](std::vector<std::string> ss) { keep.insert(ss.front()); });
|
|
|
|
|
|
|
|
mkFlag()
|
|
|
|
.longName("unset")
|
|
|
|
.shortName('u')
|
|
|
|
.description("unset specified environment variable")
|
|
|
|
.arity(1)
|
|
|
|
.labels({"name"})
|
|
|
|
.handler([&](std::vector<std::string> ss) { unset.insert(ss.front()); });
|
|
|
|
}
|
|
|
|
|
|
|
|
void MixEnvironment::setEnviron() {
|
|
|
|
if (ignoreEnvironment) {
|
|
|
|
if (!unset.empty())
|
|
|
|
throw UsageError("--unset does not make sense with --ignore-environment");
|
|
|
|
|
|
|
|
for (const auto & var : keep) {
|
|
|
|
auto val = getenv(var.c_str());
|
2019-12-02 03:34:59 +02:00
|
|
|
if (val) stringsEnv.emplace_back(fmt("%s=%s", var.c_str(), val));
|
2019-11-08 01:16:48 +02:00
|
|
|
}
|
2019-12-04 01:36:04 +02:00
|
|
|
|
2019-11-08 01:16:48 +02:00
|
|
|
vectorEnv = stringsToCharPtrs(stringsEnv);
|
|
|
|
environ = vectorEnv.data();
|
|
|
|
} else {
|
|
|
|
if (!keep.empty())
|
|
|
|
throw UsageError("--keep does not make sense without --ignore-environment");
|
|
|
|
|
|
|
|
for (const auto & var : unset)
|
|
|
|
unsetenv(var.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-09 22:28:29 +02:00
|
|
|
}
|