~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/WebCore/bindings/v8/V8DOMConfiguration.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2012 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
 
6
 * are met:
 
7
 *
 
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.
 
13
 * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
 
14
 *     its contributors may be used to endorse or promote products derived
 
15
 *     from this software without specific prior written permission.
 
16
 *
 
17
 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
 
18
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
19
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
20
 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
 
21
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
22
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
23
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 
24
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
27
 */
 
28
 
 
29
#include "config.h"
 
30
#include "V8DOMConfiguration.h"
 
31
 
 
32
#include "V8Binding.h"
 
33
 
 
34
namespace WebCore {
 
35
 
 
36
void V8DOMConfiguration::batchConfigureAttributes(v8::Handle<v8::ObjectTemplate> instance, 
 
37
                                                  v8::Handle<v8::ObjectTemplate> prototype, 
 
38
                                                  const BatchedAttribute* attributes, 
 
39
                                                  size_t attributeCount)
 
40
{
 
41
    for (size_t i = 0; i < attributeCount; ++i)
 
42
        configureAttribute(instance, prototype, attributes[i]);
 
43
}
 
44
 
 
45
void V8DOMConfiguration::batchConfigureConstants(v8::Handle<v8::FunctionTemplate> functionDescriptor,
 
46
                                                 v8::Handle<v8::ObjectTemplate> prototype,
 
47
                                                 const BatchedConstant* constants,
 
48
                                                 size_t constantCount)
 
49
{
 
50
    for (size_t i = 0; i < constantCount; ++i) {
 
51
        const BatchedConstant* constant = &constants[i];
 
52
        functionDescriptor->Set(v8::String::NewSymbol(constant->name), v8Integer(constant->value), v8::ReadOnly);
 
53
        prototype->Set(v8::String::NewSymbol(constant->name), v8Integer(constant->value), v8::ReadOnly);
 
54
    }
 
55
}
 
56
 
 
57
void V8DOMConfiguration::batchConfigureCallbacks(v8::Handle<v8::ObjectTemplate> prototype, 
 
58
                                                 v8::Handle<v8::Signature> signature, 
 
59
                                                 v8::PropertyAttribute attributes,
 
60
                                                 const BatchedCallback* callbacks,
 
61
                                                 size_t callbackCount)
 
62
{
 
63
    for (size_t i = 0; i < callbackCount; ++i)
 
64
        prototype->Set(v8::String::NewSymbol(callbacks[i].name), v8::FunctionTemplate::New(callbacks[i].callback, v8Undefined(), signature), attributes);
 
65
}
 
66
 
 
67
v8::Local<v8::Signature> V8DOMConfiguration::configureTemplate(v8::Persistent<v8::FunctionTemplate> functionDescriptor,
 
68
                                                               const char* interfaceName,
 
69
                                                               v8::Persistent<v8::FunctionTemplate> parentClass,
 
70
                                                               size_t fieldCount,
 
71
                                                               const BatchedAttribute* attributes, 
 
72
                                                               size_t attributeCount,
 
73
                                                               const BatchedCallback* callbacks,
 
74
                                                               size_t callbackCount)
 
75
{
 
76
    functionDescriptor->SetClassName(v8::String::NewSymbol(interfaceName));
 
77
    v8::Local<v8::ObjectTemplate> instance = functionDescriptor->InstanceTemplate();
 
78
    instance->SetInternalFieldCount(fieldCount);
 
79
    if (!parentClass.IsEmpty())
 
80
        functionDescriptor->Inherit(parentClass);
 
81
    if (attributeCount)
 
82
        batchConfigureAttributes(instance, functionDescriptor->PrototypeTemplate(), attributes, attributeCount);
 
83
    v8::Local<v8::Signature> defaultSignature = v8::Signature::New(functionDescriptor);
 
84
    if (callbackCount)
 
85
        batchConfigureCallbacks(functionDescriptor->PrototypeTemplate(), defaultSignature, static_cast<v8::PropertyAttribute>(v8::DontDelete), callbacks, callbackCount);
 
86
    return defaultSignature;
 
87
}
 
88
 
 
89
} // namespace WebCore