2016-02-09 22:28:29 +02:00
|
|
|
#include "command.hh"
|
2023-12-06 15:13:45 +02:00
|
|
|
#include "markdown.hh"
|
2016-02-09 22:28:29 +02:00
|
|
|
#include "store-api.hh"
|
2020-10-09 23:18:08 +03:00
|
|
|
#include "local-fs-store.hh"
|
2017-04-25 14:20:26 +03:00
|
|
|
#include "derivations.hh"
|
2019-11-08 16:13:32 +02:00
|
|
|
#include "nixexpr.hh"
|
2020-03-30 20:14:17 +03:00
|
|
|
#include "profiles.hh"
|
2023-02-04 05:42:36 +02:00
|
|
|
#include "repl.hh"
|
2020-03-30 20:14:17 +03:00
|
|
|
|
2020-08-17 18:44:52 +03:00
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
2020-06-17 05:19:15 +03:00
|
|
|
extern char * * environ __attribute__((weak));
|
2016-02-09 22:28:29 +02:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2020-12-03 18:55:27 +02:00
|
|
|
RegisterCommand::Commands * RegisterCommand::commands = nullptr;
|
|
|
|
|
|
|
|
nix::Commands RegisterCommand::getCommandsFor(const std::vector<std::string> & prefix)
|
|
|
|
{
|
|
|
|
nix::Commands res;
|
|
|
|
for (auto & [name, command] : *RegisterCommand::commands)
|
|
|
|
if (name.size() == prefix.size() + 1) {
|
|
|
|
bool equal = true;
|
|
|
|
for (size_t i = 0; i < prefix.size(); ++i)
|
|
|
|
if (name[i] != prefix[i]) equal = false;
|
|
|
|
if (equal)
|
|
|
|
res.insert_or_assign(name[prefix.size()], command);
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
2016-02-09 22:28:29 +02:00
|
|
|
|
2020-08-17 18:44:52 +03:00
|
|
|
nlohmann::json NixMultiCommand::toJSON()
|
|
|
|
{
|
|
|
|
// FIXME: use Command::toJSON() as well.
|
|
|
|
return MultiCommand::toJSON();
|
|
|
|
}
|
2016-02-09 22:28:29 +02:00
|
|
|
|
2023-12-06 15:13:45 +02:00
|
|
|
void NixMultiCommand::run()
|
|
|
|
{
|
|
|
|
if (!command) {
|
|
|
|
std::set<std::string> subCommandTextLines;
|
|
|
|
for (auto & [name, _] : commands)
|
|
|
|
subCommandTextLines.insert(fmt("- `%s`", name));
|
|
|
|
std::string markdownError = fmt("`nix %s` requires a sub-command. Available sub-commands:\n\n%s\n",
|
|
|
|
commandName, concatStringsSep("\n", subCommandTextLines));
|
|
|
|
throw UsageError(renderMarkdownToTerminal(markdownError));
|
|
|
|
}
|
|
|
|
command->second->run();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-01-17 20:45:21 +02:00
|
|
|
CopyCommand::CopyCommand()
|
|
|
|
{
|
|
|
|
addFlag({
|
|
|
|
.longName = "from",
|
|
|
|
.description = "URL of the source Nix store.",
|
|
|
|
.labels = {"store-uri"},
|
|
|
|
.handler = {&srcUri},
|
|
|
|
});
|
|
|
|
|
|
|
|
addFlag({
|
|
|
|
.longName = "to",
|
|
|
|
.description = "URL of the destination Nix store.",
|
|
|
|
.labels = {"store-uri"},
|
|
|
|
.handler = {&dstUri},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
ref<Store> CopyCommand::createStore()
|
|
|
|
{
|
|
|
|
return srcUri.empty() ? StoreCommand::createStore() : openStore(srcUri);
|
|
|
|
}
|
|
|
|
|
|
|
|
ref<Store> CopyCommand::getDstStore()
|
|
|
|
{
|
|
|
|
if (srcUri.empty() && dstUri.empty())
|
|
|
|
throw UsageError("you must pass '--from' and/or '--to'");
|
|
|
|
|
|
|
|
return dstUri.empty() ? openStore() : openStore(dstUri);
|
|
|
|
}
|
|
|
|
|
2020-08-05 22:26:17 +03:00
|
|
|
EvalCommand::EvalCommand()
|
|
|
|
{
|
|
|
|
addFlag({
|
2021-02-01 16:50:58 +02:00
|
|
|
.longName = "debugger",
|
2022-10-12 16:09:00 +03:00
|
|
|
.description = "Start an interactive environment if evaluation fails.",
|
|
|
|
.category = MixEvalArgs::category,
|
2020-08-05 22:26:17 +03:00
|
|
|
.handler = {&startReplOnEvalErrors, true},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-06-29 22:09:48 +03:00
|
|
|
EvalCommand::~EvalCommand()
|
|
|
|
{
|
|
|
|
if (evalState)
|
2023-10-09 17:25:53 +03:00
|
|
|
evalState->maybePrintStats();
|
2021-06-29 22:09:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ref<Store> EvalCommand::getEvalStore()
|
|
|
|
{
|
|
|
|
if (!evalStore)
|
|
|
|
evalStore = evalStoreUrl ? openStore(*evalStoreUrl) : getStore();
|
|
|
|
return ref<Store>(evalStore);
|
|
|
|
}
|
|
|
|
|
2021-04-29 00:50:11 +03:00
|
|
|
ref<EvalState> EvalCommand::getEvalState()
|
|
|
|
{
|
|
|
|
if (!evalState) {
|
2022-01-04 03:13:16 +02:00
|
|
|
evalState =
|
2022-01-17 14:58:26 +02:00
|
|
|
#if HAVE_BOEHMGC
|
2022-01-04 03:13:16 +02:00
|
|
|
std::allocate_shared<EvalState>(traceable_allocator<EvalState>(),
|
2024-04-13 18:35:15 +03:00
|
|
|
lookupPath, getEvalStore(), getStore())
|
2022-01-17 14:58:26 +02:00
|
|
|
#else
|
2022-01-04 03:13:16 +02:00
|
|
|
std::make_shared<EvalState>(
|
2024-04-13 18:35:15 +03:00
|
|
|
lookupPath, getEvalStore(), getStore())
|
2022-01-17 14:58:26 +02:00
|
|
|
#endif
|
|
|
|
;
|
2022-05-20 02:01:23 +03:00
|
|
|
|
2023-04-28 17:57:37 +03:00
|
|
|
evalState->repair = repair;
|
|
|
|
|
2022-05-20 19:33:50 +03:00
|
|
|
if (startReplOnEvalErrors) {
|
2023-02-04 05:42:36 +02:00
|
|
|
evalState->debugRepl = &AbstractNixRepl::runSimple;
|
2022-06-02 19:26:46 +03:00
|
|
|
};
|
2021-04-29 00:50:11 +03:00
|
|
|
}
|
|
|
|
return ref<EvalState>(evalState);
|
|
|
|
}
|
|
|
|
|
2023-02-05 01:27:17 +02:00
|
|
|
MixOperateOnOptions::MixOperateOnOptions()
|
|
|
|
{
|
|
|
|
addFlag({
|
|
|
|
.longName = "derivation",
|
2024-04-12 18:06:47 +03:00
|
|
|
.description = "Operate on the [store derivation](@docroot@/glossary.md#gloss-store-derivation) rather than its outputs.",
|
2023-02-05 01:27:17 +02:00
|
|
|
.category = installablesCategory,
|
|
|
|
.handler = {&operateOn, OperateOn::Derivation},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-05-17 09:45:08 +03:00
|
|
|
BuiltPathsCommand::BuiltPathsCommand(bool recursive)
|
2017-09-27 19:28:54 +03:00
|
|
|
: recursive(recursive)
|
2016-03-29 15:29:50 +03:00
|
|
|
{
|
2017-09-27 19:28:54 +03:00
|
|
|
if (recursive)
|
2020-05-04 23:40:19 +03:00
|
|
|
addFlag({
|
|
|
|
.longName = "no-recursive",
|
2021-01-13 15:18:04 +02:00
|
|
|
.description = "Apply operation to specified paths only.",
|
2021-01-25 20:03:13 +02:00
|
|
|
.category = installablesCategory,
|
2020-05-04 23:40:19 +03:00
|
|
|
.handler = {&this->recursive, false},
|
|
|
|
});
|
2017-09-27 19:28:54 +03:00
|
|
|
else
|
2020-05-04 23:40:19 +03:00
|
|
|
addFlag({
|
|
|
|
.longName = "recursive",
|
|
|
|
.shortName = 'r',
|
2021-01-13 15:18:04 +02:00
|
|
|
.description = "Apply operation to closure of the specified paths.",
|
2021-01-25 20:03:13 +02:00
|
|
|
.category = installablesCategory,
|
2020-05-04 23:40:19 +03:00
|
|
|
.handler = {&this->recursive, true},
|
|
|
|
});
|
2017-09-27 19:28:54 +03:00
|
|
|
|
2021-01-25 20:03:13 +02:00
|
|
|
addFlag({
|
|
|
|
.longName = "all",
|
|
|
|
.description = "Apply the operation to every store path.",
|
|
|
|
.category = installablesCategory,
|
|
|
|
.handler = {&all, true},
|
|
|
|
});
|
2016-03-29 15:29:50 +03:00
|
|
|
}
|
|
|
|
|
Make command infra less stateful and more regular
Already, we had classes like `BuiltPathsCommand` and `StorePathsCommand`
which provided alternative `run` virtual functions providing the
implementation with more arguments. This was a very nice and easy way to
make writing command; just fill in the virtual functions and it is
fairly clear what to do.
However, exception to this pattern were `Installable{,s}Command`. These
two classes instead just had a field where the installables would be
stored, and various side-effecting `prepare` and `load` machinery too
fill them in. Command would wish out those fields.
This isn't so clear to use.
What this commit does is make those command classes like the others,
with richer `run` functions.
Not only does this restore the pattern making commands easier to write,
it has a number of other benefits:
- `prepare` and `load` are gone entirely! One command just hands just
hands off to the next.
- `useDefaultInstallables` because `defaultInstallables`. This takes
over `prepare` for the one case that needs it, and provides enough
flexiblity to handle `nix repl`'s idiosyncratic migration.
- We can use `ref` instead of `std::shared_ptr`. The former must be
initialized (so it is like Rust's `Box` rather than `Option<Box>`,
This expresses the invariant that the installable are in fact
initialized much better.
This is possible because since we just have local variables not
fields, we can stop worrying about the not-yet-initialized case.
- Fewer lines of code! (Finally I have a large refactor that makes the
number go down not up...)
- `nix repl` is now implemented in a clearer way.
The last item deserves further mention. `nix repl` is not like the other
installable commands because instead working from once-loaded
installables, it needs to be able to load them again and again.
To properly support this, we make a new superclass
`RawInstallablesCommand`. This class has the argument parsing and
completion logic, but does *not* hand off parsed installables but
instead just the raw string arguments.
This is exactly what `nix repl` needs, and allows us to instead of
having the logic awkwardly split between `prepare`,
`useDefaultInstallables,` and `load`, have everything right next to each
other. I think this will enable future simplifications of that argument
defaulting logic, but I am saving those for a future PR --- best to keep
code motion and more complicated boolean expression rewriting separate
steps.
The "diagnostic ignored `-Woverloaded-virtual`" pragma helps because C++
doesn't like our many `run` methods. In our case, we don't mind the
shadowing it all --- it is *intentional* that the derived class only
provides a `run` method, and doesn't call any of the overridden `run`
methods.
Helps with https://github.com/NixOS/rfcs/pull/134
2023-02-04 19:03:47 +02:00
|
|
|
void BuiltPathsCommand::run(ref<Store> store, Installables && installables)
|
2016-03-29 15:29:50 +03:00
|
|
|
{
|
2021-05-17 09:45:08 +03:00
|
|
|
BuiltPaths paths;
|
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");
|
2020-12-14 18:24:30 +02:00
|
|
|
// XXX: Only uses opaque paths, ignores all the realisations
|
2016-04-14 22:14:29 +03:00
|
|
|
for (auto & p : store->queryAllValidPaths())
|
2023-11-03 12:58:47 +02:00
|
|
|
paths.emplace_back(BuiltPath::Opaque{p});
|
2020-12-14 18:24:30 +02:00
|
|
|
} else {
|
2022-03-02 14:54:08 +02:00
|
|
|
paths = Installable::toBuiltPaths(getEvalStore(), store, realiseMode, operateOn, installables);
|
2016-04-14 22:14:29 +03:00
|
|
|
if (recursive) {
|
2021-05-17 09:45:08 +03:00
|
|
|
// XXX: This only computes the store path closure, ignoring
|
|
|
|
// intermediate realisations
|
|
|
|
StorePathSet pathsRoots, pathsClosure;
|
2021-09-27 11:57:11 +03:00
|
|
|
for (auto & root : paths) {
|
2021-05-17 09:45:08 +03:00
|
|
|
auto rootFromThis = root.outPaths();
|
|
|
|
pathsRoots.insert(rootFromThis.begin(), rootFromThis.end());
|
|
|
|
}
|
|
|
|
store->computeFSClosure(pathsRoots, pathsClosure);
|
|
|
|
for (auto & path : pathsClosure)
|
2023-11-03 12:58:47 +02:00
|
|
|
paths.emplace_back(BuiltPath::Opaque{path});
|
2016-04-14 22:14:29 +03:00
|
|
|
}
|
2016-03-29 15:29:50 +03:00
|
|
|
}
|
|
|
|
|
2020-12-14 18:24:30 +02:00
|
|
|
run(store, std::move(paths));
|
|
|
|
}
|
|
|
|
|
|
|
|
StorePathsCommand::StorePathsCommand(bool recursive)
|
2021-05-17 09:45:08 +03:00
|
|
|
: BuiltPathsCommand(recursive)
|
2020-12-14 18:24:30 +02:00
|
|
|
{
|
2016-03-29 15:29:50 +03:00
|
|
|
}
|
|
|
|
|
2021-09-27 11:53:09 +03:00
|
|
|
void StorePathsCommand::run(ref<Store> store, BuiltPaths && paths)
|
2017-05-04 15:16:26 +03:00
|
|
|
{
|
2021-09-27 11:57:11 +03:00
|
|
|
StorePathSet storePaths;
|
|
|
|
for (auto & builtPath : paths)
|
|
|
|
for (auto & p : builtPath.outPaths())
|
|
|
|
storePaths.insert(p);
|
2020-12-14 18:24:30 +02:00
|
|
|
|
2021-09-27 11:57:11 +03:00
|
|
|
auto sorted = store->topoSortPaths(storePaths);
|
|
|
|
std::reverse(sorted.begin(), sorted.end());
|
2017-05-04 15:16:26 +03:00
|
|
|
|
2021-09-27 11:57:11 +03:00
|
|
|
run(store, std::move(sorted));
|
2016-03-29 15:29:50 +03:00
|
|
|
}
|
|
|
|
|
Make command infra less stateful and more regular
Already, we had classes like `BuiltPathsCommand` and `StorePathsCommand`
which provided alternative `run` virtual functions providing the
implementation with more arguments. This was a very nice and easy way to
make writing command; just fill in the virtual functions and it is
fairly clear what to do.
However, exception to this pattern were `Installable{,s}Command`. These
two classes instead just had a field where the installables would be
stored, and various side-effecting `prepare` and `load` machinery too
fill them in. Command would wish out those fields.
This isn't so clear to use.
What this commit does is make those command classes like the others,
with richer `run` functions.
Not only does this restore the pattern making commands easier to write,
it has a number of other benefits:
- `prepare` and `load` are gone entirely! One command just hands just
hands off to the next.
- `useDefaultInstallables` because `defaultInstallables`. This takes
over `prepare` for the one case that needs it, and provides enough
flexiblity to handle `nix repl`'s idiosyncratic migration.
- We can use `ref` instead of `std::shared_ptr`. The former must be
initialized (so it is like Rust's `Box` rather than `Option<Box>`,
This expresses the invariant that the installable are in fact
initialized much better.
This is possible because since we just have local variables not
fields, we can stop worrying about the not-yet-initialized case.
- Fewer lines of code! (Finally I have a large refactor that makes the
number go down not up...)
- `nix repl` is now implemented in a clearer way.
The last item deserves further mention. `nix repl` is not like the other
installable commands because instead working from once-loaded
installables, it needs to be able to load them again and again.
To properly support this, we make a new superclass
`RawInstallablesCommand`. This class has the argument parsing and
completion logic, but does *not* hand off parsed installables but
instead just the raw string arguments.
This is exactly what `nix repl` needs, and allows us to instead of
having the logic awkwardly split between `prepare`,
`useDefaultInstallables,` and `load`, have everything right next to each
other. I think this will enable future simplifications of that argument
defaulting logic, but I am saving those for a future PR --- best to keep
code motion and more complicated boolean expression rewriting separate
steps.
The "diagnostic ignored `-Woverloaded-virtual`" pragma helps because C++
doesn't like our many `run` methods. In our case, we don't mind the
shadowing it all --- it is *intentional* that the derived class only
provides a `run` method, and doesn't call any of the overridden `run`
methods.
Helps with https://github.com/NixOS/rfcs/pull/134
2023-02-04 19:03:47 +02:00
|
|
|
void StorePathCommand::run(ref<Store> store, StorePaths && storePaths)
|
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());
|
|
|
|
}
|
|
|
|
|
2020-03-30 20:14:17 +03:00
|
|
|
MixProfile::MixProfile()
|
|
|
|
{
|
2020-05-04 23:40:19 +03:00
|
|
|
addFlag({
|
|
|
|
.longName = "profile",
|
2022-10-24 09:49:46 +03:00
|
|
|
.description = "The profile to operate on.",
|
2020-05-04 23:40:19 +03:00
|
|
|
.labels = {"path"},
|
|
|
|
.handler = {&profile},
|
2020-05-10 22:35:07 +03:00
|
|
|
.completer = completePath
|
2020-05-04 23:40:19 +03:00
|
|
|
});
|
2020-03-30 20:14:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void MixProfile::updateProfile(const StorePath & storePath)
|
|
|
|
{
|
|
|
|
if (!profile) return;
|
|
|
|
auto store = getStore().dynamic_pointer_cast<LocalFSStore>();
|
|
|
|
if (!store) throw Error("'--profile' is not supported for this Nix store");
|
|
|
|
auto profile2 = absPath(*profile);
|
|
|
|
switchLink(profile2,
|
2023-06-19 07:04:59 +03:00
|
|
|
createGeneration(*store, profile2, storePath));
|
2020-03-30 20:14:17 +03:00
|
|
|
}
|
|
|
|
|
2021-05-12 17:19:51 +03:00
|
|
|
void MixProfile::updateProfile(const BuiltPaths & buildables)
|
2020-03-30 20:14:17 +03:00
|
|
|
{
|
|
|
|
if (!profile) return;
|
|
|
|
|
Make command infra less stateful and more regular
Already, we had classes like `BuiltPathsCommand` and `StorePathsCommand`
which provided alternative `run` virtual functions providing the
implementation with more arguments. This was a very nice and easy way to
make writing command; just fill in the virtual functions and it is
fairly clear what to do.
However, exception to this pattern were `Installable{,s}Command`. These
two classes instead just had a field where the installables would be
stored, and various side-effecting `prepare` and `load` machinery too
fill them in. Command would wish out those fields.
This isn't so clear to use.
What this commit does is make those command classes like the others,
with richer `run` functions.
Not only does this restore the pattern making commands easier to write,
it has a number of other benefits:
- `prepare` and `load` are gone entirely! One command just hands just
hands off to the next.
- `useDefaultInstallables` because `defaultInstallables`. This takes
over `prepare` for the one case that needs it, and provides enough
flexiblity to handle `nix repl`'s idiosyncratic migration.
- We can use `ref` instead of `std::shared_ptr`. The former must be
initialized (so it is like Rust's `Box` rather than `Option<Box>`,
This expresses the invariant that the installable are in fact
initialized much better.
This is possible because since we just have local variables not
fields, we can stop worrying about the not-yet-initialized case.
- Fewer lines of code! (Finally I have a large refactor that makes the
number go down not up...)
- `nix repl` is now implemented in a clearer way.
The last item deserves further mention. `nix repl` is not like the other
installable commands because instead working from once-loaded
installables, it needs to be able to load them again and again.
To properly support this, we make a new superclass
`RawInstallablesCommand`. This class has the argument parsing and
completion logic, but does *not* hand off parsed installables but
instead just the raw string arguments.
This is exactly what `nix repl` needs, and allows us to instead of
having the logic awkwardly split between `prepare`,
`useDefaultInstallables,` and `load`, have everything right next to each
other. I think this will enable future simplifications of that argument
defaulting logic, but I am saving those for a future PR --- best to keep
code motion and more complicated boolean expression rewriting separate
steps.
The "diagnostic ignored `-Woverloaded-virtual`" pragma helps because C++
doesn't like our many `run` methods. In our case, we don't mind the
shadowing it all --- it is *intentional* that the derived class only
provides a `run` method, and doesn't call any of the overridden `run`
methods.
Helps with https://github.com/NixOS/rfcs/pull/134
2023-02-04 19:03:47 +02:00
|
|
|
StorePaths result;
|
2020-03-30 20:14:17 +03:00
|
|
|
|
|
|
|
for (auto & buildable : buildables) {
|
2020-07-23 22:02:57 +03:00
|
|
|
std::visit(overloaded {
|
2021-10-01 00:31:21 +03:00
|
|
|
[&](const BuiltPath::Opaque & bo) {
|
2020-08-05 19:27:15 +03:00
|
|
|
result.push_back(bo.path);
|
2020-07-23 22:02:57 +03:00
|
|
|
},
|
2021-10-01 00:31:21 +03:00
|
|
|
[&](const BuiltPath::Built & bfd) {
|
2020-07-23 22:02:57 +03:00
|
|
|
for (auto & output : bfd.outputs) {
|
2021-05-17 09:45:08 +03:00
|
|
|
result.push_back(output.second);
|
2020-07-23 22:02:57 +03:00
|
|
|
}
|
|
|
|
},
|
2021-04-05 17:05:21 +03:00
|
|
|
}, buildable.raw());
|
2020-03-30 20:14:17 +03:00
|
|
|
}
|
|
|
|
|
2020-08-05 19:27:15 +03:00
|
|
|
if (result.size() != 1)
|
2021-06-30 00:28:43 +03:00
|
|
|
throw UsageError("'--profile' requires that the arguments produce a single store path, but there are %d", result.size());
|
2020-03-30 20:14:17 +03:00
|
|
|
|
2020-08-05 19:27:15 +03:00
|
|
|
updateProfile(result[0]);
|
2020-03-30 20:14:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
MixDefaultProfile::MixDefaultProfile()
|
|
|
|
{
|
|
|
|
profile = getDefaultProfile();
|
|
|
|
}
|
|
|
|
|
2020-05-04 23:40:19 +03:00
|
|
|
MixEnvironment::MixEnvironment() : ignoreEnvironment(false)
|
|
|
|
{
|
|
|
|
addFlag({
|
|
|
|
.longName = "ignore-environment",
|
|
|
|
.shortName = 'i',
|
2021-01-13 15:18:04 +02:00
|
|
|
.description = "Clear the entire environment (except those specified with `--keep`).",
|
2020-05-04 23:40:19 +03:00
|
|
|
.handler = {&ignoreEnvironment, true},
|
|
|
|
});
|
|
|
|
|
|
|
|
addFlag({
|
|
|
|
.longName = "keep",
|
|
|
|
.shortName = 'k',
|
2021-01-13 15:18:04 +02:00
|
|
|
.description = "Keep the environment variable *name*.",
|
2020-05-04 23:40:19 +03:00
|
|
|
.labels = {"name"},
|
|
|
|
.handler = {[&](std::string s) { keep.insert(s); }},
|
|
|
|
});
|
|
|
|
|
|
|
|
addFlag({
|
|
|
|
.longName = "unset",
|
|
|
|
.shortName = 'u',
|
2021-01-13 15:18:04 +02:00
|
|
|
.description = "Unset the environment variable *name*.",
|
2020-05-04 23:40:19 +03:00
|
|
|
.labels = {"name"},
|
|
|
|
.handler = {[&](std::string s) { unset.insert(s); }},
|
|
|
|
});
|
2020-03-30 20:14:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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());
|
|
|
|
if (val) stringsEnv.emplace_back(fmt("%s=%s", var.c_str(), val));
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|