2011-05-03 22:09:39 +00:00
|
|
|
//===-- OptionGroupBoolean.cpp ----------------------------------*- C++ -*-===//
|
|
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2011-05-03 22:09:39 +00:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
2011-05-13 20:21:08 +00:00
|
|
|
#include "lldb/Interpreter/OptionGroupBoolean.h"
|
2011-05-03 22:09:39 +00:00
|
|
|
|
2017-03-22 23:33:16 +00:00
|
|
|
#include "lldb/Host/OptionParser.h"
|
2011-05-03 22:09:39 +00:00
|
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
|
|
OptionGroupBoolean::OptionGroupBoolean(uint32_t usage_mask, bool required,
|
|
|
|
|
const char *long_option,
|
|
|
|
|
int short_option, const char *usage_text,
|
2012-09-27 22:26:11 +00:00
|
|
|
bool default_value,
|
|
|
|
|
bool no_argument_toggle_default)
|
2011-05-03 22:09:39 +00:00
|
|
|
: m_value(default_value, default_value) {
|
|
|
|
|
m_option_definition.usage_mask = usage_mask;
|
|
|
|
|
m_option_definition.required = required;
|
|
|
|
|
m_option_definition.long_option = long_option;
|
|
|
|
|
m_option_definition.short_option = short_option;
|
2014-07-09 16:32:07 +00:00
|
|
|
m_option_definition.validator = nullptr;
|
2013-09-05 16:42:23 +00:00
|
|
|
m_option_definition.option_has_arg = no_argument_toggle_default
|
|
|
|
|
? OptionParser::eNoArgument
|
|
|
|
|
: OptionParser::eRequiredArgument;
|
2018-09-26 18:50:19 +00:00
|
|
|
m_option_definition.enum_values = {};
|
2012-09-27 22:26:11 +00:00
|
|
|
m_option_definition.completion_type = 0;
|
|
|
|
|
m_option_definition.argument_type = eArgTypeBoolean;
|
2011-05-03 22:09:39 +00:00
|
|
|
m_option_definition.usage_text = usage_text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
OptionGroupBoolean::~OptionGroupBoolean() {}
|
|
|
|
|
|
2017-05-12 04:51:55 +00:00
|
|
|
Status OptionGroupBoolean::SetOptionValue(uint32_t option_idx,
|
|
|
|
|
llvm::StringRef option_value,
|
|
|
|
|
ExecutionContext *execution_context) {
|
|
|
|
|
Status error;
|
2013-09-05 16:42:23 +00:00
|
|
|
if (m_option_definition.option_has_arg == OptionParser::eNoArgument) {
|
2018-04-30 16:49:04 +00:00
|
|
|
// Not argument, toggle the default value and mark the option as having
|
|
|
|
|
// been set
|
2012-09-27 22:26:11 +00:00
|
|
|
m_value.SetCurrentValue(!m_value.GetDefaultValue());
|
|
|
|
|
m_value.SetOptionWasSet();
|
|
|
|
|
} else {
|
2016-09-23 17:48:13 +00:00
|
|
|
error = m_value.SetValueFromString(option_value);
|
2012-09-27 22:26:11 +00:00
|
|
|
}
|
2011-05-03 22:09:39 +00:00
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-11 23:51:28 +00:00
|
|
|
void OptionGroupBoolean::OptionParsingStarting(
|
|
|
|
|
ExecutionContext *execution_context) {
|
2011-05-03 22:09:39 +00:00
|
|
|
m_value.Clear();
|
|
|
|
|
}
|