blob: de4f1362cdf9355e291940d4bcc5fe420b906920 [file] [log] [blame]
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +01001/*
2* Copyright (C) 2006, 2007, 2008, 2009 Google Inc. All rights reserved.
3*
4* Redistribution and use in source and binary forms, with or without
5* modification, are permitted provided that the following conditions are
6* met:
7*
8* * Redistributions of source code must retain the above copyright
9* notice, this list of conditions and the following disclaimer.
10* * Redistributions in binary form must reproduce the above
11* copyright notice, this list of conditions and the following disclaimer
12* in the documentation and/or other materials provided with the
13* distribution.
14* * Neither the name of Google Inc. nor the names of its
15* contributors may be used to endorse or promote products derived from
16* this software without specific prior written permission.
17*
18* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29*/
30
31#include "config.h"
Ben Murdoche69819b2013-07-17 14:56:49 +010032
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010033#include "bindings/v8/V8NPObject.h"
34
35#include "V8HTMLAppletElement.h"
36#include "V8HTMLEmbedElement.h"
37#include "V8HTMLObjectElement.h"
38#include "bindings/v8/NPV8Object.h"
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010039#include "bindings/v8/UnsafePersistent.h"
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010040#include "bindings/v8/V8Binding.h"
41#include "bindings/v8/V8NPUtils.h"
42#include "bindings/v8/V8ObjectConstructor.h"
43#include "bindings/v8/npruntime_impl.h"
44#include "bindings/v8/npruntime_priv.h"
45#include "core/html/HTMLPlugInElement.h"
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010046#include "wtf/OwnPtr.h"
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010047
48namespace WebCore {
49
50enum InvokeFunctionType {
51 InvokeMethod = 1,
52 InvokeConstruct = 2,
53 InvokeDefault = 3
54};
55
56struct IdentifierRep {
57 int number() const { return m_isString ? 0 : m_value.m_number; }
58 const char* string() const { return m_isString ? m_value.m_string : 0; }
59
60 union {
61 const char* m_string;
62 int m_number;
63 } m_value;
64 bool m_isString;
65};
66
67// FIXME: need comments.
68// Params: holder could be HTMLEmbedElement or NPObject
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010069static void npObjectInvokeImpl(const v8::FunctionCallbackInfo<v8::Value>& args, InvokeFunctionType functionId)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010070{
71 NPObject* npObject;
72
73 WrapperWorldType currentWorldType = worldType(args.GetIsolate());
74 // These three types are subtypes of HTMLPlugInElement.
75 if (V8HTMLAppletElement::HasInstance(args.Holder(), args.GetIsolate(), currentWorldType) || V8HTMLEmbedElement::HasInstance(args.Holder(), args.GetIsolate(), currentWorldType)
76 || V8HTMLObjectElement::HasInstance(args.Holder(), args.GetIsolate(), currentWorldType)) {
77 // The holder object is a subtype of HTMLPlugInElement.
78 HTMLPlugInElement* element;
79 if (V8HTMLAppletElement::HasInstance(args.Holder(), args.GetIsolate(), currentWorldType))
80 element = V8HTMLAppletElement::toNative(args.Holder());
81 else if (V8HTMLEmbedElement::HasInstance(args.Holder(), args.GetIsolate(), currentWorldType))
82 element = V8HTMLEmbedElement::toNative(args.Holder());
83 else
84 element = V8HTMLObjectElement::toNative(args.Holder());
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010085 if (RefPtr<SharedPersistent<v8::Object> > wrapper = element->pluginWrapper()) {
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +010086 v8::Isolate* isolate = v8::Isolate::GetCurrent();
87 v8::HandleScope handleScope(isolate);
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010088 npObject = v8ObjectToNPObject(wrapper->newLocal(isolate));
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +010089 } else
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010090 npObject = 0;
91 } else {
92 // The holder object is not a subtype of HTMLPlugInElement, it must be an NPObject which has three
93 // internal fields.
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010094 if (args.Holder()->InternalFieldCount() != npObjectInternalFieldCount) {
95 throwError(v8ReferenceError, "NPMethod called on non-NPObject", args.GetIsolate());
96 return;
97 }
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010098
99 npObject = v8ObjectToNPObject(args.Holder());
100 }
101
102 // Verify that our wrapper wasn't using a NPObject which has already been deleted.
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100103 if (!npObject || !_NPN_IsAlive(npObject)) {
104 throwError(v8ReferenceError, "NPObject deleted", args.GetIsolate());
105 return;
106 }
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100107
108 // Wrap up parameters.
109 int numArgs = args.Length();
Torne (Richard Coles)1e202182013-10-18 15:46:42 +0100110 OwnPtr<NPVariant[]> npArgs = adoptArrayPtr(new NPVariant[numArgs]);
Ben Murdoche69819b2013-07-17 14:56:49 +0100111
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100112 for (int i = 0; i < numArgs; i++)
Torne (Richard Coles)9bbd2f52013-09-19 22:37:05 +0100113 convertV8ObjectToNPVariant(args[i], npObject, &npArgs[i], args.GetIsolate());
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100114
115 NPVariant result;
116 VOID_TO_NPVARIANT(result);
117
118 bool retval = true;
119 switch (functionId) {
120 case InvokeMethod:
121 if (npObject->_class->invoke) {
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100122 v8::Handle<v8::String> functionName = v8::Handle<v8::String>::Cast(args.Data());
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100123 NPIdentifier identifier = getStringIdentifier(functionName);
124 retval = npObject->_class->invoke(npObject, identifier, npArgs.get(), numArgs, &result);
125 }
126 break;
127 case InvokeConstruct:
128 if (npObject->_class->construct)
129 retval = npObject->_class->construct(npObject, npArgs.get(), numArgs, &result);
130 break;
131 case InvokeDefault:
132 if (npObject->_class->invokeDefault)
133 retval = npObject->_class->invokeDefault(npObject, npArgs.get(), numArgs, &result);
134 break;
135 default:
136 break;
137 }
138
139 if (!retval)
140 throwError(v8GeneralError, "Error calling method on NPObject.", args.GetIsolate());
141
142 for (int i = 0; i < numArgs; i++)
143 _NPN_ReleaseVariantValue(&npArgs[i]);
144
145 // Unwrap return values.
146 v8::Handle<v8::Value> returnValue;
147 if (_NPN_IsAlive(npObject))
Ben Murdoche69819b2013-07-17 14:56:49 +0100148 returnValue = convertNPVariantToV8Object(&result, npObject, args.GetIsolate());
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100149 _NPN_ReleaseVariantValue(&result);
150
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100151 v8SetReturnValue(args, returnValue);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100152}
153
154
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100155void npObjectMethodHandler(const v8::FunctionCallbackInfo<v8::Value>& args)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100156{
157 return npObjectInvokeImpl(args, InvokeMethod);
158}
159
160
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100161void npObjectInvokeDefaultHandler(const v8::FunctionCallbackInfo<v8::Value>& args)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100162{
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100163 if (args.IsConstructCall()) {
164 npObjectInvokeImpl(args, InvokeConstruct);
165 return;
166 }
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100167
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100168 npObjectInvokeImpl(args, InvokeDefault);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100169}
170
171class V8NPTemplateMap {
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100172public:
173 // NPIdentifier is PrivateIdentifier*.
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100174 typedef HashMap<PrivateIdentifier*, UnsafePersistent<v8::FunctionTemplate> > MapType;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100175
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100176 UnsafePersistent<v8::FunctionTemplate> get(PrivateIdentifier* key)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100177 {
178 return m_map.get(key);
179 }
180
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100181 void set(PrivateIdentifier* key, v8::Handle<v8::FunctionTemplate> handle)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100182 {
183 ASSERT(!m_map.contains(key));
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100184 v8::Persistent<v8::FunctionTemplate> wrapper(m_isolate, handle);
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100185 wrapper.MakeWeak(key, &makeWeakCallback);
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100186 m_map.set(key, UnsafePersistent<v8::FunctionTemplate>(wrapper));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100187 }
188
189 static V8NPTemplateMap& sharedInstance(v8::Isolate* isolate)
190 {
191 DEFINE_STATIC_LOCAL(V8NPTemplateMap, map, (isolate));
192 ASSERT(isolate == map.m_isolate);
193 return map;
194 }
195
196private:
197 explicit V8NPTemplateMap(v8::Isolate* isolate)
198 : m_isolate(isolate)
199 {
200 }
201
202 void dispose(PrivateIdentifier* key)
203 {
204 MapType::iterator it = m_map.find(key);
205 ASSERT(it != m_map.end());
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100206 it->value.dispose();
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100207 m_map.remove(it);
208 }
209
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +0100210 static void makeWeakCallback(v8::Isolate* isolate, v8::Persistent<v8::FunctionTemplate>*, PrivateIdentifier* key)
211 {
212 V8NPTemplateMap::sharedInstance(isolate).dispose(key);
213 }
214
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100215 MapType m_map;
216 v8::Isolate* m_isolate;
217};
218
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100219static v8::Handle<v8::Value> npObjectGetProperty(v8::Local<v8::Object> self, NPIdentifier identifier, v8::Local<v8::Value> key, v8::Isolate* isolate)
220{
221 NPObject* npObject = v8ObjectToNPObject(self);
222
223 // Verify that our wrapper wasn't using a NPObject which
224 // has already been deleted.
225 if (!npObject || !_NPN_IsAlive(npObject))
226 return throwError(v8ReferenceError, "NPObject deleted", isolate);
227
Ben Murdoche69819b2013-07-17 14:56:49 +0100228
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100229 if (npObject->_class->hasProperty && npObject->_class->getProperty && npObject->_class->hasProperty(npObject, identifier)) {
230 if (!_NPN_IsAlive(npObject))
231 return throwError(v8ReferenceError, "NPObject deleted", isolate);
232
233 NPVariant result;
234 VOID_TO_NPVARIANT(result);
235 if (!npObject->_class->getProperty(npObject, identifier, &result))
236 return v8Undefined();
237
238 v8::Handle<v8::Value> returnValue;
239 if (_NPN_IsAlive(npObject))
Ben Murdoche69819b2013-07-17 14:56:49 +0100240 returnValue = convertNPVariantToV8Object(&result, npObject, isolate);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100241 _NPN_ReleaseVariantValue(&result);
242 return returnValue;
243
244 }
245
246 if (!_NPN_IsAlive(npObject))
247 return throwError(v8ReferenceError, "NPObject deleted", isolate);
248
249 if (key->IsString() && npObject->_class->hasMethod && npObject->_class->hasMethod(npObject, identifier)) {
250 if (!_NPN_IsAlive(npObject))
251 return throwError(v8ReferenceError, "NPObject deleted", isolate);
252
253 PrivateIdentifier* id = static_cast<PrivateIdentifier*>(identifier);
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100254 UnsafePersistent<v8::FunctionTemplate> functionTemplate = V8NPTemplateMap::sharedInstance(isolate).get(id);
255 // FunctionTemplate caches function for each context.
256 v8::Local<v8::Function> v8Function;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100257 // Cache templates using identifier as the key.
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100258 if (functionTemplate.isEmpty()) {
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100259 // Create a new template.
260 v8::Local<v8::FunctionTemplate> temp = v8::FunctionTemplate::New();
261 temp->SetCallHandler(npObjectMethodHandler, key);
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100262 V8NPTemplateMap::sharedInstance(isolate).set(id, temp);
263 v8Function = temp->GetFunction();
264 } else {
265 v8Function = functionTemplate.newLocal(isolate)->GetFunction();
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100266 }
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100267 v8Function->SetName(v8::Handle<v8::String>::Cast(key));
268 return v8Function;
269 }
270
271 return v8Undefined();
272}
273
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100274void npObjectNamedPropertyGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100275{
276 NPIdentifier identifier = getStringIdentifier(name);
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100277 v8SetReturnValue(info, npObjectGetProperty(info.Holder(), identifier, name, info.GetIsolate()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100278}
279
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100280void npObjectIndexedPropertyGetter(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100281{
282 NPIdentifier identifier = _NPN_GetIntIdentifier(index);
Torne (Richard Coles)8abfc582013-09-12 12:10:38 +0100283 v8SetReturnValue(info, npObjectGetProperty(info.Holder(), identifier, v8::Number::New(info.GetIsolate(), index), info.GetIsolate()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100284}
285
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100286void npObjectGetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100287{
288 NPIdentifier identifier = getStringIdentifier(name);
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100289 v8SetReturnValue(info, npObjectGetProperty(self, identifier, name, info.GetIsolate()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100290}
291
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100292void npObjectGetIndexedProperty(v8::Local<v8::Object> self, uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100293{
294 NPIdentifier identifier = _NPN_GetIntIdentifier(index);
Torne (Richard Coles)8abfc582013-09-12 12:10:38 +0100295 v8SetReturnValue(info, npObjectGetProperty(self, identifier, v8::Number::New(info.GetIsolate(), index), info.GetIsolate()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100296}
297
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100298void npObjectQueryProperty(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Integer>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100299{
300 NPIdentifier identifier = getStringIdentifier(name);
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100301 if (npObjectGetProperty(info.Holder(), identifier, name, info.GetIsolate()).IsEmpty())
302 return;
303 v8SetReturnValueInt(info, 0);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100304}
305
306static v8::Handle<v8::Value> npObjectSetProperty(v8::Local<v8::Object> self, NPIdentifier identifier, v8::Local<v8::Value> value, v8::Isolate* isolate)
307{
308 NPObject* npObject = v8ObjectToNPObject(self);
309
310 // Verify that our wrapper wasn't using a NPObject which has already been deleted.
311 if (!npObject || !_NPN_IsAlive(npObject)) {
312 throwError(v8ReferenceError, "NPObject deleted", isolate);
313 return value; // Intercepted, but an exception was thrown.
314 }
315
316 if (npObject->_class->hasProperty && npObject->_class->setProperty && npObject->_class->hasProperty(npObject, identifier)) {
317 if (!_NPN_IsAlive(npObject))
318 return throwError(v8ReferenceError, "NPObject deleted", isolate);
319
320 NPVariant npValue;
321 VOID_TO_NPVARIANT(npValue);
Torne (Richard Coles)9bbd2f52013-09-19 22:37:05 +0100322 convertV8ObjectToNPVariant(value, npObject, &npValue, isolate);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100323 bool success = npObject->_class->setProperty(npObject, identifier, &npValue);
324 _NPN_ReleaseVariantValue(&npValue);
325 if (success)
326 return value; // Intercept the call.
327 }
328 return v8Undefined();
329}
330
331
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100332void npObjectNamedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100333{
334 NPIdentifier identifier = getStringIdentifier(name);
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100335 v8SetReturnValue(info, npObjectSetProperty(info.Holder(), identifier, value, info.GetIsolate()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100336}
337
338
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100339void npObjectIndexedPropertySetter(uint32_t index, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100340{
341 NPIdentifier identifier = _NPN_GetIntIdentifier(index);
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100342 v8SetReturnValue(info, npObjectSetProperty(info.Holder(), identifier, value, info.GetIsolate()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100343}
344
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100345void npObjectSetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100346{
347 NPIdentifier identifier = getStringIdentifier(name);
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100348 v8SetReturnValue(info, npObjectSetProperty(self, identifier, value, info.GetIsolate()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100349}
350
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100351void npObjectSetIndexedProperty(v8::Local<v8::Object> self, uint32_t index, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100352{
353 NPIdentifier identifier = _NPN_GetIntIdentifier(index);
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100354 v8SetReturnValue(info, npObjectSetProperty(self, identifier, value, info.GetIsolate()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100355}
356
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100357void npObjectPropertyEnumerator(const v8::PropertyCallbackInfo<v8::Array>& info, bool namedProperty)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100358{
359 NPObject* npObject = v8ObjectToNPObject(info.Holder());
360
361 // Verify that our wrapper wasn't using a NPObject which
362 // has already been deleted.
363 if (!npObject || !_NPN_IsAlive(npObject))
364 throwError(v8ReferenceError, "NPObject deleted", info.GetIsolate());
365
366 if (NP_CLASS_STRUCT_VERSION_HAS_ENUM(npObject->_class) && npObject->_class->enumerate) {
367 uint32_t count;
368 NPIdentifier* identifiers;
369 if (npObject->_class->enumerate(npObject, &identifiers, &count)) {
370 v8::Handle<v8::Array> properties = v8::Array::New(count);
371 for (uint32_t i = 0; i < count; ++i) {
372 IdentifierRep* identifier = static_cast<IdentifierRep*>(identifiers[i]);
373 if (namedProperty)
Ben Murdoch591b9582013-07-10 11:41:44 +0100374 properties->Set(v8::Integer::New(i, info.GetIsolate()), v8::String::NewSymbol(identifier->string()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100375 else
Ben Murdoch591b9582013-07-10 11:41:44 +0100376 properties->Set(v8::Integer::New(i, info.GetIsolate()), v8::Integer::New(identifier->number(), info.GetIsolate()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100377 }
378
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100379 v8SetReturnValue(info, properties);
380 return;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100381 }
382 }
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100383}
384
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100385void npObjectNamedPropertyEnumerator(const v8::PropertyCallbackInfo<v8::Array>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100386{
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100387 npObjectPropertyEnumerator(info, true);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100388}
389
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100390void npObjectIndexedPropertyEnumerator(const v8::PropertyCallbackInfo<v8::Array>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100391{
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100392 npObjectPropertyEnumerator(info, false);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100393}
394
395static DOMWrapperMap<NPObject>& staticNPObjectMap()
396{
397 DEFINE_STATIC_LOCAL(DOMWrapperMap<NPObject>, npObjectMap, (v8::Isolate::GetCurrent()));
398 return npObjectMap;
399}
400
401template<>
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +0100402inline void DOMWrapperMap<NPObject>::makeWeakCallback(v8::Isolate* isolate, v8::Persistent<v8::Object>* wrapper, DOMWrapperMap<NPObject>*)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100403{
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +0100404 NPObject* npObject = static_cast<NPObject*>(toNative(*wrapper));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100405
406 ASSERT(npObject);
Torne (Richard Coles)e1f1df52013-08-23 16:39:30 +0100407 ASSERT(staticNPObjectMap().containsKeyAndValue(npObject, *wrapper));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100408
409 // Must remove from our map before calling _NPN_ReleaseObject(). _NPN_ReleaseObject can
410 // call forgetV8ObjectForNPObject, which uses the table as well.
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +0100411 staticNPObjectMap().removeAndDispose(npObject);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100412
413 if (_NPN_IsAlive(npObject))
414 _NPN_ReleaseObject(npObject);
415}
416
Torne (Richard Coles)8abfc582013-09-12 12:10:38 +0100417v8::Local<v8::Object> createV8ObjectForNPObject(NPObject* object, NPObject* root, v8::Isolate* isolate)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100418{
Torne (Richard Coles)8abfc582013-09-12 12:10:38 +0100419 static v8::Eternal<v8::FunctionTemplate> npObjectDesc;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100420
421 ASSERT(v8::Context::InContext());
422
423 // If this is a v8 object, just return it.
Ben Murdoch591b9582013-07-10 11:41:44 +0100424 V8NPObject* v8NPObject = npObjectToV8NPObject(object);
425 if (v8NPObject)
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100426 return v8::Local<v8::Object>::New(isolate, v8NPObject->v8Object);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100427
428 // If we've already wrapped this object, just return it.
Torne (Richard Coles)e1f1df52013-08-23 16:39:30 +0100429 v8::Handle<v8::Object> wrapper = staticNPObjectMap().newLocal(object, isolate);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100430 if (!wrapper.IsEmpty())
Torne (Richard Coles)e1f1df52013-08-23 16:39:30 +0100431 return wrapper;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100432
433 // FIXME: we should create a Wrapper type as a subclass of JSObject. It has two internal fields, field 0 is the wrapped
434 // pointer, and field 1 is the type. There should be an api function that returns unused type id. The same Wrapper type
435 // can be used by DOM bindings.
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100436 if (npObjectDesc.IsEmpty()) {
Torne (Richard Coles)8abfc582013-09-12 12:10:38 +0100437 v8::Local<v8::FunctionTemplate> templ = v8::FunctionTemplate::New();
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100438 templ->InstanceTemplate()->SetInternalFieldCount(npObjectInternalFieldCount);
439 templ->InstanceTemplate()->SetNamedPropertyHandler(npObjectNamedPropertyGetter, npObjectNamedPropertySetter, npObjectQueryProperty, 0, npObjectNamedPropertyEnumerator);
440 templ->InstanceTemplate()->SetIndexedPropertyHandler(npObjectIndexedPropertyGetter, npObjectIndexedPropertySetter, 0, 0, npObjectIndexedPropertyEnumerator);
441 templ->InstanceTemplate()->SetCallAsFunctionHandler(npObjectInvokeDefaultHandler);
Torne (Richard Coles)8abfc582013-09-12 12:10:38 +0100442 npObjectDesc.Set(isolate, templ);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100443 }
444
445 // FIXME: Move staticNPObjectMap() to DOMDataStore.
446 // Use V8DOMWrapper::createWrapper() and
447 // V8DOMWrapper::associateObjectWithWrapper()
448 // to create a wrapper object.
Torne (Richard Coles)8abfc582013-09-12 12:10:38 +0100449 v8::Handle<v8::Function> v8Function = npObjectDesc.Get(isolate)->GetFunction();
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100450 v8::Local<v8::Object> value = V8ObjectConstructor::newInstance(v8Function);
451 if (value.IsEmpty())
452 return value;
453
454 V8DOMWrapper::setNativeInfo(value, npObjectTypeInfo(), object);
455
456 // KJS retains the object as part of its wrapper (see Bindings::CInstance).
457 _NPN_RetainObject(object);
Ben Murdoche69819b2013-07-17 14:56:49 +0100458 _NPN_RegisterObject(object, root);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100459
460 WrapperConfiguration configuration = buildWrapperConfiguration(object, WrapperConfiguration::Dependent);
461 staticNPObjectMap().set(object, value, configuration);
462 ASSERT(V8DOMWrapper::maybeDOMWrapper(value));
463 return value;
464}
465
466void forgetV8ObjectForNPObject(NPObject* object)
467{
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +0100468 v8::Isolate* isolate = v8::Isolate::GetCurrent();
469 v8::HandleScope scope(isolate);
Torne (Richard Coles)e1f1df52013-08-23 16:39:30 +0100470 v8::Handle<v8::Object> wrapper = staticNPObjectMap().newLocal(object, isolate);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100471 if (!wrapper.IsEmpty()) {
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100472 V8DOMWrapper::clearNativeInfo(wrapper, npObjectTypeInfo());
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +0100473 staticNPObjectMap().removeAndDispose(object);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100474 _NPN_ReleaseObject(object);
475 }
476}
477
478} // namespace WebCore