LLDB mainline
OptionGroupString.cpp
Go to the documentation of this file.
1//===-- OptionGroupString.cpp ---------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
10
12
13using namespace lldb;
14using namespace lldb_private;
15
16OptionGroupString::OptionGroupString(uint32_t usage_mask, bool required,
17 const char *long_option, int short_option,
18 uint32_t completion_type,
19 lldb::CommandArgumentType argument_type,
20 const char *usage_text,
21 const char *default_value)
22 : m_value(default_value, default_value) {
25 m_option_definition.long_option = long_option;
26 m_option_definition.short_option = short_option;
30 m_option_definition.completion_type = completion_type;
31 m_option_definition.argument_type = argument_type;
33}
34
36 llvm::StringRef option_arg,
37 ExecutionContext *execution_context) {
39 return error;
40}
41
43 ExecutionContext *execution_context) {
44 m_value.Clear();
45}
static llvm::raw_ostream & error(Stream &strm)
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
void OptionParsingStarting(ExecutionContext *execution_context) override
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_value, ExecutionContext *execution_context) override
OptionGroupString(uint32_t usage_mask, bool required, const char *long_option, int short_option, uint32_t completion_type, lldb::CommandArgumentType argument_type, const char *usage_text, const char *default_value)
Status SetValueFromString(llvm::StringRef value, VarSetOperationType op=eVarSetOperationAssign) override
An error handling class.
Definition: Status.h:44
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
Definition: SBAddress.h:15
OptionValidator * validator
If non-NULL, option is valid iff |validator->IsValid()|, otherwise always valid.
const char * long_option
Full name for this option.
const char * usage_text
Full text explaining what this options does and what (if any) argument to pass it.
bool required
This option is required (in the current usage level).
uint32_t completion_type
The kind of completion for this option.
int option_has_arg
no_argument, required_argument or optional_argument
uint32_t usage_mask
Used to mark options that can be used together.
lldb::CommandArgumentType argument_type
Type of argument this option takes.
OptionEnumValues enum_values
If not empty, an array of enum values.
int short_option
Single character for this option.