2016-09-07 04:57:50 +08:00
|
|
|
//===-- OptionValueUInt64.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/OptionValueUInt64.h"
|
|
|
|
|
|
|
|
// C Includes
|
|
|
|
// C++ Includes
|
|
|
|
// Other libraries and framework includes
|
|
|
|
// Project includes
|
2015-01-16 04:08:35 +08:00
|
|
|
#include "lldb/Host/StringConvert.h"
|
2017-02-03 05:39:50 +08:00
|
|
|
#include "lldb/Utility/Stream.h"
|
2012-08-23 01:17:09 +08:00
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
2016-09-24 01:48:13 +08:00
|
|
|
lldb::OptionValueSP OptionValueUInt64::Create(llvm::StringRef value_str,
|
2017-05-12 12:51:55 +08:00
|
|
|
Status &error) {
|
2016-09-07 04:57:50 +08:00
|
|
|
lldb::OptionValueSP value_sp(new OptionValueUInt64());
|
2016-09-24 01:48:13 +08:00
|
|
|
error = value_sp->SetValueFromString(value_str);
|
2016-09-07 04:57:50 +08:00
|
|
|
if (error.Fail())
|
|
|
|
value_sp.reset();
|
|
|
|
return value_sp;
|
2012-08-23 01:17:09 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
void OptionValueUInt64::DumpValue(const ExecutionContext *exe_ctx, Stream &strm,
|
|
|
|
uint32_t dump_mask) {
|
|
|
|
if (dump_mask & eDumpOptionType)
|
|
|
|
strm.Printf("(%s)", GetTypeAsCString());
|
|
|
|
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.Printf("%" PRIu64, m_current_value);
|
|
|
|
}
|
2012-08-23 01:17:09 +08:00
|
|
|
}
|
|
|
|
|
2017-05-12 12:51:55 +08:00
|
|
|
Status OptionValueUInt64::SetValueFromString(llvm::StringRef value_ref,
|
|
|
|
VarSetOperationType op) {
|
|
|
|
Status error;
|
2016-09-07 04:57:50 +08:00
|
|
|
switch (op) {
|
|
|
|
case eVarSetOperationClear:
|
|
|
|
Clear();
|
|
|
|
NotifyValueChanged();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case eVarSetOperationReplace:
|
|
|
|
case eVarSetOperationAssign: {
|
|
|
|
bool success = false;
|
|
|
|
std::string value_str = value_ref.trim().str();
|
|
|
|
uint64_t value = StringConvert::ToUInt64(value_str.c_str(), 0, 0, &success);
|
|
|
|
if (success) {
|
|
|
|
m_value_was_set = true;
|
|
|
|
m_current_value = value;
|
|
|
|
NotifyValueChanged();
|
|
|
|
} else {
|
|
|
|
error.SetErrorStringWithFormat("invalid uint64_t string value: '%s'",
|
|
|
|
value_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_ref, op);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return error;
|
2012-08-23 01:17:09 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
lldb::OptionValueSP OptionValueUInt64::DeepCopy() const {
|
|
|
|
return OptionValueSP(new OptionValueUInt64(*this));
|
|
|
|
}
|