blob: d26fc08a3132025e9163108a5fbbea65eac4649f [file] [log] [blame]
Greg Clayton67cc0632012-08-22 17:17:09 +00001//===-- OptionValueSInt64.cpp -----------------------------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Greg Clayton67cc0632012-08-22 17:17:09 +00006//
7//===----------------------------------------------------------------------===//
8
9#include "lldb/Interpreter/OptionValueSInt64.h"
10
Vince Harron5275aaa2015-01-15 20:08:35 +000011#include "lldb/Host/StringConvert.h"
Zachary Turnerbf9a7732017-02-02 21:39:50 +000012#include "lldb/Utility/Stream.h"
Greg Clayton67cc0632012-08-22 17:17:09 +000013
14using namespace lldb;
15using namespace lldb_private;
16
Kate Stoneb9c1b512016-09-06 20:57:50 +000017void OptionValueSInt64::DumpValue(const ExecutionContext *exe_ctx, Stream &strm,
18 uint32_t dump_mask) {
Adrian Prantl05097242018-04-30 16:49:04 +000019 // printf ("%p: DumpValue (exe_ctx=%p, strm, mask) m_current_value = %"
20 // PRIi64
Kate Stoneb9c1b512016-09-06 20:57:50 +000021 // "\n", this, exe_ctx, m_current_value);
22 if (dump_mask & eDumpOptionType)
23 strm.Printf("(%s)", GetTypeAsCString());
24 // if (dump_mask & eDumpOptionName)
25 // DumpQualifiedName (strm);
26 if (dump_mask & eDumpOptionValue) {
Greg Clayton67cc0632012-08-22 17:17:09 +000027 if (dump_mask & eDumpOptionType)
Kate Stoneb9c1b512016-09-06 20:57:50 +000028 strm.PutCString(" = ");
29 strm.Printf("%" PRIi64, m_current_value);
30 }
Greg Clayton67cc0632012-08-22 17:17:09 +000031}
32
Zachary Turner97206d52017-05-12 04:51:55 +000033Status OptionValueSInt64::SetValueFromString(llvm::StringRef value_ref,
34 VarSetOperationType op) {
35 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +000036 switch (op) {
37 case eVarSetOperationClear:
38 Clear();
39 NotifyValueChanged();
40 break;
41
42 case eVarSetOperationReplace:
43 case eVarSetOperationAssign: {
44 bool success = false;
45 std::string value_str = value_ref.trim().str();
46 int64_t value = StringConvert::ToSInt64(value_str.c_str(), 0, 0, &success);
47 if (success) {
48 if (value >= m_min_value && value <= m_max_value) {
49 m_value_was_set = true;
50 m_current_value = value;
51 NotifyValueChanged();
52 } else
53 error.SetErrorStringWithFormat(
54 "%" PRIi64 " is out of range, valid values must be between %" PRIi64
55 " and %" PRIi64 ".",
56 value, m_min_value, m_max_value);
57 } else {
58 error.SetErrorStringWithFormat("invalid int64_t string value: '%s'",
59 value_ref.str().c_str());
Greg Clayton67cc0632012-08-22 17:17:09 +000060 }
Kate Stoneb9c1b512016-09-06 20:57:50 +000061 } break;
62
63 case eVarSetOperationInsertBefore:
64 case eVarSetOperationInsertAfter:
65 case eVarSetOperationRemove:
66 case eVarSetOperationAppend:
67 case eVarSetOperationInvalid:
68 error = OptionValue::SetValueFromString(value_ref, op);
69 break;
70 }
71 return error;
Greg Clayton67cc0632012-08-22 17:17:09 +000072}
73
Kate Stoneb9c1b512016-09-06 20:57:50 +000074lldb::OptionValueSP OptionValueSInt64::DeepCopy() const {
75 return OptionValueSP(new OptionValueSInt64(*this));
Greg Clayton67cc0632012-08-22 17:17:09 +000076}