blob: 1f663e999b9d0dd6571df038a1c95e2a38695206 [file] [log] [blame]
Andrew Walbran3d2c1972020-04-07 12:24:26 +01001//===-- OptionValueUUID.h --------------------------------------*- C++ -*-===//
2//
3// 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
6//
7//===----------------------------------------------------------------------===//
8
Olivier Deprezf4ef2d02021-04-20 13:36:24 +02009#ifndef LLDB_INTERPRETER_OPTIONVALUEUUID_H
10#define LLDB_INTERPRETER_OPTIONVALUEUUID_H
Andrew Walbran3d2c1972020-04-07 12:24:26 +010011
12#include "lldb/Utility/UUID.h"
13#include "lldb/Interpreter/OptionValue.h"
14
15namespace lldb_private {
16
17class OptionValueUUID : public OptionValue {
18public:
19 OptionValueUUID() : OptionValue(), m_uuid() {}
20
21 OptionValueUUID(const UUID &uuid) : OptionValue(), m_uuid(uuid) {}
22
23 ~OptionValueUUID() override {}
24
25 // Virtual subclass pure virtual overrides
26
27 OptionValue::Type GetType() const override { return eTypeUUID; }
28
29 void DumpValue(const ExecutionContext *exe_ctx, Stream &strm,
30 uint32_t dump_mask) override;
31
32 Status
33 SetValueFromString(llvm::StringRef value,
34 VarSetOperationType op = eVarSetOperationAssign) override;
35 Status
36 SetValueFromString(const char *,
37 VarSetOperationType = eVarSetOperationAssign) = delete;
38
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020039 void Clear() override {
Andrew Walbran3d2c1972020-04-07 12:24:26 +010040 m_uuid.Clear();
41 m_value_was_set = false;
Andrew Walbran3d2c1972020-04-07 12:24:26 +010042 }
43
44 lldb::OptionValueSP DeepCopy() const override;
45
46 // Subclass specific functions
47
48 UUID &GetCurrentValue() { return m_uuid; }
49
50 const UUID &GetCurrentValue() const { return m_uuid; }
51
52 void SetCurrentValue(const UUID &value) { m_uuid = value; }
53
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020054 void AutoComplete(CommandInterpreter &interpreter,
55 CompletionRequest &request) override;
Andrew Walbran3d2c1972020-04-07 12:24:26 +010056
57protected:
58 UUID m_uuid;
59};
60
61} // namespace lldb_private
62
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020063#endif // LLDB_INTERPRETER_OPTIONVALUEUUID_H