OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
dylib_loader.hpp
1#pragma once
2#include <ossia/detail/config.hpp>
3
4#ifdef _WIN32
5#include <windows.h>
6#else
7#include <dlfcn.h>
8#endif
9#include <iostream>
10#include <stdexcept>
11#include <string>
12#include <string_view>
13#include <vector>
14namespace ossia
15{
16class dylib_loader
17{
18public:
19 explicit dylib_loader(const char* const so)
20 {
21#ifdef _WIN32
22 impl = (void*)LoadLibraryA(so);
23#else
24 impl = dlopen(so, RTLD_LAZY | RTLD_LOCAL | RTLD_NODELETE);
25#endif
26 if(!impl)
27 {
28 throw std::runtime_error(std::string(so) + ": not found. ");
29 }
30 }
31
32 explicit dylib_loader(std::vector<std::string_view> sos)
33 {
34 if(sos.empty())
35 throw std::runtime_error("No shared object specified");
36
37 for(const auto so : sos)
38 {
39#ifdef _WIN32
40 impl = (void*)LoadLibraryA(so.data());
41#else
42 impl = dlopen(so.data(), RTLD_LAZY | RTLD_LOCAL | RTLD_NODELETE);
43#endif
44 if(impl)
45 return;
46 }
47
48 throw std::runtime_error(std::string(sos[0]) + ": not found. ");
49 }
50
51 dylib_loader(const dylib_loader&) noexcept = delete;
52 dylib_loader& operator=(const dylib_loader&) noexcept = delete;
53 dylib_loader(dylib_loader&& other) noexcept
54 {
55 impl = other.impl;
56 other.impl = nullptr;
57 }
58
59 dylib_loader& operator=(dylib_loader&& other) noexcept
60 {
61 impl = other.impl;
62 other.impl = nullptr;
63 return *this;
64 }
65
66 ~dylib_loader()
67 {
68 if(impl)
69 {
70#ifdef _WIN32
71 FreeLibrary((HMODULE)impl);
72#else
73 dlclose(impl);
74#endif
75 }
76 }
77
78 template <typename T>
79 T symbol(const char* const sym) const noexcept
80 {
81#ifdef _WIN32
82 return (T)GetProcAddress((HMODULE)impl, sym);
83#else
84 return (T)dlsym(impl, sym);
85#endif
86 }
87
88 operator bool() const { return bool(impl); }
89
90private:
91 void* impl{};
92};
93}
Definition git_info.h:7