| 1 | /* |
| 2 | * Copyright (C) 2018 Igalia S.L. |
| 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 | * 1. Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * 2. Redistributions in binary form must reproduce the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer in the |
| 11 | * documentation and/or other materials provided with the distribution. |
| 12 | * |
| 13 | * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| 14 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| 15 | * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 16 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| 17 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 18 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 19 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 20 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 21 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 22 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| 23 | * THE POSSIBILITY OF SUCH DAMAGE. |
| 24 | */ |
| 25 | |
| 26 | #include "config.h" |
| 27 | #include "JSAPIWrapperGlobalObject.h" |
| 28 | |
| 29 | #include "JSCInlines.h" |
| 30 | #include "JSCallbackObject.h" |
| 31 | #include "Structure.h" |
| 32 | #include <wtf/NeverDestroyed.h> |
| 33 | |
| 34 | class JSAPIWrapperGlobalObjectHandleOwner : public JSC::WeakHandleOwner { |
| 35 | public: |
| 36 | void finalize(JSC::Handle<JSC::Unknown>, void*) override; |
| 37 | }; |
| 38 | |
| 39 | static JSAPIWrapperGlobalObjectHandleOwner* jsAPIWrapperGlobalObjectHandleOwner() |
| 40 | { |
| 41 | static NeverDestroyed<JSAPIWrapperGlobalObjectHandleOwner> jsWrapperGlobalObjectHandleOwner; |
| 42 | return &jsWrapperGlobalObjectHandleOwner.get(); |
| 43 | } |
| 44 | |
| 45 | void JSAPIWrapperGlobalObjectHandleOwner::finalize(JSC::Handle<JSC::Unknown> handle, void*) |
| 46 | { |
| 47 | auto* wrapperObject = static_cast<JSC::JSAPIWrapperGlobalObject*>(handle.get().asCell()); |
| 48 | if (!wrapperObject->wrappedObject()) |
| 49 | return; |
| 50 | |
| 51 | JSC::Heap::heap(wrapperObject)->releaseSoon(std::unique_ptr<JSC::JSCGLibWrapperObject>(wrapperObject->wrappedObject())); |
| 52 | JSC::WeakSet::deallocate(JSC::WeakImpl::asWeakImpl(handle.slot())); |
| 53 | } |
| 54 | |
| 55 | namespace JSC { |
| 56 | |
| 57 | template <> const ClassInfo JSCallbackObject<JSAPIWrapperGlobalObject>::s_info = { "JSAPIWrapperGlobalObject" , &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(JSCallbackObject) }; |
| 58 | |
| 59 | template<> const bool JSCallbackObject<JSAPIWrapperGlobalObject>::needsDestruction = false; |
| 60 | |
| 61 | template <> |
| 62 | Structure* JSCallbackObject<JSAPIWrapperGlobalObject>::createStructure(VM& vm, JSGlobalObject*, JSValue proto) |
| 63 | { |
| 64 | return Structure::create(vm, nullptr, proto, TypeInfo(GlobalObjectType, StructureFlags), &s_info); |
| 65 | } |
| 66 | |
| 67 | template<> |
| 68 | JSCallbackObject<JSAPIWrapperGlobalObject>* JSCallbackObject<JSAPIWrapperGlobalObject>::create(VM& vm, JSClassRef classRef, Structure* structure) |
| 69 | { |
| 70 | JSCallbackObject<JSAPIWrapperGlobalObject>* callbackObject = new (NotNull, allocateCell<JSCallbackObject<JSAPIWrapperGlobalObject>>(vm.heap)) JSCallbackObject(vm, classRef, structure); |
| 71 | callbackObject->finishCreation(vm); |
| 72 | return callbackObject; |
| 73 | } |
| 74 | |
| 75 | JSAPIWrapperGlobalObject::JSAPIWrapperGlobalObject(VM& vm, Structure* structure) |
| 76 | : Base(vm, structure) |
| 77 | { |
| 78 | } |
| 79 | |
| 80 | void JSAPIWrapperGlobalObject::finishCreation(VM& vm) |
| 81 | { |
| 82 | Base::finishCreation(vm); |
| 83 | WeakSet::allocate(this, jsAPIWrapperGlobalObjectHandleOwner(), 0); // Balanced in JSAPIWrapperGlobalObjectHandleOwner::finalize. |
| 84 | } |
| 85 | |
| 86 | void JSAPIWrapperGlobalObject::visitChildren(JSCell* cell, JSC::SlotVisitor& visitor) |
| 87 | { |
| 88 | Base::visitChildren(cell, visitor); |
| 89 | } |
| 90 | |
| 91 | } // namespace JSC |
| 92 | |