46 lines
1.5 KiB
C
46 lines
1.5 KiB
C
|
|
//===-- ScriptedMetadata.h ------------------------------------ -*- C++ -*-===//
|
||
|
|
//
|
||
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
||
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
||
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||
|
|
//
|
||
|
|
//===----------------------------------------------------------------------===//
|
||
|
|
|
||
|
|
#ifndef LLDB_INTERPRETER_SCRIPTEDMETADATA_H
|
||
|
|
#define LLDB_INTERPRETER_SCRIPTEDMETADATA_H
|
||
|
|
|
||
|
|
#include "OptionGroupPythonClassWithDict.h"
|
||
|
|
|
||
|
|
#include "lldb/Host/Host.h"
|
||
|
|
#include "lldb/Host/ProcessLaunchInfo.h"
|
||
|
|
#include "lldb/Utility/StructuredData.h"
|
||
|
|
|
||
|
|
namespace lldb_private {
|
||
|
|
class ScriptedMetadata {
|
||
|
|
public:
|
||
|
|
ScriptedMetadata(llvm::StringRef class_name,
|
||
|
|
StructuredData::DictionarySP dict_sp)
|
||
|
|
: m_class_name(class_name.data()), m_args_sp(dict_sp) {}
|
||
|
|
|
||
|
|
ScriptedMetadata(const ProcessLaunchInfo &launch_info) {
|
||
|
|
m_class_name = launch_info.GetScriptedProcessClassName();
|
||
|
|
m_args_sp = launch_info.GetScriptedProcessDictionarySP();
|
||
|
|
}
|
||
|
|
|
||
|
|
ScriptedMetadata(const OptionGroupPythonClassWithDict &option_group) {
|
||
|
|
auto opt_group = const_cast<OptionGroupPythonClassWithDict &>(option_group);
|
||
|
|
m_class_name = opt_group.GetName();
|
||
|
|
m_args_sp = opt_group.GetStructuredData();
|
||
|
|
}
|
||
|
|
|
||
|
|
llvm::StringRef GetClassName() const { return m_class_name; }
|
||
|
|
StructuredData::DictionarySP GetArgsSP() const { return m_args_sp; }
|
||
|
|
|
||
|
|
private:
|
||
|
|
std::string m_class_name;
|
||
|
|
StructuredData::DictionarySP m_args_sp;
|
||
|
|
};
|
||
|
|
} // namespace lldb_private
|
||
|
|
|
||
|
|
#endif // LLDB_INTERPRETER_SCRIPTEDMETADATA_H
|