10 releases

new 1.0.0-alpha.5 Jul 26, 2024
1.0.0-alpha.2 Jun 21, 2024
0.11.0 Jun 4, 2024
0.10.1-rc Dec 20, 2023
0.5.0-beta.9 Nov 24, 2021

#1200 in Network programming

Download history 6407/week @ 2024-04-05 6733/week @ 2024-04-12 5630/week @ 2024-04-19 4794/week @ 2024-04-26 4163/week @ 2024-05-03 9377/week @ 2024-05-10 3874/week @ 2024-05-17 4769/week @ 2024-05-24 3579/week @ 2024-05-31 4551/week @ 2024-06-07 3845/week @ 2024-06-14 4909/week @ 2024-06-21 3500/week @ 2024-06-28 3220/week @ 2024-07-05 3912/week @ 2024-07-12 3217/week @ 2024-07-19

14,813 downloads per month
Used in 37 crates (14 directly)

EPL-2.0 OR Apache-2.0

465KB
10K SLoC

⚠️ WARNING ⚠️

This crate is intended for Zenoh's internal use.


lib.rs:

The plugin infrastructure for Zenoh.

To build a plugin, implement Plugin.

If building a plugin for zenohd, you should use the types exported in zenoh::plugins to fill Plugin's associated types.
To check your plugin typing for zenohd, have your plugin implement zenoh::plugins::ZenohPlugin

Plugin is a struct which implements the Plugin trait. This trait has two associated types:

  • StartArgs: the type of the arguments passed to the plugin's start function.
  • Instance: the type of the plugin's instance.

The actual work of the plugin is performed by the instance, which is created by the start function.

Plugins are loaded, started and stopped by PluginsManager. Stopping plugin is just dropping it's instance.

Plugins can be static and dynamic.

Static plugin is just a type which implements Plugin trait. It can be added to PluginsManager by PluginsManager::declare_static_plugin method.

Dynamic plugin is a shared library which exports set of C-repr (unmangled) functions which allows to check plugin compatibility and create plugin instance. These functiuons are defined automatically by declare_plugin macro.

Dependencies

~16–28MB
~416K SLoC