#include <shared_library.h>
|
static std::string | getOSName (const std::string &name) |
|
static std::string | prefix () |
|
static std::string | suffix () |
|
The SharedLibrary class dynamically loads shared libraries at run-time.
Definition at line 47 of file shared_library.h.
Enumerator |
---|
SHLIB_GLOBAL |
|
SHLIB_LOCAL |
On platforms that use dlopen(), use RTLD_GLOBAL. This is the default if no flags are given.
This flag is ignored on platforms that do not use dlopen().
|
Definition at line 52 of file shared_library.h.
BT::SharedLibrary::SharedLibrary |
( |
| ) |
|
BT::SharedLibrary::SharedLibrary |
( |
const std::string & |
path, |
|
|
int |
flags = 0 |
|
) |
| |
virtual BT::SharedLibrary::~SharedLibrary |
( |
| ) |
|
|
virtualdefault |
Creates a SharedLibrary object and loads a library from the given path, using the given flags. See the Flags enumeration for valid values.
Returns the platform-specific filename for shared libraries by prefixing and suffixing name with prefix() and suffix()
void * BT::SharedLibrary::findSymbol |
( |
const std::string & |
name | ) |
|
|
private |
std::string BT::SharedLibrary::getOSName |
( |
const std::string & |
name | ) |
|
|
static |
Returns the platform-specific filename suffix for shared libraries (including the period). In debug mode, the suffix also includes a "d" to specify the debug version of a library.
Definition at line 22 of file shared_library.cpp.
const std::string & BT::SharedLibrary::getPath |
( |
| ) |
const |
Returns the address of the symbol with the given name. For functions, this is the entry point of the function. Throws a NotFoundException if the symbol does not exist.
Definition at line 59 of file shared_library_UNIX.cpp.
void * BT::SharedLibrary::getSymbol |
( |
const std::string & |
name | ) |
|
Returns true iff the loaded library contains a symbol with the given name.
Definition at line 8 of file shared_library.cpp.
bool BT::SharedLibrary::hasSymbol |
( |
const std::string & |
name | ) |
|
bool BT::SharedLibrary::isLoaded |
( |
| ) |
const |
void BT::SharedLibrary::load |
( |
const std::string & |
path, |
|
|
int |
flags = 0 |
|
) |
| |
std::string BT::SharedLibrary::prefix |
( |
| ) |
|
|
static |
std::string BT::SharedLibrary::suffix |
( |
| ) |
|
|
static |
Returns the platform-specific filename prefix for shared libraries. Most platforms would return "lib" as prefix, while on Cygwin, the "cyg" prefix will be returned.
Definition at line 73 of file shared_library_UNIX.cpp.
void BT::SharedLibrary::unload |
( |
| ) |
|
Loads a shared library from the given path, using the given flags. See the Flags enumeration for valid values. Throws a LibraryAlreadyLoadedException if a library has already been loaded. Throws a LibraryLoadException if the library cannot be loaded.
Definition at line 31 of file shared_library_UNIX.cpp.
void* BT::SharedLibrary::_handle |
|
private |
std::mutex BT::SharedLibrary::_mutex |
|
private |
std::string BT::SharedLibrary::_path |
|
private |
The documentation for this class was generated from the following files: