forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.cpp
More file actions
225 lines (183 loc) · 4.48 KB
/
module.cpp
File metadata and controls
225 lines (183 loc) · 4.48 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
#include "core.h"
#include "filesystem.h"
#include "module.h"
#if defined(_WINDOWS)
#include <windows.h>
static bool throw_win32(void)
{
return false;
}
bool MCModuleLoad(const char *p_filename, MCModuleRef& r_module)
{
bool t_success;
t_success = true;
void *t_native_filename;
t_native_filename = nil;
if (t_success)
t_success = MCFileSystemPathToNative(p_filename, t_native_filename);
HMODULE t_module;
t_module = nil;
if (t_success)
{
t_module = LoadLibraryW((LPCWSTR)t_native_filename);
if (t_module == nil)
t_success = throw_win32();
}
if (t_success)
r_module = (MCModuleRef)t_module;
MCMemoryDeallocate(t_native_filename);
return t_success;
}
void MCModuleUnload(MCModuleRef self)
{
if (self == nil)
return;
FreeLibrary((HMODULE)self);
}
bool MCModuleLookupSymbol(MCModuleRef self, const char *p_symbol, void **r_address)
{
void *t_address;
t_address = GetProcAddress((HMODULE)self, p_symbol);
*r_address = t_address;
return true;
}
bool MCModuleGetFilename(MCModuleRef p_module, char*& r_path)
{
bool t_success;
t_success = true;
// For some unfathomable reason, it is not possible find out how big a
// buffer you might need for a module file name. Instead we loop until
// we are sure we have the whole thing.
unichar_t *t_wpath;
uint32_t t_wpath_length;
t_wpath_length = 0;
t_wpath = nil;
while(t_success)
{
t_wpath_length += 256;
MCMemoryDeleteArray(t_wpath);
if (t_success)
t_success = MCMemoryNewArray(t_wpath_length, t_wpath);
DWORD t_result;
t_result = 0;
if (t_success)
{
// If the buffer is too small, the result will equal the input
// buffer size.
t_result = GetModuleFileNameW((HMODULE)p_module, t_wpath, t_wpath_length);
if (t_result == 0)
t_success = false;
else if (t_result == t_wpath_length)
continue;
}
if (t_success)
break;
}
// Convert the unicode string to UTF-8.
if (t_success)
t_success = MCFileSystemPathFromNative(t_wpath, r_path);
MCMemoryDeleteArray(t_wpath);
return t_success;
}
#elif defined(_LINUX)
#include <dlfcn.h>
bool MCModuleLoad(const char *p_filename, MCModuleRef& r_module)
{
MCModuleRef t_module;
t_module = (void *)dlopen(p_filename, (RTLD_NOW | RTLD_LOCAL));
if (t_module == nil)
return false;
r_module = t_module;
return true;
}
void MCModuleUnload(MCModuleRef self)
{
if (self != nil)
dlclose(self);
}
bool MCModuleLookupSymbol(MCModuleRef self, const char *p_symbol, void **r_address)
{
void *t_address;
t_address = dlsym(self, p_symbol);
if (t_address == nil)
return false;
*r_address = t_address;
return true;
}
bool MCModuleGetFilename(MCModuleRef p_module, char*& r_path)
{
Dl_info t_info;
if (p_module == nil && dladdr((void *)MCModuleGetFilename, &t_info) != 0)
return MCCStringClone(t_info . dli_fname, r_path);
return false;
}
#elif defined(_MACOSX)
#include <dlfcn.h>
#include <CoreFoundation/CoreFoundation.h>
bool MCModuleLoad(const char *p_filename, MCModuleRef& r_module)
{
MCModuleRef t_module;
if (MCCStringEndsWith(p_filename, ".dylib"))
{
t_module = (void *)dlopen(p_filename, (RTLD_NOW | RTLD_LOCAL));
if (t_module == nil)
return false;
}
else
{
CFURLRef t_url;
t_url = CFURLCreateFromFileSystemRepresentation(kCFAllocatorDefault, (const UInt8 *)p_filename, MCCStringLength(p_filename), TRUE);
if (t_url != nil)
{
t_module = (void *)CFBundleCreate(kCFAllocatorDefault, t_url);
if (t_module != nil)
t_module = (void *)((uintptr_t)t_module | 1);
CFRelease(t_url);
}
if (t_module == nil)
return false;
}
r_module = t_module;
return true;
}
void MCModuleUnload(MCModuleRef self)
{
if (self == nil)
return;
if (((uintptr_t)self & 1) == 0)
dlclose(self);
else
CFRelease((CFBundleRef)((uintptr_t)self & ~1));
}
bool MCModuleLookupSymbol(MCModuleRef self, const char *p_symbol, void **r_address)
{
if (self == nil)
return false;
void *t_address;
if (((uintptr_t)self & 1) == 0)
{
t_address = dlsym(self, p_symbol);
if (t_address == nil)
return false;
}
else
{
CFStringRef t_symbol;
if (!MCCStringToCFString(p_symbol, t_symbol))
return false;
t_address = CFBundleGetFunctionPointerForName((CFBundleRef)((uintptr_t)self & ~1), t_symbol);
CFRelease(t_symbol);
if (t_address == nil)
return false;
}
*r_address = t_address;
return true;
}
bool MCModuleGetFilename(MCModuleRef p_module, char*& r_path)
{
Dl_info t_info;
if (p_module == nil && dladdr((void *)MCModuleGetFilename, &t_info) != 0)
return MCCStringClone(t_info . dli_fname, r_path);
return false;
}
#endif