]> git.saurik.com Git - apple/javascriptcore.git/blame - API/APICast.h
JavaScriptCore-7601.1.46.3.tar.gz
[apple/javascriptcore.git] / API / APICast.h
CommitLineData
b37bf2e1 1/*
81345200 2 * Copyright (C) 2006 Apple Inc. All rights reserved.
b37bf2e1
A
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
81345200 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
b37bf2e1
A
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
81345200 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
b37bf2e1
A
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#ifndef APICast_h
27#define APICast_h
28
ba379fdc 29#include "JSAPIValueWrapper.h"
93a37866 30#include "JSCJSValue.h"
81345200 31#include "JSCJSValueInlines.h"
f9bf01c6 32#include "JSGlobalObject.h"
b37bf2e1 33
9dae56ea 34namespace JSC {
b37bf2e1 35 class ExecState;
b37bf2e1 36 class PropertyNameArray;
93a37866 37 class VM;
9dae56ea 38 class JSObject;
ba379fdc 39 class JSValue;
b37bf2e1
A
40}
41
9dae56ea 42typedef const struct OpaqueJSContextGroup* JSContextGroupRef;
b37bf2e1
A
43typedef const struct OpaqueJSContext* JSContextRef;
44typedef struct OpaqueJSContext* JSGlobalContextRef;
b37bf2e1
A
45typedef struct OpaqueJSPropertyNameAccumulator* JSPropertyNameAccumulatorRef;
46typedef const struct OpaqueJSValue* JSValueRef;
47typedef struct OpaqueJSValue* JSObjectRef;
48
49/* Opaque typing convenience methods */
50
9dae56ea 51inline JSC::ExecState* toJS(JSContextRef c)
b37bf2e1 52{
f9bf01c6 53 ASSERT(c);
9dae56ea 54 return reinterpret_cast<JSC::ExecState*>(const_cast<OpaqueJSContext*>(c));
b37bf2e1
A
55}
56
9dae56ea 57inline JSC::ExecState* toJS(JSGlobalContextRef c)
b37bf2e1 58{
f9bf01c6 59 ASSERT(c);
9dae56ea 60 return reinterpret_cast<JSC::ExecState*>(c);
b37bf2e1
A
61}
62
f9bf01c6 63inline JSC::JSValue toJS(JSC::ExecState* exec, JSValueRef v)
b37bf2e1 64{
f9bf01c6 65 ASSERT_UNUSED(exec, exec);
ba379fdc
A
66#if USE(JSVALUE32_64)
67 JSC::JSCell* jsCell = reinterpret_cast<JSC::JSCell*>(const_cast<OpaqueJSValue*>(v));
68 if (!jsCell)
93a37866
A
69 return JSC::jsNull();
70 JSC::JSValue result;
ba379fdc 71 if (jsCell->isAPIValueWrapper())
93a37866
A
72 result = JSC::jsCast<JSC::JSAPIValueWrapper*>(jsCell)->value();
73 else
74 result = jsCell;
ba379fdc 75#else
93a37866 76 JSC::JSValue result = JSC::JSValue::decode(reinterpret_cast<JSC::EncodedJSValue>(const_cast<OpaqueJSValue*>(v)));
ba379fdc 77#endif
93a37866
A
78 if (!result)
79 return JSC::jsNull();
80 if (result.isCell())
81 RELEASE_ASSERT(result.asCell()->methodTable());
82 return result;
b37bf2e1
A
83}
84
f9bf01c6
A
85inline JSC::JSValue toJSForGC(JSC::ExecState* exec, JSValueRef v)
86{
87 ASSERT_UNUSED(exec, exec);
f9bf01c6
A
88#if USE(JSVALUE32_64)
89 JSC::JSCell* jsCell = reinterpret_cast<JSC::JSCell*>(const_cast<OpaqueJSValue*>(v));
90 if (!jsCell)
91 return JSC::JSValue();
93a37866 92 JSC::JSValue result = jsCell;
f9bf01c6 93#else
93a37866 94 JSC::JSValue result = JSC::JSValue::decode(reinterpret_cast<JSC::EncodedJSValue>(const_cast<OpaqueJSValue*>(v)));
f9bf01c6 95#endif
93a37866
A
96 if (result && result.isCell())
97 RELEASE_ASSERT(result.asCell()->methodTable());
98 return result;
f9bf01c6
A
99}
100
93a37866
A
101// Used in JSObjectGetPrivate as that may be called during finalization
102inline JSC::JSObject* uncheckedToJS(JSObjectRef o)
b37bf2e1 103{
9dae56ea 104 return reinterpret_cast<JSC::JSObject*>(o);
b37bf2e1
A
105}
106
93a37866
A
107inline JSC::JSObject* toJS(JSObjectRef o)
108{
109 JSC::JSObject* object = uncheckedToJS(o);
110 if (object)
111 RELEASE_ASSERT(object->methodTable());
112 return object;
113}
114
9dae56ea 115inline JSC::PropertyNameArray* toJS(JSPropertyNameAccumulatorRef a)
b37bf2e1 116{
9dae56ea 117 return reinterpret_cast<JSC::PropertyNameArray*>(a);
b37bf2e1
A
118}
119
93a37866 120inline JSC::VM* toJS(JSContextGroupRef g)
b37bf2e1 121{
93a37866 122 return reinterpret_cast<JSC::VM*>(const_cast<OpaqueJSContextGroup*>(g));
b37bf2e1
A
123}
124
ba379fdc 125inline JSValueRef toRef(JSC::ExecState* exec, JSC::JSValue v)
b37bf2e1 126{
81345200 127 ASSERT(exec->vm().currentThreadIsHoldingAPILock());
ba379fdc
A
128#if USE(JSVALUE32_64)
129 if (!v)
130 return 0;
131 if (!v.isCell())
14957cd0
A
132 return reinterpret_cast<JSValueRef>(JSC::jsAPIValueWrapper(exec, v).asCell());
133 return reinterpret_cast<JSValueRef>(v.asCell());
ba379fdc
A
134#else
135 UNUSED_PARAM(exec);
136 return reinterpret_cast<JSValueRef>(JSC::JSValue::encode(v));
137#endif
b37bf2e1
A
138}
139
9dae56ea 140inline JSObjectRef toRef(JSC::JSObject* o)
b37bf2e1
A
141{
142 return reinterpret_cast<JSObjectRef>(o);
143}
144
9dae56ea 145inline JSObjectRef toRef(const JSC::JSObject* o)
b37bf2e1 146{
9dae56ea 147 return reinterpret_cast<JSObjectRef>(const_cast<JSC::JSObject*>(o));
b37bf2e1
A
148}
149
9dae56ea 150inline JSContextRef toRef(JSC::ExecState* e)
b37bf2e1
A
151{
152 return reinterpret_cast<JSContextRef>(e);
153}
154
9dae56ea 155inline JSGlobalContextRef toGlobalRef(JSC::ExecState* e)
b37bf2e1 156{
f9bf01c6 157 ASSERT(e == e->lexicalGlobalObject()->globalExec());
b37bf2e1
A
158 return reinterpret_cast<JSGlobalContextRef>(e);
159}
160
9dae56ea 161inline JSPropertyNameAccumulatorRef toRef(JSC::PropertyNameArray* l)
b37bf2e1
A
162{
163 return reinterpret_cast<JSPropertyNameAccumulatorRef>(l);
164}
165
93a37866 166inline JSContextGroupRef toRef(JSC::VM* g)
9dae56ea
A
167{
168 return reinterpret_cast<JSContextGroupRef>(g);
169}
170
b37bf2e1 171#endif // APICast_h