LLDB mainline
Public Member Functions | Public Attributes | List of all members
CommandObjectCommandsScriptAdd::CommandOptions Class Reference
Inheritance diagram for CommandObjectCommandsScriptAdd::CommandOptions:
Inheritance graph
[legend]

Public Member Functions

 CommandOptions ()=default
 
 ~CommandOptions () override=default
 
Status SetOptionValue (uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
 Set the value of an option.
 
void OptionParsingStarting (ExecutionContext *execution_context) override
 
llvm::ArrayRef< OptionDefinitionGetDefinitions () override
 
- Public Member Functions inherited from lldb_private::Options
 Options ()
 
virtual ~Options ()
 
void BuildGetoptTable ()
 
void BuildValidOptionSets ()
 
uint32_t NumCommandOptions ()
 
OptionGetLongOptions ()
 Get the option definitions to use when parsing Args options.
 
void OptionSeen (int short_option)
 
bool VerifyOptions (CommandReturnObject &result)
 
bool VerifyPartialOptions (CommandReturnObject &result)
 
void OutputFormattedUsageText (Stream &strm, const OptionDefinition &option_def, uint32_t output_max_columns)
 
void GenerateOptionUsage (Stream &strm, CommandObject &cmd, uint32_t screen_width)
 
bool SupportsLongOption (const char *long_option)
 
virtual llvm::ArrayRef< OptionDefinitionGetDefinitions ()
 
void NotifyOptionParsingStarting (ExecutionContext *execution_context)
 
llvm::Expected< ArgsParse (const Args &args, ExecutionContext *execution_context, lldb::PlatformSP platform_sp, bool require_validation)
 Parse the provided arguments.
 
llvm::Expected< ArgsParseAlias (const Args &args, OptionArgVector *option_arg_vector, std::string &input_line)
 
OptionElementVector ParseForCompletion (const Args &args, uint32_t cursor_index)
 
Status NotifyOptionParsingFinished (ExecutionContext *execution_context)
 
virtual Status SetOptionValue (uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context)=0
 Set the value of an option.
 
bool HandleOptionCompletion (lldb_private::CompletionRequest &request, OptionElementVector &option_map, CommandInterpreter &interpreter)
 Handles the generic bits of figuring out whether we are in an option, and if so completing it.
 
virtual void HandleOptionArgumentCompletion (lldb_private::CompletionRequest &request, OptionElementVector &opt_element_vector, int opt_element_index, CommandInterpreter &interpreter)
 Handles the generic bits of figuring out whether we are in an option, and if so completing it.
 

Public Attributes

std::string m_class_name
 
std::string m_funct_name
 
std::string m_short_help
 
LazyBool m_overwrite_lazy = eLazyBoolCalculate
 
ScriptedCommandSynchronicity m_synchronicity
 
CompletionType m_completion_type = eNoCompletion
 
bool m_parsed_command = false
 

Additional Inherited Members

- Protected Types inherited from lldb_private::Options
typedef std::set< int > OptionSet
 
typedef std::vector< OptionSetOptionSetVector
 
- Protected Member Functions inherited from lldb_private::Options
OptionSetVectorGetRequiredOptions ()
 
OptionSetVectorGetOptionalOptions ()
 
bool IsASubset (const OptionSet &set_a, const OptionSet &set_b)
 
size_t OptionsSetDiff (const OptionSet &set_a, const OptionSet &set_b, OptionSet &diffs)
 
void OptionsSetUnion (const OptionSet &set_a, const OptionSet &set_b, OptionSet &union_set)
 
virtual void OptionParsingStarting (ExecutionContext *execution_context)=0
 
virtual Status OptionParsingFinished (ExecutionContext *execution_context)
 
- Protected Attributes inherited from lldb_private::Options
std::vector< Optionm_getopt_table
 
OptionSet m_seen_options
 
OptionSetVector m_required_options
 
OptionSetVector m_optional_options
 

Detailed Description

Definition at line 2035 of file CommandObjectCommands.cpp.

Constructor & Destructor Documentation

◆ CommandOptions()

CommandObjectCommandsScriptAdd::CommandOptions::CommandOptions ( )
default

◆ ~CommandOptions()

CommandObjectCommandsScriptAdd::CommandOptions::~CommandOptions ( )
overridedefault

Member Function Documentation

◆ GetDefinitions()

llvm::ArrayRef< OptionDefinition > CommandObjectCommandsScriptAdd::CommandOptions::GetDefinitions ( )
inlineoverridevirtual

Reimplemented from lldb_private::Options.

Definition at line 2103 of file CommandObjectCommands.cpp.

Referenced by SetOptionValue().

◆ OptionParsingStarting()

void CommandObjectCommandsScriptAdd::CommandOptions::OptionParsingStarting ( ExecutionContext execution_context)
inlineoverridevirtual

◆ SetOptionValue()

Status CommandObjectCommandsScriptAdd::CommandOptions::SetOptionValue ( uint32_t  option_idx,
llvm::StringRef  option_arg,
ExecutionContext execution_context 
)
inlineoverridevirtual

Set the value of an option.

Parameters
[in]option_idxThe index into the "struct option" array that was returned by Options::GetLongOptions().
[in]option_argThe argument value for the option that the user entered, or nullptr if there is no argument for the current option.
[in]execution_contextThe execution context to use for evaluating the option. May be nullptr if the option is to be evaluated outside any particular context.
See also
Args::ParseOptions (Options&)
man getopt_long_only

Implements lldb_private::Options.

Definition at line 2041 of file CommandObjectCommands.cpp.

References lldb_private::eLazyBoolYes, lldb::eNoCompletion, lldb_private::OptionDefinition::enum_values, error(), GetDefinitions(), m_class_name, m_completion_type, m_funct_name, lldb_private::Options::m_getopt_table, m_overwrite_lazy, m_parsed_command, m_short_help, m_synchronicity, and lldb_private::OptionArgParser::ToOptionEnum().

Member Data Documentation

◆ m_class_name

std::string CommandObjectCommandsScriptAdd::CommandOptions::m_class_name

◆ m_completion_type

CompletionType CommandObjectCommandsScriptAdd::CommandOptions::m_completion_type = eNoCompletion

◆ m_funct_name

std::string CommandObjectCommandsScriptAdd::CommandOptions::m_funct_name

◆ m_overwrite_lazy

LazyBool CommandObjectCommandsScriptAdd::CommandOptions::m_overwrite_lazy = eLazyBoolCalculate

◆ m_parsed_command

bool CommandObjectCommandsScriptAdd::CommandOptions::m_parsed_command = false

◆ m_short_help

std::string CommandObjectCommandsScriptAdd::CommandOptions::m_short_help

◆ m_synchronicity

ScriptedCommandSynchronicity CommandObjectCommandsScriptAdd::CommandOptions::m_synchronicity
Initial value:
=
eScriptedCommandSynchronicitySynchronous

Definition at line 2113 of file CommandObjectCommands.cpp.

Referenced by CommandObjectCommandsScriptAdd::DoExecute(), OptionParsingStarting(), and SetOptionValue().


The documentation for this class was generated from the following file: