]>
Commit | Line | Data |
---|---|---|
1 | /* Cycript - Error.hppution Server and Disassembler | |
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 | ||
40 | #ifndef CYCRIPT_HPP | |
41 | #define CYCRIPT_HPP | |
42 | ||
43 | #include <JavaScriptCore/JavaScript.h> | |
44 | ||
45 | #include <apr_pools.h> | |
46 | #include <ffi.h> | |
47 | #include <sig/types.hpp> | |
48 | #include <sstream> | |
49 | ||
50 | #include "String.hpp" | |
51 | ||
52 | #include <sqlite3.h> | |
53 | ||
54 | bool CYRecvAll_(int socket, uint8_t *data, size_t size); | |
55 | bool CYSendAll_(int socket, const uint8_t *data, size_t size); | |
56 | ||
57 | void CYNumerify(std::ostringstream &str, double value); | |
58 | void CYStringify(std::ostringstream &str, const char *data, size_t size); | |
59 | ||
60 | extern "C" void CYHandleClient(apr_pool_t *pool, int socket); | |
61 | ||
62 | template <typename Type_> | |
63 | bool CYRecvAll(int socket, Type_ *data, size_t size) { | |
64 | return CYRecvAll_(socket, reinterpret_cast<uint8_t *>(data), size); | |
65 | } | |
66 | ||
67 | template <typename Type_> | |
68 | bool CYSendAll(int socket, const Type_ *data, size_t size) { | |
69 | return CYSendAll_(socket, reinterpret_cast<const uint8_t *>(data), size); | |
70 | } | |
71 | ||
72 | JSGlobalContextRef CYGetJSContext(); | |
73 | apr_pool_t *CYGetGlobalPool(); | |
74 | JSObjectRef CYGetGlobalObject(JSContextRef context); | |
75 | const char *CYExecute(apr_pool_t *pool, const char *code); | |
76 | ||
77 | void CYSetArgs(int argc, const char *argv[]); | |
78 | ||
79 | bool CYCastBool(JSContextRef context, JSValueRef value); | |
80 | double CYCastDouble(JSContextRef context, JSValueRef value); | |
81 | ||
82 | CYUTF8String CYPoolUTF8String(apr_pool_t *pool, JSContextRef context, JSStringRef value); | |
83 | const char *CYPoolCString(apr_pool_t *pool, JSContextRef context, JSStringRef value); | |
84 | ||
85 | JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, size_t index); | |
86 | JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, JSStringRef name); | |
87 | void CYSetProperty(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value); | |
88 | void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value, JSPropertyAttributes attributes = kJSPropertyAttributeNone); | |
89 | ||
90 | JSValueRef CYCastJSValue(JSContextRef context, bool value); | |
91 | JSValueRef CYCastJSValue(JSContextRef context, double value); | |
92 | JSValueRef CYCastJSValue(JSContextRef context, int value); | |
93 | JSValueRef CYCastJSValue(JSContextRef context, unsigned int value); | |
94 | JSValueRef CYCastJSValue(JSContextRef context, long int value); | |
95 | JSValueRef CYCastJSValue(JSContextRef context, long unsigned int value); | |
96 | JSValueRef CYCastJSValue(JSContextRef context, long long int value); | |
97 | JSValueRef CYCastJSValue(JSContextRef context, long long unsigned int value); | |
98 | ||
99 | JSValueRef CYCastJSValue(JSContextRef context, JSStringRef value); | |
100 | JSValueRef CYCastJSValue(JSContextRef context, const char *value); | |
101 | ||
102 | JSObjectRef CYCastJSObject(JSContextRef context, JSValueRef value); | |
103 | JSValueRef CYJSUndefined(JSContextRef context); | |
104 | JSValueRef CYJSNull(JSContextRef context); | |
105 | ||
106 | void *CYCastPointer_(JSContextRef context, JSValueRef value); | |
107 | ||
108 | template <typename Type_> | |
109 | _finline Type_ CYCastPointer(JSContextRef context, JSValueRef value) { | |
110 | return reinterpret_cast<Type_>(CYCastPointer_(context, value)); | |
111 | } | |
112 | ||
113 | void CYPoolFFI(apr_pool_t *pool, JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, JSValueRef value); | |
114 | JSValueRef CYFromFFI(JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, bool initialize = false, JSObjectRef owner = NULL); | |
115 | ||
116 | 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)()); | |
117 | ||
118 | bool CYIsCallable(JSContextRef context, JSValueRef value); | |
119 | JSValueRef CYCallAsFunction(JSContextRef context, JSObjectRef function, JSObjectRef _this, size_t count, JSValueRef arguments[]); | |
120 | ||
121 | const char *CYPoolCCYON(apr_pool_t *pool, JSContextRef context, JSObjectRef object); | |
122 | ||
123 | struct CYHooks { | |
124 | void *(*ExecuteStart)(JSContextRef); | |
125 | void (*ExecuteEnd)(JSContextRef, void *); | |
126 | ||
127 | JSValueRef (*RuntimeProperty)(JSContextRef, CYUTF8String); | |
128 | void (*CallFunction)(JSContextRef, ffi_cif *, void (*)(), uint8_t *, void **); | |
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, sig::Type *type, ffi_type *ffi, JSObjectRef owner); | |
140 | ||
141 | void CYFinalize(JSObjectRef object); | |
142 | ||
143 | #endif/*CYCRIPT_HPP*/ |