1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2013 Jay Freeman (saurik)
5 /* GNU General Public License, Version 3 {{{ */
7 * Cycript is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation, either version 3 of the License,
10 * or (at your option) any later version.
12 * Cycript is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Cycript. If not, see <http://www.gnu.org/licenses/>.
22 #ifndef CYCRIPT_INTERNAL_HPP
23 #define CYCRIPT_INTERNAL_HPP
25 #include <sig/parse.hpp>
26 #include <sig/ffi_type.hpp>
28 #include <JavaScriptCore/JSBase.h>
29 #include <JavaScriptCore/JSContextRef.h>
30 #include <JavaScriptCore/JSObjectRef.h>
31 #include <JavaScriptCore/JSValueRef.h>
33 #include "Pooling.hpp"
35 JSGlobalContextRef CYGetJSContext(JSContextRef context);
36 void Structor_(CYPool &pool, sig::Type *&type);
38 JSObjectRef CYMakeType(JSContextRef context, const char *type);
39 JSObjectRef CYMakeType(JSContextRef context, sig::Type *type);
41 extern JSClassRef Functor_;
43 struct Type_privateData :
46 static JSClassRef Class_;
51 void Set(sig::Type *type) {
52 type_ = new(*pool_) sig::Type;
53 sig::Copy(*pool_, *type_, *type);
56 Type_privateData(CYPool &pool, const char *type) :
60 sig::Signature signature;
61 sig::Parse(*pool_, &signature, type, &Structor_);
62 type_ = signature.elements[0].type;
65 Type_privateData(const char *type) :
68 sig::Signature signature;
69 sig::Parse(*pool_, &signature, type, &Structor_);
70 type_ = signature.elements[0].type;
73 Type_privateData(sig::Type *type) :
76 // XXX: just in case I messed up migrating
77 _assert(type != NULL);
81 Type_privateData(sig::Type *type, ffi_type *ffi) {
82 ffi_ = new(*pool_) ffi_type;
83 sig::Copy(*pool_, *ffi_, *ffi);
94 sig::Signature signature;
95 signature.elements = &element;
99 sig::sig_ffi_cif(*pool_, &sig::ObjectiveC, &signature, &cif);
101 ffi_ = new(*pool_) ffi_type;
117 CYValue(const void *value) :
118 value_(const_cast<void *>(value))
122 CYValue(const CYValue &rhs) :
127 virtual Type_privateData *GetType() const {
136 JSGlobalContextRef context_;
140 CYOwned(void *value, JSContextRef context, JSObjectRef owner) :
142 context_(CYGetJSContext(context)),
145 //XXX:JSGlobalContextRetain(context_);
147 JSValueProtect(context_, owner_);
152 JSValueUnprotect(context_, owner_);
153 //XXX:JSGlobalContextRelease(context_);
156 JSObjectRef GetOwner() const {
167 sig::sig_ffi_cif(*pool_, &sig::ObjectiveC, &signature_, &cif_);
171 sig::Signature signature_;
174 Functor(const sig::Signature &signature, void (*value)()) :
175 CYValue(reinterpret_cast<void *>(value))
177 sig::Copy(*pool_, signature_, signature);
181 Functor(const char *encoding, void (*value)()) :
182 CYValue(reinterpret_cast<void *>(value))
184 sig::Parse(*pool_, &signature_, encoding, &Structor_);
188 void (*GetValue() const)() {
189 return reinterpret_cast<void (*)()>(value_);
192 static JSStaticFunction const * const StaticFunctions;
193 static JSStaticValue const * const StaticValues;
196 struct Closure_privateData :
199 JSGlobalContextRef context_;
200 JSObjectRef function_;
202 Closure_privateData(JSContextRef context, JSObjectRef function, const sig::Signature &signature) :
203 cy::Functor(signature, NULL),
204 context_(CYGetJSContext(context)),
207 //XXX:JSGlobalContextRetain(context_);
208 JSValueProtect(context_, function_);
211 virtual ~Closure_privateData() {
212 JSValueUnprotect(context_, function_);
213 //XXX:JSGlobalContextRelease(context_);
217 Closure_privateData *CYMakeFunctor_(JSContextRef context, JSObjectRef function, const sig::Signature &signature, void (*callback)(ffi_cif *, void *, void **, void *));
218 void CYExecuteClosure(ffi_cif *cif, void *result, void **arguments, void *arg, JSValueRef (*adapter)(JSContextRef, size_t, JSValueRef[], JSObjectRef));
220 #endif/*CYCRIPT_INTERNAL_HPP*/