Skip to content
Snippets Groups Projects
Commit 699ef2dc authored by godzie44's avatar godzie44
Browse files

refactor(plugin): add additional logging at plugin loading

Closes 813
parent 8ce578ac
No related branches found
No related tags found
No related merge requests found
Pipeline #46415 failed
......@@ -451,4 +451,16 @@ impl ServiceRegistry {
Some(_) => Err(()),
}
}
/// Return a registered list of (service name, plugin version) pairs.
pub fn dump(&self) -> Vec<(String, String)> {
self.services
.keys()
.map(|key| {
let service = key.0.to_string();
let version = key.1.to_string();
(service, version)
})
.collect()
}
}
......@@ -118,8 +118,12 @@ impl PluginManager {
}
// trying to load a dynamic library
let Ok(lib) = (unsafe { LibraryWrapper::new(path) }) else {
continue;
let lib = match unsafe { LibraryWrapper::new(path.clone()) } {
Ok(lib) => lib,
Err(e) => {
tlog!(Warning, "error while open plugin candidate: {e}");
continue;
}
};
let lib = Rc::new(lib);
......@@ -133,6 +137,12 @@ impl PluginManager {
registrar(&mut registry);
});
tlog!(
Info,
"Plugin registry content from file {path:?}: {:?}",
registry.dump()
);
// validate all services to possible factory collisions
service_defs.iter().try_for_each(|svc| {
registry
......@@ -174,7 +184,12 @@ impl PluginManager {
}
if !service_defs_to_load.is_empty() {
return Err(PluginError::PartialLoad);
return Err(PluginError::PartialLoad(
service_defs_to_load
.into_iter()
.map(|def| def.name)
.collect(),
));
}
if dry_run {
......
......@@ -63,8 +63,8 @@ pub enum PluginError {
ReadPluginDir(#[from] io::Error),
#[error("Invalid shared object file: {0}")]
InvalidSharedObject(#[from] libloading::Error),
#[error("Plugin partial load (some of services not found)")]
PartialLoad,
#[error("Plugin partial load (some of services not found: {0:?})")]
PartialLoad(Vec<String>),
#[error("Callback: {0}")]
Callback(#[from] PluginCallbackError),
#[error("Attempt to call a disabled plugin")]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment