1 /* Cycript - The Truly Universal Scripting Language
2 * Copyright (C) 2009-2016 Jay Freeman (saurik)
5 /* GNU Affero General Public License, Version 3 {{{ */
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
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 "JavaScript.hpp"
34 #include "Pooling.hpp"
35 #include "Utility.hpp"
37 JSGlobalContextRef CYGetJSContext(JSContextRef context);
38 sig::Type *Structor_(CYPool &pool, sig::Aggregate *aggregate);
40 extern JSClassRef Functor_;
42 template <typename Internal_>
46 static JSClassRef Class_;
48 _finline JSValueRef GetPrototype(JSContextRef context) const {
52 template <typename... Args_>
53 _finline static JSClassRef GetClass(Args_ &&... args) {
57 template <typename... Args_>
58 static JSObjectRef Make(JSContextRef context, Args_ &&... args) {
59 Internal_ *internal(new Internal_(cy::Forward<Args_>(args)...));
60 JSObjectRef object(JSObjectMake(context, Internal_::GetClass(cy::Forward<Args_>(args)...), internal));
61 if (JSValueRef prototype = internal->GetPrototype(context))
62 CYSetPrototype(context, object, prototype);
66 static Internal_ *Get(JSContextRef context, JSObjectRef object) {
67 _assert(JSValueIsObjectOfClass(context, object, Class_));
68 return static_cast<Internal_ *>(JSObjectGetPrivate(object));
72 struct Type_privateData :
73 CYPrivate<Type_privateData>
78 Type_privateData(const char *type) :
81 sig::Signature signature;
82 sig::Parse(*pool_, &signature, type, &Structor_);
83 type_ = signature.elements[0].type;
86 Type_privateData(const sig::Type &type, ffi_type *ffi = NULL) :
87 type_(type.Copy(*pool_))
93 ffi_ = new(*pool_) ffi_type;
94 sig::Copy(*pool_, *ffi_, *ffi);
100 sig::Element element;
102 element.type = type_;
105 sig::Signature signature;
106 signature.elements = &element;
110 sig::sig_ffi_cif(*pool_, false, signature, &cif);
112 ffi_ = new(*pool_) ffi_type;
120 template <typename Internal_>
121 JSClassRef CYPrivate<Internal_>::Class_;
125 JSGlobalContextRef context_;
129 CYProtect(JSContextRef context, JSObjectRef object) :
130 context_(CYGetJSContext(context)),
133 //XXX:JSGlobalContextRetain(context_);
135 JSValueProtect(context_, object_);
140 JSValueUnprotect(context_, object_);
141 //XXX:JSGlobalContextRelease(context_);
144 operator bool() const {
145 return object_ != NULL;
148 operator JSContextRef() const {
152 operator JSObjectRef() const {
163 sig::sig_ffi_cif(*pool_, variadic_ ? signature_.count : 0, signature_, &cif_);
169 sig::Signature signature_;
172 Functor(void (*value)(), bool variadic, const sig::Signature &signature) :
176 sig::Copy(*pool_, signature_, signature);
180 Functor(void (*value)(), const char *encoding) :
184 sig::Parse(*pool_, &signature_, encoding, &Structor_);
188 static JSStaticFunction const * const StaticFunctions;
189 static JSStaticValue const * const StaticValues;
192 struct Closure_privateData :
196 JSValueRef (*adapter_)(JSContextRef, size_t, JSValueRef[], JSObjectRef);
198 Closure_privateData(JSContextRef context, JSObjectRef function, JSValueRef (*adapter)(JSContextRef, size_t, JSValueRef[], JSObjectRef), const sig::Signature &signature) :
199 cy::Functor(NULL, false, signature),
200 function_(context, function),
206 Closure_privateData *CYMakeFunctor_(JSContextRef context, JSObjectRef function, const sig::Signature &signature, JSValueRef (*adapter)(JSContextRef, size_t, JSValueRef[], JSObjectRef));
207 void CYExecuteClosure(ffi_cif *cif, void *result, void **arguments, void *arg, JSValueRef (*adapter)(JSContextRef, size_t, JSValueRef[], JSObjectRef));
209 #endif/*CYCRIPT_INTERNAL_HPP*/