...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::dll::import_alias
// In header: <boost/dll/import.hpp> template<typename T> result_type import_alias(const boost::filesystem::path & lib, const char * name, load_mode::type mode = load_mode::default_mode); template<typename T> result_type import_alias(const boost::filesystem::path & lib, const std::string & name, load_mode::type mode = load_mode::default_mode); template<typename T> result_type import_alias(const shared_library & lib, const char * name); template<typename T> result_type import_alias(const shared_library & lib, const std::string & name); template<typename T> result_type import_alias(shared_library && lib, const char * name); template<typename T> result_type import_alias(shared_library && lib, const std::string & name);
Returns callable object or boost::shared_ptr<T> that holds the symbol imported from the loaded library. Returned value refcounts usage of the loaded shared library, so that it won't get unload until all copies of return value are not destroyed.
This call will succeed if call to boost::dll::shared_library::has(const char* )
function with the same symbol name returned true
.
For importing symbols by non alias names use boost::dll::import method.
Examples:
boost::function<int(int)> f = import_alias<int(int)>("test_lib.so", "integer_func_alias_name"); auto f_cpp11 = import_alias<int(int)>("test_lib.so", "integer_func_alias_name");
boost::shared_ptr<int> i = import_alias<int>("test_lib.so", "integer_alias_name");
Template parameter T: Type of the symbol alias that we are going to import. Must be explicitly specified.
Parameters: |
|
||||||
Returns: |
callable object if T is a function type, or boost::shared_ptr<T> if T is an object type. |
||||||
Throws: |
boost::system::system_error if symbol does not exist or if the DLL/DSO was not loaded. Overload that accepts path also throws std::bad_alloc in case of insufficient memory. |