1/*
2 This file is part of the WebKit open source project.
3 This file has been generated by generate-bindings.pl. DO NOT MODIFY!
4
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
9
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
14
15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
19*/
20
21#include "config.h"
22#include "JSCDATASection.h"
23
24#include "JSDOMBinding.h"
25#include "JSDOMConstructorNotConstructable.h"
26#include "JSDOMExceptionHandling.h"
27#include "JSDOMWrapperCache.h"
28#include "ScriptExecutionContext.h"
29#include <JavaScriptCore/HeapSnapshotBuilder.h>
30#include <JavaScriptCore/JSCInlines.h>
31#include <wtf/GetPtr.h>
32#include <wtf/PointerPreparations.h>
33#include <wtf/URL.h>
34
35
36namespace WebCore {
37using namespace JSC;
38
39// Attributes
40
41JSC::EncodedJSValue jsCDATASectionConstructor(JSC::ExecState*, JSC::EncodedJSValue, JSC::PropertyName);
42bool setJSCDATASectionConstructor(JSC::ExecState*, JSC::EncodedJSValue, JSC::EncodedJSValue);
43
44class JSCDATASectionPrototype : public JSC::JSNonFinalObject {
45public:
46 using Base = JSC::JSNonFinalObject;
47 static JSCDATASectionPrototype* create(JSC::VM& vm, JSDOMGlobalObject* globalObject, JSC::Structure* structure)
48 {
49 JSCDATASectionPrototype* ptr = new (NotNull, JSC::allocateCell<JSCDATASectionPrototype>(vm.heap)) JSCDATASectionPrototype(vm, globalObject, structure);
50 ptr->finishCreation(vm);
51 return ptr;
52 }
53
54 DECLARE_INFO;
55 static JSC::Structure* createStructure(JSC::VM& vm, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
56 {
57 return JSC::Structure::create(vm, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), info());
58 }
59
60private:
61 JSCDATASectionPrototype(JSC::VM& vm, JSC::JSGlobalObject*, JSC::Structure* structure)
62 : JSC::JSNonFinalObject(vm, structure)
63 {
64 }
65
66 void finishCreation(JSC::VM&);
67};
68
69using JSCDATASectionConstructor = JSDOMConstructorNotConstructable<JSCDATASection>;
70
71template<> JSValue JSCDATASectionConstructor::prototypeForStructure(JSC::VM& vm, const JSDOMGlobalObject& globalObject)
72{
73 return JSText::getConstructor(vm, &globalObject);
74}
75
76template<> void JSCDATASectionConstructor::initializeProperties(VM& vm, JSDOMGlobalObject& globalObject)
77{
78 putDirect(vm, vm.propertyNames->prototype, JSCDATASection::prototype(vm, globalObject), JSC::PropertyAttribute::DontDelete | JSC::PropertyAttribute::ReadOnly | JSC::PropertyAttribute::DontEnum);
79 putDirect(vm, vm.propertyNames->name, jsNontrivialString(&vm, String("CDATASection"_s)), JSC::PropertyAttribute::ReadOnly | JSC::PropertyAttribute::DontEnum);
80 putDirect(vm, vm.propertyNames->length, jsNumber(0), JSC::PropertyAttribute::ReadOnly | JSC::PropertyAttribute::DontEnum);
81}
82
83template<> const ClassInfo JSCDATASectionConstructor::s_info = { "CDATASection", &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(JSCDATASectionConstructor) };
84
85/* Hash table for prototype */
86
87static const HashTableValue JSCDATASectionPrototypeTableValues[] =
88{
89 { "constructor", static_cast<unsigned>(JSC::PropertyAttribute::DontEnum), NoIntrinsic, { (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsCDATASectionConstructor), (intptr_t) static_cast<PutPropertySlot::PutValueFunc>(setJSCDATASectionConstructor) } },
90};
91
92const ClassInfo JSCDATASectionPrototype::s_info = { "CDATASectionPrototype", &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(JSCDATASectionPrototype) };
93
94void JSCDATASectionPrototype::finishCreation(VM& vm)
95{
96 Base::finishCreation(vm);
97 reifyStaticProperties(vm, JSCDATASection::info(), JSCDATASectionPrototypeTableValues, *this);
98}
99
100const ClassInfo JSCDATASection::s_info = { "CDATASection", &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(JSCDATASection) };
101
102JSCDATASection::JSCDATASection(Structure* structure, JSDOMGlobalObject& globalObject, Ref<CDATASection>&& impl)
103 : JSText(structure, globalObject, WTFMove(impl))
104{
105}
106
107void JSCDATASection::finishCreation(VM& vm)
108{
109 Base::finishCreation(vm);
110 ASSERT(inherits(vm, info()));
111
112}
113
114JSObject* JSCDATASection::createPrototype(VM& vm, JSDOMGlobalObject& globalObject)
115{
116 return JSCDATASectionPrototype::create(vm, &globalObject, JSCDATASectionPrototype::createStructure(vm, &globalObject, JSText::prototype(vm, globalObject)));
117}
118
119JSObject* JSCDATASection::prototype(VM& vm, JSDOMGlobalObject& globalObject)
120{
121 return getDOMPrototype<JSCDATASection>(vm, globalObject);
122}
123
124JSValue JSCDATASection::getConstructor(VM& vm, const JSGlobalObject* globalObject)
125{
126 return getDOMConstructor<JSCDATASectionConstructor>(vm, *jsCast<const JSDOMGlobalObject*>(globalObject));
127}
128
129EncodedJSValue jsCDATASectionConstructor(ExecState* state, EncodedJSValue thisValue, PropertyName)
130{
131 VM& vm = state->vm();
132 auto throwScope = DECLARE_THROW_SCOPE(vm);
133 auto* prototype = jsDynamicCast<JSCDATASectionPrototype*>(vm, JSValue::decode(thisValue));
134 if (UNLIKELY(!prototype))
135 return throwVMTypeError(state, throwScope);
136 return JSValue::encode(JSCDATASection::getConstructor(state->vm(), prototype->globalObject()));
137}
138
139bool setJSCDATASectionConstructor(ExecState* state, EncodedJSValue thisValue, EncodedJSValue encodedValue)
140{
141 VM& vm = state->vm();
142 auto throwScope = DECLARE_THROW_SCOPE(vm);
143 auto* prototype = jsDynamicCast<JSCDATASectionPrototype*>(vm, JSValue::decode(thisValue));
144 if (UNLIKELY(!prototype)) {
145 throwVMTypeError(state, throwScope);
146 return false;
147 }
148 // Shadowing a built-in constructor
149 return prototype->putDirect(vm, vm.propertyNames->constructor, JSValue::decode(encodedValue));
150}
151
152void JSCDATASection::heapSnapshot(JSCell* cell, HeapSnapshotBuilder& builder)
153{
154 auto* thisObject = jsCast<JSCDATASection*>(cell);
155 builder.setWrappedObjectForCell(cell, &thisObject->wrapped());
156 if (thisObject->scriptExecutionContext())
157 builder.setLabelForCell(cell, "url " + thisObject->scriptExecutionContext()->url().string());
158 Base::heapSnapshot(cell, builder);
159}
160
161#if ENABLE(BINDING_INTEGRITY)
162#if PLATFORM(WIN)
163#pragma warning(disable: 4483)
164extern "C" { extern void (*const __identifier("??_7CDATASection@WebCore@@6B@")[])(); }
165#else
166extern "C" { extern void* _ZTVN7WebCore12CDATASectionE[]; }
167#endif
168#endif
169
170JSC::JSValue toJSNewlyCreated(JSC::ExecState*, JSDOMGlobalObject* globalObject, Ref<CDATASection>&& impl)
171{
172
173#if ENABLE(BINDING_INTEGRITY)
174 void* actualVTablePointer = *(reinterpret_cast<void**>(impl.ptr()));
175#if PLATFORM(WIN)
176 void* expectedVTablePointer = WTF_PREPARE_VTBL_POINTER_FOR_INSPECTION(__identifier("??_7CDATASection@WebCore@@6B@"));
177#else
178 void* expectedVTablePointer = WTF_PREPARE_VTBL_POINTER_FOR_INSPECTION(&_ZTVN7WebCore12CDATASectionE[2]);
179#endif
180
181 // If this fails CDATASection does not have a vtable, so you need to add the
182 // ImplementationLacksVTable attribute to the interface definition
183 static_assert(std::is_polymorphic<CDATASection>::value, "CDATASection is not polymorphic");
184
185 // If you hit this assertion you either have a use after free bug, or
186 // CDATASection has subclasses. If CDATASection has subclasses that get passed
187 // to toJS() we currently require CDATASection you to opt out of binding hardening
188 // by adding the SkipVTableValidation attribute to the interface IDL definition
189 RELEASE_ASSERT(actualVTablePointer == expectedVTablePointer);
190#endif
191 return createWrapper<CDATASection>(globalObject, WTFMove(impl));
192}
193
194JSC::JSValue toJS(JSC::ExecState* state, JSDOMGlobalObject* globalObject, CDATASection& impl)
195{
196 return wrap(state, globalObject, impl);
197}
198
199
200}
201