Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedProcessPythonInterface.h
39688 views
1
//===-- ScriptedProcessPythonInterface.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
9
#ifndef LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_INTERFACES_SCRIPTEDPROCESSPYTHONINTERFACE_H
10
#define LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_INTERFACES_SCRIPTEDPROCESSPYTHONINTERFACE_H
11
12
#include "lldb/Host/Config.h"
13
14
#if LLDB_ENABLE_PYTHON
15
16
#include "ScriptedPythonInterface.h"
17
#include "lldb/Interpreter/Interfaces/ScriptedProcessInterface.h"
18
#include <optional>
19
20
namespace lldb_private {
21
class ScriptedProcessPythonInterface : public ScriptedProcessInterface,
22
public ScriptedPythonInterface {
23
public:
24
ScriptedProcessPythonInterface(ScriptInterpreterPythonImpl &interpreter);
25
26
llvm::Expected<StructuredData::GenericSP>
27
CreatePluginObject(const llvm::StringRef class_name,
28
ExecutionContext &exe_ctx,
29
StructuredData::DictionarySP args_sp,
30
StructuredData::Generic *script_obj = nullptr) override;
31
32
llvm::SmallVector<llvm::StringLiteral> GetAbstractMethods() const override {
33
return llvm::SmallVector<llvm::StringLiteral>(
34
{"read_memory_at_address", "is_alive", "get_scripted_thread_plugin"});
35
}
36
37
StructuredData::DictionarySP GetCapabilities() override;
38
39
Status Attach(const ProcessAttachInfo &attach_info) override;
40
41
Status Launch() override;
42
43
Status Resume() override;
44
45
std::optional<MemoryRegionInfo>
46
GetMemoryRegionContainingAddress(lldb::addr_t address,
47
Status &error) override;
48
49
StructuredData::DictionarySP GetThreadsInfo() override;
50
51
bool CreateBreakpoint(lldb::addr_t addr, Status &error) override;
52
53
lldb::DataExtractorSP ReadMemoryAtAddress(lldb::addr_t address, size_t size,
54
Status &error) override;
55
56
lldb::offset_t WriteMemoryAtAddress(lldb::addr_t addr,
57
lldb::DataExtractorSP data_sp,
58
Status &error) override;
59
60
StructuredData::ArraySP GetLoadedImages() override;
61
62
lldb::pid_t GetProcessID() override;
63
64
bool IsAlive() override;
65
66
std::optional<std::string> GetScriptedThreadPluginName() override;
67
68
StructuredData::DictionarySP GetMetadata() override;
69
70
private:
71
lldb::ScriptedThreadInterfaceSP CreateScriptedThreadInterface() override;
72
};
73
} // namespace lldb_private
74
75
#endif // LLDB_ENABLE_PYTHON
76
#endif // LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_INTERFACES_SCRIPTEDPROCESSPYTHONINTERFACE_H
77
78