2016-02-09 20:28:29 +00:00
|
|
|
#include "command.hh"
|
|
|
|
#include "store-api.hh"
|
2017-04-25 11:20:26 +00:00
|
|
|
#include "derivations.hh"
|
2019-07-12 13:32:17 +00:00
|
|
|
#include "profiles.hh"
|
2016-02-09 20:28:29 +00:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2019-06-18 14:01:35 +00:00
|
|
|
Commands * RegisterCommand::commands = nullptr;
|
2016-02-09 20:28:29 +00:00
|
|
|
|
2016-03-21 17:03:36 +00:00
|
|
|
StoreCommand::StoreCommand()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-04-25 09:20:37 +00:00
|
|
|
ref<Store> StoreCommand::getStore()
|
|
|
|
{
|
|
|
|
if (!_store)
|
|
|
|
_store = createStore();
|
|
|
|
return ref<Store>(_store);
|
|
|
|
}
|
|
|
|
|
2017-03-16 13:25:54 +00:00
|
|
|
ref<Store> StoreCommand::createStore()
|
|
|
|
{
|
2017-10-23 17:34:49 +00:00
|
|
|
return openStore();
|
2017-03-16 13:25:54 +00:00
|
|
|
}
|
|
|
|
|
2016-02-09 20:28:29 +00:00
|
|
|
void StoreCommand::run()
|
|
|
|
{
|
2017-09-08 12:46:55 +00:00
|
|
|
run(getStore());
|
2016-02-09 20:28:29 +00:00
|
|
|
}
|
|
|
|
|
2017-09-27 16:28:54 +00:00
|
|
|
StorePathsCommand::StorePathsCommand(bool recursive)
|
|
|
|
: recursive(recursive)
|
2016-03-29 12:29:50 +00:00
|
|
|
{
|
2017-09-27 16:28:54 +00: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 19:14:29 +00:00
|
|
|
mkFlag(0, "all", "apply operation to the entire store", &all);
|
2016-03-29 12:29:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void StorePathsCommand::run(ref<Store> store)
|
|
|
|
{
|
2017-04-25 11:20:26 +00:00
|
|
|
Paths storePaths;
|
|
|
|
|
2016-04-14 19:14:29 +00:00
|
|
|
if (all) {
|
2017-04-25 11:20:26 +00:00
|
|
|
if (installables.size())
|
2017-07-30 11:27:57 +00:00
|
|
|
throw UsageError("'--all' does not expect arguments");
|
2016-04-14 19:14:29 +00:00
|
|
|
for (auto & p : store->queryAllValidPaths())
|
|
|
|
storePaths.push_back(p);
|
|
|
|
}
|
2016-03-29 12:29:50 +00:00
|
|
|
|
2016-04-14 19:14:29 +00:00
|
|
|
else {
|
2018-03-29 22:56:13 +00:00
|
|
|
for (auto & p : toStorePaths(store, realiseMode, installables))
|
2017-04-25 14:19:22 +00:00
|
|
|
storePaths.push_back(p);
|
2016-04-14 19:14:29 +00:00
|
|
|
|
|
|
|
if (recursive) {
|
|
|
|
PathSet closure;
|
2016-11-10 16:45:04 +00:00
|
|
|
store->computeFSClosure(PathSet(storePaths.begin(), storePaths.end()),
|
|
|
|
closure, false, false);
|
2016-05-04 11:36:54 +00:00
|
|
|
storePaths = Paths(closure.begin(), closure.end());
|
2016-04-14 19:14:29 +00:00
|
|
|
}
|
2016-03-29 12:29:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
run(store, storePaths);
|
|
|
|
}
|
|
|
|
|
2017-05-04 12:16:26 +00:00
|
|
|
void StorePathCommand::run(ref<Store> store)
|
|
|
|
{
|
2017-09-10 13:58:30 +00:00
|
|
|
auto storePaths = toStorePaths(store, NoBuild, installables);
|
2017-05-04 12:16:26 +00:00
|
|
|
|
|
|
|
if (storePaths.size() != 1)
|
|
|
|
throw UsageError("this command requires exactly one store path");
|
|
|
|
|
|
|
|
run(store, *storePaths.begin());
|
|
|
|
}
|
|
|
|
|
2019-07-12 13:32:17 +00:00
|
|
|
MixProfile::MixProfile()
|
|
|
|
{
|
|
|
|
mkFlag()
|
|
|
|
.longName("profile")
|
|
|
|
.description("profile to update")
|
|
|
|
.labels({"path"})
|
|
|
|
.dest(&profile);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MixProfile::updateProfile(const Path & storePath)
|
|
|
|
{
|
|
|
|
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 13:59:19 +00:00
|
|
|
auto profile2 = absPath(*profile);
|
|
|
|
switchLink(profile2,
|
2019-07-12 13:32:17 +00:00
|
|
|
createGeneration(
|
|
|
|
ref<LocalFSStore>(store),
|
2019-09-02 13:59:19 +00:00
|
|
|
profile2, storePath));
|
2019-07-12 13:32:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MixProfile::updateProfile(const Buildables & buildables)
|
|
|
|
{
|
|
|
|
if (!profile) return;
|
|
|
|
|
|
|
|
std::optional<Path> result;
|
|
|
|
|
|
|
|
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");
|
|
|
|
result = output.second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!result)
|
|
|
|
throw Error("'--profile' requires that the arguments produce a single store path, but there are none");
|
|
|
|
|
|
|
|
updateProfile(*result);
|
|
|
|
}
|
|
|
|
|
2019-10-21 22:21:58 +00:00
|
|
|
MixDefaultProfile::MixDefaultProfile()
|
|
|
|
{
|
|
|
|
profile = getDefaultProfile();
|
|
|
|
}
|
|
|
|
|
2016-02-09 20:28:29 +00:00
|
|
|
}
|