]> git.saurik.com Git - cycript.git/blame - JavaScript.hpp
Avoid infinite recursion while CYONifying objects.
[cycript.git] / JavaScript.hpp
CommitLineData
b3378a02 1/* Cycript - Optimizing JavaScript Compiler/Runtime
c15969fd 2 * Copyright (C) 2009-2013 Jay Freeman (saurik)
d15b59f5
JF
3*/
4
c15969fd 5/* GNU General Public License, Version 3 {{{ */
d15b59f5 6/*
c15969fd
JF
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.
d15b59f5 11 *
c15969fd
JF
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.
d15b59f5 16 *
c15969fd 17 * You should have received a copy of the GNU General Public License
b3378a02
JF
18 * along with Cycript. If not, see <http://www.gnu.org/licenses/>.
19**/
d15b59f5
JF
20/* }}} */
21
37954781
JF
22#ifndef CYCRIPT_JAVASCRIPT_HPP
23#define CYCRIPT_JAVASCRIPT_HPP
24
98735bfe
JF
25#include <set>
26
9cad30fa
JF
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>
32
b128dfee
DWT
33#ifdef HAVE_FFI_FFI_H
34#include <ffi/ffi.h>
35#else
9cad30fa 36#include <ffi.h>
b128dfee 37#endif
9cad30fa 38
b799113b
JF
39#include "Pooling.hpp"
40#include "String.hpp"
ef6f48be 41
498c3570
JF
42extern JSStringRef Array_s;
43extern JSStringRef cy_s;
4dd55d2f 44extern JSStringRef cyi_s;
00b9328f
JF
45extern JSStringRef length_s;
46extern JSStringRef message_s;
47extern JSStringRef name_s;
48extern JSStringRef pop_s;
49extern JSStringRef prototype_s;
50extern JSStringRef push_s;
51extern JSStringRef splice_s;
52extern JSStringRef toCYON_s;
53extern JSStringRef toJSON_s;
4cb8aa43
JF
54extern JSStringRef toPointer_s;
55extern JSStringRef toString_s;
37954781 56
9cad30fa
JF
57void CYInitializeDynamic();
58JSGlobalContextRef CYGetJSContext();
59JSObjectRef CYGetGlobalObject(JSContextRef context);
60
61extern "C" void CYSetupContext(JSGlobalContextRef context);
89d16b11 62const char *CYExecute(JSContextRef context, CYPool &pool, CYUTF8String code);
9cad30fa
JF
63
64void CYSetArgs(int argc, const char *argv[]);
65
66bool CYCastBool(JSContextRef context, JSValueRef value);
67double CYCastDouble(JSContextRef context, JSValueRef value);
68
b799113b
JF
69CYUTF8String CYPoolUTF8String(CYPool &pool, JSContextRef context, JSStringRef value);
70const char *CYPoolCString(CYPool &pool, JSContextRef context, JSStringRef value);
9cad30fa 71
58321c0a 72bool CYHasProperty(JSContextRef context, JSObjectRef object, JSStringRef name);
9cad30fa
JF
73JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, size_t index);
74JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, JSStringRef name);
75
76void CYSetProperty(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value);
77void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value, JSPropertyAttributes attributes = kJSPropertyAttributeNone);
78void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef (*callback)(JSContextRef, JSObjectRef, JSObjectRef, size_t, const JSValueRef[], JSValueRef *), JSPropertyAttributes attributes = kJSPropertyAttributeNone);
79
e78a4755
JF
80void CYSetPrototype(JSContextRef context, JSObjectRef object, JSValueRef prototype);
81
9cad30fa
JF
82JSObjectRef CYGetCachedObject(JSContextRef context, JSStringRef name);
83
84JSValueRef CYCastJSValue(JSContextRef context, bool value);
85JSValueRef CYCastJSValue(JSContextRef context, double value);
86JSValueRef CYCastJSValue(JSContextRef context, int value);
87JSValueRef CYCastJSValue(JSContextRef context, unsigned int value);
88JSValueRef CYCastJSValue(JSContextRef context, long int value);
89JSValueRef CYCastJSValue(JSContextRef context, long unsigned int value);
90JSValueRef CYCastJSValue(JSContextRef context, long long int value);
91JSValueRef CYCastJSValue(JSContextRef context, long long unsigned int value);
92
93JSValueRef CYCastJSValue(JSContextRef context, JSStringRef value);
94JSValueRef CYCastJSValue(JSContextRef context, const char *value);
95
96JSObjectRef CYCastJSObject(JSContextRef context, JSValueRef value);
97JSValueRef CYJSUndefined(JSContextRef context);
98JSValueRef CYJSNull(JSContextRef context);
99
100void *CYCastPointer_(JSContextRef context, JSValueRef value);
101
102template <typename Type_>
103_finline Type_ CYCastPointer(JSContextRef context, JSValueRef value) {
104 return reinterpret_cast<Type_>(CYCastPointer_(context, value));
105}
106
b799113b 107void CYPoolFFI(CYPool *pool, JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, JSValueRef value);
9cad30fa
JF
108JSValueRef CYFromFFI(JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, bool initialize = false, JSObjectRef owner = NULL);
109
9d512587 110JSValueRef 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)());
9cad30fa
JF
111
112bool CYIsCallable(JSContextRef context, JSValueRef value);
113JSValueRef CYCallAsFunction(JSContextRef context, JSObjectRef function, JSObjectRef _this, size_t count, const JSValueRef arguments[]);
114
98735bfe
JF
115const char *CYPoolCCYON(CYPool &pool, JSContextRef context, JSObjectRef object, std::set<void *> &objects);
116std::set<void *> *CYCastObjects(JSContextRef context, JSObjectRef _this, size_t count, const JSValueRef arguments[]);
9cad30fa
JF
117
118struct CYHooks {
119 void *(*ExecuteStart)(JSContextRef);
120 void (*ExecuteEnd)(JSContextRef, void *);
121
9cad30fa
JF
122 void (*CallFunction)(JSContextRef, ffi_cif *, void (*)(), uint8_t *, void **);
123
124 void (*Initialize)();
125 void (*SetupContext)(JSContextRef);
126
b799113b 127 bool (*PoolFFI)(CYPool *, JSContextRef, sig::Type *, ffi_type *, void *, JSValueRef);
9cad30fa
JF
128 JSValueRef (*FromFFI)(JSContextRef, sig::Type *, ffi_type *, void *, bool, JSObjectRef);
129};
130
131extern struct CYHooks *hooks_;
132
9cad30fa
JF
133JSObjectRef CYMakePointer(JSContextRef context, void *pointer, size_t length, sig::Type *type, ffi_type *ffi, JSObjectRef owner);
134
9a39f705
JF
135JSObjectRef CYMakeType(JSContextRef context, const char *encoding);
136JSObjectRef CYMakeType(JSContextRef context, sig::Type *type);
137JSObjectRef CYMakeType(JSContextRef context, sig::Signature *signature);
138
9cad30fa
JF
139void CYFinalize(JSObjectRef object);
140
07db5f4d
JF
141size_t CYArrayLength(JSContextRef context, JSObjectRef array);
142JSValueRef CYArrayGet(JSContextRef context, JSObjectRef array, size_t index);
143void CYArrayPush(JSContextRef context, JSObjectRef array, JSValueRef value);
144
b799113b 145const char *CYPoolCString(CYPool &pool, JSContextRef context, JSValueRef value);
9cad30fa
JF
146
147JSStringRef CYCopyJSString(const char *value);
148JSStringRef CYCopyJSString(JSStringRef value);
149JSStringRef CYCopyJSString(CYUTF8String value);
150JSStringRef CYCopyJSString(JSContextRef context, JSValueRef value);
151
51b6165e 152void CYGarbageCollect(JSContextRef context);
8fab8594
JF
153void CYDestroyContext();
154
9cad30fa
JF
155class CYJSString {
156 private:
157 JSStringRef string_;
158
159 void Clear_() {
160 if (string_ != NULL)
161 JSStringRelease(string_);
162 }
163
164 public:
165 CYJSString(const CYJSString &rhs) :
166 string_(CYCopyJSString(rhs.string_))
167 {
168 }
169
170 template <typename Arg0_>
171 CYJSString(Arg0_ arg0) :
172 string_(CYCopyJSString(arg0))
173 {
174 }
175
176 template <typename Arg0_, typename Arg1_>
177 CYJSString(Arg0_ arg0, Arg1_ arg1) :
178 string_(CYCopyJSString(arg0, arg1))
179 {
180 }
181
182 CYJSString &operator =(const CYJSString &rhs) {
183 Clear_();
184 string_ = CYCopyJSString(rhs.string_);
185 return *this;
186 }
187
188 ~CYJSString() {
189 Clear_();
190 }
191
192 void Clear() {
193 Clear_();
194 string_ = NULL;
195 }
196
197 operator JSStringRef() const {
198 return string_;
199 }
200};
201
37954781 202#endif/*CYCRIPT_JAVASCRIPT_HPP*/