ClickHouse/dbms/src/Common/SharedLibrary.h
2017-09-08 00:04:48 +03:00

40 lines
779 B
C++

#pragma once
#include <memory>
#include <string>
#include <boost/noncopyable.hpp>
namespace DB
{
/** Allows you to open a dynamic library and get a pointer to a function from it.
*/
class SharedLibrary : private boost::noncopyable
{
public:
explicit SharedLibrary(const std::string & path);
~SharedLibrary();
template <typename Func>
Func get(const std::string & name)
{
return reinterpret_cast<Func>(getImpl(name));
}
template <typename Func>
Func tryGet(const std::string & name)
{
return reinterpret_cast<Func>(getImpl(name, true));
}
private:
void * getImpl(const std::string & name, bool no_throw = false);
void * handle = nullptr;
};
using SharedLibraryPtr = std::shared_ptr<SharedLibrary>;
}