blob: e01b0b225777cd090c51a83fd522712d495e94dd [file] [log] [blame]
Greg Clayton67cc0632012-08-22 17:17:09 +00001//===-- OptionValueFileSpec.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
Daniel Malea93a64302012-12-05 00:20:57 +000010#include "lldb/lldb-python.h"
11
Greg Clayton67cc0632012-08-22 17:17:09 +000012#include "lldb/Interpreter/OptionValueFileSpec.h"
13
14// C Includes
15// C++ Includes
16// Other libraries and framework includes
17// Project includes
Greg Clayton67cc0632012-08-22 17:17:09 +000018#include "lldb/Core/State.h"
Enrico Granata5548cb52013-01-28 23:47:25 +000019#include "lldb/DataFormatters/FormatManager.h"
Greg Clayton67cc0632012-08-22 17:17:09 +000020#include "lldb/Interpreter/Args.h"
21#include "lldb/Interpreter/CommandCompletions.h"
22
23using namespace lldb;
24using namespace lldb_private;
25
Greg Claytonb5f0fea2012-09-27 22:26:11 +000026
27OptionValueFileSpec::OptionValueFileSpec () :
28 OptionValue(),
29 m_current_value (),
30 m_default_value (),
31 m_data_sp(),
32 m_completion_mask (CommandCompletions::eDiskFileCompletion)
33{
34}
35
36OptionValueFileSpec::OptionValueFileSpec (const FileSpec &value) :
37 OptionValue(),
38 m_current_value (value),
39 m_default_value (value),
40 m_data_sp(),
41 m_completion_mask (CommandCompletions::eDiskFileCompletion)
42{
43}
44
45OptionValueFileSpec::OptionValueFileSpec (const FileSpec &current_value,
46 const FileSpec &default_value) :
47 OptionValue(),
48 m_current_value (current_value),
49 m_default_value (default_value),
50 m_data_sp(),
51 m_completion_mask (CommandCompletions::eDiskFileCompletion)
52{
53}
54
Greg Clayton67cc0632012-08-22 17:17:09 +000055void
56OptionValueFileSpec::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask)
57{
58 if (dump_mask & eDumpOptionType)
59 strm.Printf ("(%s)", GetTypeAsCString ());
60 if (dump_mask & eDumpOptionValue)
61 {
62 if (dump_mask & eDumpOptionType)
63 strm.PutCString (" = ");
64
65 if (m_current_value)
66 {
Greg Claytonb5ad4ec2013-04-29 17:25:54 +000067 strm << '"' << m_current_value.GetPath().c_str() << '"';
Greg Clayton67cc0632012-08-22 17:17:09 +000068 }
69 }
70}
71
72Error
73OptionValueFileSpec::SetValueFromCString (const char *value_cstr,
74 VarSetOperationType op)
75{
76 Error error;
77 switch (op)
78 {
79 case eVarSetOperationClear:
80 Clear ();
81 break;
82
83 case eVarSetOperationReplace:
84 case eVarSetOperationAssign:
85 if (value_cstr && value_cstr[0])
86 {
Jason Molenda36d44612013-08-27 04:58:31 +000087 m_value_was_set = true;
88 m_current_value.SetFile(value_cstr, true);
Greg Clayton67cc0632012-08-22 17:17:09 +000089 }
90 else
91 {
92 error.SetErrorString("invalid value string");
93 }
94 break;
95
96 case eVarSetOperationInsertBefore:
97 case eVarSetOperationInsertAfter:
98 case eVarSetOperationRemove:
99 case eVarSetOperationAppend:
100 case eVarSetOperationInvalid:
101 error = OptionValue::SetValueFromCString (value_cstr, op);
102 break;
103 }
104 return error;
105}
106
107lldb::OptionValueSP
108OptionValueFileSpec::DeepCopy () const
109{
110 return OptionValueSP(new OptionValueFileSpec(*this));
111}
112
113
114size_t
115OptionValueFileSpec::AutoComplete (CommandInterpreter &interpreter,
116 const char *s,
117 int match_start_point,
118 int max_return_elements,
119 bool &word_complete,
120 StringList &matches)
121{
122 word_complete = false;
123 matches.Clear();
124 CommandCompletions::InvokeCommonCompletionCallbacks (interpreter,
Greg Claytonb5f0fea2012-09-27 22:26:11 +0000125 m_completion_mask,
Greg Clayton67cc0632012-08-22 17:17:09 +0000126 s,
127 match_start_point,
128 max_return_elements,
129 NULL,
130 word_complete,
131 matches);
132 return matches.GetSize();
133}
134
135
136
Greg Clayton6920b522012-08-22 18:39:03 +0000137const lldb::DataBufferSP &
Greg Clayton0b0b5122012-08-30 18:15:10 +0000138OptionValueFileSpec::GetFileContents(bool null_terminate)
Greg Clayton6920b522012-08-22 18:39:03 +0000139{
140 if (!m_data_sp && m_current_value)
Greg Clayton0b0b5122012-08-30 18:15:10 +0000141 {
142 if (null_terminate)
143 m_data_sp = m_current_value.ReadFileContentsAsCString();
144 else
145 m_data_sp = m_current_value.ReadFileContents();
146 }
Greg Clayton6920b522012-08-22 18:39:03 +0000147 return m_data_sp;
148}
149
Greg Clayton67cc0632012-08-22 17:17:09 +0000150