mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
98d1b64400
This is technically a breaking change, since attempting to set plugin files after the first non-flag argument will now throw an error. This is acceptable given the relative lack of stability in a plugin interface and the need to tie the knot somewhere once plugins can actually define new subcommands.
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include "args.hh"
|
|
|
|
namespace nix {
|
|
|
|
//static constexpr auto commonArgsCategory = "Miscellaneous common options";
|
|
static constexpr auto loggingCategory = "Logging-related options";
|
|
|
|
class MixCommonArgs : public virtual Args
|
|
{
|
|
void initialFlagsProcessed() override;
|
|
public:
|
|
string programName;
|
|
MixCommonArgs(const string & programName);
|
|
protected:
|
|
virtual void pluginsInited() {}
|
|
};
|
|
|
|
struct MixDryRun : virtual Args
|
|
{
|
|
bool dryRun = false;
|
|
|
|
MixDryRun()
|
|
{
|
|
addFlag({
|
|
.longName = "dry-run",
|
|
.description = "Show what this command would do without doing it.",
|
|
//.category = commonArgsCategory,
|
|
.handler = {&dryRun, true},
|
|
});
|
|
}
|
|
};
|
|
|
|
struct MixJSON : virtual Args
|
|
{
|
|
bool json = false;
|
|
|
|
MixJSON()
|
|
{
|
|
addFlag({
|
|
.longName = "json",
|
|
.description = "Produce output in JSON format, suitable for consumption by another program.",
|
|
//.category = commonArgsCategory,
|
|
.handler = {&json, true},
|
|
});
|
|
}
|
|
};
|
|
|
|
}
|