blob: c69172921a6d81712ac2f46d0cac5c8a9f420a48 [file] [log] [blame]
Greg Clayton67cc0632012-08-22 17:17:09 +00001//===-- OptionValueSInt64.cpp -----------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "lldb/Interpreter/OptionValueSInt64.h"
11
12// C Includes
13// C++ Includes
14// Other libraries and framework includes
15// Project includes
16#include "lldb/Core/Stream.h"
Vince Harron5275aaa2015-01-15 20:08:35 +000017#include "lldb/Host/StringConvert.h"
Greg Clayton67cc0632012-08-22 17:17:09 +000018
19using namespace lldb;
20using namespace lldb_private;
21
22void
23OptionValueSInt64::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask)
24{
Daniel Malead01b2952012-11-29 21:49:15 +000025 //printf ("%p: DumpValue (exe_ctx=%p, strm, mask) m_current_value = %" PRIi64 "\n", this, exe_ctx, m_current_value);
Greg Clayton67cc0632012-08-22 17:17:09 +000026 if (dump_mask & eDumpOptionType)
27 strm.Printf ("(%s)", GetTypeAsCString ());
28// if (dump_mask & eDumpOptionName)
29// DumpQualifiedName (strm);
30 if (dump_mask & eDumpOptionValue)
31 {
32 if (dump_mask & eDumpOptionType)
33 strm.PutCString (" = ");
Daniel Malead01b2952012-11-29 21:49:15 +000034 strm.Printf ("%" PRIi64, m_current_value);
Greg Clayton67cc0632012-08-22 17:17:09 +000035 }
36}
37
38Error
39OptionValueSInt64::SetValueFromCString (const char *value_cstr, VarSetOperationType op)
40{
41 //printf ("%p: SetValueFromCString (s=\"%s\", op=%i)\n", this, value_cstr, op);
42 Error error;
43 switch (op)
44 {
45 case eVarSetOperationClear:
46 Clear();
Greg Clayton332e8b12015-01-13 21:13:08 +000047 NotifyValueChanged();
Greg Clayton67cc0632012-08-22 17:17:09 +000048 break;
49
50 case eVarSetOperationReplace:
51 case eVarSetOperationAssign:
52 {
53 bool success = false;
Vince Harron5275aaa2015-01-15 20:08:35 +000054 int64_t value = StringConvert::ToSInt64 (value_cstr, 0, 0, &success);
Greg Clayton67cc0632012-08-22 17:17:09 +000055 if (success)
56 {
57 if (value >= m_min_value && value <= m_max_value)
58 {
59 m_value_was_set = true;
60 m_current_value = value;
Greg Clayton332e8b12015-01-13 21:13:08 +000061 NotifyValueChanged();
Greg Clayton67cc0632012-08-22 17:17:09 +000062 }
63 else
Daniel Malead01b2952012-11-29 21:49:15 +000064 error.SetErrorStringWithFormat ("%" PRIi64 " is out of range, valid values must be between %" PRIi64 " and %" PRIi64 ".",
Greg Clayton67cc0632012-08-22 17:17:09 +000065 value,
66 m_min_value,
67 m_max_value);
68 }
69 else
70 {
71 error.SetErrorStringWithFormat ("invalid int64_t string value: '%s'", value_cstr);
72 }
73 }
74 break;
75
76 case eVarSetOperationInsertBefore:
77 case eVarSetOperationInsertAfter:
78 case eVarSetOperationRemove:
79 case eVarSetOperationAppend:
80 case eVarSetOperationInvalid:
81 error = OptionValue::SetValueFromCString (value_cstr, op);
82 break;
83 }
84 return error;
85}
86
87lldb::OptionValueSP
88OptionValueSInt64::DeepCopy () const
89{
90 return OptionValueSP(new OptionValueSInt64(*this));
91}