Nix 2.93.3
Lix: A modern, delicious implementation of the Nix package manager; unstable internal interfaces
Loading...
Searching...
No Matches
nix::MultiCommand Class Reference

#include <args.hh>

Inheritance diagram for nix::MultiCommand:
nix::Command nix::Args nix::CmdConfig nix::CmdDerivation nix::CmdFlake nix::CmdHash nix::CmdKey nix::CmdNar nix::CmdProfile nix::CmdRealisation nix::CmdRegistry nix::CmdStore nix::NixArgs

Public Member Functions

 MultiCommand (const CommandMap &commands, bool allowExternal=false)
bool processFlag (Strings::iterator &pos, Strings::iterator end) override
bool processArgs (const Strings &args, bool finish) override
JSON toJSON () override
Public Member Functions inherited from nix::Command
virtual void run ()=0
virtual std::optional< ExperimentalFeatureexperimentalFeature ()
virtual Category category ()
Public Member Functions inherited from nix::Args
virtual std::string description ()
virtual bool forceImpureByDefault ()
virtual std::string doc ()
virtual AsyncIoRootaio ()=0
void addFlag (Flag &&flag)
void removeFlag (const std::string &longName)
void expectArgs (ExpectedArg &&arg)
void expectArg (const std::string &label, std::string *dest, bool optional=false)
void expectArgs (const std::string &label, std::vector< std::string > *dest)
RootArgs & getRoot ()

Public Attributes

CommandMap commands
Strings customCommandSearchPaths
bool isExternalSubcommand
std::map< Command::Category, std::string > categories
std::optional< std::pair< std::string, ref< Command > > > command
Public Attributes inherited from nix::Args
MultiCommand * parent = nullptr

Additional Inherited Members

Public Types inherited from nix::Command
typedef int Category
Static Public Attributes inherited from nix::Command
static constexpr Category catDefault = 0
static constexpr Category catCustom = 1000
Static Public Attributes inherited from nix::Args
static CompleterFun completePath
static CompleterFun completeDir
Protected Types inherited from nix::Args
typedef void CompleterFun(AddCompletions &, size_t, std::string_view)
typedef std::function< CompleterFunCompleterClosure
Protected Member Functions inherited from nix::Args
virtual Strings::iterator rewriteArgs (Strings &args, Strings::iterator pos)
virtual void initialFlagsProcessed ()
virtual std::optional< std::reference_wrapper< RootArgs > > asRootArgs ()
Protected Attributes inherited from nix::Args
std::map< std::string, Flag::ptr > longFlags
std::map< char, Flag::ptr > shortFlags
std::list< ExpectedArgexpectedArgs
std::list< ExpectedArgprocessedArgs
std::set< std::string > hiddenCategories
Static Protected Attributes inherited from nix::Args
static const size_t ArityAny = std::numeric_limits<size_t>::max()

Detailed Description

An argument parser that supports multiple subcommands, i.e. ‘<command> <subcommand>’.

Member Function Documentation

◆ processArgs()

bool nix::MultiCommand::processArgs ( const Strings & args,
bool finish )
overridevirtual

Process some positional arugments

Parameters
finishWe have parsed everything else, and these are the only arguments left. Used because we accumulate some "pending args" we might have left over.
Returns
true if the passed arguments were fully consumed and no further processing is required, false if the passed arguments should be processed with more context.

Reimplemented from nix::Args.

◆ processFlag()

bool nix::MultiCommand::processFlag ( Strings::iterator & pos,
Strings::iterator end )
overridevirtual

Process a single flag and its arguments, pulling from an iterator of raw CLI args as needed.

Returns
false if the flag is not recognised.

Reimplemented from nix::Args.

◆ toJSON()

JSON nix::MultiCommand::toJSON ( )
overridevirtual

Reimplemented from nix::Args.

Member Data Documentation

◆ command

std::optional<std::pair<std::string, ref<Command> > > nix::MultiCommand::command

Selected command, if any.


The documentation for this class was generated from the following files:
  • lix/libutil/args.hh
  • lix/libutil/args.cc