1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
/*
* Copyright (C) 2020 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include "AdvancedPrivacyProtections.h"
#include "EventLoop.h"
#include "Microtasks.h"
#include "ReferrerPolicy.h"
#include "ScriptExecutionContext.h"
#include "SecurityOrigin.h"
#include <wtf/TZoneMalloc.h>
namespace WebCore {
class EmptyScriptExecutionContext final : public RefCounted<EmptyScriptExecutionContext>, public ScriptExecutionContext {
public:
static Ref<EmptyScriptExecutionContext> create(JSC::VM& vm)
{
return adoptRef(*new EmptyScriptExecutionContext(vm));
}
~EmptyScriptExecutionContext()
{
m_eventLoop->removeAssociatedContext(*this);
}
bool isSecureContext() const final { return false; }
bool isJSExecutionForbidden() const final { return false; }
EventLoopTaskGroup& eventLoop() final
{
ASSERT_NOT_REACHED();
return *m_eventLoopTaskGroup;
}
const URL& url() const final { return m_url; }
const URL& cookieURL() const final { return url(); }
URL completeURL(const String&, ForceUTF8 = ForceUTF8::No) const final { return { }; };
String userAgent(const URL&) const final { return emptyString(); }
ReferrerPolicy referrerPolicy() const final { return ReferrerPolicy::EmptyString; }
void disableEval(const String&) final { };
void disableWebAssembly(const String&) final { };
void setRequiresTrustedTypes(bool) final { };
IDBClient::IDBConnectionProxy* idbConnectionProxy() final { return nullptr; }
SocketProvider* socketProvider() final { return nullptr; }
void addConsoleMessage(std::unique_ptr<Inspector::ConsoleMessage>&&) final { }
void addConsoleMessage(MessageSource, MessageLevel, const String&, unsigned long) final { };
SecurityOrigin& topOrigin() const final { return m_origin.get(); };
OptionSet<AdvancedPrivacyProtections> advancedPrivacyProtections() const final { return { }; }
std::optional<uint64_t> noiseInjectionHashSalt() const { return std::nullopt; }
OptionSet<NoiseInjectionPolicy> noiseInjectionPolicies() const { return { }; }
void postTask(Task&&) final { ASSERT_NOT_REACHED(); }
EventTarget* errorEventTarget() final { return nullptr; };
std::optional<Vector<uint8_t>> wrapCryptoKey(const Vector<uint8_t>&) final { return std::nullopt; }
std::optional<Vector<uint8_t>> serializeAndWrapCryptoKey(CryptoKeyData&&) final { return std::nullopt; }
std::optional<Vector<uint8_t>> unwrapCryptoKey(const Vector<uint8_t>&) final { return std::nullopt; }
JSC::VM& vm() final { return m_vm; }
JSC::VM* vmIfExists() const final { return m_vm.ptr(); }
using RefCounted::ref;
using RefCounted::deref;
private:
EmptyScriptExecutionContext(JSC::VM& vm)
: ScriptExecutionContext(Type::EmptyScriptExecutionContext)
, m_vm(vm)
, m_origin(SecurityOrigin::createOpaque())
, m_eventLoop(EmptyEventLoop::create(vm))
, m_eventLoopTaskGroup(makeUnique<EventLoopTaskGroup>(m_eventLoop))
{
relaxAdoptionRequirement();
m_eventLoop->addAssociatedContext(*this);
}
void addMessage(MessageSource, MessageLevel, const String&, const String&, unsigned, unsigned, RefPtr<Inspector::ScriptCallStack>&&, JSC::JSGlobalObject* = nullptr, unsigned long = 0) final { }
void logExceptionToConsole(const String&, const String&, int, int, RefPtr<Inspector::ScriptCallStack>&&) final { }
const Settings::Values& settingsValues() const final { return m_settingsValues; }
#if ENABLE(NOTIFICATIONS)
NotificationClient* notificationClient() final { return nullptr; }
#endif
class EmptyEventLoop final : public EventLoop {
public:
static Ref<EmptyEventLoop> create(JSC::VM& vm)
{
return adoptRef(*new EmptyEventLoop(vm));
}
MicrotaskQueue& microtaskQueue() final { return m_queue; };
private:
explicit EmptyEventLoop(JSC::VM& vm)
: m_queue(MicrotaskQueue(vm, *this))
{
}
void scheduleToRun() final { ASSERT_NOT_REACHED(); }
bool isContextThread() const final { return true; }
MicrotaskQueue m_queue;
};
Ref<JSC::VM> m_vm;
Ref<SecurityOrigin> m_origin;
URL m_url;
Ref<EmptyEventLoop> m_eventLoop;
std::unique_ptr<EventLoopTaskGroup> m_eventLoopTaskGroup;
Settings::Values m_settingsValues;
};
} // namespace WebCore
SPECIALIZE_TYPE_TRAITS_BEGIN(WebCore::EmptyScriptExecutionContext)
static bool isType(const WebCore::ScriptExecutionContext& context) { return context.isEmptyScriptExecutionContext(); }
SPECIALIZE_TYPE_TRAITS_END()
|