]> git.saurik.com Git - cycript.git/blame - cycript.hpp
Updated todo, license, and title.
[cycript.git] / cycript.hpp
CommitLineData
d15b59f5 1/* Cycript - Error.hppution Server and Disassembler
b4aa79af
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
d35a3b07
JF
40#ifndef CYCRIPT_HPP
41#define CYCRIPT_HPP
057f943f 42
b09da87b 43#include <JavaScriptCore/JavaScript.h>
057f943f 44
9185d5ef 45#include <apr_pools.h>
4afefdd9 46#include <ffi.h>
4afefdd9 47#include <sig/types.hpp>
520c130f 48#include <sstream>
057f943f 49
37954781
JF
50#include "String.hpp"
51
52#include <sqlite3.h>
53
967067aa
JF
54bool CYRecvAll_(int socket, uint8_t *data, size_t size);
55bool CYSendAll_(int socket, const uint8_t *data, size_t size);
56
856b8cd0 57void CYNumerify(std::ostringstream &str, double value);
520c130f 58void CYStringify(std::ostringstream &str, const char *data, size_t size);
b24eb750 59
1ef7d061
JF
60extern "C" void CYHandleClient(apr_pool_t *pool, int socket);
61
967067aa
JF
62template <typename Type_>
63bool CYRecvAll(int socket, Type_ *data, size_t size) {
64 return CYRecvAll_(socket, reinterpret_cast<uint8_t *>(data), size);
65}
66
67template <typename Type_>
68bool CYSendAll(int socket, const Type_ *data, size_t size) {
69 return CYSendAll_(socket, reinterpret_cast<const uint8_t *>(data), size);
70}
71
478d4ed0 72JSGlobalContextRef CYGetJSContext();
520c130f 73apr_pool_t *CYGetGlobalPool();
579ed526 74JSObjectRef CYGetGlobalObject(JSContextRef context);
967067aa 75const char *CYExecute(apr_pool_t *pool, const char *code);
4afefdd9
JF
76
77void CYSetArgs(int argc, const char *argv[]);
78
37954781
JF
79bool CYCastBool(JSContextRef context, JSValueRef value);
80double CYCastDouble(JSContextRef context, JSValueRef value);
81const char *CYPoolCString(apr_pool_t *pool, JSContextRef context, JSStringRef value);
82
83JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, size_t index);
84JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, JSStringRef name);
85void CYSetProperty(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value);
86void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value, JSPropertyAttributes attributes = kJSPropertyAttributeNone);
87
88JSValueRef CYCastJSValue(JSContextRef context, bool value);
89JSValueRef CYCastJSValue(JSContextRef context, double value);
90JSValueRef CYCastJSValue(JSContextRef context, int value);
91JSValueRef CYCastJSValue(JSContextRef context, unsigned int value);
92JSValueRef CYCastJSValue(JSContextRef context, long int value);
93JSValueRef CYCastJSValue(JSContextRef context, long unsigned int value);
94JSValueRef CYCastJSValue(JSContextRef context, long long int value);
95JSValueRef CYCastJSValue(JSContextRef context, long long unsigned int value);
96
97JSValueRef CYCastJSValue(JSContextRef context, JSStringRef value);
98JSValueRef CYCastJSValue(JSContextRef context, const char *value);
99
100JSObjectRef CYCastJSObject(JSContextRef context, JSValueRef value);
101JSValueRef CYJSUndefined(JSContextRef context);
102JSValueRef CYJSNull(JSContextRef context);
103
104void *CYCastPointer_(JSContextRef context, JSValueRef value);
105
106template <typename Type_>
107_finline Type_ CYCastPointer(JSContextRef context, JSValueRef value) {
108 return reinterpret_cast<Type_>(CYCastPointer_(context, value));
109}
110
111void CYPoolFFI(apr_pool_t *pool, JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, JSValueRef value);
112JSValueRef CYFromFFI(JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, bool initialize = false, JSObjectRef owner = NULL);
113
114JSValueRef 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
116bool CYIsCallable(JSContextRef context, JSValueRef value);
117JSValueRef CYCallAsFunction(JSContextRef context, JSObjectRef function, JSObjectRef _this, size_t count, JSValueRef arguments[]);
118
119const char *CYPoolCCYON(apr_pool_t *pool, JSContextRef context, JSObjectRef object);
120
121struct CYHooks {
122 void *(*ExecuteStart)();
123 void (*ExecuteEnd)(void *);
124 JSValueRef (*RuntimeProperty)(JSContextRef, CYUTF8String);
125 bool (*PoolFFI)(apr_pool_t *, JSContextRef, sig::Type *, ffi_type *, void *, JSValueRef);
126 JSValueRef (*FromFFI)(JSContextRef, sig::Type *, ffi_type *, void *, bool, JSObjectRef);
127};
128
129extern struct CYHooks *hooks_;
130
131char *sqlite3_column_pooled(apr_pool_t *pool, sqlite3_stmt *stmt, int n);
132
133JSObjectRef CYMakePointer(JSContextRef context, void *pointer, sig::Type *type, ffi_type *ffi, JSObjectRef owner);
134
135void CYFinalize(JSObjectRef object);
136
d35a3b07 137#endif/*CYCRIPT_HPP*/