]> git.saurik.com Git - cycript.git/blame_incremental - JavaScript.hpp
Forgot to include license header in libcycript.cy.
[cycript.git] / JavaScript.hpp
... / ...
CommitLineData
1/* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2015 Jay Freeman (saurik)
3*/
4
5/* GNU Affero General Public License, Version 3 {{{ */
6/*
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
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
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/>.
19**/
20/* }}} */
21
22#ifndef CYCRIPT_JAVASCRIPT_HPP
23#define CYCRIPT_JAVASCRIPT_HPP
24
25#include <set>
26
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
33#ifdef HAVE_FFI_FFI_H
34#include <ffi/ffi.h>
35#else
36#include <ffi.h>
37#endif
38
39#include "Pooling.hpp"
40#include "String.hpp"
41
42extern JSStringRef Array_s;
43extern JSStringRef cy_s;
44extern JSStringRef cyi_s;
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;
54extern JSStringRef toPointer_s;
55extern JSStringRef toString_s;
56extern JSStringRef weak_s;
57
58void CYInitializeDynamic();
59JSGlobalContextRef CYGetJSContext();
60JSObjectRef CYGetGlobalObject(JSContextRef context);
61
62extern "C" void CYSetupContext(JSGlobalContextRef context);
63const char *CYExecute(JSContextRef context, CYPool &pool, CYUTF8String code);
64void CYCancel();
65
66void CYSetArgs(int argc, const char *argv[]);
67
68bool CYCastBool(JSContextRef context, JSValueRef value);
69double CYCastDouble(JSContextRef context, JSValueRef value);
70
71bool CYIsEqual(JSContextRef context, JSValueRef lhs, JSValueRef rhs);
72bool CYIsStrictEqual(JSContextRef context, JSValueRef lhs, JSValueRef rhs);
73
74CYUTF8String CYPoolUTF8String(CYPool &pool, JSContextRef context, JSStringRef value);
75const char *CYPoolCString(CYPool &pool, JSContextRef context, JSStringRef value);
76
77bool CYHasProperty(JSContextRef context, JSObjectRef object, JSStringRef name);
78JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, size_t index);
79JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, JSStringRef name);
80
81void CYSetProperty(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value);
82void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value, JSPropertyAttributes attributes = kJSPropertyAttributeNone);
83void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef (*callback)(JSContextRef, JSObjectRef, JSObjectRef, size_t, const JSValueRef[], JSValueRef *), JSPropertyAttributes attributes = kJSPropertyAttributeNone);
84
85void CYSetPrototype(JSContextRef context, JSObjectRef object, JSValueRef prototype);
86
87JSValueRef CYGetCachedValue(JSContextRef context, JSStringRef name);
88JSObjectRef CYGetCachedObject(JSContextRef context, JSStringRef name);
89
90JSValueRef CYCastJSValue(JSContextRef context, bool value);
91JSValueRef CYCastJSValue(JSContextRef context, double value);
92JSValueRef CYCastJSValue(JSContextRef context, int value);
93JSValueRef CYCastJSValue(JSContextRef context, unsigned int value);
94JSValueRef CYCastJSValue(JSContextRef context, long int value);
95JSValueRef CYCastJSValue(JSContextRef context, long unsigned int value);
96JSValueRef CYCastJSValue(JSContextRef context, long long int value);
97JSValueRef CYCastJSValue(JSContextRef context, long long unsigned int value);
98
99JSValueRef CYCastJSValue(JSContextRef context, JSStringRef value);
100JSValueRef CYCastJSValue(JSContextRef context, const char *value);
101
102JSObjectRef CYCastJSObject(JSContextRef context, JSValueRef value);
103JSValueRef CYJSUndefined(JSContextRef context);
104JSValueRef CYJSNull(JSContextRef context);
105
106void *CYCastPointer_(JSContextRef context, JSValueRef value, bool *guess = NULL);
107
108template <typename Type_>
109_finline Type_ CYCastPointer(JSContextRef context, JSValueRef value, bool *guess = NULL) {
110 return reinterpret_cast<Type_>(CYCastPointer_(context, value, guess));
111}
112
113void CYPoolFFI(CYPool *pool, JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, JSValueRef value);
114JSValueRef CYFromFFI(JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, bool initialize = false, JSObjectRef owner = NULL);
115
116void CYCallFunction(CYPool &pool, JSContextRef context, ffi_cif *cif, void (*function)(), void *value, void **values);
117JSValueRef 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)());
118
119bool CYIsCallable(JSContextRef context, JSValueRef value);
120JSValueRef CYCallAsFunction(JSContextRef context, JSObjectRef function, JSObjectRef _this, size_t count, const JSValueRef arguments[]);
121
122const char *CYPoolCCYON(CYPool &pool, JSContextRef context, JSObjectRef object, std::set<void *> &objects);
123std::set<void *> *CYCastObjects(JSContextRef context, JSObjectRef _this, size_t count, const JSValueRef arguments[]);
124
125struct CYHook {
126 void *(*ExecuteStart)(JSContextRef);
127 void (*ExecuteEnd)(JSContextRef, void *);
128
129 void (*CallFunction)(CYPool &, JSContextRef, ffi_cif *, void (*)(), void *, void **);
130
131 void (*Initialize)();
132 void (*SetupContext)(JSContextRef);
133
134 bool (*PoolFFI)(CYPool *, JSContextRef, sig::Type *, ffi_type *, void *, JSValueRef);
135 JSValueRef (*FromFFI)(JSContextRef, sig::Type *, ffi_type *, void *, bool, JSObjectRef);
136
137 void *(*CastSymbol)(const char *);
138};
139
140struct CYRegisterHook {
141 CYRegisterHook(CYHook *hook);
142};
143
144JSObjectRef CYMakePointer(JSContextRef context, void *pointer, size_t length, sig::Type *type, ffi_type *ffi, JSObjectRef owner);
145
146JSObjectRef CYMakeType(JSContextRef context, sig::Type *type);
147JSObjectRef CYMakeType(JSContextRef context, sig::Signature *signature);
148
149void CYFinalize(JSObjectRef object);
150
151size_t CYArrayLength(JSContextRef context, JSObjectRef array);
152JSValueRef CYArrayGet(JSContextRef context, JSObjectRef array, size_t index);
153void CYArrayPush(JSContextRef context, JSObjectRef array, JSValueRef value);
154
155const char *CYPoolCString(CYPool &pool, JSContextRef context, JSValueRef value);
156
157JSStringRef CYCopyJSString(const char *value);
158JSStringRef CYCopyJSString(JSStringRef value);
159JSStringRef CYCopyJSString(CYUTF8String value);
160JSStringRef CYCopyJSString(CYUTF16String value);
161JSStringRef CYCopyJSString(JSContextRef context, JSValueRef value);
162
163void CYGarbageCollect(JSContextRef context);
164void CYDestroyContext();
165
166class CYJSString {
167 private:
168 JSStringRef string_;
169
170 void Clear_() {
171 if (string_ != NULL)
172 JSStringRelease(string_);
173 }
174
175 public:
176 CYJSString(const CYJSString &rhs) :
177 string_(CYCopyJSString(rhs.string_))
178 {
179 }
180
181 template <typename Arg0_>
182 CYJSString(Arg0_ arg0) :
183 string_(CYCopyJSString(arg0))
184 {
185 }
186
187 template <typename Arg0_, typename Arg1_>
188 CYJSString(Arg0_ arg0, Arg1_ arg1) :
189 string_(CYCopyJSString(arg0, arg1))
190 {
191 }
192
193 CYJSString &operator =(const CYJSString &rhs) {
194 Clear_();
195 string_ = CYCopyJSString(rhs.string_);
196 return *this;
197 }
198
199 ~CYJSString() {
200 Clear_();
201 }
202
203 void Clear() {
204 Clear_();
205 string_ = NULL;
206 }
207
208 operator JSStringRef() const {
209 return string_;
210 }
211};
212
213#ifdef __APPLE__
214#define _weak __attribute__((__weak_import__));
215#else
216#define _weak
217#endif
218
219typedef struct OpaqueJSWeakObjectMap *JSWeakObjectMapRef;
220typedef void (*JSWeakMapDestroyedCallback)(JSWeakObjectMapRef map, void *data);
221
222extern "C" JSWeakObjectMapRef JSWeakObjectMapCreate(JSContextRef ctx, void *data, JSWeakMapDestroyedCallback destructor) _weak;
223extern "C" void JSWeakObjectMapSet(JSContextRef ctx, JSWeakObjectMapRef map, void *key, JSObjectRef) _weak;
224extern "C" JSObjectRef JSWeakObjectMapGet(JSContextRef ctx, JSWeakObjectMapRef map, void *key) _weak;
225extern "C" bool JSWeakObjectMapClear(JSContextRef ctx, JSWeakObjectMapRef map, void *key, JSObjectRef object) _weak;
226extern "C" void JSWeakObjectMapRemove(JSContextRef ctx, JSWeakObjectMapRef map, void* key) _weak;
227
228typedef bool (*JSShouldTerminateCallback)(JSContextRef ctx, void *context);
229extern "C" void JSContextGroupSetExecutionTimeLimit(JSContextGroupRef, double limit, JSShouldTerminateCallback, void *context) _weak;
230
231#endif/*CYCRIPT_JAVASCRIPT_HPP*/