blob: dd81d1fe4d7a6154b7b9ec5ba549cf4114cce53d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#include "StarDynamicLib.hpp"
#include <dlfcn.h>
#include <pthread.h>
#include <sys/time.h>
#include <errno.h>
namespace Star {
struct PrivateDynLib : public DynamicLib {
PrivateDynLib(void* handle)
: m_handle(handle) {}
~PrivateDynLib() {
dlclose(m_handle);
}
void* funcPtr(const char* name) {
return dlsym(m_handle, name);
}
void* m_handle;
};
String DynamicLib::libraryExtension() {
#ifdef STAR_SYSTEM_MACOS
return ".dylib";
#else
return ".so";
#endif
}
DynamicLibUPtr DynamicLib::loadLibrary(String const& libraryName) {
void* handle = dlopen(libraryName.utf8Ptr(), RTLD_NOW);
if (handle == NULL)
return {};
return make_unique<PrivateDynLib>(handle);
}
DynamicLibUPtr DynamicLib::currentExecutable() {
void* handle = dlopen(NULL, 0);
starAssert(handle);
return make_unique<PrivateDynLib>(handle);
}
}
|