2016-09-20 01:54:06 +08:00
|
|
|
//===-- OptionValueBoolean.cpp ----------------------------------*- C++ -*-===//
|
2012-08-23 01:17:09 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "lldb/Interpreter/OptionValueBoolean.h"
|
|
|
|
|
|
|
|
// C Includes
|
|
|
|
// C++ Includes
|
|
|
|
// Other libraries and framework includes
|
|
|
|
// Project includes
|
2016-08-10 07:06:08 +08:00
|
|
|
#include "lldb/Host/PosixApi.h"
|
2018-04-10 17:03:59 +08:00
|
|
|
#include "lldb/Interpreter/OptionArgParser.h"
|
2017-02-03 05:39:50 +08:00
|
|
|
#include "lldb/Utility/Stream.h"
|
2017-03-22 02:25:04 +08:00
|
|
|
#include "lldb/Utility/StringList.h"
|
2014-06-27 13:17:41 +08:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2012-08-23 01:17:09 +08:00
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
void OptionValueBoolean::DumpValue(const ExecutionContext *exe_ctx,
|
|
|
|
Stream &strm, uint32_t dump_mask) {
|
|
|
|
if (dump_mask & eDumpOptionType)
|
|
|
|
strm.Printf("(%s)", GetTypeAsCString());
|
|
|
|
// if (dump_mask & eDumpOptionName)
|
|
|
|
// DumpQualifiedName (strm);
|
|
|
|
if (dump_mask & eDumpOptionValue) {
|
2012-08-23 01:17:09 +08:00
|
|
|
if (dump_mask & eDumpOptionType)
|
2016-09-07 04:57:50 +08:00
|
|
|
strm.PutCString(" = ");
|
|
|
|
strm.PutCString(m_current_value ? "true" : "false");
|
|
|
|
}
|
2012-08-23 01:17:09 +08:00
|
|
|
}
|
|
|
|
|
2017-05-12 12:51:55 +08:00
|
|
|
Status OptionValueBoolean::SetValueFromString(llvm::StringRef value_str,
|
|
|
|
VarSetOperationType op) {
|
|
|
|
Status error;
|
2016-09-07 04:57:50 +08:00
|
|
|
switch (op) {
|
|
|
|
case eVarSetOperationClear:
|
|
|
|
Clear();
|
|
|
|
NotifyValueChanged();
|
|
|
|
break;
|
2012-08-23 01:17:09 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
case eVarSetOperationReplace:
|
|
|
|
case eVarSetOperationAssign: {
|
|
|
|
bool success = false;
|
2018-04-10 17:03:59 +08:00
|
|
|
bool value = OptionArgParser::ToBoolean(value_str, false, &success);
|
2016-09-07 04:57:50 +08:00
|
|
|
if (success) {
|
|
|
|
m_value_was_set = true;
|
|
|
|
m_current_value = value;
|
|
|
|
NotifyValueChanged();
|
|
|
|
} else {
|
|
|
|
if (value_str.size() == 0)
|
|
|
|
error.SetErrorString("invalid boolean string value <empty>");
|
|
|
|
else
|
|
|
|
error.SetErrorStringWithFormat("invalid boolean string value: '%s'",
|
|
|
|
value_str.str().c_str());
|
2012-08-23 01:17:09 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
} break;
|
2012-08-23 01:17:09 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
case eVarSetOperationInsertBefore:
|
|
|
|
case eVarSetOperationInsertAfter:
|
|
|
|
case eVarSetOperationRemove:
|
|
|
|
case eVarSetOperationAppend:
|
|
|
|
case eVarSetOperationInvalid:
|
|
|
|
error = OptionValue::SetValueFromString(value_str, op);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return error;
|
2012-08-23 01:17:09 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
lldb::OptionValueSP OptionValueBoolean::DeepCopy() const {
|
|
|
|
return OptionValueSP(new OptionValueBoolean(*this));
|
2012-08-23 08:22:02 +08:00
|
|
|
}
|
|
|
|
|
2016-11-17 09:37:42 +08:00
|
|
|
size_t OptionValueBoolean::AutoComplete(
|
|
|
|
CommandInterpreter &interpreter, llvm::StringRef s, int match_start_point,
|
|
|
|
int max_return_elements, bool &word_complete, StringList &matches) {
|
2016-09-07 04:57:50 +08:00
|
|
|
word_complete = false;
|
|
|
|
matches.Clear();
|
2016-11-17 09:37:42 +08:00
|
|
|
static const llvm::StringRef g_autocomplete_entries[] = {
|
|
|
|
"true", "false", "on", "off", "yes", "no", "1", "0"};
|
2012-08-23 08:22:02 +08:00
|
|
|
|
2016-11-17 09:37:42 +08:00
|
|
|
auto entries = llvm::makeArrayRef(g_autocomplete_entries);
|
|
|
|
|
|
|
|
// only suggest "true" or "false" by default
|
|
|
|
if (s.empty())
|
|
|
|
entries = entries.take_front(2);
|
|
|
|
|
|
|
|
for (auto entry : entries) {
|
|
|
|
if (entry.startswith_lower(s))
|
|
|
|
matches.AppendString(entry);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
return matches.GetSize();
|
|
|
|
}
|