blob: 2062e8c8efaa00b816e305f14531ac37ba547bd3 [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"
39#include "bindings/v8/V8Binding.h"
40#include "bindings/v8/V8NPUtils.h"
41#include "bindings/v8/V8ObjectConstructor.h"
42#include "bindings/v8/npruntime_impl.h"
43#include "bindings/v8/npruntime_priv.h"
44#include "core/html/HTMLPlugInElement.h"
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010045#include "wtf/OwnPtr.h"
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010046
47namespace WebCore {
48
49enum InvokeFunctionType {
50 InvokeMethod = 1,
51 InvokeConstruct = 2,
52 InvokeDefault = 3
53};
54
55struct IdentifierRep {
56 int number() const { return m_isString ? 0 : m_value.m_number; }
57 const char* string() const { return m_isString ? m_value.m_string : 0; }
58
59 union {
60 const char* m_string;
61 int m_number;
62 } m_value;
63 bool m_isString;
64};
65
66// FIXME: need comments.
67// Params: holder could be HTMLEmbedElement or NPObject
Torne (Richard Coles)19cde672013-11-06 12:28:04 +000068static void npObjectInvokeImpl(const v8::FunctionCallbackInfo<v8::Value>& info, InvokeFunctionType functionId)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010069{
70 NPObject* npObject;
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000071 v8::Isolate* isolate = info.GetIsolate();
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010072
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010073 // These three types are subtypes of HTMLPlugInElement.
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000074 HTMLPlugInElement* element = V8HTMLAppletElement::toNativeWithTypeCheck(isolate, info.Holder());
75 if (!element) {
76 element = V8HTMLEmbedElement::toNativeWithTypeCheck(isolate, info.Holder());
77 if (!element) {
78 element = V8HTMLObjectElement::toNativeWithTypeCheck(isolate, info.Holder());
79 }
80 }
81 if (element) {
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010082 if (RefPtr<SharedPersistent<v8::Object> > wrapper = element->pluginWrapper()) {
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +010083 v8::HandleScope handleScope(isolate);
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010084 npObject = v8ObjectToNPObject(wrapper->newLocal(isolate));
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +010085 } else
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010086 npObject = 0;
87 } else {
88 // The holder object is not a subtype of HTMLPlugInElement, it must be an NPObject which has three
89 // internal fields.
Torne (Richard Coles)19cde672013-11-06 12:28:04 +000090 if (info.Holder()->InternalFieldCount() != npObjectInternalFieldCount) {
91 throwError(v8ReferenceError, "NPMethod called on non-NPObject", info.GetIsolate());
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010092 return;
93 }
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010094
Torne (Richard Coles)19cde672013-11-06 12:28:04 +000095 npObject = v8ObjectToNPObject(info.Holder());
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010096 }
97
98 // Verify that our wrapper wasn't using a NPObject which has already been deleted.
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010099 if (!npObject || !_NPN_IsAlive(npObject)) {
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +0000100 throwError(v8ReferenceError, "NPObject deleted", isolate);
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100101 return;
102 }
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100103
104 // Wrap up parameters.
Torne (Richard Coles)19cde672013-11-06 12:28:04 +0000105 int numArgs = info.Length();
Torne (Richard Coles)1e202182013-10-18 15:46:42 +0100106 OwnPtr<NPVariant[]> npArgs = adoptArrayPtr(new NPVariant[numArgs]);
Ben Murdoche69819b2013-07-17 14:56:49 +0100107
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100108 for (int i = 0; i < numArgs; i++)
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +0000109 convertV8ObjectToNPVariant(info[i], npObject, &npArgs[i], isolate);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100110
111 NPVariant result;
112 VOID_TO_NPVARIANT(result);
113
114 bool retval = true;
115 switch (functionId) {
116 case InvokeMethod:
117 if (npObject->_class->invoke) {
Torne (Richard Coles)19cde672013-11-06 12:28:04 +0000118 v8::Handle<v8::String> functionName = v8::Handle<v8::String>::Cast(info.Data());
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100119 NPIdentifier identifier = getStringIdentifier(functionName);
120 retval = npObject->_class->invoke(npObject, identifier, npArgs.get(), numArgs, &result);
121 }
122 break;
123 case InvokeConstruct:
124 if (npObject->_class->construct)
125 retval = npObject->_class->construct(npObject, npArgs.get(), numArgs, &result);
126 break;
127 case InvokeDefault:
128 if (npObject->_class->invokeDefault)
129 retval = npObject->_class->invokeDefault(npObject, npArgs.get(), numArgs, &result);
130 break;
131 default:
132 break;
133 }
134
135 if (!retval)
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +0000136 throwError(v8GeneralError, "Error calling method on NPObject.", isolate);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100137
138 for (int i = 0; i < numArgs; i++)
139 _NPN_ReleaseVariantValue(&npArgs[i]);
140
141 // Unwrap return values.
142 v8::Handle<v8::Value> returnValue;
143 if (_NPN_IsAlive(npObject))
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +0000144 returnValue = convertNPVariantToV8Object(&result, npObject, isolate);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100145 _NPN_ReleaseVariantValue(&result);
146
Torne (Richard Coles)19cde672013-11-06 12:28:04 +0000147 v8SetReturnValue(info, returnValue);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100148}
149
150
Torne (Richard Coles)19cde672013-11-06 12:28:04 +0000151void npObjectMethodHandler(const v8::FunctionCallbackInfo<v8::Value>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100152{
Torne (Richard Coles)19cde672013-11-06 12:28:04 +0000153 return npObjectInvokeImpl(info, InvokeMethod);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100154}
155
156
Torne (Richard Coles)19cde672013-11-06 12:28:04 +0000157void npObjectInvokeDefaultHandler(const v8::FunctionCallbackInfo<v8::Value>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100158{
Torne (Richard Coles)19cde672013-11-06 12:28:04 +0000159 if (info.IsConstructCall()) {
160 npObjectInvokeImpl(info, InvokeConstruct);
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100161 return;
162 }
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100163
Torne (Richard Coles)19cde672013-11-06 12:28:04 +0000164 npObjectInvokeImpl(info, InvokeDefault);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100165}
166
167class V8NPTemplateMap {
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100168public:
169 // NPIdentifier is PrivateIdentifier*.
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100170 typedef HashMap<PrivateIdentifier*, UnsafePersistent<v8::FunctionTemplate> > MapType;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100171
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100172 UnsafePersistent<v8::FunctionTemplate> get(PrivateIdentifier* key)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100173 {
174 return m_map.get(key);
175 }
176
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100177 void set(PrivateIdentifier* key, v8::Handle<v8::FunctionTemplate> handle)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100178 {
179 ASSERT(!m_map.contains(key));
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100180 v8::Persistent<v8::FunctionTemplate> wrapper(m_isolate, handle);
Torne (Richard Coles)a854de02013-12-18 16:25:25 +0000181 wrapper.SetWeak(key, &setWeakCallback);
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100182 m_map.set(key, UnsafePersistent<v8::FunctionTemplate>(wrapper));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100183 }
184
185 static V8NPTemplateMap& sharedInstance(v8::Isolate* isolate)
186 {
187 DEFINE_STATIC_LOCAL(V8NPTemplateMap, map, (isolate));
188 ASSERT(isolate == map.m_isolate);
189 return map;
190 }
191
192private:
193 explicit V8NPTemplateMap(v8::Isolate* isolate)
194 : m_isolate(isolate)
195 {
196 }
197
Torne (Richard Coles)a854de02013-12-18 16:25:25 +0000198 void clear(PrivateIdentifier* key)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100199 {
200 MapType::iterator it = m_map.find(key);
Torne (Richard Coles)51b29062013-11-28 11:56:03 +0000201 ASSERT_WITH_SECURITY_IMPLICATION(it != m_map.end());
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100202 it->value.dispose();
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100203 m_map.remove(it);
204 }
205
Torne (Richard Coles)a854de02013-12-18 16:25:25 +0000206 static void setWeakCallback(const v8::WeakCallbackData<v8::FunctionTemplate, PrivateIdentifier>& data)
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +0100207 {
Torne (Richard Coles)a854de02013-12-18 16:25:25 +0000208 V8NPTemplateMap::sharedInstance(data.GetIsolate()).clear(data.GetParameter());
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +0100209 }
210
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100211 MapType m_map;
212 v8::Isolate* m_isolate;
213};
214
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100215static v8::Handle<v8::Value> npObjectGetProperty(v8::Local<v8::Object> self, NPIdentifier identifier, v8::Local<v8::Value> key, v8::Isolate* isolate)
216{
217 NPObject* npObject = v8ObjectToNPObject(self);
218
219 // Verify that our wrapper wasn't using a NPObject which
220 // has already been deleted.
221 if (!npObject || !_NPN_IsAlive(npObject))
222 return throwError(v8ReferenceError, "NPObject deleted", isolate);
223
Ben Murdoche69819b2013-07-17 14:56:49 +0100224
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100225 if (npObject->_class->hasProperty && npObject->_class->getProperty && npObject->_class->hasProperty(npObject, identifier)) {
226 if (!_NPN_IsAlive(npObject))
227 return throwError(v8ReferenceError, "NPObject deleted", isolate);
228
229 NPVariant result;
230 VOID_TO_NPVARIANT(result);
231 if (!npObject->_class->getProperty(npObject, identifier, &result))
232 return v8Undefined();
233
234 v8::Handle<v8::Value> returnValue;
235 if (_NPN_IsAlive(npObject))
Ben Murdoche69819b2013-07-17 14:56:49 +0100236 returnValue = convertNPVariantToV8Object(&result, npObject, isolate);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100237 _NPN_ReleaseVariantValue(&result);
238 return returnValue;
239
240 }
241
242 if (!_NPN_IsAlive(npObject))
243 return throwError(v8ReferenceError, "NPObject deleted", isolate);
244
245 if (key->IsString() && npObject->_class->hasMethod && npObject->_class->hasMethod(npObject, identifier)) {
246 if (!_NPN_IsAlive(npObject))
247 return throwError(v8ReferenceError, "NPObject deleted", isolate);
248
249 PrivateIdentifier* id = static_cast<PrivateIdentifier*>(identifier);
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100250 UnsafePersistent<v8::FunctionTemplate> functionTemplate = V8NPTemplateMap::sharedInstance(isolate).get(id);
251 // FunctionTemplate caches function for each context.
252 v8::Local<v8::Function> v8Function;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100253 // Cache templates using identifier as the key.
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100254 if (functionTemplate.isEmpty()) {
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100255 // Create a new template.
Torne (Richard Coles)a854de02013-12-18 16:25:25 +0000256 v8::Local<v8::FunctionTemplate> temp = v8::FunctionTemplate::New(isolate);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100257 temp->SetCallHandler(npObjectMethodHandler, key);
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100258 V8NPTemplateMap::sharedInstance(isolate).set(id, temp);
259 v8Function = temp->GetFunction();
260 } else {
261 v8Function = functionTemplate.newLocal(isolate)->GetFunction();
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100262 }
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100263 v8Function->SetName(v8::Handle<v8::String>::Cast(key));
264 return v8Function;
265 }
266
267 return v8Undefined();
268}
269
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100270void npObjectNamedPropertyGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100271{
272 NPIdentifier identifier = getStringIdentifier(name);
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100273 v8SetReturnValue(info, npObjectGetProperty(info.Holder(), identifier, name, info.GetIsolate()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100274}
275
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100276void npObjectIndexedPropertyGetter(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100277{
278 NPIdentifier identifier = _NPN_GetIntIdentifier(index);
Torne (Richard Coles)8abfc582013-09-12 12:10:38 +0100279 v8SetReturnValue(info, npObjectGetProperty(info.Holder(), identifier, v8::Number::New(info.GetIsolate(), index), info.GetIsolate()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100280}
281
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100282void 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 +0100283{
284 NPIdentifier identifier = getStringIdentifier(name);
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100285 v8SetReturnValue(info, npObjectGetProperty(self, identifier, name, info.GetIsolate()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100286}
287
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100288void npObjectGetIndexedProperty(v8::Local<v8::Object> self, uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100289{
290 NPIdentifier identifier = _NPN_GetIntIdentifier(index);
Torne (Richard Coles)8abfc582013-09-12 12:10:38 +0100291 v8SetReturnValue(info, npObjectGetProperty(self, identifier, v8::Number::New(info.GetIsolate(), index), info.GetIsolate()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100292}
293
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100294void npObjectQueryProperty(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Integer>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100295{
296 NPIdentifier identifier = getStringIdentifier(name);
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100297 if (npObjectGetProperty(info.Holder(), identifier, name, info.GetIsolate()).IsEmpty())
298 return;
299 v8SetReturnValueInt(info, 0);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100300}
301
302static v8::Handle<v8::Value> npObjectSetProperty(v8::Local<v8::Object> self, NPIdentifier identifier, v8::Local<v8::Value> value, v8::Isolate* isolate)
303{
304 NPObject* npObject = v8ObjectToNPObject(self);
305
306 // Verify that our wrapper wasn't using a NPObject which has already been deleted.
307 if (!npObject || !_NPN_IsAlive(npObject)) {
308 throwError(v8ReferenceError, "NPObject deleted", isolate);
309 return value; // Intercepted, but an exception was thrown.
310 }
311
312 if (npObject->_class->hasProperty && npObject->_class->setProperty && npObject->_class->hasProperty(npObject, identifier)) {
313 if (!_NPN_IsAlive(npObject))
314 return throwError(v8ReferenceError, "NPObject deleted", isolate);
315
316 NPVariant npValue;
317 VOID_TO_NPVARIANT(npValue);
Torne (Richard Coles)9bbd2f52013-09-19 22:37:05 +0100318 convertV8ObjectToNPVariant(value, npObject, &npValue, isolate);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100319 bool success = npObject->_class->setProperty(npObject, identifier, &npValue);
320 _NPN_ReleaseVariantValue(&npValue);
321 if (success)
322 return value; // Intercept the call.
323 }
324 return v8Undefined();
325}
326
327
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100328void 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 +0100329{
330 NPIdentifier identifier = getStringIdentifier(name);
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100331 v8SetReturnValue(info, npObjectSetProperty(info.Holder(), identifier, value, info.GetIsolate()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100332}
333
334
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100335void npObjectIndexedPropertySetter(uint32_t index, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100336{
337 NPIdentifier identifier = _NPN_GetIntIdentifier(index);
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100338 v8SetReturnValue(info, npObjectSetProperty(info.Holder(), identifier, value, info.GetIsolate()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100339}
340
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100341void 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 +0100342{
343 NPIdentifier identifier = getStringIdentifier(name);
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100344 v8SetReturnValue(info, npObjectSetProperty(self, identifier, value, info.GetIsolate()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100345}
346
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100347void 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 +0100348{
349 NPIdentifier identifier = _NPN_GetIntIdentifier(index);
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100350 v8SetReturnValue(info, npObjectSetProperty(self, identifier, value, info.GetIsolate()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100351}
352
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100353void npObjectPropertyEnumerator(const v8::PropertyCallbackInfo<v8::Array>& info, bool namedProperty)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100354{
355 NPObject* npObject = v8ObjectToNPObject(info.Holder());
356
357 // Verify that our wrapper wasn't using a NPObject which
358 // has already been deleted.
359 if (!npObject || !_NPN_IsAlive(npObject))
360 throwError(v8ReferenceError, "NPObject deleted", info.GetIsolate());
361
362 if (NP_CLASS_STRUCT_VERSION_HAS_ENUM(npObject->_class) && npObject->_class->enumerate) {
363 uint32_t count;
364 NPIdentifier* identifiers;
365 if (npObject->_class->enumerate(npObject, &identifiers, &count)) {
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000366 uint32_t propertiesCount = 0;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100367 for (uint32_t i = 0; i < count; ++i) {
368 IdentifierRep* identifier = static_cast<IdentifierRep*>(identifiers[i]);
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000369 if (namedProperty == identifier->m_isString)
370 ++propertiesCount;
371 }
372 v8::Handle<v8::Array> properties = v8::Array::New(info.GetIsolate(), propertiesCount);
373 for (uint32_t i = 0, propertyIndex = 0; i < count; ++i) {
374 IdentifierRep* identifier = static_cast<IdentifierRep*>(identifiers[i]);
375 if (namedProperty == identifier->m_isString) {
376 ASSERT(propertyIndex < propertiesCount);
377 if (namedProperty)
378 properties->Set(v8::Integer::New(info.GetIsolate(), propertyIndex++), v8AtomicString(info.GetIsolate(), identifier->string()));
379 else
380 properties->Set(v8::Integer::New(info.GetIsolate(), propertyIndex++), v8::Integer::New(info.GetIsolate(), identifier->number()));
381 }
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100382 }
383
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100384 v8SetReturnValue(info, properties);
385 return;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100386 }
387 }
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100388}
389
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100390void npObjectNamedPropertyEnumerator(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, true);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100393}
394
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100395void npObjectIndexedPropertyEnumerator(const v8::PropertyCallbackInfo<v8::Array>& info)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100396{
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100397 npObjectPropertyEnumerator(info, false);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100398}
399
400static DOMWrapperMap<NPObject>& staticNPObjectMap()
401{
402 DEFINE_STATIC_LOCAL(DOMWrapperMap<NPObject>, npObjectMap, (v8::Isolate::GetCurrent()));
403 return npObjectMap;
404}
405
Ben Murdocha9984bf2014-04-10 11:22:39 +0100406template <>
407inline void DOMWrapperMap<NPObject>::PersistentValueMapTraits::Dispose(
408 v8::Isolate* isolate,
409 v8::UniquePersistent<v8::Object> value,
410 NPObject* npObject)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100411{
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100412 ASSERT(npObject);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100413 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
Torne (Richard Coles)a854de02013-12-18 16:25:25 +0000421 ASSERT(isolate->InContext());
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100422
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)a854de02013-12-18 16:25:25 +0000437 v8::Local<v8::FunctionTemplate> templ = v8::FunctionTemplate::New(isolate);
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();
Ben Murdocha9984bf2014-04-10 11:22:39 +0100450 v8::Local<v8::Object> value = V8ObjectConstructor::newInstance(isolate, v8Function);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100451 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);
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000462 ASSERT(V8DOMWrapper::isDOMWrapper(value));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100463 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