]>
Commit | Line | Data |
---|---|---|
b3378a02 | 1 | /* Cycript - Optimizing JavaScript Compiler/Runtime |
c1d3e52e | 2 | * Copyright (C) 2009-2015 Jay Freeman (saurik) |
9cad30fa JF |
3 | */ |
4 | ||
f95d2598 | 5 | /* GNU Affero General Public License, Version 3 {{{ */ |
9cad30fa | 6 | /* |
f95d2598 JF |
7 | * This program is free software: you can redistribute it and/or modify |
8 | * it under the terms of the GNU Affero General Public License as published by | |
9 | * the Free Software Foundation, either version 3 of the License, or | |
10 | * (at your option) any later version. | |
11 | ||
12 | * This program is distributed in the hope that it will be useful, | |
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
c15969fd | 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
f95d2598 JF |
15 | * GNU Affero General Public License for more details. |
16 | ||
17 | * You should have received a copy of the GNU Affero General Public License | |
18 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
b3378a02 | 19 | **/ |
9cad30fa JF |
20 | /* }}} */ |
21 | ||
20052ff7 JF |
22 | #include "cycript.hpp" |
23 | ||
24 | #include <iostream> | |
25 | #include <set> | |
26 | #include <map> | |
27 | #include <iomanip> | |
28 | #include <sstream> | |
29 | #include <cmath> | |
9cad30fa JF |
30 | |
31 | #include <dlfcn.h> | |
d00dec14 JF |
32 | #include <dirent.h> |
33 | #include <fcntl.h> | |
34 | #include <unistd.h> | |
9cad30fa | 35 | |
9cad30fa | 36 | #include <sys/mman.h> |
d00dec14 | 37 | #include <sys/stat.h> |
9cad30fa | 38 | |
20052ff7 JF |
39 | #include "sig/parse.hpp" |
40 | #include "sig/ffi_type.hpp" | |
9cad30fa | 41 | |
5587a93f | 42 | #include "Code.hpp" |
9a39f705 | 43 | #include "Decode.hpp" |
9cad30fa | 44 | #include "Error.hpp" |
20052ff7 JF |
45 | #include "Execute.hpp" |
46 | #include "Internal.hpp" | |
9cad30fa | 47 | #include "JavaScript.hpp" |
20052ff7 | 48 | #include "Pooling.hpp" |
9cad30fa JF |
49 | #include "String.hpp" |
50 | ||
c2e81022 JF |
51 | static std::vector<CYHook *> &GetHooks() { |
52 | static std::vector<CYHook *> hooks; | |
53 | return hooks; | |
54 | } | |
c4481e40 JF |
55 | |
56 | CYRegisterHook::CYRegisterHook(CYHook *hook) { | |
c2e81022 | 57 | GetHooks().push_back(hook); |
c4481e40 | 58 | } |
9cad30fa JF |
59 | |
60 | /* JavaScript Properties {{{ */ | |
58321c0a JF |
61 | bool CYHasProperty(JSContextRef context, JSObjectRef object, JSStringRef name) { |
62 | return JSObjectHasProperty(context, object, name); | |
63 | } | |
64 | ||
9cad30fa | 65 | JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, size_t index) { |
f1b5a47f | 66 | return _jsccall(JSObjectGetPropertyAtIndex, context, object, index); |
9cad30fa JF |
67 | } |
68 | ||
69 | JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, JSStringRef name) { | |
f1b5a47f | 70 | return _jsccall(JSObjectGetProperty, context, object, name); |
9cad30fa JF |
71 | } |
72 | ||
73 | void CYSetProperty(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value) { | |
f1b5a47f | 74 | _jsccall(JSObjectSetPropertyAtIndex, context, object, index, value); |
9cad30fa JF |
75 | } |
76 | ||
77 | void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value, JSPropertyAttributes attributes) { | |
f1b5a47f | 78 | _jsccall(JSObjectSetProperty, context, object, name, value, attributes); |
9cad30fa JF |
79 | } |
80 | ||
81 | void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef (*callback)(JSContextRef, JSObjectRef, JSObjectRef, size_t, const JSValueRef[], JSValueRef *), JSPropertyAttributes attributes) { | |
82 | CYSetProperty(context, object, name, JSObjectMakeFunctionWithCallback(context, name, callback), attributes); | |
83 | } | |
e78a4755 JF |
84 | |
85 | void CYSetPrototype(JSContextRef context, JSObjectRef object, JSValueRef value) { | |
86 | JSObjectSetPrototype(context, object, value); | |
3c7fc7a8 | 87 | _assert(CYIsStrictEqual(context, JSObjectGetPrototype(context, object), value)); |
e78a4755 | 88 | } |
9cad30fa JF |
89 | /* }}} */ |
90 | /* JavaScript Strings {{{ */ | |
91 | JSStringRef CYCopyJSString(const char *value) { | |
92 | return value == NULL ? NULL : JSStringCreateWithUTF8CString(value); | |
93 | } | |
94 | ||
95 | JSStringRef CYCopyJSString(JSStringRef value) { | |
96 | return value == NULL ? NULL : JSStringRetain(value); | |
97 | } | |
98 | ||
99 | JSStringRef CYCopyJSString(CYUTF8String value) { | |
35cad40b JF |
100 | if (memchr(value.data, '\0', value.size) != NULL) { |
101 | CYPool pool; | |
102 | return CYCopyJSString(pool.memdup(value.data, value.size)); | |
103 | } else if (value.data[value.size] != '\0') { | |
104 | CYPool pool; | |
105 | return CYCopyJSString(CYPoolUTF16String(pool, value)); | |
106 | } else { | |
107 | return CYCopyJSString(value.data); | |
108 | } | |
109 | } | |
110 | ||
111 | JSStringRef CYCopyJSString(CYUTF16String value) { | |
112 | return JSStringCreateWithCharacters(value.data, value.size); | |
9cad30fa JF |
113 | } |
114 | ||
115 | JSStringRef CYCopyJSString(JSContextRef context, JSValueRef value) { | |
116 | if (JSValueIsNull(context, value)) | |
117 | return NULL; | |
f1b5a47f | 118 | return _jsccall(JSValueToStringCopy, context, value); |
9cad30fa JF |
119 | } |
120 | ||
121 | static CYUTF16String CYCastUTF16String(JSStringRef value) { | |
122 | return CYUTF16String(JSStringGetCharactersPtr(value), JSStringGetLength(value)); | |
123 | } | |
124 | ||
b799113b | 125 | CYUTF8String CYPoolUTF8String(CYPool &pool, JSContextRef context, JSStringRef value) { |
9cad30fa JF |
126 | return CYPoolUTF8String(pool, CYCastUTF16String(value)); |
127 | } | |
128 | ||
b799113b | 129 | const char *CYPoolCString(CYPool &pool, JSContextRef context, JSStringRef value) { |
9cad30fa JF |
130 | CYUTF8String utf8(CYPoolUTF8String(pool, context, value)); |
131 | _assert(memchr(utf8.data, '\0', utf8.size) == NULL); | |
132 | return utf8.data; | |
133 | } | |
134 | ||
b799113b | 135 | const char *CYPoolCString(CYPool &pool, JSContextRef context, JSValueRef value) { |
9cad30fa JF |
136 | return JSValueIsNull(context, value) ? NULL : CYPoolCString(pool, context, CYJSString(context, value)); |
137 | } | |
138 | /* }}} */ | |
139 | /* Index Offsets {{{ */ | |
b799113b | 140 | size_t CYGetIndex(CYPool &pool, JSContextRef context, JSStringRef value) { |
9cad30fa JF |
141 | return CYGetIndex(CYPoolUTF8String(pool, context, value)); |
142 | } | |
143 | /* }}} */ | |
144 | ||
145 | static JSClassRef All_; | |
146 | static JSClassRef Context_; | |
35cad40b | 147 | static JSClassRef CString_; |
3f9ae37c | 148 | JSClassRef Functor_; |
9cad30fa JF |
149 | static JSClassRef Global_; |
150 | static JSClassRef Pointer_; | |
151 | static JSClassRef Struct_; | |
152 | ||
153 | JSStringRef Array_s; | |
154 | JSStringRef cy_s; | |
4dd55d2f | 155 | JSStringRef cyi_s; |
9cad30fa JF |
156 | JSStringRef length_s; |
157 | JSStringRef message_s; | |
158 | JSStringRef name_s; | |
159 | JSStringRef pop_s; | |
160 | JSStringRef prototype_s; | |
161 | JSStringRef push_s; | |
162 | JSStringRef splice_s; | |
163 | JSStringRef toCYON_s; | |
164 | JSStringRef toJSON_s; | |
20ded97a | 165 | JSStringRef toPointer_s; |
4cb8aa43 | 166 | JSStringRef toString_s; |
56f57e5b | 167 | JSStringRef weak_s; |
9cad30fa JF |
168 | |
169 | static JSStringRef Result_; | |
170 | ||
9cad30fa | 171 | void CYFinalize(JSObjectRef object) { |
1850a470 | 172 | CYData *internal(reinterpret_cast<CYData *>(JSObjectGetPrivate(object))); |
b799113b | 173 | _assert(internal->count_ != _not(unsigned)); |
1850a470 JF |
174 | if (--internal->count_ == 0) |
175 | delete internal; | |
9cad30fa JF |
176 | } |
177 | ||
b799113b | 178 | void Structor_(CYPool &pool, sig::Type *&type) { |
9cad30fa JF |
179 | if ( |
180 | type->primitive == sig::pointer_P && | |
9cad30fa | 181 | type->data.data.type->primitive == sig::struct_P && |
1648ddb9 | 182 | type->data.data.type->name != NULL && |
9cad30fa JF |
183 | strcmp(type->data.data.type->name, "_objc_class") == 0 |
184 | ) { | |
185 | type->primitive = sig::typename_P; | |
186 | type->data.data.type = NULL; | |
187 | return; | |
188 | } | |
189 | ||
190 | if (type->primitive != sig::struct_P || type->name == NULL) | |
191 | return; | |
192 | ||
2f51d6ab JF |
193 | size_t length(strlen(type->name)); |
194 | char keyed[length + 2]; | |
195 | memcpy(keyed + 1, type->name, length + 1); | |
196 | ||
197 | static const char *modes = "34"; | |
198 | for (size_t i(0); i != 2; ++i) { | |
199 | char mode(modes[i]); | |
200 | keyed[0] = mode; | |
201 | ||
202 | if (CYBridgeEntry *entry = CYBridgeHash(keyed, length + 1)) | |
203 | switch (mode) { | |
204 | case '3': | |
205 | sig::Parse(pool, &type->data.signature, entry->value_, &Structor_); | |
206 | break; | |
207 | ||
208 | case '4': { | |
209 | sig::Signature signature; | |
210 | sig::Parse(pool, &signature, entry->value_, &Structor_); | |
211 | type = signature.elements[0].type; | |
212 | } break; | |
213 | } | |
9cad30fa JF |
214 | } |
215 | } | |
216 | ||
217 | JSClassRef Type_privateData::Class_; | |
218 | ||
219 | struct Context : | |
220 | CYData | |
221 | { | |
222 | JSGlobalContextRef context_; | |
223 | ||
224 | Context(JSGlobalContextRef context) : | |
225 | context_(context) | |
226 | { | |
227 | } | |
228 | }; | |
229 | ||
35cad40b JF |
230 | struct CString : |
231 | CYOwned | |
232 | { | |
233 | CString(char *value, JSContextRef context, JSObjectRef owner) : | |
234 | CYOwned(value, context, owner) | |
235 | { | |
236 | } | |
237 | }; | |
238 | ||
9cad30fa JF |
239 | struct Pointer : |
240 | CYOwned | |
241 | { | |
242 | Type_privateData *type_; | |
243 | size_t length_; | |
244 | ||
245 | Pointer(void *value, JSContextRef context, JSObjectRef owner, size_t length, sig::Type *type) : | |
246 | CYOwned(value, context, owner), | |
b799113b | 247 | type_(new(*pool_) Type_privateData(type)), |
9cad30fa JF |
248 | length_(length) |
249 | { | |
250 | } | |
251 | }; | |
252 | ||
253 | struct Struct_privateData : | |
254 | CYOwned | |
255 | { | |
256 | Type_privateData *type_; | |
257 | ||
258 | Struct_privateData(JSContextRef context, JSObjectRef owner) : | |
259 | CYOwned(NULL, context, owner) | |
260 | { | |
261 | } | |
262 | }; | |
263 | ||
9cad30fa JF |
264 | JSObjectRef CYMakeStruct(JSContextRef context, void *data, sig::Type *type, ffi_type *ffi, JSObjectRef owner) { |
265 | Struct_privateData *internal(new Struct_privateData(context, owner)); | |
b799113b | 266 | CYPool &pool(*internal->pool_); |
9cad30fa JF |
267 | Type_privateData *typical(new(pool) Type_privateData(type, ffi)); |
268 | internal->type_ = typical; | |
269 | ||
270 | if (owner != NULL) | |
271 | internal->value_ = data; | |
272 | else { | |
273 | size_t size(typical->GetFFI()->size); | |
0cbeddf8 | 274 | void *copy(internal->pool_->malloc<void>(size)); |
9cad30fa JF |
275 | memcpy(copy, data, size); |
276 | internal->value_ = copy; | |
277 | } | |
278 | ||
279 | return JSObjectMake(context, Struct_, internal); | |
280 | } | |
281 | ||
9a98069f | 282 | static void *CYCastSymbol(const char *name) { |
588cf838 JF |
283 | for (CYHook *hook : GetHooks()) |
284 | if (hook->CastSymbol != NULL) | |
285 | if (void *value = (*hook->CastSymbol)(name)) | |
286 | return value; | |
9a98069f JF |
287 | return dlsym(RTLD_DEFAULT, name); |
288 | } | |
289 | ||
9cad30fa JF |
290 | JSValueRef CYCastJSValue(JSContextRef context, bool value) { |
291 | return JSValueMakeBoolean(context, value); | |
292 | } | |
293 | ||
294 | JSValueRef CYCastJSValue(JSContextRef context, double value) { | |
295 | return JSValueMakeNumber(context, value); | |
296 | } | |
297 | ||
298 | #define CYCastJSValue_(Type_) \ | |
299 | JSValueRef CYCastJSValue(JSContextRef context, Type_ value) { \ | |
639664e5 | 300 | _assert(static_cast<Type_>(static_cast<double>(value)) == value); \ |
9cad30fa JF |
301 | return JSValueMakeNumber(context, static_cast<double>(value)); \ |
302 | } | |
303 | ||
304 | CYCastJSValue_(int) | |
305 | CYCastJSValue_(unsigned int) | |
306 | CYCastJSValue_(long int) | |
307 | CYCastJSValue_(long unsigned int) | |
308 | CYCastJSValue_(long long int) | |
309 | CYCastJSValue_(long long unsigned int) | |
310 | ||
311 | JSValueRef CYJSUndefined(JSContextRef context) { | |
312 | return JSValueMakeUndefined(context); | |
313 | } | |
314 | ||
315 | double CYCastDouble(JSContextRef context, JSValueRef value) { | |
f1b5a47f | 316 | return _jsccall(JSValueToNumber, context, value); |
9cad30fa JF |
317 | } |
318 | ||
319 | bool CYCastBool(JSContextRef context, JSValueRef value) { | |
320 | return JSValueToBoolean(context, value); | |
321 | } | |
322 | ||
323 | JSValueRef CYJSNull(JSContextRef context) { | |
324 | return JSValueMakeNull(context); | |
325 | } | |
326 | ||
327 | JSValueRef CYCastJSValue(JSContextRef context, JSStringRef value) { | |
328 | return value == NULL ? CYJSNull(context) : JSValueMakeString(context, value); | |
329 | } | |
330 | ||
331 | JSValueRef CYCastJSValue(JSContextRef context, const char *value) { | |
332 | return CYCastJSValue(context, CYJSString(value)); | |
333 | } | |
334 | ||
335 | JSObjectRef CYCastJSObject(JSContextRef context, JSValueRef value) { | |
f1b5a47f | 336 | return _jsccall(JSValueToObject, context, value); |
9cad30fa JF |
337 | } |
338 | ||
339 | JSValueRef CYCallAsFunction(JSContextRef context, JSObjectRef function, JSObjectRef _this, size_t count, const JSValueRef arguments[]) { | |
f1b5a47f | 340 | return _jsccall(JSObjectCallAsFunction, context, function, _this, count, arguments); |
9cad30fa JF |
341 | } |
342 | ||
343 | bool CYIsCallable(JSContextRef context, JSValueRef value) { | |
344 | return value != NULL && JSValueIsObject(context, value) && JSObjectIsFunction(context, (JSObjectRef) value); | |
345 | } | |
346 | ||
79492f21 JF |
347 | bool CYIsEqual(JSContextRef context, JSValueRef lhs, JSValueRef rhs) { |
348 | return _jsccall(JSValueIsEqual, context, lhs, rhs); | |
349 | } | |
350 | ||
3c7fc7a8 JF |
351 | bool CYIsStrictEqual(JSContextRef context, JSValueRef lhs, JSValueRef rhs) { |
352 | return JSValueIsStrictEqual(context, lhs, rhs); | |
353 | } | |
354 | ||
55f12f6a JF |
355 | size_t CYArrayLength(JSContextRef context, JSObjectRef array) { |
356 | return CYCastDouble(context, CYGetProperty(context, array, length_s)); | |
357 | } | |
358 | ||
359 | JSValueRef CYArrayGet(JSContextRef context, JSObjectRef array, size_t index) { | |
f1b5a47f | 360 | return _jsccall(JSObjectGetPropertyAtIndex, context, array, index); |
55f12f6a JF |
361 | } |
362 | ||
363 | void CYArrayPush(JSContextRef context, JSObjectRef array, JSValueRef value) { | |
55f12f6a JF |
364 | JSValueRef arguments[1]; |
365 | arguments[0] = value; | |
366 | JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array_prototype"))); | |
f1b5a47f | 367 | _jsccall(JSObjectCallAsFunction, context, CYCastJSObject(context, CYGetProperty(context, Array, push_s)), array, 1, arguments); |
55f12f6a JF |
368 | } |
369 | ||
9cad30fa | 370 | static JSValueRef System_print(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
73180f9a JF |
371 | FILE *file(stdout); |
372 | ||
9cad30fa | 373 | if (count == 0) |
73180f9a | 374 | fputc('\n', file); |
9cad30fa JF |
375 | else { |
376 | CYPool pool; | |
73180f9a JF |
377 | CYUTF8String string(CYPoolUTF8String(pool, context, CYJSString(context, arguments[0]))); |
378 | fwrite(string.data, string.size, 1, file); | |
9cad30fa JF |
379 | } |
380 | ||
73180f9a | 381 | fflush(file); |
9cad30fa | 382 | return CYJSUndefined(context); |
55c6d6ab | 383 | } CYCatch(NULL) } |
9cad30fa | 384 | |
d5fa31c5 | 385 | static void (*JSSynchronousGarbageCollectForDebugging$)(JSContextRef); |
51b6165e | 386 | |
d9c91152 | 387 | _visible void CYGarbageCollect(JSContextRef context) { |
d5fa31c5 | 388 | (JSSynchronousGarbageCollectForDebugging$ ?: &JSGarbageCollect)(context); |
51b6165e JF |
389 | } |
390 | ||
7085e1ab JF |
391 | static JSValueRef Cycript_compile_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
392 | CYPool pool; | |
73180f9a | 393 | CYUTF8String before(CYPoolUTF8String(pool, context, CYJSString(context, arguments[0]))); |
c3d9dbc7 | 394 | std::stringbuf value(std::string(before.data, before.size)); |
73180f9a JF |
395 | CYUTF8String after(CYPoolCode(pool, value)); |
396 | return CYCastJSValue(context, CYJSString(after)); | |
a1ae2985 | 397 | } CYCatch_(NULL, "SyntaxError") } |
7085e1ab | 398 | |
51b6165e JF |
399 | static JSValueRef Cycript_gc_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
400 | CYGarbageCollect(context); | |
9cad30fa | 401 | return CYJSUndefined(context); |
62d94d32 | 402 | } CYCatch(NULL) } |
9cad30fa | 403 | |
98735bfe | 404 | const char *CYPoolCCYON(CYPool &pool, JSContextRef context, JSValueRef value, std::set<void *> &objects, JSValueRef *exception) { CYTry { |
9cad30fa JF |
405 | switch (JSType type = JSValueGetType(context, value)) { |
406 | case kJSTypeUndefined: | |
407 | return "undefined"; | |
408 | case kJSTypeNull: | |
409 | return "null"; | |
410 | case kJSTypeBoolean: | |
411 | return CYCastBool(context, value) ? "true" : "false"; | |
412 | ||
413 | case kJSTypeNumber: { | |
414 | std::ostringstream str; | |
415 | CYNumerify(str, CYCastDouble(context, value)); | |
416 | std::string value(str.str()); | |
b799113b | 417 | return pool.strmemdup(value.c_str(), value.size()); |
9cad30fa JF |
418 | } break; |
419 | ||
420 | case kJSTypeString: { | |
421 | std::ostringstream str; | |
422 | CYUTF8String string(CYPoolUTF8String(pool, context, CYJSString(context, value))); | |
423 | CYStringify(str, string.data, string.size); | |
424 | std::string value(str.str()); | |
b799113b | 425 | return pool.strmemdup(value.c_str(), value.size()); |
9cad30fa JF |
426 | } break; |
427 | ||
428 | case kJSTypeObject: | |
98735bfe | 429 | return CYPoolCCYON(pool, context, (JSObjectRef) value, objects); |
9cad30fa JF |
430 | default: |
431 | throw CYJSError(context, "JSValueGetType() == 0x%x", type); | |
432 | } | |
55c6d6ab | 433 | } CYCatch(NULL) } |
9cad30fa | 434 | |
98735bfe JF |
435 | const char *CYPoolCCYON(CYPool &pool, JSContextRef context, JSValueRef value, std::set<void *> &objects) { |
436 | return _jsccall(CYPoolCCYON, pool, context, value, objects); | |
9cad30fa JF |
437 | } |
438 | ||
98735bfe JF |
439 | const char *CYPoolCCYON(CYPool &pool, JSContextRef context, JSValueRef value, std::set<void *> *objects) { |
440 | if (objects != NULL) | |
441 | return CYPoolCCYON(pool, context, value, *objects); | |
442 | else { | |
443 | std::set<void *> objects; | |
444 | return CYPoolCCYON(pool, context, value, objects); | |
445 | } | |
446 | } | |
447 | ||
448 | const char *CYPoolCCYON(CYPool &pool, JSContextRef context, JSObjectRef object, std::set<void *> &objects) { | |
9cad30fa JF |
449 | JSValueRef toCYON(CYGetProperty(context, object, toCYON_s)); |
450 | if (CYIsCallable(context, toCYON)) { | |
98735bfe | 451 | // XXX: this needs to be abstracted behind some kind of function |
59383043 | 452 | JSValueRef arguments[1] = {CYCastJSValue(context, reinterpret_cast<uintptr_t>(&objects))}; |
98735bfe | 453 | JSValueRef value(CYCallAsFunction(context, (JSObjectRef) toCYON, object, 1, arguments)); |
9cad30fa JF |
454 | _assert(value != NULL); |
455 | return CYPoolCString(pool, context, value); | |
456 | } | |
457 | ||
458 | JSValueRef toJSON(CYGetProperty(context, object, toJSON_s)); | |
459 | if (CYIsCallable(context, toJSON)) { | |
460 | JSValueRef arguments[1] = {CYCastJSValue(context, CYJSString(""))}; | |
98735bfe | 461 | return _jsccall(CYPoolCCYON, pool, context, CYCallAsFunction(context, (JSObjectRef) toJSON, object, 1, arguments), objects); |
9cad30fa JF |
462 | } |
463 | ||
005b2e9f JF |
464 | if (JSObjectIsFunction(context, object)) { |
465 | JSValueRef toString(CYGetProperty(context, object, toString_s)); | |
466 | if (CYIsCallable(context, toString)) { | |
467 | JSValueRef arguments[1] = {CYCastJSValue(context, CYJSString(""))}; | |
468 | JSValueRef value(CYCallAsFunction(context, (JSObjectRef) toString, object, 1, arguments)); | |
469 | _assert(value != NULL); | |
470 | return CYPoolCString(pool, context, value); | |
471 | } | |
472 | } | |
473 | ||
98735bfe JF |
474 | _assert(objects.insert(object).second); |
475 | ||
9cad30fa JF |
476 | std::ostringstream str; |
477 | ||
478 | str << '{'; | |
479 | ||
480 | // XXX: this is, sadly, going to leak | |
481 | JSPropertyNameArrayRef names(JSObjectCopyPropertyNames(context, object)); | |
482 | ||
483 | bool comma(false); | |
484 | ||
485 | for (size_t index(0), count(JSPropertyNameArrayGetCount(names)); index != count; ++index) { | |
9cad30fa JF |
486 | if (comma) |
487 | str << ','; | |
488 | else | |
489 | comma = true; | |
490 | ||
dc5d7cf4 | 491 | JSStringRef name(JSPropertyNameArrayGetNameAtIndex(names, index)); |
9cad30fa | 492 | CYUTF8String string(CYPoolUTF8String(pool, context, name)); |
dc5d7cf4 | 493 | |
9cad30fa JF |
494 | if (CYIsKey(string)) |
495 | str << string.data; | |
496 | else | |
497 | CYStringify(str, string.data, string.size); | |
498 | ||
dc5d7cf4 | 499 | str << ':'; |
9cad30fa | 500 | |
dc5d7cf4 JF |
501 | try { |
502 | JSValueRef value(CYGetProperty(context, object, name)); | |
98735bfe | 503 | str << CYPoolCCYON(pool, context, value, objects); |
dc5d7cf4 JF |
504 | } catch (const CYException &error) { |
505 | str << "@error"; | |
506 | } | |
507 | } | |
9cad30fa JF |
508 | |
509 | JSPropertyNameArrayRelease(names); | |
510 | ||
dc5d7cf4 JF |
511 | str << '}'; |
512 | ||
9cad30fa | 513 | std::string string(str.str()); |
b799113b | 514 | return pool.strmemdup(string.c_str(), string.size()); |
9cad30fa JF |
515 | } |
516 | ||
98735bfe JF |
517 | std::set<void *> *CYCastObjects(JSContextRef context, JSObjectRef _this, size_t count, const JSValueRef arguments[]) { |
518 | if (count == 0) | |
519 | return NULL; | |
520 | return CYCastPointer<std::set<void *> *>(context, arguments[0]); | |
521 | } | |
522 | ||
9cad30fa | 523 | static JSValueRef Array_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
98735bfe JF |
524 | std::set<void *> *objects(CYCastObjects(context, _this, count, arguments)); |
525 | // XXX: this is horribly inefficient | |
526 | std::set<void *> backup; | |
527 | if (objects == NULL) | |
528 | objects = &backup; | |
529 | ||
9cad30fa JF |
530 | CYPool pool; |
531 | std::ostringstream str; | |
532 | ||
533 | str << '['; | |
534 | ||
535 | JSValueRef length(CYGetProperty(context, _this, length_s)); | |
536 | bool comma(false); | |
537 | ||
538 | for (size_t index(0), count(CYCastDouble(context, length)); index != count; ++index) { | |
9cad30fa JF |
539 | if (comma) |
540 | str << ','; | |
541 | else | |
542 | comma = true; | |
543 | ||
1eeb7e57 JF |
544 | try { |
545 | JSValueRef value(CYGetProperty(context, _this, index)); | |
546 | if (!JSValueIsUndefined(context, value)) | |
98735bfe | 547 | str << CYPoolCCYON(pool, context, value, *objects); |
1eeb7e57 JF |
548 | else { |
549 | str << ','; | |
550 | comma = false; | |
551 | } | |
552 | } catch (const CYException &error) { | |
553 | str << "@error"; | |
9cad30fa JF |
554 | } |
555 | } | |
556 | ||
557 | str << ']'; | |
558 | ||
559 | std::string value(str.str()); | |
560 | return CYCastJSValue(context, CYJSString(CYUTF8String(value.c_str(), value.size()))); | |
55c6d6ab | 561 | } CYCatch(NULL) } |
9cad30fa | 562 | |
4cb8aa43 JF |
563 | static JSValueRef String_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
564 | CYPool pool; | |
565 | std::ostringstream str; | |
566 | ||
567 | CYUTF8String string(CYPoolUTF8String(pool, context, CYJSString(context, _this))); | |
568 | CYStringify(str, string.data, string.size); | |
569 | ||
570 | std::string value(str.str()); | |
571 | return CYCastJSValue(context, CYJSString(CYUTF8String(value.c_str(), value.size()))); | |
55c6d6ab | 572 | } CYCatch(NULL) } |
4cb8aa43 | 573 | |
9cad30fa JF |
574 | JSObjectRef CYMakePointer(JSContextRef context, void *pointer, size_t length, sig::Type *type, ffi_type *ffi, JSObjectRef owner) { |
575 | Pointer *internal(new Pointer(pointer, context, owner, length, type)); | |
576 | return JSObjectMake(context, Pointer_, internal); | |
577 | } | |
578 | ||
35cad40b JF |
579 | JSObjectRef CYMakeCString(JSContextRef context, char *pointer, JSObjectRef owner) { |
580 | CString *internal(new CString(pointer, context, owner)); | |
581 | return JSObjectMake(context, CString_, internal); | |
582 | } | |
583 | ||
67110a15 | 584 | static JSObjectRef CYMakeFunctor(JSContextRef context, void (*function)(), const sig::Signature &signature) { |
077756a4 | 585 | return JSObjectMake(context, Functor_, new cy::Functor(signature, function)); |
9a98069f | 586 | } |
1850a470 | 587 | |
67110a15 | 588 | static JSObjectRef CYMakeFunctor(JSContextRef context, const char *symbol, const char *encoding, void **cache) { |
9a98069f JF |
589 | cy::Functor *internal; |
590 | if (*cache != NULL) | |
1850a470 | 591 | internal = reinterpret_cast<cy::Functor *>(*cache); |
9a98069f JF |
592 | else { |
593 | void (*function)()(reinterpret_cast<void (*)()>(CYCastSymbol(symbol))); | |
594 | if (function == NULL) | |
595 | return NULL; | |
1850a470 | 596 | |
67110a15 | 597 | internal = new cy::Functor(encoding, function); |
9a98069f | 598 | *cache = internal; |
1850a470 JF |
599 | } |
600 | ||
9a98069f | 601 | ++internal->count_; |
9cad30fa JF |
602 | return JSObjectMake(context, Functor_, internal); |
603 | } | |
604 | ||
b799113b | 605 | static bool CYGetOffset(CYPool &pool, JSContextRef context, JSStringRef value, ssize_t &index) { |
9cad30fa JF |
606 | return CYGetOffset(CYPoolCString(pool, context, value), index); |
607 | } | |
608 | ||
2b1c9594 | 609 | void *CYCastPointer_(JSContextRef context, JSValueRef value, bool *guess) { |
56f57e5b JF |
610 | if (value == NULL) |
611 | return NULL; | |
612 | else switch (JSValueGetType(context, value)) { | |
9cad30fa JF |
613 | case kJSTypeNull: |
614 | return NULL; | |
20ded97a JF |
615 | case kJSTypeObject: { |
616 | JSObjectRef object((JSObjectRef) value); | |
9cad30fa | 617 | if (JSValueIsObjectOfClass(context, value, Pointer_)) { |
20ded97a | 618 | Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object))); |
9cad30fa | 619 | return internal->value_; |
20ded97a JF |
620 | } |
621 | JSValueRef toPointer(CYGetProperty(context, object, toPointer_s)); | |
622 | if (CYIsCallable(context, toPointer)) { | |
623 | JSValueRef value(CYCallAsFunction(context, (JSObjectRef) toPointer, object, 0, NULL)); | |
624 | _assert(value != NULL); | |
2b1c9594 | 625 | return CYCastPointer_(context, value, guess); |
20ded97a JF |
626 | } |
627 | } default: | |
2b1c9594 JF |
628 | if (guess != NULL) |
629 | *guess = true; | |
630 | case kJSTypeNumber: | |
9cad30fa | 631 | double number(CYCastDouble(context, value)); |
2b1c9594 JF |
632 | if (!std::isnan(number)) |
633 | return reinterpret_cast<void *>(static_cast<uintptr_t>(static_cast<long long>(number))); | |
634 | if (guess == NULL) | |
9cad30fa | 635 | throw CYJSError(context, "cannot convert value to pointer"); |
2b1c9594 JF |
636 | else { |
637 | *guess = true; | |
638 | return NULL; | |
639 | } | |
9cad30fa JF |
640 | } |
641 | } | |
642 | ||
b799113b | 643 | void CYPoolFFI(CYPool *pool, JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, JSValueRef value) { |
9cad30fa JF |
644 | switch (type->primitive) { |
645 | case sig::boolean_P: | |
646 | *reinterpret_cast<bool *>(data) = JSValueToBoolean(context, value); | |
647 | break; | |
648 | ||
649 | #define CYPoolFFI_(primitive, native) \ | |
650 | case sig::primitive ## _P: \ | |
651 | *reinterpret_cast<native *>(data) = CYCastDouble(context, value); \ | |
652 | break; | |
653 | ||
654 | CYPoolFFI_(uchar, unsigned char) | |
655 | CYPoolFFI_(char, char) | |
656 | CYPoolFFI_(ushort, unsigned short) | |
657 | CYPoolFFI_(short, short) | |
658 | CYPoolFFI_(ulong, unsigned long) | |
659 | CYPoolFFI_(long, long) | |
660 | CYPoolFFI_(uint, unsigned int) | |
661 | CYPoolFFI_(int, int) | |
662 | CYPoolFFI_(ulonglong, unsigned long long) | |
663 | CYPoolFFI_(longlong, long long) | |
664 | CYPoolFFI_(float, float) | |
665 | CYPoolFFI_(double, double) | |
666 | ||
667 | case sig::array_P: { | |
668 | uint8_t *base(reinterpret_cast<uint8_t *>(data)); | |
669 | JSObjectRef aggregate(JSValueIsObject(context, value) ? (JSObjectRef) value : NULL); | |
670 | for (size_t index(0); index != type->data.data.size; ++index) { | |
671 | ffi_type *field(ffi->elements[index]); | |
672 | ||
673 | JSValueRef rhs; | |
674 | if (aggregate == NULL) | |
675 | rhs = value; | |
676 | else { | |
677 | rhs = CYGetProperty(context, aggregate, index); | |
678 | if (JSValueIsUndefined(context, rhs)) | |
679 | throw CYJSError(context, "unable to extract array value"); | |
680 | } | |
681 | ||
682 | CYPoolFFI(pool, context, type->data.data.type, field, base, rhs); | |
683 | // XXX: alignment? | |
684 | base += field->size; | |
685 | } | |
686 | } break; | |
687 | ||
688 | case sig::pointer_P: | |
689 | *reinterpret_cast<void **>(data) = CYCastPointer<void *>(context, value); | |
690 | break; | |
691 | ||
2b1c9594 JF |
692 | case sig::string_P: { |
693 | bool guess(false); | |
694 | *reinterpret_cast<const char **>(data) = CYCastPointer<const char *>(context, value, &guess); | |
695 | if (guess && pool != NULL) | |
696 | *reinterpret_cast<const char **>(data) = CYPoolCString(*pool, context, value); | |
697 | } break; | |
9cad30fa JF |
698 | |
699 | case sig::struct_P: { | |
700 | uint8_t *base(reinterpret_cast<uint8_t *>(data)); | |
701 | JSObjectRef aggregate(JSValueIsObject(context, value) ? (JSObjectRef) value : NULL); | |
702 | for (size_t index(0); index != type->data.signature.count; ++index) { | |
703 | sig::Element *element(&type->data.signature.elements[index]); | |
704 | ffi_type *field(ffi->elements[index]); | |
705 | ||
706 | JSValueRef rhs; | |
707 | if (aggregate == NULL) | |
708 | rhs = value; | |
709 | else { | |
710 | rhs = CYGetProperty(context, aggregate, index); | |
711 | if (JSValueIsUndefined(context, rhs)) { | |
712 | if (element->name != NULL) | |
713 | rhs = CYGetProperty(context, aggregate, CYJSString(element->name)); | |
714 | else | |
715 | goto undefined; | |
716 | if (JSValueIsUndefined(context, rhs)) undefined: | |
717 | throw CYJSError(context, "unable to extract structure value"); | |
718 | } | |
719 | } | |
720 | ||
721 | CYPoolFFI(pool, context, element->type, field, base, rhs); | |
722 | // XXX: alignment? | |
723 | base += field->size; | |
724 | } | |
725 | } break; | |
726 | ||
727 | case sig::void_P: | |
728 | break; | |
729 | ||
730 | default: | |
c2e81022 | 731 | for (CYHook *hook : GetHooks()) |
c4481e40 JF |
732 | if (hook->PoolFFI != NULL) |
733 | if ((*hook->PoolFFI)(pool, context, type, ffi, data, value)) | |
734 | return; | |
9cad30fa JF |
735 | |
736 | CYThrow("unimplemented signature code: '%c''\n", type->primitive); | |
737 | } | |
738 | } | |
739 | ||
740 | JSValueRef CYFromFFI(JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, bool initialize, JSObjectRef owner) { | |
741 | switch (type->primitive) { | |
742 | case sig::boolean_P: | |
743 | return CYCastJSValue(context, *reinterpret_cast<bool *>(data)); | |
744 | ||
745 | #define CYFromFFI_(primitive, native) \ | |
746 | case sig::primitive ## _P: \ | |
747 | return CYCastJSValue(context, *reinterpret_cast<native *>(data)); \ | |
748 | ||
749 | CYFromFFI_(uchar, unsigned char) | |
750 | CYFromFFI_(char, char) | |
751 | CYFromFFI_(ushort, unsigned short) | |
752 | CYFromFFI_(short, short) | |
753 | CYFromFFI_(ulong, unsigned long) | |
754 | CYFromFFI_(long, long) | |
755 | CYFromFFI_(uint, unsigned int) | |
756 | CYFromFFI_(int, int) | |
757 | CYFromFFI_(ulonglong, unsigned long long) | |
758 | CYFromFFI_(longlong, long long) | |
759 | CYFromFFI_(float, float) | |
760 | CYFromFFI_(double, double) | |
761 | ||
762 | case sig::array_P: | |
763 | if (void *pointer = data) | |
764 | return CYMakePointer(context, pointer, type->data.data.size, type->data.data.type, NULL, owner); | |
765 | else goto null; | |
766 | ||
767 | case sig::pointer_P: | |
768 | if (void *pointer = *reinterpret_cast<void **>(data)) | |
769 | return CYMakePointer(context, pointer, _not(size_t), type->data.data.type, NULL, owner); | |
770 | else goto null; | |
771 | ||
772 | case sig::string_P: | |
35cad40b JF |
773 | if (char *pointer = *reinterpret_cast<char **>(data)) |
774 | return CYMakeCString(context, pointer, owner); | |
9cad30fa JF |
775 | else goto null; |
776 | ||
777 | case sig::struct_P: | |
778 | return CYMakeStruct(context, data, type, ffi, owner); | |
779 | case sig::void_P: | |
780 | return CYJSUndefined(context); | |
781 | ||
782 | null: | |
783 | return CYJSNull(context); | |
784 | default: | |
c2e81022 | 785 | for (CYHook *hook : GetHooks()) |
c4481e40 JF |
786 | if (hook->FromFFI != NULL) |
787 | if (JSValueRef value = (*hook->FromFFI)(context, type, ffi, data, initialize, owner)) | |
788 | return value; | |
9cad30fa JF |
789 | |
790 | CYThrow("unimplemented signature code: '%c''\n", type->primitive); | |
791 | } | |
792 | } | |
793 | ||
24e7b1a6 | 794 | void CYExecuteClosure(ffi_cif *cif, void *result, void **arguments, void *arg) { |
9cad30fa JF |
795 | Closure_privateData *internal(reinterpret_cast<Closure_privateData *>(arg)); |
796 | ||
797 | JSContextRef context(internal->context_); | |
798 | ||
799 | size_t count(internal->cif_.nargs); | |
800 | JSValueRef values[count]; | |
801 | ||
802 | for (size_t index(0); index != count; ++index) | |
803 | values[index] = CYFromFFI(context, internal->signature_.elements[1 + index].type, internal->cif_.arg_types[index], arguments[index]); | |
804 | ||
24e7b1a6 | 805 | JSValueRef value(internal->adapter_(context, count, values, internal->function_)); |
9cad30fa JF |
806 | CYPoolFFI(NULL, context, internal->signature_.elements[0].type, internal->cif_.rtype, result, value); |
807 | } | |
808 | ||
9ec7dd18 JF |
809 | static JSValueRef FunctionAdapter_(JSContextRef context, size_t count, JSValueRef values[], JSObjectRef function) { |
810 | return CYCallAsFunction(context, function, NULL, count, values); | |
811 | } | |
812 | ||
24e7b1a6 | 813 | Closure_privateData *CYMakeFunctor_(JSContextRef context, JSObjectRef function, const sig::Signature &signature, JSValueRef (*adapter)(JSContextRef, size_t, JSValueRef[], JSObjectRef)) { |
9cad30fa JF |
814 | // XXX: in case of exceptions this will leak |
815 | // XXX: in point of fact, this may /need/ to leak :( | |
24e7b1a6 | 816 | Closure_privateData *internal(new Closure_privateData(context, function, adapter, signature)); |
9cad30fa | 817 | |
01b1f62f | 818 | #if defined(__APPLE__) && (defined(__arm__) || defined(__arm64__)) |
c5bce670 JF |
819 | void *executable; |
820 | ffi_closure *writable(reinterpret_cast<ffi_closure *>(ffi_closure_alloc(sizeof(ffi_closure), &executable))); | |
821 | ||
24e7b1a6 | 822 | ffi_status status(ffi_prep_closure_loc(writable, &internal->cif_, &CYExecuteClosure, internal, executable)); |
c5bce670 JF |
823 | _assert(status == FFI_OK); |
824 | ||
825 | internal->value_ = executable; | |
826 | #else | |
9cad30fa JF |
827 | ffi_closure *closure((ffi_closure *) _syscall(mmap( |
828 | NULL, sizeof(ffi_closure), | |
829 | PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, | |
830 | -1, 0 | |
831 | ))); | |
832 | ||
24e7b1a6 | 833 | ffi_status status(ffi_prep_closure(closure, &internal->cif_, &CYExecuteClosure, internal)); |
9cad30fa JF |
834 | _assert(status == FFI_OK); |
835 | ||
836 | _syscall(mprotect(closure, sizeof(*closure), PROT_READ | PROT_EXEC)); | |
837 | ||
838 | internal->value_ = closure; | |
c5bce670 | 839 | #endif |
9cad30fa JF |
840 | |
841 | return internal; | |
842 | } | |
843 | ||
67110a15 | 844 | static JSObjectRef CYMakeFunctor(JSContextRef context, JSObjectRef function, const sig::Signature &signature) { |
24e7b1a6 | 845 | Closure_privateData *internal(CYMakeFunctor_(context, function, signature, &FunctionAdapter_)); |
9cad30fa JF |
846 | JSObjectRef object(JSObjectMake(context, Functor_, internal)); |
847 | // XXX: see above notes about needing to leak | |
848 | JSValueProtect(CYGetJSContext(context), object); | |
849 | return object; | |
850 | } | |
851 | ||
56f57e5b JF |
852 | JSValueRef CYGetCachedValue(JSContextRef context, JSStringRef name) { |
853 | return CYGetProperty(context, CYCastJSObject(context, CYGetProperty(context, CYGetGlobalObject(context), cy_s)), name); | |
854 | } | |
855 | ||
9cad30fa | 856 | JSObjectRef CYGetCachedObject(JSContextRef context, JSStringRef name) { |
56f57e5b | 857 | return CYCastJSObject(context, CYGetCachedValue(context, name)); |
9cad30fa JF |
858 | } |
859 | ||
67110a15 | 860 | static JSObjectRef CYMakeFunctor(JSContextRef context, JSValueRef value, const sig::Signature &signature) { |
9cad30fa JF |
861 | JSObjectRef Function(CYGetCachedObject(context, CYJSString("Function"))); |
862 | ||
f1b5a47f | 863 | bool function(_jsccall(JSValueIsInstanceOfConstructor, context, value, Function)); |
9cad30fa JF |
864 | if (function) { |
865 | JSObjectRef function(CYCastJSObject(context, value)); | |
67110a15 | 866 | return CYMakeFunctor(context, function, signature); |
9cad30fa JF |
867 | } else { |
868 | void (*function)()(CYCastPointer<void (*)()>(context, value)); | |
67110a15 | 869 | return CYMakeFunctor(context, function, signature); |
9cad30fa JF |
870 | } |
871 | } | |
872 | ||
35cad40b JF |
873 | static JSValueRef CString_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
874 | CYPool pool; | |
875 | CString *internal(reinterpret_cast<CString *>(JSObjectGetPrivate(object))); | |
876 | char *string(static_cast<char *>(internal->value_)); | |
877 | ||
878 | ssize_t offset; | |
879 | if (!CYGetOffset(pool, context, property, offset)) | |
880 | return NULL; | |
881 | ||
882 | return CYCastJSValue(context, CYJSString(CYUTF8String(&string[offset], 1))); | |
883 | } CYCatch(NULL) } | |
884 | ||
885 | static bool CString_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry { | |
886 | CYPool pool; | |
887 | CString *internal(reinterpret_cast<CString *>(JSObjectGetPrivate(object))); | |
888 | char *string(static_cast<char *>(internal->value_)); | |
889 | ||
890 | ssize_t offset; | |
891 | if (!CYGetOffset(pool, context, property, offset)) | |
892 | return false; | |
893 | ||
894 | const char *data(CYPoolCString(pool, context, value)); | |
895 | string[offset] = *data; | |
896 | return true; | |
897 | } CYCatch(false) } | |
898 | ||
b799113b | 899 | static bool Index_(CYPool &pool, JSContextRef context, Struct_privateData *internal, JSStringRef property, ssize_t &index, uint8_t *&base) { |
9cad30fa JF |
900 | Type_privateData *typical(internal->type_); |
901 | sig::Type *type(typical->type_); | |
902 | if (type == NULL) | |
903 | return false; | |
904 | ||
905 | const char *name(CYPoolCString(pool, context, property)); | |
906 | size_t length(strlen(name)); | |
907 | double number(CYCastDouble(name, length)); | |
908 | ||
909 | size_t count(type->data.signature.count); | |
910 | ||
911 | if (std::isnan(number)) { | |
912 | if (property == NULL) | |
913 | return false; | |
914 | ||
915 | sig::Element *elements(type->data.signature.elements); | |
916 | ||
917 | for (size_t local(0); local != count; ++local) { | |
918 | sig::Element *element(&elements[local]); | |
919 | if (element->name != NULL && strcmp(name, element->name) == 0) { | |
920 | index = local; | |
921 | goto base; | |
922 | } | |
923 | } | |
924 | ||
925 | return false; | |
926 | } else { | |
927 | index = static_cast<ssize_t>(number); | |
928 | if (index != number || index < 0 || static_cast<size_t>(index) >= count) | |
929 | return false; | |
930 | } | |
931 | ||
932 | base: | |
933 | ffi_type **elements(typical->GetFFI()->elements); | |
934 | ||
935 | base = reinterpret_cast<uint8_t *>(internal->value_); | |
936 | for (ssize_t local(0); local != index; ++local) | |
937 | base += elements[local]->size; | |
938 | ||
939 | return true; | |
940 | } | |
941 | ||
942 | static JSValueRef Pointer_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { | |
943 | CYPool pool; | |
944 | Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object))); | |
945 | ||
946 | if (JSStringIsEqual(property, length_s)) | |
947 | return internal->length_ == _not(size_t) ? CYJSUndefined(context) : CYCastJSValue(context, internal->length_); | |
948 | ||
949 | Type_privateData *typical(internal->type_); | |
9cad30fa JF |
950 | if (typical->type_ == NULL) |
951 | return NULL; | |
001fffa8 | 952 | sig::Type &type(*typical->type_); |
9cad30fa JF |
953 | |
954 | ssize_t offset; | |
955 | if (JSStringIsEqualToUTF8CString(property, "$cyi")) | |
956 | offset = 0; | |
957 | else if (!CYGetOffset(pool, context, property, offset)) | |
958 | return NULL; | |
959 | ||
001fffa8 JF |
960 | if (type.primitive == sig::function_P) |
961 | return CYMakeFunctor(context, reinterpret_cast<void (*)()>(internal->value_), type.data.signature); | |
962 | ||
9cad30fa JF |
963 | ffi_type *ffi(typical->GetFFI()); |
964 | ||
965 | uint8_t *base(reinterpret_cast<uint8_t *>(internal->value_)); | |
966 | base += ffi->size * offset; | |
967 | ||
968 | JSObjectRef owner(internal->GetOwner() ?: object); | |
001fffa8 | 969 | return CYFromFFI(context, &type, ffi, base, false, owner); |
55c6d6ab | 970 | } CYCatch(NULL) } |
9cad30fa JF |
971 | |
972 | static bool Pointer_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry { | |
973 | CYPool pool; | |
974 | Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object))); | |
975 | Type_privateData *typical(internal->type_); | |
976 | ||
977 | if (typical->type_ == NULL) | |
55c6d6ab | 978 | return false; |
9cad30fa JF |
979 | |
980 | ssize_t offset; | |
981 | if (JSStringIsEqualToUTF8CString(property, "$cyi")) | |
982 | offset = 0; | |
983 | else if (!CYGetOffset(pool, context, property, offset)) | |
55c6d6ab | 984 | return false; |
9cad30fa JF |
985 | |
986 | ffi_type *ffi(typical->GetFFI()); | |
987 | ||
988 | uint8_t *base(reinterpret_cast<uint8_t *>(internal->value_)); | |
989 | base += ffi->size * offset; | |
990 | ||
991 | CYPoolFFI(NULL, context, typical->type_, ffi, base, value); | |
992 | return true; | |
55c6d6ab | 993 | } CYCatch(false) } |
9cad30fa | 994 | |
62d94d32 | 995 | static JSValueRef Struct_callAsFunction_$cya(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
9cad30fa JF |
996 | Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(_this))); |
997 | Type_privateData *typical(internal->type_); | |
998 | return CYMakePointer(context, internal->value_, _not(size_t), typical->type_, typical->ffi_, _this); | |
62d94d32 | 999 | } CYCatch(NULL) } |
9cad30fa JF |
1000 | |
1001 | static JSValueRef Struct_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { | |
1002 | CYPool pool; | |
1003 | Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(object))); | |
1004 | Type_privateData *typical(internal->type_); | |
1005 | ||
1006 | ssize_t index; | |
1007 | uint8_t *base; | |
1008 | ||
1009 | if (!Index_(pool, context, internal, property, index, base)) | |
1010 | return NULL; | |
1011 | ||
1012 | JSObjectRef owner(internal->GetOwner() ?: object); | |
1013 | ||
1014 | return CYFromFFI(context, typical->type_->data.signature.elements[index].type, typical->GetFFI()->elements[index], base, false, owner); | |
55c6d6ab | 1015 | } CYCatch(NULL) } |
9cad30fa JF |
1016 | |
1017 | static bool Struct_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry { | |
1018 | CYPool pool; | |
1019 | Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(object))); | |
1020 | Type_privateData *typical(internal->type_); | |
1021 | ||
1022 | ssize_t index; | |
1023 | uint8_t *base; | |
1024 | ||
1025 | if (!Index_(pool, context, internal, property, index, base)) | |
1026 | return false; | |
1027 | ||
1028 | CYPoolFFI(NULL, context, typical->type_->data.signature.elements[index].type, typical->GetFFI()->elements[index], base, value); | |
1029 | return true; | |
55c6d6ab | 1030 | } CYCatch(false) } |
9cad30fa JF |
1031 | |
1032 | static void Struct_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) { | |
1033 | Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(object))); | |
1034 | Type_privateData *typical(internal->type_); | |
1035 | sig::Type *type(typical->type_); | |
1036 | ||
1037 | if (type == NULL) | |
1038 | return; | |
1039 | ||
1040 | size_t count(type->data.signature.count); | |
1041 | sig::Element *elements(type->data.signature.elements); | |
1042 | ||
1043 | char number[32]; | |
1044 | ||
1045 | for (size_t index(0); index != count; ++index) { | |
1046 | const char *name; | |
1047 | name = elements[index].name; | |
1048 | ||
1049 | if (name == NULL) { | |
1050 | sprintf(number, "%zu", index); | |
1051 | name = number; | |
1052 | } | |
1053 | ||
1054 | JSPropertyNameAccumulatorAddName(names, CYJSString(name)); | |
1055 | } | |
1056 | } | |
1057 | ||
2e862b3d JF |
1058 | void CYCallFunction(CYPool &pool, JSContextRef context, ffi_cif *cif, void (*function)(), void *value, void **values) { |
1059 | ffi_call(cif, function, value, values); | |
1060 | } | |
1061 | ||
9d512587 | 1062 | JSValueRef CYCallFunction(CYPool &pool, JSContextRef context, size_t setups, void *setup[], size_t count, const JSValueRef arguments[], bool initialize, sig::Signature *signature, ffi_cif *cif, void (*function)()) { |
9cad30fa JF |
1063 | if (setups + count != signature->count - 1) |
1064 | throw CYJSError(context, "incorrect number of arguments to ffi function"); | |
1065 | ||
1066 | size_t size(setups + count); | |
1067 | void *values[size]; | |
1068 | memcpy(values, setup, sizeof(void *) * setups); | |
1069 | ||
1070 | for (size_t index(setups); index != size; ++index) { | |
1071 | sig::Element *element(&signature->elements[index + 1]); | |
1072 | ffi_type *ffi(cif->arg_types[index]); | |
1073 | // XXX: alignment? | |
1074 | values[index] = new(pool) uint8_t[ffi->size]; | |
b799113b | 1075 | CYPoolFFI(&pool, context, element->type, ffi, values[index], arguments[index - setups]); |
9cad30fa JF |
1076 | } |
1077 | ||
1078 | uint8_t value[cif->rtype->size]; | |
1079 | ||
2e862b3d JF |
1080 | void (*call)(CYPool &, JSContextRef, ffi_cif *, void (*)(), void *, void **) = &CYCallFunction; |
1081 | // XXX: this only supports one hook, but it is a bad idea anyway | |
c2e81022 | 1082 | for (CYHook *hook : GetHooks()) |
2e862b3d JF |
1083 | if (hook->CallFunction != NULL) |
1084 | call = hook->CallFunction; | |
9cad30fa | 1085 | |
2e862b3d | 1086 | call(pool, context, cif, function, value, values); |
9cad30fa | 1087 | return CYFromFFI(context, signature->elements[0].type, cif->rtype, value, initialize); |
9d512587 | 1088 | } |
9cad30fa | 1089 | |
62d94d32 | 1090 | static JSValueRef Functor_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
9cad30fa JF |
1091 | CYPool pool; |
1092 | cy::Functor *internal(reinterpret_cast<cy::Functor *>(JSObjectGetPrivate(object))); | |
9d512587 | 1093 | return CYCallFunction(pool, context, 0, NULL, count, arguments, false, &internal->signature_, &internal->cif_, internal->GetValue()); |
62d94d32 | 1094 | } CYCatch(NULL) } |
9cad30fa | 1095 | |
8e216acc JF |
1096 | static JSValueRef Pointer_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1097 | Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object))); | |
1098 | if (internal->type_->type_->primitive != sig::function_P) | |
1099 | throw CYJSError(context, "cannot call a pointer to non-function"); | |
1100 | JSObjectRef functor(CYCastJSObject(context, CYGetProperty(context, object, cyi_s))); | |
1101 | return CYCallAsFunction(context, functor, _this, count, arguments); | |
1102 | } CYCatch(NULL) } | |
1103 | ||
9a39f705 JF |
1104 | JSObjectRef CYMakeType(JSContextRef context, const char *encoding) { |
1105 | Type_privateData *internal(new Type_privateData(encoding)); | |
9cad30fa JF |
1106 | return JSObjectMake(context, Type_privateData::Class_, internal); |
1107 | } | |
1108 | ||
8a23fb2e | 1109 | JSObjectRef CYMakeType(JSContextRef context, sig::Type *type) { |
9cad30fa JF |
1110 | Type_privateData *internal(new Type_privateData(type)); |
1111 | return JSObjectMake(context, Type_privateData::Class_, internal); | |
1112 | } | |
1113 | ||
9a39f705 JF |
1114 | JSObjectRef CYMakeType(JSContextRef context, sig::Signature *signature) { |
1115 | CYPool pool; | |
1116 | ||
1117 | sig::Type type; | |
1118 | type.name = NULL; | |
1119 | type.flags = 0; | |
1120 | ||
1121 | type.primitive = sig::function_P; | |
1122 | sig::Copy(pool, type.data.signature, *signature); | |
1123 | ||
1124 | return CYMakeType(context, &type); | |
1125 | } | |
1126 | ||
58321c0a JF |
1127 | static bool All_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) { |
1128 | JSObjectRef global(CYGetGlobalObject(context)); | |
1129 | JSObjectRef cycript(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Cycript")))); | |
1130 | JSObjectRef alls(CYCastJSObject(context, CYGetProperty(context, cycript, CYJSString("alls")))); | |
1131 | ||
1132 | for (size_t i(0), count(CYArrayLength(context, alls)); i != count; ++i) | |
1133 | if (JSObjectRef space = CYCastJSObject(context, CYArrayGet(context, alls, count - i - 1))) | |
1134 | if (CYHasProperty(context, space, property)) | |
1135 | return true; | |
1136 | ||
1137 | CYPool pool; | |
1138 | CYUTF8String name(CYPoolUTF8String(pool, context, property)); | |
1139 | ||
1140 | size_t length(name.size); | |
1141 | char keyed[length + 2]; | |
1142 | memcpy(keyed + 1, name.data, length + 1); | |
1143 | ||
1144 | static const char *modes = "0124"; | |
1145 | for (size_t i(0); i != 4; ++i) { | |
1146 | keyed[0] = modes[i]; | |
1147 | if (CYBridgeHash(keyed, length + 1) != NULL) | |
1148 | return true; | |
1149 | } | |
1150 | ||
1151 | return false; | |
1152 | } | |
1153 | ||
9cad30fa JF |
1154 | static JSValueRef All_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
1155 | JSObjectRef global(CYGetGlobalObject(context)); | |
1156 | JSObjectRef cycript(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Cycript")))); | |
26ef7a82 JF |
1157 | JSObjectRef alls(CYCastJSObject(context, CYGetProperty(context, cycript, CYJSString("alls")))); |
1158 | ||
1159 | for (size_t i(0), count(CYArrayLength(context, alls)); i != count; ++i) | |
1160 | if (JSObjectRef space = CYCastJSObject(context, CYArrayGet(context, alls, count - i - 1))) | |
1161 | if (JSValueRef value = CYGetProperty(context, space, property)) | |
1162 | if (!JSValueIsUndefined(context, value)) | |
1163 | return value; | |
9cad30fa JF |
1164 | |
1165 | CYPool pool; | |
1166 | CYUTF8String name(CYPoolUTF8String(pool, context, property)); | |
1167 | ||
2f51d6ab JF |
1168 | size_t length(name.size); |
1169 | char keyed[length + 2]; | |
1170 | memcpy(keyed + 1, name.data, length + 1); | |
1171 | ||
1172 | static const char *modes = "0124"; | |
1173 | for (size_t i(0); i != 4; ++i) { | |
1174 | char mode(modes[i]); | |
1175 | keyed[0] = mode; | |
1176 | ||
1177 | if (CYBridgeEntry *entry = CYBridgeHash(keyed, length + 1)) | |
1178 | switch (mode) { | |
1179 | case '0': | |
1180 | return JSEvaluateScript(CYGetJSContext(context), CYJSString(entry->value_), NULL, NULL, 0, NULL); | |
1181 | ||
1182 | case '1': | |
9a98069f | 1183 | return CYMakeFunctor(context, name.data, entry->value_, &entry->cache_); |
2f51d6ab JF |
1184 | |
1185 | case '2': | |
1186 | if (void *symbol = CYCastSymbol(name.data)) { | |
1187 | // XXX: this is horrendously inefficient | |
1188 | sig::Signature signature; | |
1189 | sig::Parse(pool, &signature, entry->value_, &Structor_); | |
1190 | ffi_cif cif; | |
1191 | sig::sig_ffi_cif(pool, &sig::ObjectiveC, &signature, &cif); | |
1192 | return CYFromFFI(context, signature.elements[0].type, cif.rtype, symbol); | |
1193 | } else return NULL; | |
1194 | ||
1195 | // XXX: implement case 3 | |
1196 | case '4': | |
1197 | return CYMakeType(context, entry->value_); | |
1198 | } | |
9cad30fa JF |
1199 | } |
1200 | ||
2f51d6ab | 1201 | return NULL; |
55c6d6ab | 1202 | } CYCatch(NULL) } |
9cad30fa | 1203 | |
26ef7a82 JF |
1204 | static void All_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) { |
1205 | JSObjectRef global(CYGetGlobalObject(context)); | |
1206 | JSObjectRef cycript(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Cycript")))); | |
1207 | JSObjectRef alls(CYCastJSObject(context, CYGetProperty(context, cycript, CYJSString("alls")))); | |
1208 | ||
1209 | for (size_t i(0), count(CYArrayLength(context, alls)); i != count; ++i) | |
1210 | if (JSObjectRef space = CYCastJSObject(context, CYArrayGet(context, alls, count - i - 1))) { | |
1211 | JSPropertyNameArrayRef subset(JSObjectCopyPropertyNames(context, space)); | |
1212 | for (size_t index(0), count(JSPropertyNameArrayGetCount(subset)); index != count; ++index) | |
1213 | JSPropertyNameAccumulatorAddName(names, JSPropertyNameArrayGetNameAtIndex(subset, index)); | |
1214 | JSPropertyNameArrayRelease(subset); | |
1215 | } | |
1216 | } | |
1217 | ||
35cad40b JF |
1218 | static JSObjectRef CString_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1219 | if (count != 1) | |
1220 | throw CYJSError(context, "incorrect number of arguments to CString constructor"); | |
1221 | char *value(CYCastPointer<char *>(context, arguments[0])); | |
1222 | return CYMakeCString(context, value, NULL); | |
1223 | } CYCatch(NULL) } | |
1224 | ||
9cad30fa JF |
1225 | static JSObjectRef Pointer_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1226 | if (count != 2) | |
5d422750 | 1227 | throw CYJSError(context, "incorrect number of arguments to Pointer constructor"); |
9cad30fa JF |
1228 | |
1229 | CYPool pool; | |
1230 | ||
1231 | void *value(CYCastPointer<void *>(context, arguments[0])); | |
1232 | const char *type(CYPoolCString(pool, context, arguments[1])); | |
1233 | ||
1234 | sig::Signature signature; | |
1235 | sig::Parse(pool, &signature, type, &Structor_); | |
1236 | ||
1237 | return CYMakePointer(context, value, _not(size_t), signature.elements[0].type, NULL, NULL); | |
55c6d6ab | 1238 | } CYCatch(NULL) } |
9cad30fa JF |
1239 | |
1240 | static JSObjectRef Type_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
9cad30fa | 1241 | CYPool pool; |
b3c38c5f JF |
1242 | |
1243 | if (false) { | |
1244 | } else if (count == 1) { | |
1245 | const char *type(CYPoolCString(pool, context, arguments[0])); | |
1246 | return CYMakeType(context, type); | |
1247 | } else if (count == 2) { | |
1248 | JSObjectRef types(CYCastJSObject(context, arguments[0])); | |
1249 | size_t count(CYArrayLength(context, types)); | |
1250 | ||
1251 | JSObjectRef names(CYCastJSObject(context, arguments[1])); | |
1252 | ||
1253 | sig::Type type; | |
1254 | type.name = NULL; | |
1255 | type.flags = 0; | |
1256 | ||
1257 | type.primitive = sig::struct_P; | |
1258 | type.data.signature.elements = new(pool) sig::Element[count]; | |
1259 | type.data.signature.count = count; | |
1260 | ||
1261 | for (size_t i(0); i != count; ++i) { | |
1262 | sig::Element &element(type.data.signature.elements[i]); | |
1263 | element.offset = _not(size_t); | |
1264 | ||
1265 | JSValueRef name(CYArrayGet(context, names, i)); | |
1266 | if (JSValueIsUndefined(context, name)) | |
1267 | element.name = NULL; | |
1268 | else | |
1269 | element.name = CYPoolCString(pool, context, name); | |
1270 | ||
1271 | JSObjectRef object(CYCastJSObject(context, CYArrayGet(context, types, i))); | |
1272 | _assert(JSValueIsObjectOfClass(context, object, Type_privateData::Class_)); | |
1273 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); | |
1274 | element.type = internal->type_; | |
1275 | } | |
1276 | ||
1277 | return CYMakeType(context, &type); | |
1278 | } else { | |
1279 | throw CYJSError(context, "incorrect number of arguments to Type constructor"); | |
1280 | } | |
55c6d6ab | 1281 | } CYCatch(NULL) } |
9cad30fa | 1282 | |
3fe16be7 JF |
1283 | static JSValueRef Type_callAsFunction_$With(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], sig::Primitive primitive, JSValueRef *exception) { CYTry { |
1284 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1285 | ||
1286 | CYPool pool; | |
1287 | ||
1288 | sig::Type type; | |
1289 | type.name = NULL; | |
1290 | type.flags = 0; | |
1291 | ||
1292 | type.primitive = primitive; | |
1293 | type.data.signature.elements = new(pool) sig::Element[1 + count]; | |
1294 | type.data.signature.count = 1 + count; | |
1295 | ||
1296 | type.data.signature.elements[0].name = NULL; | |
1297 | type.data.signature.elements[0].type = internal->type_; | |
1298 | type.data.signature.elements[0].offset = _not(size_t); | |
1299 | ||
1300 | for (size_t i(0); i != count; ++i) { | |
1301 | sig::Element &element(type.data.signature.elements[i + 1]); | |
1302 | element.name = NULL; | |
1303 | element.offset = _not(size_t); | |
1304 | ||
1305 | JSObjectRef object(CYCastJSObject(context, arguments[i])); | |
1306 | _assert(JSValueIsObjectOfClass(context, object, Type_privateData::Class_)); | |
1307 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); | |
1308 | ||
1309 | element.type = internal->type_; | |
1310 | } | |
1311 | ||
1312 | return CYMakeType(context, &type); | |
1313 | } CYCatch(NULL) } | |
1314 | ||
85e90410 JF |
1315 | static JSValueRef Type_callAsFunction_arrayOf(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1316 | if (count != 1) | |
1317 | throw CYJSError(context, "incorrect number of arguments to Type.arrayOf"); | |
1318 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1319 | ||
1320 | CYPool pool; | |
1321 | size_t index(CYGetIndex(pool, context, CYJSString(context, arguments[0]))); | |
1322 | if (index == _not(size_t)) | |
1323 | throw CYJSError(context, "invalid array size used with Type.arrayOf"); | |
9cad30fa JF |
1324 | |
1325 | sig::Type type; | |
85e90410 JF |
1326 | type.name = NULL; |
1327 | type.flags = 0; | |
9cad30fa | 1328 | |
85e90410 JF |
1329 | type.primitive = sig::array_P; |
1330 | type.data.data.type = internal->type_; | |
1331 | type.data.data.size = index; | |
1332 | ||
1333 | return CYMakeType(context, &type); | |
55c6d6ab | 1334 | } CYCatch(NULL) } |
9cad30fa | 1335 | |
3fe16be7 JF |
1336 | static JSValueRef Type_callAsFunction_blockWith(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { |
1337 | return Type_callAsFunction_$With(context, object, _this, count, arguments, sig::block_P, exception); | |
1338 | } | |
1339 | ||
fbc17268 JF |
1340 | static JSValueRef Type_callAsFunction_constant(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1341 | if (count != 0) | |
1342 | throw CYJSError(context, "incorrect number of arguments to Type.constant"); | |
1343 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1344 | ||
1345 | sig::Type type(*internal->type_); | |
1346 | type.flags |= JOC_TYPE_CONST; | |
1347 | return CYMakeType(context, &type); | |
55c6d6ab | 1348 | } CYCatch(NULL) } |
fbc17268 | 1349 | |
3fe283c5 JF |
1350 | static JSValueRef Type_callAsFunction_long(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1351 | if (count != 0) | |
1352 | throw CYJSError(context, "incorrect number of arguments to Type.long"); | |
1353 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1354 | ||
1355 | sig::Type type(*internal->type_); | |
1356 | ||
1357 | switch (type.primitive) { | |
1358 | case sig::short_P: type.primitive = sig::int_P; break; | |
1359 | case sig::int_P: type.primitive = sig::long_P; break; | |
1360 | case sig::long_P: type.primitive = sig::longlong_P; break; | |
1361 | default: throw CYJSError(context, "invalid type argument to Type.long"); | |
1362 | } | |
1363 | ||
1364 | return CYMakeType(context, &type); | |
1365 | } CYCatch(NULL) } | |
1366 | ||
1367 | static JSValueRef Type_callAsFunction_short(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1368 | if (count != 0) | |
1369 | throw CYJSError(context, "incorrect number of arguments to Type.short"); | |
1370 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1371 | ||
1372 | sig::Type type(*internal->type_); | |
1373 | ||
1374 | switch (type.primitive) { | |
1375 | case sig::int_P: type.primitive = sig::short_P; break; | |
1376 | case sig::long_P: type.primitive = sig::int_P; break; | |
1377 | case sig::longlong_P: type.primitive = sig::long_P; break; | |
1378 | default: throw CYJSError(context, "invalid type argument to Type.short"); | |
1379 | } | |
1380 | ||
1381 | return CYMakeType(context, &type); | |
1382 | } CYCatch(NULL) } | |
1383 | ||
1384 | static JSValueRef Type_callAsFunction_signed(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1385 | if (count != 0) | |
1386 | throw CYJSError(context, "incorrect number of arguments to Type.signed"); | |
1387 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1388 | ||
1389 | sig::Type type(*internal->type_); | |
1390 | ||
1391 | switch (type.primitive) { | |
1392 | case sig::char_P: case sig::uchar_P: type.primitive = sig::char_P; break; | |
1393 | case sig::short_P: case sig::ushort_P: type.primitive = sig::short_P; break; | |
1394 | case sig::int_P: case sig::uint_P: type.primitive = sig::int_P; break; | |
1395 | case sig::long_P: case sig::ulong_P: type.primitive = sig::long_P; break; | |
1396 | case sig::longlong_P: case sig::ulonglong_P: type.primitive = sig::longlong_P; break; | |
1397 | default: throw CYJSError(context, "invalid type argument to Type.signed"); | |
1398 | } | |
1399 | ||
1400 | return CYMakeType(context, &type); | |
1401 | } CYCatch(NULL) } | |
1402 | ||
1403 | static JSValueRef Type_callAsFunction_unsigned(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1404 | if (count != 0) | |
1405 | throw CYJSError(context, "incorrect number of arguments to Type.unsigned"); | |
1406 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1407 | ||
1408 | sig::Type type(*internal->type_); | |
1409 | ||
1410 | switch (type.primitive) { | |
1411 | case sig::char_P: case sig::uchar_P: type.primitive = sig::uchar_P; break; | |
1412 | case sig::short_P: case sig::ushort_P: type.primitive = sig::ushort_P; break; | |
1413 | case sig::int_P: case sig::uint_P: type.primitive = sig::uint_P; break; | |
1414 | case sig::long_P: case sig::ulong_P: type.primitive = sig::ulong_P; break; | |
1415 | case sig::longlong_P: case sig::ulonglong_P: type.primitive = sig::ulonglong_P; break; | |
1416 | default: throw CYJSError(context, "invalid type argument to Type.unsigned"); | |
1417 | } | |
1418 | ||
1419 | return CYMakeType(context, &type); | |
1420 | } CYCatch(NULL) } | |
1421 | ||
3fe16be7 JF |
1422 | static JSValueRef Type_callAsFunction_functionWith(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { |
1423 | return Type_callAsFunction_$With(context, object, _this, count, arguments, sig::function_P, exception); | |
1424 | } | |
9a39f705 | 1425 | |
85e90410 JF |
1426 | static JSValueRef Type_callAsFunction_pointerTo(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1427 | if (count != 0) | |
1428 | throw CYJSError(context, "incorrect number of arguments to Type.pointerTo"); | |
1429 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1430 | ||
1431 | sig::Type type; | |
9cad30fa | 1432 | type.name = NULL; |
9cad30fa | 1433 | |
02873b72 JF |
1434 | if (internal->type_->primitive == sig::char_P) { |
1435 | type.flags = internal->type_->flags; | |
1436 | type.primitive = sig::string_P; | |
1437 | type.data.data.type = NULL; | |
1438 | type.data.data.size = 0; | |
1439 | } else { | |
1440 | type.flags = 0; | |
1441 | type.primitive = sig::pointer_P; | |
1442 | type.data.data.type = internal->type_; | |
1443 | type.data.data.size = 0; | |
1444 | } | |
9cad30fa JF |
1445 | |
1446 | return CYMakeType(context, &type); | |
55c6d6ab | 1447 | } CYCatch(NULL) } |
9cad30fa | 1448 | |
21d5f610 JF |
1449 | static JSValueRef Type_callAsFunction_withName(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1450 | if (count != 1) | |
1451 | throw CYJSError(context, "incorrect number of arguments to Type.withName"); | |
1452 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1453 | ||
1454 | CYPool pool; | |
1455 | const char *name(CYPoolCString(pool, context, arguments[0])); | |
1456 | ||
1457 | sig::Type type(*internal->type_); | |
1458 | type.name = name; | |
1459 | return CYMakeType(context, &type); | |
55c6d6ab | 1460 | } CYCatch(NULL) } |
21d5f610 | 1461 | |
9cad30fa | 1462 | static JSValueRef Type_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
9cad30fa JF |
1463 | if (count != 1) |
1464 | throw CYJSError(context, "incorrect number of arguments to type cast function"); | |
1c3dd2c3 JF |
1465 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); |
1466 | ||
077756a4 | 1467 | if (internal->type_->primitive == sig::function_P) |
b48c91a5 | 1468 | return CYMakeFunctor(context, arguments[0], internal->type_->data.signature); |
077756a4 | 1469 | |
9cad30fa JF |
1470 | sig::Type *type(internal->type_); |
1471 | ffi_type *ffi(internal->GetFFI()); | |
1472 | // XXX: alignment? | |
1473 | uint8_t value[ffi->size]; | |
1474 | CYPool pool; | |
b799113b | 1475 | CYPoolFFI(&pool, context, type, ffi, value, arguments[0]); |
9cad30fa | 1476 | return CYFromFFI(context, type, ffi, value); |
55c6d6ab | 1477 | } CYCatch(NULL) } |
9cad30fa JF |
1478 | |
1479 | static JSObjectRef Type_callAsConstructor(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1480 | if (count != 0) | |
767e8255 | 1481 | throw CYJSError(context, "incorrect number of arguments to Type allocator"); |
9cad30fa JF |
1482 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); |
1483 | ||
1484 | sig::Type *type(internal->type_); | |
1485 | size_t length; | |
1486 | ||
1487 | if (type->primitive != sig::array_P) | |
1488 | length = _not(size_t); | |
1489 | else { | |
1490 | length = type->data.data.size; | |
1491 | type = type->data.data.type; | |
1492 | } | |
1493 | ||
ae0a1432 | 1494 | void *value(calloc(1, internal->GetFFI()->size)); |
9cad30fa | 1495 | return CYMakePointer(context, value, length, type, NULL, NULL); |
55c6d6ab | 1496 | } CYCatch(NULL) } |
9cad30fa JF |
1497 | |
1498 | static JSObjectRef Functor_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1499 | if (count != 2) | |
1500 | throw CYJSError(context, "incorrect number of arguments to Functor constructor"); | |
1501 | CYPool pool; | |
67110a15 JF |
1502 | const char *encoding(CYPoolCString(pool, context, arguments[1])); |
1503 | sig::Signature signature; | |
1504 | sig::Parse(pool, &signature, encoding, &Structor_); | |
1505 | return CYMakeFunctor(context, arguments[0], signature); | |
55c6d6ab | 1506 | } CYCatch(NULL) } |
9cad30fa | 1507 | |
2b1c9594 JF |
1508 | static JSValueRef CString_callAsFunction_toPointer(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1509 | CString *internal(reinterpret_cast<CString *>(JSObjectGetPrivate(_this))); | |
1510 | ||
1511 | sig::Type type; | |
1512 | type.name = NULL; | |
1513 | type.flags = 0; | |
1514 | ||
1515 | type.primitive = sig::char_P; | |
1516 | type.data.data.type = NULL; | |
1517 | type.data.data.size = 0; | |
1518 | ||
1519 | return CYMakePointer(context, internal->value_, _not(size_t), &type, NULL, NULL); | |
1520 | } CYCatch(NULL) } | |
1521 | ||
8e216acc | 1522 | static JSValueRef Functor_callAsFunction_$cya(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
2b1c9594 JF |
1523 | CYPool pool; |
1524 | cy::Functor *internal(reinterpret_cast<cy::Functor *>(JSObjectGetPrivate(_this))); | |
1525 | ||
1526 | sig::Type type; | |
1527 | type.name = NULL; | |
1528 | type.flags = 0; | |
1529 | ||
1530 | type.primitive = sig::function_P; | |
1531 | sig::Copy(pool, type.data.signature, internal->signature_); | |
1532 | ||
1533 | return CYMakePointer(context, internal->value_, _not(size_t), &type, NULL, NULL); | |
1534 | } CYCatch(NULL) } | |
1535 | ||
1536 | static JSValueRef Pointer_callAsFunction_toPointer(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1537 | return _this; | |
1538 | } CYCatch(NULL) } | |
1539 | ||
9cad30fa JF |
1540 | static JSValueRef CYValue_callAsFunction_valueOf(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1541 | CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(_this))); | |
1542 | return CYCastJSValue(context, reinterpret_cast<uintptr_t>(internal->value_)); | |
55c6d6ab | 1543 | } CYCatch(NULL) } |
9cad30fa JF |
1544 | |
1545 | static JSValueRef CYValue_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { | |
1546 | return CYValue_callAsFunction_valueOf(context, object, _this, count, arguments, exception); | |
1547 | } | |
1548 | ||
1549 | static JSValueRef CYValue_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1550 | CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(_this))); | |
d3865d29 JF |
1551 | std::ostringstream str; |
1552 | Dl_info info; | |
1553 | if (internal->value_ == NULL) | |
1554 | str << "NULL"; | |
1555 | else if (dladdr(internal->value_, &info) == 0) | |
1556 | str << internal->value_; | |
1557 | else { | |
1558 | str << info.dli_sname; | |
1559 | off_t offset(static_cast<char *>(internal->value_) - static_cast<char *>(info.dli_saddr)); | |
1560 | if (offset != 0) | |
1561 | str << "+0x" << std::hex << offset; | |
1562 | } | |
1563 | std::string value(str.str()); | |
1564 | return CYCastJSValue(context, CYJSString(CYUTF8String(value.c_str(), value.size()))); | |
55c6d6ab | 1565 | } CYCatch(NULL) } |
9cad30fa JF |
1566 | |
1567 | static JSValueRef Pointer_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
98735bfe JF |
1568 | std::set<void *> *objects(CYCastObjects(context, _this, count, arguments)); |
1569 | ||
9cad30fa JF |
1570 | Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(_this))); |
1571 | if (internal->length_ != _not(size_t)) { | |
3b1534c0 | 1572 | JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array_prototype"))); |
9cad30fa JF |
1573 | JSObjectRef toCYON(CYCastJSObject(context, CYGetProperty(context, Array, toCYON_s))); |
1574 | return CYCallAsFunction(context, toCYON, _this, count, arguments); | |
0d64cb32 | 1575 | } else if (internal->type_->type_ == NULL) pointer: { |
d8704ce4 JF |
1576 | CYLocalPool pool; |
1577 | std::ostringstream str; | |
1578 | ||
1579 | sig::Type type; | |
1580 | type.name = NULL; | |
1581 | type.flags = 0; | |
1582 | ||
1583 | type.primitive = sig::pointer_P; | |
1584 | type.data.data.type = internal->type_->type_; | |
1585 | type.data.data.size = 0; | |
1586 | ||
1587 | CYOptions options; | |
1588 | CYOutput output(*str.rdbuf(), options); | |
1589 | (new(pool) CYTypeExpression(Decode(pool, &type)))->Output(output, CYNoFlags); | |
1590 | ||
1591 | str << "(" << internal->value_ << ")"; | |
1592 | std::string value(str.str()); | |
1593 | return CYCastJSValue(context, CYJSString(CYUTF8String(value.c_str(), value.size()))); | |
35cad40b | 1594 | } else try { |
0d64cb32 JF |
1595 | JSValueRef value(CYGetProperty(context, _this, cyi_s)); |
1596 | if (JSValueIsUndefined(context, value)) | |
1597 | goto pointer; | |
1598 | CYPool pool; | |
98735bfe | 1599 | return CYCastJSValue(context, pool.strcat("&", CYPoolCCYON(pool, context, value, objects), NULL)); |
0d64cb32 JF |
1600 | } catch (const CYException &e) { |
1601 | goto pointer; | |
9cad30fa | 1602 | } |
55c6d6ab | 1603 | } CYCatch(NULL) } |
9cad30fa | 1604 | |
35cad40b JF |
1605 | static JSValueRef CString_getProperty_length(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
1606 | CString *internal(reinterpret_cast<CString *>(JSObjectGetPrivate(object))); | |
1607 | char *string(static_cast<char *>(internal->value_)); | |
1608 | return CYCastJSValue(context, strlen(string)); | |
1609 | } CYCatch(NULL) } | |
1610 | ||
1611 | static JSValueRef CString_getProperty_type(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { | |
1612 | sig::Type type; | |
1613 | type.name = NULL; | |
1614 | type.flags = 0; | |
1615 | ||
1616 | type.primitive = sig::char_P; | |
1617 | type.data.data.type = NULL; | |
1618 | type.data.data.size = 0; | |
1619 | ||
1620 | return CYMakeType(context, &type); | |
1621 | } CYCatch(NULL) } | |
1622 | ||
9cea6cab JF |
1623 | static JSValueRef Pointer_getProperty_type(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
1624 | Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object))); | |
1625 | return CYMakeType(context, internal->type_->type_); | |
1626 | } CYCatch(NULL) } | |
1627 | ||
35cad40b JF |
1628 | static JSValueRef CString_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1629 | Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(_this))); | |
1630 | const char *string(static_cast<const char *>(internal->value_)); | |
1631 | std::ostringstream str; | |
1632 | str << "&"; | |
18d654b3 | 1633 | CYStringify(str, string, strlen(string), true); |
35cad40b JF |
1634 | std::string value(str.str()); |
1635 | return CYCastJSValue(context, CYJSString(CYUTF8String(value.c_str(), value.size()))); | |
1636 | } CYCatch(NULL) } | |
1637 | ||
1638 | static JSValueRef CString_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1639 | Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(_this))); | |
1640 | const char *string(static_cast<const char *>(internal->value_)); | |
1641 | return CYCastJSValue(context, string); | |
1642 | } CYCatch(NULL) } | |
1643 | ||
62d94d32 | 1644 | static JSValueRef Functor_getProperty_type(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
7d894647 | 1645 | cy::Functor *internal(reinterpret_cast<cy::Functor *>(JSObjectGetPrivate(object))); |
9a39f705 | 1646 | return CYMakeType(context, &internal->signature_); |
62d94d32 | 1647 | } CYCatch(NULL) } |
7d894647 | 1648 | |
62d94d32 | 1649 | static JSValueRef Type_getProperty_alignment(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
74e8c566 JF |
1650 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); |
1651 | return CYCastJSValue(context, internal->GetFFI()->alignment); | |
62d94d32 | 1652 | } CYCatch(NULL) } |
74e8c566 | 1653 | |
62d94d32 | 1654 | static JSValueRef Type_getProperty_name(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
21d5f610 JF |
1655 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); |
1656 | return CYCastJSValue(context, internal->type_->name); | |
62d94d32 | 1657 | } CYCatch(NULL) } |
21d5f610 | 1658 | |
62d94d32 | 1659 | static JSValueRef Type_getProperty_size(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
74e8c566 JF |
1660 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); |
1661 | return CYCastJSValue(context, internal->GetFFI()->size); | |
62d94d32 | 1662 | } CYCatch(NULL) } |
74e8c566 | 1663 | |
9cad30fa JF |
1664 | static JSValueRef Type_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1665 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1666 | CYPool pool; | |
1667 | const char *type(sig::Unparse(pool, internal->type_)); | |
1668 | return CYCastJSValue(context, CYJSString(type)); | |
55c6d6ab | 1669 | } CYCatch(NULL) } |
9cad30fa JF |
1670 | |
1671 | static JSValueRef Type_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1672 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
9a39f705 | 1673 | CYLocalPool pool; |
efd689d8 | 1674 | std::stringbuf out; |
9a39f705 JF |
1675 | CYOptions options; |
1676 | CYOutput output(out, options); | |
64a505ff | 1677 | (new(pool) CYTypeExpression(Decode(pool, internal->type_)))->Output(output, CYNoFlags); |
9a39f705 | 1678 | return CYCastJSValue(context, CYJSString(out.str().c_str())); |
55c6d6ab | 1679 | } CYCatch(NULL) } |
9cad30fa JF |
1680 | |
1681 | static JSValueRef Type_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { | |
1682 | return Type_callAsFunction_toString(context, object, _this, count, arguments, exception); | |
1683 | } | |
1684 | ||
2b1c9594 | 1685 | static JSStaticFunction CString_staticFunctions[6] = { |
35cad40b JF |
1686 | {"toCYON", &CString_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
1687 | {"toJSON", &CYValue_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
2b1c9594 | 1688 | {"toPointer", &CString_callAsFunction_toPointer, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
35cad40b JF |
1689 | {"toString", &CString_callAsFunction_toString, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
1690 | {"valueOf", &CString_callAsFunction_toString, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1691 | {NULL, NULL, 0} | |
1692 | }; | |
1693 | ||
1694 | static JSStaticValue CString_staticValues[3] = { | |
1695 | {"length", &CString_getProperty_length, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1696 | {"type", &CString_getProperty_type, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1697 | {NULL, NULL, NULL, 0} | |
1698 | }; | |
1699 | ||
2b1c9594 | 1700 | static JSStaticFunction Pointer_staticFunctions[5] = { |
9cad30fa JF |
1701 | {"toCYON", &Pointer_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
1702 | {"toJSON", &CYValue_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
2b1c9594 | 1703 | {"toPointer", &Pointer_callAsFunction_toPointer, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
9cad30fa JF |
1704 | {"valueOf", &CYValue_callAsFunction_valueOf, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
1705 | {NULL, NULL, 0} | |
1706 | }; | |
1707 | ||
9cea6cab JF |
1708 | static JSStaticValue Pointer_staticValues[2] = { |
1709 | {"type", &Pointer_getProperty_type, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1710 | {NULL, NULL, NULL, 0} | |
1711 | }; | |
1712 | ||
9cad30fa JF |
1713 | static JSStaticFunction Struct_staticFunctions[2] = { |
1714 | {"$cya", &Struct_callAsFunction_$cya, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1715 | {NULL, NULL, 0} | |
1716 | }; | |
1717 | ||
2b1c9594 | 1718 | static JSStaticFunction Functor_staticFunctions[5] = { |
8e216acc | 1719 | {"$cya", &Functor_callAsFunction_$cya, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
9cad30fa JF |
1720 | {"toCYON", &CYValue_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
1721 | {"toJSON", &CYValue_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1722 | {"valueOf", &CYValue_callAsFunction_valueOf, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1723 | {NULL, NULL, 0} | |
1724 | }; | |
1725 | ||
1726 | namespace cy { | |
1727 | JSStaticFunction const * const Functor::StaticFunctions = Functor_staticFunctions; | |
1728 | } | |
1729 | ||
7d894647 JF |
1730 | static JSStaticValue Functor_staticValues[2] = { |
1731 | {"type", &Functor_getProperty_type, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1732 | {NULL, NULL, NULL, 0} | |
1733 | }; | |
1734 | ||
8493347d JF |
1735 | namespace cy { |
1736 | JSStaticValue const * const Functor::StaticValues = Functor_staticValues; | |
1737 | } | |
1738 | ||
21d5f610 | 1739 | static JSStaticValue Type_staticValues[4] = { |
74e8c566 | 1740 | {"alignment", &Type_getProperty_alignment, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
21d5f610 | 1741 | {"name", &Type_getProperty_name, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
74e8c566 JF |
1742 | {"size", &Type_getProperty_size, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
1743 | {NULL, NULL, NULL, 0} | |
1744 | }; | |
1745 | ||
3fe283c5 | 1746 | static JSStaticFunction Type_staticFunctions[14] = { |
85e90410 | 1747 | {"arrayOf", &Type_callAsFunction_arrayOf, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
3fe16be7 | 1748 | {"blockWith", &Type_callAsFunction_blockWith, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
fbc17268 | 1749 | {"constant", &Type_callAsFunction_constant, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
9a39f705 | 1750 | {"functionWith", &Type_callAsFunction_functionWith, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
3fe283c5 | 1751 | {"long", &Type_callAsFunction_long, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
85e90410 | 1752 | {"pointerTo", &Type_callAsFunction_pointerTo, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
3fe283c5 JF |
1753 | {"short", &Type_callAsFunction_short, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
1754 | {"signed", &Type_callAsFunction_signed, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
21d5f610 | 1755 | {"withName", &Type_callAsFunction_withName, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
9cad30fa JF |
1756 | {"toCYON", &Type_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
1757 | {"toJSON", &Type_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1758 | {"toString", &Type_callAsFunction_toString, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
3fe283c5 | 1759 | {"unsigned", &Type_callAsFunction_unsigned, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
9cad30fa JF |
1760 | {NULL, NULL, 0} |
1761 | }; | |
1762 | ||
1763 | static JSObjectRef (*JSObjectMakeArray$)(JSContextRef, size_t, const JSValueRef[], JSValueRef *); | |
1764 | ||
d9c91152 | 1765 | _visible void CYSetArgs(int argc, const char *argv[]) { |
9cad30fa JF |
1766 | JSContextRef context(CYGetJSContext()); |
1767 | JSValueRef args[argc]; | |
1768 | for (int i(0); i != argc; ++i) | |
1769 | args[i] = CYCastJSValue(context, argv[i]); | |
1770 | ||
1771 | JSObjectRef array; | |
f1b5a47f JF |
1772 | if (JSObjectMakeArray$ != NULL) |
1773 | array = _jsccall(*JSObjectMakeArray$, context, argc, args); | |
1774 | else { | |
9cad30fa JF |
1775 | JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array"))); |
1776 | JSValueRef value(CYCallAsFunction(context, Array, NULL, argc, args)); | |
1777 | array = CYCastJSObject(context, value); | |
1778 | } | |
1779 | ||
1780 | JSObjectRef System(CYGetCachedObject(context, CYJSString("System"))); | |
1781 | CYSetProperty(context, System, CYJSString("args"), array); | |
1782 | } | |
1783 | ||
1784 | JSObjectRef CYGetGlobalObject(JSContextRef context) { | |
1785 | return JSContextGetGlobalObject(context); | |
1786 | } | |
1787 | ||
c4481e40 | 1788 | // XXX: this is neither exceptin safe nor even terribly sane |
a8d80096 JF |
1789 | class ExecutionHandle { |
1790 | private: | |
1791 | JSContextRef context_; | |
c4481e40 | 1792 | std::vector<void *> handles_; |
a8d80096 JF |
1793 | |
1794 | public: | |
1795 | ExecutionHandle(JSContextRef context) : | |
1796 | context_(context) | |
1797 | { | |
c2e81022 JF |
1798 | handles_.resize(GetHooks().size()); |
1799 | for (size_t i(0); i != GetHooks().size(); ++i) { | |
1800 | CYHook *hook(GetHooks()[i]); | |
c4481e40 JF |
1801 | if (hook->ExecuteStart != NULL) |
1802 | handles_[i] = (*hook->ExecuteStart)(context_); | |
1803 | else | |
1804 | handles_[i] = NULL; | |
1805 | } | |
a8d80096 JF |
1806 | } |
1807 | ||
1808 | ~ExecutionHandle() { | |
c2e81022 JF |
1809 | for (size_t i(GetHooks().size()); i != 0; --i) { |
1810 | CYHook *hook(GetHooks()[i-1]); | |
c4481e40 JF |
1811 | if (hook->ExecuteEnd != NULL) |
1812 | (*hook->ExecuteEnd)(context_, handles_[i-1]); | |
1813 | } | |
a8d80096 JF |
1814 | } |
1815 | }; | |
1816 | ||
b0ba908c JF |
1817 | static volatile bool cancel_; |
1818 | ||
1819 | static bool CYShouldTerminate(JSContextRef context, void *arg) { | |
1820 | return cancel_; | |
1821 | } | |
1822 | ||
d9c91152 | 1823 | _visible const char *CYExecute(JSContextRef context, CYPool &pool, CYUTF8String code) { |
a8d80096 | 1824 | ExecutionHandle handle(context); |
9cad30fa | 1825 | |
b0ba908c JF |
1826 | cancel_ = false; |
1827 | if (&JSContextGroupSetExecutionTimeLimit != NULL) | |
1828 | JSContextGroupSetExecutionTimeLimit(JSContextGetGroup(context), 0.5, &CYShouldTerminate, NULL); | |
9cad30fa | 1829 | |
e66ced89 JF |
1830 | try { |
1831 | JSValueRef result(_jsccall(JSEvaluateScript, context, CYJSString(code), NULL, NULL, 0)); | |
1832 | if (JSValueIsUndefined(context, result)) | |
1833 | return NULL; | |
9cad30fa | 1834 | |
e66ced89 JF |
1835 | std::set<void *> objects; |
1836 | const char *json(_jsccall(CYPoolCCYON, pool, context, result, objects)); | |
1837 | CYSetProperty(context, CYGetGlobalObject(context), Result_, result); | |
9cad30fa | 1838 | |
e66ced89 JF |
1839 | return json; |
1840 | } catch (const CYException &error) { | |
1841 | return pool.strcat("throw ", error.PoolCString(pool), NULL); | |
1842 | } | |
9cad30fa JF |
1843 | } |
1844 | ||
d9c91152 | 1845 | _visible void CYCancel() { |
b0ba908c JF |
1846 | cancel_ = true; |
1847 | } | |
1848 | ||
09eee478 JF |
1849 | static bool initialized_ = false; |
1850 | ||
9cad30fa | 1851 | void CYInitializeDynamic() { |
09eee478 JF |
1852 | if (!initialized_) |
1853 | initialized_ = true; | |
1854 | else return; | |
1855 | ||
9cad30fa | 1856 | JSObjectMakeArray$ = reinterpret_cast<JSObjectRef (*)(JSContextRef, size_t, const JSValueRef[], JSValueRef *)>(dlsym(RTLD_DEFAULT, "JSObjectMakeArray")); |
d5fa31c5 | 1857 | JSSynchronousGarbageCollectForDebugging$ = reinterpret_cast<void (*)(JSContextRef)>(dlsym(RTLD_DEFAULT, "JSSynchronousGarbageCollectForDebugging")); |
9cad30fa JF |
1858 | |
1859 | JSClassDefinition definition; | |
1860 | ||
1861 | definition = kJSClassDefinitionEmpty; | |
1862 | definition.className = "All"; | |
58321c0a | 1863 | definition.hasProperty = &All_hasProperty; |
9cad30fa | 1864 | definition.getProperty = &All_getProperty; |
26ef7a82 | 1865 | definition.getPropertyNames = &All_getPropertyNames; |
9cad30fa JF |
1866 | All_ = JSClassCreate(&definition); |
1867 | ||
1868 | definition = kJSClassDefinitionEmpty; | |
1869 | definition.className = "Context"; | |
1870 | definition.finalize = &CYFinalize; | |
1871 | Context_ = JSClassCreate(&definition); | |
1872 | ||
35cad40b JF |
1873 | definition = kJSClassDefinitionEmpty; |
1874 | definition.className = "CString"; | |
1875 | definition.staticFunctions = CString_staticFunctions; | |
1876 | definition.staticValues = CString_staticValues; | |
1877 | definition.getProperty = &CString_getProperty; | |
1878 | definition.setProperty = &CString_setProperty; | |
1879 | definition.finalize = &CYFinalize; | |
1880 | CString_ = JSClassCreate(&definition); | |
1881 | ||
9cad30fa JF |
1882 | definition = kJSClassDefinitionEmpty; |
1883 | definition.className = "Functor"; | |
1884 | definition.staticFunctions = cy::Functor::StaticFunctions; | |
7d894647 | 1885 | definition.staticValues = Functor_staticValues; |
9cad30fa JF |
1886 | definition.callAsFunction = &Functor_callAsFunction; |
1887 | definition.finalize = &CYFinalize; | |
1888 | Functor_ = JSClassCreate(&definition); | |
1889 | ||
1890 | definition = kJSClassDefinitionEmpty; | |
1891 | definition.className = "Pointer"; | |
1892 | definition.staticFunctions = Pointer_staticFunctions; | |
9cea6cab | 1893 | definition.staticValues = Pointer_staticValues; |
8e216acc | 1894 | definition.callAsFunction = &Pointer_callAsFunction; |
9cad30fa JF |
1895 | definition.getProperty = &Pointer_getProperty; |
1896 | definition.setProperty = &Pointer_setProperty; | |
1897 | definition.finalize = &CYFinalize; | |
1898 | Pointer_ = JSClassCreate(&definition); | |
1899 | ||
1900 | definition = kJSClassDefinitionEmpty; | |
1901 | definition.className = "Struct"; | |
1902 | definition.staticFunctions = Struct_staticFunctions; | |
1903 | definition.getProperty = &Struct_getProperty; | |
1904 | definition.setProperty = &Struct_setProperty; | |
1905 | definition.getPropertyNames = &Struct_getPropertyNames; | |
1906 | definition.finalize = &CYFinalize; | |
1907 | Struct_ = JSClassCreate(&definition); | |
1908 | ||
1909 | definition = kJSClassDefinitionEmpty; | |
1910 | definition.className = "Type"; | |
74e8c566 | 1911 | definition.staticValues = Type_staticValues; |
9cad30fa | 1912 | definition.staticFunctions = Type_staticFunctions; |
9cad30fa JF |
1913 | definition.callAsFunction = &Type_callAsFunction; |
1914 | definition.callAsConstructor = &Type_callAsConstructor; | |
1915 | definition.finalize = &CYFinalize; | |
1916 | Type_privateData::Class_ = JSClassCreate(&definition); | |
1917 | ||
1918 | definition = kJSClassDefinitionEmpty; | |
56a66df3 | 1919 | definition.className = "Global"; |
9cad30fa JF |
1920 | //definition.getProperty = &Global_getProperty; |
1921 | Global_ = JSClassCreate(&definition); | |
1922 | ||
1923 | Array_s = JSStringCreateWithUTF8CString("Array"); | |
1924 | cy_s = JSStringCreateWithUTF8CString("$cy"); | |
4dd55d2f | 1925 | cyi_s = JSStringCreateWithUTF8CString("$cyi"); |
9cad30fa JF |
1926 | length_s = JSStringCreateWithUTF8CString("length"); |
1927 | message_s = JSStringCreateWithUTF8CString("message"); | |
1928 | name_s = JSStringCreateWithUTF8CString("name"); | |
1929 | pop_s = JSStringCreateWithUTF8CString("pop"); | |
1930 | prototype_s = JSStringCreateWithUTF8CString("prototype"); | |
1931 | push_s = JSStringCreateWithUTF8CString("push"); | |
1932 | splice_s = JSStringCreateWithUTF8CString("splice"); | |
1933 | toCYON_s = JSStringCreateWithUTF8CString("toCYON"); | |
1934 | toJSON_s = JSStringCreateWithUTF8CString("toJSON"); | |
20ded97a | 1935 | toPointer_s = JSStringCreateWithUTF8CString("toPointer"); |
4cb8aa43 | 1936 | toString_s = JSStringCreateWithUTF8CString("toString"); |
56f57e5b | 1937 | weak_s = JSStringCreateWithUTF8CString("weak"); |
9cad30fa JF |
1938 | |
1939 | Result_ = JSStringCreateWithUTF8CString("_"); | |
1940 | ||
c2e81022 | 1941 | for (CYHook *hook : GetHooks()) |
c4481e40 JF |
1942 | if (hook->Initialize != NULL) |
1943 | (*hook->Initialize)(); | |
9cad30fa JF |
1944 | } |
1945 | ||
1946 | void CYThrow(JSContextRef context, JSValueRef value) { | |
1947 | if (value != NULL) | |
1948 | throw CYJSError(context, value); | |
1949 | } | |
1950 | ||
b799113b | 1951 | const char *CYJSError::PoolCString(CYPool &pool) const { |
98735bfe | 1952 | std::set<void *> objects; |
9cad30fa | 1953 | // XXX: this used to be CYPoolCString |
98735bfe | 1954 | return CYPoolCCYON(pool, context_, value_, objects); |
9cad30fa JF |
1955 | } |
1956 | ||
a1ae2985 JF |
1957 | JSValueRef CYJSError::CastJSValue(JSContextRef context, const char *name) const { |
1958 | // XXX: what if the context is different? or the name? I dunno. ("epic" :/) | |
9cad30fa JF |
1959 | return value_; |
1960 | } | |
1961 | ||
a1ae2985 JF |
1962 | JSValueRef CYCastJSError(JSContextRef context, const char *name, const char *message) { |
1963 | JSObjectRef Error(CYGetCachedObject(context, CYJSString(name))); | |
9cad30fa | 1964 | JSValueRef arguments[1] = {CYCastJSValue(context, message)}; |
f1b5a47f | 1965 | return _jsccall(JSObjectCallAsConstructor, context, Error, 1, arguments); |
9cad30fa JF |
1966 | } |
1967 | ||
a1ae2985 JF |
1968 | JSValueRef CYPoolError::CastJSValue(JSContextRef context, const char *name) const { |
1969 | return CYCastJSError(context, name, message_); | |
9cad30fa JF |
1970 | } |
1971 | ||
1972 | CYJSError::CYJSError(JSContextRef context, const char *format, ...) { | |
1973 | _assert(context != NULL); | |
1974 | ||
1975 | CYPool pool; | |
1976 | ||
1977 | va_list args; | |
1978 | va_start(args, format); | |
0cbeddf8 JF |
1979 | // XXX: there might be a beter way to think about this |
1980 | const char *message(pool.vsprintf(64, format, args)); | |
9cad30fa JF |
1981 | va_end(args); |
1982 | ||
a1ae2985 | 1983 | value_ = CYCastJSError(context, "Error", message); |
9cad30fa JF |
1984 | } |
1985 | ||
1986 | JSGlobalContextRef CYGetJSContext(JSContextRef context) { | |
1987 | return reinterpret_cast<Context *>(JSObjectGetPrivate(CYCastJSObject(context, CYGetProperty(context, CYGetGlobalObject(context), cy_s))))->context_; | |
1988 | } | |
1989 | ||
3f7ac48b JF |
1990 | struct CYFile { |
1991 | void *data_; | |
1992 | size_t size_; | |
1993 | ||
1994 | CYFile(void *data, size_t size) : | |
1995 | data_(data), | |
1996 | size_(size) | |
1997 | { | |
1998 | } | |
1999 | }; | |
2000 | ||
2001 | static void CYFileExit(void *data) { | |
2002 | CYFile *file(reinterpret_cast<CYFile *>(data)); | |
2003 | _syscall(munmap(file->data_, file->size_)); | |
2004 | } | |
2005 | ||
2006 | static void *CYPoolFile(CYPool &pool, const char *path, size_t *psize) { | |
73f04979 | 2007 | int fd(_syscall_(open(path, O_RDONLY), 1, ENOENT)); |
3f7f8d11 JF |
2008 | if (fd == -1) |
2009 | return NULL; | |
d00dec14 JF |
2010 | |
2011 | struct stat stat; | |
2012 | _syscall(fstat(fd, &stat)); | |
2013 | size_t size(stat.st_size); | |
2014 | ||
2015 | *psize = size; | |
2016 | ||
2017 | void *base; | |
2018 | _syscall(base = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0)); | |
2019 | ||
3f7ac48b JF |
2020 | CYFile *file(new (pool) CYFile(base, size)); |
2021 | pool.atexit(&CYFileExit, file); | |
2022 | ||
d00dec14 JF |
2023 | _syscall(close(fd)); |
2024 | return base; | |
2025 | } | |
2026 | ||
3f7ac48b JF |
2027 | static CYUTF8String CYPoolFileUTF8String(CYPool &pool, const char *path) { |
2028 | CYUTF8String data; | |
2029 | data.data = reinterpret_cast<char *>(CYPoolFile(pool, path, &data.size)); | |
2030 | return data; | |
2031 | } | |
c6bf437d | 2032 | |
3f7ac48b | 2033 | static const char *CYPoolLibraryPath(CYPool &pool) { |
c6bf437d | 2034 | Dl_info addr; |
3f7ac48b | 2035 | _assert(dladdr(reinterpret_cast<void *>(&CYPoolLibraryPath), &addr) != 0); |
c6bf437d JF |
2036 | char *lib(pool.strdup(addr.dli_fname)); |
2037 | ||
2038 | char *slash(strrchr(lib, '/')); | |
2039 | _assert(slash != NULL); | |
2040 | *slash = '\0'; | |
2041 | ||
3f7ac48b JF |
2042 | return lib; |
2043 | } | |
2044 | ||
0f557ff2 | 2045 | static JSValueRef require_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
3f7ac48b JF |
2046 | _assert(count == 1); |
2047 | CYPool pool; | |
2048 | ||
3f7f8d11 | 2049 | const char *name(CYPoolCString(pool, context, arguments[0])); |
0f557ff2 | 2050 | if (strchr(name, '/') == NULL && ( |
0047545c | 2051 | #ifdef __APPLE__ |
0f557ff2 JF |
2052 | dlopen(pool.strcat("/System/Library/Frameworks/", name, ".framework/", name, NULL), RTLD_LAZY | RTLD_GLOBAL) != NULL || |
2053 | dlopen(pool.strcat("/System/Library/PrivateFrameworks/", name, ".framework/", name, NULL), RTLD_LAZY | RTLD_GLOBAL) != NULL || | |
0047545c | 2054 | #endif |
0f557ff2 JF |
2055 | false)) |
2056 | return CYJSUndefined(context); | |
3f7f8d11 | 2057 | |
0f557ff2 JF |
2058 | JSObjectRef resolve(CYCastJSObject(context, CYGetProperty(context, object, CYJSString("resolve")))); |
2059 | CYJSString path(context, CYCallAsFunction(context, resolve, NULL, 1, arguments)); | |
6447ef49 | 2060 | |
0f557ff2 | 2061 | CYJSString property("exports"); |
c6bf437d | 2062 | |
0f557ff2 JF |
2063 | JSObjectRef modules(CYGetCachedObject(context, CYJSString("modules"))); |
2064 | JSValueRef cache(CYGetProperty(context, modules, path)); | |
c6bf437d | 2065 | |
0f557ff2 JF |
2066 | JSValueRef result; |
2067 | if (!JSValueIsUndefined(context, cache)) { | |
2068 | JSObjectRef module(CYCastJSObject(context, cache)); | |
2069 | result = CYGetProperty(context, module, property); | |
2070 | } else { | |
2071 | CYUTF8String code(CYPoolFileUTF8String(pool, CYPoolCString(pool, context, path))); | |
2072 | _assert(code.data != NULL); | |
2073 | ||
2074 | size_t length(strlen(name)); | |
2075 | if (length >= 5 && strcmp(name + length - 5, ".json") == 0) { | |
2076 | JSObjectRef JSON(CYGetCachedObject(context, CYJSString("JSON"))); | |
2077 | JSObjectRef parse(CYCastJSObject(context, CYGetProperty(context, JSON, CYJSString("parse")))); | |
2078 | JSValueRef arguments[1] = { CYCastJSValue(context, CYJSString(code)) }; | |
2079 | result = CYCallAsFunction(context, parse, JSON, 1, arguments); | |
2080 | } else { | |
2081 | JSObjectRef module(JSObjectMake(context, NULL, NULL)); | |
2082 | CYSetProperty(context, modules, path, module); | |
2083 | ||
2084 | JSObjectRef exports(JSObjectMake(context, NULL, NULL)); | |
2085 | CYSetProperty(context, module, property, exports); | |
2086 | ||
2087 | std::stringstream wrap; | |
2088 | wrap << "(function (exports, require, module, __filename) { " << code << "\n});"; | |
2089 | code = CYPoolCode(pool, *wrap.rdbuf()); | |
2090 | ||
2091 | JSValueRef value(_jsccall(JSEvaluateScript, context, CYJSString(code), NULL, NULL, 0)); | |
2092 | JSObjectRef function(CYCastJSObject(context, value)); | |
2093 | ||
2094 | JSValueRef arguments[4] = { exports, object, module, CYCastJSValue(context, path) }; | |
2095 | CYCallAsFunction(context, function, NULL, 4, arguments); | |
2096 | result = CYGetProperty(context, module, property); | |
2097 | } | |
c6bf437d JF |
2098 | } |
2099 | ||
0f557ff2 | 2100 | return result; |
c6bf437d JF |
2101 | } CYCatch(NULL) } |
2102 | ||
3f7ac48b JF |
2103 | static bool CYRunScript(JSGlobalContextRef context, const char *path) { |
2104 | CYPool pool; | |
2105 | CYUTF8String code(CYPoolFileUTF8String(pool, path)); | |
2106 | if (code.data == NULL) | |
2107 | return false; | |
2108 | ||
2109 | CYStream stream(code.data, code.data + code.size); | |
2110 | code = CYPoolCode(pool, stream); | |
2111 | _jsccall(JSEvaluateScript, context, CYJSString(code), NULL, NULL, 0); | |
2112 | return true; | |
2113 | } | |
2114 | ||
012c7408 JF |
2115 | extern "C" void CYDestroyWeak(JSWeakObjectMapRef weak, void *data) { |
2116 | } | |
2117 | ||
9cad30fa JF |
2118 | extern "C" void CYSetupContext(JSGlobalContextRef context) { |
2119 | CYInitializeDynamic(); | |
2120 | ||
2121 | JSObjectRef global(CYGetGlobalObject(context)); | |
2122 | ||
2123 | JSObjectRef cy(JSObjectMake(context, Context_, new Context(context))); | |
2124 | CYSetProperty(context, global, cy_s, cy, kJSPropertyAttributeDontEnum); | |
2125 | ||
2126 | /* Cache Globals {{{ */ | |
2127 | JSObjectRef Array(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Array")))); | |
2128 | CYSetProperty(context, cy, CYJSString("Array"), Array); | |
2129 | ||
2130 | JSObjectRef Array_prototype(CYCastJSObject(context, CYGetProperty(context, Array, prototype_s))); | |
2131 | CYSetProperty(context, cy, CYJSString("Array_prototype"), Array_prototype); | |
2132 | ||
654bf401 JF |
2133 | JSObjectRef Boolean(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Boolean")))); |
2134 | CYSetProperty(context, cy, CYJSString("Boolean"), Boolean); | |
2135 | ||
2136 | JSObjectRef Boolean_prototype(CYCastJSObject(context, CYGetProperty(context, Boolean, prototype_s))); | |
2137 | CYSetProperty(context, cy, CYJSString("Boolean_prototype"), Boolean_prototype); | |
2138 | ||
9cad30fa JF |
2139 | JSObjectRef Error(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Error")))); |
2140 | CYSetProperty(context, cy, CYJSString("Error"), Error); | |
2141 | ||
2142 | JSObjectRef Function(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Function")))); | |
2143 | CYSetProperty(context, cy, CYJSString("Function"), Function); | |
2144 | ||
2145 | JSObjectRef Function_prototype(CYCastJSObject(context, CYGetProperty(context, Function, prototype_s))); | |
2146 | CYSetProperty(context, cy, CYJSString("Function_prototype"), Function_prototype); | |
2147 | ||
0f557ff2 JF |
2148 | JSObjectRef JSON(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("JSON")))); |
2149 | CYSetProperty(context, cy, CYJSString("JSON"), JSON); | |
2150 | ||
654bf401 JF |
2151 | JSObjectRef Number(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Number")))); |
2152 | CYSetProperty(context, cy, CYJSString("Number"), Number); | |
2153 | ||
2154 | JSObjectRef Number_prototype(CYCastJSObject(context, CYGetProperty(context, Number, prototype_s))); | |
2155 | CYSetProperty(context, cy, CYJSString("Number_prototype"), Number_prototype); | |
2156 | ||
9cad30fa JF |
2157 | JSObjectRef Object(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Object")))); |
2158 | CYSetProperty(context, cy, CYJSString("Object"), Object); | |
2159 | ||
2160 | JSObjectRef Object_prototype(CYCastJSObject(context, CYGetProperty(context, Object, prototype_s))); | |
2161 | CYSetProperty(context, cy, CYJSString("Object_prototype"), Object_prototype); | |
2162 | ||
2163 | JSObjectRef String(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("String")))); | |
2164 | CYSetProperty(context, cy, CYJSString("String"), String); | |
4cb8aa43 JF |
2165 | |
2166 | JSObjectRef String_prototype(CYCastJSObject(context, CYGetProperty(context, String, prototype_s))); | |
2167 | CYSetProperty(context, cy, CYJSString("String_prototype"), String_prototype); | |
a1ae2985 JF |
2168 | |
2169 | JSObjectRef SyntaxError(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("SyntaxError")))); | |
2170 | CYSetProperty(context, cy, CYJSString("SyntaxError"), SyntaxError); | |
9cad30fa JF |
2171 | /* }}} */ |
2172 | ||
2173 | CYSetProperty(context, Array_prototype, toCYON_s, &Array_callAsFunction_toCYON, kJSPropertyAttributeDontEnum); | |
4cb8aa43 | 2174 | CYSetProperty(context, String_prototype, toCYON_s, &String_callAsFunction_toCYON, kJSPropertyAttributeDontEnum); |
9cad30fa JF |
2175 | |
2176 | JSObjectRef cycript(JSObjectMake(context, NULL, NULL)); | |
2177 | CYSetProperty(context, global, CYJSString("Cycript"), cycript); | |
7085e1ab | 2178 | CYSetProperty(context, cycript, CYJSString("compile"), &Cycript_compile_callAsFunction); |
9cad30fa JF |
2179 | CYSetProperty(context, cycript, CYJSString("gc"), &Cycript_gc_callAsFunction); |
2180 | ||
35cad40b JF |
2181 | JSObjectRef CString(JSObjectMakeConstructor(context, CString_, &CString_new)); |
2182 | CYSetPrototype(context, CYCastJSObject(context, CYGetProperty(context, CString, prototype_s)), String_prototype); | |
2183 | CYSetProperty(context, cycript, CYJSString("CString"), CString); | |
2184 | ||
9cad30fa | 2185 | JSObjectRef Functor(JSObjectMakeConstructor(context, Functor_, &Functor_new)); |
e78a4755 | 2186 | CYSetPrototype(context, CYCastJSObject(context, CYGetProperty(context, Functor, prototype_s)), Function_prototype); |
9cad30fa JF |
2187 | CYSetProperty(context, cycript, CYJSString("Functor"), Functor); |
2188 | ||
2189 | CYSetProperty(context, cycript, CYJSString("Pointer"), JSObjectMakeConstructor(context, Pointer_, &Pointer_new)); | |
b63701b2 | 2190 | CYSetProperty(context, cycript, CYJSString("Type"), JSObjectMakeConstructor(context, Type_privateData::Class_, &Type_new)); |
9cad30fa | 2191 | |
c6bf437d JF |
2192 | JSObjectRef modules(JSObjectMake(context, NULL, NULL)); |
2193 | CYSetProperty(context, cy, CYJSString("modules"), modules); | |
2194 | ||
9cad30fa JF |
2195 | JSObjectRef all(JSObjectMake(context, All_, NULL)); |
2196 | CYSetProperty(context, cycript, CYJSString("all"), all); | |
2197 | ||
f1b5a47f | 2198 | JSObjectRef alls(_jsccall(JSObjectCallAsConstructor, context, Array, 0, NULL)); |
26ef7a82 JF |
2199 | CYSetProperty(context, cycript, CYJSString("alls"), alls); |
2200 | ||
56a66df3 JF |
2201 | if (true) { |
2202 | JSObjectRef last(NULL), curr(global); | |
9cad30fa | 2203 | |
56a66df3 JF |
2204 | goto next; for (JSValueRef next;;) { |
2205 | if (JSValueIsNull(context, next)) | |
2206 | break; | |
2207 | last = curr; | |
2208 | curr = CYCastJSObject(context, next); | |
2209 | next: | |
2210 | next = JSObjectGetPrototype(context, curr); | |
2211 | } | |
9cad30fa | 2212 | |
e78a4755 | 2213 | CYSetPrototype(context, last, all); |
56a66df3 | 2214 | } |
9cad30fa | 2215 | |
9cad30fa | 2216 | JSObjectRef System(JSObjectMake(context, NULL, NULL)); |
cdc80ff2 | 2217 | CYSetProperty(context, cy, CYJSString("System"), System); |
9cad30fa | 2218 | |
0f557ff2 | 2219 | CYSetProperty(context, all, CYJSString("require"), &require_callAsFunction, kJSPropertyAttributeDontEnum); |
c6bf437d | 2220 | |
9cad30fa JF |
2221 | CYSetProperty(context, global, CYJSString("system"), System); |
2222 | CYSetProperty(context, System, CYJSString("args"), CYJSNull(context)); | |
9cad30fa JF |
2223 | CYSetProperty(context, System, CYJSString("print"), &System_print); |
2224 | ||
0f557ff2 JF |
2225 | CYSetProperty(context, global, CYJSString("global"), global); |
2226 | ||
73f04979 | 2227 | #ifdef __APPLE__ |
56f57e5b | 2228 | if (&JSWeakObjectMapCreate != NULL) { |
012c7408 | 2229 | JSWeakObjectMapRef weak(JSWeakObjectMapCreate(context, NULL, &CYDestroyWeak)); |
56f57e5b JF |
2230 | CYSetProperty(context, cy, weak_s, CYCastJSValue(context, reinterpret_cast<uintptr_t>(weak))); |
2231 | } | |
73f04979 | 2232 | #endif |
56f57e5b | 2233 | |
a621ae76 JF |
2234 | if (CYBridgeEntry *entry = CYBridgeHash("1dlerror", 8)) |
2235 | entry->cache_ = new cy::Functor(entry->value_, reinterpret_cast<void (*)()>(&dlerror)); | |
2236 | ||
3f7ac48b JF |
2237 | CYRunScript(context, "libcycript.cy"); |
2238 | ||
c2e81022 | 2239 | for (CYHook *hook : GetHooks()) |
c4481e40 JF |
2240 | if (hook->SetupContext != NULL) |
2241 | (*hook->SetupContext)(context); | |
26ef7a82 JF |
2242 | |
2243 | CYArrayPush(context, alls, cycript); | |
9cad30fa JF |
2244 | } |
2245 | ||
8fab8594 JF |
2246 | static JSGlobalContextRef context_; |
2247 | ||
d9c91152 | 2248 | _visible JSGlobalContextRef CYGetJSContext() { |
9cad30fa JF |
2249 | CYInitializeDynamic(); |
2250 | ||
9cad30fa JF |
2251 | if (context_ == NULL) { |
2252 | context_ = JSGlobalContextCreate(Global_); | |
2253 | CYSetupContext(context_); | |
2254 | } | |
2255 | ||
2256 | return context_; | |
2257 | } | |
8fab8594 | 2258 | |
d9c91152 | 2259 | _visible void CYDestroyContext() { |
8fab8594 JF |
2260 | if (context_ == NULL) |
2261 | return; | |
2262 | JSGlobalContextRelease(context_); | |
2263 | context_ = NULL; | |
2264 | } |