Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Class smart_library

boost::dll::experimental::smart_library — This class is an extension of shared_library, which allows to load C++ symbols.

Synopsis

// In header: <boost/dll/smart_library.hpp>


class smart_library {
public:
  // construct/copy/destruct
  smart_library() noexcept;
  smart_library(const boost::filesystem::path &, 
                load_mode::type = load_mode::default_mode);
  smart_library(const boost::filesystem::path &, boost::system::error_code &, 
                load_mode::type = load_mode::default_mode);
  smart_library(const boost::filesystem::path &, load_mode::type, 
                boost::system::error_code &);
  smart_library(smart_library &&) noexcept;
  ~smart_library();

  // public member functions
  const shared_library & shared_lib() const;
  const mangled_storage & symbol_storage() const;
  void load(const boost::filesystem::path &, 
            load_mode::type = load_mode::default_mode);
  void load(const boost::filesystem::path &, boost::system::error_code &, 
            load_mode::type = load_mode::default_mode);
  void load(const boost::filesystem::path &, load_mode::type, 
            boost::system::error_code &);
  template<typename T> T & get_variable(const std::string &);
  template<typename Func> Func & get_function(const std::string &);
  template<typename Class, typename Func> 
    unspecified get_mem_fn(const std::string &);
  template<typename Signature> constructor< Signature > get_constructor();
  template<typename Class> destructor< Class > get_destructor();
  template<typename Alias> void add_type_alias(const std::string &);
  void unload() noexcept;
  bool is_loaded() const noexcept;
  bool operator!() const noexcept;
  explicit operator bool() const noexcept;
  bool has(const char *) const noexcept;
  bool has(const std::string &) const noexcept;
  smart_library & assign(const smart_library &);
  void swap(smart_library &) noexcept;
};

Description

This class allows type safe loading of overloaded functions, member-functions, constructors and variables. It also allows to overwrite classes so they can be loaded, while being declared with different names.

[Warning] Warning

Is still very experimental.

Currently known limitations:

Member functions must be defined outside of the class to be exported. That is:

 //not exported:
 struct BOOST_SYMBOL_EXPORT my_class { void func() {}};
 //exported
 struct BOOST_SYMBOL_EXPORT my_class { void func();};
 void my_class::func() {};

With the current analysis, the first version does get exported in MSVC. MinGW also does export it, BOOST_SYMBOL_EXPORT is written before it. To allow this on windows one can use BOOST_DLL_MEMBER_EXPORT for this, so that MinGW and MSVC can provide those functions. This does however not work with gcc on linux.

Direct initialization of members. On linux the following member variable i will not be initialized when using the allocating contructor:

 struct BOOST_SYMBOL_EXPORT my_class { int i; my_class() : i(42) {} };

This does however not happen when the value is set inside the constructor function.

smart_library public construct/copy/destruct

  1. smart_library() noexcept;

    Creates in anstance that does not reference any DLL/DSO.

  2. smart_library(const boost::filesystem::path & lib_path, 
                  load_mode::type mode = load_mode::default_mode);

    Creates in anstance that does not reference any DLL/DSO.

    (const boost::filesystem::path& lib_path, load_mode::type mode = load_mode::default_mode)

  3. smart_library(const boost::filesystem::path & lib_path, 
                  boost::system::error_code & ec, 
                  load_mode::type mode = load_mode::default_mode);

    Creates in anstance that does not reference any DLL/DSO.

    (const boost::filesystem::path& lib_path, boost::system::error_code& ec, load_mode::type mode = load_mode::default_mode)

  4. smart_library(const boost::filesystem::path & lib_path, load_mode::type mode, 
                  boost::system::error_code & ec);

    This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

  5. smart_library(smart_library && lib) noexcept;

    Creates in anstance that does not reference any DLL/DSO.

    (BOOST_RV_REF(smart_library) lib)

  6. ~smart_library();

    Destroys the object by calling `unload()`. If library was loaded multiple times by different instances, the actual DLL/DSO won't be unloaded until there is at least one instance that references the DLL/DSO.

smart_library public member functions

  1. const shared_library & shared_lib() const;

    Get the underlying shared_library

  2. const mangled_storage & symbol_storage() const;

    Acces to the mangled storage, which is created on construction.

    Throws:

    Nothing.
  3. void load(const boost::filesystem::path & lib_path, 
              load_mode::type mode = load_mode::default_mode);

    Loads a library by specified path with a specified mode.

    Note that if some library is already loaded in this instance, load will call unload() and then load the new provided library.

    (const boost::filesystem::path& lib_path, load_mode::type mode = load_mode::default_mode)

    Parameters:

    lib_path

    Library file name. Can handle std::string, const char*, std::wstring, const wchar_t* or boost::filesystem::path.

    mode

    A mode that will be used on library load.

  4. void load(const boost::filesystem::path & lib_path, 
              boost::system::error_code & ec, 
              load_mode::type mode = load_mode::default_mode);

    Loads a library by specified path with a specified mode.

    Note that if some library is already loaded in this instance, load will call unload() and then load the new provided library.

    (const boost::filesystem::path& lib_path, boost::system::error_code& ec, load_mode::type mode = load_mode::default_mode)

    Parameters:

    lib_path

    Library file name. Can handle std::string, const char*, std::wstring, const wchar_t* or boost::filesystem::path.

    mode

    A mode that will be used on library load.

  5. void load(const boost::filesystem::path & lib_path, load_mode::type mode, 
              boost::system::error_code & ec);

    This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

  6. template<typename T> T & get_variable(const std::string & name);

    Load a variable from the referenced library.

    Unlinke shared_library::get this function will also load scoped variables, which also includes static class members.

    [Note] Note

    When mangled, MSVC will also check the type.

    Parameters:

    name

    Name of the variable

    Template Parameters:

    T

    Type of the variable

    Returns:

    A reference to the variable of type T.

    Throws:

    boost::system::system_error if symbol does not exist or if the DLL/DSO was not loaded.
  7. template<typename Func> Func & get_function(const std::string & name);

    Load a function from the referenced library.

    Example:

     smart_library lib("test_lib.so");
     typedef int      (&add_ints)(int, int);
     typedef double (&add_doubles)(double, double);
     add_ints     f1 = lib.get_function<int(int, int)>         ("func_name");
     add_doubles  f2 = lib.get_function<double(double, double)>("func_name");
    
    [Note] Note

    When mangled, MSVC will also check the return type.

    Parameters:

    name

    Name of the function.

    Template Parameters:

    Func

    Type of the function, required for determining the overload

    Returns:

    A reference to the function of type F.

    Throws:

    boost::system::system_error if symbol does not exist or if the DLL/DSO was not loaded.
  8. template<typename Class, typename Func> 
      unspecified get_mem_fn(const std::string & name);

    Load a member-function from the referenced library.

    Example (import class is MyClass, which is available inside the library and the host):

     smart_library lib("test_lib.so");
    
     typedef int      MyClass(*func)(int);
     typedef int   MyClass(*func_const)(int) const;
    
     add_ints     f1 = lib.get_mem_fn<MyClass, int(int)>              ("MyClass::function");
     add_doubles  f2 = lib.get_mem_fn<const MyClass, double(double)>("MyClass::function");
    
    [Note] Note

    When mangled, MSVC will also check the return type.

    Parameters:

    name

    Name of the function.

    Template Parameters:

    Class

    The class the function is a member of. If Class is const, the function will be assumed as taking a const this-pointer. The same applies for volatile.

    Func

    Signature of the function, required for determining the overload

    Returns:

    A pointer to the member-function with the signature provided

    Throws:

    boost::system::system_error if symbol does not exist or if the DLL/DSO was not loaded.
  9. template<typename Signature> constructor< Signature > get_constructor();

    Load a constructor from the referenced library.

    Example (import class is MyClass, which is available inside the library and the host):

     smart_library lib("test_lib.so");
    
     constructor<MyClass(int)    f1 = lib.get_mem_fn<MyClass(int)>();
    

    Template Parameters:

    Signature

    Signature of the function, required for determining the overload. The return type is the class which this is the constructor of.

    Returns:

    A constructor object.

    Throws:

    boost::system::system_error if symbol does not exist or if the DLL/DSO was not loaded.
  10. template<typename Class> destructor< Class > get_destructor();

    Load a destructor from the referenced library.

    Example (import class is MyClass, which is available inside the library and the host):

     smart_library lib("test_lib.so");
    
     destructor<MyClass>     f1 = lib.get_mem_fn<MyClass>();
    

    Template Parameters:

    Class

    The class whichs destructor shall be loaded

    Returns:

    A destructor object.

    Throws:

    boost::system::system_error if symbol does not exist or if the DLL/DSO was not loaded.
  11. template<typename Alias> void add_type_alias(const std::string & name);

    This function can be used to add a type alias.

    This is to be used, when a class shall be imported, which is not declared on the host side.

    Example:

     smart_library lib("test_lib.so");
    
     lib.add_type_alias<MyAlias>("MyClass"); //when using MyAlias, the library will look for MyClass
    
     //get the destructor of MyClass
     destructor<MyAlias> dtor = lib.get_destructor<MyAlias>();
    

    [Note] Note

    If the alias-type is not large enough for the imported class, it will result in undefined behaviour.

    [Warning] Warning

    The alias will only be applied for the type signature, it will not replace the token in the scoped name.

    Parameters:

    name

    Name of the class the alias is for.

  12. void unload() noexcept;

    Unloads a shared library. If library was loaded multiple times by different instances, the actual DLL/DSO won't be unloaded until there is at least one instance that references the DLL/DSO.

  13. bool is_loaded() const noexcept;

    Check if an library is loaded.

  14. bool operator!() const noexcept;

    Check if an library is not loaded.

  15. explicit operator bool() const noexcept;

    Check if an library is loaded.

  16. bool has(const char * symbol_name) const noexcept;

    Search for a given symbol on loaded library. Works for all symbols, including alias names.

    Parameters:

    symbol_name

    Null-terminated symbol name. Can handle std::string, char*, const char*.

  17. bool has(const std::string & symbol_name) const noexcept;

    This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

  18. smart_library & assign(const smart_library & lib);

    Makes *this share the same shared object as lib. If *this is loaded, then unloads it.

    Parameters:

    lib

    A library instance to assign from.

  19. void swap(smart_library & rhs) noexcept;

    Swaps two libraries. Does not invalidate existing symbols and functions loaded from libraries.

    Parameters:

    rhs

    Library to swap with.


PrevUpHomeNext