2011-05-03 22:09:39 +00:00
|
|
|
//===-- OptionGroupFile.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/OptionGroupFile.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;
|
|
|
|
|
|
|
|
|
|
OptionGroupFile::OptionGroupFile(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)
|
|
|
|
|
: m_file() {
|
|
|
|
|
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 = OptionParser::eRequiredArgument;
|
2018-09-26 18:50:19 +00:00
|
|
|
m_option_definition.enum_values = {};
|
2011-05-03 22:09:39 +00:00
|
|
|
m_option_definition.completion_type = completion_type;
|
|
|
|
|
m_option_definition.argument_type = argument_type;
|
|
|
|
|
m_option_definition.usage_text = usage_text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
OptionGroupFile::~OptionGroupFile() {}
|
|
|
|
|
|
2017-05-12 04:51:55 +00:00
|
|
|
Status OptionGroupFile::SetOptionValue(uint32_t option_idx,
|
|
|
|
|
llvm::StringRef option_arg,
|
|
|
|
|
ExecutionContext *execution_context) {
|
|
|
|
|
Status error(m_file.SetValueFromString(option_arg));
|
2011-05-03 22:09:39 +00:00
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-11 23:51:28 +00:00
|
|
|
void OptionGroupFile::OptionParsingStarting(
|
|
|
|
|
ExecutionContext *execution_context) {
|
2011-05-03 22:09:39 +00:00
|
|
|
m_file.Clear();
|
|
|
|
|
}
|
2011-07-07 01:59:51 +00:00
|
|
|
|
|
|
|
|
OptionGroupFileList::OptionGroupFileList(
|
|
|
|
|
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)
|
|
|
|
|
: m_file_list() {
|
|
|
|
|
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 = OptionParser::eRequiredArgument;
|
2018-09-26 18:50:19 +00:00
|
|
|
m_option_definition.enum_values = {};
|
2011-07-07 01:59:51 +00:00
|
|
|
m_option_definition.completion_type = completion_type;
|
|
|
|
|
m_option_definition.argument_type = argument_type;
|
|
|
|
|
m_option_definition.usage_text = usage_text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
OptionGroupFileList::~OptionGroupFileList() {}
|
|
|
|
|
|
2017-05-12 04:51:55 +00:00
|
|
|
Status
|
|
|
|
|
OptionGroupFileList::SetOptionValue(uint32_t option_idx,
|
|
|
|
|
llvm::StringRef option_value,
|
|
|
|
|
ExecutionContext *execution_context) {
|
|
|
|
|
Status error(m_file_list.SetValueFromString(option_value));
|
2011-07-07 01:59:51 +00:00
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-11 23:51:28 +00:00
|
|
|
void OptionGroupFileList::OptionParsingStarting(
|
|
|
|
|
ExecutionContext *execution_context) {
|
2011-07-07 01:59:51 +00:00
|
|
|
m_file_list.Clear();
|
|
|
|
|
}
|