- virtual void put(ExecState*, const Identifier&, JSValue*, int attr);
- virtual void put(ExecState*, unsigned, JSValue*, int attr);
-
- virtual bool deleteProperty(ExecState*, const Identifier&);
- virtual bool deleteProperty(ExecState*, unsigned);
-
- virtual bool implementsConstruct() const;
- virtual JSObject* construct(ExecState*, const List& args);
-
- virtual bool implementsHasInstance() const;
- virtual bool hasInstance(ExecState *exec, JSValue *value);
+ ~JSCallbackObjectData()
+ {
+ JSClassRelease(jsClass);
+ }
+
+ JSValue getPrivateProperty(const Identifier& propertyName) const
+ {
+ if (!m_privateProperties)
+ return JSValue();
+ return m_privateProperties->getPrivateProperty(propertyName);
+ }
+
+ void setPrivateProperty(VM& vm, JSCell* owner, const Identifier& propertyName, JSValue value)
+ {
+ if (!m_privateProperties)
+ m_privateProperties = std::make_unique<JSPrivatePropertyMap>();
+ m_privateProperties->setPrivateProperty(vm, owner, propertyName, value);
+ }
+
+ void deletePrivateProperty(const Identifier& propertyName)
+ {
+ if (!m_privateProperties)
+ return;
+ m_privateProperties->deletePrivateProperty(propertyName);
+ }
+
+ void visitChildren(SlotVisitor& visitor)
+ {
+ if (!m_privateProperties)
+ return;
+ m_privateProperties->visitChildren(visitor);
+ }
+
+ void* privateData;
+ JSClassRef jsClass;
+ struct JSPrivatePropertyMap {
+ JSValue getPrivateProperty(const Identifier& propertyName) const
+ {
+ PrivatePropertyMap::const_iterator location = m_propertyMap.find(propertyName.impl());
+ if (location == m_propertyMap.end())
+ return JSValue();
+ return location->value.get();
+ }
+
+ void setPrivateProperty(VM& vm, JSCell* owner, const Identifier& propertyName, JSValue value)
+ {
+ WriteBarrier<Unknown> empty;
+ m_propertyMap.add(propertyName.impl(), empty).iterator->value.set(vm, owner, value);
+ }
+
+ void deletePrivateProperty(const Identifier& propertyName)
+ {
+ m_propertyMap.remove(propertyName.impl());
+ }
+
+ void visitChildren(SlotVisitor& visitor)
+ {
+ for (PrivatePropertyMap::iterator ptr = m_propertyMap.begin(); ptr != m_propertyMap.end(); ++ptr) {
+ if (ptr->value)
+ visitor.append(&ptr->value);
+ }
+ }
+
+ private:
+ typedef HashMap<RefPtr<UniquedStringImpl>, WriteBarrier<Unknown>, IdentifierRepHash> PrivatePropertyMap;
+ PrivatePropertyMap m_propertyMap;
+ };
+ std::unique_ptr<JSPrivatePropertyMap> m_privateProperties;
+};