#include "dlhandle.h" #ifndef _WIN32 # include #else # include # define WIN32_LEAN_AND_MEAN # ifndef NOMINMAX # define NOMINMAX # endif # include #endif namespace fs = std::filesystem; #ifndef _WIN32 Dlhandle::Dlhandle(const fs::path &fpath) { chandle = dlopen(fpath.c_str(), RTLD_LAZY | RTLD_LOCAL); if (!chandle) { throw Exception("dlopen(\"" + fpath.filename().string() + "\"): " + dlerror()); } } Dlhandle::~Dlhandle() { if (chandle) dlclose(chandle); } void *Dlhandle::get_internal(const char *symbol) const { return dlsym(chandle, symbol); } #else // defined(_WIN32) Dlhandle::Dlhandle(const fs::path &fpath) { auto afpath = fs::absolute(fpath); chandle = LoadLibraryExW(afpath.c_str(), NULL, LOAD_LIBRARY_SEARCH_DEFAULT_DIRS | LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR); if (!chandle) { auto err = GetLastError(); std::ostringstream ss; ss << "LoadLibraryExW(\"" << fpath.filename().string() << "\") failed with error 0x" << std::hex << err; throw Exception(ss.str()); } } Dlhandle::~Dlhandle() { if (chandle) FreeLibrary(HMODULE(chandle)); } void *Dlhandle::get_internal(const char *symbol) const { return GetProcAddress(HMODULE(chandle), symbol); } #endif // defined(_WIN32)