我正在创建一个辅助函数来加载共享库并将结果放入带有自定义删除器的std::vector
(这是模块销毁函数)。
当我没有设置自定义删除工具时,这很正常,但是一旦我添加它们,我就会收到错误消息,说明自定义删除器的类型无法推断(这是公平的)。
问题是,如果我在调用函数时指定删除器类型,它最终会看起来非常难看。
问题是,我的功能如何自动推断出自定义删除器的类型?我应该如何声明生成的std::unique_ptr
的{{1}}?
我的代码(我也对代码的任何建议开放):
template <typename T, typename D>
std::unique_ptr<T, D> openLib(const std::string &lib_path,
const std::string &csym = "create",
const std::string &dsym = "destroy")
{
void *handle;
if (!(handle = dlopen(lib_path.c_str(), RTLD_LAZY)))
{
std::cerr << "dlopen " << dlerror() << std::endl;
return nullptr;
}
T *(*create)();
if (!(create = (T * (*)()) dlsym(handle, csym.c_str())))
{
std::cerr << "dlsym " << csym << dlerror() << std::endl;
return nullptr;
}
void (*destroy)();
if (!(destroy = (void (*)()) dlsym(handle, dsym.c_str())))
{
std::cerr << "dlsym " << dsym << dlerror() << std::endl;
return nullptr;
}
auto cDel = [destroy](T *lib) { destroy(); };
std::unique_ptr<T, decltype(cDel)> lib_ptr((T *)create(), cDel);
return lib_ptr;
}
答案 0 :(得分:4)
写一个删除类型和工厂。
using deleter = void();
using ptr_deleter = deleter*;
struct lib_unloader {
deleter* del = 0;
void operator()(void*)const { if (del) del(); }
explicit operator bool() const { return del; }
};
lib_unloader get_lib_unloader( void* handle, char const* destroy_name ) {
auto del = ptr_deleter( dlsym( handle, destroy_name ) );
return {del};
}
template<class T>
using lib_up = std::unique_ptr< T, lib_unloader >;
template<class T>>
lib_up<T> openLib(const std::string &lib_path,
const std::string &csym = "create",
const std::string &dsym = "destroy")
{
void *handle;
if (!(handle = dlopen(lib_path.c_str(), RTLD_LAZY)))
{
std::cerr << "dlopen " << dlerror() << std::endl;
return nullptr;
}
T *(*create)();
if (!(create = (T * (*)()) dlsym(handle, csym.c_str())))
{
std::cerr << "dlsym " << csym << dlerror() << std::endl;
return nullptr;
}
auto destroy = get_lib_unloader( handle, dsym.c_str() );
if (!destroy) {
std::cerr << "dlsym " << dsym << dlerror() << std::endl;
return nullptr;
}
return {create(), destroy};
}
我自己,我会写一个更好的句柄。请注意,您的代码会像疯狂一样泄漏动态库句柄。
using libhandle_ptr = std::unique_ptr<void, std::integral_constant<int(*)(void*), dlclose>>;
libhandle_ptr make_libhandle(const char* filename, int flags) {
return libhandle_ptr( dlopen(filename, flags) );
}
template<class T>
T* get_sym( libhandle_ptr const& handle, const char* symbol ) {
if (!handle || !symbol) return nullptr;
return static_cast<T*>( dlsym( handle.get(), symbol ) );
}
现在我们得到:
lib_unloader get_lib_unloader( libhandle const& handle, char const* destroy_name ) {
auto del = get_sym<deleter>( handle, destroy_name );
return {del};
}
template<class T>>
lib_up<T> openLib( libhandle_ptr const& handle,
const char* csym = "create",
const char* dsym = "destroy")
{
if (!handle)
return {};
auto create = get_sym<T*()>( handle, csym );
if (!create)
{
std::cerr << "dlsym " << csym << dlerror() << std::endl;
return {};
}
auto destroy = get_lib_unloader( handle, dsym.c_str() );
if (!destroy) {
std::cerr << "dlsym " << dsym << dlerror() << std::endl;
return {};
}
return {create(), destroy};
}
要求用户在需要符号时提供libhandle_ptr
。
请注意,boost有一个dll符号加载库,可能会做得更好。