2#include <ossia/detail/config.hpp>
19 explicit dylib_loader(
const char*
const so)
22 impl = (
void*)LoadLibraryA(so);
24 impl = dlopen(so, RTLD_LAZY | RTLD_LOCAL | RTLD_NODELETE);
28 throw std::runtime_error(std::string(so) +
": not found. ");
32 explicit dylib_loader(std::vector<std::string_view> sos)
35 throw std::runtime_error(
"No shared object specified");
37 for(
const auto so : sos)
40 impl = (
void*)LoadLibraryA(so.data());
42 impl = dlopen(so.data(), RTLD_LAZY | RTLD_LOCAL | RTLD_NODELETE);
48 throw std::runtime_error(std::string(sos[0]) +
": not found. ");
51 dylib_loader(
const dylib_loader&)
noexcept =
delete;
52 dylib_loader& operator=(
const dylib_loader&)
noexcept =
delete;
53 dylib_loader(dylib_loader&& other)
noexcept
59 dylib_loader& operator=(dylib_loader&& other)
noexcept
71 FreeLibrary((HMODULE)impl);
79 T symbol(
const char*
const sym)
const noexcept
82 return (T)GetProcAddress((HMODULE)impl, sym);
84 return (T)dlsym(impl, sym);
88 operator bool()
const {
return bool(impl); }