mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
37c5d788b2
--HG-- extra : rebase_source : 6c710937fde2ebe679908690c1295927eb4c195d
298 lines
8.1 KiB
C++
298 lines
8.1 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/. */
|
|
|
|
#ifndef mozilla_dom_workers_serviceworkermanager_h
|
|
#define mozilla_dom_workers_serviceworkermanager_h
|
|
|
|
#include "nsIServiceWorkerManager.h"
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/LinkedList.h"
|
|
#include "mozilla/dom/BindingUtils.h"
|
|
#include "mozilla/dom/Promise.h"
|
|
#include "nsClassHashtable.h"
|
|
#include "nsDataHashtable.h"
|
|
#include "nsRefPtrHashtable.h"
|
|
#include "nsTArrayForwardDeclare.h"
|
|
#include "nsTWeakRef.h"
|
|
|
|
class nsIScriptError;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace workers {
|
|
|
|
class ServiceWorker;
|
|
class ServiceWorkerContainer;
|
|
class ServiceWorkerUpdateInstance;
|
|
|
|
/**
|
|
* UpdatePromise is a utility class that sort of imitates Promise, but not
|
|
* completely. Using DOM Promise from C++ is a pain when we know the precise types
|
|
* we're dealing with since it involves dealing with JSAPI. In this case we
|
|
* also don't (yet) need the 'thenables added after resolution should trigger
|
|
* immediately' support and other things like that. All we want is something
|
|
* that works reasonably Promise like and can resolve real DOM Promises added
|
|
* pre-emptively.
|
|
*/
|
|
class UpdatePromise MOZ_FINAL
|
|
{
|
|
public:
|
|
UpdatePromise();
|
|
~UpdatePromise();
|
|
|
|
void AddPromise(Promise* aPromise);
|
|
void ResolveAllPromises(const nsACString& aScriptSpec, const nsACString& aScope);
|
|
void RejectAllPromises(nsresult aRv);
|
|
void RejectAllPromises(const ErrorEventInit& aErrorDesc);
|
|
|
|
bool
|
|
IsRejected() const
|
|
{
|
|
return mState == Rejected;
|
|
}
|
|
|
|
private:
|
|
enum {
|
|
Pending,
|
|
Resolved,
|
|
Rejected
|
|
} mState;
|
|
|
|
// XXXnsm: Right now we don't need to support AddPromise() after
|
|
// already being resolved (i.e. true Promise-like behaviour).
|
|
nsTArray<nsTWeakRef<Promise>> mPromises;
|
|
};
|
|
|
|
/*
|
|
* Wherever the spec treats a worker instance and a description of said worker
|
|
* as the same thing; i.e. "Resolve foo with
|
|
* _GetNewestWorker(serviceWorkerRegistration)", we represent the description
|
|
* by this class and spawn a ServiceWorker in the right global when required.
|
|
*/
|
|
class ServiceWorkerInfo
|
|
{
|
|
nsCString mScriptSpec;
|
|
public:
|
|
|
|
bool
|
|
IsValid() const
|
|
{
|
|
return !mScriptSpec.IsVoid();
|
|
}
|
|
|
|
void
|
|
Invalidate()
|
|
{
|
|
mScriptSpec.SetIsVoid(true);
|
|
}
|
|
|
|
const nsCString&
|
|
GetScriptSpec() const
|
|
{
|
|
MOZ_ASSERT(IsValid());
|
|
return mScriptSpec;
|
|
}
|
|
|
|
ServiceWorkerInfo()
|
|
{
|
|
Invalidate();
|
|
}
|
|
|
|
explicit ServiceWorkerInfo(const nsACString& aScriptSpec)
|
|
: mScriptSpec(aScriptSpec)
|
|
{ }
|
|
};
|
|
|
|
// Needs to inherit from nsISupports because NS_ProxyRelease() does not support
|
|
// non-ISupports classes.
|
|
class ServiceWorkerRegistration MOZ_FINAL : public nsISupports
|
|
{
|
|
virtual ~ServiceWorkerRegistration();
|
|
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
|
|
nsCString mScope;
|
|
// The scriptURL for the registration. This may be completely different from
|
|
// the URLs of the following three workers.
|
|
nsCString mScriptSpec;
|
|
|
|
ServiceWorkerInfo mCurrentWorker;
|
|
ServiceWorkerInfo mWaitingWorker;
|
|
ServiceWorkerInfo mInstallingWorker;
|
|
|
|
nsAutoPtr<UpdatePromise> mUpdatePromise;
|
|
nsRefPtr<ServiceWorkerUpdateInstance> mUpdateInstance;
|
|
|
|
void
|
|
AddUpdatePromiseObserver(Promise* aPromise)
|
|
{
|
|
MOZ_ASSERT(HasUpdatePromise());
|
|
mUpdatePromise->AddPromise(aPromise);
|
|
}
|
|
|
|
bool
|
|
HasUpdatePromise()
|
|
{
|
|
return mUpdatePromise;
|
|
}
|
|
|
|
// When unregister() is called on a registration, it is not immediately
|
|
// removed since documents may be controlled. It is marked as
|
|
// pendingUninstall and when all controlling documents go away, removed.
|
|
bool mPendingUninstall;
|
|
|
|
explicit ServiceWorkerRegistration(const nsACString& aScope);
|
|
|
|
ServiceWorkerInfo
|
|
Newest() const
|
|
{
|
|
if (mInstallingWorker.IsValid()) {
|
|
return mInstallingWorker;
|
|
} else if (mWaitingWorker.IsValid()) {
|
|
return mWaitingWorker;
|
|
} else {
|
|
return mCurrentWorker;
|
|
}
|
|
}
|
|
};
|
|
|
|
#define NS_SERVICEWORKERMANAGER_IMPL_IID \
|
|
{ /* f4f8755a-69ca-46e8-a65d-775745535990 */ \
|
|
0xf4f8755a, \
|
|
0x69ca, \
|
|
0x46e8, \
|
|
{ 0xa6, 0x5d, 0x77, 0x57, 0x45, 0x53, 0x59, 0x90 } \
|
|
}
|
|
|
|
/*
|
|
* The ServiceWorkerManager is a per-process global that deals with the
|
|
* installation, querying and event dispatch of ServiceWorkers for all the
|
|
* origins in the process.
|
|
*/
|
|
class ServiceWorkerManager MOZ_FINAL : public nsIServiceWorkerManager
|
|
{
|
|
friend class RegisterRunnable;
|
|
friend class CallInstallRunnable;
|
|
friend class ServiceWorkerUpdateInstance;
|
|
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSISERVICEWORKERMANAGER
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_SERVICEWORKERMANAGER_IMPL_IID)
|
|
|
|
static ServiceWorkerManager* FactoryCreate()
|
|
{
|
|
ServiceWorkerManager* res = new ServiceWorkerManager;
|
|
NS_ADDREF(res);
|
|
return res;
|
|
}
|
|
|
|
/*
|
|
* This struct is used for passive ServiceWorker management.
|
|
* Actively running ServiceWorkers use the SharedWorker infrastructure in
|
|
* RuntimeService for execution and lifetime management.
|
|
*/
|
|
struct ServiceWorkerDomainInfo
|
|
{
|
|
// Scope to registration.
|
|
nsRefPtrHashtable<nsCStringHashKey, ServiceWorkerRegistration> mServiceWorkerRegistrations;
|
|
|
|
ServiceWorkerDomainInfo()
|
|
{ }
|
|
|
|
already_AddRefed<ServiceWorkerRegistration>
|
|
GetRegistration(const nsCString& aScope) const
|
|
{
|
|
nsRefPtr<ServiceWorkerRegistration> reg;
|
|
mServiceWorkerRegistrations.Get(aScope, getter_AddRefs(reg));
|
|
return reg.forget();
|
|
}
|
|
|
|
ServiceWorkerRegistration*
|
|
CreateNewRegistration(const nsCString& aScope)
|
|
{
|
|
ServiceWorkerRegistration* registration =
|
|
new ServiceWorkerRegistration(aScope);
|
|
// From now on ownership of registration is with
|
|
// mServiceWorkerRegistrations.
|
|
mServiceWorkerRegistrations.Put(aScope, registration);
|
|
return registration;
|
|
}
|
|
};
|
|
|
|
nsClassHashtable<nsCStringHashKey, ServiceWorkerDomainInfo> mDomainMap;
|
|
|
|
void
|
|
ResolveRegisterPromises(ServiceWorkerRegistration* aRegistration,
|
|
const nsACString& aWorkerScriptSpec);
|
|
|
|
void
|
|
RejectUpdatePromiseObservers(ServiceWorkerRegistration* aRegistration,
|
|
nsresult aResult);
|
|
|
|
void
|
|
RejectUpdatePromiseObservers(ServiceWorkerRegistration* aRegistration,
|
|
const ErrorEventInit& aErrorDesc);
|
|
|
|
void
|
|
FinishFetch(ServiceWorkerRegistration* aRegistration,
|
|
nsPIDOMWindow* aWindow);
|
|
|
|
void
|
|
FinishInstall(ServiceWorkerRegistration* aRegistration);
|
|
|
|
void
|
|
HandleError(JSContext* aCx,
|
|
const nsACString& aScope,
|
|
const nsAString& aWorkerURL,
|
|
nsString aMessage,
|
|
nsString aFilename,
|
|
nsString aLine,
|
|
uint32_t aLineNumber,
|
|
uint32_t aColumnNumber,
|
|
uint32_t aFlags);
|
|
|
|
static already_AddRefed<ServiceWorkerManager>
|
|
GetInstance();
|
|
|
|
private:
|
|
ServiceWorkerManager();
|
|
~ServiceWorkerManager();
|
|
|
|
NS_IMETHOD
|
|
Update(ServiceWorkerRegistration* aRegistration, nsPIDOMWindow* aWindow);
|
|
|
|
void
|
|
Install(ServiceWorkerRegistration* aRegistration,
|
|
ServiceWorkerInfo aServiceWorkerInfo);
|
|
|
|
NS_IMETHOD
|
|
CreateServiceWorkerForWindow(nsPIDOMWindow* aWindow,
|
|
const nsACString& aScriptSpec,
|
|
const nsACString& aScope,
|
|
ServiceWorker** aServiceWorker);
|
|
|
|
NS_IMETHOD
|
|
CreateServiceWorker(const nsACString& aScriptSpec,
|
|
const nsACString& aScope,
|
|
ServiceWorker** aServiceWorker);
|
|
|
|
static PLDHashOperator
|
|
CleanupServiceWorkerInformation(const nsACString& aDomain,
|
|
ServiceWorkerDomainInfo* aDomainInfo,
|
|
void *aUnused);
|
|
};
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(ServiceWorkerManager,
|
|
NS_SERVICEWORKERMANAGER_IMPL_IID);
|
|
|
|
} // namespace workers
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_workers_serviceworkermanager_h
|