replaced by .editorconfig # ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D287843
115 lines
3.5 KiB
C++
115 lines
3.5 KiB
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "ServiceWorkerProxy.h"
|
|
|
|
#include "ServiceWorkerInfo.h"
|
|
#include "ServiceWorkerManager.h"
|
|
#include "ServiceWorkerParent.h"
|
|
#include "mozilla/SchedulerGroup.h"
|
|
#include "mozilla/ScopeExit.h"
|
|
#include "mozilla/dom/ClientState.h"
|
|
#include "mozilla/ipc/BackgroundParent.h"
|
|
|
|
namespace mozilla::dom {
|
|
|
|
using mozilla::ipc::AssertIsOnBackgroundThread;
|
|
|
|
ServiceWorkerProxy::~ServiceWorkerProxy() {
|
|
// Any thread
|
|
MOZ_DIAGNOSTIC_ASSERT(!mActor);
|
|
MOZ_DIAGNOSTIC_ASSERT(!mInfo);
|
|
}
|
|
|
|
void ServiceWorkerProxy::MaybeShutdownOnBGThread() {
|
|
AssertIsOnBackgroundThread();
|
|
if (!mActor) {
|
|
return;
|
|
}
|
|
mActor->MaybeSendDelete();
|
|
}
|
|
|
|
void ServiceWorkerProxy::InitOnMainThread() {
|
|
AssertIsOnMainThread();
|
|
|
|
auto scopeExit = MakeScopeExit([&] { MaybeShutdownOnMainThread(); });
|
|
|
|
RefPtr<ServiceWorkerManager> swm = ServiceWorkerManager::GetInstance();
|
|
NS_ENSURE_TRUE_VOID(swm);
|
|
|
|
RefPtr<ServiceWorkerRegistrationInfo> reg =
|
|
swm->GetRegistration(mDescriptor.PrincipalInfo(), mDescriptor.Scope());
|
|
NS_ENSURE_TRUE_VOID(reg);
|
|
|
|
RefPtr<ServiceWorkerInfo> info = reg->GetByDescriptor(mDescriptor);
|
|
NS_ENSURE_TRUE_VOID(info);
|
|
|
|
scopeExit.release();
|
|
|
|
mInfo = new nsMainThreadPtrHolder<ServiceWorkerInfo>(
|
|
"ServiceWorkerProxy::mInfo", info);
|
|
}
|
|
|
|
void ServiceWorkerProxy::MaybeShutdownOnMainThread() {
|
|
AssertIsOnMainThread();
|
|
|
|
nsCOMPtr<nsIRunnable> r = NewRunnableMethod(
|
|
__func__, this, &ServiceWorkerProxy::MaybeShutdownOnBGThread);
|
|
|
|
MOZ_ALWAYS_SUCCEEDS(mEventTarget->Dispatch(r.forget(), NS_DISPATCH_NORMAL));
|
|
}
|
|
|
|
void ServiceWorkerProxy::StopListeningOnMainThread() {
|
|
AssertIsOnMainThread();
|
|
mInfo = nullptr;
|
|
}
|
|
|
|
ServiceWorkerProxy::ServiceWorkerProxy(
|
|
const ServiceWorkerDescriptor& aDescriptor)
|
|
: mEventTarget(GetCurrentSerialEventTarget()), mDescriptor(aDescriptor) {}
|
|
|
|
void ServiceWorkerProxy::Init(ServiceWorkerParent* aActor) {
|
|
AssertIsOnBackgroundThread();
|
|
MOZ_DIAGNOSTIC_ASSERT(aActor);
|
|
MOZ_DIAGNOSTIC_ASSERT(!mActor);
|
|
MOZ_DIAGNOSTIC_ASSERT(mEventTarget);
|
|
|
|
mActor = aActor;
|
|
|
|
// Note, this must be done from a separate Init() method and not in
|
|
// the constructor. If done from the constructor the runnable can
|
|
// execute, complete, and release its reference before the constructor
|
|
// returns.
|
|
nsCOMPtr<nsIRunnable> r = NewRunnableMethod(
|
|
"ServiceWorkerProxy::Init", this, &ServiceWorkerProxy::InitOnMainThread);
|
|
MOZ_ALWAYS_SUCCEEDS(SchedulerGroup::Dispatch(r.forget()));
|
|
}
|
|
|
|
void ServiceWorkerProxy::RevokeActor(ServiceWorkerParent* aActor) {
|
|
AssertIsOnBackgroundThread();
|
|
MOZ_DIAGNOSTIC_ASSERT(mActor);
|
|
MOZ_DIAGNOSTIC_ASSERT(mActor == aActor);
|
|
mActor = nullptr;
|
|
|
|
nsCOMPtr<nsIRunnable> r = NewRunnableMethod(
|
|
__func__, this, &ServiceWorkerProxy::StopListeningOnMainThread);
|
|
MOZ_ALWAYS_SUCCEEDS(SchedulerGroup::Dispatch(r.forget()));
|
|
}
|
|
|
|
void ServiceWorkerProxy::PostMessage(ipc::StructuredCloneData* aData,
|
|
const PostMessageSource& aSource) {
|
|
AssertIsOnBackgroundThread();
|
|
RefPtr<ServiceWorkerProxy> self = this;
|
|
nsCOMPtr<nsIRunnable> r = NS_NewRunnableFunction(
|
|
__func__, [self, data = RefPtr{aData}, aSource]() mutable {
|
|
if (!self->mInfo) {
|
|
return;
|
|
}
|
|
self->mInfo->PostMessage(data, aSource);
|
|
});
|
|
MOZ_ALWAYS_SUCCEEDS(SchedulerGroup::Dispatch(r.forget()));
|
|
}
|
|
|
|
} // namespace mozilla::dom
|