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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "config.h"
#include "modules/serviceworkers/WaitUntilObserver.h"
#include "bindings/core/v8/ScriptFunction.h"
#include "bindings/core/v8/ScriptPromise.h"
#include "bindings/core/v8/ScriptValue.h"
#include "bindings/core/v8/V8Binding.h"
#include "core/dom/ExceptionCode.h"
#include "core/dom/ExecutionContext.h"
#include "modules/serviceworkers/ServiceWorkerGlobalScope.h"
#include "platform/NotImplemented.h"
#include "public/platform/WebServiceWorkerEventResult.h"
#include "wtf/Assertions.h"
#include "wtf/RefCounted.h"
#include "wtf/RefPtr.h"
#include <v8.h>
namespace blink {
class WaitUntilObserver::ThenFunction final : public ScriptFunction {
public:
enum ResolveType {
Fulfilled,
Rejected,
};
static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, WaitUntilObserver* observer, ResolveType type)
{
ThenFunction* self = new ThenFunction(scriptState, observer, type);
return self->bindToV8Function();
}
virtual void trace(Visitor* visitor) override
{
visitor->trace(m_observer);
ScriptFunction::trace(visitor);
}
private:
ThenFunction(ScriptState* scriptState, WaitUntilObserver* observer, ResolveType type)
: ScriptFunction(scriptState)
, m_observer(observer)
, m_resolveType(type)
{
}
virtual ScriptValue call(ScriptValue value) override
{
ASSERT(m_observer);
ASSERT(m_resolveType == Fulfilled || m_resolveType == Rejected);
if (m_resolveType == Rejected)
m_observer->reportError(value);
m_observer->decrementPendingActivity();
m_observer = nullptr;
return value;
}
Member<WaitUntilObserver> m_observer;
ResolveType m_resolveType;
};
WaitUntilObserver* WaitUntilObserver::create(ExecutionContext* context, EventType type, int eventID)
{
return new WaitUntilObserver(context, type, eventID);
}
void WaitUntilObserver::willDispatchEvent()
{
incrementPendingActivity();
}
void WaitUntilObserver::didDispatchEvent(bool errorOccurred)
{
if (errorOccurred)
m_hasError = true;
decrementPendingActivity();
m_eventDispatched = true;
}
void WaitUntilObserver::waitUntil(ScriptState* scriptState, const ScriptValue& value, ExceptionState& exceptionState)
{
if (m_eventDispatched) {
exceptionState.throwDOMException(InvalidStateError, "The event handler is already finished.");
return;
}
if (!executionContext())
return;
// When handling a notificationclick event, we want to allow one window to
// be focused. Regardless of whether one window was focused,
// |consumeWindowFocus| will be called when all the pending activities will
// be resolved.
if (m_type == NotificationClick)
executionContext()->allowWindowFocus();
incrementPendingActivity();
ScriptPromise::cast(scriptState, value).then(
ThenFunction::createFunction(scriptState, this, ThenFunction::Fulfilled),
ThenFunction::createFunction(scriptState, this, ThenFunction::Rejected));
}
WaitUntilObserver::WaitUntilObserver(ExecutionContext* context, EventType type, int eventID)
: ContextLifecycleObserver(context)
, m_type(type)
, m_eventID(eventID)
, m_pendingActivity(0)
, m_hasError(false)
, m_eventDispatched(false)
{
}
void WaitUntilObserver::reportError(const ScriptValue& value)
{
// FIXME: Propagate error message to the client for onerror handling.
notImplemented();
m_hasError = true;
}
void WaitUntilObserver::incrementPendingActivity()
{
++m_pendingActivity;
}
void WaitUntilObserver::decrementPendingActivity()
{
ASSERT(m_pendingActivity > 0);
if (!executionContext() || (!m_hasError && --m_pendingActivity))
return;
ServiceWorkerGlobalScopeClient* client = ServiceWorkerGlobalScopeClient::from(executionContext());
WebServiceWorkerEventResult result = m_hasError ? WebServiceWorkerEventResultRejected : WebServiceWorkerEventResultCompleted;
switch (m_type) {
case Activate:
client->didHandleActivateEvent(m_eventID, result);
break;
case Install:
client->didHandleInstallEvent(m_eventID, result);
break;
case NotificationClick:
client->didHandleNotificationClickEvent(m_eventID, result);
executionContext()->consumeWindowFocus();
break;
case Push:
client->didHandlePushEvent(m_eventID, result);
break;
}
observeContext(0);
}
void WaitUntilObserver::trace(Visitor* visitor)
{
ContextLifecycleObserver::trace(visitor);
}
} // namespace blink
|