2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
18 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 #ifndef JSCallbackObject_h
28 #define JSCallbackObject_h
30 #include "JSObjectRef.h"
31 #include "JSValueRef.h"
33 #include <wtf/PassOwnPtr.h>
37 struct JSCallbackObjectData
: WeakHandleOwner
{
38 JSCallbackObjectData(void* privateData
, JSClassRef jsClass
)
39 : privateData(privateData
)
42 JSClassRetain(jsClass
);
45 ~JSCallbackObjectData()
47 JSClassRelease(jsClass
);
50 JSValue
getPrivateProperty(const Identifier
& propertyName
) const
52 if (!m_privateProperties
)
54 return m_privateProperties
->getPrivateProperty(propertyName
);
57 void setPrivateProperty(JSGlobalData
& globalData
, JSCell
* owner
, const Identifier
& propertyName
, JSValue value
)
59 if (!m_privateProperties
)
60 m_privateProperties
= adoptPtr(new JSPrivatePropertyMap
);
61 m_privateProperties
->setPrivateProperty(globalData
, owner
, propertyName
, value
);
64 void deletePrivateProperty(const Identifier
& propertyName
)
66 if (!m_privateProperties
)
68 m_privateProperties
->deletePrivateProperty(propertyName
);
71 void visitChildren(SlotVisitor
& visitor
)
73 if (!m_privateProperties
)
75 m_privateProperties
->visitChildren(visitor
);
80 struct JSPrivatePropertyMap
{
81 JSValue
getPrivateProperty(const Identifier
& propertyName
) const
83 PrivatePropertyMap::const_iterator location
= m_propertyMap
.find(propertyName
.impl());
84 if (location
== m_propertyMap
.end())
86 return location
->second
.get();
89 void setPrivateProperty(JSGlobalData
& globalData
, JSCell
* owner
, const Identifier
& propertyName
, JSValue value
)
91 WriteBarrier
<Unknown
> empty
;
92 m_propertyMap
.add(propertyName
.impl(), empty
).iterator
->second
.set(globalData
, owner
, value
);
95 void deletePrivateProperty(const Identifier
& propertyName
)
97 m_propertyMap
.remove(propertyName
.impl());
100 void visitChildren(SlotVisitor
& visitor
)
102 for (PrivatePropertyMap::iterator ptr
= m_propertyMap
.begin(); ptr
!= m_propertyMap
.end(); ++ptr
) {
104 visitor
.append(&ptr
->second
);
109 typedef HashMap
<RefPtr
<StringImpl
>, WriteBarrier
<Unknown
>, IdentifierRepHash
> PrivatePropertyMap
;
110 PrivatePropertyMap m_propertyMap
;
112 OwnPtr
<JSPrivatePropertyMap
> m_privateProperties
;
113 virtual void finalize(Handle
<Unknown
>, void*);
117 template <class Parent
>
118 class JSCallbackObject
: public Parent
{
120 JSCallbackObject(ExecState
*, Structure
*, JSClassRef
, void* data
);
121 JSCallbackObject(JSGlobalData
&, JSClassRef
, Structure
*);
123 void finishCreation(ExecState
*);
124 void finishCreation(JSGlobalData
&);
129 static JSCallbackObject
* create(ExecState
* exec
, JSGlobalObject
* globalObject
, Structure
* structure
, JSClassRef classRef
, void* data
)
131 ASSERT_UNUSED(globalObject
, !structure
->globalObject() || structure
->globalObject() == globalObject
);
132 JSCallbackObject
* callbackObject
= new (NotNull
, allocateCell
<JSCallbackObject
>(*exec
->heap())) JSCallbackObject(exec
, structure
, classRef
, data
);
133 callbackObject
->finishCreation(exec
);
134 return callbackObject
;
136 static JSCallbackObject
* create(JSGlobalData
& globalData
, JSClassRef classRef
, Structure
* structure
)
138 JSCallbackObject
* callbackObject
= new (NotNull
, allocateCell
<JSCallbackObject
>(globalData
.heap
)) JSCallbackObject(globalData
, classRef
, structure
);
139 callbackObject
->finishCreation(globalData
);
140 return callbackObject
;
143 void setPrivate(void* data
);
146 static const ClassInfo s_info
;
148 JSClassRef
classRef() const { return m_callbackObjectData
->jsClass
; }
149 bool inherits(JSClassRef
) const;
151 static Structure
* createStructure(JSGlobalData
&, JSGlobalObject
*, JSValue
);
153 JSValue
getPrivateProperty(const Identifier
& propertyName
) const
155 return m_callbackObjectData
->getPrivateProperty(propertyName
);
158 void setPrivateProperty(JSGlobalData
& globalData
, const Identifier
& propertyName
, JSValue value
)
160 m_callbackObjectData
->setPrivateProperty(globalData
, this, propertyName
, value
);
163 void deletePrivateProperty(const Identifier
& propertyName
)
165 m_callbackObjectData
->deletePrivateProperty(propertyName
);
168 using Parent::methodTable
;
171 static const unsigned StructureFlags
= ProhibitsPropertyCaching
| OverridesGetOwnPropertySlot
| ImplementsHasInstance
| OverridesHasInstance
| OverridesVisitChildren
| OverridesGetPropertyNames
| Parent::StructureFlags
;
174 static UString
className(const JSObject
*);
176 static void destroy(JSCell
*);
178 static JSValue
defaultValue(const JSObject
*, ExecState
*, PreferredPrimitiveType
);
180 static bool getOwnPropertySlot(JSCell
*, ExecState
*, const Identifier
&, PropertySlot
&);
181 static bool getOwnPropertyDescriptor(JSObject
*, ExecState
*, const Identifier
&, PropertyDescriptor
&);
183 static void put(JSCell
*, ExecState
*, const Identifier
&, JSValue
, PutPropertySlot
&);
185 static bool deleteProperty(JSCell
*, ExecState
*, const Identifier
&);
186 static bool deletePropertyByIndex(JSCell
*, ExecState
*, unsigned);
188 static bool hasInstance(JSObject
*, ExecState
*, JSValue
, JSValue proto
);
190 static void getOwnPropertyNames(JSObject
*, ExecState
*, PropertyNameArray
&, EnumerationMode
);
192 static ConstructType
getConstructData(JSCell
*, ConstructData
&);
193 static CallType
getCallData(JSCell
*, CallData
&);
195 static void visitChildren(JSCell
* cell
, SlotVisitor
& visitor
)
197 JSCallbackObject
* thisObject
= jsCast
<JSCallbackObject
*>(cell
);
198 ASSERT_GC_OBJECT_INHERITS((static_cast<Parent
*>(thisObject
)), &JSCallbackObject
<Parent
>::s_info
);
199 COMPILE_ASSERT(StructureFlags
& OverridesVisitChildren
, OverridesVisitChildrenWithoutSettingFlag
);
200 ASSERT(thisObject
->Parent::structure()->typeInfo().overridesVisitChildren());
201 Parent::visitChildren(thisObject
, visitor
);
202 thisObject
->m_callbackObjectData
->visitChildren(visitor
);
205 void init(ExecState
*);
207 static JSCallbackObject
* asCallbackObject(JSValue
);
209 static EncodedJSValue JSC_HOST_CALL
call(ExecState
*);
210 static EncodedJSValue JSC_HOST_CALL
construct(ExecState
*);
212 JSValue
getStaticValue(ExecState
*, const Identifier
&);
213 static JSValue
staticFunctionGetter(ExecState
*, JSValue
, const Identifier
&);
214 static JSValue
callbackGetter(ExecState
*, JSValue
, const Identifier
&);
216 OwnPtr
<JSCallbackObjectData
> m_callbackObjectData
;
221 // include the actual template class implementation
222 #include "JSCallbackObjectFunctions.h"
224 #endif // JSCallbackObject_h