Classes | Public Types | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes | List of all members
RTT::plugin::PluginLoader Class Reference

#include <PluginLoader.hpp>

Classes

class  LoadedLib
 

Public Types

typedef boost::shared_ptr< PluginLoadershared_ptr
 

Public Member Functions

std::string getPluginPath () const
 
bool isLoaded (std::string name)
 
std::vector< std::string > listPlugins () const
 
std::vector< std::string > listServices () const
 
std::vector< std::string > listTypekits () const
 
bool loadLibrary (std::string const &path)
 
bool loadPlugin (std::string const &name, std::string const &path_list)
 
bool loadPlugins (std::string const &path_list)
 
bool loadService (std::string const &servicename, TaskContext *tc)
 
bool loadTypekit (std::string const &name, std::string const &path_list)
 
bool loadTypekits (std::string const &path_list)
 
 PluginLoader ()
 
void setPluginPath (std::string const &newpath)
 
 ~PluginLoader ()
 

Static Public Member Functions

static boost::shared_ptr< PluginLoaderInstance ()
 
static void Release ()
 

Private Member Functions

bool isCompatiblePlugin (std::string const &filepath)
 
bool isLoadedInternal (std::string name)
 
bool loadInProcess (std::string filename, std::string shortname, std::string kind, bool log_error)
 
bool loadPluginInternal (std::string const &name, std::string const &path_list, std::string const &subdir, std::string const &kind)
 
bool loadPluginsInternal (std::string const &path_list, std::string const &subdir, std::string const &kind)
 

Private Attributes

os::MutexRecursive listlock
 
std::vector< LoadedLibloadedLibs
 
std::string plugin_path
 

Detailed Description

Loads plugins found on the filesystem and keeps track of found plugins, typekits and services. It has no facilities of unloading plugins. Plugins remain in memory until the process terminates.

Plugin Paths

The PluginLoader reads the RTT_COMPONENT_PATH variable when the application starts and stores it using setPluginPath(). Paths are scanned in this order:

** First the paths specified by the function argument path_list if the function takes such argument ** Second the paths specified using the setPluginPath() function.

If neither is specified, it looks for plugins in the current directory (".").

See also
Plugin.hpp

Definition at line 68 of file PluginLoader.hpp.

Member Typedef Documentation

Definition at line 157 of file PluginLoader.hpp.

Constructor & Destructor Documentation

PluginLoader::PluginLoader ( )

Definition at line 312 of file PluginLoader.cpp.

PluginLoader::~PluginLoader ( )

Definition at line 313 of file PluginLoader.cpp.

Member Function Documentation

std::string PluginLoader::getPluginPath ( ) const

Returns the current plugin path list. Defaults to the value of RTT_COMPONENT_PATH, when the RTT was started for the current process.

Returns
A colon separated list of paths or the empty string if not set.

Definition at line 779 of file PluginLoader.cpp.

boost::shared_ptr< PluginLoader > PluginLoader::Instance ( )
static

Create the instance of the PluginLoader. It will keep track of the loaded libraries for this process.

Returns
A singleton.

Definition at line 316 of file PluginLoader.cpp.

bool PluginLoader::isCompatiblePlugin ( std::string const &  filepath)
private

Internal helper function that validate if a plugin is compatible with the current target. Currently, there's a validation only on the win32 platform to avoid mixing debug/release runtime libraries.

Parameters
filepathFull path of plugin to validate (with extension)
Returns
true if the plugin is compatible

Definition at line 789 of file PluginLoader.cpp.

bool PluginLoader::isLoaded ( std::string  name)

Checks if a given plugin or filename has been loaded. This function accepts full filenames ('libthe_plugin.so.1.99.0'), short names ('the_plugin') or the name provided by the plugin ('The Plugin').

Parameters
namename of a file or the plugin name.
Returns
true if so.

Definition at line 622 of file PluginLoader.cpp.

bool PluginLoader::isLoadedInternal ( std::string  name)
private

This function does not hold the listlock.

See also
isLoaded()

Definition at line 628 of file PluginLoader.cpp.

std::vector< std::string > PluginLoader::listPlugins ( ) const

Lists all plugins (= services + typekits) discovered by the PluginLoader.

Returns
A list of plugin names

Definition at line 760 of file PluginLoader.cpp.

std::vector< std::string > PluginLoader::listServices ( ) const

Lists all services discovered by the PluginLoader.

Returns
A list of service names

Definition at line 750 of file PluginLoader.cpp.

std::vector< std::string > PluginLoader::listTypekits ( ) const

Lists all typekits discovered by the PluginLoader.

Returns
A list of typekit names

Definition at line 769 of file PluginLoader.cpp.

bool PluginLoader::loadInProcess ( std::string  filename,
std::string  shortname,
std::string  kind,
bool  log_error 
)
private

Internal function that does all library loading.

Parameters
filenameThe path+filename to open
shortnameThe short name of this file
kindThe kind of plugin to load: 'plugin' or 'typekit'.
log_errorLog errors to users. Set to false in case you are poking files to see if they can be loaded.
Returns
true if a new library was loaded or if this library was already loaded.

Definition at line 643 of file PluginLoader.cpp.

bool PluginLoader::loadLibrary ( std::string const &  path)

Loads a library as plugin or typekit.

Parameters
pathan absolute or relative path to a library. Relative paths are interpreted with regard to the plugin path.

Definition at line 463 of file PluginLoader.cpp.

bool PluginLoader::loadPlugin ( std::string const &  name,
std::string const &  path_list 
)

Loads a plugin found in the 'plugins/' subdirectory of each path in path_list in the current process.

Parameters
nameThe name of the plugin to load, must match the library name (without lib/dll/so pre-/suffixes).
path_listA colon or semi-colon seperated list of paths to look for plugins. May be the empty string.
Exceptions
std::runtime_exceptionif the found plugin refused to load.

Definition at line 337 of file PluginLoader.cpp.

bool PluginLoader::loadPluginInternal ( std::string const &  name,
std::string const &  path_list,
std::string const &  subdir,
std::string const &  kind 
)
private

Helper function for loadTypekit and loadPlugin.

Parameters
name
path_list
subdir
kind
Returns
false if no plugins were found
Exceptions
std::runtime_exceptionif one of the found plugins refused to load.

Definition at line 552 of file PluginLoader.cpp.

bool PluginLoader::loadPlugins ( std::string const &  path_list)

Loads any plugin found in the 'plugins/' subdirectory of each path in path_list in the current process.

Returns
false if some typekit caused an error, or some path was not found.
Parameters
path_listA colon or semi-colon seperated list of paths to look for plugins. May be the empty string.
Exceptions
std::runtime_exceptionif one of the found plugin refused to load.

Definition at line 342 of file PluginLoader.cpp.

bool PluginLoader::loadPluginsInternal ( std::string const &  path_list,
std::string const &  subdir,
std::string const &  kind 
)
private

Helper function for loadTypekits and loadPlugins.

Parameters
path_list
subdir
kind
Returns
false if no plugins were found
Exceptions
std::runtime_exceptionif one of the found plugins refused to load.

Definition at line 395 of file PluginLoader.cpp.

bool PluginLoader::loadService ( std::string const &  servicename,
TaskContext tc 
)

Loads an earlier discovered service into a TaskContext.

Parameters
servicenameThe name of the service or plugin containing the service
tcThe TaskContext to load into.
Returns
false if the service or plugin refused to load into the TaskContext.

Definition at line 347 of file PluginLoader.cpp.

bool PluginLoader::loadTypekit ( std::string const &  name,
std::string const &  path_list 
)

Load a typekit found in the 'types/' subdirectory of a package present in path_list.

Parameters
nameThe name of the package (a directory name) which contains the typekit you wish to load.
path_listA colon or semi-colon seperated list of paths to look for the name subdirectory. If this list is empty, the current plugin path is searched and the current working directory.
Exceptions
std::runtime_exceptionif the found typekit refused to load.

Definition at line 332 of file PluginLoader.cpp.

bool PluginLoader::loadTypekits ( std::string const &  path_list)

Load any typekit found in the 'types/' subdirectory of each path in path_list in the process. This is not a 'smart' function. It will only look into that directory and will not try to guess a target specific subdir or any other means for locating typekits.

Returns
false if some typekit caused an error, or some path was not found or if path_list was empty.
Parameters
path_listA colon or semi-colon seperated list of paths to look for typekits. No other paths will be searched.
Exceptions
std::runtime_exceptionif one of the found typekits refused to load.

Definition at line 327 of file PluginLoader.cpp.

void PluginLoader::Release ( )
static

Release the PluginLoader, erasing all knowledge of loaded libraries. No libraries will be unloaded from the process.

Definition at line 323 of file PluginLoader.cpp.

void PluginLoader::setPluginPath ( std::string const &  newpath)

Sets the plugin path list. This is typically done by RTT startup code with the contents of the RTT_COMPONENT_PATH variable.

Parameters
newpathThe new paths to look for plugins.

Definition at line 784 of file PluginLoader.cpp.

Member Data Documentation

os::MutexRecursive RTT::plugin::PluginLoader::listlock
mutableprivate

Protects for concurrent access of this shared object.

Definition at line 108 of file PluginLoader.hpp.

std::vector< LoadedLib > RTT::plugin::PluginLoader::loadedLibs
private

Definition at line 98 of file PluginLoader.hpp.

std::string RTT::plugin::PluginLoader::plugin_path
private

Path to look for if all else fails.

Definition at line 103 of file PluginLoader.hpp.


The documentation for this class was generated from the following files:


rtt
Author(s): RTT Developers
autogenerated on Fri Oct 25 2019 03:59:47