Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
picodata
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
picodata
Commits
699ef2dc
Commit
699ef2dc
authored
8 months ago
by
godzie44
Browse files
Options
Downloads
Patches
Plain Diff
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
8 months ago
Stage: test
Stage: stress-test
Stage: front-deploy
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
picoplugin/src/plugin/interface.rs
+12
-0
12 additions, 0 deletions
picoplugin/src/plugin/interface.rs
src/plugin/manager.rs
+18
-3
18 additions, 3 deletions
src/plugin/manager.rs
src/plugin/mod.rs
+2
-2
2 additions, 2 deletions
src/plugin/mod.rs
with
32 additions
and
5 deletions
picoplugin/src/plugin/interface.rs
+
12
−
0
View file @
699ef2dc
...
...
@@ -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
()
}
}
This diff is collapsed.
Click to expand it.
src/plugin/manager.rs
+
18
−
3
View file @
699ef2dc
...
...
@@ -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
{
...
...
This diff is collapsed.
Click to expand it.
src/plugin/mod.rs
+
2
−
2
View file @
699ef2dc
...
...
@@ -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"
)]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment