/* * Copyright (C) 2006, 2007, 2008, 2009 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following disclaimer * in the documentation and/or other materials provided with the * distribution. * * Neither the name of Google Inc. nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef V8Collection_h #define V8Collection_h #include "HTMLFormElement.h" #include "HTMLSelectElement.h" #include "V8Binding.h" #include "V8Proxy.h" #include namespace WebCore { // FIXME: These functions should be named using to* since they return the item (get* is used for method that take a ref param). // See https://bugs.webkit.org/show_bug.cgi?id=24664. static v8::Handle getV8Object(void* implementation, v8::Local implementationType) { if (!implementation) return v8::Handle(); V8ClassIndex::V8WrapperType type = V8ClassIndex::FromInt(implementationType->Int32Value()); if (type == V8ClassIndex::NODE) return V8DOMWrapper::convertNodeToV8Object(static_cast(implementation)); return V8DOMWrapper::convertToV8Object(type, implementation); } template static v8::Handle getV8Object(PassRefPtr implementation, v8::Local implementationType) { return getV8Object(implementation.get(), implementationType); } // Returns named property of a collection. template static v8::Handle getNamedPropertyOfCollection(v8::Local name, v8::Local object, v8::Local implementationType) { // FIXME: assert object is a collection type ASSERT(V8DOMWrapper::maybeDOMWrapper(object)); V8ClassIndex::V8WrapperType wrapperType = V8DOMWrapper::domWrapperType(object); ASSERT(wrapperType != V8ClassIndex::NODE); Collection* collection = V8DOMWrapper::convertToNativeObject(wrapperType, object); String propertyName = toWebCoreString(name); return getV8Object(collection->namedItem(propertyName), implementationType); } // A template of named property accessor of collections. template static v8::Handle collectionNamedPropertyGetter(v8::Local name, const v8::AccessorInfo& info) { v8::Handle value = info.Holder()->GetRealNamedPropertyInPrototypeChain(name); if (!value.IsEmpty()) return value; // Search local callback properties next to find IDL defined // properties. if (info.Holder()->HasRealNamedCallbackProperty(name)) return notHandledByInterceptor(); return getNamedPropertyOfCollection(name, info.Holder(), info.Data()); } // A template of named property accessor of HTMLSelectElement and HTMLFormElement. template static v8::Handle nodeCollectionNamedPropertyGetter(v8::Local name, const v8::AccessorInfo& info) { ASSERT(V8DOMWrapper::maybeDOMWrapper(info.Holder())); ASSERT(V8DOMWrapper::domWrapperType(info.Holder()) == V8ClassIndex::NODE); v8::Handle value = info.Holder()->GetRealNamedPropertyInPrototypeChain(name); if (!value.IsEmpty()) return value; // Search local callback properties next to find IDL defined // properties. if (info.Holder()->HasRealNamedCallbackProperty(name)) return notHandledByInterceptor(); Collection* collection = V8DOMWrapper::convertDOMWrapperToNode(info.Holder()); String propertyName = toWebCoreString(name); void* implementation = collection->namedItem(propertyName); return getV8Object(implementation, info.Data()); } // Returns the property at the index of a collection. template static v8::Handle getIndexedPropertyOfCollection(uint32_t index, v8::Local object, v8::Local implementationType) { // FIXME: Assert that object must be a collection type. ASSERT(V8DOMWrapper::maybeDOMWrapper(object)); V8ClassIndex::V8WrapperType wrapperType = V8DOMWrapper::domWrapperType(object); ASSERT(wrapperType != V8ClassIndex::NODE); Collection* collection = V8DOMWrapper::convertToNativeObject(wrapperType, object); return getV8Object(collection->item(index), implementationType); } // A template of index interceptor of collections. template static v8::Handle collectionIndexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info) { return getIndexedPropertyOfCollection(index, info.Holder(), info.Data()); } // A template of index interceptor of HTMLSelectElement and HTMLFormElement. template static v8::Handle nodeCollectionIndexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info) { ASSERT(V8DOMWrapper::maybeDOMWrapper(info.Holder())); ASSERT(V8DOMWrapper::domWrapperType(info.Holder()) == V8ClassIndex::NODE); Collection* collection = V8DOMWrapper::convertDOMWrapperToNode(info.Holder()); void* implementation = collection->item(index); return getV8Object(implementation, info.Data()); } // Get an array containing the names of indexed properties of HTMLSelectElement and HTMLFormElement. template static v8::Handle nodeCollectionIndexedPropertyEnumerator(const v8::AccessorInfo& info) { ASSERT(V8DOMWrapper::maybeDOMWrapper(info.Holder())); ASSERT(V8DOMWrapper::domWrapperType(info.Holder()) == V8ClassIndex::NODE); Collection* collection = V8DOMWrapper::convertDOMWrapperToNode(info.Holder()); int length = collection->length(); v8::Handle properties = v8::Array::New(length); for (int i = 0; i < length; ++i) { // FIXME: Do we need to check that the item function returns a non-null value for this index? v8::Handle integer = v8::Integer::New(i); properties->Set(integer, integer); } return properties; } // Get an array containing the names of indexed properties in a collection. template static v8::Handle collectionIndexedPropertyEnumerator(const v8::AccessorInfo& info) { ASSERT(V8DOMWrapper::maybeDOMWrapper(info.Holder())); V8ClassIndex::V8WrapperType wrapperType = V8DOMWrapper::domWrapperType(info.Holder()); Collection* collection = V8DOMWrapper::convertToNativeObject(wrapperType, info.Holder()); int length = collection->length(); v8::Handle properties = v8::Array::New(length); for (int i = 0; i < length; ++i) { // FIXME: Do we need to check that the item function returns a non-null value for this index? v8::Handle integer = v8::Integer::New(i); properties->Set(integer, integer); } return properties; } // A template for indexed getters on collections of strings that should return null if the resulting string is a null string. template static v8::Handle collectionStringOrNullIndexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info) { // FIXME: assert that object must be a collection type ASSERT(V8DOMWrapper::maybeDOMWrapper(info.Holder())); V8ClassIndex::V8WrapperType wrapperType = V8DOMWrapper::domWrapperType(info.Holder()); Collection* collection = V8DOMWrapper::convertToNativeObject(wrapperType, info.Holder()); String result = collection->item(index); return v8StringOrNull(result); } // Add indexed getter to the function template for a collection. template static void setCollectionIndexedGetter(v8::Handle desc, V8ClassIndex::V8WrapperType type) { desc->InstanceTemplate()->SetIndexedPropertyHandler(collectionIndexedPropertyGetter, 0, 0, 0, collectionIndexedPropertyEnumerator, v8::Integer::New(V8ClassIndex::ToInt(type))); } // Add named getter to the function template for a collection. template static void setCollectionNamedGetter(v8::Handle desc, V8ClassIndex::V8WrapperType type) { desc->InstanceTemplate()->SetNamedPropertyHandler(collectionNamedPropertyGetter, 0, 0, 0, 0, v8::Integer::New(V8ClassIndex::ToInt(type))); } // Add named and indexed getters to the function template for a collection. template static void setCollectionIndexedAndNamedGetters(v8::Handle desc, V8ClassIndex::V8WrapperType type) { // If we interceptor before object, accessing 'length' can trigger a webkit assertion error (see fast/dom/HTMLDocument/document-special-properties.html). desc->InstanceTemplate()->SetNamedPropertyHandler(collectionNamedPropertyGetter, 0, 0, 0, 0, v8::Integer::New(V8ClassIndex::ToInt(type))); desc->InstanceTemplate()->SetIndexedPropertyHandler(collectionIndexedPropertyGetter, 0, 0, 0, collectionIndexedPropertyEnumerator, v8::Integer::New(V8ClassIndex::ToInt(type))); } // Add indexed getter returning a string or null to a function template for a collection. template static void setCollectionStringOrNullIndexedGetter(v8::Handle desc) { desc->InstanceTemplate()->SetIndexedPropertyHandler(collectionStringOrNullIndexedPropertyGetter, 0, 0, 0, collectionIndexedPropertyEnumerator); } v8::Handle toOptionsCollectionSetter(uint32_t index, v8::Handle, HTMLSelectElement*); } // namespace WebCore #endif // V8Collection_h