]> git.saurik.com Git - cycript.git/blame - JavaScript.hpp
Syntax highlight SEL as if it's a type (like id).
[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
9cad30fa
JF
25#include <JavaScriptCore/JSBase.h>
26#include <JavaScriptCore/JSContextRef.h>
27#include <JavaScriptCore/JSStringRef.h>
28#include <JavaScriptCore/JSObjectRef.h>
29#include <JavaScriptCore/JSValueRef.h>
30
b128dfee
DWT
31#ifdef HAVE_FFI_FFI_H
32#include <ffi/ffi.h>
33#else
9cad30fa 34#include <ffi.h>
b128dfee 35#endif
9cad30fa 36
b799113b
JF
37#include "Pooling.hpp"
38#include "String.hpp"
ef6f48be 39
498c3570
JF
40extern JSStringRef Array_s;
41extern JSStringRef cy_s;
00b9328f
JF
42extern JSStringRef length_s;
43extern JSStringRef message_s;
44extern JSStringRef name_s;
45extern JSStringRef pop_s;
46extern JSStringRef prototype_s;
47extern JSStringRef push_s;
48extern JSStringRef splice_s;
49extern JSStringRef toCYON_s;
50extern JSStringRef toJSON_s;
4cb8aa43
JF
51extern JSStringRef toPointer_s;
52extern JSStringRef toString_s;
37954781 53
9cad30fa
JF
54void CYInitializeDynamic();
55JSGlobalContextRef CYGetJSContext();
56JSObjectRef CYGetGlobalObject(JSContextRef context);
57
58extern "C" void CYSetupContext(JSGlobalContextRef context);
89d16b11 59const char *CYExecute(JSContextRef context, CYPool &pool, CYUTF8String code);
9cad30fa
JF
60
61void CYSetArgs(int argc, const char *argv[]);
62
63bool CYCastBool(JSContextRef context, JSValueRef value);
64double CYCastDouble(JSContextRef context, JSValueRef value);
65
b799113b
JF
66CYUTF8String CYPoolUTF8String(CYPool &pool, JSContextRef context, JSStringRef value);
67const char *CYPoolCString(CYPool &pool, JSContextRef context, JSStringRef value);
9cad30fa
JF
68
69JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, size_t index);
70JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, JSStringRef name);
71
72void CYSetProperty(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value);
73void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value, JSPropertyAttributes attributes = kJSPropertyAttributeNone);
74void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef (*callback)(JSContextRef, JSObjectRef, JSObjectRef, size_t, const JSValueRef[], JSValueRef *), JSPropertyAttributes attributes = kJSPropertyAttributeNone);
75
76JSObjectRef CYGetCachedObject(JSContextRef context, JSStringRef name);
77
78JSValueRef CYCastJSValue(JSContextRef context, bool value);
79JSValueRef CYCastJSValue(JSContextRef context, double value);
80JSValueRef CYCastJSValue(JSContextRef context, int value);
81JSValueRef CYCastJSValue(JSContextRef context, unsigned int value);
82JSValueRef CYCastJSValue(JSContextRef context, long int value);
83JSValueRef CYCastJSValue(JSContextRef context, long unsigned int value);
84JSValueRef CYCastJSValue(JSContextRef context, long long int value);
85JSValueRef CYCastJSValue(JSContextRef context, long long unsigned int value);
86
87JSValueRef CYCastJSValue(JSContextRef context, JSStringRef value);
88JSValueRef CYCastJSValue(JSContextRef context, const char *value);
89
90JSObjectRef CYCastJSObject(JSContextRef context, JSValueRef value);
91JSValueRef CYJSUndefined(JSContextRef context);
92JSValueRef CYJSNull(JSContextRef context);
93
94void *CYCastPointer_(JSContextRef context, JSValueRef value);
95
96template <typename Type_>
97_finline Type_ CYCastPointer(JSContextRef context, JSValueRef value) {
98 return reinterpret_cast<Type_>(CYCastPointer_(context, value));
99}
100
b799113b 101void CYPoolFFI(CYPool *pool, JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, JSValueRef value);
9cad30fa
JF
102JSValueRef CYFromFFI(JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, bool initialize = false, JSObjectRef owner = NULL);
103
9d512587 104JSValueRef 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
105
106bool CYIsCallable(JSContextRef context, JSValueRef value);
107JSValueRef CYCallAsFunction(JSContextRef context, JSObjectRef function, JSObjectRef _this, size_t count, const JSValueRef arguments[]);
108
b799113b 109const char *CYPoolCCYON(CYPool &pool, JSContextRef context, JSObjectRef object);
9cad30fa
JF
110
111struct CYHooks {
112 void *(*ExecuteStart)(JSContextRef);
113 void (*ExecuteEnd)(JSContextRef, void *);
114
9cad30fa
JF
115 void (*CallFunction)(JSContextRef, ffi_cif *, void (*)(), uint8_t *, void **);
116
117 void (*Initialize)();
118 void (*SetupContext)(JSContextRef);
119
b799113b 120 bool (*PoolFFI)(CYPool *, JSContextRef, sig::Type *, ffi_type *, void *, JSValueRef);
9cad30fa
JF
121 JSValueRef (*FromFFI)(JSContextRef, sig::Type *, ffi_type *, void *, bool, JSObjectRef);
122};
123
124extern struct CYHooks *hooks_;
125
9cad30fa
JF
126JSObjectRef CYMakePointer(JSContextRef context, void *pointer, size_t length, sig::Type *type, ffi_type *ffi, JSObjectRef owner);
127
9a39f705
JF
128JSObjectRef CYMakeType(JSContextRef context, const char *encoding);
129JSObjectRef CYMakeType(JSContextRef context, sig::Type *type);
130JSObjectRef CYMakeType(JSContextRef context, sig::Signature *signature);
131
9cad30fa
JF
132void CYFinalize(JSObjectRef object);
133
07db5f4d
JF
134size_t CYArrayLength(JSContextRef context, JSObjectRef array);
135JSValueRef CYArrayGet(JSContextRef context, JSObjectRef array, size_t index);
136void CYArrayPush(JSContextRef context, JSObjectRef array, JSValueRef value);
137
b799113b 138const char *CYPoolCString(CYPool &pool, JSContextRef context, JSValueRef value);
9cad30fa
JF
139
140JSStringRef CYCopyJSString(const char *value);
141JSStringRef CYCopyJSString(JSStringRef value);
142JSStringRef CYCopyJSString(CYUTF8String value);
143JSStringRef CYCopyJSString(JSContextRef context, JSValueRef value);
144
145class CYJSString {
146 private:
147 JSStringRef string_;
148
149 void Clear_() {
150 if (string_ != NULL)
151 JSStringRelease(string_);
152 }
153
154 public:
155 CYJSString(const CYJSString &rhs) :
156 string_(CYCopyJSString(rhs.string_))
157 {
158 }
159
160 template <typename Arg0_>
161 CYJSString(Arg0_ arg0) :
162 string_(CYCopyJSString(arg0))
163 {
164 }
165
166 template <typename Arg0_, typename Arg1_>
167 CYJSString(Arg0_ arg0, Arg1_ arg1) :
168 string_(CYCopyJSString(arg0, arg1))
169 {
170 }
171
172 CYJSString &operator =(const CYJSString &rhs) {
173 Clear_();
174 string_ = CYCopyJSString(rhs.string_);
175 return *this;
176 }
177
178 ~CYJSString() {
179 Clear_();
180 }
181
182 void Clear() {
183 Clear_();
184 string_ = NULL;
185 }
186
187 operator JSStringRef() const {
188 return string_;
189 }
190};
191
37954781 192#endif/*CYCRIPT_JAVASCRIPT_HPP*/