]> git.saurik.com Git - cycript.git/blame_incremental - JavaScript.hpp
Fix multi-line comments that end with **/.
[cycript.git] / JavaScript.hpp
... / ...
CommitLineData
1/* Cycript - Inlining/Optimizing JavaScript Compiler
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_JAVASCRIPT_HPP
41#define CYCRIPT_JAVASCRIPT_HPP
42
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#ifdef HAVE_FFI_FFI_H
50#include <ffi/ffi.h>
51#else
52#include <ffi.h>
53#endif
54
55extern JSStringRef Array_s;
56extern JSStringRef cy_s;
57extern JSStringRef length_s;
58extern JSStringRef message_s;
59extern JSStringRef name_s;
60extern JSStringRef pop_s;
61extern JSStringRef prototype_s;
62extern JSStringRef push_s;
63extern JSStringRef splice_s;
64extern JSStringRef toCYON_s;
65extern JSStringRef toJSON_s;
66
67void CYInitializeDynamic();
68JSGlobalContextRef CYGetJSContext();
69JSObjectRef CYGetGlobalObject(JSContextRef context);
70
71extern "C" void CYSetupContext(JSGlobalContextRef context);
72const char *CYExecute(apr_pool_t *pool, const char *code);
73
74void CYSetArgs(int argc, const char *argv[]);
75
76bool CYCastBool(JSContextRef context, JSValueRef value);
77double CYCastDouble(JSContextRef context, JSValueRef value);
78
79CYUTF8String CYPoolUTF8String(apr_pool_t *pool, JSContextRef context, JSStringRef value);
80const char *CYPoolCString(apr_pool_t *pool, JSContextRef context, JSStringRef value);
81
82JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, size_t index);
83JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, JSStringRef name);
84
85void CYSetProperty(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value);
86void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value, JSPropertyAttributes attributes = kJSPropertyAttributeNone);
87void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef (*callback)(JSContextRef, JSObjectRef, JSObjectRef, size_t, const JSValueRef[], JSValueRef *), JSPropertyAttributes attributes = kJSPropertyAttributeNone);
88
89JSObjectRef CYGetCachedObject(JSContextRef context, JSStringRef name);
90
91JSValueRef CYCastJSValue(JSContextRef context, bool value);
92JSValueRef CYCastJSValue(JSContextRef context, double value);
93JSValueRef CYCastJSValue(JSContextRef context, int value);
94JSValueRef CYCastJSValue(JSContextRef context, unsigned int value);
95JSValueRef CYCastJSValue(JSContextRef context, long int value);
96JSValueRef CYCastJSValue(JSContextRef context, long unsigned int value);
97JSValueRef CYCastJSValue(JSContextRef context, long long int value);
98JSValueRef CYCastJSValue(JSContextRef context, long long unsigned int value);
99
100JSValueRef CYCastJSValue(JSContextRef context, JSStringRef value);
101JSValueRef CYCastJSValue(JSContextRef context, const char *value);
102
103JSObjectRef CYCastJSObject(JSContextRef context, JSValueRef value);
104JSValueRef CYJSUndefined(JSContextRef context);
105JSValueRef CYJSNull(JSContextRef context);
106
107void *CYCastPointer_(JSContextRef context, JSValueRef value);
108
109template <typename Type_>
110_finline Type_ CYCastPointer(JSContextRef context, JSValueRef value) {
111 return reinterpret_cast<Type_>(CYCastPointer_(context, value));
112}
113
114void CYPoolFFI(apr_pool_t *pool, JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, JSValueRef value);
115JSValueRef CYFromFFI(JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, bool initialize = false, JSObjectRef owner = NULL);
116
117JSValueRef 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)());
118
119bool CYIsCallable(JSContextRef context, JSValueRef value);
120JSValueRef CYCallAsFunction(JSContextRef context, JSObjectRef function, JSObjectRef _this, size_t count, const JSValueRef arguments[]);
121
122const char *CYPoolCCYON(apr_pool_t *pool, JSContextRef context, JSObjectRef object);
123
124struct CYHooks {
125 void *(*ExecuteStart)(JSContextRef);
126 void (*ExecuteEnd)(JSContextRef, void *);
127
128 JSValueRef (*RuntimeProperty)(JSContextRef, CYUTF8String);
129 void (*CallFunction)(JSContextRef, ffi_cif *, void (*)(), uint8_t *, void **);
130
131 void (*Initialize)();
132 void (*SetupContext)(JSContextRef);
133
134 bool (*PoolFFI)(apr_pool_t *, JSContextRef, sig::Type *, ffi_type *, void *, JSValueRef);
135 JSValueRef (*FromFFI)(JSContextRef, sig::Type *, ffi_type *, void *, bool, JSObjectRef);
136};
137
138extern struct CYHooks *hooks_;
139
140JSObjectRef CYMakePointer(JSContextRef context, void *pointer, size_t length, sig::Type *type, ffi_type *ffi, JSObjectRef owner);
141
142void CYFinalize(JSObjectRef object);
143
144const char *CYPoolCString(apr_pool_t *pool, JSContextRef context, JSValueRef value);
145
146JSStringRef CYCopyJSString(const char *value);
147JSStringRef CYCopyJSString(JSStringRef value);
148JSStringRef CYCopyJSString(CYUTF8String value);
149JSStringRef CYCopyJSString(JSContextRef context, JSValueRef value);
150
151class CYJSString {
152 private:
153 JSStringRef string_;
154
155 void Clear_() {
156 if (string_ != NULL)
157 JSStringRelease(string_);
158 }
159
160 public:
161 CYJSString(const CYJSString &rhs) :
162 string_(CYCopyJSString(rhs.string_))
163 {
164 }
165
166 template <typename Arg0_>
167 CYJSString(Arg0_ arg0) :
168 string_(CYCopyJSString(arg0))
169 {
170 }
171
172 template <typename Arg0_, typename Arg1_>
173 CYJSString(Arg0_ arg0, Arg1_ arg1) :
174 string_(CYCopyJSString(arg0, arg1))
175 {
176 }
177
178 CYJSString &operator =(const CYJSString &rhs) {
179 Clear_();
180 string_ = CYCopyJSString(rhs.string_);
181 return *this;
182 }
183
184 ~CYJSString() {
185 Clear_();
186 }
187
188 void Clear() {
189 Clear_();
190 string_ = NULL;
191 }
192
193 operator JSStringRef() const {
194 return string_;
195 }
196};
197
198#endif/*CYCRIPT_JAVASCRIPT_HPP*/