aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Interpreter/OptionValue.h
blob: 0e8f23453a8aaf9d3591aec583ad6201bc573699 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
//===-- OptionValue.h --------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef liblldb_OptionValue_h_
#define liblldb_OptionValue_h_

// C Includes
// C++ Includes
// Other libraries and framework includes
// Project includes
#include "lldb/lldb-defines.h"
#include "lldb/Core/ConstString.h"
#include "lldb/Core/Error.h"

namespace lldb_private {

    //---------------------------------------------------------------------
    // OptionValue
    //---------------------------------------------------------------------
    class OptionValue
    {
    public:
        typedef enum
        {
            eTypeInvalid = 0,
            eTypeArch,
            eTypeArgs,
            eTypeArray,
            eTypeBoolean,
            eTypeChar,
            eTypeDictionary,
            eTypeEnum,
            eTypeFileSpec,
            eTypeFileSpecList,
            eTypeFormat,
            eTypePathMap,
            eTypeProperties,
            eTypeRegex,
            eTypeSInt64,
            eTypeString,
            eTypeUInt64,
            eTypeUUID
        } Type;

        enum {
            eDumpOptionName         = (1u << 0),
            eDumpOptionType         = (1u << 1),
            eDumpOptionValue        = (1u << 2),
            eDumpOptionDescription  = (1u << 3),
            eDumpOptionRaw          = (1u << 4),
            eDumpGroupValue         = (eDumpOptionName | eDumpOptionType | eDumpOptionValue),
            eDumpGroupHelp          = (eDumpOptionName | eDumpOptionType | eDumpOptionDescription)
        };

        
        OptionValue () :
            m_callback (nullptr),
            m_baton(nullptr),
            m_value_was_set (false)
        {
        }
        
        OptionValue (const OptionValue &rhs) :
            m_callback (rhs.m_callback),
            m_baton (rhs.m_baton),
            m_value_was_set (rhs.m_value_was_set)
        {
        }

        virtual ~OptionValue ()
        {
        }
        //-----------------------------------------------------------------
        // Subclasses should override these functions
        //-----------------------------------------------------------------
        virtual Type
        GetType () const = 0;
        
        // If this value is always hidden, the avoid showing any info on this
        // value, just show the info for the child values.
        virtual bool
        ValueIsTransparent () const
        {
            return GetType() == eTypeProperties;
        }

        virtual const char *
        GetTypeAsCString () const
        {
            return GetBuiltinTypeAsCString(GetType());
        }

        
        static const char *
        GetBuiltinTypeAsCString (Type t);
    
        virtual void
        DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask) = 0;
        
        virtual Error
        SetValueFromCString (const char *value, VarSetOperationType op = eVarSetOperationAssign);
        
        virtual bool
        Clear () = 0;

        virtual lldb::OptionValueSP
        DeepCopy () const = 0;

        virtual size_t
        AutoComplete (CommandInterpreter &interpreter,
                      const char *s,
                      int match_start_point,
                      int max_return_elements,
                      bool &word_complete,
                      StringList &matches);

        //-----------------------------------------------------------------
        // Subclasses can override these functions
        //-----------------------------------------------------------------
        virtual lldb::OptionValueSP
        GetSubValue (const ExecutionContext *exe_ctx,
                     const char *name,
                     bool will_modify,
                     Error &error) const
        {
            error.SetErrorStringWithFormat("'%s' is not a value subvalue", name);
            return lldb::OptionValueSP();
        }

        virtual Error
        SetSubValue (const ExecutionContext *exe_ctx,
                     VarSetOperationType op,
                     const char *name,
                     const char *value);

        virtual bool
        IsAggregateValue () const
        {
            return false;
        }
        
        virtual ConstString
        GetName() const
        {
            return ConstString();
        }
        
        virtual bool
        DumpQualifiedName (Stream &strm) const;
        //-----------------------------------------------------------------
        // Subclasses should NOT override these functions as they use the
        // above functions to implement functionality
        //-----------------------------------------------------------------
        uint32_t
        GetTypeAsMask ()
        {
            return 1u << GetType();
        }
        
        static uint32_t
        ConvertTypeToMask (OptionValue::Type type)
        {
            return 1u << type;
        }

        static OptionValue::Type
        ConvertTypeMaskToType (uint32_t type_mask)
        {
            // If only one bit is set, then return an appropriate enumeration
            switch (type_mask)
            {
                case 1u << eTypeArch:           return eTypeArch;
                case 1u << eTypeArgs:           return eTypeArgs;
                case 1u << eTypeArray:          return eTypeArray;
                case 1u << eTypeBoolean:        return eTypeBoolean;
                case 1u << eTypeChar:           return eTypeChar;
                case 1u << eTypeDictionary:     return eTypeDictionary;
                case 1u << eTypeEnum:           return eTypeEnum;
                case 1u << eTypeFileSpec:       return eTypeFileSpec;
                case 1u << eTypeFileSpecList:   return eTypeFileSpecList;
                case 1u << eTypeFormat:         return eTypeFormat;
                case 1u << eTypePathMap:        return eTypePathMap;
                case 1u << eTypeProperties:     return eTypeProperties;
                case 1u << eTypeRegex:          return eTypeRegex;
                case 1u << eTypeSInt64:         return eTypeSInt64;
                case 1u << eTypeString:         return eTypeString;
                case 1u << eTypeUInt64:         return eTypeUInt64;
                case 1u << eTypeUUID:           return eTypeUUID;
            }
            // Else return invalid
            return eTypeInvalid;
        }

        static lldb::OptionValueSP
        CreateValueFromCStringForTypeMask (const char *value_cstr,
                                           uint32_t type_mask,
                                           Error &error);

        // Get this value as a uint64_t value if it is encoded as a boolean,
        // uint64_t or int64_t. Other types will cause "fail_value" to be 
        // returned
        uint64_t
        GetUInt64Value (uint64_t fail_value, bool *success_ptr);

        OptionValueArch *
        GetAsArch ();
        
        const OptionValueArch *
        GetAsArch () const;
        
        OptionValueArray *
        GetAsArray ();
        
        const OptionValueArray *
        GetAsArray () const;
        
        OptionValueArgs *
        GetAsArgs ();
        
        const OptionValueArgs *
        GetAsArgs () const;
        
        OptionValueBoolean *
        GetAsBoolean ();

        OptionValueChar *
        GetAsChar ();

        const OptionValueBoolean *
        GetAsBoolean () const;

        const OptionValueChar *
        GetAsChar () const;

        OptionValueDictionary *
        GetAsDictionary ();
        
        const OptionValueDictionary *
        GetAsDictionary () const;
        
        OptionValueEnumeration *
        GetAsEnumeration ();
        
        const OptionValueEnumeration *
        GetAsEnumeration () const;
        
        OptionValueFileSpec *
        GetAsFileSpec ();
        
        const OptionValueFileSpec *
        GetAsFileSpec () const;
        
        OptionValueFileSpecList *
        GetAsFileSpecList ();
        
        const OptionValueFileSpecList *
        GetAsFileSpecList () const;
        
        OptionValueFormat *
        GetAsFormat ();
        
        const OptionValueFormat *
        GetAsFormat () const;
        
        OptionValuePathMappings *
        GetAsPathMappings ();
        
        const OptionValuePathMappings *
        GetAsPathMappings () const;
        
        OptionValueProperties *
        GetAsProperties ();
        
        const OptionValueProperties *
        GetAsProperties () const;
        
        OptionValueRegex *
        GetAsRegex ();
        
        const OptionValueRegex *
        GetAsRegex () const;
        
        OptionValueSInt64 *
        GetAsSInt64 ();
        
        const OptionValueSInt64 *
        GetAsSInt64 () const;
        
        OptionValueString *
        GetAsString ();
        
        const OptionValueString *
        GetAsString () const;
        
        OptionValueUInt64 *
        GetAsUInt64 ();
        
        const OptionValueUInt64 *
        GetAsUInt64 () const;
        
        OptionValueUUID *
        GetAsUUID ();
        
        const OptionValueUUID *
        GetAsUUID () const;
        
        bool
        GetBooleanValue (bool fail_value = false) const;
        
        bool
        SetBooleanValue (bool new_value);

        char GetCharValue(char fail_value) const;

        char SetCharValue(char new_value);

        int64_t
        GetEnumerationValue (int64_t fail_value = -1) const;

        bool
        SetEnumerationValue (int64_t value);

        FileSpec
        GetFileSpecValue () const;
        
        bool
        SetFileSpecValue (const FileSpec &file_spec);

        FileSpecList
        GetFileSpecListValue () const;
        
        lldb::Format
        GetFormatValue (lldb::Format fail_value = lldb::eFormatDefault) const;

        bool
        SetFormatValue (lldb::Format new_value);

        const RegularExpression *
        GetRegexValue () const;

        int64_t
        GetSInt64Value (int64_t fail_value = 0) const;

        bool
        SetSInt64Value (int64_t new_value);

        const char *
        GetStringValue (const char *fail_value = NULL) const;

        bool
        SetStringValue (const char *new_value);

        uint64_t
        GetUInt64Value (uint64_t fail_value = 0) const;
        
        bool
        SetUInt64Value (uint64_t new_value);
        
        UUID
        GetUUIDValue () const;

        bool
        SetUUIDValue (const UUID &uuid);
        
        bool
        OptionWasSet () const
        {
            return m_value_was_set;
        }
        
        void
        SetOptionWasSet ()
        {
            m_value_was_set = true;
        }

        void
        SetParent (const lldb::OptionValueSP &parent_sp)
        {
            m_parent_wp = parent_sp;
        }

        void
        SetValueChangedCallback (OptionValueChangedCallback callback,
                                 void *baton)
        {
            assert (m_callback == NULL);
            m_callback = callback;
            m_baton = baton;
        }

        void
        NotifyValueChanged ()
        {
            if (m_callback)
                m_callback (m_baton, this);
        }
    protected:
        lldb::OptionValueWP m_parent_wp;
        OptionValueChangedCallback m_callback;
        void *m_baton;
        bool m_value_was_set; // This can be used to see if a value has been set
                              // by a call to SetValueFromCString(). It is often
                              // handy to know if an option value was set from
                              // the command line or as a setting, versus if we
                              // just have the default value that was already
                              // populated in the option value.
        
    };

} // namespace lldb_private

#endif  // liblldb_OptionValue_h_