fix/src/libmain/common-args.hh

51 lines
1.1 KiB
C++
Raw Normal View History

#pragma once
#include "args.hh"
namespace nix {
2021-01-25 19:03:13 +01:00
//static constexpr auto commonArgsCategory = "Miscellaneous common options";
static constexpr auto loggingCategory = "Logging-related options";
class MixCommonArgs : public virtual Args
{
void initialFlagsProcessed() override;
public:
std::string programName;
MixCommonArgs(const std::string & programName);
protected:
virtual void pluginsInited() {}
};
struct MixDryRun : virtual Args
{
2017-04-24 14:21:36 +02:00
bool dryRun = false;
MixDryRun()
{
2021-01-25 19:03:13 +01:00
addFlag({
.longName = "dry-run",
.description = "Show what this command would do without doing it.",
//.category = commonArgsCategory,
.handler = {&dryRun, true},
});
}
};
2017-04-24 14:21:36 +02:00
struct MixJSON : virtual Args
{
bool json = false;
MixJSON()
{
2021-01-25 19:03:13 +01:00
addFlag({
.longName = "json",
.description = "Produce output in JSON format, suitable for consumption by another program.",
//.category = commonArgsCategory,
.handler = {&json, true},
});
2017-04-24 14:21:36 +02:00
}
};
}