[mlir] Update Ch-2.md (#121379)
[llvm-project.git] / lldb / source / Plugins / ScriptInterpreter / Python / Interfaces / OperatingSystemPythonInterface.h
blob102c3c39537686c1a1b0e16388d7ee3672a8d914
1 //===-- OperatingSystemPythonInterface.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 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_INTERFACES_OPERATINGSYSTEMPYTHONINTERFACE_H
10 #define LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_INTERFACES_OPERATINGSYSTEMPYTHONINTERFACE_H
12 #include "lldb/Host/Config.h"
13 #include "lldb/Interpreter/Interfaces/OperatingSystemInterface.h"
15 #if LLDB_ENABLE_PYTHON
17 #include "ScriptedThreadPythonInterface.h"
19 #include <optional>
21 namespace lldb_private {
22 class OperatingSystemPythonInterface
23 : virtual public OperatingSystemInterface,
24 virtual public ScriptedThreadPythonInterface,
25 public PluginInterface {
26 public:
27 OperatingSystemPythonInterface(ScriptInterpreterPythonImpl &interpreter);
29 llvm::Expected<StructuredData::GenericSP>
30 CreatePluginObject(llvm::StringRef class_name, ExecutionContext &exe_ctx,
31 StructuredData::DictionarySP args_sp,
32 StructuredData::Generic *script_obj = nullptr) override;
34 llvm::SmallVector<AbstractMethodRequirement>
35 GetAbstractMethodRequirements() const override {
36 return llvm::SmallVector<AbstractMethodRequirement>({{"get_thread_info"}});
39 StructuredData::DictionarySP CreateThread(lldb::tid_t tid,
40 lldb::addr_t context) override;
42 StructuredData::ArraySP GetThreadInfo() override;
44 StructuredData::DictionarySP GetRegisterInfo() override;
46 std::optional<std::string> GetRegisterContextForTID(lldb::tid_t tid) override;
48 static void Initialize();
50 static void Terminate();
52 static llvm::StringRef GetPluginNameStatic() {
53 return "OperatingSystemPythonInterface";
56 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); }
58 } // namespace lldb_private
60 #endif // LLDB_ENABLE_PYTHON
61 #endif // LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_INTERFACES_OPERATINGSYSTEMPYTHONINTERFACE_H