1 /* Cycript - Optimizing JavaScript Compiler/Runtime
 
   2  * Copyright (C) 2009-2015  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 "Pooling.hpp"
 
  35 JSGlobalContextRef CYGetJSContext(JSContextRef context);
 
  36 void Structor_(CYPool &pool, sig::Type *&type);
 
  38 JSObjectRef CYMakeType(JSContextRef context, sig::Type *type);
 
  40 extern JSClassRef Functor_;
 
  42 struct Type_privateData :
 
  45     static JSClassRef Class_;
 
  50     void Set(sig::Type *type) {
 
  51         type_ = new(*pool_) sig::Type;
 
  52         sig::Copy(*pool_, *type_, *type);
 
  55     Type_privateData(const char *type) :
 
  58         sig::Signature signature;
 
  59         sig::Parse(*pool_, &signature, type, &Structor_);
 
  60         type_ = signature.elements[0].type;
 
  63     Type_privateData(sig::Primitive primitive) :
 
  67         memset(&type, 0, sizeof(type));
 
  68         type.primitive = primitive;
 
  72     Type_privateData(sig::Type *type) :
 
  75         // XXX: just in case I messed up migrating
 
  76         _assert(type != NULL);
 
  80     Type_privateData(sig::Type *type, ffi_type *ffi) {
 
  81         ffi_ = new(*pool_) ffi_type;
 
  82         sig::Copy(*pool_, *ffi_, *ffi);
 
  93             sig::Signature signature;
 
  94             signature.elements = &element;
 
  98             sig::sig_ffi_cif(*pool_, &sig::ObjectiveC, &signature, &cif);
 
 100             ffi_ = new(*pool_) ffi_type;
 
 116     CYValue(const void *value) :
 
 117         value_(const_cast<void *>(value))
 
 121     CYValue(const CYValue &rhs) :
 
 126     virtual Type_privateData *GetType() const {
 
 135     JSGlobalContextRef context_;
 
 139     CYOwned(void *value, JSContextRef context, JSObjectRef owner) :
 
 141         context_(CYGetJSContext(context)),
 
 144         //XXX:JSGlobalContextRetain(context_);
 
 146             JSValueProtect(context_, owner_);
 
 151             JSValueUnprotect(context_, owner_);
 
 152         //XXX:JSGlobalContextRelease(context_);
 
 155     JSObjectRef GetOwner() const {
 
 166         sig::sig_ffi_cif(*pool_, &sig::ObjectiveC, &signature_, &cif_);
 
 170     sig::Signature signature_;
 
 173     Functor(const sig::Signature &signature, void (*value)()) :
 
 174         CYValue(reinterpret_cast<void *>(value))
 
 176         sig::Copy(*pool_, signature_, signature);
 
 180     Functor(const char *encoding, void (*value)()) :
 
 181         CYValue(reinterpret_cast<void *>(value))
 
 183         sig::Parse(*pool_, &signature_, encoding, &Structor_);
 
 187     void (*GetValue() const)() {
 
 188         return reinterpret_cast<void (*)()>(value_);
 
 191     static JSStaticFunction const * const StaticFunctions;
 
 192     static JSStaticValue const * const StaticValues;
 
 195 struct Closure_privateData :
 
 198     JSGlobalContextRef context_;
 
 199     JSObjectRef function_;
 
 200     JSValueRef (*adapter_)(JSContextRef, size_t, JSValueRef[], JSObjectRef);
 
 202     Closure_privateData(JSContextRef context, JSObjectRef function, JSValueRef (*adapter)(JSContextRef, size_t, JSValueRef[], JSObjectRef), const sig::Signature &signature) :
 
 203         cy::Functor(signature, NULL),
 
 204         context_(CYGetJSContext(context)),
 
 208         //XXX:JSGlobalContextRetain(context_);
 
 209         JSValueProtect(context_, function_);
 
 212     virtual ~Closure_privateData() {
 
 213         JSValueUnprotect(context_, function_);
 
 214         //XXX:JSGlobalContextRelease(context_);
 
 218 Closure_privateData *CYMakeFunctor_(JSContextRef context, JSObjectRef function, const sig::Signature &signature, JSValueRef (*adapter)(JSContextRef, size_t, JSValueRef[], JSObjectRef));
 
 219 void CYExecuteClosure(ffi_cif *cif, void *result, void **arguments, void *arg, JSValueRef (*adapter)(JSContextRef, size_t, JSValueRef[], JSObjectRef));
 
 221 #endif/*CYCRIPT_INTERNAL_HPP*/