]>
Commit | Line | Data |
---|---|---|
e91fbe93 | 1 | /* Cycript - Inlining/Optimizing JavaScript Compiler |
d15b59f5 JF |
2 | * Copyright (C) 2009 Jay Freeman (saurik) |
3 | */ | |
4 | ||
5 | /* Modified BSD License {{{ */ | |
6 | /* | |
7 | * Redistribution and use in source and binary | |
8 | * forms, with or without modification, are permitted | |
9 | * provided that the following conditions are met: | |
10 | * | |
11 | * 1. Redistributions of source code must retain the | |
12 | * above copyright notice, this list of conditions | |
13 | * and the following disclaimer. | |
14 | * 2. Redistributions in binary form must reproduce the | |
15 | * above copyright notice, this list of conditions | |
16 | * and the following disclaimer in the documentation | |
17 | * and/or other materials provided with the | |
18 | * distribution. | |
19 | * 3. The name of the author may not be used to endorse | |
20 | * or promote products derived from this software | |
21 | * without specific prior written permission. | |
22 | * | |
23 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' | |
24 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, | |
25 | * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |
26 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
27 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE | |
28 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | |
29 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | |
30 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |
31 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
32 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | |
33 | * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR | |
34 | * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | |
35 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | |
36 | * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
37 | */ | |
38 | /* }}} */ | |
39 | ||
37954781 JF |
40 | #ifndef CYCRIPT_JAVASCRIPT_HPP |
41 | #define CYCRIPT_JAVASCRIPT_HPP | |
42 | ||
9cad30fa JF |
43 | #include <JavaScriptCore/JSBase.h> |
44 | #include <JavaScriptCore/JSContextRef.h> | |
45 | #include <JavaScriptCore/JSStringRef.h> | |
46 | #include <JavaScriptCore/JSObjectRef.h> | |
47 | #include <JavaScriptCore/JSValueRef.h> | |
48 | ||
49 | #include <ffi.h> | |
50 | #include <sqlite3.h> | |
51 | ||
498c3570 JF |
52 | extern JSStringRef Array_s; |
53 | extern JSStringRef cy_s; | |
00b9328f JF |
54 | extern JSStringRef length_s; |
55 | extern JSStringRef message_s; | |
56 | extern JSStringRef name_s; | |
57 | extern JSStringRef pop_s; | |
58 | extern JSStringRef prototype_s; | |
59 | extern JSStringRef push_s; | |
60 | extern JSStringRef splice_s; | |
61 | extern JSStringRef toCYON_s; | |
62 | extern JSStringRef toJSON_s; | |
37954781 | 63 | |
9cad30fa JF |
64 | void CYInitializeDynamic(); |
65 | JSGlobalContextRef CYGetJSContext(); | |
66 | JSObjectRef CYGetGlobalObject(JSContextRef context); | |
67 | ||
68 | extern "C" void CYSetupContext(JSGlobalContextRef context); | |
69 | const char *CYExecute(apr_pool_t *pool, const char *code); | |
70 | ||
71 | void CYSetArgs(int argc, const char *argv[]); | |
72 | ||
73 | bool CYCastBool(JSContextRef context, JSValueRef value); | |
74 | double CYCastDouble(JSContextRef context, JSValueRef value); | |
75 | ||
76 | CYUTF8String CYPoolUTF8String(apr_pool_t *pool, JSContextRef context, JSStringRef value); | |
77 | const char *CYPoolCString(apr_pool_t *pool, JSContextRef context, JSStringRef value); | |
78 | ||
79 | JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, size_t index); | |
80 | JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, JSStringRef name); | |
81 | ||
82 | void CYSetProperty(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value); | |
83 | void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value, JSPropertyAttributes attributes = kJSPropertyAttributeNone); | |
84 | void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef (*callback)(JSContextRef, JSObjectRef, JSObjectRef, size_t, const JSValueRef[], JSValueRef *), JSPropertyAttributes attributes = kJSPropertyAttributeNone); | |
85 | ||
86 | JSObjectRef CYGetCachedObject(JSContextRef context, JSStringRef name); | |
87 | ||
88 | JSValueRef CYCastJSValue(JSContextRef context, bool value); | |
89 | JSValueRef CYCastJSValue(JSContextRef context, double value); | |
90 | JSValueRef CYCastJSValue(JSContextRef context, int value); | |
91 | JSValueRef CYCastJSValue(JSContextRef context, unsigned int value); | |
92 | JSValueRef CYCastJSValue(JSContextRef context, long int value); | |
93 | JSValueRef CYCastJSValue(JSContextRef context, long unsigned int value); | |
94 | JSValueRef CYCastJSValue(JSContextRef context, long long int value); | |
95 | JSValueRef CYCastJSValue(JSContextRef context, long long unsigned int value); | |
96 | ||
97 | JSValueRef CYCastJSValue(JSContextRef context, JSStringRef value); | |
98 | JSValueRef CYCastJSValue(JSContextRef context, const char *value); | |
99 | ||
100 | JSObjectRef CYCastJSObject(JSContextRef context, JSValueRef value); | |
101 | JSValueRef CYJSUndefined(JSContextRef context); | |
102 | JSValueRef CYJSNull(JSContextRef context); | |
103 | ||
104 | void *CYCastPointer_(JSContextRef context, JSValueRef value); | |
105 | ||
106 | template <typename Type_> | |
107 | _finline Type_ CYCastPointer(JSContextRef context, JSValueRef value) { | |
108 | return reinterpret_cast<Type_>(CYCastPointer_(context, value)); | |
109 | } | |
110 | ||
111 | void CYPoolFFI(apr_pool_t *pool, JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, JSValueRef value); | |
112 | JSValueRef CYFromFFI(JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, bool initialize = false, JSObjectRef owner = NULL); | |
113 | ||
114 | JSValueRef CYCallFunction(apr_pool_t *pool, JSContextRef context, size_t setups, void *setup[], size_t count, const JSValueRef arguments[], bool initialize, JSValueRef *exception, sig::Signature *signature, ffi_cif *cif, void (*function)()); | |
115 | ||
116 | bool CYIsCallable(JSContextRef context, JSValueRef value); | |
117 | JSValueRef CYCallAsFunction(JSContextRef context, JSObjectRef function, JSObjectRef _this, size_t count, const JSValueRef arguments[]); | |
118 | ||
119 | const char *CYPoolCCYON(apr_pool_t *pool, JSContextRef context, JSObjectRef object); | |
120 | ||
121 | struct CYHooks { | |
122 | void *(*ExecuteStart)(JSContextRef); | |
123 | void (*ExecuteEnd)(JSContextRef, void *); | |
124 | ||
125 | JSValueRef (*RuntimeProperty)(JSContextRef, CYUTF8String); | |
126 | void (*CallFunction)(JSContextRef, ffi_cif *, void (*)(), uint8_t *, void **); | |
127 | ||
128 | void (*Initialize)(); | |
129 | void (*SetupContext)(JSContextRef); | |
130 | ||
131 | bool (*PoolFFI)(apr_pool_t *, JSContextRef, sig::Type *, ffi_type *, void *, JSValueRef); | |
132 | JSValueRef (*FromFFI)(JSContextRef, sig::Type *, ffi_type *, void *, bool, JSObjectRef); | |
133 | }; | |
134 | ||
135 | extern struct CYHooks *hooks_; | |
136 | ||
137 | char *sqlite3_column_pooled(apr_pool_t *pool, sqlite3_stmt *stmt, int n); | |
138 | ||
139 | JSObjectRef CYMakePointer(JSContextRef context, void *pointer, size_t length, sig::Type *type, ffi_type *ffi, JSObjectRef owner); | |
140 | ||
141 | void CYFinalize(JSObjectRef object); | |
142 | ||
143 | const char *CYPoolCString(apr_pool_t *pool, JSContextRef context, JSValueRef value); | |
144 | ||
145 | JSStringRef CYCopyJSString(const char *value); | |
146 | JSStringRef CYCopyJSString(JSStringRef value); | |
147 | JSStringRef CYCopyJSString(CYUTF8String value); | |
148 | JSStringRef CYCopyJSString(JSContextRef context, JSValueRef value); | |
149 | ||
150 | class CYJSString { | |
151 | private: | |
152 | JSStringRef string_; | |
153 | ||
154 | void Clear_() { | |
155 | if (string_ != NULL) | |
156 | JSStringRelease(string_); | |
157 | } | |
158 | ||
159 | public: | |
160 | CYJSString(const CYJSString &rhs) : | |
161 | string_(CYCopyJSString(rhs.string_)) | |
162 | { | |
163 | } | |
164 | ||
165 | template <typename Arg0_> | |
166 | CYJSString(Arg0_ arg0) : | |
167 | string_(CYCopyJSString(arg0)) | |
168 | { | |
169 | } | |
170 | ||
171 | template <typename Arg0_, typename Arg1_> | |
172 | CYJSString(Arg0_ arg0, Arg1_ arg1) : | |
173 | string_(CYCopyJSString(arg0, arg1)) | |
174 | { | |
175 | } | |
176 | ||
177 | CYJSString &operator =(const CYJSString &rhs) { | |
178 | Clear_(); | |
179 | string_ = CYCopyJSString(rhs.string_); | |
180 | return *this; | |
181 | } | |
182 | ||
183 | ~CYJSString() { | |
184 | Clear_(); | |
185 | } | |
186 | ||
187 | void Clear() { | |
188 | Clear_(); | |
189 | string_ = NULL; | |
190 | } | |
191 | ||
192 | operator JSStringRef() const { | |
193 | return string_; | |
194 | } | |
195 | }; | |
196 | ||
37954781 | 197 | #endif/*CYCRIPT_JAVASCRIPT_HPP*/ |