openMSX
|
#include <DiskManipulator.hh>
Public Member Functions | |
DiskManipulator (CommandController &commandController, Reactor &reactor) | |
~DiskManipulator () | |
void | registerDrive (DiskContainer &drive, std::string_view prefix) |
void | unregisterDrive (DiskContainer &drive) |
![]() | |
virtual void | execute (std::span< const TclObject > tokens, TclObject &result)=0 |
Execute this command. More... | |
void | tabCompletion (std::vector< std::string > &tokens) const override |
Attempt tab completion for this command. More... | |
void | setAllowedInEmptyMachine (bool value) |
bool | isAllowedInEmptyMachine () const |
void | setToken (void *token_) |
void * | getToken () const |
template<typename... Args> | |
void | executeSubCommand (std::string_view subCmd, Args &&... args) |
![]() | |
CommandCompleter (const CommandCompleter &)=delete | |
CommandCompleter & | operator= (const CommandCompleter &)=delete |
CommandController & | getCommandController () const |
Interpreter & | getInterpreter () const final |
![]() | |
Completer (const Completer &)=delete | |
Completer & | operator= (const Completer &)=delete |
const std::string & | getName () const |
virtual std::string | help (std::span< const TclObject > tokens) const =0 |
Print help for this command. More... | |
virtual void | tabCompletion (std::vector< std::string > &tokens) const =0 |
Attempt tab completion for this command. More... | |
virtual Interpreter & | getInterpreter () const =0 |
void | checkNumArgs (std::span< const TclObject > tokens, unsigned exactly, const char *errMessage) const |
void | checkNumArgs (std::span< const TclObject > tokens, AtLeast atLeast, const char *errMessage) const |
void | checkNumArgs (std::span< const TclObject > tokens, Between between, const char *errMessage) const |
void | checkNumArgs (std::span< const TclObject > tokens, unsigned exactly, Prefix prefix, const char *errMessage) const |
void | checkNumArgs (std::span< const TclObject > tokens, AtLeast atLeast, Prefix prefix, const char *errMessage) const |
void | checkNumArgs (std::span< const TclObject > tokens, Between between, Prefix prefix, const char *errMessage) const |
template<typename ITER > | |
NEVER_INLINE std::vector< std::string_view > | filter (std::string_view str, ITER begin, ITER end, bool caseSensitive) |
Additional Inherited Members | |
![]() | |
template<typename ITER > | |
static void | completeString (std::vector< std::string > &tokens, ITER begin, ITER end, bool caseSensitive=true) |
template<typename RANGE > | |
static void | completeString (std::vector< std::string > &tokens, RANGE &&possibleValues, bool caseSensitive=true) |
template<typename RANGE > | |
static void | completeFileName (std::vector< std::string > &tokens, const FileContext &context, const RANGE &extra) |
static void | completeFileName (std::vector< std::string > &tokens, const FileContext &context) |
static std::vector< std::string > | formatListInColumns (std::span< const std::string_view > input) |
static void | setOutput (InterpreterOutput *output_) |
![]() | |
Command (CommandController &controller, std::string_view name) | |
~Command () | |
![]() | |
CommandCompleter (CommandController &controller, std::string_view name) | |
~CommandCompleter () | |
GlobalCommandController & | getGlobalCommandController () const |
CliComm & | getCliComm () const |
![]() | |
template<typename String > | |
Completer (String &&name_) | |
~Completer ()=default | |
Definition at line 21 of file DiskManipulator.hh.
|
explicit |
Definition at line 40 of file DiskManipulator.cc.
openmsx::DiskManipulator::~DiskManipulator | ( | ) |
Definition at line 47 of file DiskManipulator.cc.
void openmsx::DiskManipulator::registerDrive | ( | DiskContainer & | drive, |
std::string_view | prefix | ||
) |
Definition at line 75 of file DiskManipulator.cc.
References end(), openmsx::DiskContainer::getContainerName(), and strCat().
Referenced by openmsx::IDEHD::IDEHD().
void openmsx::DiskManipulator::unregisterDrive | ( | DiskContainer & | drive | ) |
Definition at line 86 of file DiskManipulator.cc.
References end(), and move_pop_back().
Referenced by openmsx::DiskChanger::~DiskChanger(), and openmsx::IDEHD::~IDEHD().