
This patch tries to fix an issue with the windows debug builds where the PDB file for python scripted interfaces cannot be opened since its path length exceed the windows `MAX_PATH` limit: https://github.com/llvm/llvm-project/pull/101672#issuecomment-2289481324 This patch addresses the issue by building all the interfaces as a single library plugin that initiliazes each component as part of its `Initialize` method, instead of building each interface as its own library plugin. This keeps the build artifact path length smaller while respecting the naming convention and without making any exception in the build system. Fixes #104895. Signed-off-by: Med Ismail Bennani <ismail@bennani.ma>
109 lines
3.6 KiB
C++
109 lines
3.6 KiB
C++
//===-- ScriptedPlatformPythonInterface.cpp -------------------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "lldb/Core/PluginManager.h"
|
|
#include "lldb/Host/Config.h"
|
|
#include "lldb/Target/ExecutionContext.h"
|
|
#include "lldb/Utility/Log.h"
|
|
#include "lldb/Utility/Status.h"
|
|
#include "lldb/lldb-enumerations.h"
|
|
|
|
#if LLDB_ENABLE_PYTHON
|
|
|
|
// clang-format off
|
|
// LLDB Python header must be included first
|
|
#include "../lldb-python.h"
|
|
//clang-format on
|
|
|
|
#include "../SWIGPythonBridge.h"
|
|
#include "../ScriptInterpreterPythonImpl.h"
|
|
#include "ScriptedPlatformPythonInterface.h"
|
|
|
|
using namespace lldb;
|
|
using namespace lldb_private;
|
|
using namespace lldb_private::python;
|
|
using Locker = ScriptInterpreterPythonImpl::Locker;
|
|
|
|
ScriptedPlatformPythonInterface::ScriptedPlatformPythonInterface(
|
|
ScriptInterpreterPythonImpl &interpreter)
|
|
: ScriptedPlatformInterface(), ScriptedPythonInterface(interpreter) {}
|
|
|
|
llvm::Expected<StructuredData::GenericSP>
|
|
ScriptedPlatformPythonInterface::CreatePluginObject(
|
|
llvm::StringRef class_name, ExecutionContext &exe_ctx,
|
|
StructuredData::DictionarySP args_sp, StructuredData::Generic *script_obj) {
|
|
ExecutionContextRefSP exe_ctx_ref_sp =
|
|
std::make_shared<ExecutionContextRef>(exe_ctx);
|
|
StructuredDataImpl sd_impl(args_sp);
|
|
return ScriptedPythonInterface::CreatePluginObject(class_name, script_obj,
|
|
exe_ctx_ref_sp, sd_impl);
|
|
}
|
|
|
|
StructuredData::DictionarySP ScriptedPlatformPythonInterface::ListProcesses() {
|
|
Status error;
|
|
StructuredData::DictionarySP dict_sp =
|
|
Dispatch<StructuredData::DictionarySP>("list_processes", error);
|
|
|
|
if (!dict_sp || !dict_sp->IsValid() || error.Fail()) {
|
|
return ScriptedInterface::ErrorWithMessage<StructuredData::DictionarySP>(
|
|
LLVM_PRETTY_FUNCTION,
|
|
llvm::Twine("Null or invalid object (" +
|
|
llvm::Twine(error.AsCString()) + llvm::Twine(")."))
|
|
.str(),
|
|
error);
|
|
}
|
|
|
|
return dict_sp;
|
|
}
|
|
|
|
StructuredData::DictionarySP
|
|
ScriptedPlatformPythonInterface::GetProcessInfo(lldb::pid_t pid) {
|
|
Status error;
|
|
StructuredData::DictionarySP dict_sp =
|
|
Dispatch<StructuredData::DictionarySP>("get_process_info", error, pid);
|
|
|
|
if (!dict_sp || !dict_sp->IsValid() || error.Fail()) {
|
|
return ScriptedInterface::ErrorWithMessage<StructuredData::DictionarySP>(
|
|
LLVM_PRETTY_FUNCTION,
|
|
llvm::Twine("Null or invalid object (" +
|
|
llvm::Twine(error.AsCString()) + llvm::Twine(")."))
|
|
.str(),
|
|
error);
|
|
}
|
|
|
|
return dict_sp;
|
|
}
|
|
|
|
Status ScriptedPlatformPythonInterface::AttachToProcess(
|
|
ProcessAttachInfoSP attach_info) {
|
|
// FIXME: Pass `attach_info` to method call
|
|
return GetStatusFromMethod("attach_to_process");
|
|
}
|
|
|
|
Status ScriptedPlatformPythonInterface::LaunchProcess(
|
|
ProcessLaunchInfoSP launch_info) {
|
|
// FIXME: Pass `launch_info` to method call
|
|
return GetStatusFromMethod("launch_process");
|
|
}
|
|
|
|
Status ScriptedPlatformPythonInterface::KillProcess(lldb::pid_t pid) {
|
|
return GetStatusFromMethod("kill_process", pid);
|
|
}
|
|
|
|
void ScriptedPlatformPythonInterface::Initialize() {
|
|
PluginManager::RegisterPlugin(
|
|
GetPluginNameStatic(), "Mock platform and interact with its processes.",
|
|
CreateInstance, eScriptLanguagePython, {});
|
|
}
|
|
|
|
void ScriptedPlatformPythonInterface::Terminate() {
|
|
PluginManager::UnregisterPlugin(CreateInstance);
|
|
}
|
|
|
|
#endif // LLDB_ENABLE_PYTHON
|