Documentation ¶
Overview ¶
Package catalog is used to register internal plugins such that they can be loaded.
Index ¶
- func Catalog() map[loader.PluginID]*Registration
- func Register(id loader.PluginID, config *loader.InternalPluginConfig)
- func RegisterDeferredConfig(id loader.PluginID, config *loader.InternalPluginConfig, ...)
- func TestPluginLoader(t testing.T) loader.PluginCatalog
- func TestPluginLoaderWithOptions(t testing.T, pluginDir string, options map[string]string, ...) loader.PluginCatalog
- type ConfigFromOptions
- type Registration
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Catalog ¶
func Catalog() map[loader.PluginID]*Registration
Catalog returns the catalog of internal plugins
func Register ¶
func Register(id loader.PluginID, config *loader.InternalPluginConfig)
Register is used to register an internal plugin.
func RegisterDeferredConfig ¶
func RegisterDeferredConfig(id loader.PluginID, config *loader.InternalPluginConfig, configLoader ConfigFromOptions)
RegisterDeferredConfig is used to register an internal plugin that sets its config using the client's option map.
func TestPluginLoader ¶
func TestPluginLoader(t testing.T) loader.PluginCatalog
TestPluginLoader returns a plugin loader populated only with internal plugins
func TestPluginLoaderWithOptions ¶
func TestPluginLoaderWithOptions(t testing.T, pluginDir string, options map[string]string, configs []*config.PluginConfig) loader.PluginCatalog
TestPluginLoaderWithOptions allows configuring the plugin loader fully.
Types ¶
type ConfigFromOptions ¶
ConfigFromOptions is used to retrieve a plugin config when passed a node's option map. This allows upgrade pathing from the old configuration format to the new config format.
type Registration ¶
type Registration struct { Config *loader.InternalPluginConfig ConfigLoader ConfigFromOptions }
Registration is the registration of an internal plugin