1 /* Cycript - Optimizing JavaScript Compiler/Runtime
 
   2  * Copyright (C) 2009-2014  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_JAVASCRIPT_HPP
 
  23 #define CYCRIPT_JAVASCRIPT_HPP
 
  27 #include <JavaScriptCore/JSBase.h>
 
  28 #include <JavaScriptCore/JSContextRef.h>
 
  29 #include <JavaScriptCore/JSStringRef.h>
 
  30 #include <JavaScriptCore/JSObjectRef.h>
 
  31 #include <JavaScriptCore/JSValueRef.h>
 
  39 #include "Pooling.hpp"
 
  42 extern JSStringRef Array_s;
 
  43 extern JSStringRef cy_s;
 
  44 extern JSStringRef cyi_s;
 
  45 extern JSStringRef length_s;
 
  46 extern JSStringRef message_s;
 
  47 extern JSStringRef name_s;
 
  48 extern JSStringRef pop_s;
 
  49 extern JSStringRef prototype_s;
 
  50 extern JSStringRef push_s;
 
  51 extern JSStringRef splice_s;
 
  52 extern JSStringRef toCYON_s;
 
  53 extern JSStringRef toJSON_s;
 
  54 extern JSStringRef toPointer_s;
 
  55 extern JSStringRef toString_s;
 
  57 void CYInitializeDynamic();
 
  58 JSGlobalContextRef CYGetJSContext();
 
  59 JSObjectRef CYGetGlobalObject(JSContextRef context);
 
  61 extern "C" void CYSetupContext(JSGlobalContextRef context);
 
  62 const char *CYExecute(JSContextRef context, CYPool &pool, CYUTF8String code);
 
  64 void CYSetArgs(int argc, const char *argv[]);
 
  66 bool CYCastBool(JSContextRef context, JSValueRef value);
 
  67 double CYCastDouble(JSContextRef context, JSValueRef value);
 
  69 bool CYIsEqual(JSContextRef context, JSValueRef lhs, JSValueRef rhs);
 
  71 CYUTF8String CYPoolUTF8String(CYPool &pool, JSContextRef context, JSStringRef value);
 
  72 const char *CYPoolCString(CYPool &pool, JSContextRef context, JSStringRef value);
 
  74 bool CYHasProperty(JSContextRef context, JSObjectRef object, JSStringRef name);
 
  75 JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, size_t index);
 
  76 JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, JSStringRef name);
 
  78 void CYSetProperty(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value);
 
  79 void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value, JSPropertyAttributes attributes = kJSPropertyAttributeNone);
 
  80 void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef (*callback)(JSContextRef, JSObjectRef, JSObjectRef, size_t, const JSValueRef[], JSValueRef *), JSPropertyAttributes attributes = kJSPropertyAttributeNone);
 
  82 void CYSetPrototype(JSContextRef context, JSObjectRef object, JSValueRef prototype);
 
  84 JSObjectRef CYGetCachedObject(JSContextRef context, JSStringRef name);
 
  86 JSValueRef CYCastJSValue(JSContextRef context, bool value);
 
  87 JSValueRef CYCastJSValue(JSContextRef context, double value);
 
  88 JSValueRef CYCastJSValue(JSContextRef context, int value);
 
  89 JSValueRef CYCastJSValue(JSContextRef context, unsigned int value);
 
  90 JSValueRef CYCastJSValue(JSContextRef context, long int value);
 
  91 JSValueRef CYCastJSValue(JSContextRef context, long unsigned int value);
 
  92 JSValueRef CYCastJSValue(JSContextRef context, long long int value);
 
  93 JSValueRef CYCastJSValue(JSContextRef context, long long unsigned int value);
 
  95 JSValueRef CYCastJSValue(JSContextRef context, JSStringRef value);
 
  96 JSValueRef CYCastJSValue(JSContextRef context, const char *value);
 
  98 JSObjectRef CYCastJSObject(JSContextRef context, JSValueRef value);
 
  99 JSValueRef CYJSUndefined(JSContextRef context);
 
 100 JSValueRef CYJSNull(JSContextRef context);
 
 102 void *CYCastPointer_(JSContextRef context, JSValueRef value);
 
 104 template <typename Type_>
 
 105 _finline Type_ CYCastPointer(JSContextRef context, JSValueRef value) {
 
 106     return reinterpret_cast<Type_>(CYCastPointer_(context, value));
 
 109 void CYPoolFFI(CYPool *pool, JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, JSValueRef value);
 
 110 JSValueRef CYFromFFI(JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, bool initialize = false, JSObjectRef owner = NULL);
 
 112 JSValueRef CYCallFunction(CYPool &pool, JSContextRef context, size_t setups, void *setup[], size_t count, const JSValueRef arguments[], bool initialize, sig::Signature *signature, ffi_cif *cif, void (*function)());
 
 114 bool CYIsCallable(JSContextRef context, JSValueRef value);
 
 115 JSValueRef CYCallAsFunction(JSContextRef context, JSObjectRef function, JSObjectRef _this, size_t count, const JSValueRef arguments[]);
 
 117 const char *CYPoolCCYON(CYPool &pool, JSContextRef context, JSObjectRef object, std::set<void *> &objects);
 
 118 std::set<void *> *CYCastObjects(JSContextRef context, JSObjectRef _this, size_t count, const JSValueRef arguments[]);
 
 121     void *(*ExecuteStart)(JSContextRef);
 
 122     void (*ExecuteEnd)(JSContextRef, void *);
 
 124     void (*CallFunction)(JSContextRef, ffi_cif *, void (*)(), uint8_t *, void **);
 
 126     void (*Initialize)();
 
 127     void (*SetupContext)(JSContextRef);
 
 129     bool (*PoolFFI)(CYPool *, JSContextRef, sig::Type *, ffi_type *, void *, JSValueRef);
 
 130     JSValueRef (*FromFFI)(JSContextRef, sig::Type *, ffi_type *, void *, bool, JSObjectRef);
 
 133 struct CYRegisterHook {
 
 134     CYRegisterHook(CYHook *hook);
 
 137 JSObjectRef CYMakePointer(JSContextRef context, void *pointer, size_t length, sig::Type *type, ffi_type *ffi, JSObjectRef owner);
 
 139 JSObjectRef CYMakeType(JSContextRef context, sig::Type *type);
 
 140 JSObjectRef CYMakeType(JSContextRef context, sig::Signature *signature);
 
 142 void CYFinalize(JSObjectRef object);
 
 144 size_t CYArrayLength(JSContextRef context, JSObjectRef array);
 
 145 JSValueRef CYArrayGet(JSContextRef context, JSObjectRef array, size_t index);
 
 146 void CYArrayPush(JSContextRef context, JSObjectRef array, JSValueRef value);
 
 148 const char *CYPoolCString(CYPool &pool, JSContextRef context, JSValueRef value);
 
 150 JSStringRef CYCopyJSString(const char *value);
 
 151 JSStringRef CYCopyJSString(JSStringRef value);
 
 152 JSStringRef CYCopyJSString(CYUTF8String value);
 
 153 JSStringRef CYCopyJSString(JSContextRef context, JSValueRef value);
 
 155 void CYGarbageCollect(JSContextRef context);
 
 156 void CYDestroyContext();
 
 164             JSStringRelease(string_);
 
 168     CYJSString(const CYJSString &rhs) :
 
 169         string_(CYCopyJSString(rhs.string_))
 
 173     template <typename Arg0_>
 
 174     CYJSString(Arg0_ arg0) :
 
 175         string_(CYCopyJSString(arg0))
 
 179     template <typename Arg0_, typename Arg1_>
 
 180     CYJSString(Arg0_ arg0, Arg1_ arg1) :
 
 181         string_(CYCopyJSString(arg0, arg1))
 
 185     CYJSString &operator =(const CYJSString &rhs) {
 
 187         string_ = CYCopyJSString(rhs.string_);
 
 200     operator JSStringRef() const {
 
 205 #endif/*CYCRIPT_JAVASCRIPT_HPP*/