1 /* Cycript - Error.hppution Server and Disassembler
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.
40 #ifndef CYCRIPT_INTERNAL_HPP
41 #define CYCRIPT_INTERNAL_HPP
43 #include "Pooling.hpp"
45 #include <JavaScriptCore/JSBase.h>
46 #include <JavaScriptCore/JSObjectRef.h>
47 #include <JavaScriptCore/JSValueRef.h>
49 #include <sig/parse.hpp>
50 #include <sig/ffi_type.hpp>
52 void Structor_(apr_pool_t *pool, sig::Type *&type);
54 struct Type_privateData :
57 static JSClassRef Class_;
62 void Set(sig::Type *type) {
63 type_ = new(pool_) sig::Type;
64 sig::Copy(pool_, *type_, *type);
67 Type_privateData(apr_pool_t *pool, const char *type) :
70 _assert(pool != NULL);
72 sig::Signature signature;
73 sig::Parse(pool_, &signature, type, &Structor_);
74 type_ = signature.elements[0].type;
77 Type_privateData(const char *type) :
80 sig::Signature signature;
81 sig::Parse(pool_, &signature, type, &Structor_);
82 type_ = signature.elements[0].type;
85 Type_privateData(sig::Type *type) :
92 Type_privateData(sig::Type *type, ffi_type *ffi) {
93 ffi_ = new(pool_) ffi_type;
94 sig::Copy(pool_, *ffi_, *ffi);
100 ffi_ = new(pool_) ffi_type;
102 sig::Element element;
104 element.type = type_;
107 sig::Signature signature;
108 signature.elements = &element;
112 sig::sig_ffi_cif(pool_, &sig::ObjectiveC, &signature, &cif);
128 CYValue(const void *value) :
129 value_(const_cast<void *>(value))
133 CYValue(const CYValue &rhs) :
138 virtual Type_privateData *GetType() const {
147 JSContextRef context_;
151 CYOwned(void *value, JSContextRef context, JSObjectRef owner) :
157 JSValueProtect(context_, owner_);
162 JSValueUnprotect(context_, owner_);
165 JSObjectRef GetOwner() const {
174 sig::Signature signature_;
177 Functor(const char *type, void (*value)()) :
178 CYValue(reinterpret_cast<void *>(value))
180 sig::Parse(pool_, &signature_, type, &Structor_);
181 sig::sig_ffi_cif(pool_, &sig::ObjectiveC, &signature_, &cif_);
184 void (*GetValue())() const {
185 return reinterpret_cast<void (*)()>(value_);
188 static JSStaticFunction const * const StaticFunctions;
191 struct Closure_privateData :
194 JSContextRef context_;
195 JSObjectRef function_;
197 Closure_privateData(JSContextRef context, JSObjectRef function, const char *type) :
198 cy::Functor(type, NULL),
202 JSValueProtect(context_, function_);
205 virtual ~Closure_privateData() {
206 JSValueUnprotect(context_, function_);
210 Closure_privateData *CYMakeFunctor_(JSContextRef context, JSObjectRef function, const char *type, void (*callback)(ffi_cif *, void *, void **, void *));
212 #endif/*CYCRIPT_INTERNAL_HPP*/