]>
Commit | Line | Data |
---|---|---|
b3378a02 | 1 | /* Cycript - Optimizing JavaScript Compiler/Runtime |
f95d2598 | 2 | * Copyright (C) 2009-2014 Jay Freeman (saurik) |
d15b59f5 JF |
3 | */ |
4 | ||
f95d2598 | 5 | /* GNU Affero General Public License, Version 3 {{{ */ |
d15b59f5 | 6 | /* |
f95d2598 JF |
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. | |
11 | ||
12 | * This program is distributed in the hope that it will be useful, | |
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
c15969fd | 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
f95d2598 JF |
15 | * GNU Affero General Public License for more details. |
16 | ||
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/>. | |
b3378a02 | 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 |
42 | extern JSStringRef Array_s; |
43 | extern JSStringRef cy_s; | |
4dd55d2f | 44 | extern JSStringRef cyi_s; |
00b9328f JF |
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; | |
4cb8aa43 JF |
54 | extern JSStringRef toPointer_s; |
55 | extern JSStringRef toString_s; | |
56f57e5b | 56 | extern JSStringRef weak_s; |
37954781 | 57 | |
9cad30fa JF |
58 | void CYInitializeDynamic(); |
59 | JSGlobalContextRef CYGetJSContext(); | |
60 | JSObjectRef CYGetGlobalObject(JSContextRef context); | |
61 | ||
62 | extern "C" void CYSetupContext(JSGlobalContextRef context); | |
89d16b11 | 63 | const char *CYExecute(JSContextRef context, CYPool &pool, CYUTF8String code); |
9cad30fa JF |
64 | |
65 | void CYSetArgs(int argc, const char *argv[]); | |
66 | ||
67 | bool CYCastBool(JSContextRef context, JSValueRef value); | |
68 | double CYCastDouble(JSContextRef context, JSValueRef value); | |
69 | ||
79492f21 | 70 | bool CYIsEqual(JSContextRef context, JSValueRef lhs, JSValueRef rhs); |
3c7fc7a8 | 71 | bool CYIsStrictEqual(JSContextRef context, JSValueRef lhs, JSValueRef rhs); |
79492f21 | 72 | |
b799113b JF |
73 | CYUTF8String CYPoolUTF8String(CYPool &pool, JSContextRef context, JSStringRef value); |
74 | const char *CYPoolCString(CYPool &pool, JSContextRef context, JSStringRef value); | |
9cad30fa | 75 | |
58321c0a | 76 | bool CYHasProperty(JSContextRef context, JSObjectRef object, JSStringRef name); |
9cad30fa JF |
77 | JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, size_t index); |
78 | JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, JSStringRef name); | |
79 | ||
80 | void CYSetProperty(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value); | |
81 | void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value, JSPropertyAttributes attributes = kJSPropertyAttributeNone); | |
82 | void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef (*callback)(JSContextRef, JSObjectRef, JSObjectRef, size_t, const JSValueRef[], JSValueRef *), JSPropertyAttributes attributes = kJSPropertyAttributeNone); | |
83 | ||
e78a4755 JF |
84 | void CYSetPrototype(JSContextRef context, JSObjectRef object, JSValueRef prototype); |
85 | ||
56f57e5b | 86 | JSValueRef CYGetCachedValue(JSContextRef context, JSStringRef name); |
9cad30fa JF |
87 | JSObjectRef CYGetCachedObject(JSContextRef context, JSStringRef name); |
88 | ||
89 | JSValueRef CYCastJSValue(JSContextRef context, bool value); | |
90 | JSValueRef CYCastJSValue(JSContextRef context, double value); | |
91 | JSValueRef CYCastJSValue(JSContextRef context, int value); | |
92 | JSValueRef CYCastJSValue(JSContextRef context, unsigned int value); | |
93 | JSValueRef CYCastJSValue(JSContextRef context, long int value); | |
94 | JSValueRef CYCastJSValue(JSContextRef context, long unsigned int value); | |
95 | JSValueRef CYCastJSValue(JSContextRef context, long long int value); | |
96 | JSValueRef CYCastJSValue(JSContextRef context, long long unsigned int value); | |
97 | ||
98 | JSValueRef CYCastJSValue(JSContextRef context, JSStringRef value); | |
99 | JSValueRef CYCastJSValue(JSContextRef context, const char *value); | |
100 | ||
101 | JSObjectRef CYCastJSObject(JSContextRef context, JSValueRef value); | |
102 | JSValueRef CYJSUndefined(JSContextRef context); | |
103 | JSValueRef CYJSNull(JSContextRef context); | |
104 | ||
105 | void *CYCastPointer_(JSContextRef context, JSValueRef value); | |
106 | ||
107 | template <typename Type_> | |
108 | _finline Type_ CYCastPointer(JSContextRef context, JSValueRef value) { | |
109 | return reinterpret_cast<Type_>(CYCastPointer_(context, value)); | |
110 | } | |
111 | ||
b799113b | 112 | void CYPoolFFI(CYPool *pool, JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, JSValueRef value); |
9cad30fa JF |
113 | JSValueRef CYFromFFI(JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, bool initialize = false, JSObjectRef owner = NULL); |
114 | ||
9d512587 | 115 | 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)()); |
9cad30fa JF |
116 | |
117 | bool CYIsCallable(JSContextRef context, JSValueRef value); | |
118 | JSValueRef CYCallAsFunction(JSContextRef context, JSObjectRef function, JSObjectRef _this, size_t count, const JSValueRef arguments[]); | |
119 | ||
98735bfe JF |
120 | const char *CYPoolCCYON(CYPool &pool, JSContextRef context, JSObjectRef object, std::set<void *> &objects); |
121 | std::set<void *> *CYCastObjects(JSContextRef context, JSObjectRef _this, size_t count, const JSValueRef arguments[]); | |
9cad30fa | 122 | |
c4481e40 | 123 | struct CYHook { |
9cad30fa JF |
124 | void *(*ExecuteStart)(JSContextRef); |
125 | void (*ExecuteEnd)(JSContextRef, void *); | |
126 | ||
9cad30fa JF |
127 | void (*CallFunction)(JSContextRef, ffi_cif *, void (*)(), uint8_t *, void **); |
128 | ||
129 | void (*Initialize)(); | |
130 | void (*SetupContext)(JSContextRef); | |
131 | ||
b799113b | 132 | bool (*PoolFFI)(CYPool *, JSContextRef, sig::Type *, ffi_type *, void *, JSValueRef); |
9cad30fa JF |
133 | JSValueRef (*FromFFI)(JSContextRef, sig::Type *, ffi_type *, void *, bool, JSObjectRef); |
134 | }; | |
135 | ||
c4481e40 JF |
136 | struct CYRegisterHook { |
137 | CYRegisterHook(CYHook *hook); | |
138 | }; | |
9cad30fa | 139 | |
9cad30fa JF |
140 | JSObjectRef CYMakePointer(JSContextRef context, void *pointer, size_t length, sig::Type *type, ffi_type *ffi, JSObjectRef owner); |
141 | ||
9a39f705 JF |
142 | JSObjectRef CYMakeType(JSContextRef context, sig::Type *type); |
143 | JSObjectRef CYMakeType(JSContextRef context, sig::Signature *signature); | |
144 | ||
9cad30fa JF |
145 | void CYFinalize(JSObjectRef object); |
146 | ||
07db5f4d JF |
147 | size_t CYArrayLength(JSContextRef context, JSObjectRef array); |
148 | JSValueRef CYArrayGet(JSContextRef context, JSObjectRef array, size_t index); | |
149 | void CYArrayPush(JSContextRef context, JSObjectRef array, JSValueRef value); | |
150 | ||
b799113b | 151 | const char *CYPoolCString(CYPool &pool, JSContextRef context, JSValueRef value); |
9cad30fa JF |
152 | |
153 | JSStringRef CYCopyJSString(const char *value); | |
154 | JSStringRef CYCopyJSString(JSStringRef value); | |
155 | JSStringRef CYCopyJSString(CYUTF8String value); | |
156 | JSStringRef CYCopyJSString(JSContextRef context, JSValueRef value); | |
157 | ||
51b6165e | 158 | void CYGarbageCollect(JSContextRef context); |
8fab8594 JF |
159 | void CYDestroyContext(); |
160 | ||
9cad30fa JF |
161 | class CYJSString { |
162 | private: | |
163 | JSStringRef string_; | |
164 | ||
165 | void Clear_() { | |
166 | if (string_ != NULL) | |
167 | JSStringRelease(string_); | |
168 | } | |
169 | ||
170 | public: | |
171 | CYJSString(const CYJSString &rhs) : | |
172 | string_(CYCopyJSString(rhs.string_)) | |
173 | { | |
174 | } | |
175 | ||
176 | template <typename Arg0_> | |
177 | CYJSString(Arg0_ arg0) : | |
178 | string_(CYCopyJSString(arg0)) | |
179 | { | |
180 | } | |
181 | ||
182 | template <typename Arg0_, typename Arg1_> | |
183 | CYJSString(Arg0_ arg0, Arg1_ arg1) : | |
184 | string_(CYCopyJSString(arg0, arg1)) | |
185 | { | |
186 | } | |
187 | ||
188 | CYJSString &operator =(const CYJSString &rhs) { | |
189 | Clear_(); | |
190 | string_ = CYCopyJSString(rhs.string_); | |
191 | return *this; | |
192 | } | |
193 | ||
194 | ~CYJSString() { | |
195 | Clear_(); | |
196 | } | |
197 | ||
198 | void Clear() { | |
199 | Clear_(); | |
200 | string_ = NULL; | |
201 | } | |
202 | ||
203 | operator JSStringRef() const { | |
204 | return string_; | |
205 | } | |
206 | }; | |
207 | ||
73f04979 | 208 | #ifdef __APPLE__ |
56f57e5b JF |
209 | typedef struct OpaqueJSWeakObjectMap *JSWeakObjectMapRef; |
210 | typedef void (*JSWeakMapDestroyedCallback)(JSWeakObjectMapRef map, void *data); | |
211 | ||
212 | extern "C" JSWeakObjectMapRef JSWeakObjectMapCreate(JSContextRef ctx, void *data, JSWeakMapDestroyedCallback destructor) __attribute__((__weak_import__)); | |
213 | extern "C" void JSWeakObjectMapSet(JSContextRef ctx, JSWeakObjectMapRef map, void *key, JSObjectRef) __attribute__((__weak_import__)); | |
214 | extern "C" JSObjectRef JSWeakObjectMapGet(JSContextRef ctx, JSWeakObjectMapRef map, void *key) __attribute__((__weak_import__)); | |
215 | extern "C" bool JSWeakObjectMapClear(JSContextRef ctx, JSWeakObjectMapRef map, void *key, JSObjectRef object) __attribute__((__weak_import__)); | |
216 | extern "C" void JSWeakObjectMapRemove(JSContextRef ctx, JSWeakObjectMapRef map, void* key) __attribute__((__weak_import__)); | |
73f04979 | 217 | #endif |
56f57e5b | 218 | |
37954781 | 219 | #endif/*CYCRIPT_JAVASCRIPT_HPP*/ |