]> git.saurik.com Git - cycript.git/blame - Library.mm
Setup new objects in lexer to allocate into the correct pool.
[cycript.git] / Library.mm
CommitLineData
b4aa79af 1/* Cycript - Remove Execution Server and Disassembler
c1582939
JF
2 * Copyright (C) 2009 Jay Freeman (saurik)
3*/
4
62ca2b82 5/* Modified BSD License {{{ */
c1582939
JF
6/*
7 * Redistribution and use in source and binary
8 * forms, with or without modification, are permitted
9 * provided that the following conditions are met:
10 *
11 * 1. Redistributions of source code must retain the
12 * above copyright notice, this list of conditions
13 * and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the
15 * above copyright notice, this list of conditions
16 * and the following disclaimer in the documentation
17 * and/or other materials provided with the
18 * distribution.
19 * 3. The name of the author may not be used to endorse
20 * or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS''
24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
25 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
34 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
36 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37*/
62ca2b82 38/* }}} */
c1582939 39
8d9b5eed
JF
40#define _GNU_SOURCE
41
c1582939 42#include <substrate.h>
30ddc20c 43#include "cycript.hpp"
c1582939 44
ea2d184c
JF
45#include "sig/parse.hpp"
46#include "sig/ffi_type.hpp"
47
5999c315 48#include "Pooling.hpp"
057f943f 49#include "Struct.hpp"
ea2d184c 50
c1582939
JF
51#include <CoreFoundation/CoreFoundation.h>
52#include <CoreFoundation/CFLogUtilities.h>
53
c1582939
JF
54#include <WebKit/WebScriptObject.h>
55
b09da87b 56#include <sys/mman.h>
c1582939 57
8d9b5eed
JF
58#include <iostream>
59#include <ext/stdio_filebuf.h>
a2d9403c
JF
60#include <set>
61#include <map>
8d9b5eed 62
967067aa 63#include <sstream>
bd17e6f3
JF
64#include <cmath>
65
e5332278 66#include "Parser.hpp"
63b4c5a8 67#include "Cycript.tab.hh"
e5332278 68
967067aa
JF
69#include <apr-1/apr_thread_proc.h>
70
ea2d184c
JF
71#undef _assert
72#undef _trace
73
c1582939 74#define _assert(test) do { \
f5e9be24
JF
75 if (!(test)) \
76 @throw [NSException exceptionWithName:NSInternalInconsistencyException reason:[NSString stringWithFormat:@"_assert(%s):%s(%u):%s", #test, __FILE__, __LINE__, __FUNCTION__] userInfo:nil]; \
c1582939
JF
77} while (false)
78
79#define _trace() do { \
62ca2b82 80 CFLog(kCFLogLevelNotice, CFSTR("_trace():%u"), __LINE__); \
c1582939
JF
81} while (false)
82
4cf49641
JF
83#define CYPoolTry { \
84 id _saved(nil); \
85 NSAutoreleasePool *_pool([[NSAutoreleasePool alloc] init]); \
86 @try
87#define CYPoolCatch(value) \
88 @catch (NSException *error) { \
89 _saved = [error retain]; \
90 @throw; \
91 return value; \
92 } @finally { \
93 [_pool release]; \
94 if (_saved != nil) \
95 [_saved autorelease]; \
96 } \
97}
98
365abb0a
JF
99void CYThrow(JSContextRef context, JSValueRef value);
100
101/* JavaScript Properties {{{ */
102JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, size_t index) {
103 JSValueRef exception(NULL);
104 JSValueRef value(JSObjectGetPropertyAtIndex(context, object, index, &exception));
105 CYThrow(context, exception);
106 return value;
107}
108
109JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, JSStringRef name) {
110 JSValueRef exception(NULL);
111 JSValueRef value(JSObjectGetProperty(context, object, name, &exception));
112 CYThrow(context, exception);
113 return value;
114}
115
116void CYSetProperty(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value) {
117 JSValueRef exception(NULL);
118 JSObjectSetPropertyAtIndex(context, object, index, value, &exception);
119 CYThrow(context, exception);
120}
121
122void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value) {
123 JSValueRef exception(NULL);
124 JSObjectSetProperty(context, object, name, value, kJSPropertyAttributeNone, &exception);
125 CYThrow(context, exception);
126}
127/* }}} */
128/* JavaScript Strings {{{ */
129JSStringRef CYCopyJSString(id value) {
130 // XXX: this definition scares me; is anyone using this?!
131 return value == NULL ? NULL : JSStringCreateWithCFString(reinterpret_cast<CFStringRef>([value description]));
132}
133
134JSStringRef CYCopyJSString(const char *value) {
135 return value == NULL ? NULL : JSStringCreateWithUTF8CString(value);
136}
137
138JSStringRef CYCopyJSString(JSStringRef value) {
139 return value == NULL ? NULL : JSStringRetain(value);
140}
141
142JSStringRef CYCopyJSString(JSContextRef context, JSValueRef value) {
143 if (JSValueIsNull(context, value))
144 return NULL;
145 JSValueRef exception(NULL);
146 JSStringRef string(JSValueToStringCopy(context, value, &exception));
147 CYThrow(context, exception);
148 return string;
149}
150
151class CYJSString {
152 private:
153 JSStringRef string_;
154
155 void Clear_() {
156 if (string_ != NULL)
157 JSStringRelease(string_);
158 }
159
160 public:
161 CYJSString(const CYJSString &rhs) :
162 string_(CYCopyJSString(rhs.string_))
163 {
164 }
165
166 template <typename Arg0_>
167 CYJSString(Arg0_ arg0) :
168 string_(CYCopyJSString(arg0))
169 {
170 }
171
172 template <typename Arg0_, typename Arg1_>
173 CYJSString(Arg0_ arg0, Arg1_ arg1) :
174 string_(CYCopyJSString(arg0, arg1))
175 {
176 }
177
178 CYJSString &operator =(const CYJSString &rhs) {
179 Clear_();
180 string_ = CYCopyJSString(rhs.string_);
181 return *this;
182 }
183
184 ~CYJSString() {
185 Clear_();
186 }
187
188 void Clear() {
189 Clear_();
190 string_ = NULL;
191 }
192
193 operator JSStringRef() const {
194 return string_;
195 }
196};
197
198CFStringRef CYCopyCFString(JSStringRef value) {
199 return JSStringCopyCFString(kCFAllocatorDefault, value);
200}
201
202CFStringRef CYCopyCFString(JSContextRef context, JSValueRef value) {
203 return CYCopyCFString(CYJSString(context, value));
204}
205
206/* }}} */
207
478d4ed0 208static JSGlobalContextRef Context_;
b09da87b 209static JSObjectRef System_;
c239b9f8 210static JSObjectRef ObjectiveC_;
ea2d184c 211
88c977fa
JF
212static JSClassRef Functor_;
213static JSClassRef Instance_;
9b5527f0 214static JSClassRef Internal_;
dc68b74c 215static JSClassRef Message_;
365abb0a
JF
216static JSClassRef Messages_;
217static JSClassRef NSArrayPrototype_;
88c977fa 218static JSClassRef Pointer_;
953647c1 219static JSClassRef Runtime_;
88c977fa 220static JSClassRef Selector_;
953647c1 221static JSClassRef Struct_;
bce8339b 222static JSClassRef Type_;
ea2d184c 223
c239b9f8
JF
224static JSClassRef ObjectiveC_Classes_;
225static JSClassRef ObjectiveC_Image_Classes_;
226static JSClassRef ObjectiveC_Images_;
227static JSClassRef ObjectiveC_Protocols_;
228
c1582939 229static JSObjectRef Array_;
dea834b0 230static JSObjectRef Function_;
365abb0a 231static JSObjectRef String_;
ea2d184c 232
967067aa
JF
233static JSStringRef Result_;
234
c1582939 235static JSStringRef length_;
b4aa79af
JF
236static JSStringRef message_;
237static JSStringRef name_;
dc68b74c 238static JSStringRef prototype_;
b4aa79af
JF
239static JSStringRef toCYON_;
240static JSStringRef toJSON_;
ea2d184c 241
365abb0a
JF
242static JSObjectRef Instance_prototype_;
243static JSObjectRef Object_prototype_;
244
faf69207
JF
245static JSObjectRef Array_prototype_;
246static JSObjectRef Array_pop_;
247static JSObjectRef Array_push_;
248static JSObjectRef Array_splice_;
249
250static Class NSArray_;
c1582939 251static Class NSCFBoolean_;
c239b9f8 252static Class NSCFType_;
365abb0a 253static Class NSDictionary_;
c239b9f8
JF
254static Class NSMessageBuilder_;
255static Class NSZombie_;
256static Class Object_;
c1582939 257
953647c1 258static NSArray *Bridge_;
88c977fa 259
1ef7d061
JF
260static void Finalize(JSObjectRef object) {
261 delete reinterpret_cast<CYData *>(JSObjectGetPrivate(object));
262}
953647c1 263
7b184c00
JF
264class Type_privateData;
265
61933e16 266struct CYValue :
953647c1 267 CYData
61933e16
JF
268{
269 void *value_;
270
271 CYValue() {
272 }
273
274 CYValue(void *value) :
275 value_(value)
276 {
277 }
9b5527f0
JF
278
279 CYValue(const CYValue &rhs) :
280 value_(rhs.value_)
281 {
282 }
7b184c00
JF
283
284 virtual Type_privateData *GetType() const {
285 return NULL;
286 }
61933e16
JF
287};
288
289struct Selector_privateData :
290 CYValue
953647c1 291{
953647c1 292 Selector_privateData(SEL value) :
61933e16 293 CYValue(value)
478d4ed0
JF
294 {
295 }
296
297 SEL GetValue() const {
298 return reinterpret_cast<SEL>(value_);
299 }
7b184c00
JF
300
301 virtual Type_privateData *GetType() const;
478d4ed0
JF
302};
303
365abb0a
JF
304// XXX: trick this out with associated objects!
305JSValueRef CYGetClassPrototype(JSContextRef context, id self) {
306 if (self == nil)
307 return Instance_prototype_;
308
309 // XXX: I need to think through multi-context
310 typedef std::map<Class, JSValueRef> CacheMap;
311 static CacheMap cache_;
312
313 JSValueRef &value(cache_[self]);
314 if (value != NULL)
315 return value;
316
317 JSClassRef _class(NULL);
318 JSValueRef prototype;
319
320 if (self == NSArray_)
321 prototype = Array_prototype_;
322 else if (self == NSDictionary_)
323 prototype = Object_prototype_;
324 else
325 prototype = CYGetClassPrototype(context, class_getSuperclass(self));
326
327 JSObjectRef object(JSObjectMake(context, _class, NULL));
328 JSObjectSetPrototype(context, object, prototype);
329
4e39dc0b 330 JSValueProtect(context, object);
365abb0a
JF
331 value = object;
332 return object;
333}
334
2b52f27e 335struct Instance :
61933e16 336 CYValue
bd17e6f3 337{
2b52f27e
JF
338 enum Flags {
339 None = 0,
340 Transient = (1 << 0),
341 Uninitialized = (1 << 1),
342 };
478d4ed0 343
2b52f27e
JF
344 Flags flags_;
345
346 Instance(id value, Flags flags) :
61933e16 347 CYValue(value),
2b52f27e 348 flags_(flags)
478d4ed0
JF
349 {
350 }
351
2b52f27e
JF
352 virtual ~Instance() {
353 if ((flags_ & Transient) == 0)
61933e16
JF
354 // XXX: does this handle background threads correctly?
355 [GetValue() performSelector:@selector(release) withObject:nil afterDelay:0];
478d4ed0
JF
356 }
357
dc68b74c 358 static JSObjectRef Make(JSContextRef context, id object, Flags flags = None) {
faf69207 359 JSObjectRef value(JSObjectMake(context, Instance_, new Instance(object, flags)));
365abb0a 360 JSObjectSetPrototype(context, value, CYGetClassPrototype(context, object == nil ? nil : object_getClass(object)));
faf69207 361 return value;
2b52f27e
JF
362 }
363
478d4ed0
JF
364 id GetValue() const {
365 return reinterpret_cast<id>(value_);
366 }
2b52f27e
JF
367
368 bool IsUninitialized() const {
369 return (flags_ & Uninitialized) != 0;
370 }
7b184c00
JF
371
372 virtual Type_privateData *GetType() const;
478d4ed0
JF
373};
374
365abb0a 375struct Messages :
dc68b74c
JF
376 CYValue
377{
365abb0a 378 Messages(Class value) :
dc68b74c
JF
379 CYValue(value)
380 {
381 }
382
faf69207 383 static JSObjectRef Make(JSContextRef context, Class _class, bool array = false) {
365abb0a 384 JSObjectRef value(JSObjectMake(context, Messages_, new Messages(_class)));
faf69207
JF
385 if (_class == NSArray_)
386 array = true;
9e562cfc 387 if (Class super = class_getSuperclass(_class))
365abb0a 388 JSObjectSetPrototype(context, value, Messages::Make(context, super, array));
faf69207
JF
389 /*else if (array)
390 JSObjectSetPrototype(context, value, Array_prototype_);*/
9e562cfc 391 return value;
dc68b74c
JF
392 }
393
394 Class GetValue() const {
395 return reinterpret_cast<Class>(value_);
396 }
397};
398
4e39dc0b 399struct CYOwned :
9b5527f0
JF
400 CYValue
401{
4e39dc0b
JF
402 private:
403 JSContextRef context_;
9b5527f0
JF
404 JSObjectRef owner_;
405
4e39dc0b
JF
406 public:
407 CYOwned(void *value, JSContextRef context, JSObjectRef owner) :
9b5527f0 408 CYValue(value),
4e39dc0b 409 context_(context),
9b5527f0 410 owner_(owner)
4e39dc0b
JF
411 {
412 JSValueProtect(context_, owner_);
413 }
414
415 virtual ~CYOwned() {
416 JSValueUnprotect(context_, owner_);
417 }
418
419 JSObjectRef GetOwner() const {
420 return owner_;
421 }
422};
423
424struct Internal :
425 CYOwned
426{
427 Internal(id value, JSContextRef context, JSObjectRef owner) :
428 CYOwned(value, context, owner)
9b5527f0
JF
429 {
430 }
431
432 static JSObjectRef Make(JSContextRef context, id object, JSObjectRef owner) {
4e39dc0b 433 return JSObjectMake(context, Internal_, new Internal(object, context, owner));
9b5527f0
JF
434 }
435
436 id GetValue() const {
437 return reinterpret_cast<id>(value_);
438 }
439};
440
bd17e6f3
JF
441namespace sig {
442
443void Copy(apr_pool_t *pool, Type &lhs, Type &rhs);
444
445void Copy(apr_pool_t *pool, Element &lhs, Element &rhs) {
446 lhs.name = apr_pstrdup(pool, rhs.name);
447 if (rhs.type == NULL)
448 lhs.type = NULL;
449 else {
450 lhs.type = new(pool) Type;
451 Copy(pool, *lhs.type, *rhs.type);
452 }
453 lhs.offset = rhs.offset;
454}
455
456void Copy(apr_pool_t *pool, Signature &lhs, Signature &rhs) {
457 size_t count(rhs.count);
458 lhs.count = count;
459 lhs.elements = new(pool) Element[count];
460 for (size_t index(0); index != count; ++index)
461 Copy(pool, lhs.elements[index], rhs.elements[index]);
462}
463
464void Copy(apr_pool_t *pool, Type &lhs, Type &rhs) {
465 lhs.primitive = rhs.primitive;
466 lhs.name = apr_pstrdup(pool, rhs.name);
467 lhs.flags = rhs.flags;
468
469 if (sig::IsAggregate(rhs.primitive))
470 Copy(pool, lhs.data.signature, rhs.data.signature);
471 else {
472 if (rhs.data.data.type != NULL) {
473 lhs.data.data.type = new(pool) Type;
474 Copy(pool, *lhs.data.data.type, *rhs.data.data.type);
475 }
476
477 lhs.data.data.size = rhs.data.data.size;
478 }
479}
480
481void Copy(apr_pool_t *pool, ffi_type &lhs, ffi_type &rhs) {
482 lhs.size = rhs.size;
483 lhs.alignment = rhs.alignment;
484 lhs.type = rhs.type;
485 if (rhs.elements == NULL)
486 lhs.elements = NULL;
487 else {
488 size_t count(0);
489 while (rhs.elements[count] != NULL)
490 ++count;
491
492 lhs.elements = new(pool) ffi_type *[count + 1];
493 lhs.elements[count] = NULL;
494
495 for (size_t index(0); index != count; ++index) {
496 // XXX: if these are libffi native then you can just take them
497 ffi_type *ffi(new(pool) ffi_type);
498 lhs.elements[index] = ffi;
499 sig::Copy(pool, *ffi, *rhs.elements[index]);
500 }
501 }
502}
503
504}
505
f33b048a
JF
506struct CStringMapLess :
507 std::binary_function<const char *, const char *, bool>
508{
509 _finline bool operator ()(const char *lhs, const char *rhs) const {
510 return strcmp(lhs, rhs) < 0;
511 }
512};
513
bce8339b
JF
514void Structor_(apr_pool_t *pool, const char *name, const char *types, sig::Type *&type) {
515 if (name == NULL)
516 return;
ff783f8c 517
bce8339b
JF
518 CYPoolTry {
519 if (NSMutableArray *entry = [[Bridge_ objectAtIndex:2] objectForKey:[NSString stringWithUTF8String:name]])
520 switch ([[entry objectAtIndex:0] intValue]) {
521 case 0: {
522 sig::Parse(pool, &type->data.signature, [[entry objectAtIndex:1] UTF8String], &Structor_);
523 } break;
524
525 case 1: {
526 sig::Signature signature;
527 sig::Parse(pool, &signature, [[entry objectAtIndex:1] UTF8String], &Structor_);
528 type = signature.elements[0].type;
529 } break;
530 }
531 } CYPoolCatch()
532}
533
534struct Type_privateData :
535 CYData
536{
7b184c00
JF
537 static Type_privateData *Object;
538 static Type_privateData *Selector;
539
ff783f8c 540 ffi_type *ffi_;
930aa21b 541 sig::Type *type_;
bd17e6f3 542
bce8339b
JF
543 void Set(sig::Type *type) {
544 type_ = new(pool_) sig::Type;
545 sig::Copy(pool_, *type_, *type);
546 }
547
c239b9f8 548 Type_privateData(apr_pool_t *pool, const char *type) :
ff783f8c
JF
549 ffi_(NULL)
550 {
c239b9f8
JF
551 if (pool != NULL)
552 pool_ = pool;
553
bce8339b
JF
554 sig::Signature signature;
555 sig::Parse(pool_, &signature, type, &Structor_);
556 type_ = signature.elements[0].type;
ff783f8c
JF
557 }
558
bce8339b
JF
559 Type_privateData(sig::Type *type) :
560 ffi_(NULL)
ff783f8c 561 {
bce8339b
JF
562 if (type != NULL)
563 Set(type);
564 }
565
566 Type_privateData(sig::Type *type, ffi_type *ffi) {
567 ffi_ = new(pool_) ffi_type;
568 sig::Copy(pool_, *ffi_, *ffi);
569 Set(type);
ff783f8c
JF
570 }
571
572 ffi_type *GetFFI() {
573 if (ffi_ == NULL) {
574 ffi_ = new(pool_) ffi_type;
575
576 sig::Element element;
577 element.name = NULL;
930aa21b 578 element.type = type_;
ff783f8c
JF
579 element.offset = 0;
580
581 sig::Signature signature;
582 signature.elements = &element;
583 signature.count = 1;
584
585 ffi_cif cif;
586 sig::sig_ffi_cif(pool_, &sig::ObjectiveC, &signature, &cif);
587 *ffi_ = *cif.rtype;
588 }
589
590 return ffi_;
591 }
592};
593
7b184c00
JF
594Type_privateData *Type_privateData::Object;
595Type_privateData *Type_privateData::Selector;
596
597Type_privateData *Instance::GetType() const {
598 return Type_privateData::Object;
599}
600
601Type_privateData *Selector_privateData::GetType() const {
602 return Type_privateData::Selector;
603}
604
ff783f8c 605struct Pointer :
4e39dc0b 606 CYOwned
ff783f8c 607{
ff783f8c
JF
608 Type_privateData *type_;
609
4e39dc0b
JF
610 Pointer(void *value, JSContextRef context, JSObjectRef owner, sig::Type *type) :
611 CYOwned(value, context, owner),
bce8339b 612 type_(new(pool_) Type_privateData(type))
ff783f8c 613 {
bd17e6f3
JF
614 }
615};
616
617struct Struct_privateData :
4e39dc0b 618 CYOwned
bd17e6f3 619{
bd17e6f3
JF
620 Type_privateData *type_;
621
4e39dc0b
JF
622 Struct_privateData(JSContextRef context, JSObjectRef owner) :
623 CYOwned(NULL, context, owner)
ff783f8c 624 {
bd17e6f3
JF
625 }
626};
627
bd17e6f3
JF
628typedef std::map<const char *, Type_privateData *, CStringMapLess> TypeMap;
629static TypeMap Types_;
630
631JSObjectRef CYMakeStruct(JSContextRef context, void *data, sig::Type *type, ffi_type *ffi, JSObjectRef owner) {
4e39dc0b 632 Struct_privateData *internal(new Struct_privateData(context, owner));
bd17e6f3 633 apr_pool_t *pool(internal->pool_);
bce8339b 634 Type_privateData *typical(new(pool) Type_privateData(type, ffi));
bd17e6f3
JF
635 internal->type_ = typical;
636
ff783f8c 637 if (owner != NULL)
bd17e6f3 638 internal->value_ = data;
ff783f8c
JF
639 else {
640 size_t size(typical->GetFFI()->size);
bd17e6f3
JF
641 void *copy(apr_palloc(internal->pool_, size));
642 memcpy(copy, data, size);
643 internal->value_ = copy;
644 }
645
bd17e6f3
JF
646 return JSObjectMake(context, Struct_, internal);
647}
648
f33b048a 649struct Functor_privateData :
61933e16 650 CYValue
f33b048a
JF
651{
652 sig::Signature signature_;
653 ffi_cif cif_;
654
dc68b74c 655
f33b048a 656 Functor_privateData(const char *type, void (*value)()) :
61933e16 657 CYValue(reinterpret_cast<void *>(value))
f33b048a
JF
658 {
659 sig::Parse(pool_, &signature_, type, &Structor_);
660 sig::sig_ffi_cif(pool_, &sig::ObjectiveC, &signature_, &cif_);
661 }
dc68b74c
JF
662
663 void (*GetValue())() const {
664 return reinterpret_cast<void (*)()>(value_);
665 }
f33b048a
JF
666};
667
dc68b74c 668struct Closure_privateData :
f33b048a
JF
669 Functor_privateData
670{
671 JSContextRef context_;
672 JSObjectRef function_;
673
4e39dc0b
JF
674 Closure_privateData(JSContextRef context, JSObjectRef function, const char *type) :
675 Functor_privateData(type, NULL),
676 context_(context),
677 function_(function)
f33b048a 678 {
4e39dc0b
JF
679 JSValueProtect(context_, function_);
680 }
681
682 virtual ~Closure_privateData() {
683 JSValueUnprotect(context_, function_);
f33b048a
JF
684 }
685};
686
dc68b74c
JF
687struct Message_privateData :
688 Functor_privateData
689{
690 SEL sel_;
691
692 Message_privateData(SEL sel, const char *type, IMP value = NULL) :
693 Functor_privateData(type, reinterpret_cast<void (*)()>(value)),
694 sel_(sel)
695 {
696 }
697};
698
f7c38a29 699JSObjectRef CYMakeInstance(JSContextRef context, id object, bool transient) {
2b52f27e
JF
700 Instance::Flags flags;
701
702 if (transient)
703 flags = Instance::Transient;
704 else {
705 flags = Instance::None;
478d4ed0 706 object = [object retain];
2b52f27e
JF
707 }
708
709 return Instance::Make(context, object, flags);
478d4ed0
JF
710}
711
712const char *CYPoolCString(apr_pool_t *pool, NSString *value) {
713 if (pool == NULL)
714 return [value UTF8String];
715 else {
716 size_t size([value maximumLengthOfBytesUsingEncoding:NSUTF8StringEncoding] + 1);
717 char *string(new(pool) char[size]);
718 if (![value getCString:string maxLength:size encoding:NSUTF8StringEncoding])
4afefdd9 719 @throw [NSException exceptionWithName:NSInternalInconsistencyException reason:@"[NSString getCString:maxLength:encoding:] == NO" userInfo:nil];
478d4ed0
JF
720 return string;
721 }
b09da87b
JF
722}
723
724JSValueRef CYCastJSValue(JSContextRef context, bool value) {
725 return JSValueMakeBoolean(context, value);
726}
727
728JSValueRef CYCastJSValue(JSContextRef context, double value) {
729 return JSValueMakeNumber(context, value);
730}
731
732#define CYCastJSValue_(Type_) \
733 JSValueRef CYCastJSValue(JSContextRef context, Type_ value) { \
734 return JSValueMakeNumber(context, static_cast<double>(value)); \
735 }
736
737CYCastJSValue_(int)
738CYCastJSValue_(unsigned int)
739CYCastJSValue_(long int)
740CYCastJSValue_(long unsigned int)
741CYCastJSValue_(long long int)
742CYCastJSValue_(long long unsigned int)
743
744JSValueRef CYJSUndefined(JSContextRef context) {
745 return JSValueMakeUndefined(context);
0c862573
JF
746}
747
faf69207
JF
748size_t CYGetIndex(const char *value) {
749 if (value[0] != '0') {
750 char *end;
751 size_t index(strtoul(value, &end, 10));
752 if (value + strlen(value) == end)
753 return index;
754 } else if (value[1] == '\0')
755 return 0;
756 return _not(size_t);
757}
758
534fb6da
JF
759// XXX: fix this
760static const char *CYPoolCString(apr_pool_t *pool, JSStringRef value);
761
faf69207
JF
762size_t CYGetIndex(apr_pool_t *pool, NSString *value) {
763 return CYGetIndex(CYPoolCString(pool, value));
764}
765
534fb6da
JF
766size_t CYGetIndex(apr_pool_t *pool, JSStringRef value) {
767 return CYGetIndex(CYPoolCString(pool, value));
768}
769
faf69207 770bool CYGetOffset(const char *value, ssize_t &index) {
ff783f8c 771 if (value[0] != '0') {
283e7e33 772 char *end;
ff783f8c 773 index = strtol(value, &end, 10);
283e7e33 774 if (value + strlen(value) == end)
ff783f8c
JF
775 return true;
776 } else if (value[1] == '\0') {
777 index = 0;
778 return true;
283e7e33
JF
779 }
780
ff783f8c 781 return false;
283e7e33
JF
782}
783
faf69207
JF
784bool CYGetOffset(apr_pool_t *pool, NSString *value, ssize_t &index) {
785 return CYGetOffset(CYPoolCString(pool, value), index);
283e7e33
JF
786}
787
c239b9f8
JF
788NSString *CYPoolNSCYON(apr_pool_t *pool, id value);
789
107e3ed0 790@interface NSMethodSignature (Cycript)
7ba62cfd
JF
791- (NSString *) _typeString;
792@end
793
107e3ed0 794@interface NSObject (Cycript)
b4aa79af 795
61933e16 796- (JSValueRef) cy$JSValueInContext:(JSContextRef)context;
b4aa79af
JF
797- (JSType) cy$JSType;
798
799- (NSObject *) cy$toJSON:(NSString *)key;
800- (NSString *) cy$toCYON;
f33b048a 801- (NSString *) cy$toKey;
b4aa79af 802
7b184c00 803- (bool) cy$hasProperty:(NSString *)name;
cc103044
JF
804- (NSObject *) cy$getProperty:(NSString *)name;
805- (bool) cy$setProperty:(NSString *)name to:(NSObject *)value;
806- (bool) cy$deleteProperty:(NSString *)name;
b4aa79af 807
c1582939
JF
808@end
809
f7c38a29
JF
810@protocol Cycript
811- (JSValueRef) cy$JSValueInContext:(JSContextRef)context;
812@end
813
107e3ed0 814@interface NSString (Cycript)
88c977fa
JF
815- (void *) cy$symbol;
816@end
817
4afefdd9
JF
818struct PropertyAttributes {
819 CYPool pool_;
820
821 const char *name;
822
823 const char *variable;
824
825 const char *getter_;
826 const char *setter_;
827
828 bool readonly;
829 bool copy;
830 bool retain;
831 bool nonatomic;
832 bool dynamic;
833 bool weak;
834 bool garbage;
835
836 PropertyAttributes(objc_property_t property) :
837 variable(NULL),
838 getter_(NULL),
839 setter_(NULL),
840 readonly(false),
841 copy(false),
842 retain(false),
843 nonatomic(false),
844 dynamic(false),
845 weak(false),
846 garbage(false)
847 {
848 name = property_getName(property);
849 const char *attributes(property_getAttributes(property));
850
851 for (char *state, *token(apr_strtok(apr_pstrdup(pool_, attributes), ",", &state)); token != NULL; token = apr_strtok(NULL, ",", &state)) {
852 switch (*token) {
853 case 'R': readonly = true; break;
854 case 'C': copy = true; break;
855 case '&': retain = true; break;
856 case 'N': nonatomic = true; break;
857 case 'G': getter_ = token + 1; break;
858 case 'S': setter_ = token + 1; break;
859 case 'V': variable = token + 1; break;
860 }
861 }
862
863 /*if (variable == NULL) {
864 variable = property_getName(property);
865 size_t size(strlen(variable));
866 char *name(new(pool_) char[size + 2]);
867 name[0] = '_';
868 memcpy(name + 1, variable, size);
869 name[size + 1] = '\0';
870 variable = name;
871 }*/
872 }
873
874 const char *Getter() {
875 if (getter_ == NULL)
876 getter_ = apr_pstrdup(pool_, name);
877 return getter_;
878 }
879
880 const char *Setter() {
881 if (setter_ == NULL && !readonly) {
882 size_t length(strlen(name));
883
884 char *temp(new(pool_) char[length + 5]);
885 temp[0] = 's';
886 temp[1] = 'e';
887 temp[2] = 't';
888
889 if (length != 0) {
890 temp[3] = toupper(name[0]);
891 memcpy(temp + 4, name + 1, length - 1);
892 }
893
894 temp[length + 3] = ':';
895 temp[length + 4] = '\0';
896 setter_ = temp;
897 }
898
899 return setter_;
900 }
901
902};
903
c239b9f8
JF
904NSString *NSCFType$cy$toJSON(id self, SEL sel, NSString *key) {
905 return [(NSString *) CFCopyDescription((CFTypeRef) self) autorelease];
906}
907
365abb0a 908/* Bridge: NSArray {{{ */
107e3ed0 909@implementation NSArray (Cycript)
62ca2b82 910
b4aa79af 911- (NSString *) cy$toCYON {
c1582939
JF
912 NSMutableString *json([[[NSMutableString alloc] init] autorelease]);
913 [json appendString:@"["];
914
915 bool comma(false);
62ca2b82 916 for (id object in self) {
c1582939
JF
917 if (comma)
918 [json appendString:@","];
919 else
920 comma = true;
7b184c00 921 if (object == nil || [object cy$JSType] != kJSTypeUndefined)
c239b9f8 922 [json appendString:CYPoolNSCYON(NULL, object)];
6b8a9500
JF
923 else {
924 [json appendString:@","];
925 comma = false;
926 }
c1582939
JF
927 }
928
929 [json appendString:@"]"];
930 return json;
62ca2b82
JF
931}
932
7b184c00
JF
933- (bool) cy$hasProperty:(NSString *)name {
934 if ([name isEqualToString:@"length"])
935 return true;
936
faf69207
JF
937 size_t index(CYGetIndex(NULL, name));
938 if (index == _not(size_t) || index >= [self count])
7b184c00
JF
939 return [super cy$hasProperty:name];
940 else
941 return true;
942}
943
cc103044 944- (NSObject *) cy$getProperty:(NSString *)name {
4afefdd9
JF
945 if ([name isEqualToString:@"length"])
946 return [NSNumber numberWithUnsignedInteger:[self count]];
947
faf69207
JF
948 size_t index(CYGetIndex(NULL, name));
949 if (index == _not(size_t) || index >= [self count])
cc103044
JF
950 return [super cy$getProperty:name];
951 else
952 return [self objectAtIndex:index];
953}
954
955@end
365abb0a
JF
956/* }}} */
957/* Bridge: NSDictionary {{{ */
958@implementation NSDictionary (Cycript)
959
960- (NSString *) cy$toCYON {
961 NSMutableString *json([[[NSMutableString alloc] init] autorelease]);
962 [json appendString:@"{"];
963
964 bool comma(false);
965 for (id key in self) {
966 if (comma)
967 [json appendString:@","];
968 else
969 comma = true;
970 [json appendString:[key cy$toKey]];
971 [json appendString:@":"];
972 NSObject *object([self objectForKey:key]);
973 [json appendString:CYPoolNSCYON(NULL, object)];
974 }
cc103044 975
365abb0a
JF
976 [json appendString:@"}"];
977 return json;
978}
979
980- (bool) cy$hasProperty:(NSString *)name {
981 return [self objectForKey:name] != nil;
982}
983
984- (NSObject *) cy$getProperty:(NSString *)name {
985 return [self objectForKey:name];
986}
987
988@end
989/* }}} */
990/* Bridge: NSMutableArray {{{ */
cc103044
JF
991@implementation NSMutableArray (Cycript)
992
993- (bool) cy$setProperty:(NSString *)name to:(NSObject *)value {
faf69207
JF
994 if ([name isEqualToString:@"length"]) {
995 // XXX: is this not intelligent?
996 NSUInteger size([(NSNumber *)value unsignedIntegerValue]);
997 NSUInteger count([self count]);
998 if (size < count)
999 [self removeObjectsInRange:NSMakeRange(size, count - size)];
1000 else if (size != count) {
1001 WebUndefined *undefined([WebUndefined undefined]);
1002 for (size_t i(count); i != size; ++i)
1003 [self addObject:undefined];
1004 }
1005 return true;
1006 }
1007
1008 size_t index(CYGetIndex(NULL, name));
1009 if (index == _not(size_t))
cc103044 1010 return [super cy$setProperty:name to:value];
faf69207
JF
1011
1012 id object(value ?: [NSNull null]);
1013
1014 size_t count([self count]);
1015 if (index < count)
1016 [self replaceObjectAtIndex:index withObject:object];
cc103044 1017 else {
faf69207
JF
1018 if (index != count) {
1019 WebUndefined *undefined([WebUndefined undefined]);
1020 for (size_t i(count); i != index; ++i)
1021 [self addObject:undefined];
1022 }
1023
1024 [self addObject:object];
cc103044 1025 }
faf69207 1026
365abb0a 1027 return true;
7b184c00
JF
1028}
1029
365abb0a
JF
1030- (bool) cy$deleteProperty:(NSString *)name {
1031 size_t index(CYGetIndex(NULL, name));
1032 if (index == _not(size_t) || index >= [self count])
1033 return [super cy$deleteProperty:name];
1034 [self replaceObjectAtIndex:index withObject:[WebUndefined undefined]];
1035 return true;
cc103044
JF
1036}
1037
1038@end
365abb0a
JF
1039/* }}} */
1040/* Bridge: NSMutableDictionary {{{ */
cc103044
JF
1041@implementation NSMutableDictionary (Cycript)
1042
1043- (bool) cy$setProperty:(NSString *)name to:(NSObject *)value {
b6ea08b6 1044 [self setObject:(value ?: [NSNull null]) forKey:name];
cc103044
JF
1045 return true;
1046}
1047
1048- (bool) cy$deleteProperty:(NSString *)name {
1049 if ([self objectForKey:name] == nil)
1050 return false;
1051 else {
1052 [self removeObjectForKey:name];
1053 return true;
1054 }
1055}
1056
62ca2b82 1057@end
365abb0a
JF
1058/* }}} */
1059/* Bridge: NSNumber {{{ */
107e3ed0 1060@implementation NSNumber (Cycript)
62ca2b82 1061
b4aa79af
JF
1062- (JSType) cy$JSType {
1063 // XXX: this just seems stupid
1064 return [self class] == NSCFBoolean_ ? kJSTypeBoolean : kJSTypeNumber;
1065}
1066
1067- (NSObject *) cy$toJSON:(NSString *)key {
1068 return self;
1069}
1070
1071- (NSString *) cy$toCYON {
1072 return [self cy$JSType] != kJSTypeBoolean ? [self stringValue] : [self boolValue] ? @"true" : @"false";
62ca2b82
JF
1073}
1074
2b52f27e 1075- (JSValueRef) cy$JSValueInContext:(JSContextRef)context {
b4aa79af 1076 return [self cy$JSType] != kJSTypeBoolean ? CYCastJSValue(context, [self doubleValue]) : CYCastJSValue(context, [self boolValue]);
62ca2b82
JF
1077}
1078
1079@end
365abb0a
JF
1080/* }}} */
1081/* Bridge: NSNull {{{ */
1082@implementation NSNull (Cycript)
1083
1084- (JSType) cy$JSType {
1085 return kJSTypeNull;
1086}
1087
1088- (NSObject *) cy$toJSON:(NSString *)key {
1089 return self;
1090}
1091
1092- (NSString *) cy$toCYON {
1093 return @"null";
1094}
1095
1096@end
1097/* }}} */
1098/* Bridge: NSObject {{{ */
1099@implementation NSObject (Cycript)
1100
1101- (JSValueRef) cy$JSValueInContext:(JSContextRef)context {
1102 return CYMakeInstance(context, self, false);
1103}
1104
1105- (JSType) cy$JSType {
1106 return kJSTypeObject;
1107}
1108
1109- (NSObject *) cy$toJSON:(NSString *)key {
1110 return [self description];
1111}
1112
1113- (NSString *) cy$toCYON {
1114 return [[self cy$toJSON:@""] cy$toCYON];
1115}
1116
1117- (NSString *) cy$toKey {
1118 return [self cy$toCYON];
1119}
1120
1121- (bool) cy$hasProperty:(NSString *)name {
1122 return false;
1123}
1124
1125- (NSObject *) cy$getProperty:(NSString *)name {
1126 return nil;
1127}
1128
1129- (bool) cy$setProperty:(NSString *)name to:(NSObject *)value {
1130 return false;
1131}
1132
1133- (bool) cy$deleteProperty:(NSString *)name {
1134 return false;
1135}
1136
1137@end
1138/* }}} */
1139/* Bridge: NSProxy {{{ */
1140@implementation NSProxy (Cycript)
1141
1142- (NSObject *) cy$toJSON:(NSString *)key {
1143 return [self description];
1144}
1145
1146- (NSString *) cy$toCYON {
1147 return [[self cy$toJSON:@""] cy$toCYON];
1148}
c1582939 1149
365abb0a
JF
1150@end
1151/* }}} */
1152/* Bridge: NSString {{{ */
107e3ed0 1153@implementation NSString (Cycript)
62ca2b82 1154
b4aa79af
JF
1155- (JSType) cy$JSType {
1156 return kJSTypeString;
1157}
1158
1159- (NSObject *) cy$toJSON:(NSString *)key {
1160 return self;
1161}
1162
1163- (NSString *) cy$toCYON {
f33b048a 1164 // XXX: this should use the better code from Output.cpp
c1582939
JF
1165 CFMutableStringRef json(CFStringCreateMutableCopy(kCFAllocatorDefault, 0, (CFStringRef) self));
1166
c1582939
JF
1167 CFStringFindAndReplace(json, CFSTR("\\"), CFSTR("\\\\"), CFRangeMake(0, CFStringGetLength(json)), 0);
1168 CFStringFindAndReplace(json, CFSTR("\""), CFSTR("\\\""), CFRangeMake(0, CFStringGetLength(json)), 0);
1169 CFStringFindAndReplace(json, CFSTR("\t"), CFSTR("\\t"), CFRangeMake(0, CFStringGetLength(json)), 0);
1170 CFStringFindAndReplace(json, CFSTR("\r"), CFSTR("\\r"), CFRangeMake(0, CFStringGetLength(json)), 0);
1171 CFStringFindAndReplace(json, CFSTR("\n"), CFSTR("\\n"), CFRangeMake(0, CFStringGetLength(json)), 0);
1172
1173 CFStringInsert(json, 0, CFSTR("\""));
1174 CFStringAppend(json, CFSTR("\""));
1175
62ca2b82
JF
1176 return [reinterpret_cast<const NSString *>(json) autorelease];
1177}
1178
f33b048a
JF
1179- (NSString *) cy$toKey {
1180 const char *value([self UTF8String]);
1181 size_t size(strlen(value));
1182
283e7e33 1183 if (size == 0)
f33b048a 1184 goto cyon;
283e7e33
JF
1185
1186 if (DigitRange_[value[0]]) {
faf69207
JF
1187 size_t index(CYGetIndex(NULL, self));
1188 if (index == _not(size_t))
f33b048a 1189 goto cyon;
283e7e33
JF
1190 } else {
1191 if (!WordStartRange_[value[0]])
1192 goto cyon;
1193 for (size_t i(1); i != size; ++i)
1194 if (!WordEndRange_[value[i]])
1195 goto cyon;
1196 }
1197
f33b048a
JF
1198 return self;
1199
1200 cyon:
1201 return [self cy$toCYON];
1202}
1203
88c977fa 1204- (void *) cy$symbol {
478d4ed0
JF
1205 CYPool pool;
1206 return dlsym(RTLD_DEFAULT, CYPoolCString(pool, self));
88c977fa
JF
1207}
1208
62ca2b82 1209@end
365abb0a
JF
1210/* }}} */
1211/* Bridge: WebUndefined {{{ */
1212@implementation WebUndefined (Cycript)
1213
1214- (JSType) cy$JSType {
1215 return kJSTypeUndefined;
1216}
1217
1218- (NSObject *) cy$toJSON:(NSString *)key {
1219 return self;
1220}
1221
1222- (NSString *) cy$toCYON {
1223 return @"undefined";
1224}
1225
1226- (JSValueRef) cy$JSValueInContext:(JSContextRef)context {
1227 return CYJSUndefined(context);
1228}
1229
1230@end
1231/* }}} */
62ca2b82 1232
faf69207 1233@interface CYJSObject : NSMutableDictionary {
62ca2b82
JF
1234 JSObjectRef object_;
1235 JSContextRef context_;
1236}
1237
1238- (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context;
1239
b4aa79af
JF
1240- (NSString *) cy$toJSON:(NSString *)key;
1241
62ca2b82
JF
1242- (NSUInteger) count;
1243- (id) objectForKey:(id)key;
1244- (NSEnumerator *) keyEnumerator;
1245- (void) setObject:(id)object forKey:(id)key;
1246- (void) removeObjectForKey:(id)key;
1247
1248@end
c1582939 1249
faf69207 1250@interface CYJSArray : NSMutableArray {
c1582939
JF
1251 JSObjectRef object_;
1252 JSContextRef context_;
1253}
1254
1255- (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context;
1256
1257- (NSUInteger) count;
1258- (id) objectAtIndex:(NSUInteger)index;
1259
faf69207
JF
1260- (void) addObject:(id)anObject;
1261- (void) insertObject:(id)anObject atIndex:(NSUInteger)index;
1262- (void) removeLastObject;
1263- (void) removeObjectAtIndex:(NSUInteger)index;
1264- (void) replaceObjectAtIndex:(NSUInteger)index withObject:(id)anObject;
1265
c1582939
JF
1266@end
1267
283e7e33
JF
1268CYRange DigitRange_ (0x3ff000000000000LLU, 0x000000000000000LLU); // 0-9
1269CYRange WordStartRange_(0x000001000000000LLU, 0x7fffffe87fffffeLLU); // A-Za-z_$
1270CYRange WordEndRange_ (0x3ff001000000000LLU, 0x7fffffe87fffffeLLU); // A-Za-z_$0-9
dea834b0 1271
4cf49641
JF
1272#define CYTry \
1273 @try
0c862573
JF
1274#define CYCatch \
1275 @catch (id error) { \
1276 CYThrow(context, error, exception); \
1277 return NULL; \
1278 }
1279
b09da87b
JF
1280apr_status_t CYPoolRelease_(void *data) {
1281 id object(reinterpret_cast<id>(data));
1282 [object release];
1283 return APR_SUCCESS;
1284}
1285
1286id CYPoolRelease(apr_pool_t *pool, id object) {
b4aa79af
JF
1287 if (object == nil)
1288 return nil;
1289 else if (pool == NULL)
b09da87b
JF
1290 return [object autorelease];
1291 else {
1292 apr_pool_cleanup_register(pool, object, &CYPoolRelease_, &apr_pool_cleanup_null);
1293 return object;
1294 }
1295}
1296
953647c1
JF
1297CFTypeRef CYPoolRelease(apr_pool_t *pool, CFTypeRef object) {
1298 return (CFTypeRef) CYPoolRelease(pool, (id) object);
1299}
1300
2b52f27e 1301id CYCastNSObject_(apr_pool_t *pool, JSContextRef context, JSObjectRef object) {
ea2d184c
JF
1302 JSValueRef exception(NULL);
1303 bool array(JSValueIsInstanceOfConstructor(context, object, Array_, &exception));
1304 CYThrow(context, exception);
b09da87b
JF
1305 id value(array ? [CYJSArray alloc] : [CYJSObject alloc]);
1306 return CYPoolRelease(pool, [value initWithJSObject:object inContext:context]);
62ca2b82
JF
1307}
1308
2b52f27e
JF
1309id CYCastNSObject(apr_pool_t *pool, JSContextRef context, JSObjectRef object) {
1310 if (!JSValueIsObjectOfClass(context, object, Instance_))
1311 return CYCastNSObject_(pool, context, object);
1312 else {
9e562cfc
JF
1313 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1314 return internal->GetValue();
2b52f27e
JF
1315 }
1316}
1317
bd17e6f3
JF
1318double CYCastDouble(const char *value, size_t size) {
1319 char *end;
1320 double number(strtod(value, &end));
1321 if (end != value + size)
1322 return NAN;
1323 return number;
1324}
1325
1326double CYCastDouble(const char *value) {
1327 return CYCastDouble(value, strlen(value));
1328}
1329
f610e1a0 1330double CYCastDouble(JSContextRef context, JSValueRef value) {
0c862573
JF
1331 JSValueRef exception(NULL);
1332 double number(JSValueToNumber(context, value, &exception));
1333 CYThrow(context, exception);
f610e1a0
JF
1334 return number;
1335}
1336
1337CFNumberRef CYCopyCFNumber(JSContextRef context, JSValueRef value) {
1338 double number(CYCastDouble(context, value));
0c862573
JF
1339 return CFNumberCreate(kCFAllocatorDefault, kCFNumberDoubleType, &number);
1340}
1341
953647c1
JF
1342CFStringRef CYCopyCFString(const char *value) {
1343 return CFStringCreateWithCString(kCFAllocatorDefault, value, kCFStringEncodingUTF8);
1344}
1345
1346NSString *CYCastNSString(apr_pool_t *pool, const char *value) {
1347 return (NSString *) CYPoolRelease(pool, CYCopyCFString(value));
1348}
1349
b09da87b 1350NSString *CYCastNSString(apr_pool_t *pool, JSStringRef value) {
953647c1 1351 return (NSString *) CYPoolRelease(pool, CYCopyCFString(value));
b09da87b
JF
1352}
1353
1354bool CYCastBool(JSContextRef context, JSValueRef value) {
1355 return JSValueToBoolean(context, value);
62ca2b82
JF
1356}
1357
b09da87b
JF
1358CFTypeRef CYCFType(apr_pool_t *pool, JSContextRef context, JSValueRef value, bool cast) {
1359 CFTypeRef object;
1360 bool copy;
1361
f610e1a0 1362 switch (JSType type = JSValueGetType(context, value)) {
c1582939 1363 case kJSTypeUndefined:
b09da87b
JF
1364 object = [WebUndefined undefined];
1365 copy = false;
1366 break;
1367
c1582939 1368 case kJSTypeNull:
b09da87b
JF
1369 return NULL;
1370 break;
1371
c1582939 1372 case kJSTypeBoolean:
b09da87b
JF
1373 object = CYCastBool(context, value) ? kCFBooleanTrue : kCFBooleanFalse;
1374 copy = false;
1375 break;
1376
0c862573 1377 case kJSTypeNumber:
b09da87b
JF
1378 object = CYCopyCFNumber(context, value);
1379 copy = true;
1380 break;
1381
62ca2b82 1382 case kJSTypeString:
b09da87b
JF
1383 object = CYCopyCFString(context, value);
1384 copy = true;
1385 break;
1386
c1582939 1387 case kJSTypeObject:
b09da87b
JF
1388 // XXX: this might could be more efficient
1389 object = (CFTypeRef) CYCastNSObject(pool, context, (JSObjectRef) value);
1390 copy = false;
1391 break;
1392
c1582939 1393 default:
f5e9be24 1394 @throw [NSException exceptionWithName:NSInternalInconsistencyException reason:[NSString stringWithFormat:@"JSValueGetType() == 0x%x", type] userInfo:nil];
b09da87b 1395 break;
c1582939 1396 }
b09da87b
JF
1397
1398 if (cast != copy)
1399 return object;
1400 else if (copy)
953647c1 1401 return CYPoolRelease(pool, object);
b09da87b
JF
1402 else
1403 return CFRetain(object);
1404}
1405
1406CFTypeRef CYCastCFType(apr_pool_t *pool, JSContextRef context, JSValueRef value) {
1407 return CYCFType(pool, context, value, true);
1408}
1409
1410CFTypeRef CYCopyCFType(apr_pool_t *pool, JSContextRef context, JSValueRef value) {
1411 return CYCFType(pool, context, value, false);
c1582939
JF
1412}
1413
62ca2b82 1414NSArray *CYCastNSArray(JSPropertyNameArrayRef names) {
b09da87b 1415 CYPool pool;
62ca2b82
JF
1416 size_t size(JSPropertyNameArrayGetCount(names));
1417 NSMutableArray *array([NSMutableArray arrayWithCapacity:size]);
1418 for (size_t index(0); index != size; ++index)
b09da87b 1419 [array addObject:CYCastNSString(pool, JSPropertyNameArrayGetNameAtIndex(names, index))];
62ca2b82
JF
1420 return array;
1421}
1422
b09da87b
JF
1423id CYCastNSObject(apr_pool_t *pool, JSContextRef context, JSValueRef value) {
1424 return reinterpret_cast<const NSObject *>(CYCastCFType(pool, context, value));
c1582939
JF
1425}
1426
ea2d184c 1427void CYThrow(JSContextRef context, JSValueRef value) {
62ca2b82
JF
1428 if (value == NULL)
1429 return;
b09da87b
JF
1430 @throw CYCastNSObject(NULL, context, value);
1431}
1432
1433JSValueRef CYJSNull(JSContextRef context) {
1434 return JSValueMakeNull(context);
1435}
1436
1437JSValueRef CYCastJSValue(JSContextRef context, JSStringRef value) {
1438 return value == NULL ? CYJSNull(context) : JSValueMakeString(context, value);
1439}
1440
1441JSValueRef CYCastJSValue(JSContextRef context, const char *value) {
1442 return CYCastJSValue(context, CYJSString(value));
62ca2b82
JF
1443}
1444
2b52f27e 1445JSValueRef CYCastJSValue(JSContextRef context, id value) {
f7c38a29
JF
1446 if (value == nil)
1447 return CYJSNull(context);
1448 else if ([value respondsToSelector:@selector(cy$JSValueInContext:)])
1449 return [value cy$JSValueInContext:context];
1450 else
1451 return CYMakeInstance(context, value, false);
62ca2b82
JF
1452}
1453
dea834b0
JF
1454JSObjectRef CYCastJSObject(JSContextRef context, JSValueRef value) {
1455 JSValueRef exception(NULL);
1456 JSObjectRef object(JSValueToObject(context, value, &exception));
1457 CYThrow(context, exception);
1458 return object;
1459}
1460
30ddc20c 1461void CYThrow(JSContextRef context, id error, JSValueRef *exception) {
4cf49641
JF
1462 if (exception == NULL)
1463 throw error;
7ba62cfd
JF
1464 *exception = CYCastJSValue(context, error);
1465}
1466
b4aa79af
JF
1467JSValueRef CYCallAsFunction(JSContextRef context, JSObjectRef function, JSObjectRef _this, size_t count, JSValueRef arguments[]) {
1468 JSValueRef exception(NULL);
1469 JSValueRef value(JSObjectCallAsFunction(context, function, _this, count, arguments, &exception));
1470 CYThrow(context, exception);
1471 return value;
1472}
1473
1474bool CYIsCallable(JSContextRef context, JSValueRef value) {
1475 // XXX: this isn't actually correct
1476 return value != NULL && JSValueIsObject(context, value);
1477}
1478
b21525c7 1479@implementation CYJSObject
62ca2b82
JF
1480
1481- (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context {
1482 if ((self = [super init]) != nil) {
1483 object_ = object;
1484 context_ = context;
75b0a457 1485 JSValueProtect(context_, object_);
62ca2b82
JF
1486 } return self;
1487}
1488
75b0a457
JF
1489- (void) dealloc {
1490 JSValueUnprotect(context_, object_);
1491 [super dealloc];
1492}
1493
b4aa79af
JF
1494- (NSObject *) cy$toJSON:(NSString *)key {
1495 JSValueRef toJSON(CYGetProperty(context_, object_, toJSON_));
1496 if (!CYIsCallable(context_, toJSON))
1497 return [super cy$toJSON:key];
1498 else {
1499 JSValueRef arguments[1] = {CYCastJSValue(context_, key)};
1500 JSValueRef value(CYCallAsFunction(context_, (JSObjectRef) toJSON, object_, 1, arguments));
1501 // XXX: do I really want an NSNull here?!
1502 return CYCastNSObject(NULL, context_, value) ?: [NSNull null];
1503 }
1504}
1505
1506- (NSString *) cy$toCYON {
1507 JSValueRef toCYON(CYGetProperty(context_, object_, toCYON_));
365abb0a 1508 if (!CYIsCallable(context_, toCYON)) super:
b4aa79af 1509 return [super cy$toCYON];
365abb0a 1510 else if (JSValueRef value = CYCallAsFunction(context_, (JSObjectRef) toCYON, object_, 0, NULL))
b4aa79af 1511 return CYCastNSString(NULL, CYJSString(context_, value));
365abb0a 1512 else goto super;
b4aa79af
JF
1513}
1514
62ca2b82
JF
1515- (NSUInteger) count {
1516 JSPropertyNameArrayRef names(JSObjectCopyPropertyNames(context_, object_));
1517 size_t size(JSPropertyNameArrayGetCount(names));
1518 JSPropertyNameArrayRelease(names);
1519 return size;
1520}
1521
1522- (id) objectForKey:(id)key {
d0a00196
JF
1523 JSValueRef value(CYGetProperty(context_, object_, CYJSString(key)));
1524 if (JSValueIsUndefined(context_, value))
1525 return nil;
1526 return CYCastNSObject(NULL, context_, value) ?: [NSNull null];
62ca2b82
JF
1527}
1528
1529- (NSEnumerator *) keyEnumerator {
1530 JSPropertyNameArrayRef names(JSObjectCopyPropertyNames(context_, object_));
1531 NSEnumerator *enumerator([CYCastNSArray(names) objectEnumerator]);
1532 JSPropertyNameArrayRelease(names);
1533 return enumerator;
1534}
1535
1536- (void) setObject:(id)object forKey:(id)key {
dea834b0 1537 CYSetProperty(context_, object_, CYJSString(key), CYCastJSValue(context_, object));
62ca2b82
JF
1538}
1539
1540- (void) removeObjectForKey:(id)key {
1541 JSValueRef exception(NULL);
2b52f27e 1542 (void) JSObjectDeleteProperty(context_, object_, CYJSString(key), &exception);
62ca2b82
JF
1543 CYThrow(context_, exception);
1544}
1545
1546@end
1547
b21525c7 1548@implementation CYJSArray
c1582939
JF
1549
1550- (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context {
1551 if ((self = [super init]) != nil) {
1552 object_ = object;
1553 context_ = context;
75b0a457 1554 JSValueProtect(context_, object_);
c1582939
JF
1555 } return self;
1556}
1557
75b0a457
JF
1558- (void) dealloc {
1559 JSValueUnprotect(context_, object_);
1560 [super dealloc];
1561}
1562
c1582939 1563- (NSUInteger) count {
dea834b0 1564 return CYCastDouble(context_, CYGetProperty(context_, object_, length_));
c1582939
JF
1565}
1566
1567- (id) objectAtIndex:(NSUInteger)index {
9a2db8b2
JF
1568 size_t bounds([self count]);
1569 if (index >= bounds)
1570 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray objectAtIndex:]: index (%zu) beyond bounds (%zu)", index, bounds] userInfo:nil];
62ca2b82
JF
1571 JSValueRef exception(NULL);
1572 JSValueRef value(JSObjectGetPropertyAtIndex(context_, object_, index, &exception));
1573 CYThrow(context_, exception);
478d4ed0 1574 return CYCastNSObject(NULL, context_, value) ?: [NSNull null];
c1582939
JF
1575}
1576
faf69207
JF
1577- (void) addObject:(id)object {
1578 JSValueRef exception(NULL);
1579 JSValueRef arguments[1];
1580 arguments[0] = CYCastJSValue(context_, object);
1581 JSObjectCallAsFunction(context_, Array_push_, object_, 1, arguments, &exception);
1582 CYThrow(context_, exception);
1583}
1584
1585- (void) insertObject:(id)object atIndex:(NSUInteger)index {
9a2db8b2
JF
1586 size_t bounds([self count] + 1);
1587 if (index >= bounds)
1588 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray insertObject:atIndex:]: index (%zu) beyond bounds (%zu)", index, bounds] userInfo:nil];
faf69207
JF
1589 JSValueRef exception(NULL);
1590 JSValueRef arguments[3];
1591 arguments[0] = CYCastJSValue(context_, index);
1592 arguments[1] = CYCastJSValue(context_, 0);
1593 arguments[2] = CYCastJSValue(context_, object);
1594 JSObjectCallAsFunction(context_, Array_splice_, object_, 3, arguments, &exception);
1595 CYThrow(context_, exception);
1596}
1597
1598- (void) removeLastObject {
1599 JSValueRef exception(NULL);
1600 JSObjectCallAsFunction(context_, Array_pop_, object_, 0, NULL, &exception);
1601 CYThrow(context_, exception);
1602}
1603
1604- (void) removeObjectAtIndex:(NSUInteger)index {
9a2db8b2
JF
1605 size_t bounds([self count]);
1606 if (index >= bounds)
1607 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray removeObjectAtIndex:]: index (%zu) beyond bounds (%zu)", index, bounds] userInfo:nil];
faf69207
JF
1608 JSValueRef exception(NULL);
1609 JSValueRef arguments[2];
1610 arguments[0] = CYCastJSValue(context_, index);
1611 arguments[1] = CYCastJSValue(context_, 1);
1612 JSObjectCallAsFunction(context_, Array_splice_, object_, 2, arguments, &exception);
1613 CYThrow(context_, exception);
1614}
1615
1616- (void) replaceObjectAtIndex:(NSUInteger)index withObject:(id)object {
9a2db8b2
JF
1617 size_t bounds([self count]);
1618 if (index >= bounds)
1619 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray replaceObjectAtIndex:withObject:]: index (%zu) beyond bounds (%zu)", index, bounds] userInfo:nil];
faf69207
JF
1620 CYSetProperty(context_, object_, index, CYCastJSValue(context_, object));
1621}
1622
c1582939
JF
1623@end
1624
c239b9f8 1625NSString *CYCopyNSCYON(id value) {
c239b9f8
JF
1626 NSString *string;
1627
7b184c00
JF
1628 if (value == nil)
1629 string = @"nil";
1630 else {
1631 Class _class(object_getClass(value));
1632 SEL sel(@selector(cy$toCYON));
1633
1634 if (Method toCYON = class_getInstanceMethod(_class, sel))
1635 string = reinterpret_cast<NSString *(*)(id, SEL)>(method_getImplementation(toCYON))(value, sel);
1636 else if (Method methodSignatureForSelector = class_getInstanceMethod(_class, @selector(methodSignatureForSelector:))) {
1637 if (reinterpret_cast<NSMethodSignature *(*)(id, SEL, SEL)>(method_getImplementation(methodSignatureForSelector))(value, @selector(methodSignatureForSelector:), sel) != nil)
1638 string = [value cy$toCYON];
1639 else goto fail;
1640 } else fail: {
1641 if (value == NSZombie_)
1642 string = @"_NSZombie_";
1643 else if (_class == NSZombie_)
1644 string = [NSString stringWithFormat:@"<_NSZombie_: %p>", value];
1645 // XXX: frowny /in/ the pants
1646 else if (value == NSMessageBuilder_ || value == Object_)
1647 string = nil;
1648 else
1649 string = [NSString stringWithFormat:@"%@", value];
1650 }
1651
1652 // XXX: frowny pants
1653 if (string == nil)
1654 string = @"undefined";
c239b9f8
JF
1655 }
1656
c239b9f8
JF
1657 return [string retain];
1658}
1659
1660NSString *CYCopyNSCYON(JSContextRef context, JSValueRef value, JSValueRef *exception) {
e80b023d
JF
1661 if (JSValueIsNull(context, value))
1662 return [@"null" retain];
1663
4cf49641
JF
1664 CYTry {
1665 CYPoolTry {
7b184c00 1666 return CYCopyNSCYON(CYCastNSObject(NULL, context, value));
4cf49641
JF
1667 } CYPoolCatch(NULL)
1668 } CYCatch
c1582939
JF
1669}
1670
c239b9f8
JF
1671NSString *CYPoolNSCYON(apr_pool_t *pool, id value) {
1672 return CYPoolRelease(pool, static_cast<id>(CYCopyNSCYON(value)));
1673}
1674
1675const char *CYPoolCCYON(apr_pool_t *pool, JSContextRef context, JSValueRef value, JSValueRef *exception) {
1676 if (NSString *json = CYCopyNSCYON(context, value, exception)) {
4cf49641
JF
1677 const char *string(CYPoolCString(pool, json));
1678 [json release];
1679 return string;
1680 } else return NULL;
478d4ed0
JF
1681}
1682
18401062 1683// XXX: use objc_getAssociatedObject and objc_setAssociatedObject on 10.6
61933e16
JF
1684struct CYInternal :
1685 CYData
1686{
1687 JSObjectRef object_;
1688
1689 CYInternal() :
1690 object_(NULL)
1691 {
1692 }
1693
1694 ~CYInternal() {
1695 // XXX: delete object_? ;(
1696 }
1697
1698 static CYInternal *Get(id self) {
1699 CYInternal *internal(NULL);
1700 if (object_getInstanceVariable(self, "cy$internal_", reinterpret_cast<void **>(&internal)) == NULL) {
1701 // XXX: do something epic? ;P
1702 }
1703
1704 return internal;
1705 }
1706
1707 static CYInternal *Set(id self) {
1708 CYInternal *internal(NULL);
1709 if (Ivar ivar = object_getInstanceVariable(self, "cy$internal_", reinterpret_cast<void **>(&internal))) {
1710 if (internal == NULL) {
1711 internal = new CYInternal();
1712 object_setIvar(self, ivar, reinterpret_cast<id>(internal));
1713 }
1714 } else {
1715 // XXX: do something epic? ;P
1716 }
1717
1718 return internal;
1719 }
1720
7b184c00
JF
1721 bool HasProperty(JSContextRef context, JSStringRef name) {
1722 if (object_ == NULL)
1723 return false;
1724 return JSObjectHasProperty(context, object_, name);
1725 }
1726
61933e16
JF
1727 JSValueRef GetProperty(JSContextRef context, JSStringRef name) {
1728 if (object_ == NULL)
1729 return NULL;
1730 return CYGetProperty(context, object_, name);
1731 }
1732
1733 void SetProperty(JSContextRef context, JSStringRef name, JSValueRef value) {
1734 if (object_ == NULL)
1735 object_ = JSObjectMake(context, NULL, NULL);
1736 CYSetProperty(context, object_, name, value);
1737 }
1738};
1739
534fb6da 1740static JSObjectRef CYMakeSelector(JSContextRef context, SEL sel) {
9e562cfc
JF
1741 Selector_privateData *internal(new Selector_privateData(sel));
1742 return JSObjectMake(context, Selector_, internal);
dea834b0
JF
1743}
1744
534fb6da 1745static JSObjectRef CYMakePointer(JSContextRef context, void *pointer, sig::Type *type, ffi_type *ffi, JSObjectRef owner) {
4e39dc0b 1746 Pointer *internal(new Pointer(pointer, context, owner, type));
9e562cfc 1747 return JSObjectMake(context, Pointer_, internal);
dea834b0
JF
1748}
1749
534fb6da 1750static JSObjectRef CYMakeFunctor(JSContextRef context, void (*function)(), const char *type) {
9e562cfc
JF
1751 Functor_privateData *internal(new Functor_privateData(type, function));
1752 return JSObjectMake(context, Functor_, internal);
88c977fa
JF
1753}
1754
534fb6da 1755static const char *CYPoolCString(apr_pool_t *pool, JSStringRef value) {
bd17e6f3 1756 if (pool == NULL) {
534fb6da 1757 // XXX: this could be much more efficient
bd17e6f3 1758 const char *string([CYCastNSString(NULL, value) UTF8String]);
bd17e6f3
JF
1759 return string;
1760 } else {
478d4ed0
JF
1761 size_t size(JSStringGetMaximumUTF8CStringSize(value));
1762 char *string(new(pool) char[size]);
1763 JSStringGetUTF8CString(value, string, size);
1764 return string;
1765 }
7ba62cfd
JF
1766}
1767
534fb6da 1768static const char *CYPoolCString(apr_pool_t *pool, JSContextRef context, JSValueRef value) {
18401062 1769 return JSValueIsNull(context, value) ? NULL : CYPoolCString(pool, CYJSString(context, value));
77e87a6c
JF
1770}
1771
534fb6da 1772static bool CYGetOffset(apr_pool_t *pool, JSStringRef value, ssize_t &index) {
faf69207 1773 return CYGetOffset(CYPoolCString(pool, value), index);
ff783f8c
JF
1774}
1775
f610e1a0 1776// XXX: this macro is unhygenic
b21525c7 1777#define CYCastCString(context, value) ({ \
b09da87b
JF
1778 char *utf8; \
1779 if (value == NULL) \
1780 utf8 = NULL; \
478d4ed0 1781 else if (JSStringRef string = CYCopyJSString(context, value)) { \
b09da87b
JF
1782 size_t size(JSStringGetMaximumUTF8CStringSize(string)); \
1783 utf8 = reinterpret_cast<char *>(alloca(size)); \
1784 JSStringGetUTF8CString(string, utf8, size); \
1785 JSStringRelease(string); \
478d4ed0
JF
1786 } else \
1787 utf8 = NULL; \
b21525c7
JF
1788 utf8; \
1789})
1790
534fb6da 1791static void *CYCastPointer_(JSContextRef context, JSValueRef value) {
b21525c7
JF
1792 switch (JSValueGetType(context, value)) {
1793 case kJSTypeNull:
1794 return NULL;
953647c1 1795 /*case kJSTypeString:
b21525c7 1796 return dlsym(RTLD_DEFAULT, CYCastCString(context, value));
b21525c7 1797 case kJSTypeObject:
88c977fa 1798 if (JSValueIsObjectOfClass(context, value, Pointer_)) {
9e562cfc
JF
1799 Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate((JSObjectRef) value)));
1800 return internal->value_;
953647c1 1801 }*/
b21525c7 1802 default:
953647c1 1803 double number(CYCastDouble(context, value));
bd17e6f3 1804 if (std::isnan(number))
953647c1
JF
1805 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"cannot convert value to pointer" userInfo:nil];
1806 return reinterpret_cast<void *>(static_cast<uintptr_t>(static_cast<long long>(number)));
7ba62cfd
JF
1807 }
1808}
1809
b09da87b 1810template <typename Type_>
534fb6da 1811static _finline Type_ CYCastPointer(JSContextRef context, JSValueRef value) {
b09da87b
JF
1812 return reinterpret_cast<Type_>(CYCastPointer_(context, value));
1813}
1814
534fb6da 1815static SEL CYCastSEL(JSContextRef context, JSValueRef value) {
4afefdd9 1816 if (JSValueIsObjectOfClass(context, value, Selector_)) {
9e562cfc
JF
1817 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate((JSObjectRef) value)));
1818 return reinterpret_cast<SEL>(internal->value_);
4afefdd9
JF
1819 } else
1820 return CYCastPointer<SEL>(context, value);
1821}
1822
534fb6da 1823static void CYPoolFFI(apr_pool_t *pool, JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, JSValueRef value) {
ea2d184c
JF
1824 switch (type->primitive) {
1825 case sig::boolean_P:
1826 *reinterpret_cast<bool *>(data) = JSValueToBoolean(context, value);
1827 break;
1828
43cb3d68 1829#define CYPoolFFI_(primitive, native) \
f610e1a0
JF
1830 case sig::primitive ## _P: \
1831 *reinterpret_cast<native *>(data) = CYCastDouble(context, value); \
1832 break;
ea2d184c 1833
43cb3d68
JF
1834 CYPoolFFI_(uchar, unsigned char)
1835 CYPoolFFI_(char, char)
1836 CYPoolFFI_(ushort, unsigned short)
1837 CYPoolFFI_(short, short)
1838 CYPoolFFI_(ulong, unsigned long)
1839 CYPoolFFI_(long, long)
1840 CYPoolFFI_(uint, unsigned int)
1841 CYPoolFFI_(int, int)
1842 CYPoolFFI_(ulonglong, unsigned long long)
1843 CYPoolFFI_(longlong, long long)
1844 CYPoolFFI_(float, float)
1845 CYPoolFFI_(double, double)
ea2d184c
JF
1846
1847 case sig::object_P:
1848 case sig::typename_P:
b09da87b 1849 *reinterpret_cast<id *>(data) = CYCastNSObject(pool, context, value);
7ba62cfd
JF
1850 break;
1851
ea2d184c 1852 case sig::selector_P:
7ba62cfd
JF
1853 *reinterpret_cast<SEL *>(data) = CYCastSEL(context, value);
1854 break;
ea2d184c 1855
b21525c7 1856 case sig::pointer_P:
b09da87b 1857 *reinterpret_cast<void **>(data) = CYCastPointer<void *>(context, value);
b21525c7 1858 break;
ea2d184c 1859
77e87a6c 1860 case sig::string_P:
478d4ed0 1861 *reinterpret_cast<const char **>(data) = CYPoolCString(pool, context, value);
77e87a6c 1862 break;
7ba62cfd 1863
bd17e6f3
JF
1864 case sig::struct_P: {
1865 uint8_t *base(reinterpret_cast<uint8_t *>(data));
f33b048a 1866 JSObjectRef aggregate(JSValueIsObject(context, value) ? (JSObjectRef) value : NULL);
bd17e6f3 1867 for (size_t index(0); index != type->data.signature.count; ++index) {
f33b048a
JF
1868 sig::Element *element(&type->data.signature.elements[index]);
1869 ffi_type *field(ffi->elements[index]);
1870
1871 JSValueRef rhs;
1872 if (aggregate == NULL)
1873 rhs = value;
1874 else {
1875 rhs = CYGetProperty(context, aggregate, index);
1876 if (JSValueIsUndefined(context, rhs)) {
283e7e33
JF
1877 if (element->name != NULL)
1878 rhs = CYGetProperty(context, aggregate, CYJSString(element->name));
1879 else
1880 goto undefined;
1881 if (JSValueIsUndefined(context, rhs)) undefined:
f33b048a
JF
1882 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"unable to extract structure value" userInfo:nil];
1883 }
1884 }
1885
1886 CYPoolFFI(pool, context, element->type, field, base, rhs);
4e8c99fb 1887 // XXX: alignment?
f33b048a 1888 base += field->size;
bd17e6f3
JF
1889 }
1890 } break;
ea2d184c
JF
1891
1892 case sig::void_P:
1893 break;
1894
bd17e6f3 1895 default:
43cb3d68 1896 NSLog(@"CYPoolFFI(%c)\n", type->primitive);
ea2d184c
JF
1897 _assert(false);
1898 }
1899}
1900
534fb6da 1901static JSValueRef CYFromFFI(JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, bool initialize = false, JSObjectRef owner = NULL) {
ea2d184c
JF
1902 JSValueRef value;
1903
1904 switch (type->primitive) {
1905 case sig::boolean_P:
b09da87b 1906 value = CYCastJSValue(context, *reinterpret_cast<bool *>(data));
ea2d184c
JF
1907 break;
1908
1909#define CYFromFFI_(primitive, native) \
1910 case sig::primitive ## _P: \
b09da87b 1911 value = CYCastJSValue(context, *reinterpret_cast<native *>(data)); \
ea2d184c
JF
1912 break;
1913
1914 CYFromFFI_(uchar, unsigned char)
1915 CYFromFFI_(char, char)
1916 CYFromFFI_(ushort, unsigned short)
1917 CYFromFFI_(short, short)
1918 CYFromFFI_(ulong, unsigned long)
1919 CYFromFFI_(long, long)
1920 CYFromFFI_(uint, unsigned int)
1921 CYFromFFI_(int, int)
1922 CYFromFFI_(ulonglong, unsigned long long)
1923 CYFromFFI_(longlong, long long)
1924 CYFromFFI_(float, float)
1925 CYFromFFI_(double, double)
1926
2b52f27e
JF
1927 case sig::object_P: {
1928 if (id object = *reinterpret_cast<id *>(data)) {
1929 value = CYCastJSValue(context, object);
1930 if (initialize)
1931 [object release];
1932 } else goto null;
1933 } break;
dea834b0 1934
b09da87b 1935 case sig::typename_P:
4cf49641 1936 value = CYMakeInstance(context, *reinterpret_cast<Class *>(data), true);
b09da87b
JF
1937 break;
1938
dea834b0
JF
1939 case sig::selector_P:
1940 if (SEL sel = *reinterpret_cast<SEL *>(data))
1941 value = CYMakeSelector(context, sel);
1942 else goto null;
1943 break;
1944
1945 case sig::pointer_P:
1946 if (void *pointer = *reinterpret_cast<void **>(data))
9b5527f0 1947 value = CYMakePointer(context, pointer, type->data.data.type, ffi, owner);
dea834b0
JF
1948 else goto null;
1949 break;
1950
1951 case sig::string_P:
f610e1a0 1952 if (char *utf8 = *reinterpret_cast<char **>(data))
b09da87b 1953 value = CYCastJSValue(context, utf8);
f610e1a0 1954 else goto null;
dea834b0 1955 break;
ea2d184c
JF
1956
1957 case sig::struct_P:
bd17e6f3
JF
1958 value = CYMakeStruct(context, data, type, ffi, owner);
1959 break;
ea2d184c
JF
1960
1961 case sig::void_P:
b09da87b 1962 value = CYJSUndefined(context);
f610e1a0
JF
1963 break;
1964
1965 null:
b09da87b 1966 value = CYJSNull(context);
ea2d184c
JF
1967 break;
1968
bd17e6f3 1969 default:
ea2d184c
JF
1970 NSLog(@"CYFromFFI(%c)\n", type->primitive);
1971 _assert(false);
1972 }
1973
1974 return value;
1975}
1976
8a199b13
JF
1977static bool CYImplements(id object, Class _class, SEL selector, bool devoid) {
1978 if (Method method = class_getInstanceMethod(_class, selector)) {
1979 if (!devoid)
1980 return true;
1981 char type[16];
1982 method_getReturnType(method, type, sizeof(type));
1983 if (type[0] != 'v')
1984 return true;
1985 }
1986
7b184c00 1987 // XXX: possibly use a more "awesome" check?
8a199b13 1988 return false;
7b184c00
JF
1989}
1990
534fb6da 1991static const char *CYPoolTypeEncoding(apr_pool_t *pool, Class _class, SEL sel, Method method) {
dc68b74c
JF
1992 if (method != NULL)
1993 return method_getTypeEncoding(method);
1994 else if (NSString *type = [[Bridge_ objectAtIndex:1] objectForKey:CYCastNSString(pool, sel_getName(sel))])
1995 return CYPoolCString(pool, type);
1996 else
1997 return NULL;
1998}
1999
534fb6da 2000static void FunctionClosure_(ffi_cif *cif, void *result, void **arguments, void *arg) {
9e562cfc 2001 Closure_privateData *internal(reinterpret_cast<Closure_privateData *>(arg));
dc68b74c 2002
9e562cfc 2003 JSContextRef context(internal->context_);
dc68b74c 2004
9e562cfc 2005 size_t count(internal->cif_.nargs);
dc68b74c
JF
2006 JSValueRef values[count];
2007
2008 for (size_t index(0); index != count; ++index)
9e562cfc 2009 values[index] = CYFromFFI(context, internal->signature_.elements[1 + index].type, internal->cif_.arg_types[index], arguments[index]);
dc68b74c 2010
9e562cfc
JF
2011 JSValueRef value(CYCallAsFunction(context, internal->function_, NULL, count, values));
2012 CYPoolFFI(NULL, context, internal->signature_.elements[0].type, internal->cif_.rtype, result, value);
dc68b74c
JF
2013}
2014
534fb6da 2015static void MessageClosure_(ffi_cif *cif, void *result, void **arguments, void *arg) {
9e562cfc 2016 Closure_privateData *internal(reinterpret_cast<Closure_privateData *>(arg));
dc68b74c 2017
9e562cfc 2018 JSContextRef context(internal->context_);
dc68b74c 2019
9e562cfc 2020 size_t count(internal->cif_.nargs);
dc68b74c
JF
2021 JSValueRef values[count];
2022
2023 for (size_t index(0); index != count; ++index)
9e562cfc 2024 values[index] = CYFromFFI(context, internal->signature_.elements[1 + index].type, internal->cif_.arg_types[index], arguments[index]);
dc68b74c
JF
2025
2026 JSObjectRef _this(CYCastJSObject(context, values[0]));
2027
9e562cfc
JF
2028 JSValueRef value(CYCallAsFunction(context, internal->function_, _this, count - 2, values + 2));
2029 CYPoolFFI(NULL, context, internal->signature_.elements[0].type, internal->cif_.rtype, result, value);
dc68b74c
JF
2030}
2031
534fb6da 2032static Closure_privateData *CYMakeFunctor_(JSContextRef context, JSObjectRef function, const char *type, void (*callback)(ffi_cif *, void *, void **, void *)) {
dc68b74c
JF
2033 // XXX: in case of exceptions this will leak
2034 // XXX: in point of fact, this may /need/ to leak :(
4e39dc0b 2035 Closure_privateData *internal(new Closure_privateData(CYGetJSContext(), function, type));
dc68b74c
JF
2036
2037 ffi_closure *closure((ffi_closure *) _syscall(mmap(
2038 NULL, sizeof(ffi_closure),
2039 PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE,
2040 -1, 0
2041 )));
2042
2043 ffi_status status(ffi_prep_closure(closure, &internal->cif_, callback, internal));
2044 _assert(status == FFI_OK);
2045
2046 _syscall(mprotect(closure, sizeof(*closure), PROT_READ | PROT_EXEC));
2047
2048 internal->value_ = closure;
2049
dc68b74c
JF
2050 return internal;
2051}
2052
534fb6da 2053static JSObjectRef CYMakeFunctor(JSContextRef context, JSObjectRef function, const char *type) {
dc68b74c
JF
2054 Closure_privateData *internal(CYMakeFunctor_(context, function, type, &FunctionClosure_));
2055 return JSObjectMake(context, Functor_, internal);
2056}
2057
2058static JSObjectRef CYMakeFunctor(JSContextRef context, JSValueRef value, const char *type) {
2059 JSValueRef exception(NULL);
2060 bool function(JSValueIsInstanceOfConstructor(context, value, Function_, &exception));
2061 CYThrow(context, exception);
2062
2063 if (function) {
2064 JSObjectRef function(CYCastJSObject(context, value));
2065 return CYMakeFunctor(context, function, type);
2066 } else {
2067 void (*function)()(CYCastPointer<void (*)()>(context, value));
2068 return CYMakeFunctor(context, function, type);
2069 }
2070}
2071
2072static JSObjectRef CYMakeMessage(JSContextRef context, SEL sel, IMP imp, const char *type) {
2073 Message_privateData *internal(new Message_privateData(sel, type, imp));
2074 return JSObjectMake(context, Message_, internal);
2075}
2076
2077static IMP CYMakeMessage(JSContextRef context, JSValueRef value, const char *type) {
2078 JSObjectRef function(CYCastJSObject(context, value));
2079 Closure_privateData *internal(CYMakeFunctor_(context, function, type, &MessageClosure_));
2080 return reinterpret_cast<IMP>(internal->GetValue());
2081}
2082
365abb0a
JF
2083static bool Messages_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
2084 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
dc68b74c
JF
2085 Class _class(internal->GetValue());
2086
2087 CYPool pool;
2088 const char *name(CYPoolCString(pool, property));
2089
2090 if (SEL sel = sel_getUid(name))
2091 if (class_getInstanceMethod(_class, sel) != NULL)
2092 return true;
2093
2094 return false;
2095}
2096
365abb0a
JF
2097static JSValueRef Messages_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2098 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
dc68b74c
JF
2099 Class _class(internal->GetValue());
2100
2101 CYPool pool;
2102 const char *name(CYPoolCString(pool, property));
2103
2104 if (SEL sel = sel_getUid(name))
2105 if (Method method = class_getInstanceMethod(_class, sel))
2106 return CYMakeMessage(context, sel, method_getImplementation(method), method_getTypeEncoding(method));
2107
2108 return NULL;
2109}
2110
365abb0a
JF
2111static bool Messages_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) {
2112 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
dc68b74c
JF
2113 Class _class(internal->GetValue());
2114
2115 CYPool pool;
2116 const char *name(CYPoolCString(pool, property));
2117
2118 SEL sel(sel_registerName(name));
2119
2120 Method method(class_getInstanceMethod(_class, sel));
2121
2122 const char *type;
2123 IMP imp;
2124
2125 if (JSValueIsObjectOfClass(context, value, Message_)) {
2126 Message_privateData *message(reinterpret_cast<Message_privateData *>(JSObjectGetPrivate((JSObjectRef) value)));
2127 type = sig::Unparse(pool, &message->signature_);
2128 imp = reinterpret_cast<IMP>(message->GetValue());
2129 } else {
2130 type = CYPoolTypeEncoding(pool, _class, sel, method);
2131 imp = CYMakeMessage(context, value, type);
2132 }
2133
2134 if (method != NULL)
2135 method_setImplementation(method, imp);
2136 else
2137 class_replaceMethod(_class, sel, imp, type);
2138
2139 return true;
2140}
2141
2142#if !__OBJC2__
365abb0a
JF
2143static bool Messages_deleteProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2144 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
dc68b74c
JF
2145 Class _class(internal->GetValue());
2146
2147 CYPool pool;
2148 const char *name(CYPoolCString(pool, property));
2149
2150 if (SEL sel = sel_getUid(name))
2151 if (Method method = class_getInstanceMethod(_class, sel)) {
2152 objc_method_list list = {NULL, 1, {method}};
2153 class_removeMethods(_class, &list);
2154 return true;
2155 }
2156
2157 return false;
2158}
2159#endif
2160
365abb0a
JF
2161static void Messages_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2162 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
dc68b74c
JF
2163 Class _class(internal->GetValue());
2164
2165 unsigned int size;
2166 Method *data(class_copyMethodList(_class, &size));
2167 for (size_t i(0); i != size; ++i)
2168 JSPropertyNameAccumulatorAddName(names, CYJSString(sel_getName(method_getName(data[i]))));
2169 free(data);
2170}
2171
7b184c00
JF
2172static bool Instance_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
2173 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2174 id self(internal->GetValue());
2175
2176 if (JSStringIsEqualToUTF8CString(property, "$cyi"))
2177 return true;
2178
c239b9f8 2179 CYPool pool;
7b184c00
JF
2180 NSString *name(CYCastNSString(pool, property));
2181
2182 if (CYInternal *internal = CYInternal::Get(self))
2183 if (internal->HasProperty(context, property))
2184 return true;
2185
365abb0a
JF
2186 Class _class(object_getClass(self));
2187
7b184c00 2188 CYPoolTry {
365abb0a
JF
2189 // XXX: this is an evil hack to deal with NSProxy; fix elsewhere
2190 if (CYImplements(self, _class, @selector(cy$hasProperty:), false))
2191 if ([self cy$hasProperty:name])
2192 return true;
7b184c00
JF
2193 } CYPoolCatch(false)
2194
2195 const char *string(CYPoolCString(pool, name));
7b184c00
JF
2196
2197 if (class_getProperty(_class, string) != NULL)
2198 return true;
2199
2200 if (SEL sel = sel_getUid(string))
8a199b13 2201 if (CYImplements(self, _class, sel, true))
7b184c00
JF
2202 return true;
2203
2204 return false;
2205}
2206
2207static JSValueRef Instance_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2208 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2209 id self(internal->GetValue());
2210
2211 if (JSStringIsEqualToUTF8CString(property, "$cyi"))
2212 return Internal::Make(context, self, object);
c239b9f8
JF
2213
2214 CYTry {
7b184c00 2215 CYPool pool;
c239b9f8
JF
2216 NSString *name(CYCastNSString(pool, property));
2217
2218 if (CYInternal *internal = CYInternal::Get(self))
2219 if (JSValueRef value = internal->GetProperty(context, property))
2220 return value;
2221
2222 CYPoolTry {
2223 if (NSObject *data = [self cy$getProperty:name])
2224 return CYCastJSValue(context, data);
2225 } CYPoolCatch(NULL)
2226
2227 const char *string(CYPoolCString(pool, name));
8953777c 2228 Class _class(object_getClass(self));
c239b9f8 2229
8953777c 2230 if (objc_property_t property = class_getProperty(_class, string)) {
c239b9f8
JF
2231 PropertyAttributes attributes(property);
2232 SEL sel(sel_registerName(attributes.Getter()));
2233 return CYSendMessage(pool, context, self, sel, 0, NULL, false, exception);
2234 }
2235
8953777c 2236 if (SEL sel = sel_getUid(string))
8a199b13 2237 if (CYImplements(self, _class, sel, true))
8953777c
JF
2238 return CYSendMessage(pool, context, self, sel, 0, NULL, false, exception);
2239
c239b9f8
JF
2240 return NULL;
2241 } CYCatch
2242}
2243
2244static bool Instance_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) {
dc68b74c
JF
2245 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2246 id self(internal->GetValue());
2247
c239b9f8
JF
2248 CYPool pool;
2249
2250 CYTry {
c239b9f8
JF
2251 NSString *name(CYCastNSString(pool, property));
2252 NSString *data(CYCastNSObject(pool, context, value));
2253
2254 CYPoolTry {
2255 if ([self cy$setProperty:name to:data])
2256 return true;
2257 } CYPoolCatch(NULL)
2258
2259 const char *string(CYPoolCString(pool, name));
8953777c 2260 Class _class(object_getClass(self));
c239b9f8 2261
8953777c 2262 if (objc_property_t property = class_getProperty(_class, string)) {
c239b9f8
JF
2263 PropertyAttributes attributes(property);
2264 if (const char *setter = attributes.Setter()) {
2265 SEL sel(sel_registerName(setter));
2266 JSValueRef arguments[1] = {value};
2267 CYSendMessage(pool, context, self, sel, 1, arguments, false, exception);
2268 return true;
2269 }
2270 }
2271
8953777c
JF
2272 size_t length(strlen(string));
2273
2274 char set[length + 5];
2275
2276 set[0] = 's';
2277 set[1] = 'e';
2278 set[2] = 't';
2279
2280 if (string[0] != '\0') {
2281 set[3] = toupper(string[0]);
2282 memcpy(set + 4, string + 1, length - 1);
2283 }
2284
2285 set[length + 3] = ':';
2286 set[length + 4] = '\0';
2287
2288 if (SEL sel = sel_getUid(set))
8a199b13 2289 if (CYImplements(self, _class, sel, false)) {
8953777c
JF
2290 JSValueRef arguments[1] = {value};
2291 CYSendMessage(pool, context, self, sel, 1, arguments, false, exception);
2292 }
2293
c239b9f8
JF
2294 if (CYInternal *internal = CYInternal::Set(self)) {
2295 internal->SetProperty(context, property, value);
2296 return true;
2297 }
2298
2299 return false;
2300 } CYCatch
2301}
2302
2303static bool Instance_deleteProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
dc68b74c
JF
2304 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2305 id self(internal->GetValue());
2306
c239b9f8
JF
2307 CYTry {
2308 CYPoolTry {
c239b9f8
JF
2309 NSString *name(CYCastNSString(NULL, property));
2310 return [self cy$deleteProperty:name];
2311 } CYPoolCatch(NULL)
2312 } CYCatch
2313}
2314
2315static void Instance_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
dc68b74c
JF
2316 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2317 id self(internal->GetValue());
2318
c239b9f8 2319 CYPool pool;
c239b9f8
JF
2320 Class _class(object_getClass(self));
2321
2322 {
2323 unsigned int size;
2324 objc_property_t *data(class_copyPropertyList(_class, &size));
2325 for (size_t i(0); i != size; ++i)
2326 JSPropertyNameAccumulatorAddName(names, CYJSString(property_getName(data[i])));
2327 free(data);
2328 }
9b5527f0
JF
2329}
2330
2331static JSObjectRef Instance_callAsConstructor(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
2332 CYTry {
9e562cfc
JF
2333 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2334 JSObjectRef value(Instance::Make(context, [internal->GetValue() alloc], Instance::Uninitialized));
9b5527f0
JF
2335 return value;
2336 } CYCatch
2337}
2338
534fb6da 2339static bool CYIsClass(id self) {
365abb0a
JF
2340 // XXX: this is a lame object_isClass
2341 return class_getInstanceMethod(object_getClass(self), @selector(alloc)) != NULL;
2342}
2343
2344static bool Instance_hasInstance(JSContextRef context, JSObjectRef constructor, JSValueRef instance, JSValueRef *exception) {
2345 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate((JSObjectRef) constructor)));
2346 Class _class(internal->GetValue());
2347 if (!CYIsClass(_class))
2348 return false;
2349
2350 if (JSValueIsObjectOfClass(context, instance, Instance_)) {
2351 Instance *linternal(reinterpret_cast<Instance *>(JSObjectGetPrivate((JSObjectRef) instance)));
2352 // XXX: this isn't always safe
2353 CYTry {
2354 return [linternal->GetValue() isKindOfClass:_class];
2355 } CYCatch
2356 }
2357
2358 return false;
2359}
2360
7b184c00
JF
2361static bool Internal_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
2362 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2363 CYPool pool;
2364
2365 id self(internal->GetValue());
2366 const char *name(CYPoolCString(pool, property));
2367
2368 if (object_getInstanceVariable(self, name, NULL) != NULL)
2369 return true;
2370
2371 return false;
2372}
2373
9b5527f0
JF
2374static JSValueRef Internal_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2375 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2376 CYPool pool;
2377
2378 CYTry {
2379 id self(internal->GetValue());
2380 const char *name(CYPoolCString(pool, property));
2381
2382 if (Ivar ivar = object_getInstanceVariable(self, name, NULL)) {
2383 Type_privateData type(pool, ivar_getTypeEncoding(ivar));
2384 return CYFromFFI(context, type.type_, type.GetFFI(), reinterpret_cast<uint8_t *>(self) + ivar_getOffset(ivar));
2385 }
2386
2387 return NULL;
2388 } CYCatch
2389}
2390
2391static bool Internal_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) {
2392 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2393 CYPool pool;
2394
2395 CYTry {
2396 id self(internal->GetValue());
2397 const char *name(CYPoolCString(pool, property));
2398
2399 if (Ivar ivar = object_getInstanceVariable(self, name, NULL)) {
2400 Type_privateData type(pool, ivar_getTypeEncoding(ivar));
2401 CYPoolFFI(pool, context, type.type_, type.GetFFI(), reinterpret_cast<uint8_t *>(self) + ivar_getOffset(ivar), value);
2402 return true;
2403 }
2404
2405 return false;
2406 } CYCatch
2407}
2408
9e562cfc
JF
2409static void Internal_getPropertyNames_(Class _class, JSPropertyNameAccumulatorRef names) {
2410 if (Class super = class_getSuperclass(_class))
2411 Internal_getPropertyNames_(super, names);
2412
2413 unsigned int size;
2414 Ivar *data(class_copyIvarList(_class, &size));
2415 for (size_t i(0); i != size; ++i)
2416 JSPropertyNameAccumulatorAddName(names, CYJSString(ivar_getName(data[i])));
2417 free(data);
2418}
2419
9b5527f0
JF
2420static void Internal_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2421 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2422 CYPool pool;
2423
2424 id self(internal->GetValue());
2425 Class _class(object_getClass(self));
c239b9f8 2426
9e562cfc 2427 Internal_getPropertyNames_(_class, names);
c239b9f8
JF
2428}
2429
9b5527f0
JF
2430static JSValueRef Internal_callAsFunction_$cya(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
2431 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
4e39dc0b 2432 return internal->GetOwner();
c239b9f8
JF
2433}
2434
534fb6da 2435static bool Index_(apr_pool_t *pool, Struct_privateData *internal, JSStringRef property, ssize_t &index, uint8_t *&base) {
bd17e6f3 2436 Type_privateData *typical(internal->type_);
930aa21b
JF
2437 sig::Type *type(typical->type_);
2438 if (type == NULL)
2439 return false;
bd17e6f3 2440
18401062
JF
2441 const char *name(CYPoolCString(pool, property));
2442 size_t length(strlen(name));
9e20b0b7
JF
2443 double number(CYCastDouble(name, length));
2444
930aa21b 2445 size_t count(type->data.signature.count);
f33b048a 2446
e0dc20ec
JF
2447 if (std::isnan(number)) {
2448 if (property == NULL)
2449 return false;
9e20b0b7 2450
930aa21b 2451 sig::Element *elements(type->data.signature.elements);
f33b048a 2452
283e7e33
JF
2453 for (size_t local(0); local != count; ++local) {
2454 sig::Element *element(&elements[local]);
2455 if (element->name != NULL && strcmp(name, element->name) == 0) {
f33b048a
JF
2456 index = local;
2457 goto base;
2458 }
283e7e33 2459 }
f33b048a 2460
9e20b0b7 2461 return false;
e0dc20ec
JF
2462 } else {
2463 index = static_cast<ssize_t>(number);
f33b048a 2464 if (index != number || index < 0 || static_cast<size_t>(index) >= count)
e0dc20ec
JF
2465 return false;
2466 }
bd17e6f3 2467
f33b048a 2468 base:
ff783f8c
JF
2469 ffi_type **elements(typical->GetFFI()->elements);
2470
bd17e6f3
JF
2471 base = reinterpret_cast<uint8_t *>(internal->value_);
2472 for (ssize_t local(0); local != index; ++local)
ff783f8c 2473 base += elements[local]->size;
9e20b0b7
JF
2474
2475 return true;
bd17e6f3
JF
2476}
2477
9b5527f0 2478static JSValueRef Pointer_getIndex(JSContextRef context, JSObjectRef object, size_t index, JSValueRef *exception) {
ff783f8c
JF
2479 Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object)));
2480 Type_privateData *typical(internal->type_);
2481
ff783f8c
JF
2482 ffi_type *ffi(typical->GetFFI());
2483
2484 uint8_t *base(reinterpret_cast<uint8_t *>(internal->value_));
2485 base += ffi->size * index;
2486
4e39dc0b 2487 JSObjectRef owner(internal->GetOwner() ?: object);
ff783f8c
JF
2488
2489 CYTry {
930aa21b 2490 return CYFromFFI(context, typical->type_, ffi, base, false, owner);
ff783f8c
JF
2491 } CYCatch
2492}
2493
9b5527f0 2494static JSValueRef Pointer_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
f37b3d2b
JF
2495 CYPool pool;
2496 Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object)));
2497 Type_privateData *typical(internal->type_);
2498
930aa21b
JF
2499 if (typical->type_ == NULL)
2500 return NULL;
2501
faf69207
JF
2502 ssize_t offset;
2503 if (!CYGetOffset(pool, property, offset))
f37b3d2b
JF
2504 return NULL;
2505
faf69207 2506 return Pointer_getIndex(context, object, offset, exception);
9b5527f0
JF
2507}
2508
2509static JSValueRef Pointer_getProperty_$cyi(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2510 return Pointer_getIndex(context, object, 0, exception);
2511}
2512
2513static bool Pointer_setIndex(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value, JSValueRef *exception) {
2514 Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object)));
2515 Type_privateData *typical(internal->type_);
2516
f37b3d2b
JF
2517 ffi_type *ffi(typical->GetFFI());
2518
2519 uint8_t *base(reinterpret_cast<uint8_t *>(internal->value_));
2520 base += ffi->size * index;
2521
2522 CYTry {
930aa21b 2523 CYPoolFFI(NULL, context, typical->type_, ffi, base, value);
f37b3d2b
JF
2524 return true;
2525 } CYCatch
2526}
2527
9b5527f0
JF
2528static bool Pointer_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) {
2529 CYPool pool;
2530 Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object)));
2531 Type_privateData *typical(internal->type_);
2532
2533 if (typical->type_ == NULL)
2534 return NULL;
2535
faf69207
JF
2536 ssize_t offset;
2537 if (!CYGetOffset(pool, property, offset))
9b5527f0
JF
2538 return NULL;
2539
faf69207 2540 return Pointer_setIndex(context, object, offset, value, exception);
9b5527f0
JF
2541}
2542
2543static bool Pointer_setProperty_$cyi(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) {
2544 return Pointer_setIndex(context, object, 0, value, exception);
2545}
2546
2547static JSValueRef Struct_callAsFunction_$cya(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
2548 Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(_this)));
2549 Type_privateData *typical(internal->type_);
2550 return CYMakePointer(context, internal->value_, typical->type_, typical->ffi_, _this);
2551}
2552
bd17e6f3 2553static JSValueRef Struct_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
f33b048a
JF
2554 CYPool pool;
2555 Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(object)));
2556 Type_privateData *typical(internal->type_);
bd17e6f3 2557
f33b048a
JF
2558 ssize_t index;
2559 uint8_t *base;
bd17e6f3 2560
f33b048a
JF
2561 if (!Index_(pool, internal, property, index, base))
2562 return NULL;
bd17e6f3 2563
4e39dc0b 2564 JSObjectRef owner(internal->GetOwner() ?: object);
ff783f8c 2565
f33b048a 2566 CYTry {
930aa21b 2567 return CYFromFFI(context, typical->type_->data.signature.elements[index].type, typical->GetFFI()->elements[index], base, false, owner);
bd17e6f3
JF
2568 } CYCatch
2569}
2570
2571static bool Struct_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) {
f33b048a
JF
2572 CYPool pool;
2573 Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(object)));
2574 Type_privateData *typical(internal->type_);
bd17e6f3 2575
f33b048a
JF
2576 ssize_t index;
2577 uint8_t *base;
bd17e6f3 2578
f33b048a
JF
2579 if (!Index_(pool, internal, property, index, base))
2580 return false;
bd17e6f3 2581
f33b048a 2582 CYTry {
930aa21b 2583 CYPoolFFI(NULL, context, typical->type_->data.signature.elements[index].type, typical->GetFFI()->elements[index], base, value);
bd17e6f3
JF
2584 return true;
2585 } CYCatch
2586}
2587
f33b048a
JF
2588static void Struct_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2589 Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(object)));
2590 Type_privateData *typical(internal->type_);
930aa21b
JF
2591 sig::Type *type(typical->type_);
2592
2593 if (type == NULL)
2594 return;
f33b048a 2595
930aa21b
JF
2596 size_t count(type->data.signature.count);
2597 sig::Element *elements(type->data.signature.elements);
f33b048a 2598
283e7e33
JF
2599 char number[32];
2600
2601 for (size_t index(0); index != count; ++index) {
2602 const char *name;
2603 name = elements[index].name;
2604
2605 if (name == NULL) {
2606 sprintf(number, "%lu", index);
2607 name = number;
2608 }
2609
2610 JSPropertyNameAccumulatorAddName(names, CYJSString(name));
2611 }
f33b048a
JF
2612}
2613
2b52f27e 2614JSValueRef CYCallFunction(apr_pool_t *pool, JSContextRef context, size_t setups, void *setup[], size_t count, const JSValueRef arguments[], bool initialize, JSValueRef *exception, sig::Signature *signature, ffi_cif *cif, void (*function)()) {
4cf49641 2615 CYTry {
4afefdd9 2616 if (setups + count != signature->count - 1)
f5e9be24 2617 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to ffi function" userInfo:nil];
85a33bf5 2618
4afefdd9
JF
2619 size_t size(setups + count);
2620 void *values[size];
2621 memcpy(values, setup, sizeof(void *) * setups);
ea2d184c 2622
4afefdd9 2623 for (size_t index(setups); index != size; ++index) {
7ba62cfd 2624 sig::Element *element(&signature->elements[index + 1]);
bd17e6f3 2625 ffi_type *ffi(cif->arg_types[index]);
77e87a6c 2626 // XXX: alignment?
bd17e6f3 2627 values[index] = new(pool) uint8_t[ffi->size];
4afefdd9 2628 CYPoolFFI(pool, context, element->type, ffi, values[index], arguments[index - setups]);
7ba62cfd 2629 }
ea2d184c 2630
7ba62cfd
JF
2631 uint8_t value[cif->rtype->size];
2632 ffi_call(cif, function, value, values);
2633
2b52f27e 2634 return CYFromFFI(context, signature->elements[0].type, cif->rtype, value, initialize);
0c862573 2635 } CYCatch
7ba62cfd 2636}
ea2d184c 2637
c239b9f8
JF
2638static JSValueRef ObjectiveC_Classes_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2639 CYTry {
2640 CYPool pool;
2641 NSString *name(CYCastNSString(pool, property));
2642 if (Class _class = NSClassFromString(name))
2643 return CYMakeInstance(context, _class, true);
2644 return NULL;
2645 } CYCatch
2646}
2647
2648static void ObjectiveC_Classes_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2649 size_t size(objc_getClassList(NULL, 0));
2650 Class *data(reinterpret_cast<Class *>(malloc(sizeof(Class) * size)));
2651
2652 get:
2653 size_t writ(objc_getClassList(data, size));
2654 if (size < writ) {
2655 size = writ;
2656 if (Class *copy = reinterpret_cast<Class *>(realloc(data, sizeof(Class) * writ))) {
2657 data = copy;
2658 goto get;
2659 } else goto done;
2660 }
2661
2662 for (size_t i(0); i != writ; ++i)
2663 JSPropertyNameAccumulatorAddName(names, CYJSString(class_getName(data[i])));
2664
2665 done:
2666 free(data);
2667}
2668
2669static JSValueRef ObjectiveC_Image_Classes_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2670 const char *internal(reinterpret_cast<const char *>(JSObjectGetPrivate(object)));
2671
2672 CYTry {
2673 CYPool pool;
2674 const char *name(CYPoolCString(pool, property));
2675 unsigned int size;
2676 const char **data(objc_copyClassNamesForImage(internal, &size));
2677 JSValueRef value;
2678 for (size_t i(0); i != size; ++i)
2679 if (strcmp(name, data[i]) == 0) {
2680 if (Class _class = objc_getClass(name)) {
2681 value = CYMakeInstance(context, _class, true);
2682 goto free;
2683 } else
2684 break;
2685 }
2686 value = NULL;
2687 free:
2688 free(data);
2689 return value;
2690 } CYCatch
2691}
2692
2693static void ObjectiveC_Image_Classes_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2694 const char *internal(reinterpret_cast<const char *>(JSObjectGetPrivate(object)));
2695 unsigned int size;
2696 const char **data(objc_copyClassNamesForImage(internal, &size));
2697 for (size_t i(0); i != size; ++i)
2698 JSPropertyNameAccumulatorAddName(names, CYJSString(data[i]));
2699 free(data);
2700}
2701
2702static JSValueRef ObjectiveC_Images_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2703 CYTry {
2704 CYPool pool;
2705 const char *name(CYPoolCString(pool, property));
2706 unsigned int size;
2707 const char **data(objc_copyImageNames(&size));
2708 for (size_t i(0); i != size; ++i)
2709 if (strcmp(name, data[i]) == 0) {
2710 name = data[i];
2711 goto free;
2712 }
2713 name = NULL;
2714 free:
2715 free(data);
2716 if (name == NULL)
2717 return NULL;
2718 JSObjectRef value(JSObjectMake(context, NULL, NULL));
2719 CYSetProperty(context, value, CYJSString("classes"), JSObjectMake(context, ObjectiveC_Image_Classes_, const_cast<char *>(name)));
2720 return value;
2721 } CYCatch
2722}
2723
2724static void ObjectiveC_Images_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2725 unsigned int size;
2726 const char **data(objc_copyImageNames(&size));
2727 for (size_t i(0); i != size; ++i)
2728 JSPropertyNameAccumulatorAddName(names, CYJSString(data[i]));
2729 free(data);
2730}
2731
2732static JSValueRef ObjectiveC_Protocols_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2733 CYTry {
2734 CYPool pool;
2735 NSString *name(CYCastNSString(pool, property));
2736 if (Protocol *protocol = NSProtocolFromString(name))
2737 return CYMakeInstance(context, protocol, true);
2738 return NULL;
2739 } CYCatch
2740}
2741
2742static void ObjectiveC_Protocols_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2743 unsigned int size;
2744 Protocol **data(objc_copyProtocolList(&size));
2745 for (size_t i(0); i != size; ++i)
2746 JSPropertyNameAccumulatorAddName(names, CYJSString(protocol_getName(data[i])));
2747 free(data);
2748}
2749
534fb6da
JF
2750static JSObjectRef CYMakeType(JSContextRef context, const char *type) {
2751 Type_privateData *internal(new Type_privateData(NULL, type));
2752 return JSObjectMake(context, Type_, internal);
2753}
2754
2755static JSObjectRef CYMakeType(JSContextRef context, sig::Type *type) {
2756 Type_privateData *internal(new Type_privateData(type));
2757 return JSObjectMake(context, Type_, internal);
2758}
2759
953647c1 2760static JSValueRef Runtime_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
7b184c00 2761 if (JSStringIsEqualToUTF8CString(property, "nil"))
dc68b74c 2762 return Instance::Make(context, nil);
7b184c00 2763
4cf49641 2764 CYTry {
b09da87b
JF
2765 CYPool pool;
2766 NSString *name(CYCastNSString(pool, property));
f610e1a0 2767 if (Class _class = NSClassFromString(name))
4cf49641 2768 return CYMakeInstance(context, _class, true);
953647c1 2769 if (NSMutableArray *entry = [[Bridge_ objectAtIndex:0] objectForKey:name])
707bcb93
JF
2770 switch ([[entry objectAtIndex:0] intValue]) {
2771 case 0:
057f943f 2772 return JSEvaluateScript(CYGetJSContext(), CYJSString([entry objectAtIndex:1]), NULL, NULL, 0, NULL);
707bcb93 2773 case 1:
478d4ed0 2774 return CYMakeFunctor(context, reinterpret_cast<void (*)()>([name cy$symbol]), CYPoolCString(pool, [entry objectAtIndex:1]));
707bcb93 2775 case 2:
bd17e6f3 2776 // XXX: this is horrendously inefficient
707bcb93 2777 sig::Signature signature;
f33b048a 2778 sig::Parse(pool, &signature, CYPoolCString(pool, [entry objectAtIndex:1]), &Structor_);
bd17e6f3
JF
2779 ffi_cif cif;
2780 sig::sig_ffi_cif(pool, &sig::ObjectiveC, &signature, &cif);
c239b9f8 2781 return CYFromFFI(context, signature.elements[0].type, cif.rtype, [name cy$symbol]);
707bcb93 2782 }
534fb6da
JF
2783 if (NSMutableArray *entry = [[Bridge_ objectAtIndex:2] objectForKey:name])
2784 switch ([[entry objectAtIndex:0] intValue]) {
2785 // XXX: implement case 0
2786 case 1:
2787 return CYMakeType(context, CYPoolCString(pool, [entry objectAtIndex:1]));
2788 }
707bcb93
JF
2789 return NULL;
2790 } CYCatch
2791}
2792
534fb6da 2793static bool stret(ffi_type *ffi_type) {
04450da0
JF
2794 return ffi_type->type == FFI_TYPE_STRUCT && (
2795 ffi_type->size > OBJC_MAX_STRUCT_BY_VALUE ||
2796 struct_forward_array[ffi_type->size] != 0
2797 );
2798}
2799
b09da87b
JF
2800extern "C" {
2801 int *_NSGetArgc(void);
2802 char ***_NSGetArgv(void);
2803 int UIApplicationMain(int argc, char *argv[], NSString *principalClassName, NSString *delegateClassName);
2804}
2805
2806static JSValueRef System_print(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
4cf49641 2807 CYTry {
b09da87b
JF
2808 NSLog(@"%s", CYCastCString(context, arguments[0]));
2809 return CYJSUndefined(context);
2810 } CYCatch
2811}
2812
2b52f27e 2813JSValueRef CYSendMessage(apr_pool_t *pool, JSContextRef context, id self, SEL _cmd, size_t count, const JSValueRef arguments[], bool initialize, JSValueRef *exception) {
7ba62cfd 2814 const char *type;
ea2d184c 2815
4afefdd9
JF
2816 Class _class(object_getClass(self));
2817 if (Method method = class_getInstanceMethod(_class, _cmd))
2818 type = method_getTypeEncoding(method);
2819 else {
bce8339b
JF
2820 CYTry {
2821 CYPoolTry {
2822 NSMethodSignature *method([self methodSignatureForSelector:_cmd]);
2823 if (method == nil)
2824 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:[NSString stringWithFormat:@"unrecognized selector %s sent to object %p", sel_getName(_cmd), self] userInfo:nil];
2825 type = CYPoolCString(pool, [method _typeString]);
2826 } CYPoolCatch(NULL)
2827 } CYCatch
4afefdd9
JF
2828 }
2829
2830 void *setup[2];
2831 setup[0] = &self;
2832 setup[1] = &_cmd;
2833
2834 sig::Signature signature;
f33b048a 2835 sig::Parse(pool, &signature, type, &Structor_);
4afefdd9
JF
2836
2837 ffi_cif cif;
2838 sig::sig_ffi_cif(pool, &sig::ObjectiveC, &signature, &cif);
2839
2840 void (*function)() = stret(cif.rtype) ? reinterpret_cast<void (*)()>(&objc_msgSend_stret) : reinterpret_cast<void (*)()>(&objc_msgSend);
2b52f27e 2841 return CYCallFunction(pool, context, 2, setup, count, arguments, initialize, exception, &signature, &cif, function);
4afefdd9
JF
2842}
2843
367eebb1
JF
2844static size_t Nonce_(0);
2845
2846static JSValueRef $cyq(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
2847 char name[16];
2848 sprintf(name, "%s%zu", CYCastCString(context, arguments[0]), Nonce_++);
2849 return CYCastJSValue(context, name);
2850}
2851
4afefdd9 2852static JSValueRef $objc_msgSend(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
478d4ed0
JF
2853 CYPool pool;
2854
2b52f27e
JF
2855 bool uninitialized;
2856
4afefdd9
JF
2857 id self;
2858 SEL _cmd;
2859
4cf49641 2860 CYTry {
85a33bf5 2861 if (count < 2)
f5e9be24 2862 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"too few arguments to objc_msgSend" userInfo:nil];
85a33bf5 2863
2b52f27e 2864 if (JSValueIsObjectOfClass(context, arguments[0], Instance_)) {
9e562cfc
JF
2865 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate((JSObjectRef) arguments[0])));
2866 self = internal->GetValue();
2867 uninitialized = internal->IsUninitialized();
2b52f27e 2868 if (uninitialized)
9e562cfc 2869 internal->value_ = nil;
2b52f27e
JF
2870 } else {
2871 self = CYCastNSObject(pool, context, arguments[0]);
2872 uninitialized = false;
2873 }
2874
7ba62cfd 2875 if (self == nil)
b09da87b 2876 return CYJSNull(context);
7ba62cfd 2877
4afefdd9 2878 _cmd = CYCastSEL(context, arguments[1]);
0c862573 2879 } CYCatch
ea2d184c 2880
2b52f27e 2881 return CYSendMessage(pool, context, self, _cmd, count - 2, arguments + 2, uninitialized, exception);
7ba62cfd
JF
2882}
2883
365abb0a
JF
2884/* Hook: objc_registerClassPair {{{ */
2885// XXX: replace this with associated objects
2886
272c3da3 2887MSHook(void, CYDealloc, id self, SEL sel) {
61933e16
JF
2888 CYInternal *internal;
2889 object_getInstanceVariable(self, "cy$internal_", reinterpret_cast<void **>(&internal));
2890 if (internal != NULL)
2891 delete internal;
272c3da3 2892 _CYDealloc(self, sel);
61933e16 2893}
f7c38a29 2894
61933e16
JF
2895MSHook(void, objc_registerClassPair, Class _class) {
2896 Class super(class_getSuperclass(_class));
2897 if (super == NULL || class_getInstanceVariable(super, "cy$internal_") == NULL) {
2898 class_addIvar(_class, "cy$internal_", sizeof(CYInternal *), log2(sizeof(CYInternal *)), "^{CYInternal}");
272c3da3 2899 MSHookMessage(_class, @selector(dealloc), MSHake(CYDealloc));
f7c38a29
JF
2900 }
2901
61933e16 2902 _objc_registerClassPair(_class);
f7c38a29
JF
2903}
2904
61933e16 2905static JSValueRef objc_registerClassPair_(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
f7c38a29 2906 CYTry {
3a1b79a7
JF
2907 if (count != 1)
2908 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to objc_registerClassPair" userInfo:nil];
f7c38a29 2909 CYPool pool;
3a1b79a7 2910 Class _class(CYCastNSObject(pool, context, arguments[0]));
61933e16 2911 $objc_registerClassPair(_class);
f7c38a29
JF
2912 return CYJSUndefined(context);
2913 } CYCatch
2914}
365abb0a 2915/* }}} */
f7c38a29 2916
dea834b0
JF
2917static JSValueRef Selector_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
2918 JSValueRef setup[count + 2];
2919 setup[0] = _this;
2920 setup[1] = object;
4afefdd9 2921 memcpy(setup + 2, arguments, sizeof(JSValueRef) * count);
dea834b0
JF
2922 return $objc_msgSend(context, NULL, NULL, count + 2, setup, exception);
2923}
2924
dc68b74c
JF
2925static JSValueRef Message_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
2926 CYPool pool;
2927 Message_privateData *internal(reinterpret_cast<Message_privateData *>(JSObjectGetPrivate(object)));
2928
2929 // XXX: handle Instance::Uninitialized?
2930 id self(CYCastNSObject(pool, context, _this));
2931
2932 void *setup[2];
2933 setup[0] = &self;
2934 setup[1] = &internal->sel_;
2935
2936 return CYCallFunction(pool, context, 2, setup, count, arguments, false, exception, &internal->signature_, &internal->cif_, internal->GetValue());
2937}
2938
dea834b0 2939static JSValueRef Functor_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
4afefdd9 2940 CYPool pool;
dc68b74c
JF
2941 Functor_privateData *internal(reinterpret_cast<Functor_privateData *>(JSObjectGetPrivate(object)));
2942 return CYCallFunction(pool, context, 0, NULL, count, arguments, false, exception, &internal->signature_, &internal->cif_, internal->GetValue());
ea2d184c
JF
2943}
2944
534fb6da 2945static JSObjectRef Selector_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
4cf49641 2946 CYTry {
dea834b0
JF
2947 if (count != 1)
2948 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to Selector constructor" userInfo:nil];
2949 const char *name(CYCastCString(context, arguments[0]));
2950 return CYMakeSelector(context, sel_registerName(name));
2951 } CYCatch
2952}
2953
534fb6da 2954static JSObjectRef Pointer_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
f7c38a29
JF
2955 CYTry {
2956 if (count != 2)
2957 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to Functor constructor" userInfo:nil];
2958
2959 void *value(CYCastPointer<void *>(context, arguments[0]));
2960 const char *type(CYCastCString(context, arguments[1]));
2961
2962 CYPool pool;
2963
2964 sig::Signature signature;
2965 sig::Parse(pool, &signature, type, &Structor_);
2966
9b5527f0 2967 return CYMakePointer(context, value, signature.elements[0].type, NULL, NULL);
f7c38a29
JF
2968 } CYCatch
2969}
2970
534fb6da 2971static JSObjectRef Type_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
bce8339b
JF
2972 CYTry {
2973 if (count != 1)
2974 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to Type constructor" userInfo:nil];
2975 const char *type(CYCastCString(context, arguments[0]));
534fb6da
JF
2976 return CYMakeType(context, type);
2977 } CYCatch
2978}
2979
2980static JSValueRef Type_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2981 Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object)));
2982
2983 CYTry {
2984 sig::Type type;
2985
2986 if (JSStringIsEqualToUTF8CString(property, "$cyi")) {
2987 type.primitive = sig::pointer_P;
2988 type.data.data.size = 0;
2989 } else {
2990 size_t index(CYGetIndex(NULL, property));
2991 if (index == _not(size_t))
2992 return NULL;
2993 type.primitive = sig::array_P;
2994 type.data.data.size = index;
2995 }
2996
2997 type.name = NULL;
2998 type.flags = 0;
2999
3000 type.data.data.type = internal->type_;
3001
3002 return CYMakeType(context, &type);
bce8339b
JF
3003 } CYCatch
3004}
3005
3006static JSValueRef Type_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
534fb6da
JF
3007 Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object)));
3008
bce8339b
JF
3009 CYTry {
3010 if (count != 1)
3011 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to type cast function" userInfo:nil];
bce8339b
JF
3012 sig::Type *type(internal->type_);
3013 ffi_type *ffi(internal->GetFFI());
3014 // XXX: alignment?
3015 uint8_t value[ffi->size];
3016 CYPool pool;
3017 CYPoolFFI(pool, context, type, ffi, value, arguments[0]);
c239b9f8 3018 return CYFromFFI(context, type, ffi, value);
bce8339b
JF
3019 } CYCatch
3020}
3021
3022static JSObjectRef Type_callAsConstructor(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3023 CYTry {
534fb6da 3024 if (count != 0)
bce8339b
JF
3025 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to type cast function" userInfo:nil];
3026 Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object)));
534fb6da
JF
3027
3028 sig::Type *type(internal->type_);
3029 size_t size;
3030
3031 if (type->primitive != sig::array_P)
3032 size = 0;
3033 else {
3034 size = type->data.data.size;
3035 type = type->data.data.type;
3036 }
3037
3038 void *value(malloc(internal->GetFFI()->size));
3039 return CYMakePointer(context, value, type, NULL, NULL);
bce8339b
JF
3040 } CYCatch
3041}
3042
534fb6da 3043static JSObjectRef Instance_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
7b184c00
JF
3044 CYTry {
3045 if (count > 1)
3046 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to Instance constructor" userInfo:nil];
3047 id self(count == 0 ? nil : CYCastPointer<id>(context, arguments[0]));
dc68b74c 3048 return Instance::Make(context, self);
7b184c00
JF
3049 } CYCatch
3050}
3051
534fb6da 3052static JSObjectRef Functor_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
4cf49641 3053 CYTry {
b21525c7 3054 if (count != 2)
dea834b0 3055 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to Functor constructor" userInfo:nil];
b21525c7 3056 const char *type(CYCastCString(context, arguments[1]));
dc68b74c 3057 return CYMakeFunctor(context, arguments[0], type);
0c862573 3058 } CYCatch
ea2d184c
JF
3059}
3060
534fb6da 3061static JSValueRef CYValue_getProperty_value(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
61933e16
JF
3062 CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(object)));
3063 return CYCastJSValue(context, reinterpret_cast<uintptr_t>(internal->value_));
04450da0
JF
3064}
3065
7b184c00
JF
3066static JSValueRef CYValue_callAsFunction_$cya(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3067 CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(_this)));
3068 Type_privateData *typical(internal->GetType());
3069
3070 sig::Type *type;
3071 ffi_type *ffi;
3072
3073 if (typical == NULL) {
3074 type = NULL;
3075 ffi = NULL;
3076 } else {
3077 type = typical->type_;
3078 ffi = typical->ffi_;
3079 }
3080
3081 return CYMakePointer(context, &internal->value_, type, ffi, object);
3082}
3083
61933e16 3084static JSValueRef CYValue_callAsFunction_valueOf(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
7b184c00
JF
3085 CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(_this)));
3086
953647c1 3087 CYTry {
61933e16 3088 return CYCastJSValue(context, reinterpret_cast<uintptr_t>(internal->value_));
953647c1
JF
3089 } CYCatch
3090}
3091
61933e16
JF
3092static JSValueRef CYValue_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3093 return CYValue_callAsFunction_valueOf(context, object, _this, count, arguments, exception);
b4aa79af
JF
3094}
3095
61933e16 3096static JSValueRef CYValue_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
7b184c00
JF
3097 CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(_this)));
3098 char string[32];
3099 sprintf(string, "%p", internal->value_);
3100
4afefdd9 3101 CYTry {
4afefdd9
JF
3102 return CYCastJSValue(context, string);
3103 } CYCatch
3104}
3105
dc68b74c
JF
3106static JSValueRef Instance_getProperty_constructor(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
3107 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
3108 return Instance::Make(context, object_getClass(internal->GetValue()));
3109}
3110
365abb0a
JF
3111static JSValueRef Instance_getProperty_protocol(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
3112 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
3113 id self(internal->GetValue());
3114 if (!CYIsClass(self))
3115 return CYJSUndefined(context);
3116 CYTry {
3117 return CYGetClassPrototype(context, self);
3118 } CYCatch
3119}
3120
3121static JSValueRef Instance_getProperty_messages(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
dc68b74c
JF
3122 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
3123 id self(internal->GetValue());
dc68b74c
JF
3124 if (class_getInstanceMethod(object_getClass(self), @selector(alloc)) == NULL)
3125 return CYJSUndefined(context);
365abb0a 3126 return Messages::Make(context, self);
dc68b74c
JF
3127}
3128
b4aa79af 3129static JSValueRef Instance_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
365abb0a
JF
3130 if (!JSValueIsObjectOfClass(context, _this, Instance_))
3131 return NULL;
3132
7b184c00
JF
3133 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
3134
b4aa79af 3135 CYTry {
b4aa79af 3136 CYPoolTry {
7b184c00 3137 return CYCastJSValue(context, CYJSString(CYPoolNSCYON(NULL, internal->GetValue())));
b4aa79af
JF
3138 } CYPoolCatch(NULL)
3139 } CYCatch
3140}
3141
3142static JSValueRef Instance_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
365abb0a
JF
3143 if (!JSValueIsObjectOfClass(context, _this, Instance_))
3144 return NULL;
3145
7b184c00
JF
3146 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
3147
b4aa79af 3148 CYTry {
b4aa79af
JF
3149 CYPoolTry {
3150 NSString *key(count == 0 ? nil : CYCastNSString(NULL, CYJSString(context, arguments[0])));
365abb0a 3151 // XXX: check for support of cy$toJSON?
61933e16 3152 return CYCastJSValue(context, CYJSString([internal->GetValue() cy$toJSON:key]));
b4aa79af
JF
3153 } CYPoolCatch(NULL)
3154 } CYCatch
3155}
3156
4cf49641 3157static JSValueRef Instance_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
365abb0a
JF
3158 if (!JSValueIsObjectOfClass(context, _this, Instance_))
3159 return NULL;
3160
9e562cfc 3161 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
7b184c00 3162
4cf49641 3163 CYTry {
4e8c99fb 3164 CYPoolTry {
9e562cfc 3165 return CYCastJSValue(context, CYJSString([internal->GetValue() description]));
4cf49641 3166 } CYPoolCatch(NULL)
478d4ed0
JF
3167 } CYCatch
3168}
3169
3170static JSValueRef Selector_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
9e562cfc 3171 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate(_this)));
7b184c00 3172
4cf49641 3173 CYTry {
9e562cfc 3174 return CYCastJSValue(context, sel_getName(internal->GetValue()));
478d4ed0
JF
3175 } CYCatch
3176}
3177
b4aa79af
JF
3178static JSValueRef Selector_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3179 return Selector_callAsFunction_toString(context, object, _this, count, arguments, exception);
3180}
3181
3182static JSValueRef Selector_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
7b184c00
JF
3183 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate(_this)));
3184 const char *name(sel_getName(internal->GetValue()));
3185
b4aa79af 3186 CYTry {
b4aa79af
JF
3187 CYPoolTry {
3188 return CYCastJSValue(context, CYJSString([NSString stringWithFormat:@"@selector(%s)", name]));
3189 } CYPoolCatch(NULL)
3190 } CYCatch
3191}
3192
b09da87b 3193static JSValueRef Selector_callAsFunction_type(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
4cf49641 3194 CYTry {
e5bc40db 3195 if (count != 1)
b09da87b
JF
3196 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to Selector.type" userInfo:nil];
3197 CYPool pool;
e5bc40db 3198 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate(_this)));
b09da87b 3199 Class _class(CYCastNSObject(pool, context, arguments[0]));
e5bc40db 3200 SEL sel(internal->GetValue());
dc68b74c
JF
3201 Method method(class_getInstanceMethod(_class, sel));
3202 const char *type(CYPoolTypeEncoding(pool, _class, sel, method));
3203 return type == NULL ? CYJSNull(context) : CYCastJSValue(context, CYJSString(type));
b09da87b
JF
3204 } CYCatch
3205}
3206
e5bc40db
JF
3207static JSValueRef Type_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3208 CYTry {
3209 Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this)));
3210 CYPool pool;
3211 const char *type(sig::Unparse(pool, internal->type_));
3212 CYPoolTry {
3213 return CYCastJSValue(context, CYJSString(type));
3214 } CYPoolCatch(NULL)
3215 } CYCatch
3216}
3217
3218static JSValueRef Type_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3219 CYTry {
3220 Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this)));
3221 CYPool pool;
3222 const char *type(sig::Unparse(pool, internal->type_));
3223 CYPoolTry {
3224 return CYCastJSValue(context, CYJSString([NSString stringWithFormat:@"new Type(%@)", [[NSString stringWithUTF8String:type] cy$toCYON]]));
3225 } CYPoolCatch(NULL)
3226 } CYCatch
3227}
3228
3229static JSValueRef Type_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3230 return Type_callAsFunction_toString(context, object, _this, count, arguments, exception);
3231}
3232
61933e16
JF
3233static JSStaticValue CYValue_staticValues[2] = {
3234 {"value", &CYValue_getProperty_value, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete},
04450da0
JF
3235 {NULL, NULL, NULL, 0}
3236};
3237
9b5527f0 3238static JSStaticValue Pointer_staticValues[2] = {
7b184c00 3239 {"$cyi", &Pointer_getProperty_$cyi, &Pointer_setProperty_$cyi, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
9b5527f0
JF
3240 {NULL, NULL, NULL, 0}
3241};
3242
4afefdd9 3243static JSStaticFunction Pointer_staticFunctions[4] = {
61933e16
JF
3244 {"toCYON", &CYValue_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3245 {"toJSON", &CYValue_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3246 {"valueOf", &CYValue_callAsFunction_valueOf, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
ff783f8c
JF
3247 {NULL, NULL, 0}
3248};
3249
9b5527f0
JF
3250static JSStaticFunction Struct_staticFunctions[2] = {
3251 {"$cya", &Struct_callAsFunction_$cya, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3252 {NULL, NULL, 0}
3253};
3254
ff783f8c 3255static JSStaticFunction Functor_staticFunctions[4] = {
61933e16
JF
3256 {"toCYON", &CYValue_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3257 {"toJSON", &CYValue_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3258 {"valueOf", &CYValue_callAsFunction_valueOf, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
953647c1
JF
3259 {NULL, NULL, 0}
3260};
3261
365abb0a 3262static JSStaticValue Instance_staticValues[5] = {
9e562cfc 3263 {"constructor", &Instance_getProperty_constructor, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
365abb0a
JF
3264 {"messages", &Instance_getProperty_messages, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3265 {"prototype", &Instance_getProperty_protocol, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
9e562cfc 3266 {"value", &CYValue_getProperty_value, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
9b5527f0
JF
3267 {NULL, NULL, NULL, 0}
3268};
3269
7b184c00
JF
3270static JSStaticFunction Instance_staticFunctions[5] = {
3271 {"$cya", &CYValue_callAsFunction_$cya, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
b4aa79af
JF
3272 {"toCYON", &Instance_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3273 {"toJSON", &Instance_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
478d4ed0
JF
3274 {"toString", &Instance_callAsFunction_toString, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3275 {NULL, NULL, 0}
3276};
3277
9b5527f0
JF
3278static JSStaticFunction Internal_staticFunctions[2] = {
3279 {"$cya", &Internal_callAsFunction_$cya, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3280 {NULL, NULL, 0}
3281};
3282
b4aa79af
JF
3283static JSStaticFunction Selector_staticFunctions[5] = {
3284 {"toCYON", &Selector_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3285 {"toJSON", &Selector_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
478d4ed0 3286 {"toString", &Selector_callAsFunction_toString, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
b09da87b
JF
3287 {"type", &Selector_callAsFunction_type, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3288 {NULL, NULL, 0}
3289};
3290
9b5527f0 3291static JSStaticFunction Type_staticFunctions[4] = {
e5bc40db
JF
3292 {"toCYON", &Type_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3293 {"toJSON", &Type_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3294 {"toString", &Type_callAsFunction_toString, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3295 {NULL, NULL, 0}
3296};
3297
5999c315 3298CYDriver::CYDriver(const std::string &filename) :
db5e2840 3299 state_(CYClear),
e7ed5354
JF
3300 data_(NULL),
3301 size_(0),
48e3be8a 3302 file_(NULL),
5999c315
JF
3303 filename_(filename),
3304 source_(NULL)
3305{
924f67b2
JF
3306 ScannerInit();
3307}
3308
5999c315 3309CYDriver::~CYDriver() {
924f67b2
JF
3310 ScannerDestroy();
3311}
3312
5befe15e
JF
3313void cy::parser::error(const cy::parser::location_type &location, const std::string &message) {
3314 CYDriver::Error error;
3315 error.location_ = location;
3316 error.message_ = message;
3317 driver.errors_.push_back(error);
63b4c5a8
JF
3318}
3319
b09da87b
JF
3320void CYSetArgs(int argc, const char *argv[]) {
3321 JSContextRef context(CYGetJSContext());
3322 JSValueRef args[argc];
3323 for (int i(0); i != argc; ++i)
3324 args[i] = CYCastJSValue(context, argv[i]);
3325 JSValueRef exception(NULL);
3326 JSObjectRef array(JSObjectMakeArray(context, argc, args, &exception));
3327 CYThrow(context, exception);
3328 CYSetProperty(context, System_, CYJSString("args"), array);
3329}
3330
579ed526
JF
3331JSObjectRef CYGetGlobalObject(JSContextRef context) {
3332 return JSContextGetGlobalObject(context);
3333}
3334
967067aa 3335const char *CYExecute(apr_pool_t *pool, const char *code) { _pooled
967067aa 3336 JSContextRef context(CYGetJSContext());
c239b9f8 3337 JSValueRef exception(NULL), result;
967067aa 3338
c239b9f8
JF
3339 try {
3340 result = JSEvaluateScript(context, CYJSString(code), NULL, NULL, 0, &exception);
3341 } catch (const char *error) {
3342 return error;
3343 }
967067aa
JF
3344
3345 if (exception != NULL) { error:
3346 result = exception;
3347 exception = NULL;
3348 }
3349
3350 if (JSValueIsUndefined(context, result))
3351 return NULL;
3352
4e39dc0b
JF
3353 const char *json;
3354
3355 try {
3356 json = CYPoolCCYON(pool, context, result, &exception);
3357 } catch (const char *error) {
3358 return error;
3359 }
3360
967067aa
JF
3361 if (exception != NULL)
3362 goto error;
3363
3364 CYSetProperty(context, CYGetGlobalObject(context), Result_, result);
3365 return json;
3366}
3367
3368bool CYRecvAll_(int socket, uint8_t *data, size_t size) {
3369 while (size != 0) if (size_t writ = _syscall(recv(socket, data, size, 0))) {
3370 data += writ;
3371 size -= writ;
3372 } else
3373 return false;
3374 return true;
3375}
3376
3377bool CYSendAll_(int socket, const uint8_t *data, size_t size) {
3378 while (size != 0) if (size_t writ = _syscall(send(socket, data, size, 0))) {
3379 data += writ;
3380 size -= writ;
3381 } else
3382 return false;
3383 return true;
3384}
3385
534fb6da 3386static apr_pool_t *Pool_;
967067aa
JF
3387
3388struct CYExecute_ {
3389 apr_pool_t *pool_;
3390 const char * volatile data_;
3391};
3392
3393// XXX: this is "tre lame"
3394@interface CYClient_ : NSObject {
3395}
3396
3397- (void) execute:(NSValue *)value;
3398
3399@end
3400
3401@implementation CYClient_
3402
3403- (void) execute:(NSValue *)value {
3404 CYExecute_ *execute(reinterpret_cast<CYExecute_ *>([value pointerValue]));
c239b9f8
JF
3405 const char *data(execute->data_);
3406 execute->data_ = NULL;
3407 execute->data_ = CYExecute(execute->pool_, data);
967067aa
JF
3408}
3409
3410@end
3411
3412struct CYClient :
3413 CYData
3414{
3415 int socket_;
3416 apr_thread_t *thread_;
3417
3418 CYClient(int socket) :
3419 socket_(socket)
3420 {
3421 }
3422
3423 ~CYClient() {
3424 _syscall(close(socket_));
3425 }
3426
3427 void Handle() { _pooled
3428 CYClient_ *client = [[[CYClient_ alloc] init] autorelease];
3429
3430 for (;;) {
3431 size_t size;
3432 if (!CYRecvAll(socket_, &size, sizeof(size)))
3433 return;
3434
3435 CYPool pool;
3436 char *data(new(pool) char[size + 1]);
3437 if (!CYRecvAll(socket_, data, size))
3438 return;
3439 data[size] = '\0';
3440
3441 CYDriver driver("");
3442 cy::parser parser(driver);
3443
3444 driver.data_ = data;
3445 driver.size_ = size;
3446
3447 const char *json;
3448 if (parser.parse() != 0 || !driver.errors_.empty()) {
3449 json = NULL;
3450 size = _not(size_t);
3451 } else {
3452 std::ostringstream str;
652ec1ba
JF
3453 CYOutput out(str);
3454 driver.source_->Show(out);
967067aa
JF
3455 std::string code(str.str());
3456 CYExecute_ execute = {pool, code.c_str()};
3457 [client performSelectorOnMainThread:@selector(execute:) withObject:[NSValue valueWithPointer:&execute] waitUntilDone:YES];
3458 json = execute.data_;
3459 size = json == NULL ? _not(size_t) : strlen(json);
3460 }
3461
3462 if (!CYSendAll(socket_, &size, sizeof(size)))
3463 return;
3464 if (json != NULL)
3465 if (!CYSendAll(socket_, json, size))
3466 return;
3467 }
3468 }
3469};
3470
3471static void * APR_THREAD_FUNC OnClient(apr_thread_t *thread, void *data) {
3472 CYClient *client(reinterpret_cast<CYClient *>(data));
3473 client->Handle();
3474 delete client;
3475 return NULL;
3476}
3477
1ef7d061
JF
3478extern "C" void CYHandleClient(apr_pool_t *pool, int socket) {
3479 CYClient *client(new(pool) CYClient(socket));
3480 apr_threadattr_t *attr;
3481 _aprcall(apr_threadattr_create(&attr, client->pool_));
3482 _aprcall(apr_thread_create(&client->thread_, attr, &OnClient, client, client->pool_));
bce8339b
JF
3483}
3484
7ba62cfd 3485MSInitialize { _pooled
967067aa
JF
3486 _aprcall(apr_initialize());
3487 _aprcall(apr_pool_create(&Pool_, NULL));
ea2d184c 3488
7b184c00
JF
3489 Type_privateData::Object = new(Pool_) Type_privateData(Pool_, "@");
3490 Type_privateData::Selector = new(Pool_) Type_privateData(Pool_, ":");
3491
953647c1 3492 Bridge_ = [[NSMutableArray arrayWithContentsOfFile:@"/usr/lib/libcycript.plist"] retain];
c239b9f8 3493
faf69207 3494 NSArray_ = objc_getClass("NSArray");
c1582939 3495 NSCFBoolean_ = objc_getClass("NSCFBoolean");
c239b9f8 3496 NSCFType_ = objc_getClass("NSCFType");
365abb0a 3497 NSDictionary_ = objc_getClass("NSDictonary");
c239b9f8
JF
3498 NSMessageBuilder_ = objc_getClass("NSMessageBuilder");
3499 NSZombie_ = objc_getClass("_NSZombie_");
3500 Object_ = objc_getClass("Object");
967067aa
JF
3501}
3502
3503JSGlobalContextRef CYGetJSContext() {
3504 if (Context_ == NULL) {
3505 JSClassDefinition definition;
3506
967067aa
JF
3507 definition = kJSClassDefinitionEmpty;
3508 definition.className = "Functor";
3509 definition.staticFunctions = Functor_staticFunctions;
3510 definition.callAsFunction = &Functor_callAsFunction;
1ef7d061 3511 definition.finalize = &Finalize;
967067aa
JF
3512 Functor_ = JSClassCreate(&definition);
3513
3514 definition = kJSClassDefinitionEmpty;
bce8339b 3515 definition.className = "Instance";
9b5527f0 3516 definition.staticValues = Instance_staticValues;
bce8339b 3517 definition.staticFunctions = Instance_staticFunctions;
7b184c00 3518 definition.hasProperty = &Instance_hasProperty;
bce8339b
JF
3519 definition.getProperty = &Instance_getProperty;
3520 definition.setProperty = &Instance_setProperty;
3521 definition.deleteProperty = &Instance_deleteProperty;
c239b9f8 3522 definition.getPropertyNames = &Instance_getPropertyNames;
bce8339b 3523 definition.callAsConstructor = &Instance_callAsConstructor;
365abb0a 3524 definition.hasInstance = &Instance_hasInstance;
1ef7d061 3525 definition.finalize = &Finalize;
bce8339b
JF
3526 Instance_ = JSClassCreate(&definition);
3527
9b5527f0
JF
3528 definition = kJSClassDefinitionEmpty;
3529 definition.className = "Internal";
3530 definition.staticFunctions = Internal_staticFunctions;
7b184c00 3531 definition.hasProperty = &Internal_hasProperty;
9b5527f0
JF
3532 definition.getProperty = &Internal_getProperty;
3533 definition.setProperty = &Internal_setProperty;
3534 definition.getPropertyNames = &Internal_getPropertyNames;
1ef7d061 3535 definition.finalize = &Finalize;
9b5527f0
JF
3536 Internal_ = JSClassCreate(&definition);
3537
dc68b74c
JF
3538 definition = kJSClassDefinitionEmpty;
3539 definition.className = "Message";
3540 definition.staticFunctions = Functor_staticFunctions;
3541 definition.callAsFunction = &Message_callAsFunction;
3542 definition.finalize = &Finalize;
3543 Message_ = JSClassCreate(&definition);
3544
365abb0a
JF
3545 definition = kJSClassDefinitionEmpty;
3546 definition.className = "Messages";
3547 definition.hasProperty = &Messages_hasProperty;
3548 definition.getProperty = &Messages_getProperty;
3549 definition.setProperty = &Messages_setProperty;
3550#if !__OBJC2__
3551 definition.deleteProperty = &Messages_deleteProperty;
3552#endif
3553 definition.getPropertyNames = &Messages_getPropertyNames;
3554 definition.finalize = &Finalize;
3555 Messages_ = JSClassCreate(&definition);
3556
3557 definition = kJSClassDefinitionEmpty;
3558 definition.className = "NSArrayPrototype";
3559 //definition.hasProperty = &NSArrayPrototype_hasProperty;
3560 //definition.getProperty = &NSArrayPrototype_getProperty;
3561 //definition.setProperty = &NSArrayPrototype_setProperty;
3562 //definition.deleteProperty = &NSArrayPrototype_deleteProperty;
3563 //definition.getPropertyNames = &NSArrayPrototype_getPropertyNames;
3564 NSArrayPrototype_ = JSClassCreate(&definition);
3565
bce8339b
JF
3566 definition = kJSClassDefinitionEmpty;
3567 definition.className = "Pointer";
9b5527f0 3568 definition.staticValues = Pointer_staticValues;
bce8339b
JF
3569 definition.staticFunctions = Pointer_staticFunctions;
3570 definition.getProperty = &Pointer_getProperty;
3571 definition.setProperty = &Pointer_setProperty;
1ef7d061 3572 definition.finalize = &Finalize;
bce8339b 3573 Pointer_ = JSClassCreate(&definition);
967067aa
JF
3574
3575 definition = kJSClassDefinitionEmpty;
3576 definition.className = "Selector";
3577 definition.staticValues = CYValue_staticValues;
967067aa
JF
3578 definition.staticFunctions = Selector_staticFunctions;
3579 definition.callAsFunction = &Selector_callAsFunction;
1ef7d061 3580 definition.finalize = &Finalize;
967067aa
JF
3581 Selector_ = JSClassCreate(&definition);
3582
3583 definition = kJSClassDefinitionEmpty;
bce8339b 3584 definition.className = "Struct";
9b5527f0 3585 definition.staticFunctions = Struct_staticFunctions;
bce8339b
JF
3586 definition.getProperty = &Struct_getProperty;
3587 definition.setProperty = &Struct_setProperty;
3588 definition.getPropertyNames = &Struct_getPropertyNames;
1ef7d061 3589 definition.finalize = &Finalize;
bce8339b
JF
3590 Struct_ = JSClassCreate(&definition);
3591
3592 definition = kJSClassDefinitionEmpty;
3593 definition.className = "Type";
e5bc40db 3594 definition.staticFunctions = Type_staticFunctions;
534fb6da 3595 definition.getProperty = &Type_getProperty;
bce8339b
JF
3596 definition.callAsFunction = &Type_callAsFunction;
3597 definition.callAsConstructor = &Type_callAsConstructor;
1ef7d061 3598 definition.finalize = &Finalize;
bce8339b 3599 Type_ = JSClassCreate(&definition);
967067aa
JF
3600
3601 definition = kJSClassDefinitionEmpty;
3602 definition.className = "Runtime";
3603 definition.getProperty = &Runtime_getProperty;
3604 Runtime_ = JSClassCreate(&definition);
3605
c239b9f8
JF
3606 definition = kJSClassDefinitionEmpty;
3607 definition.className = "ObjectiveC::Classes";
3608 definition.getProperty = &ObjectiveC_Classes_getProperty;
3609 definition.getPropertyNames = &ObjectiveC_Classes_getPropertyNames;
3610 ObjectiveC_Classes_ = JSClassCreate(&definition);
3611
3612 definition = kJSClassDefinitionEmpty;
3613 definition.className = "ObjectiveC::Images";
3614 definition.getProperty = &ObjectiveC_Images_getProperty;
3615 definition.getPropertyNames = &ObjectiveC_Images_getPropertyNames;
3616 ObjectiveC_Images_ = JSClassCreate(&definition);
3617
3618 definition = kJSClassDefinitionEmpty;
3619 definition.className = "ObjectiveC::Image::Classes";
3620 definition.getProperty = &ObjectiveC_Image_Classes_getProperty;
3621 definition.getPropertyNames = &ObjectiveC_Image_Classes_getPropertyNames;
c239b9f8
JF
3622 ObjectiveC_Image_Classes_ = JSClassCreate(&definition);
3623
3624 definition = kJSClassDefinitionEmpty;
3625 definition.className = "ObjectiveC::Protocols";
3626 definition.getProperty = &ObjectiveC_Protocols_getProperty;
3627 definition.getPropertyNames = &ObjectiveC_Protocols_getPropertyNames;
3628 ObjectiveC_Protocols_ = JSClassCreate(&definition);
3629
967067aa
JF
3630 definition = kJSClassDefinitionEmpty;
3631 //definition.getProperty = &Global_getProperty;
3632 JSClassRef Global(JSClassCreate(&definition));
3633
3634 JSGlobalContextRef context(JSGlobalContextCreate(Global));
3635 Context_ = context;
3636
3637 JSObjectRef global(CYGetGlobalObject(context));
3638
3639 JSObjectSetPrototype(context, global, JSObjectMake(context, Runtime_, NULL));
c239b9f8
JF
3640 ObjectiveC_ = JSObjectMake(context, NULL, NULL);
3641 CYSetProperty(context, global, CYJSString("ObjectiveC"), ObjectiveC_);
3642
3643 CYSetProperty(context, ObjectiveC_, CYJSString("classes"), JSObjectMake(context, ObjectiveC_Classes_, NULL));
3644 CYSetProperty(context, ObjectiveC_, CYJSString("images"), JSObjectMake(context, ObjectiveC_Images_, NULL));
3645 CYSetProperty(context, ObjectiveC_, CYJSString("protocols"), JSObjectMake(context, ObjectiveC_Protocols_, NULL));
967067aa 3646
dc68b74c
JF
3647 Array_ = CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Array")));
3648 Function_ = CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Function")));
365abb0a 3649 String_ = CYCastJSObject(context, CYGetProperty(context, global, CYJSString("String")));
dc68b74c
JF
3650
3651 length_ = JSStringCreateWithUTF8CString("length");
3652 message_ = JSStringCreateWithUTF8CString("message");
3653 name_ = JSStringCreateWithUTF8CString("name");
3654 prototype_ = JSStringCreateWithUTF8CString("prototype");
3655 toCYON_ = JSStringCreateWithUTF8CString("toCYON");
3656 toJSON_ = JSStringCreateWithUTF8CString("toJSON");
3657
365abb0a
JF
3658 JSObjectRef Object(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Object"))));
3659 Object_prototype_ = CYCastJSObject(context, CYGetProperty(context, Object, prototype_));
3660
faf69207
JF
3661 Array_prototype_ = CYCastJSObject(context, CYGetProperty(context, Array_, prototype_));
3662 Array_pop_ = CYCastJSObject(context, CYGetProperty(context, Array_prototype_, CYJSString("pop")));
3663 Array_push_ = CYCastJSObject(context, CYGetProperty(context, Array_prototype_, CYJSString("push")));
3664 Array_splice_ = CYCastJSObject(context, CYGetProperty(context, Array_prototype_, CYJSString("splice")));
3665
dc68b74c 3666 JSObjectRef Functor(JSObjectMakeConstructor(context, Functor_, &Functor_new));
365abb0a 3667 JSObjectRef Instance(JSObjectMakeConstructor(context, Instance_, &Instance_new));
dc68b74c 3668 JSObjectRef Message(JSObjectMakeConstructor(context, Message_, NULL));
9e562cfc 3669 JSObjectRef Selector(JSObjectMakeConstructor(context, Selector_, &Selector_new));
dc68b74c 3670
365abb0a
JF
3671 Instance_prototype_ = (JSObjectRef) CYGetProperty(context, Instance, prototype_);
3672
dc68b74c
JF
3673 JSValueRef function(CYGetProperty(context, Function_, prototype_));
3674 JSObjectSetPrototype(context, (JSObjectRef) CYGetProperty(context, Message, prototype_), function);
3675 JSObjectSetPrototype(context, (JSObjectRef) CYGetProperty(context, Functor, prototype_), function);
9e562cfc 3676 JSObjectSetPrototype(context, (JSObjectRef) CYGetProperty(context, Selector, prototype_), function);
dc68b74c
JF
3677
3678 CYSetProperty(context, global, CYJSString("Functor"), Functor);
365abb0a 3679 CYSetProperty(context, global, CYJSString("Instance"), Instance);
967067aa 3680 CYSetProperty(context, global, CYJSString("Pointer"), JSObjectMakeConstructor(context, Pointer_, &Pointer_new));
9e562cfc 3681 CYSetProperty(context, global, CYJSString("Selector"), Selector);
bce8339b 3682 CYSetProperty(context, global, CYJSString("Type"), JSObjectMakeConstructor(context, Type_, &Type_new));
967067aa
JF
3683
3684 MSHookFunction(&objc_registerClassPair, MSHake(objc_registerClassPair));
3685
c239b9f8
JF
3686 class_addMethod(NSCFType_, @selector(cy$toJSON:), reinterpret_cast<IMP>(&NSCFType$cy$toJSON), "@12@0:4@8");
3687
967067aa
JF
3688 CYSetProperty(context, global, CYJSString("objc_registerClassPair"), JSObjectMakeFunctionWithCallback(context, CYJSString("objc_registerClassPair"), &objc_registerClassPair_));
3689 CYSetProperty(context, global, CYJSString("objc_msgSend"), JSObjectMakeFunctionWithCallback(context, CYJSString("objc_msgSend"), &$objc_msgSend));
367eebb1 3690 CYSetProperty(context, global, CYJSString("$cyq"), JSObjectMakeFunctionWithCallback(context, CYJSString("$cyq"), &$cyq));
967067aa
JF
3691
3692 System_ = JSObjectMake(context, NULL, NULL);
3693 CYSetProperty(context, global, CYJSString("system"), System_);
3694 CYSetProperty(context, System_, CYJSString("args"), CYJSNull(context));
3695 //CYSetProperty(context, System_, CYJSString("global"), global);
3696
3697 CYSetProperty(context, System_, CYJSString("print"), JSObjectMakeFunctionWithCallback(context, CYJSString("print"), &System_print));
3698
3699 Result_ = JSStringCreateWithUTF8CString("_");
4e39dc0b
JF
3700
3701 JSValueProtect(context, Array_);
3702 JSValueProtect(context, Function_);
3703 JSValueProtect(context, String_);
3704
3705 JSValueProtect(context, Instance_prototype_);
3706 JSValueProtect(context, Object_prototype_);
3707
3708 JSValueProtect(context, Array_prototype_);
3709 JSValueProtect(context, Array_pop_);
3710 JSValueProtect(context, Array_push_);
3711 JSValueProtect(context, Array_splice_);
967067aa
JF
3712 }
3713
3714 return Context_;
c1582939 3715}