This patch adds `get_priority()` support to synthetic frame providers to enable priority-based selection when multiple providers match a thread. This is the first step toward supporting frame provider chaining for visualizing coroutines, Swift async tasks, and et al. Priority ordering follows Unix nice convention where lower numbers indicate higher priority (0 = highest). Providers without explicit priority return `std::nullopt`, which maps to UINT32_MAX (lowest priority), ensuring backward compatibility with existing providers. The implementation adds `GetPriority()` as a virtual method to `SyntheticFrameProvider` base class, implements it through the scripting interface hierarchy (`ScriptedFrameProviderInterface` and `ScriptedFrameProviderPythonInterface`), and updates `Thread::GetStackFrameList()` to sort applicable providers by priority before attempting to load them. Python frame providers can now specify priority: ```python @staticmethod def get_priority(): return 10 # Or return None for default priority. ``` Signed-off-by: Med Ismail Bennani <ismail@bennani.ma>
132 lines
4.6 KiB
C++
132 lines
4.6 KiB
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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "lldb/Core/PluginManager.h"
|
|
#include "lldb/Host/Config.h"
|
|
#include "lldb/Target/Thread.h"
|
|
#include "lldb/Utility/Log.h"
|
|
#include "lldb/lldb-enumerations.h"
|
|
|
|
#if LLDB_ENABLE_PYTHON
|
|
|
|
// LLDB Python header must be included first
|
|
#include "../lldb-python.h"
|
|
|
|
#include "../SWIGPythonBridge.h"
|
|
#include "../ScriptInterpreterPythonImpl.h"
|
|
#include "ScriptedFrameProviderPythonInterface.h"
|
|
#include <optional>
|
|
|
|
using namespace lldb;
|
|
using namespace lldb_private;
|
|
using namespace lldb_private::python;
|
|
using Locker = ScriptInterpreterPythonImpl::Locker;
|
|
|
|
ScriptedFrameProviderPythonInterface::ScriptedFrameProviderPythonInterface(
|
|
ScriptInterpreterPythonImpl &interpreter)
|
|
: ScriptedFrameProviderInterface(), ScriptedPythonInterface(interpreter) {}
|
|
|
|
bool ScriptedFrameProviderPythonInterface::AppliesToThread(
|
|
llvm::StringRef class_name, lldb::ThreadSP thread_sp) {
|
|
// If there is any issue with this method, we will just assume it also applies
|
|
// to this thread which is the default behavior.
|
|
constexpr bool fail_value = true;
|
|
Status error;
|
|
StructuredData::ObjectSP obj =
|
|
CallStaticMethod(class_name, "applies_to_thread", error, thread_sp);
|
|
if (!ScriptedInterface::CheckStructuredDataObject(LLVM_PRETTY_FUNCTION, obj,
|
|
error))
|
|
return fail_value;
|
|
|
|
return obj->GetBooleanValue(fail_value);
|
|
}
|
|
|
|
llvm::Expected<StructuredData::GenericSP>
|
|
ScriptedFrameProviderPythonInterface::CreatePluginObject(
|
|
const llvm::StringRef class_name, lldb::StackFrameListSP input_frames,
|
|
StructuredData::DictionarySP args_sp) {
|
|
if (!input_frames)
|
|
return llvm::createStringError("invalid frame list");
|
|
|
|
StructuredDataImpl sd_impl(args_sp);
|
|
return ScriptedPythonInterface::CreatePluginObject(class_name, nullptr,
|
|
input_frames, sd_impl);
|
|
}
|
|
|
|
std::string ScriptedFrameProviderPythonInterface::GetDescription(
|
|
llvm::StringRef class_name) {
|
|
Status error;
|
|
StructuredData::ObjectSP obj =
|
|
CallStaticMethod(class_name, "get_description", error);
|
|
if (!ScriptedInterface::CheckStructuredDataObject(LLVM_PRETTY_FUNCTION, obj,
|
|
error))
|
|
return {};
|
|
|
|
return obj->GetStringValue().str();
|
|
}
|
|
|
|
std::optional<uint32_t>
|
|
ScriptedFrameProviderPythonInterface::GetPriority(llvm::StringRef class_name) {
|
|
Status error;
|
|
StructuredData::ObjectSP obj =
|
|
CallStaticMethod(class_name, "get_priority", error);
|
|
|
|
if (!ScriptedInterface::CheckStructuredDataObject(LLVM_PRETTY_FUNCTION, obj,
|
|
error))
|
|
return std::nullopt;
|
|
|
|
// Try to extract as unsigned integer. Return nullopt if Python returned None
|
|
// or if extraction fails.
|
|
if (StructuredData::UnsignedInteger *int_obj = obj->GetAsUnsignedInteger())
|
|
return static_cast<uint32_t>(int_obj->GetValue());
|
|
|
|
return std::nullopt;
|
|
}
|
|
|
|
StructuredData::ObjectSP
|
|
ScriptedFrameProviderPythonInterface::GetFrameAtIndex(uint32_t index) {
|
|
Status error;
|
|
StructuredData::ObjectSP obj = Dispatch("get_frame_at_index", error, index);
|
|
|
|
if (!ScriptedInterface::CheckStructuredDataObject(LLVM_PRETTY_FUNCTION, obj,
|
|
error))
|
|
return {};
|
|
|
|
return obj;
|
|
}
|
|
|
|
bool ScriptedFrameProviderPythonInterface::CreateInstance(
|
|
lldb::ScriptLanguage language, ScriptedInterfaceUsages usages) {
|
|
if (language != eScriptLanguagePython)
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
void ScriptedFrameProviderPythonInterface::Initialize() {
|
|
const std::vector<llvm::StringRef> ci_usages = {
|
|
"target frame-provider register -C <script-name> [-k key -v value ...]",
|
|
"target frame-provider list",
|
|
"target frame-provider remove <provider-name>",
|
|
"target frame-provider clear"};
|
|
const std::vector<llvm::StringRef> api_usages = {
|
|
"SBTarget.RegisterScriptedFrameProvider",
|
|
"SBTarget.RemoveScriptedFrameProvider",
|
|
"SBTarget.ClearScriptedFrameProvider"};
|
|
PluginManager::RegisterPlugin(
|
|
GetPluginNameStatic(),
|
|
llvm::StringRef("Provide scripted stack frames for threads"),
|
|
CreateInstance, eScriptLanguagePython, {ci_usages, api_usages});
|
|
}
|
|
|
|
void ScriptedFrameProviderPythonInterface::Terminate() {
|
|
PluginManager::UnregisterPlugin(CreateInstance);
|
|
}
|
|
|
|
#endif
|