1 /* Cycript - Inlining/Optimizing JavaScript Compiler
2 * Copyright (C) 2009 Jay Freeman (saurik)
5 /* Modified BSD License {{{ */
7 * Redistribution and use in source and binary
8 * forms, with or without modification, are permitted
9 * provided that the following conditions are met:
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
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.
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.
44 #include <JavaScriptCore/JavaScriptCore.h>
46 #include <JavaScriptCore/JavaScript.h>
49 #include <apr_pools.h>
51 #include <sig/types.hpp>
60 bool CYRecvAll_(int socket, uint8_t *data, size_t size);
61 bool CYSendAll_(int socket, const uint8_t *data, size_t size);
63 void CYNumerify(std::ostringstream &str, double value);
64 void CYStringify(std::ostringstream &str, const char *data, size_t size);
66 extern "C" void CYHandleClient(apr_pool_t *pool, int socket);
68 template <typename Type_>
69 bool CYRecvAll(int socket, Type_ *data, size_t size) {
70 return CYRecvAll_(socket, reinterpret_cast<uint8_t *>(data), size);
73 template <typename Type_>
74 bool CYSendAll(int socket, const Type_ *data, size_t size) {
75 return CYSendAll_(socket, reinterpret_cast<const uint8_t *>(data), size);
78 JSGlobalContextRef CYGetJSContext();
79 apr_pool_t *CYGetGlobalPool();
80 JSObjectRef CYGetGlobalObject(JSContextRef context);
82 void CYSetupContext(JSGlobalContextRef context);
83 const char *CYExecute(apr_pool_t *pool, const char *code);
85 void CYSetArgs(int argc, const char *argv[]);
87 bool CYCastBool(JSContextRef context, JSValueRef value);
88 double CYCastDouble(JSContextRef context, JSValueRef value);
90 CYUTF8String CYPoolUTF8String(apr_pool_t *pool, JSContextRef context, JSStringRef value);
91 const char *CYPoolCString(apr_pool_t *pool, JSContextRef context, JSStringRef value);
93 JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, size_t index);
94 JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, JSStringRef name);
95 void CYSetProperty(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value);
96 void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value, JSPropertyAttributes attributes = kJSPropertyAttributeNone);
98 JSObjectRef CYGetCachedObject(JSContextRef context, JSStringRef name);
100 JSValueRef CYCastJSValue(JSContextRef context, bool value);
101 JSValueRef CYCastJSValue(JSContextRef context, double value);
102 JSValueRef CYCastJSValue(JSContextRef context, int value);
103 JSValueRef CYCastJSValue(JSContextRef context, unsigned int value);
104 JSValueRef CYCastJSValue(JSContextRef context, long int value);
105 JSValueRef CYCastJSValue(JSContextRef context, long unsigned int value);
106 JSValueRef CYCastJSValue(JSContextRef context, long long int value);
107 JSValueRef CYCastJSValue(JSContextRef context, long long unsigned int value);
109 JSValueRef CYCastJSValue(JSContextRef context, JSStringRef value);
110 JSValueRef CYCastJSValue(JSContextRef context, const char *value);
112 JSObjectRef CYCastJSObject(JSContextRef context, JSValueRef value);
113 JSValueRef CYJSUndefined(JSContextRef context);
114 JSValueRef CYJSNull(JSContextRef context);
116 void *CYCastPointer_(JSContextRef context, JSValueRef value);
118 template <typename Type_>
119 _finline Type_ CYCastPointer(JSContextRef context, JSValueRef value) {
120 return reinterpret_cast<Type_>(CYCastPointer_(context, value));
123 void CYPoolFFI(apr_pool_t *pool, JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, JSValueRef value);
124 JSValueRef CYFromFFI(JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, bool initialize = false, JSObjectRef owner = NULL);
126 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)());
128 bool CYIsCallable(JSContextRef context, JSValueRef value);
129 JSValueRef CYCallAsFunction(JSContextRef context, JSObjectRef function, JSObjectRef _this, size_t count, const JSValueRef arguments[]);
131 const char *CYPoolCCYON(apr_pool_t *pool, JSContextRef context, JSObjectRef object);
134 void *(*ExecuteStart)(JSContextRef);
135 void (*ExecuteEnd)(JSContextRef, void *);
137 JSValueRef (*RuntimeProperty)(JSContextRef, CYUTF8String);
138 void (*CallFunction)(JSContextRef, ffi_cif *, void (*)(), uint8_t *, void **);
140 void (*Initialize)();
141 void (*SetupContext)(JSContextRef);
143 bool (*PoolFFI)(apr_pool_t *, JSContextRef, sig::Type *, ffi_type *, void *, JSValueRef);
144 JSValueRef (*FromFFI)(JSContextRef, sig::Type *, ffi_type *, void *, bool, JSObjectRef);
147 extern struct CYHooks *hooks_;
149 char *sqlite3_column_pooled(apr_pool_t *pool, sqlite3_stmt *stmt, int n);
151 JSObjectRef CYMakePointer(JSContextRef context, void *pointer, size_t length, sig::Type *type, ffi_type *ffi, JSObjectRef owner);
153 void CYFinalize(JSObjectRef object);
155 #endif/*CYCRIPT_HPP*/