2013-11-19 15:15:02 -08:00
/* 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 "ServiceWorkerManager.h"
2015-02-11 03:53:00 -08:00
# include "nsIAppsService.h"
2014-07-14 14:15:23 -07:00
# include "nsIDOMEventTarget.h"
2013-11-19 15:15:02 -08:00
# include "nsIDocument.h"
2014-07-02 17:48:50 -07:00
# include "nsIScriptSecurityManager.h"
2014-12-19 02:00:29 -08:00
# include "nsIStreamLoader.h"
# include "nsIHttpChannel.h"
# include "nsIHttpChannelInternal.h"
2015-02-18 17:34:29 -08:00
# include "nsIHttpHeaderVisitor.h"
# include "nsINetworkInterceptController.h"
2013-11-19 15:15:02 -08:00
# include "nsPIDOMWindow.h"
2015-03-18 09:46:38 -07:00
# include "nsScriptLoader.h"
2015-02-18 17:34:29 -08:00
# include "nsDebug.h"
2013-11-19 15:15:02 -08:00
# include "jsapi.h"
2014-12-12 08:06:00 -08:00
# include "mozilla/LoadContext.h"
2013-11-19 15:15:02 -08:00
# include "mozilla/dom/BindingUtils.h"
2014-06-11 09:12:56 -07:00
# include "mozilla/dom/DOMError.h"
2014-07-02 17:48:35 -07:00
# include "mozilla/dom/ErrorEvent.h"
2015-02-18 17:34:29 -08:00
# include "mozilla/dom/Headers.h"
2014-07-02 17:48:50 -07:00
# include "mozilla/dom/InstallEventBinding.h"
2015-02-18 17:34:29 -08:00
# include "mozilla/dom/InternalHeaders.h"
2014-10-28 13:11:31 -07:00
# include "mozilla/dom/Navigator.h"
2014-07-02 17:48:50 -07:00
# include "mozilla/dom/PromiseNativeHandler.h"
2015-02-18 17:34:29 -08:00
# include "mozilla/dom/Request.h"
# include "mozilla/dom/RootedDictionary.h"
2015-02-11 03:53:00 -08:00
# include "mozilla/ipc/BackgroundChild.h"
# include "mozilla/ipc/PBackgroundChild.h"
# include "mozilla/ipc/PBackgroundSharedTypes.h"
2014-06-11 09:12:56 -07:00
2013-11-19 15:15:02 -08:00
# include "nsContentUtils.h"
2014-10-28 13:11:31 -07:00
# include "nsGlobalWindow.h"
2013-11-19 15:15:02 -08:00
# include "nsNetUtil.h"
2014-06-11 09:12:56 -07:00
# include "nsProxyRelease.h"
2013-11-19 15:15:02 -08:00
# include "nsTArray.h"
# include "RuntimeService.h"
# include "ServiceWorker.h"
2014-10-27 04:03:00 -07:00
# include "ServiceWorkerClient.h"
2014-10-28 13:11:31 -07:00
# include "ServiceWorkerContainer.h"
2014-08-19 06:56:00 -07:00
# include "ServiceWorkerRegistration.h"
2015-03-18 09:46:38 -07:00
# include "ServiceWorkerScriptCache.h"
2014-07-02 17:48:50 -07:00
# include "ServiceWorkerEvents.h"
2013-11-19 15:15:02 -08:00
# include "WorkerInlines.h"
2014-06-11 09:12:56 -07:00
# include "WorkerPrivate.h"
# include "WorkerRunnable.h"
2014-07-02 17:48:50 -07:00
# include "WorkerScope.h"
2013-11-19 15:15:02 -08:00
2014-12-12 08:06:00 -08:00
# ifdef PostMessage
# undef PostMessage
# endif
2013-11-19 15:15:02 -08:00
using namespace mozilla ;
using namespace mozilla : : dom ;
2015-02-11 03:53:00 -08:00
using namespace mozilla : : ipc ;
2013-11-19 15:15:02 -08:00
BEGIN_WORKERS_NAMESPACE
2015-03-17 08:47:02 -07:00
static_assert ( nsIHttpChannelInternal : : CORS_MODE_SAME_ORIGIN = = static_cast < uint32_t > ( RequestMode : : Same_origin ) ,
" RequestMode enumeration value should match Necko CORS mode value. " ) ;
static_assert ( nsIHttpChannelInternal : : CORS_MODE_NO_CORS = = static_cast < uint32_t > ( RequestMode : : No_cors ) ,
" RequestMode enumeration value should match Necko CORS mode value. " ) ;
static_assert ( nsIHttpChannelInternal : : CORS_MODE_CORS = = static_cast < uint32_t > ( RequestMode : : Cors ) ,
" RequestMode enumeration value should match Necko CORS mode value. " ) ;
static_assert ( nsIHttpChannelInternal : : CORS_MODE_CORS_WITH_FORCED_PREFLIGHT = = static_cast < uint32_t > ( RequestMode : : Cors_with_forced_preflight ) ,
" RequestMode enumeration value should match Necko CORS mode value. " ) ;
2015-02-11 03:53:00 -08:00
struct ServiceWorkerManager : : PendingOperation
{
nsCOMPtr < nsIRunnable > mRunnable ;
ServiceWorkerJobQueue * mQueue ;
nsRefPtr < ServiceWorkerJob > mJob ;
ServiceWorkerRegistrationData mRegistration ;
} ;
namespace {
nsresult
PopulateRegistrationData ( nsIPrincipal * aPrincipal ,
const ServiceWorkerRegistrationInfo * aRegistration ,
ServiceWorkerRegistrationData & aData )
{
MOZ_ASSERT ( aPrincipal ) ;
MOZ_ASSERT ( aRegistration ) ;
bool isNullPrincipal = true ;
nsresult rv = aPrincipal - > GetIsNullPrincipal ( & isNullPrincipal ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
// No null principals.
if ( NS_WARN_IF ( isNullPrincipal ) ) {
return NS_ERROR_FAILURE ;
}
rv = PrincipalToPrincipalInfo ( aPrincipal , & aData . principal ( ) ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
aData . scope ( ) = aRegistration - > mScope ;
aData . scriptSpec ( ) = aRegistration - > mScriptSpec ;
if ( aRegistration - > mActiveWorker ) {
aData . currentWorkerURL ( ) = aRegistration - > mActiveWorker - > ScriptSpec ( ) ;
2015-03-18 09:46:38 -07:00
aData . activeCacheName ( ) = aRegistration - > mActiveWorker - > CacheName ( ) ;
}
if ( aRegistration - > mWaitingWorker ) {
aData . waitingCacheName ( ) = aRegistration - > mWaitingWorker - > CacheName ( ) ;
2015-02-11 03:53:00 -08:00
}
return NS_OK ;
}
} // Anonymous namespace
2014-12-19 02:00:29 -08:00
NS_IMPL_ISUPPORTS0 ( ServiceWorkerJob )
2014-08-19 06:56:00 -07:00
NS_IMPL_ISUPPORTS0 ( ServiceWorkerRegistrationInfo )
2014-06-11 09:12:56 -07:00
void
2014-12-19 02:00:29 -08:00
ServiceWorkerJob : : Done ( nsresult aStatus )
2014-06-11 09:12:56 -07:00
{
2014-12-19 02:00:29 -08:00
if ( NS_WARN_IF ( NS_FAILED ( aStatus ) ) ) {
// Windows builds complain if the return value of NS_WARN_IF isn't used.
2014-06-11 09:12:56 -07:00
}
2014-07-02 17:48:35 -07:00
2014-12-19 02:00:29 -08:00
if ( mQueue ) {
mQueue - > Done ( this ) ;
2014-07-02 17:48:35 -07:00
}
}
2014-07-14 10:33:44 -07:00
void
ServiceWorkerRegistrationInfo : : Clear ( )
{
if ( mInstallingWorker ) {
// FIXME(nsm): Terminate installing worker.
2014-12-19 03:25:56 -08:00
mInstallingWorker - > UpdateState ( ServiceWorkerState : : Redundant ) ;
2014-07-14 10:33:44 -07:00
mInstallingWorker = nullptr ;
// FIXME(nsm): Abort any inflight requests from installing worker.
}
if ( mWaitingWorker ) {
2014-12-19 03:25:56 -08:00
mWaitingWorker - > UpdateState ( ServiceWorkerState : : Redundant ) ;
2015-03-18 09:46:38 -07:00
nsresult rv = serviceWorkerScriptCache : : PurgeCache ( mPrincipal ,
mWaitingWorker - > CacheName ( ) ) ;
if ( NS_FAILED ( rv ) ) {
NS_WARNING ( " Failed to purge the waiting cache. " ) ;
}
2014-07-14 10:33:44 -07:00
mWaitingWorker = nullptr ;
}
2014-12-19 02:00:29 -08:00
if ( mActiveWorker ) {
2014-12-19 03:25:56 -08:00
mActiveWorker - > UpdateState ( ServiceWorkerState : : Redundant ) ;
2015-03-18 09:46:38 -07:00
nsresult rv = serviceWorkerScriptCache : : PurgeCache ( mPrincipal ,
mActiveWorker - > CacheName ( ) ) ;
if ( NS_FAILED ( rv ) ) {
NS_WARNING ( " Failed to purge the active cache. " ) ;
}
2014-12-19 02:00:29 -08:00
mActiveWorker = nullptr ;
2014-07-14 10:33:44 -07:00
}
nsRefPtr < ServiceWorkerManager > swm = ServiceWorkerManager : : GetInstance ( ) ;
MOZ_ASSERT ( swm ) ;
swm - > InvalidateServiceWorkerRegistrationWorker ( this ,
WhichServiceWorker : : INSTALLING_WORKER |
WhichServiceWorker : : WAITING_WORKER |
WhichServiceWorker : : ACTIVE_WORKER ) ;
}
2015-02-11 03:53:00 -08:00
ServiceWorkerRegistrationInfo : : ServiceWorkerRegistrationInfo ( const nsACString & aScope ,
nsIPrincipal * aPrincipal )
: mControlledDocumentsCounter ( 0 )
, mScope ( aScope )
, mPrincipal ( aPrincipal )
, mPendingUninstall ( false )
2014-12-19 02:00:29 -08:00
{ }
2014-06-11 09:12:56 -07:00
2014-12-19 02:00:29 -08:00
ServiceWorkerRegistrationInfo : : ~ ServiceWorkerRegistrationInfo ( )
2014-06-11 09:12:56 -07:00
{
2014-12-19 02:00:29 -08:00
if ( IsControllingDocuments ( ) ) {
NS_WARNING ( " ServiceWorkerRegistrationInfo is still controlling documents. This can be a bug or a leak in ServiceWorker API or in any other API that takes the document alive. " ) ;
2014-06-11 09:12:56 -07:00
}
2014-12-19 02:00:29 -08:00
}
2014-06-11 09:12:56 -07:00
2013-11-19 15:15:02 -08:00
//////////////////////////
// ServiceWorkerManager //
//////////////////////////
NS_IMPL_ADDREF ( ServiceWorkerManager )
NS_IMPL_RELEASE ( ServiceWorkerManager )
NS_INTERFACE_MAP_BEGIN ( ServiceWorkerManager )
NS_INTERFACE_MAP_ENTRY ( nsIServiceWorkerManager )
2015-02-11 03:53:00 -08:00
NS_INTERFACE_MAP_ENTRY ( nsIIPCBackgroundChildCreateCallback )
2013-11-19 15:15:02 -08:00
if ( aIID . Equals ( NS_GET_IID ( ServiceWorkerManager ) ) )
foundInterface = static_cast < nsIServiceWorkerManager * > ( this ) ;
else
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS ( nsISupports , nsIServiceWorkerManager )
NS_INTERFACE_MAP_END
ServiceWorkerManager : : ServiceWorkerManager ( )
2015-02-11 03:53:00 -08:00
: mActor ( nullptr )
2013-11-19 15:15:02 -08:00
{
2015-02-11 03:53:00 -08:00
// Register this component to PBackground.
MOZ_ALWAYS_TRUE ( BackgroundChild : : GetOrCreateForCurrentThread ( this ) ) ;
if ( XRE_GetProcessType ( ) = = GeckoProcessType_Default ) {
nsRefPtr < ServiceWorkerRegistrar > swr = ServiceWorkerRegistrar : : Get ( ) ;
MOZ_ASSERT ( swr ) ;
nsTArray < ServiceWorkerRegistrationData > data ;
swr - > GetRegistrations ( data ) ;
LoadRegistrations ( data ) ;
}
2013-11-19 15:15:02 -08:00
}
ServiceWorkerManager : : ~ ServiceWorkerManager ( )
{
// The map will assert if it is not empty when destroyed.
2015-02-08 20:33:39 -08:00
mServiceWorkerRegistrationInfos . Clear ( ) ;
2013-11-19 15:15:02 -08:00
}
2014-12-19 05:01:53 -08:00
class ContinueLifecycleTask : public nsISupports
2014-12-19 02:00:29 -08:00
{
2014-12-19 05:01:53 -08:00
NS_DECL_ISUPPORTS
protected :
virtual ~ ContinueLifecycleTask ( )
{ }
public :
virtual void ContinueAfterWorkerEvent ( bool aSuccess ,
bool aActivateImmediately ) = 0 ;
} ;
NS_IMPL_ISUPPORTS0 ( ContinueLifecycleTask ) ;
2015-02-10 14:33:23 -08:00
class ServiceWorkerRegisterJob ;
2015-03-21 09:28:04 -07:00
class ContinueInstallTask final : public ContinueLifecycleTask
2014-12-19 05:01:53 -08:00
{
nsRefPtr < ServiceWorkerRegisterJob > mJob ;
public :
explicit ContinueInstallTask ( ServiceWorkerRegisterJob * aJob )
: mJob ( aJob )
{ }
2015-03-21 09:28:04 -07:00
void ContinueAfterWorkerEvent ( bool aSuccess , bool aActivateImmediately ) override ;
2014-12-19 05:01:53 -08:00
} ;
2015-03-21 09:28:04 -07:00
class ContinueActivateTask final : public ContinueLifecycleTask
2014-12-19 05:01:53 -08:00
{
nsRefPtr < ServiceWorkerRegistrationInfo > mRegistration ;
public :
explicit ContinueActivateTask ( ServiceWorkerRegistrationInfo * aReg )
: mRegistration ( aReg )
{ }
void
2015-03-21 09:28:04 -07:00
ContinueAfterWorkerEvent ( bool aSuccess , bool aActivateImmediately /* unused */ ) override ;
2014-12-19 05:01:53 -08:00
} ;
2015-03-21 09:28:04 -07:00
class ContinueLifecycleRunnable final : public nsRunnable
2014-12-19 05:01:53 -08:00
{
nsMainThreadPtrHandle < ContinueLifecycleTask > mTask ;
2014-12-19 02:00:29 -08:00
bool mSuccess ;
bool mActivateImmediately ;
public :
2014-12-19 05:01:53 -08:00
ContinueLifecycleRunnable ( const nsMainThreadPtrHandle < ContinueLifecycleTask > & aTask ,
bool aSuccess ,
bool aActivateImmediately )
: mTask ( aTask )
2014-12-19 02:00:29 -08:00
, mSuccess ( aSuccess )
, mActivateImmediately ( aActivateImmediately )
{
MOZ_ASSERT ( ! NS_IsMainThread ( ) ) ;
}
NS_IMETHOD
2015-03-21 09:28:04 -07:00
Run ( ) override
2014-12-19 05:01:53 -08:00
{
AssertIsOnMainThread ( ) ;
mTask - > ContinueAfterWorkerEvent ( mSuccess , mActivateImmediately ) ;
return NS_OK ;
}
2014-12-19 02:00:29 -08:00
} ;
2013-11-19 15:15:02 -08:00
/*
2014-12-19 02:00:29 -08:00
* Fires ' install ' event on the ServiceWorkerGlobalScope . Modifies busy count
* since it fires the event . This is ok since there can ' t be nested
* ServiceWorkers , so the parent thread - > worker thread requirement for
* runnables is satisfied .
2013-11-19 15:15:02 -08:00
*/
2015-03-21 09:28:04 -07:00
class LifecycleEventWorkerRunnable final : public WorkerRunnable
2013-11-19 15:15:02 -08:00
{
2014-12-19 05:01:53 -08:00
nsString mEventName ;
nsMainThreadPtrHandle < ContinueLifecycleTask > mTask ;
2014-12-19 02:00:29 -08:00
2013-11-19 15:15:02 -08:00
public :
2014-12-19 05:01:53 -08:00
LifecycleEventWorkerRunnable ( WorkerPrivate * aWorkerPrivate ,
const nsString & aEventName ,
const nsMainThreadPtrHandle < ContinueLifecycleTask > & aTask )
: WorkerRunnable ( aWorkerPrivate , WorkerThreadModifyBusyCount )
, mEventName ( aEventName )
, mTask ( aTask )
2014-12-19 02:00:29 -08:00
{
AssertIsOnMainThread ( ) ;
MOZ_ASSERT ( aWorkerPrivate ) ;
}
2013-11-19 15:15:02 -08:00
2014-12-19 02:00:29 -08:00
bool
2015-03-21 09:28:04 -07:00
WorkerRun ( JSContext * aCx , WorkerPrivate * aWorkerPrivate ) override
2013-11-19 15:15:02 -08:00
{
2014-12-19 02:00:29 -08:00
MOZ_ASSERT ( aWorkerPrivate ) ;
2014-12-19 05:01:53 -08:00
return DispatchLifecycleEvent ( aCx , aWorkerPrivate ) ;
2014-12-19 02:00:29 -08:00
}
2014-07-20 23:25:44 -07:00
2014-12-19 02:00:29 -08:00
private :
bool
2014-12-19 05:01:53 -08:00
DispatchLifecycleEvent ( JSContext * aCx , WorkerPrivate * aWorkerPrivate ) ;
2013-11-19 15:15:02 -08:00
2014-12-19 02:00:29 -08:00
} ;
2013-11-19 15:15:02 -08:00
2014-12-19 02:00:29 -08:00
class ServiceWorkerUpdateFinishCallback
{
protected :
virtual ~ ServiceWorkerUpdateFinishCallback ( )
{ }
2013-11-19 15:15:02 -08:00
2014-12-19 02:00:29 -08:00
public :
NS_INLINE_DECL_REFCOUNTING ( ServiceWorkerUpdateFinishCallback )
2013-11-19 15:15:02 -08:00
2014-12-19 02:00:29 -08:00
virtual
void UpdateSucceeded ( ServiceWorkerRegistrationInfo * aInfo )
{ }
2013-11-19 15:15:02 -08:00
2014-12-19 02:00:29 -08:00
virtual
void UpdateFailed ( nsresult aStatus )
{ }
2014-12-19 02:48:31 -08:00
virtual
void UpdateFailed ( const ErrorEventInit & aDesc )
{ }
2014-12-19 02:00:29 -08:00
} ;
2013-11-19 15:15:02 -08:00
2015-03-21 09:28:04 -07:00
class ServiceWorkerResolveWindowPromiseOnUpdateCallback final : public ServiceWorkerUpdateFinishCallback
2014-12-19 02:00:29 -08:00
{
nsRefPtr < nsPIDOMWindow > mWindow ;
// The promise "returned" by the call to Update up to
// navigator.serviceWorker.register().
nsRefPtr < Promise > mPromise ;
2014-06-11 09:12:56 -07:00
2014-12-19 02:00:29 -08:00
~ ServiceWorkerResolveWindowPromiseOnUpdateCallback ( )
{ }
2014-06-11 09:12:56 -07:00
2014-12-19 02:00:29 -08:00
public :
ServiceWorkerResolveWindowPromiseOnUpdateCallback ( nsPIDOMWindow * aWindow , Promise * aPromise )
: mWindow ( aWindow )
, mPromise ( aPromise )
{
}
void
2015-03-21 09:28:04 -07:00
UpdateSucceeded ( ServiceWorkerRegistrationInfo * aInfo ) override
2014-12-19 02:00:29 -08:00
{
nsRefPtr < ServiceWorkerRegistration > swr =
new ServiceWorkerRegistration ( mWindow ,
NS_ConvertUTF8toUTF16 ( aInfo - > mScope ) ) ;
mPromise - > MaybeResolve ( swr ) ;
}
void
2015-03-21 09:28:04 -07:00
UpdateFailed ( nsresult aStatus ) override
2014-12-19 02:00:29 -08:00
{
mPromise - > MaybeReject ( aStatus ) ;
2013-11-19 15:15:02 -08:00
}
2014-12-19 02:48:31 -08:00
void
2015-03-21 09:28:04 -07:00
UpdateFailed ( const ErrorEventInit & aErrorDesc ) override
2014-12-19 02:48:31 -08:00
{
AutoJSAPI jsapi ;
jsapi . Init ( mWindow ) ;
JSContext * cx = jsapi . cx ( ) ;
JS : : Rooted < JS : : Value > fnval ( cx ) ;
if ( ! ToJSValue ( cx , aErrorDesc . mFilename , & fnval ) ) {
JS_ClearPendingException ( cx ) ;
mPromise - > MaybeReject ( NS_ERROR_DOM_ABORT_ERR ) ;
return ;
}
JS : : Rooted < JSString * > fn ( cx , fnval . toString ( ) ) ;
JS : : Rooted < JS : : Value > msgval ( cx ) ;
if ( ! ToJSValue ( cx , aErrorDesc . mMessage , & msgval ) ) {
JS_ClearPendingException ( cx ) ;
mPromise - > MaybeReject ( NS_ERROR_DOM_ABORT_ERR ) ;
return ;
}
JS : : Rooted < JSString * > msg ( cx , msgval . toString ( ) ) ;
JS : : Rooted < JS : : Value > error ( cx ) ;
2015-03-27 13:08:46 -07:00
if ( ! JS : : CreateError ( cx , JSEXN_ERR , JS : : NullPtr ( ) , fn , aErrorDesc . mLineno ,
2014-12-19 02:48:31 -08:00
aErrorDesc . mColno , nullptr , msg , & error ) ) {
JS_ClearPendingException ( cx ) ;
mPromise - > MaybeReject ( NS_ERROR_DOM_ABORT_ERR ) ;
return ;
}
mPromise - > MaybeReject ( cx , error ) ;
}
} ;
2015-03-21 09:28:04 -07:00
class ContinueUpdateRunnable final : public nsRunnable
2014-12-19 02:48:31 -08:00
{
nsMainThreadPtrHandle < nsISupports > mJob ;
public :
explicit ContinueUpdateRunnable ( const nsMainThreadPtrHandle < nsISupports > aJob )
: mJob ( aJob )
{
MOZ_ASSERT ( ! NS_IsMainThread ( ) ) ;
}
NS_IMETHOD Run ( ) ;
} ;
2015-03-21 09:28:04 -07:00
class CheckWorkerEvaluationAndContinueUpdateWorkerRunnable final : public WorkerRunnable
2014-12-19 02:48:31 -08:00
{
const nsMainThreadPtrHandle < nsISupports > mJob ;
public :
CheckWorkerEvaluationAndContinueUpdateWorkerRunnable ( WorkerPrivate * aWorkerPrivate ,
const nsMainThreadPtrHandle < nsISupports > aJob )
: WorkerRunnable ( aWorkerPrivate , WorkerThreadUnchangedBusyCount )
, mJob ( aJob )
2015-02-11 10:51:32 -08:00
{
2014-12-19 02:48:31 -08:00
AssertIsOnMainThread ( ) ;
}
bool
2015-03-21 09:28:04 -07:00
WorkerRun ( JSContext * aCx , WorkerPrivate * aWorkerPrivate ) override
2014-12-19 02:48:31 -08:00
{
aWorkerPrivate - > AssertIsOnWorkerThread ( ) ;
if ( aWorkerPrivate - > WorkerScriptExecutedSuccessfully ( ) ) {
nsRefPtr < ContinueUpdateRunnable > r = new ContinueUpdateRunnable ( mJob ) ;
nsresult rv = NS_DispatchToMainThread ( r ) ;
if ( NS_FAILED ( rv ) ) {
NS_WARNING ( " Failed to dispatch ContinueUpdateRunnable to main thread. " ) ;
}
}
return true ;
}
2013-11-19 15:15:02 -08:00
} ;
2015-03-09 18:57:06 -07:00
namespace {
nsresult
GetRequiredScopeStringPrefix ( const nsACString & aScriptSpec , nsACString & aPrefix )
{
nsCOMPtr < nsIURI > scriptURI ;
nsresult rv = NS_NewURI ( getter_AddRefs ( scriptURI ) , aScriptSpec ,
nullptr , nullptr ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
rv = scriptURI - > GetPrePath ( aPrefix ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
nsCOMPtr < nsIURL > scriptURL ( do_QueryInterface ( scriptURI ) ) ;
if ( NS_WARN_IF ( ! scriptURL ) ) {
return rv ;
}
nsAutoCString dir ;
rv = scriptURL - > GetDirectory ( dir ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
aPrefix . Append ( dir ) ;
return NS_OK ;
}
} // anonymous namespace
2015-03-21 09:28:04 -07:00
class ServiceWorkerRegisterJob final : public ServiceWorkerJob ,
2015-03-18 09:52:54 -07:00
public serviceWorkerScriptCache : : CompareCallback
2013-11-19 15:15:02 -08:00
{
2014-12-19 05:01:53 -08:00
friend class ContinueInstallTask ;
2013-11-19 15:15:02 -08:00
2014-12-19 02:00:29 -08:00
nsCString mScope ;
nsCString mScriptSpec ;
nsRefPtr < ServiceWorkerRegistrationInfo > mRegistration ;
nsRefPtr < ServiceWorkerUpdateFinishCallback > mCallback ;
2015-02-11 03:53:00 -08:00
nsCOMPtr < nsIPrincipal > mPrincipal ;
2015-03-18 14:02:51 -07:00
nsRefPtr < ServiceWorkerInfo > mUpdateAndInstallInfo ;
2013-11-19 15:15:02 -08:00
2014-12-19 02:00:29 -08:00
~ ServiceWorkerRegisterJob ( )
{ }
2013-11-19 15:15:02 -08:00
2014-12-19 02:00:29 -08:00
enum
{
REGISTER_JOB = 0 ,
UPDATE_JOB = 1 ,
} mJobType ;
2013-11-19 15:15:02 -08:00
2014-12-19 02:00:29 -08:00
public :
2015-03-18 09:46:38 -07:00
NS_DECL_ISUPPORTS_INHERITED
2013-11-19 15:15:02 -08:00
2014-12-19 02:00:29 -08:00
// [[Register]]
ServiceWorkerRegisterJob ( ServiceWorkerJobQueue * aQueue ,
const nsCString & aScope ,
const nsCString & aScriptSpec ,
2015-02-11 03:53:00 -08:00
ServiceWorkerUpdateFinishCallback * aCallback ,
nsIPrincipal * aPrincipal )
2014-12-19 02:00:29 -08:00
: ServiceWorkerJob ( aQueue )
, mScope ( aScope )
, mScriptSpec ( aScriptSpec )
, mCallback ( aCallback )
2015-02-11 03:53:00 -08:00
, mPrincipal ( aPrincipal )
2014-12-19 02:00:29 -08:00
, mJobType ( REGISTER_JOB )
{ }
2014-08-21 16:31:12 -07:00
2014-12-19 02:00:29 -08:00
// [[Update]]
ServiceWorkerRegisterJob ( ServiceWorkerJobQueue * aQueue ,
ServiceWorkerRegistrationInfo * aRegistration ,
ServiceWorkerUpdateFinishCallback * aCallback )
: ServiceWorkerJob ( aQueue )
, mRegistration ( aRegistration )
, mCallback ( aCallback )
, mJobType ( UPDATE_JOB )
{ }
2014-09-02 13:07:55 -07:00
2014-12-19 02:00:29 -08:00
void
2015-03-21 09:28:04 -07:00
Start ( ) override
2014-12-19 02:00:29 -08:00
{
2015-02-11 03:53:00 -08:00
MOZ_ASSERT ( NS_IsMainThread ( ) ) ;
nsRefPtr < ServiceWorkerManager > swm = ServiceWorkerManager : : GetInstance ( ) ;
if ( ! swm - > HasBackgroundActor ( ) ) {
nsCOMPtr < nsIRunnable > runnable =
NS_NewRunnableMethod ( this , & ServiceWorkerRegisterJob : : Start ) ;
swm - > AppendPendingOperation ( runnable ) ;
return ;
}
2014-12-19 02:00:29 -08:00
if ( mJobType = = REGISTER_JOB ) {
2015-02-08 20:33:39 -08:00
mRegistration = swm - > GetRegistration ( mScope ) ;
2014-12-19 02:00:29 -08:00
if ( mRegistration ) {
nsRefPtr < ServiceWorkerInfo > newest = mRegistration - > Newest ( ) ;
2014-12-19 03:25:56 -08:00
if ( newest & & mScriptSpec . Equals ( newest - > ScriptSpec ( ) ) & &
2014-12-19 02:00:29 -08:00
mScriptSpec . Equals ( mRegistration - > mScriptSpec ) ) {
mRegistration - > mPendingUninstall = false ;
Succeed ( ) ;
Done ( NS_OK ) ;
return ;
}
} else {
2015-02-11 03:53:00 -08:00
mRegistration = swm - > CreateNewRegistration ( mScope , mPrincipal ) ;
2014-12-19 02:00:29 -08:00
}
2014-09-02 13:07:55 -07:00
2014-12-19 02:00:29 -08:00
mRegistration - > mScriptSpec = mScriptSpec ;
2015-02-11 03:53:00 -08:00
swm - > StoreRegistration ( mPrincipal , mRegistration ) ;
2014-12-19 02:00:29 -08:00
} else {
MOZ_ASSERT ( mJobType = = UPDATE_JOB ) ;
2014-09-02 13:07:55 -07:00
}
2014-12-19 02:00:29 -08:00
Update ( ) ;
2014-09-02 13:07:55 -07:00
}
2015-03-18 09:52:54 -07:00
void
ComparisonResult ( nsresult aStatus , bool aInCacheAndEqual ) override
2014-12-19 02:00:29 -08:00
{
if ( NS_WARN_IF ( NS_FAILED ( aStatus ) ) ) {
2015-02-09 13:47:09 -08:00
Fail ( NS_ERROR_DOM_TYPE_ERR ) ;
2015-03-18 09:52:54 -07:00
return ;
2014-12-19 02:00:29 -08:00
}
2013-11-19 15:15:02 -08:00
2015-03-18 09:52:54 -07:00
if ( aInCacheAndEqual ) {
Succeed ( ) ;
return ;
2014-12-19 02:00:29 -08:00
}
2013-11-19 15:15:02 -08:00
2014-12-19 02:48:31 -08:00
nsRefPtr < ServiceWorkerManager > swm = ServiceWorkerManager : : GetInstance ( ) ;
2015-02-08 20:33:39 -08:00
2015-03-09 18:57:06 -07:00
// FIXME: Bug 1130101 - Read max scope from Service-Worker-Allowed header.
nsAutoCString allowedPrefix ;
2015-03-18 09:52:54 -07:00
nsresult rv = GetRequiredScopeStringPrefix ( mRegistration - > mScriptSpec , allowedPrefix ) ;
2015-03-09 18:57:06 -07:00
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
Fail ( NS_ERROR_DOM_SECURITY_ERR ) ;
2015-03-18 09:52:54 -07:00
return ;
2015-03-09 18:57:06 -07:00
}
if ( ! StringBeginsWith ( mRegistration - > mScope , allowedPrefix ) ) {
NS_WARNING ( " By default a service worker's scope is restricted to at or below it's script's location. " ) ;
Fail ( NS_ERROR_DOM_SECURITY_ERR ) ;
2015-03-18 09:52:54 -07:00
return ;
2015-03-09 18:57:06 -07:00
}
2015-03-18 09:46:38 -07:00
nsAutoString cacheName ;
rv = serviceWorkerScriptCache : : GenerateCacheName ( cacheName ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
Fail ( NS_ERROR_DOM_TYPE_ERR ) ;
2015-03-18 09:52:54 -07:00
return ;
2015-03-18 09:46:38 -07:00
}
2014-12-19 02:48:31 -08:00
// We have to create a ServiceWorker here simply to ensure there are no
// errors. Ideally we should just pass this worker on to ContinueInstall.
2015-02-08 20:33:39 -08:00
MOZ_ASSERT ( ! swm - > mSetOfScopesBeingUpdated . Contains ( mRegistration - > mScope ) ) ;
swm - > mSetOfScopesBeingUpdated . Put ( mRegistration - > mScope , true ) ;
2015-03-18 14:02:51 -07:00
MOZ_ASSERT ( ! mUpdateAndInstallInfo ) ;
mUpdateAndInstallInfo =
2015-03-19 11:41:42 -07:00
new ServiceWorkerInfo ( mRegistration , mRegistration - > mScriptSpec ,
2015-03-18 09:46:38 -07:00
cacheName ) ;
2014-12-19 02:48:31 -08:00
nsRefPtr < ServiceWorker > serviceWorker ;
2015-02-17 04:36:09 -08:00
rv = swm - > CreateServiceWorker ( mRegistration - > mPrincipal ,
2015-03-18 14:02:51 -07:00
mUpdateAndInstallInfo ,
2014-12-19 02:48:31 -08:00
getter_AddRefs ( serviceWorker ) ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
2015-02-11 13:24:57 -08:00
swm - > mSetOfScopesBeingUpdated . Remove ( mRegistration - > mScope ) ;
2014-12-19 02:48:31 -08:00
Fail ( NS_ERROR_DOM_ABORT_ERR ) ;
2015-03-18 09:52:54 -07:00
return ;
2014-12-19 02:48:31 -08:00
}
nsRefPtr < ServiceWorkerJob > upcasted = this ;
nsMainThreadPtrHandle < nsISupports > handle (
new nsMainThreadPtrHolder < nsISupports > ( upcasted ) ) ;
nsRefPtr < CheckWorkerEvaluationAndContinueUpdateWorkerRunnable > r =
new CheckWorkerEvaluationAndContinueUpdateWorkerRunnable ( serviceWorker - > GetWorkerPrivate ( ) , handle ) ;
AutoJSAPI jsapi ;
jsapi . Init ( ) ;
bool ok = r - > Dispatch ( jsapi . cx ( ) ) ;
if ( NS_WARN_IF ( ! ok ) ) {
2015-02-11 13:24:57 -08:00
swm - > mSetOfScopesBeingUpdated . Remove ( mRegistration - > mScope ) ;
2014-12-19 02:48:31 -08:00
Fail ( NS_ERROR_DOM_ABORT_ERR ) ;
2015-03-18 09:52:54 -07:00
return ;
2014-12-19 02:48:31 -08:00
}
2014-08-21 16:31:12 -07:00
}
2014-12-19 02:48:31 -08:00
// Public so our error handling code can use it.
void
Fail ( const ErrorEventInit & aError )
{
MOZ_ASSERT ( mCallback ) ;
mCallback - > UpdateFailed ( aError ) ;
2014-11-05 14:43:51 -08:00
FailCommon ( NS_ERROR_DOM_JS_EXCEPTION ) ;
2014-12-19 02:48:31 -08:00
}
// Public so our error handling code can continue with a successful worker.
void
ContinueInstall ( )
{
nsRefPtr < ServiceWorkerManager > swm = ServiceWorkerManager : : GetInstance ( ) ;
2015-02-08 20:33:39 -08:00
MOZ_ASSERT ( swm - > mSetOfScopesBeingUpdated . Contains ( mRegistration - > mScope ) ) ;
swm - > mSetOfScopesBeingUpdated . Remove ( mRegistration - > mScope ) ;
2015-02-10 14:33:23 -08:00
// This is effectively the end of Step 4.3 of the [[Update]] algorithm.
// The invocation of [[Install]] is not part of the atomic block.
// Begin [[Install]] atomic step 4.
2014-12-19 02:48:31 -08:00
if ( mRegistration - > mInstallingWorker ) {
// FIXME(nsm): Terminate and stuff
mRegistration - > mInstallingWorker - > UpdateState ( ServiceWorkerState : : Redundant ) ;
}
swm - > InvalidateServiceWorkerRegistrationWorker ( mRegistration ,
WhichServiceWorker : : INSTALLING_WORKER ) ;
2015-03-18 09:46:38 -07:00
nsAutoString cacheName ;
nsresult rv = serviceWorkerScriptCache : : GenerateCacheName ( cacheName ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
ContinueAfterInstallEvent ( false /* aSuccess */ , false /* aActivateImmediately */ ) ;
return ;
}
2015-03-18 14:02:51 -07:00
mRegistration - > mInstallingWorker = mUpdateAndInstallInfo . forget ( ) ;
2014-12-19 02:48:31 -08:00
mRegistration - > mInstallingWorker - > UpdateState ( ServiceWorkerState : : Installing ) ;
Succeed ( ) ;
2015-02-10 14:33:23 -08:00
// Step 4.6 "Queue a task..." for updatefound.
2014-12-19 05:01:53 -08:00
nsCOMPtr < nsIRunnable > upr =
NS_NewRunnableMethodWithArg < ServiceWorkerRegistrationInfo * > ( swm ,
& ServiceWorkerManager : : FireUpdateFound ,
mRegistration ) ;
2014-12-19 02:48:31 -08:00
NS_DispatchToMainThread ( upr ) ;
nsRefPtr < ServiceWorker > serviceWorker ;
2015-03-18 09:46:38 -07:00
rv = swm - > CreateServiceWorker ( mRegistration - > mPrincipal ,
mRegistration - > mInstallingWorker ,
getter_AddRefs ( serviceWorker ) ) ;
2014-12-19 02:48:31 -08:00
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
2015-02-10 14:33:23 -08:00
ContinueAfterInstallEvent ( false /* aSuccess */ , false /* aActivateImmediately */ ) ;
2014-12-19 02:48:31 -08:00
return ;
}
2015-02-10 14:33:23 -08:00
nsMainThreadPtrHandle < ContinueLifecycleTask > handle (
new nsMainThreadPtrHolder < ContinueLifecycleTask > ( new ContinueInstallTask ( this ) ) ) ;
2014-12-19 05:01:53 -08:00
nsRefPtr < LifecycleEventWorkerRunnable > r =
new LifecycleEventWorkerRunnable ( serviceWorker - > GetWorkerPrivate ( ) , NS_LITERAL_STRING ( " install " ) , handle ) ;
2014-12-19 02:48:31 -08:00
AutoJSAPI jsapi ;
jsapi . Init ( ) ;
2015-02-10 14:33:23 -08:00
// This triggers Step 4.7 "Queue a task to run the following substeps..."
// which sends the install event to the worker.
2014-12-19 02:48:31 -08:00
r - > Dispatch ( jsapi . cx ( ) ) ;
}
2014-12-19 02:00:29 -08:00
private :
void
Update ( )
{
MOZ_ASSERT ( mRegistration ) ;
nsCOMPtr < nsIRunnable > r =
NS_NewRunnableMethod ( this , & ServiceWorkerRegisterJob : : ContinueUpdate ) ;
NS_DispatchToMainThread ( r ) ;
2013-11-19 15:15:02 -08:00
}
2014-12-19 02:00:29 -08:00
// Aspects of (actually the whole algorithm) of [[Update]] after
// "Run the following steps in parallel."
void
ContinueUpdate ( )
2014-08-20 08:40:00 -07:00
{
2014-12-19 02:00:29 -08:00
AssertIsOnMainThread ( ) ;
if ( mRegistration - > mInstallingWorker ) {
// FIXME(nsm): "Terminate installing worker".
2014-12-19 03:25:56 -08:00
mRegistration - > mInstallingWorker - > UpdateState ( ServiceWorkerState : : Redundant ) ;
2014-12-19 02:00:29 -08:00
mRegistration - > mInstallingWorker = nullptr ;
2014-08-20 08:40:00 -07:00
}
2015-03-18 09:52:54 -07:00
nsRefPtr < ServiceWorkerInfo > workerInfo = mRegistration - > Newest ( ) ;
nsAutoString cacheName ;
2014-08-20 08:40:00 -07:00
2015-03-18 09:52:54 -07:00
// 9.2.20 If newestWorker is not null, and newestWorker's script url is
// equal to registration's registering script url and response is a
// byte-for-byte match with the script resource of newestWorker...
if ( workerInfo & & workerInfo - > ScriptSpec ( ) . Equals ( mRegistration - > mScriptSpec ) ) {
cacheName = workerInfo - > CacheName ( ) ;
2014-08-20 08:40:00 -07:00
}
2015-03-18 09:52:54 -07:00
nsresult rv =
serviceWorkerScriptCache : : Compare ( mRegistration - > mPrincipal , cacheName ,
NS_ConvertUTF8toUTF16 ( mRegistration - > mScriptSpec ) ,
this ) ;
2014-12-19 02:00:29 -08:00
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return Fail ( rv ) ;
}
2014-08-20 08:40:00 -07:00
}
2014-12-19 02:00:29 -08:00
void
Succeed ( )
{
MOZ_ASSERT ( mCallback ) ;
mCallback - > UpdateSucceeded ( mRegistration ) ;
mCallback = nullptr ;
2014-08-20 08:40:00 -07:00
}
2014-11-05 14:43:51 -08:00
void
FailCommon ( nsresult aRv )
{
2015-03-18 14:02:51 -07:00
mUpdateAndInstallInfo = nullptr ;
2015-03-18 09:46:38 -07:00
if ( mRegistration - > mInstallingWorker ) {
nsresult rv = serviceWorkerScriptCache : : PurgeCache ( mRegistration - > mPrincipal ,
mRegistration - > mInstallingWorker - > CacheName ( ) ) ;
if ( NS_FAILED ( rv ) ) {
NS_WARNING ( " Failed to purge the installing worker cache. " ) ;
}
}
2014-11-05 14:43:51 -08:00
mCallback = nullptr ;
2015-02-10 14:33:23 -08:00
nsRefPtr < ServiceWorkerManager > swm = ServiceWorkerManager : : GetInstance ( ) ;
swm - > MaybeRemoveRegistration ( mRegistration ) ;
2014-11-05 14:43:51 -08:00
// Ensures that the job can't do anything useful from this point on.
mRegistration = nullptr ;
Done ( aRv ) ;
}
2014-12-19 02:00:29 -08:00
// This MUST only be called when the job is still performing actions related
// to registration or update. After the spec resolves the update promise, use
// Done() with the failure code instead.
void
2014-11-05 14:43:51 -08:00
Fail ( nsresult aRv )
2014-12-19 02:00:29 -08:00
{
MOZ_ASSERT ( mCallback ) ;
2014-11-05 14:43:51 -08:00
mCallback - > UpdateFailed ( aRv ) ;
FailCommon ( aRv ) ;
}
void
2015-02-10 14:33:23 -08:00
ContinueAfterInstallEvent ( bool aInstallEventSuccess , bool aActivateImmediately )
2014-11-05 14:43:51 -08:00
{
2014-12-19 02:00:29 -08:00
if ( ! mRegistration - > mInstallingWorker ) {
NS_WARNING ( " mInstallingWorker was null. " ) ;
return Done ( NS_ERROR_DOM_ABORT_ERR ) ;
2014-08-20 08:40:00 -07:00
}
2014-12-19 02:00:29 -08:00
nsRefPtr < ServiceWorkerManager > swm = ServiceWorkerManager : : GetInstance ( ) ;
2014-08-20 08:40:00 -07:00
2014-12-19 02:00:29 -08:00
// "If installFailed is true"
2015-02-10 14:33:23 -08:00
if ( ! aInstallEventSuccess ) {
2014-12-19 02:00:29 -08:00
mRegistration - > mInstallingWorker - > UpdateState ( ServiceWorkerState : : Redundant ) ;
mRegistration - > mInstallingWorker = nullptr ;
swm - > InvalidateServiceWorkerRegistrationWorker ( mRegistration ,
WhichServiceWorker : : INSTALLING_WORKER ) ;
2015-02-10 14:33:23 -08:00
swm - > MaybeRemoveRegistration ( mRegistration ) ;
2014-12-19 02:00:29 -08:00
return Done ( NS_ERROR_DOM_ABORT_ERR ) ;
2014-08-20 08:40:00 -07:00
}
2014-12-19 02:00:29 -08:00
// "If registration's waiting worker is not null"
if ( mRegistration - > mWaitingWorker ) {
// FIXME(nsm): Terminate
mRegistration - > mWaitingWorker - > UpdateState ( ServiceWorkerState : : Redundant ) ;
2015-03-18 09:46:38 -07:00
nsresult rv = serviceWorkerScriptCache : : PurgeCache ( mRegistration - > mPrincipal ,
mRegistration - > mWaitingWorker - > CacheName ( ) ) ;
if ( NS_FAILED ( rv ) ) {
NS_WARNING ( " Failed to purge the old waiting cache. " ) ;
}
2014-12-19 02:00:29 -08:00
}
2014-12-19 04:45:07 -08:00
2014-12-19 02:00:29 -08:00
mRegistration - > mWaitingWorker = mRegistration - > mInstallingWorker . forget ( ) ;
2015-02-19 08:40:21 -08:00
mRegistration - > mWaitingWorker - > UpdateState ( ServiceWorkerState : : Installed ) ;
2014-12-19 02:00:29 -08:00
swm - > InvalidateServiceWorkerRegistrationWorker ( mRegistration ,
WhichServiceWorker : : INSTALLING_WORKER | WhichServiceWorker : : WAITING_WORKER ) ;
2014-08-20 08:40:00 -07:00
2014-12-19 02:00:29 -08:00
// FIXME(nsm): Bug 982711 Deal with activateImmediately.
NS_WARN_IF_FALSE ( ! aActivateImmediately , " Immediate activation using replace() is not supported yet " ) ;
2015-02-17 00:35:27 -08:00
Done ( NS_OK ) ;
2015-02-10 14:33:23 -08:00
// Activate() is invoked out of band of atomic.
mRegistration - > TryToActivate ( ) ;
2014-08-20 08:40:00 -07:00
}
} ;
2015-03-18 09:46:38 -07:00
NS_IMPL_ISUPPORTS_INHERITED0 ( ServiceWorkerRegisterJob , ServiceWorkerJob ) ;
2014-12-19 02:48:31 -08:00
NS_IMETHODIMP
ContinueUpdateRunnable : : Run ( )
{
AssertIsOnMainThread ( ) ;
nsRefPtr < ServiceWorkerJob > job = static_cast < ServiceWorkerJob * > ( mJob . get ( ) ) ;
nsRefPtr < ServiceWorkerRegisterJob > upjob = static_cast < ServiceWorkerRegisterJob * > ( job . get ( ) ) ;
upjob - > ContinueInstall ( ) ;
return NS_OK ;
}
2014-12-19 02:00:29 -08:00
2014-12-19 05:01:53 -08:00
void
ContinueInstallTask : : ContinueAfterWorkerEvent ( bool aSuccess , bool aActivateImmediately )
{
2015-02-10 14:33:23 -08:00
// This does not start the job immediately if there are other jobs in the
// queue, which captures the "atomic" behaviour we want.
2014-12-19 05:01:53 -08:00
mJob - > ContinueAfterInstallEvent ( aSuccess , aActivateImmediately ) ;
}
2014-08-20 08:40:00 -07:00
// If we return an error code here, the ServiceWorkerContainer will
// automatically reject the Promise.
NS_IMETHODIMP
2014-12-19 02:00:29 -08:00
ServiceWorkerManager : : Register ( nsIDOMWindow * aWindow ,
2015-03-09 18:57:06 -07:00
nsIURI * aScopeURI ,
nsIURI * aScriptURI ,
2014-12-19 02:00:29 -08:00
nsISupports * * aPromise )
2014-08-20 08:40:00 -07:00
{
AssertIsOnMainThread ( ) ;
// XXXnsm Don't allow chrome callers for now, we don't support chrome
// ServiceWorkers.
MOZ_ASSERT ( ! nsContentUtils : : IsCallerChrome ( ) ) ;
nsCOMPtr < nsPIDOMWindow > window = do_QueryInterface ( aWindow ) ;
2014-12-19 02:00:29 -08:00
2015-03-24 11:15:00 -07:00
nsCOMPtr < nsPIDOMWindow > outerWindow = window - > GetOuterWindow ( ) ;
bool serviceWorkersTestingEnabled =
outerWindow - > GetServiceWorkersTestingEnabled ( ) ;
2014-12-19 02:00:29 -08:00
nsCOMPtr < nsIDocument > doc = window - > GetExtantDoc ( ) ;
if ( ! doc ) {
2014-08-20 08:40:00 -07:00
return NS_ERROR_FAILURE ;
}
2014-12-19 02:00:29 -08:00
nsCOMPtr < nsIURI > documentURI = doc - > GetBaseURI ( ) ;
2014-08-20 08:40:00 -07:00
2014-12-19 02:00:29 -08:00
bool authenticatedOrigin = false ;
2015-03-24 11:15:00 -07:00
if ( Preferences : : GetBool ( " dom.serviceWorkers.testing.enabled " ) | |
serviceWorkersTestingEnabled ) {
2014-12-19 02:00:29 -08:00
authenticatedOrigin = true ;
}
2014-08-20 08:40:00 -07:00
2014-12-19 02:00:29 -08:00
nsresult rv ;
if ( ! authenticatedOrigin ) {
nsAutoCString scheme ;
rv = documentURI - > GetScheme ( scheme ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
2014-08-26 01:16:03 -07:00
2014-12-19 02:00:29 -08:00
if ( scheme . EqualsLiteral ( " https " ) | |
scheme . EqualsLiteral ( " file " ) | |
scheme . EqualsLiteral ( " app " ) ) {
authenticatedOrigin = true ;
}
}
2014-08-26 01:16:03 -07:00
2014-12-19 02:00:29 -08:00
if ( ! authenticatedOrigin ) {
nsAutoCString host ;
rv = documentURI - > GetHost ( host ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
2014-08-26 01:16:03 -07:00
2014-12-19 02:00:29 -08:00
if ( host . Equals ( " 127.0.0.1 " ) | |
host . Equals ( " localhost " ) | |
host . Equals ( " ::1 " ) ) {
authenticatedOrigin = true ;
2014-08-26 01:16:03 -07:00
}
2014-12-19 02:00:29 -08:00
}
2014-08-26 01:16:03 -07:00
2014-12-19 02:00:29 -08:00
if ( ! authenticatedOrigin ) {
bool isFile ;
rv = documentURI - > SchemeIs ( " file " , & isFile ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
2014-08-26 01:16:03 -07:00
}
2014-12-19 02:00:29 -08:00
if ( ! isFile ) {
bool isHttps ;
rv = documentURI - > SchemeIs ( " https " , & isHttps ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) | | ! isHttps ) {
NS_WARNING ( " ServiceWorker registration from insecure websites is not allowed. " ) ;
return NS_ERROR_DOM_SECURITY_ERR ;
}
2014-08-26 01:16:03 -07:00
}
2014-12-19 02:00:29 -08:00
}
2014-08-26 01:16:03 -07:00
2014-12-19 02:00:29 -08:00
// Data URLs are not allowed.
nsCOMPtr < nsIPrincipal > documentPrincipal = doc - > NodePrincipal ( ) ;
2014-08-26 01:16:03 -07:00
2015-03-09 18:57:06 -07:00
rv = documentPrincipal - > CheckMayLoad ( aScriptURI , true /* report */ ,
2014-12-19 02:00:29 -08:00
false /* allowIfInheritsPrincipal */ ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return NS_ERROR_DOM_SECURITY_ERR ;
}
2014-08-26 01:16:03 -07:00
2015-03-09 18:57:06 -07:00
rv = documentPrincipal - > CheckMayLoad ( aScopeURI , true /* report */ ,
2014-12-19 02:00:29 -08:00
false /* allowIfInheritsPrinciple */ ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return NS_ERROR_DOM_SECURITY_ERR ;
}
nsCString cleanedScope ;
2015-03-09 18:57:06 -07:00
rv = aScopeURI - > GetSpecIgnoringRef ( cleanedScope ) ;
2014-12-19 02:00:29 -08:00
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
2014-08-26 01:16:03 -07:00
return NS_ERROR_FAILURE ;
}
2014-12-19 02:00:29 -08:00
nsAutoCString spec ;
2015-03-09 18:57:06 -07:00
rv = aScriptURI - > GetSpec ( spec ) ;
2014-12-19 02:00:29 -08:00
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
2014-08-26 01:16:03 -07:00
nsCOMPtr < nsIGlobalObject > sgo = do_QueryInterface ( window ) ;
ErrorResult result ;
nsRefPtr < Promise > promise = Promise : : Create ( sgo , result ) ;
if ( result . Failed ( ) ) {
return result . ErrorCode ( ) ;
}
2015-02-08 20:33:39 -08:00
ServiceWorkerJobQueue * queue = GetOrCreateJobQueue ( cleanedScope ) ;
2014-12-19 02:00:29 -08:00
MOZ_ASSERT ( queue ) ;
nsRefPtr < ServiceWorkerResolveWindowPromiseOnUpdateCallback > cb =
new ServiceWorkerResolveWindowPromiseOnUpdateCallback ( window , promise ) ;
nsRefPtr < ServiceWorkerRegisterJob > job =
2015-02-11 03:53:00 -08:00
new ServiceWorkerRegisterJob ( queue , cleanedScope , spec , cb , documentPrincipal ) ;
2014-12-19 02:00:29 -08:00
queue - > Append ( job ) ;
2014-08-26 01:16:03 -07:00
promise . forget ( aPromise ) ;
2014-12-19 02:00:29 -08:00
return NS_OK ;
2014-08-26 01:16:03 -07:00
}
2015-02-11 03:53:00 -08:00
void
ServiceWorkerManager : : AppendPendingOperation ( ServiceWorkerJobQueue * aQueue ,
ServiceWorkerJob * aJob )
{
MOZ_ASSERT ( ! mActor ) ;
MOZ_ASSERT ( aQueue ) ;
MOZ_ASSERT ( aJob ) ;
PendingOperation * opt = mPendingOperations . AppendElement ( ) ;
opt - > mQueue = aQueue ;
opt - > mJob = aJob ;
}
void
ServiceWorkerManager : : AppendPendingOperation ( nsIRunnable * aRunnable )
{
MOZ_ASSERT ( ! mActor ) ;
MOZ_ASSERT ( aRunnable ) ;
PendingOperation * opt = mPendingOperations . AppendElement ( ) ;
opt - > mRunnable = aRunnable ;
}
2014-12-19 02:00:29 -08:00
/*
2014-12-19 05:01:53 -08:00
* Used to handle ExtendableEvent : : waitUntil ( ) and proceed with
* installation / activation .
2014-12-19 02:00:29 -08:00
*/
2015-03-21 09:28:04 -07:00
class LifecycleEventPromiseHandler final : public PromiseNativeHandler
2014-08-26 01:16:03 -07:00
{
2014-12-19 05:01:53 -08:00
nsMainThreadPtrHandle < ContinueLifecycleTask > mTask ;
2014-12-19 02:00:29 -08:00
bool mActivateImmediately ;
2014-08-26 01:16:03 -07:00
2014-12-19 02:00:29 -08:00
virtual
2014-12-19 05:01:53 -08:00
~ LifecycleEventPromiseHandler ( )
2014-12-19 02:00:29 -08:00
{ }
2014-08-26 01:16:03 -07:00
2014-12-19 02:00:29 -08:00
public :
2014-12-19 05:01:53 -08:00
LifecycleEventPromiseHandler ( const nsMainThreadPtrHandle < ContinueLifecycleTask > & aTask ,
bool aActivateImmediately )
: mTask ( aTask )
2014-12-19 02:00:29 -08:00
, mActivateImmediately ( aActivateImmediately )
{
MOZ_ASSERT ( ! NS_IsMainThread ( ) ) ;
}
2014-08-26 01:16:03 -07:00
2014-12-19 02:00:29 -08:00
void
2015-03-21 09:28:04 -07:00
ResolvedCallback ( JSContext * aCx , JS : : Handle < JS : : Value > aValue ) override
2014-12-19 02:00:29 -08:00
{
WorkerPrivate * workerPrivate = GetCurrentThreadWorkerPrivate ( ) ;
MOZ_ASSERT ( workerPrivate ) ;
workerPrivate - > AssertIsOnWorkerThread ( ) ;
2014-08-26 01:16:03 -07:00
2014-12-19 05:01:53 -08:00
nsRefPtr < ContinueLifecycleRunnable > r =
new ContinueLifecycleRunnable ( mTask , true /* success */ , mActivateImmediately ) ;
2014-12-19 02:00:29 -08:00
NS_DispatchToMainThread ( r ) ;
2014-08-26 01:16:03 -07:00
}
2014-12-19 02:00:29 -08:00
void
2015-03-21 09:28:04 -07:00
RejectedCallback ( JSContext * aCx , JS : : Handle < JS : : Value > aValue ) override
2014-12-19 02:00:29 -08:00
{
2014-12-19 05:01:53 -08:00
WorkerPrivate * workerPrivate = GetCurrentThreadWorkerPrivate ( ) ;
MOZ_ASSERT ( workerPrivate ) ;
workerPrivate - > AssertIsOnWorkerThread ( ) ;
nsRefPtr < ContinueLifecycleRunnable > r =
new ContinueLifecycleRunnable ( mTask , false /* success */ , mActivateImmediately ) ;
2014-12-19 02:00:29 -08:00
NS_DispatchToMainThread ( r ) ;
}
} ;
2014-08-26 01:16:03 -07:00
bool
2014-12-19 05:01:53 -08:00
LifecycleEventWorkerRunnable : : DispatchLifecycleEvent ( JSContext * aCx , WorkerPrivate * aWorkerPrivate )
2014-08-26 01:16:03 -07:00
{
2014-12-19 02:00:29 -08:00
aWorkerPrivate - > AssertIsOnWorkerThread ( ) ;
MOZ_ASSERT ( aWorkerPrivate - > IsServiceWorker ( ) ) ;
2014-12-19 05:01:53 -08:00
2014-12-19 05:01:53 -08:00
nsRefPtr < ExtendableEvent > event ;
2015-01-23 19:49:39 -08:00
nsRefPtr < EventTarget > target = aWorkerPrivate - > GlobalScope ( ) ;
2014-12-19 05:01:53 -08:00
if ( mEventName . EqualsASCII ( " install " ) ) {
// FIXME(nsm): Bug 982787 pass previous active worker.
InstallEventInit init ;
init . mBubbles = false ;
init . mCancelable = true ;
event = InstallEvent : : Constructor ( target , mEventName , init ) ;
} else if ( mEventName . EqualsASCII ( " activate " ) ) {
ExtendableEventInit init ;
init . mBubbles = false ;
init . mCancelable = true ;
event = ExtendableEvent : : Constructor ( target , mEventName , init ) ;
} else {
MOZ_CRASH ( " Unexpected lifecycle event " ) ;
}
2014-12-19 02:00:29 -08:00
event - > SetTrusted ( true ) ;
nsRefPtr < Promise > waitUntilPromise ;
ErrorResult result ;
result = target - > DispatchDOMEvent ( nullptr , event , nullptr , nullptr ) ;
nsCOMPtr < nsIGlobalObject > sgo = aWorkerPrivate - > GlobalScope ( ) ;
2014-12-19 04:45:07 -08:00
WidgetEvent * internalEvent = event - > GetInternalNSEvent ( ) ;
if ( ! result . Failed ( ) & & ! internalEvent - > mFlags . mExceptionHasBeenRisen ) {
2014-12-19 02:00:29 -08:00
waitUntilPromise = event - > GetPromise ( ) ;
if ( ! waitUntilPromise ) {
ErrorResult result ;
waitUntilPromise =
Promise : : Resolve ( sgo , aCx , JS : : UndefinedHandleValue , result ) ;
2014-12-19 04:45:07 -08:00
if ( NS_WARN_IF ( result . Failed ( ) ) ) {
return true ;
}
2014-12-19 02:00:29 -08:00
}
} else {
// Continue with a canceled install.
2014-12-19 04:45:07 -08:00
// Although the spec has different routines to deal with popping stuff
// off it's internal queues, we can reuse the ContinueAfterInstallEvent()
// logic.
2014-12-19 02:00:29 -08:00
waitUntilPromise = Promise : : Reject ( sgo , aCx ,
JS : : UndefinedHandleValue , result ) ;
2014-08-26 01:16:03 -07:00
}
2014-12-19 02:00:29 -08:00
if ( result . Failed ( ) ) {
return false ;
}
2014-08-26 01:16:03 -07:00
2014-12-19 05:01:53 -08:00
// activateimmediately is only relevant to "install" event.
bool activateImmediately = false ;
InstallEvent * installEvent = event - > AsInstallEvent ( ) ;
if ( installEvent ) {
activateImmediately = installEvent - > ActivateImmediately ( ) ;
2015-01-23 19:49:39 -08:00
// FIXME(nsm): Set activeWorker to the correct thing.
// FIXME(nsm): Install error handler for any listener errors.
}
2014-12-19 05:01:53 -08:00
nsRefPtr < LifecycleEventPromiseHandler > handler =
new LifecycleEventPromiseHandler ( mTask , activateImmediately ) ;
waitUntilPromise - > AppendNativeHandler ( handler ) ;
return true ;
}
2015-01-23 19:49:39 -08:00
2014-06-11 09:12:56 -07:00
void
2014-12-19 02:00:29 -08:00
ServiceWorkerRegistrationInfo : : TryToActivate ( )
2014-06-11 09:12:56 -07:00
{
2014-12-19 02:00:29 -08:00
if ( ! IsControllingDocuments ( ) ) {
Activate ( ) ;
2014-06-11 09:12:56 -07:00
}
}
2015-02-10 14:33:23 -08:00
void
2015-02-10 14:33:23 -08:00
ContinueActivateTask : : ContinueAfterWorkerEvent ( bool aSuccess , bool aActivateImmediately /* unused */ )
2015-02-10 14:33:23 -08:00
{
2015-02-10 14:33:23 -08:00
mRegistration - > FinishActivate ( aSuccess ) ;
}
2015-02-17 00:35:27 -08:00
2015-02-10 14:33:23 -08:00
void
ServiceWorkerRegistrationInfo : : Activate ( )
{
2014-12-19 02:00:29 -08:00
nsRefPtr < ServiceWorkerInfo > activatingWorker = mWaitingWorker ;
nsRefPtr < ServiceWorkerInfo > exitingWorker = mActiveWorker ;
nsRefPtr < ServiceWorkerManager > swm = ServiceWorkerManager : : GetInstance ( ) ;
swm - > InvalidateServiceWorkerRegistrationWorker ( this , WhichServiceWorker : : WAITING_WORKER | WhichServiceWorker : : ACTIVE_WORKER ) ;
if ( ! activatingWorker ) {
2014-06-11 09:12:56 -07:00
return ;
}
2014-12-19 02:00:29 -08:00
if ( exitingWorker ) {
// FIXME(nsm): Wait for worker.
// Terminate worker
exitingWorker - > UpdateState ( ServiceWorkerState : : Redundant ) ;
2015-03-18 14:05:00 -07:00
nsresult rv = serviceWorkerScriptCache : : PurgeCache ( mPrincipal ,
exitingWorker - > CacheName ( ) ) ;
if ( NS_FAILED ( rv ) ) {
NS_WARNING ( " Failed to purge the activating cache. " ) ;
}
2014-06-11 09:12:56 -07:00
}
2014-12-19 02:00:29 -08:00
mActiveWorker = activatingWorker . forget ( ) ;
mWaitingWorker = nullptr ;
mActiveWorker - > UpdateState ( ServiceWorkerState : : Activating ) ;
2014-06-11 09:12:56 -07:00
2015-02-10 14:33:23 -08:00
// FIXME(nsm): Unlink appcache if there is one.
2014-12-19 02:00:29 -08:00
swm - > CheckPendingReadyPromises ( ) ;
2014-06-11 09:12:56 -07:00
2014-12-19 02:00:29 -08:00
// "Queue a task to fire a simple event named controllerchange..."
nsCOMPtr < nsIRunnable > controllerChangeRunnable =
2015-02-10 14:33:23 -08:00
NS_NewRunnableMethodWithArg < ServiceWorkerRegistrationInfo * > ( swm ,
& ServiceWorkerManager : : FireControllerChange ,
this ) ;
2014-12-19 02:00:29 -08:00
NS_DispatchToMainThread ( controllerChangeRunnable ) ;
2014-07-02 17:48:35 -07:00
2014-12-19 02:00:29 -08:00
MOZ_ASSERT ( mActiveWorker ) ;
nsRefPtr < ServiceWorker > serviceWorker ;
nsresult rv =
2015-02-17 04:36:09 -08:00
swm - > CreateServiceWorker ( mPrincipal ,
2015-02-19 08:40:21 -08:00
mActiveWorker ,
2014-12-19 02:00:29 -08:00
getter_AddRefs ( serviceWorker ) ) ;
2014-07-02 17:48:35 -07:00
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
2015-02-10 14:33:23 -08:00
nsCOMPtr < nsIRunnable > r =
NS_NewRunnableMethodWithArg < bool > ( this ,
& ServiceWorkerRegistrationInfo : : FinishActivate ,
false /* success */ ) ;
MOZ_ALWAYS_TRUE ( NS_SUCCEEDED ( NS_DispatchToMainThread ( r ) ) ) ;
2014-12-19 03:25:56 -08:00
return ;
2014-07-02 17:48:35 -07:00
}
2014-12-19 05:01:53 -08:00
nsMainThreadPtrHandle < ContinueLifecycleTask > handle (
new nsMainThreadPtrHolder < ContinueLifecycleTask > ( new ContinueActivateTask ( this ) ) ) ;
2014-07-02 17:48:35 -07:00
2014-12-19 05:01:53 -08:00
nsRefPtr < LifecycleEventWorkerRunnable > r =
new LifecycleEventWorkerRunnable ( serviceWorker - > GetWorkerPrivate ( ) , NS_LITERAL_STRING ( " activate " ) , handle ) ;
2014-07-02 17:48:35 -07:00
2014-12-19 02:00:29 -08:00
AutoJSAPI jsapi ;
jsapi . Init ( ) ;
r - > Dispatch ( jsapi . cx ( ) ) ;
2014-07-02 17:48:35 -07:00
}
2014-12-19 02:00:29 -08:00
/*
* Implements the async aspects of the getRegistrations algorithm .
*/
class GetRegistrationsRunnable : public nsRunnable
2014-07-02 17:48:50 -07:00
{
2014-12-19 02:00:29 -08:00
nsCOMPtr < nsPIDOMWindow > mWindow ;
nsRefPtr < Promise > mPromise ;
2014-07-02 17:48:50 -07:00
public :
2014-12-19 02:00:29 -08:00
GetRegistrationsRunnable ( nsPIDOMWindow * aWindow , Promise * aPromise )
: mWindow ( aWindow ) , mPromise ( aPromise )
{ }
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
NS_IMETHODIMP
Run ( )
2014-07-02 17:48:50 -07:00
{
nsRefPtr < ServiceWorkerManager > swm = ServiceWorkerManager : : GetInstance ( ) ;
2014-12-19 02:00:29 -08:00
nsIDocument * doc = mWindow - > GetExtantDoc ( ) ;
if ( ! doc ) {
mPromise - > MaybeReject ( NS_ERROR_UNEXPECTED ) ;
return NS_OK ;
}
2014-07-11 13:07:59 -07:00
2014-12-19 02:00:29 -08:00
nsCOMPtr < nsIURI > docURI = doc - > GetDocumentURI ( ) ;
if ( ! docURI ) {
mPromise - > MaybeReject ( NS_ERROR_UNEXPECTED ) ;
return NS_OK ;
}
2014-07-11 13:07:59 -07:00
2014-12-19 02:00:29 -08:00
nsCOMPtr < nsIPrincipal > principal = doc - > NodePrincipal ( ) ;
if ( ! principal ) {
mPromise - > MaybeReject ( NS_ERROR_UNEXPECTED ) ;
return NS_OK ;
}
2014-07-11 13:07:59 -07:00
2014-12-19 02:00:29 -08:00
nsTArray < nsRefPtr < ServiceWorkerRegistration > > array ;
2015-02-16 14:22:17 -08:00
bool isNullPrincipal = true ;
nsresult rv = principal - > GetIsNullPrincipal ( & isNullPrincipal ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
if ( nsContentUtils : : IsSystemPrincipal ( principal ) | | isNullPrincipal ) {
mPromise - > MaybeResolve ( array ) ;
return NS_OK ;
}
2015-02-08 20:33:39 -08:00
for ( uint32_t i = 0 ; i < swm - > mOrderedScopes . Length ( ) ; + + i ) {
NS_ConvertUTF8toUTF16 scope ( swm - > mOrderedScopes [ i ] ) ;
2015-02-16 14:22:17 -08:00
nsCOMPtr < nsIURI > scopeURI ;
nsresult rv = NS_NewURI ( getter_AddRefs ( scopeURI ) , scope , nullptr , nullptr ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
mPromise - > MaybeReject ( rv ) ;
break ;
}
rv = principal - > CheckMayLoad ( scopeURI , true /* report */ ,
false /* allowIfInheritsPrincipal */ ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
continue ;
}
2014-12-19 02:00:29 -08:00
nsRefPtr < ServiceWorkerRegistration > swr =
new ServiceWorkerRegistration ( mWindow , scope ) ;
array . AppendElement ( swr ) ;
}
mPromise - > MaybeResolve ( array ) ;
2014-07-11 13:07:59 -07:00
return NS_OK ;
}
} ;
2014-12-19 02:00:29 -08:00
// If we return an error code here, the ServiceWorkerContainer will
// automatically reject the Promise.
NS_IMETHODIMP
ServiceWorkerManager : : GetRegistrations ( nsIDOMWindow * aWindow ,
nsISupports * * aPromise )
2014-07-02 17:48:50 -07:00
{
2014-12-19 02:00:29 -08:00
AssertIsOnMainThread ( ) ;
MOZ_ASSERT ( aWindow ) ;
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
// XXXnsm Don't allow chrome callers for now, we don't support chrome
// ServiceWorkers.
MOZ_ASSERT ( ! nsContentUtils : : IsCallerChrome ( ) ) ;
nsCOMPtr < nsPIDOMWindow > window = do_QueryInterface ( aWindow ) ;
if ( ! window ) {
return NS_ERROR_FAILURE ;
2014-07-02 17:48:50 -07:00
}
2014-12-19 02:00:29 -08:00
nsCOMPtr < nsIGlobalObject > sgo = do_QueryInterface ( window ) ;
ErrorResult result ;
nsRefPtr < Promise > promise = Promise : : Create ( sgo , result ) ;
if ( result . Failed ( ) ) {
return result . ErrorCode ( ) ;
2014-07-02 17:48:50 -07:00
}
2014-12-19 02:00:29 -08:00
2015-03-17 09:29:17 -07:00
nsCOMPtr < nsIRunnable > runnable =
2014-12-19 02:00:29 -08:00
new GetRegistrationsRunnable ( window , promise ) ;
promise . forget ( aPromise ) ;
return NS_DispatchToCurrentThread ( runnable ) ;
}
2014-07-02 17:48:50 -07:00
/*
2014-12-19 02:00:29 -08:00
* Implements the async aspects of the getRegistration algorithm .
2014-07-02 17:48:50 -07:00
*/
2014-12-19 02:00:29 -08:00
class GetRegistrationRunnable : public nsRunnable
2014-07-02 17:48:50 -07:00
{
2014-12-19 02:00:29 -08:00
nsCOMPtr < nsPIDOMWindow > mWindow ;
nsRefPtr < Promise > mPromise ;
nsString mDocumentURL ;
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
public :
GetRegistrationRunnable ( nsPIDOMWindow * aWindow , Promise * aPromise ,
const nsAString & aDocumentURL )
: mWindow ( aWindow ) , mPromise ( aPromise ) , mDocumentURL ( aDocumentURL )
2014-07-02 17:48:50 -07:00
{ }
2014-12-19 02:00:29 -08:00
NS_IMETHODIMP
Run ( )
2014-07-02 17:48:50 -07:00
{
2014-12-19 02:00:29 -08:00
nsRefPtr < ServiceWorkerManager > swm = ServiceWorkerManager : : GetInstance ( ) ;
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
nsIDocument * doc = mWindow - > GetExtantDoc ( ) ;
if ( ! doc ) {
mPromise - > MaybeReject ( NS_ERROR_UNEXPECTED ) ;
return NS_OK ;
}
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
nsCOMPtr < nsIURI > docURI = doc - > GetDocumentURI ( ) ;
if ( ! docURI ) {
mPromise - > MaybeReject ( NS_ERROR_UNEXPECTED ) ;
return NS_OK ;
}
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
nsCOMPtr < nsIURI > uri ;
nsresult rv = NS_NewURI ( getter_AddRefs ( uri ) , mDocumentURL , nullptr , docURI ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
mPromise - > MaybeReject ( rv ) ;
return NS_OK ;
}
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
nsCOMPtr < nsIPrincipal > principal = doc - > NodePrincipal ( ) ;
if ( ! principal ) {
mPromise - > MaybeReject ( NS_ERROR_UNEXPECTED ) ;
return NS_OK ;
}
2014-07-11 13:07:59 -07:00
2014-12-19 02:00:29 -08:00
rv = principal - > CheckMayLoad ( uri , true /* report */ ,
false /* allowIfInheritsPrinciple */ ) ;
if ( NS_FAILED ( rv ) ) {
mPromise - > MaybeReject ( NS_ERROR_DOM_SECURITY_ERR ) ;
return NS_OK ;
}
2014-07-11 13:07:59 -07:00
2014-12-19 02:00:29 -08:00
nsRefPtr < ServiceWorkerRegistrationInfo > registration =
swm - > GetServiceWorkerRegistrationInfo ( uri ) ;
2014-07-11 13:07:59 -07:00
2014-12-19 02:00:29 -08:00
if ( ! registration ) {
mPromise - > MaybeResolve ( JS : : UndefinedHandleValue ) ;
return NS_OK ;
}
2014-07-11 13:07:59 -07:00
2014-12-19 02:00:29 -08:00
NS_ConvertUTF8toUTF16 scope ( registration - > mScope ) ;
nsRefPtr < ServiceWorkerRegistration > swr =
new ServiceWorkerRegistration ( mWindow , scope ) ;
mPromise - > MaybeResolve ( swr ) ;
2014-07-11 13:07:59 -07:00
2014-12-19 02:00:29 -08:00
return NS_OK ;
2014-07-11 13:07:59 -07:00
}
} ;
2014-12-19 02:00:29 -08:00
// If we return an error code here, the ServiceWorkerContainer will
// automatically reject the Promise.
NS_IMETHODIMP
ServiceWorkerManager : : GetRegistration ( nsIDOMWindow * aWindow ,
const nsAString & aDocumentURL ,
nsISupports * * aPromise )
2014-07-02 17:48:50 -07:00
{
2014-12-19 02:00:29 -08:00
AssertIsOnMainThread ( ) ;
MOZ_ASSERT ( aWindow ) ;
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
// XXXnsm Don't allow chrome callers for now, we don't support chrome
// ServiceWorkers.
MOZ_ASSERT ( ! nsContentUtils : : IsCallerChrome ( ) ) ;
nsCOMPtr < nsPIDOMWindow > window = do_QueryInterface ( aWindow ) ;
if ( ! window ) {
return NS_ERROR_FAILURE ;
2014-07-02 17:48:50 -07:00
}
2014-12-19 02:00:29 -08:00
nsCOMPtr < nsIGlobalObject > sgo = do_QueryInterface ( window ) ;
ErrorResult result ;
nsRefPtr < Promise > promise = Promise : : Create ( sgo , result ) ;
if ( result . Failed ( ) ) {
return result . ErrorCode ( ) ;
2014-07-02 17:48:50 -07:00
}
2015-03-17 09:29:17 -07:00
nsCOMPtr < nsIRunnable > runnable =
2014-12-19 02:00:29 -08:00
new GetRegistrationRunnable ( window , promise , aDocumentURL ) ;
promise . forget ( aPromise ) ;
return NS_DispatchToCurrentThread ( runnable ) ;
}
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
class GetReadyPromiseRunnable : public nsRunnable
{
nsCOMPtr < nsPIDOMWindow > mWindow ;
nsRefPtr < Promise > mPromise ;
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
public :
GetReadyPromiseRunnable ( nsPIDOMWindow * aWindow , Promise * aPromise )
: mWindow ( aWindow ) , mPromise ( aPromise )
{ }
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
NS_IMETHODIMP
Run ( )
{
nsRefPtr < ServiceWorkerManager > swm = ServiceWorkerManager : : GetInstance ( ) ;
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
nsIDocument * doc = mWindow - > GetExtantDoc ( ) ;
if ( ! doc ) {
mPromise - > MaybeReject ( NS_ERROR_UNEXPECTED ) ;
return NS_OK ;
}
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
nsCOMPtr < nsIURI > docURI = doc - > GetDocumentURI ( ) ;
if ( ! docURI ) {
mPromise - > MaybeReject ( NS_ERROR_UNEXPECTED ) ;
return NS_OK ;
}
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
if ( ! swm - > CheckReadyPromise ( mWindow , docURI , mPromise ) ) {
swm - > StorePendingReadyPromise ( mWindow , docURI , mPromise ) ;
2014-07-02 17:48:50 -07:00
}
2014-12-19 02:00:29 -08:00
return NS_OK ;
}
} ;
NS_IMETHODIMP
ServiceWorkerManager : : GetReadyPromise ( nsIDOMWindow * aWindow ,
nsISupports * * aPromise )
{
AssertIsOnMainThread ( ) ;
MOZ_ASSERT ( aWindow ) ;
// XXXnsm Don't allow chrome callers for now, we don't support chrome
// ServiceWorkers.
MOZ_ASSERT ( ! nsContentUtils : : IsCallerChrome ( ) ) ;
nsCOMPtr < nsPIDOMWindow > window = do_QueryInterface ( aWindow ) ;
if ( ! window ) {
return NS_ERROR_FAILURE ;
}
MOZ_ASSERT ( ! mPendingReadyPromises . Contains ( window ) ) ;
nsCOMPtr < nsIGlobalObject > sgo = do_QueryInterface ( window ) ;
ErrorResult result ;
nsRefPtr < Promise > promise = Promise : : Create ( sgo , result ) ;
if ( result . Failed ( ) ) {
return result . ErrorCode ( ) ;
2014-07-02 17:48:50 -07:00
}
2015-03-17 09:29:17 -07:00
nsCOMPtr < nsIRunnable > runnable =
2014-12-19 02:00:29 -08:00
new GetReadyPromiseRunnable ( window , promise ) ;
promise . forget ( aPromise ) ;
return NS_DispatchToCurrentThread ( runnable ) ;
}
NS_IMETHODIMP
ServiceWorkerManager : : RemoveReadyPromise ( nsIDOMWindow * aWindow )
2014-07-11 13:07:59 -07:00
{
2014-12-19 02:00:29 -08:00
AssertIsOnMainThread ( ) ;
MOZ_ASSERT ( aWindow ) ;
2014-07-11 13:07:59 -07:00
2014-12-19 02:00:29 -08:00
nsCOMPtr < nsPIDOMWindow > window = do_QueryInterface ( aWindow ) ;
if ( ! window ) {
return NS_ERROR_FAILURE ;
2014-07-11 13:07:59 -07:00
}
2014-12-19 02:00:29 -08:00
mPendingReadyPromises . Remove ( aWindow ) ;
return NS_OK ;
}
2014-07-11 13:07:59 -07:00
2014-12-19 02:00:29 -08:00
void
ServiceWorkerManager : : StorePendingReadyPromise ( nsPIDOMWindow * aWindow ,
nsIURI * aURI ,
Promise * aPromise )
{
PendingReadyPromise * data ;
2014-07-11 13:07:59 -07:00
2014-12-19 02:00:29 -08:00
// We should not have 2 pending promises for the same window.
MOZ_ASSERT ( ! mPendingReadyPromises . Get ( aWindow , & data ) ) ;
2014-07-11 13:07:59 -07:00
2014-12-19 02:00:29 -08:00
data = new PendingReadyPromise ( aURI , aPromise ) ;
mPendingReadyPromises . Put ( aWindow , data ) ;
}
2014-07-11 13:07:59 -07:00
2014-12-19 02:00:29 -08:00
void
ServiceWorkerManager : : CheckPendingReadyPromises ( )
{
mPendingReadyPromises . Enumerate ( CheckPendingReadyPromisesEnumerator , this ) ;
}
2014-07-11 13:07:59 -07:00
2014-12-19 02:00:29 -08:00
PLDHashOperator
ServiceWorkerManager : : CheckPendingReadyPromisesEnumerator (
nsISupports * aSupports ,
nsAutoPtr < PendingReadyPromise > & aData ,
void * aPtr )
{
ServiceWorkerManager * aSwm = static_cast < ServiceWorkerManager * > ( aPtr ) ;
2014-07-11 13:07:59 -07:00
2014-12-19 02:00:29 -08:00
nsCOMPtr < nsPIDOMWindow > window = do_QueryInterface ( aSupports ) ;
2014-07-11 13:07:59 -07:00
2014-12-19 02:00:29 -08:00
if ( aSwm - > CheckReadyPromise ( window , aData - > mURI , aData - > mPromise ) ) {
return PL_DHASH_REMOVE ;
}
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
return PL_DHASH_NEXT ;
}
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
bool
ServiceWorkerManager : : CheckReadyPromise ( nsPIDOMWindow * aWindow ,
nsIURI * aURI , Promise * aPromise )
{
nsRefPtr < ServiceWorkerRegistrationInfo > registration =
GetServiceWorkerRegistrationInfo ( aURI ) ;
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
if ( registration & & registration - > mActiveWorker ) {
NS_ConvertUTF8toUTF16 scope ( registration - > mScope ) ;
nsRefPtr < ServiceWorkerRegistration > swr =
new ServiceWorkerRegistration ( aWindow , scope ) ;
aPromise - > MaybeResolve ( swr ) ;
return true ;
2014-07-02 17:48:50 -07:00
}
2014-12-19 02:00:29 -08:00
return false ;
2014-07-02 17:48:50 -07:00
}
2015-03-21 09:28:04 -07:00
class ServiceWorkerUnregisterJob final : public ServiceWorkerJob
2014-07-02 17:48:50 -07:00
{
2015-01-22 14:10:38 -08:00
nsRefPtr < ServiceWorkerRegistrationInfo > mRegistration ;
const nsCString mScope ;
nsCOMPtr < nsIServiceWorkerUnregisterCallback > mCallback ;
2015-02-11 03:53:00 -08:00
PrincipalInfo mPrincipalInfo ;
2014-12-19 02:00:29 -08:00
2015-01-22 14:10:38 -08:00
~ ServiceWorkerUnregisterJob ( )
{ }
public :
ServiceWorkerUnregisterJob ( ServiceWorkerJobQueue * aQueue ,
const nsACString & aScope ,
2015-02-11 03:53:00 -08:00
nsIServiceWorkerUnregisterCallback * aCallback ,
PrincipalInfo & aPrincipalInfo )
2015-01-22 14:10:38 -08:00
: ServiceWorkerJob ( aQueue )
, mScope ( aScope )
, mCallback ( aCallback )
2015-02-11 03:53:00 -08:00
, mPrincipalInfo ( aPrincipalInfo )
2015-01-22 14:10:38 -08:00
{
AssertIsOnMainThread ( ) ;
2014-07-11 13:07:59 -07:00
}
2015-01-22 14:10:38 -08:00
void
2015-03-21 09:28:04 -07:00
Start ( ) override
2014-07-11 13:07:59 -07:00
{
2015-01-22 14:10:38 -08:00
AssertIsOnMainThread ( ) ;
nsCOMPtr < nsIRunnable > r =
NS_NewRunnableMethod ( this , & ServiceWorkerUnregisterJob : : UnregisterAndDone ) ;
MOZ_ALWAYS_TRUE ( NS_SUCCEEDED ( NS_DispatchToMainThread ( r ) ) ) ;
}
2014-07-11 13:07:59 -07:00
2015-01-22 14:10:38 -08:00
private :
// You probably want UnregisterAndDone().
nsresult
Unregister ( )
{
AssertIsOnMainThread ( ) ;
2014-07-11 13:07:59 -07:00
2015-01-22 14:10:38 -08:00
nsRefPtr < ServiceWorkerManager > swm = ServiceWorkerManager : : GetInstance ( ) ;
2014-07-23 14:05:08 -07:00
2015-01-22 14:10:38 -08:00
// "Let registration be the result of running [[Get Registration]]
// algorithm passing scope as the argument."
nsRefPtr < ServiceWorkerRegistrationInfo > registration ;
2015-02-08 20:33:39 -08:00
if ( ! swm - > mServiceWorkerRegistrationInfos . Get ( mScope , getter_AddRefs ( registration ) ) ) {
2015-01-22 14:10:38 -08:00
// "If registration is null, then, resolve promise with false."
return mCallback - > UnregisterSucceeded ( false ) ;
}
2014-07-11 13:07:59 -07:00
2015-01-22 14:10:38 -08:00
MOZ_ASSERT ( registration ) ;
2014-07-11 13:07:59 -07:00
2015-01-22 14:10:38 -08:00
// "Set registration's uninstalling flag."
registration - > mPendingUninstall = true ;
// "Resolve promise with true"
nsresult rv = mCallback - > UnregisterSucceeded ( true ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
2014-12-19 02:00:29 -08:00
2015-01-22 14:10:38 -08:00
// "If no service worker client is using registration..."
if ( ! registration - > IsControllingDocuments ( ) ) {
// "If registration's uninstalling flag is set.."
if ( ! registration - > mPendingUninstall ) {
return NS_OK ;
2014-12-19 02:00:29 -08:00
}
2014-07-11 13:07:59 -07:00
2015-01-22 14:10:38 -08:00
// "Invoke [[Clear Registration]]..."
registration - > Clear ( ) ;
2015-02-08 20:33:39 -08:00
swm - > RemoveRegistration ( registration ) ;
2015-01-22 14:10:38 -08:00
}
2014-07-11 13:07:59 -07:00
2015-02-11 03:53:00 -08:00
MOZ_ASSERT ( swm - > mActor ) ;
swm - > mActor - > SendUnregisterServiceWorker ( mPrincipalInfo ,
NS_ConvertUTF8toUTF16 ( mScope ) ) ;
2015-03-18 09:46:38 -07:00
2015-01-22 14:10:38 -08:00
return NS_OK ;
}
2014-07-11 13:07:59 -07:00
2015-01-22 14:10:38 -08:00
// The unregister job is done irrespective of success or failure of any sort.
void
UnregisterAndDone ( )
{
Done ( Unregister ( ) ) ;
}
} ;
2014-07-11 13:07:59 -07:00
2015-01-22 14:10:38 -08:00
NS_IMETHODIMP
2015-02-11 03:53:00 -08:00
ServiceWorkerManager : : Unregister ( nsIPrincipal * aPrincipal ,
nsIServiceWorkerUnregisterCallback * aCallback ,
2015-01-22 14:10:38 -08:00
const nsAString & aScope )
{
AssertIsOnMainThread ( ) ;
2015-02-11 03:53:00 -08:00
MOZ_ASSERT ( aPrincipal ) ;
2015-01-22 14:10:38 -08:00
MOZ_ASSERT ( aCallback ) ;
// This is not accessible by content, and callers should always ensure scope is
// a correct URI, so this is wrapped in DEBUG
# ifdef DEBUG
nsCOMPtr < nsIURI > scopeURI ;
nsresult rv = NS_NewURI ( getter_AddRefs ( scopeURI ) , aScope , nullptr , nullptr ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return NS_ERROR_DOM_SECURITY_ERR ;
}
# endif
NS_ConvertUTF16toUTF8 scope ( aScope ) ;
2015-02-08 20:33:39 -08:00
ServiceWorkerJobQueue * queue = GetOrCreateJobQueue ( scope ) ;
2015-01-22 14:10:38 -08:00
MOZ_ASSERT ( queue ) ;
2015-02-11 03:53:00 -08:00
PrincipalInfo principalInfo ;
if ( NS_WARN_IF ( NS_FAILED ( PrincipalToPrincipalInfo ( aPrincipal ,
& principalInfo ) ) ) ) {
return NS_ERROR_DOM_SECURITY_ERR ;
}
2015-01-22 14:10:38 -08:00
nsRefPtr < ServiceWorkerUnregisterJob > job =
2015-02-11 03:53:00 -08:00
new ServiceWorkerUnregisterJob ( queue , scope , aCallback , principalInfo ) ;
if ( mActor ) {
queue - > Append ( job ) ;
return NS_OK ;
}
AppendPendingOperation ( queue , job ) ;
2015-01-22 14:10:38 -08:00
return NS_OK ;
2014-12-19 02:00:29 -08:00
}
/* static */
already_AddRefed < ServiceWorkerManager >
ServiceWorkerManager : : GetInstance ( )
{
nsCOMPtr < nsIServiceWorkerManager > swm = mozilla : : services : : GetServiceWorkerManager ( ) ;
nsRefPtr < ServiceWorkerManager > concrete = do_QueryObject ( swm ) ;
return concrete . forget ( ) ;
}
void
ServiceWorkerManager : : FinishFetch ( ServiceWorkerRegistrationInfo * aRegistration )
{
}
2014-07-02 17:48:50 -07:00
2014-12-19 02:48:31 -08:00
bool
2014-12-19 02:00:29 -08:00
ServiceWorkerManager : : HandleError ( JSContext * aCx ,
2014-12-19 02:48:31 -08:00
const nsCString & aScope ,
const nsString & aWorkerURL ,
2014-12-19 02:00:29 -08:00
nsString aMessage ,
nsString aFilename ,
nsString aLine ,
uint32_t aLineNumber ,
uint32_t aColumnNumber ,
uint32_t aFlags )
2014-07-02 17:48:50 -07:00
{
AssertIsOnMainThread ( ) ;
2015-02-08 20:33:39 -08:00
if ( ! mSetOfScopesBeingUpdated . Contains ( aScope ) ) {
2014-12-19 02:48:31 -08:00
return false ;
2014-07-22 18:18:48 -07:00
}
2015-02-08 20:33:39 -08:00
mSetOfScopesBeingUpdated . Remove ( aScope ) ;
2014-12-19 02:48:31 -08:00
2015-02-08 20:33:39 -08:00
ServiceWorkerJobQueue * queue = mJobQueues . Get ( aScope ) ;
2014-12-19 02:48:31 -08:00
MOZ_ASSERT ( queue ) ;
ServiceWorkerJob * job = queue - > Peek ( ) ;
ServiceWorkerRegisterJob * regJob = static_cast < ServiceWorkerRegisterJob * > ( job ) ;
MOZ_ASSERT ( regJob ) ;
2014-07-02 17:48:50 -07:00
2014-12-19 02:00:29 -08:00
RootedDictionary < ErrorEventInit > init ( aCx ) ;
init . mMessage = aMessage ;
init . mFilename = aFilename ;
init . mLineno = aLineNumber ;
init . mColno = aColumnNumber ;
2014-07-02 17:48:50 -07:00
2014-12-19 02:48:31 -08:00
regJob - > Fail ( init ) ;
return true ;
2014-06-11 09:12:56 -07:00
}
2014-07-11 13:07:59 -07:00
void
2014-12-19 02:00:29 -08:00
ServiceWorkerRegistrationInfo : : FinishActivate ( bool aSuccess )
2014-07-11 13:07:59 -07:00
{
2015-02-10 14:33:23 -08:00
if ( mPendingUninstall | | ! mActiveWorker ) {
return ;
}
2014-12-19 02:00:29 -08:00
if ( aSuccess ) {
mActiveWorker - > UpdateState ( ServiceWorkerState : : Activated ) ;
2015-02-10 18:08:58 -08:00
nsRefPtr < ServiceWorkerManager > swm = ServiceWorkerManager : : GetInstance ( ) ;
swm - > StoreRegistration ( mPrincipal , this ) ;
2014-12-19 02:00:29 -08:00
} else {
mActiveWorker - > UpdateState ( ServiceWorkerState : : Redundant ) ;
mActiveWorker = nullptr ;
}
2014-07-11 13:07:59 -07:00
}
2013-11-19 15:15:02 -08:00
NS_IMETHODIMP
ServiceWorkerManager : : CreateServiceWorkerForWindow ( nsPIDOMWindow * aWindow ,
2015-02-19 08:40:21 -08:00
ServiceWorkerInfo * aInfo ,
2013-11-19 15:15:02 -08:00
ServiceWorker * * aServiceWorker )
{
AssertIsOnMainThread ( ) ;
MOZ_ASSERT ( aWindow ) ;
2015-03-19 11:41:42 -07:00
MOZ_ASSERT ( aInfo ) ;
2013-11-19 15:15:02 -08:00
2014-12-19 02:00:29 -08:00
AutoJSAPI jsapi ;
jsapi . Init ( aWindow ) ;
JSContext * cx = jsapi . cx ( ) ;
2013-11-19 15:15:02 -08:00
2015-03-19 11:41:42 -07:00
WorkerLoadInfo loadInfo ;
nsresult rv = WorkerPrivate : : GetLoadInfo ( cx , aWindow , nullptr ,
NS_ConvertUTF8toUTF16 ( aInfo - > ScriptSpec ( ) ) ,
false ,
WorkerPrivate : : OverrideLoadGroup ,
& loadInfo ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
loadInfo . mServiceWorkerCacheName = aInfo - > CacheName ( ) ;
RuntimeService * rs = RuntimeService : : GetOrCreateService ( ) ;
if ( ! rs ) {
return NS_ERROR_FAILURE ;
}
2013-11-19 15:15:02 -08:00
2015-03-19 11:41:42 -07:00
nsRefPtr < SharedWorker > sharedWorker ;
rv = rs - > CreateSharedWorkerForServiceWorkerFromLoadInfo ( cx , & loadInfo ,
NS_ConvertUTF8toUTF16 ( aInfo - > ScriptSpec ( ) ) ,
aInfo - > Scope ( ) ,
getter_AddRefs ( sharedWorker ) ) ;
2013-11-19 15:15:02 -08:00
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
2015-02-19 08:40:21 -08:00
nsRefPtr < ServiceWorker > serviceWorker =
new ServiceWorker ( aWindow , aInfo , sharedWorker ) ;
2013-11-19 15:15:02 -08:00
serviceWorker . forget ( aServiceWorker ) ;
return rv ;
}
2015-02-11 03:53:00 -08:00
void
ServiceWorkerManager : : LoadRegistrations (
const nsTArray < ServiceWorkerRegistrationData > & aRegistrations )
{
AssertIsOnMainThread ( ) ;
for ( uint32_t i = 0 , len = aRegistrations . Length ( ) ; i < len ; + + i ) {
nsCOMPtr < nsIPrincipal > principal =
PrincipalInfoToPrincipal ( aRegistrations [ i ] . principal ( ) ) ;
if ( ! principal ) {
continue ;
}
ServiceWorkerRegistrationInfo * registration =
CreateNewRegistration ( aRegistrations [ i ] . scope ( ) , principal ) ;
registration - > mScriptSpec = aRegistrations [ i ] . scriptSpec ( ) ;
2015-02-10 18:08:58 -08:00
const nsCString & currentWorkerURL = aRegistrations [ i ] . currentWorkerURL ( ) ;
if ( ! currentWorkerURL . IsEmpty ( ) ) {
registration - > mActiveWorker =
2015-03-18 09:46:38 -07:00
new ServiceWorkerInfo ( registration , currentWorkerURL , aRegistrations [ i ] . activeCacheName ( ) ) ;
2015-02-10 18:08:58 -08:00
registration - > mActiveWorker - > SetActivateStateUncheckedWithoutEvent ( ServiceWorkerState : : Activated ) ;
}
2015-02-11 03:53:00 -08:00
}
}
void
ServiceWorkerManager : : ActorFailed ( )
{
MOZ_CRASH ( " Failed to create a PBackgroundChild actor! " ) ;
}
void
ServiceWorkerManager : : ActorCreated ( mozilla : : ipc : : PBackgroundChild * aActor )
{
MOZ_ASSERT ( aActor ) ;
MOZ_ASSERT ( ! mActor ) ;
mActor = aActor ;
// Flush the pending requests.
for ( uint32_t i = 0 , len = mPendingOperations . Length ( ) ; i < len ; + + i ) {
MOZ_ASSERT ( mPendingOperations [ i ] . mRunnable | |
( mPendingOperations [ i ] . mJob & & mPendingOperations [ i ] . mQueue ) ) ;
if ( mPendingOperations [ i ] . mRunnable ) {
nsresult rv = NS_DispatchToCurrentThread ( mPendingOperations [ i ] . mRunnable ) ;
if ( NS_FAILED ( rv ) ) {
NS_WARNING ( " Failed to dispatch a runnable. " ) ;
return ;
}
} else {
mPendingOperations [ i ] . mQueue - > Append ( mPendingOperations [ i ] . mJob ) ;
}
}
mPendingOperations . Clear ( ) ;
}
void
ServiceWorkerManager : : StoreRegistration (
nsIPrincipal * aPrincipal ,
ServiceWorkerRegistrationInfo * aRegistration )
{
MOZ_ASSERT ( mActor ) ;
MOZ_ASSERT ( aPrincipal ) ;
MOZ_ASSERT ( aRegistration ) ;
ServiceWorkerRegistrationData data ;
nsresult rv = PopulateRegistrationData ( aPrincipal , aRegistration , data ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return ;
}
PrincipalInfo principalInfo ;
if ( NS_WARN_IF ( NS_FAILED ( PrincipalToPrincipalInfo ( aPrincipal ,
& principalInfo ) ) ) ) {
return ;
}
mActor - > SendRegisterServiceWorker ( data ) ;
}
2014-08-19 06:56:00 -07:00
already_AddRefed < ServiceWorkerRegistrationInfo >
ServiceWorkerManager : : GetServiceWorkerRegistrationInfo ( nsPIDOMWindow * aWindow )
2014-07-11 11:52:19 -07:00
{
2014-07-20 23:25:44 -07:00
nsCOMPtr < nsIDocument > document = aWindow - > GetExtantDoc ( ) ;
2014-08-19 06:56:00 -07:00
return GetServiceWorkerRegistrationInfo ( document ) ;
2014-07-11 11:52:19 -07:00
}
2014-08-19 06:56:00 -07:00
already_AddRefed < ServiceWorkerRegistrationInfo >
ServiceWorkerManager : : GetServiceWorkerRegistrationInfo ( nsIDocument * aDoc )
2014-07-11 11:52:19 -07:00
{
nsCOMPtr < nsIURI > documentURI = aDoc - > GetDocumentURI ( ) ;
2014-08-19 06:56:00 -07:00
return GetServiceWorkerRegistrationInfo ( documentURI ) ;
2014-07-11 11:52:19 -07:00
}
2014-08-19 06:56:00 -07:00
already_AddRefed < ServiceWorkerRegistrationInfo >
ServiceWorkerManager : : GetServiceWorkerRegistrationInfo ( nsIURI * aURI )
2014-07-11 11:52:19 -07:00
{
nsCString spec ;
2014-07-14 14:15:23 -07:00
nsresult rv = aURI - > GetSpec ( spec ) ;
2014-07-11 11:52:19 -07:00
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return nullptr ;
}
2015-02-08 20:33:39 -08:00
nsCString scope = FindScopeForPath ( mOrderedScopes , spec ) ;
2014-07-11 11:52:19 -07:00
if ( scope . IsEmpty ( ) ) {
return nullptr ;
}
2014-08-19 06:56:00 -07:00
nsRefPtr < ServiceWorkerRegistrationInfo > registration ;
2015-02-08 20:33:39 -08:00
mServiceWorkerRegistrationInfos . Get ( scope , getter_AddRefs ( registration ) ) ;
2014-07-11 11:52:19 -07:00
// ordered scopes and registrations better be in sync.
MOZ_ASSERT ( registration ) ;
2014-07-14 10:33:44 -07:00
if ( registration - > mPendingUninstall ) {
return nullptr ;
}
2014-07-28 06:57:31 -07:00
return registration . forget ( ) ;
2014-07-11 11:52:19 -07:00
}
/* static */ void
ServiceWorkerManager : : AddScope ( nsTArray < nsCString > & aList , const nsACString & aScope )
{
for ( uint32_t i = 0 ; i < aList . Length ( ) ; + + i ) {
const nsCString & current = aList [ i ] ;
// Perfect match!
if ( aScope . Equals ( current ) ) {
return ;
}
2014-08-21 16:38:40 -07:00
// Sort by length, with longest match first.
// /foo/bar should be before /foo/
// Similarly /foo/b is between the two.
if ( StringBeginsWith ( aScope , current ) ) {
2014-07-11 11:52:19 -07:00
aList . InsertElementAt ( i , aScope ) ;
return ;
}
}
aList . AppendElement ( aScope ) ;
}
/* static */ nsCString
ServiceWorkerManager : : FindScopeForPath ( nsTArray < nsCString > & aList , const nsACString & aPath )
{
nsCString match ;
for ( uint32_t i = 0 ; i < aList . Length ( ) ; + + i ) {
const nsCString & current = aList [ i ] ;
2014-08-21 16:38:40 -07:00
if ( StringBeginsWith ( aPath , current ) ) {
match = current ;
break ;
2014-07-11 11:52:19 -07:00
}
}
return match ;
}
/* static */ void
ServiceWorkerManager : : RemoveScope ( nsTArray < nsCString > & aList , const nsACString & aScope )
{
aList . RemoveElement ( aScope ) ;
}
2014-07-20 23:25:44 -07:00
void
ServiceWorkerManager : : MaybeStartControlling ( nsIDocument * aDoc )
{
AssertIsOnMainThread ( ) ;
2014-08-19 06:56:00 -07:00
nsRefPtr < ServiceWorkerRegistrationInfo > registration =
GetServiceWorkerRegistrationInfo ( aDoc ) ;
2014-12-19 02:00:29 -08:00
if ( registration ) {
2015-02-08 20:33:39 -08:00
MOZ_ASSERT ( ! mControlledDocuments . Contains ( aDoc ) ) ;
2014-07-20 23:25:44 -07:00
registration - > StartControllingADocument ( ) ;
// Use the already_AddRefed<> form of Put to avoid the addref-deref since
// we don't need the registration pointer in this function anymore.
2015-02-08 20:33:39 -08:00
mControlledDocuments . Put ( aDoc , registration . forget ( ) ) ;
2014-07-20 23:25:44 -07:00
}
}
void
ServiceWorkerManager : : MaybeStopControlling ( nsIDocument * aDoc )
{
MOZ_ASSERT ( aDoc ) ;
2014-08-19 06:56:00 -07:00
nsRefPtr < ServiceWorkerRegistrationInfo > registration ;
2015-02-08 20:33:39 -08:00
mControlledDocuments . Remove ( aDoc , getter_AddRefs ( registration ) ) ;
2014-07-20 23:25:44 -07:00
// A document which was uncontrolled does not maintain that state itself, so
// it will always call MaybeStopControlling() even if there isn't an
// associated registration. So this check is required.
if ( registration ) {
registration - > StopControllingADocument ( ) ;
2014-10-24 15:11:26 -07:00
if ( ! registration - > IsControllingDocuments ( ) ) {
2015-02-10 14:33:23 -08:00
if ( registration - > mPendingUninstall ) {
registration - > Clear ( ) ;
RemoveRegistration ( registration ) ;
} else {
registration - > TryToActivate ( ) ;
}
2014-10-24 15:11:26 -07:00
}
2014-07-20 23:25:44 -07:00
}
}
2014-07-11 11:52:19 -07:00
NS_IMETHODIMP
ServiceWorkerManager : : GetScopeForUrl ( const nsAString & aUrl , nsAString & aScope )
{
nsCOMPtr < nsIURI > uri ;
nsresult rv = NS_NewURI ( getter_AddRefs ( uri ) , aUrl , nullptr , nullptr ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return NS_ERROR_FAILURE ;
}
2014-08-19 06:56:00 -07:00
nsRefPtr < ServiceWorkerRegistrationInfo > r = GetServiceWorkerRegistrationInfo ( uri ) ;
2014-07-11 11:52:19 -07:00
if ( ! r ) {
return NS_ERROR_FAILURE ;
}
aScope = NS_ConvertUTF8toUTF16 ( r - > mScope ) ;
return NS_OK ;
}
2014-07-11 13:07:59 -07:00
2014-07-14 14:15:23 -07:00
NS_IMETHODIMP
2014-10-27 11:52:57 -07:00
ServiceWorkerManager : : AddRegistrationEventListener ( const nsAString & aScope , nsIDOMEventTarget * aListener )
2014-07-14 14:15:23 -07:00
{
2014-08-27 13:33:20 -07:00
AssertIsOnMainThread ( ) ;
2014-10-27 11:52:57 -07:00
nsAutoCString scope = NS_ConvertUTF16toUTF8 ( aScope ) ;
2014-07-14 14:15:23 -07:00
2014-08-19 06:56:00 -07:00
// TODO: this is very very bad:
ServiceWorkerRegistration * registration = static_cast < ServiceWorkerRegistration * > ( aListener ) ;
2015-02-08 20:33:39 -08:00
MOZ_ASSERT ( ! mServiceWorkerRegistrations . Contains ( registration ) ) ;
2014-10-27 11:52:57 -07:00
# ifdef DEBUG
// Ensure a registration is only listening for it's own scope.
nsAutoString regScope ;
registration - > GetScope ( regScope ) ;
MOZ_ASSERT ( ! regScope . IsEmpty ( ) ) ;
MOZ_ASSERT ( scope . Equals ( NS_ConvertUTF16toUTF8 ( regScope ) ) ) ;
# endif
2015-02-08 20:33:39 -08:00
mServiceWorkerRegistrations . AppendElement ( registration ) ;
2014-07-14 14:15:23 -07:00
return NS_OK ;
}
NS_IMETHODIMP
2014-10-27 11:52:57 -07:00
ServiceWorkerManager : : RemoveRegistrationEventListener ( const nsAString & aScope , nsIDOMEventTarget * aListener )
2014-07-14 14:15:23 -07:00
{
2014-08-27 13:33:20 -07:00
AssertIsOnMainThread ( ) ;
2014-10-27 11:52:57 -07:00
nsCString scope = NS_ConvertUTF16toUTF8 ( aScope ) ;
2014-08-19 06:56:00 -07:00
ServiceWorkerRegistration * registration = static_cast < ServiceWorkerRegistration * > ( aListener ) ;
2015-02-08 20:33:39 -08:00
MOZ_ASSERT ( mServiceWorkerRegistrations . Contains ( registration ) ) ;
2014-10-27 11:52:57 -07:00
# ifdef DEBUG
// Ensure a registration is unregistering for it's own scope.
nsAutoString regScope ;
registration - > GetScope ( regScope ) ;
MOZ_ASSERT ( ! regScope . IsEmpty ( ) ) ;
MOZ_ASSERT ( scope . Equals ( NS_ConvertUTF16toUTF8 ( regScope ) ) ) ;
# endif
2015-02-08 20:33:39 -08:00
mServiceWorkerRegistrations . RemoveElement ( registration ) ;
2014-07-14 14:15:23 -07:00
return NS_OK ;
}
void
2014-08-19 06:56:00 -07:00
ServiceWorkerManager : : FireEventOnServiceWorkerRegistrations (
ServiceWorkerRegistrationInfo * aRegistration ,
2014-07-14 14:15:23 -07:00
const nsAString & aName )
{
AssertIsOnMainThread ( ) ;
2015-02-08 20:33:39 -08:00
nsTObserverArray < ServiceWorkerRegistration * > : : ForwardIterator it ( mServiceWorkerRegistrations ) ;
while ( it . HasMore ( ) ) {
nsRefPtr < ServiceWorkerRegistration > target = it . GetNext ( ) ;
nsAutoString regScope ;
target - > GetScope ( regScope ) ;
MOZ_ASSERT ( ! regScope . IsEmpty ( ) ) ;
NS_ConvertUTF16toUTF8 utf8Scope ( regScope ) ;
if ( utf8Scope . Equals ( aRegistration - > mScope ) ) {
nsresult rv = target - > DispatchTrustedEvent ( aName ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
// Warn only.
2014-07-14 14:15:23 -07:00
}
}
}
}
2014-07-23 14:05:08 -07:00
/*
2014-08-24 22:35:03 -07:00
* This is used for installing , waiting and active .
2014-07-23 14:05:08 -07:00
*/
NS_IMETHODIMP
2014-08-24 22:35:03 -07:00
ServiceWorkerManager : : GetServiceWorkerForScope ( nsIDOMWindow * aWindow ,
const nsAString & aScope ,
WhichServiceWorker aWhichWorker ,
nsISupports * * aServiceWorker )
2014-07-23 14:05:08 -07:00
{
2014-08-24 22:35:03 -07:00
AssertIsOnMainThread ( ) ;
2014-07-23 14:05:08 -07:00
nsCOMPtr < nsPIDOMWindow > window = do_QueryInterface ( aWindow ) ;
2015-02-19 08:40:21 -08:00
if ( NS_WARN_IF ( ! window ) ) {
2014-08-24 22:35:03 -07:00
return NS_ERROR_FAILURE ;
}
2014-07-23 14:05:08 -07:00
2014-08-24 22:35:03 -07:00
nsCOMPtr < nsIDocument > doc = window - > GetExtantDoc ( ) ;
MOZ_ASSERT ( doc ) ;
///////////////////////////////////////////
// Security check
2014-10-27 11:52:57 -07:00
nsAutoCString scope = NS_ConvertUTF16toUTF8 ( aScope ) ;
2014-08-24 22:35:03 -07:00
nsCOMPtr < nsIURI > scopeURI ;
// We pass nullptr as the base URI since scopes obtained from
// ServiceWorkerRegistrations MUST be fully qualified URIs.
nsresult rv = NS_NewURI ( getter_AddRefs ( scopeURI ) , scope , nullptr , nullptr ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return NS_ERROR_DOM_SECURITY_ERR ;
}
nsCOMPtr < nsIPrincipal > documentPrincipal = doc - > NodePrincipal ( ) ;
rv = documentPrincipal - > CheckMayLoad ( scopeURI , true /* report */ ,
false /* allowIfInheritsPrinciple */ ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return NS_ERROR_DOM_SECURITY_ERR ;
}
////////////////////////////////////////////
2015-02-08 20:33:39 -08:00
nsRefPtr < ServiceWorkerRegistrationInfo > registration = GetRegistration ( scope ) ;
2015-02-19 08:40:21 -08:00
if ( NS_WARN_IF ( ! registration ) ) {
2014-07-23 14:05:08 -07:00
return NS_ERROR_FAILURE ;
}
nsRefPtr < ServiceWorkerInfo > info ;
if ( aWhichWorker = = WhichServiceWorker : : INSTALLING_WORKER ) {
info = registration - > mInstallingWorker ;
} else if ( aWhichWorker = = WhichServiceWorker : : WAITING_WORKER ) {
info = registration - > mWaitingWorker ;
} else if ( aWhichWorker = = WhichServiceWorker : : ACTIVE_WORKER ) {
2014-12-19 02:00:29 -08:00
info = registration - > mActiveWorker ;
2014-07-23 14:05:08 -07:00
} else {
MOZ_CRASH ( " Invalid worker type " ) ;
}
2015-02-19 08:40:21 -08:00
if ( NS_WARN_IF ( ! info ) ) {
2014-07-23 14:05:08 -07:00
return NS_ERROR_DOM_NOT_FOUND_ERR ;
}
nsRefPtr < ServiceWorker > serviceWorker ;
2014-08-24 22:35:03 -07:00
rv = CreateServiceWorkerForWindow ( window ,
2015-02-19 08:40:21 -08:00
info ,
2014-08-24 22:35:03 -07:00
getter_AddRefs ( serviceWorker ) ) ;
2014-07-23 14:05:08 -07:00
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
2014-12-19 03:25:56 -08:00
serviceWorker - > SetState ( info - > State ( ) ) ;
2014-07-23 14:05:08 -07:00
serviceWorker . forget ( aServiceWorker ) ;
return NS_OK ;
}
2015-02-18 17:34:29 -08:00
class FetchEventRunnable : public WorkerRunnable
, public nsIHttpHeaderVisitor {
nsMainThreadPtrHandle < nsIInterceptedChannel > mInterceptedChannel ;
nsMainThreadPtrHandle < ServiceWorker > mServiceWorker ;
nsTArray < nsCString > mHeaderNames ;
nsTArray < nsCString > mHeaderValues ;
2015-03-06 05:04:49 -08:00
nsAutoPtr < ServiceWorkerClientInfo > mClientInfo ;
2015-02-18 17:34:29 -08:00
nsCString mSpec ;
nsCString mMethod ;
bool mIsReload ;
2015-03-17 08:47:02 -07:00
RequestMode mRequestMode ;
RequestCredentials mRequestCredentials ;
2015-03-25 13:43:34 -07:00
nsContentPolicyType mContentPolicyType ;
2015-02-18 17:34:29 -08:00
public :
FetchEventRunnable ( WorkerPrivate * aWorkerPrivate ,
nsMainThreadPtrHandle < nsIInterceptedChannel > & aChannel ,
nsMainThreadPtrHandle < ServiceWorker > & aServiceWorker ,
2015-03-23 10:36:44 -07:00
nsAutoPtr < ServiceWorkerClientInfo > & aClientInfo ,
bool aIsReload )
2015-02-18 17:34:29 -08:00
: WorkerRunnable ( aWorkerPrivate , WorkerThreadModifyBusyCount )
, mInterceptedChannel ( aChannel )
, mServiceWorker ( aServiceWorker )
2015-03-06 05:04:49 -08:00
, mClientInfo ( aClientInfo )
2015-03-23 10:36:44 -07:00
, mIsReload ( aIsReload )
2015-03-17 08:47:02 -07:00
, mRequestMode ( RequestMode : : No_cors )
// By default we set it to same-origin since normal HTTP fetches always
// send credentials to same-origin websites unless explicitly forbidden.
, mRequestCredentials ( RequestCredentials : : Same_origin )
2015-03-25 13:43:34 -07:00
, mContentPolicyType ( nsIContentPolicy : : TYPE_INVALID )
2015-02-18 17:34:29 -08:00
{
MOZ_ASSERT ( aWorkerPrivate ) ;
}
NS_DECL_ISUPPORTS_INHERITED
NS_IMETHOD
2015-03-21 09:28:04 -07:00
VisitHeader ( const nsACString & aHeader , const nsACString & aValue ) override
2015-02-18 17:34:29 -08:00
{
mHeaderNames . AppendElement ( aHeader ) ;
mHeaderValues . AppendElement ( aValue ) ;
return NS_OK ;
}
nsresult
Init ( )
{
2015-03-17 08:47:02 -07:00
AssertIsOnMainThread ( ) ;
2015-02-18 17:34:29 -08:00
nsCOMPtr < nsIChannel > channel ;
nsresult rv = mInterceptedChannel - > GetChannel ( getter_AddRefs ( channel ) ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
nsCOMPtr < nsIURI > uri ;
rv = channel - > GetURI ( getter_AddRefs ( uri ) ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
rv = uri - > GetSpec ( mSpec ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
nsCOMPtr < nsIHttpChannel > httpChannel = do_QueryInterface ( channel ) ;
NS_ENSURE_TRUE ( httpChannel , NS_ERROR_NOT_AVAILABLE ) ;
rv = httpChannel - > GetRequestMethod ( mMethod ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
uint32_t loadFlags ;
rv = channel - > GetLoadFlags ( & loadFlags ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
2015-03-17 08:47:02 -07:00
nsCOMPtr < nsIHttpChannelInternal > internalChannel = do_QueryInterface ( httpChannel ) ;
NS_ENSURE_TRUE ( internalChannel , NS_ERROR_NOT_AVAILABLE ) ;
uint32_t mode ;
internalChannel - > GetCorsMode ( & mode ) ;
switch ( mode ) {
case nsIHttpChannelInternal : : CORS_MODE_SAME_ORIGIN :
mRequestMode = RequestMode : : Same_origin ;
break ;
case nsIHttpChannelInternal : : CORS_MODE_NO_CORS :
mRequestMode = RequestMode : : No_cors ;
break ;
case nsIHttpChannelInternal : : CORS_MODE_CORS :
case nsIHttpChannelInternal : : CORS_MODE_CORS_WITH_FORCED_PREFLIGHT :
mRequestMode = RequestMode : : Cors ;
break ;
default :
MOZ_CRASH ( " Unexpected CORS mode " ) ;
}
if ( loadFlags & nsIRequest : : LOAD_ANONYMOUS ) {
mRequestCredentials = RequestCredentials : : Omit ;
} else {
bool includeCrossOrigin ;
internalChannel - > GetCorsIncludeCredentials ( & includeCrossOrigin ) ;
if ( includeCrossOrigin ) {
mRequestCredentials = RequestCredentials : : Include ;
}
}
2015-02-18 17:34:29 -08:00
rv = httpChannel - > VisitRequestHeaders ( this ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
2015-03-25 13:43:34 -07:00
nsCOMPtr < nsILoadInfo > loadInfo ;
rv = channel - > GetLoadInfo ( getter_AddRefs ( loadInfo ) ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
mContentPolicyType = loadInfo - > GetContentPolicyType ( ) ;
2015-02-18 17:34:29 -08:00
return NS_OK ;
}
bool
2015-03-21 09:28:04 -07:00
WorkerRun ( JSContext * aCx , WorkerPrivate * aWorkerPrivate ) override
2015-02-18 17:34:29 -08:00
{
MOZ_ASSERT ( aWorkerPrivate ) ;
return DispatchFetchEvent ( aCx , aWorkerPrivate ) ;
}
private :
~ FetchEventRunnable ( ) { }
2015-03-21 09:28:04 -07:00
class ResumeRequest final : public nsRunnable {
2015-02-18 17:34:29 -08:00
nsMainThreadPtrHandle < nsIInterceptedChannel > mChannel ;
public :
explicit ResumeRequest ( nsMainThreadPtrHandle < nsIInterceptedChannel > & aChannel )
: mChannel ( aChannel )
{
}
NS_IMETHOD Run ( )
{
AssertIsOnMainThread ( ) ;
nsresult rv = mChannel - > ResetInterception ( ) ;
NS_WARN_IF_FALSE ( NS_SUCCEEDED ( rv ) , " Failed to resume intercepted network request " ) ;
return rv ;
}
} ;
bool
DispatchFetchEvent ( JSContext * aCx , WorkerPrivate * aWorkerPrivate )
{
MOZ_ASSERT ( aCx ) ;
MOZ_ASSERT ( aWorkerPrivate ) ;
MOZ_ASSERT ( aWorkerPrivate - > IsServiceWorker ( ) ) ;
GlobalObject globalObj ( aCx , aWorkerPrivate - > GlobalScope ( ) - > GetWrapper ( ) ) ;
2015-02-26 12:40:00 -08:00
NS_ConvertUTF8toUTF16 local ( mSpec ) ;
2015-02-18 17:34:29 -08:00
RequestOrUSVString requestInfo ;
2015-02-26 12:40:00 -08:00
requestInfo . SetAsUSVString ( ) . Rebind ( local . Data ( ) , local . Length ( ) ) ;
2015-02-18 17:34:29 -08:00
RootedDictionary < RequestInit > reqInit ( aCx ) ;
reqInit . mMethod . Construct ( mMethod ) ;
nsRefPtr < InternalHeaders > internalHeaders = new InternalHeaders ( HeadersGuardEnum : : Request ) ;
MOZ_ASSERT ( mHeaderNames . Length ( ) = = mHeaderValues . Length ( ) ) ;
for ( uint32_t i = 0 ; i < mHeaderNames . Length ( ) ; i + + ) {
ErrorResult rv ;
internalHeaders - > Set ( mHeaderNames [ i ] , mHeaderValues [ i ] , rv ) ;
if ( NS_WARN_IF ( rv . Failed ( ) ) ) {
return false ;
}
}
nsRefPtr < Headers > headers = new Headers ( globalObj . GetAsSupports ( ) , internalHeaders ) ;
reqInit . mHeaders . Construct ( ) ;
reqInit . mHeaders . Value ( ) . SetAsHeaders ( ) = headers ;
//TODO(jdm): set request body
2015-03-17 08:47:02 -07:00
reqInit . mMode . Construct ( mRequestMode ) ;
reqInit . mCredentials . Construct ( mRequestCredentials ) ;
2015-02-18 17:34:29 -08:00
ErrorResult rv ;
nsRefPtr < Request > request = Request : : Constructor ( globalObj , requestInfo , reqInit , rv ) ;
if ( NS_WARN_IF ( rv . Failed ( ) ) ) {
return false ;
}
2015-03-27 03:47:00 -07:00
// For Telemetry, note that this Request object was created by a Fetch event.
nsRefPtr < InternalRequest > internalReq = request - > GetInternalRequest ( ) ;
MOZ_ASSERT ( internalReq ) ;
internalReq - > SetCreatedByFetchEvent ( ) ;
2015-02-18 17:34:29 -08:00
2015-03-25 13:43:34 -07:00
request - > SetContentPolicyType ( mContentPolicyType ) ;
2015-02-18 17:34:29 -08:00
RootedDictionary < FetchEventInit > init ( aCx ) ;
init . mRequest . Construct ( ) ;
init . mRequest . Value ( ) = request ;
init . mBubbles = false ;
init . mCancelable = true ;
init . mIsReload . Construct ( mIsReload ) ;
nsRefPtr < FetchEvent > event =
FetchEvent : : Constructor ( globalObj , NS_LITERAL_STRING ( " fetch " ) , init , rv ) ;
if ( NS_WARN_IF ( rv . Failed ( ) ) ) {
return false ;
}
2015-03-06 05:04:49 -08:00
event - > PostInit ( mInterceptedChannel , mServiceWorker , mClientInfo ) ;
2015-02-18 17:34:29 -08:00
event - > SetTrusted ( true ) ;
nsRefPtr < EventTarget > target = do_QueryObject ( aWorkerPrivate - > GlobalScope ( ) ) ;
nsresult rv2 = target - > DispatchDOMEvent ( nullptr , event , nullptr , nullptr ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv2 ) ) | | ! event - > WaitToRespond ( ) ) {
nsCOMPtr < nsIRunnable > runnable = new ResumeRequest ( mInterceptedChannel ) ;
MOZ_ALWAYS_TRUE ( NS_SUCCEEDED ( NS_DispatchToMainThread ( runnable ) ) ) ;
}
return true ;
}
} ;
NS_IMPL_ISUPPORTS_INHERITED ( FetchEventRunnable , WorkerRunnable , nsIHttpHeaderVisitor )
NS_IMETHODIMP
2015-03-23 10:36:44 -07:00
ServiceWorkerManager : : DispatchFetchEvent ( nsIDocument * aDoc , nsIInterceptedChannel * aChannel ,
bool aIsReload )
2015-02-18 17:34:29 -08:00
{
MOZ_ASSERT ( aChannel ) ;
nsCOMPtr < nsISupports > serviceWorker ;
bool isNavigation = false ;
nsresult rv = aChannel - > GetIsNavigation ( & isNavigation ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
2015-03-06 05:04:49 -08:00
nsAutoPtr < ServiceWorkerClientInfo > clientInfo ;
2015-02-18 17:34:29 -08:00
if ( ! isNavigation ) {
MOZ_ASSERT ( aDoc ) ;
2015-02-26 12:14:51 -08:00
rv = GetDocumentController ( aDoc - > GetInnerWindow ( ) , getter_AddRefs ( serviceWorker ) ) ;
2015-03-06 05:04:49 -08:00
clientInfo = new ServiceWorkerClientInfo ( aDoc ) ;
2015-02-18 17:34:29 -08:00
} else {
nsCOMPtr < nsIChannel > internalChannel ;
rv = aChannel - > GetChannel ( getter_AddRefs ( internalChannel ) ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
nsCOMPtr < nsIURI > uri ;
rv = internalChannel - > GetURI ( getter_AddRefs ( uri ) ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
nsRefPtr < ServiceWorkerRegistrationInfo > registration =
GetServiceWorkerRegistrationInfo ( uri ) ;
2015-03-28 18:05:11 -07:00
if ( ! registration ) {
NS_WARNING ( " No registration found when dispatching the fetch event " ) ;
return NS_ERROR_FAILURE ;
}
2015-02-18 17:34:29 -08:00
// This should only happen if IsAvailableForURI() returned true.
MOZ_ASSERT ( registration - > mActiveWorker ) ;
nsRefPtr < ServiceWorker > sw ;
rv = CreateServiceWorker ( registration - > mPrincipal ,
2015-02-19 08:40:21 -08:00
registration - > mActiveWorker ,
2015-02-18 17:34:29 -08:00
getter_AddRefs ( sw ) ) ;
serviceWorker = sw . forget ( ) ;
}
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
nsMainThreadPtrHandle < nsIInterceptedChannel > handle (
new nsMainThreadPtrHolder < nsIInterceptedChannel > ( aChannel , false ) ) ;
nsRefPtr < ServiceWorker > sw = static_cast < ServiceWorker * > ( serviceWorker . get ( ) ) ;
nsMainThreadPtrHandle < ServiceWorker > serviceWorkerHandle (
new nsMainThreadPtrHolder < ServiceWorker > ( sw ) ) ;
2015-03-06 05:04:49 -08:00
// clientInfo is null if we don't have a controlled document
2015-02-18 17:34:29 -08:00
nsRefPtr < FetchEventRunnable > event =
2015-03-23 10:36:44 -07:00
new FetchEventRunnable ( sw - > GetWorkerPrivate ( ) , handle , serviceWorkerHandle , clientInfo , aIsReload ) ;
2015-02-18 17:34:29 -08:00
rv = event - > Init ( ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
AutoJSAPI api ;
api . Init ( ) ;
if ( NS_WARN_IF ( ! event - > Dispatch ( api . cx ( ) ) ) ) {
return NS_ERROR_FAILURE ;
}
return NS_OK ;
}
NS_IMETHODIMP
ServiceWorkerManager : : IsAvailableForURI ( nsIURI * aURI , bool * aIsAvailable )
{
MOZ_ASSERT ( aURI ) ;
MOZ_ASSERT ( aIsAvailable ) ;
nsRefPtr < ServiceWorkerRegistrationInfo > registration =
GetServiceWorkerRegistrationInfo ( aURI ) ;
* aIsAvailable = registration & & registration - > mActiveWorker ;
return NS_OK ;
}
NS_IMETHODIMP
ServiceWorkerManager : : IsControlled ( nsIDocument * aDoc , bool * aIsControlled )
{
MOZ_ASSERT ( aDoc ) ;
MOZ_ASSERT ( aIsControlled ) ;
nsRefPtr < ServiceWorkerRegistrationInfo > registration ;
nsresult rv = GetDocumentRegistration ( aDoc , getter_AddRefs ( registration ) ) ;
2015-03-18 06:16:00 -07:00
if ( NS_WARN_IF ( NS_FAILED ( rv ) & & rv ! = NS_ERROR_NOT_AVAILABLE ) ) {
// It's OK to ignore the case where we don't have a registration.
return rv ;
}
2015-02-18 17:34:29 -08:00
* aIsControlled = ! ! registration ;
return NS_OK ;
}
nsresult
ServiceWorkerManager : : GetDocumentRegistration ( nsIDocument * aDoc ,
ServiceWorkerRegistrationInfo * * aRegistrationInfo )
{
nsRefPtr < ServiceWorkerRegistrationInfo > registration ;
if ( ! mControlledDocuments . Get ( aDoc , getter_AddRefs ( registration ) ) ) {
2015-03-18 06:16:00 -07:00
return NS_ERROR_NOT_AVAILABLE ;
2015-02-18 17:34:29 -08:00
}
// If the document is controlled, the current worker MUST be non-null.
if ( ! registration - > mActiveWorker ) {
return NS_ERROR_NOT_AVAILABLE ;
}
registration . forget ( aRegistrationInfo ) ;
return NS_OK ;
}
2014-07-23 14:05:08 -07:00
/*
* The . controller is for the registration associated with the document when
* the document was loaded .
*/
NS_IMETHODIMP
ServiceWorkerManager : : GetDocumentController ( nsIDOMWindow * aWindow , nsISupports * * aServiceWorker )
{
nsCOMPtr < nsPIDOMWindow > window = do_QueryInterface ( aWindow ) ;
MOZ_ASSERT ( window ) ;
if ( ! window | | ! window - > GetExtantDoc ( ) ) {
return NS_ERROR_FAILURE ;
}
nsCOMPtr < nsIDocument > doc = window - > GetExtantDoc ( ) ;
2014-08-19 06:56:00 -07:00
nsRefPtr < ServiceWorkerRegistrationInfo > registration ;
2015-02-18 17:34:29 -08:00
nsresult rv = GetDocumentRegistration ( doc , getter_AddRefs ( registration ) ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
2015-02-18 13:00:33 -08:00
}
2014-07-23 14:05:08 -07:00
nsRefPtr < ServiceWorker > serviceWorker ;
2015-02-18 17:34:29 -08:00
rv = CreateServiceWorkerForWindow ( window ,
2015-02-19 08:40:21 -08:00
registration - > mActiveWorker ,
2015-02-18 17:34:29 -08:00
getter_AddRefs ( serviceWorker ) ) ;
2014-07-23 14:05:08 -07:00
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
serviceWorker . forget ( aServiceWorker ) ;
return NS_OK ;
}
NS_IMETHODIMP
ServiceWorkerManager : : GetInstalling ( nsIDOMWindow * aWindow ,
2014-08-24 22:35:03 -07:00
const nsAString & aScope ,
2014-07-23 14:05:08 -07:00
nsISupports * * aServiceWorker )
{
2014-08-24 22:35:03 -07:00
return GetServiceWorkerForScope ( aWindow , aScope ,
WhichServiceWorker : : INSTALLING_WORKER ,
aServiceWorker ) ;
2014-07-23 14:05:08 -07:00
}
NS_IMETHODIMP
ServiceWorkerManager : : GetWaiting ( nsIDOMWindow * aWindow ,
2014-08-24 22:35:03 -07:00
const nsAString & aScope ,
2014-07-23 14:05:08 -07:00
nsISupports * * aServiceWorker )
{
2014-08-24 22:35:03 -07:00
return GetServiceWorkerForScope ( aWindow , aScope ,
WhichServiceWorker : : WAITING_WORKER ,
aServiceWorker ) ;
2014-07-23 14:05:08 -07:00
}
NS_IMETHODIMP
2014-08-24 22:35:03 -07:00
ServiceWorkerManager : : GetActive ( nsIDOMWindow * aWindow ,
const nsAString & aScope ,
nsISupports * * aServiceWorker )
2014-07-23 14:05:08 -07:00
{
2014-08-24 22:35:03 -07:00
return GetServiceWorkerForScope ( aWindow , aScope ,
WhichServiceWorker : : ACTIVE_WORKER ,
aServiceWorker ) ;
2014-07-23 14:05:08 -07:00
}
2014-07-02 17:48:50 -07:00
NS_IMETHODIMP
2015-02-17 04:36:09 -08:00
ServiceWorkerManager : : CreateServiceWorker ( nsIPrincipal * aPrincipal ,
2015-02-19 08:40:21 -08:00
ServiceWorkerInfo * aInfo ,
2014-07-02 17:48:50 -07:00
ServiceWorker * * aServiceWorker )
{
AssertIsOnMainThread ( ) ;
2015-02-17 04:36:09 -08:00
MOZ_ASSERT ( aPrincipal ) ;
2014-07-02 17:48:50 -07:00
2015-02-12 01:50:05 -08:00
WorkerLoadInfo info ;
2015-02-19 08:40:21 -08:00
nsresult rv = NS_NewURI ( getter_AddRefs ( info . mBaseURI ) , aInfo - > ScriptSpec ( ) ,
nullptr , nullptr ) ;
2014-07-02 17:48:50 -07:00
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
info . mResolvedScriptURI = info . mBaseURI ;
2015-03-19 11:41:42 -07:00
info . mServiceWorkerCacheName = aInfo - > CacheName ( ) ;
2014-07-02 17:48:50 -07:00
rv = info . mBaseURI - > GetHost ( info . mDomain ) ;
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
2015-02-17 04:36:09 -08:00
info . mPrincipal = aPrincipal ;
2014-12-12 08:06:00 -08:00
// NOTE: this defaults the SW load context to:
// - private browsing = false
// - content = true
// - use remote tabs = false
// Alternatively we could persist the original load group values and use
// them here.
2015-02-21 07:09:17 -08:00
WorkerPrivate : : OverrideLoadInfoLoadGroup ( info ) ;
2014-07-02 17:48:50 -07:00
2015-02-10 00:58:00 -08:00
RuntimeService * rs = RuntimeService : : GetOrCreateService ( ) ;
2014-07-02 17:48:50 -07:00
if ( ! rs ) {
return NS_ERROR_FAILURE ;
}
2014-12-19 02:00:29 -08:00
AutoJSAPI jsapi ;
jsapi . Init ( ) ;
2015-02-19 08:40:21 -08:00
nsRefPtr < SharedWorker > sharedWorker ;
rv = rs - > CreateSharedWorkerForServiceWorkerFromLoadInfo ( jsapi . cx ( ) , & info ,
NS_ConvertUTF8toUTF16 ( aInfo - > ScriptSpec ( ) ) ,
aInfo - > Scope ( ) ,
getter_AddRefs ( sharedWorker ) ) ;
2014-07-02 17:48:50 -07:00
if ( NS_WARN_IF ( NS_FAILED ( rv ) ) ) {
return rv ;
}
2015-02-19 08:40:21 -08:00
nsRefPtr < ServiceWorker > serviceWorker =
new ServiceWorker ( nullptr , aInfo , sharedWorker ) ;
2014-07-02 17:48:50 -07:00
serviceWorker . forget ( aServiceWorker ) ;
return NS_OK ;
}
2014-07-23 14:05:08 -07:00
void
2014-08-19 06:56:00 -07:00
ServiceWorkerManager : : InvalidateServiceWorkerRegistrationWorker ( ServiceWorkerRegistrationInfo * aRegistration ,
WhichServiceWorker aWhichOnes )
2014-07-23 14:05:08 -07:00
{
AssertIsOnMainThread ( ) ;
2015-02-08 20:33:39 -08:00
nsTObserverArray < ServiceWorkerRegistration * > : : ForwardIterator it ( mServiceWorkerRegistrations ) ;
while ( it . HasMore ( ) ) {
nsRefPtr < ServiceWorkerRegistration > target = it . GetNext ( ) ;
nsAutoString regScope ;
target - > GetScope ( regScope ) ;
MOZ_ASSERT ( ! regScope . IsEmpty ( ) ) ;
2014-07-23 14:05:08 -07:00
2015-02-08 20:33:39 -08:00
NS_ConvertUTF16toUTF8 utf8Scope ( regScope ) ;
2014-07-23 14:05:08 -07:00
2015-02-08 20:33:39 -08:00
if ( utf8Scope . Equals ( aRegistration - > mScope ) ) {
target - > InvalidateWorkerReference ( aWhichOnes ) ;
2014-07-23 14:05:08 -07:00
}
}
}
2014-10-06 08:45:14 -07:00
NS_IMETHODIMP
ServiceWorkerManager : : Update ( const nsAString & aScope )
{
NS_ConvertUTF16toUTF8 scope ( aScope ) ;
nsRefPtr < ServiceWorkerRegistrationInfo > registration ;
2015-02-08 20:33:39 -08:00
mServiceWorkerRegistrationInfos . Get ( scope , getter_AddRefs ( registration ) ) ;
2014-10-06 08:45:14 -07:00
if ( NS_WARN_IF ( ! registration ) ) {
return NS_OK ;
}
2014-12-19 02:00:29 -08:00
// FIXME(nsm): Bug 1089889 Refactor this into SoftUpdate.
2014-10-06 08:45:14 -07:00
if ( registration - > mPendingUninstall ) {
return NS_OK ;
}
if ( registration - > mInstallingWorker ) {
return NS_OK ;
}
2015-02-08 20:33:39 -08:00
ServiceWorkerJobQueue * queue = GetOrCreateJobQueue ( scope ) ;
2014-12-19 02:00:29 -08:00
MOZ_ASSERT ( queue ) ;
nsRefPtr < ServiceWorkerUpdateFinishCallback > cb =
new ServiceWorkerUpdateFinishCallback ( ) ;
2015-01-22 14:10:38 -08:00
nsRefPtr < ServiceWorkerRegisterJob > job =
new ServiceWorkerRegisterJob ( queue , registration , cb ) ;
2014-12-19 02:00:29 -08:00
queue - > Append ( job ) ;
2014-10-06 08:45:14 -07:00
return NS_OK ;
}
2014-10-27 04:03:00 -07:00
namespace {
class MOZ_STACK_CLASS FilterRegistrationData
{
public :
2015-03-06 05:04:49 -08:00
FilterRegistrationData ( nsTArray < ServiceWorkerClientInfo > & aDocuments ,
ServiceWorkerRegistrationInfo * aRegistration )
2014-10-27 04:03:00 -07:00
: mDocuments ( aDocuments ) ,
mRegistration ( aRegistration )
{
}
2015-03-06 05:04:49 -08:00
nsTArray < ServiceWorkerClientInfo > & mDocuments ;
2014-10-27 04:03:00 -07:00
nsRefPtr < ServiceWorkerRegistrationInfo > mRegistration ;
} ;
static PLDHashOperator
EnumControlledDocuments ( nsISupports * aKey ,
ServiceWorkerRegistrationInfo * aRegistration ,
void * aData )
{
FilterRegistrationData * data = static_cast < FilterRegistrationData * > ( aData ) ;
if ( data - > mRegistration ! = aRegistration ) {
return PL_DHASH_NEXT ;
}
2015-03-06 05:04:49 -08:00
2014-10-27 04:03:00 -07:00
nsCOMPtr < nsIDocument > document = do_QueryInterface ( aKey ) ;
2015-03-06 05:04:49 -08:00
if ( ! document | | ! document - > GetWindow ( ) ) {
2014-10-27 04:03:00 -07:00
return PL_DHASH_NEXT ;
}
2015-03-06 05:04:49 -08:00
ServiceWorkerClientInfo clientInfo ( document ) ;
data - > mDocuments . AppendElement ( clientInfo ) ;
2014-10-27 04:03:00 -07:00
return PL_DHASH_NEXT ;
}
2014-10-28 13:11:31 -07:00
static PLDHashOperator
FireControllerChangeOnMatchingDocument ( nsISupports * aKey ,
ServiceWorkerRegistrationInfo * aValue ,
void * aData )
{
AssertIsOnMainThread ( ) ;
ServiceWorkerRegistrationInfo * contextReg = static_cast < ServiceWorkerRegistrationInfo * > ( aData ) ;
if ( aValue ! = contextReg ) {
return PL_DHASH_NEXT ;
}
nsCOMPtr < nsIDocument > doc = do_QueryInterface ( aKey ) ;
if ( NS_WARN_IF ( ! doc ) ) {
return PL_DHASH_NEXT ;
}
nsCOMPtr < nsPIDOMWindow > w = doc - > GetWindow ( ) ;
MOZ_ASSERT ( w ) ;
auto * window = static_cast < nsGlobalWindow * > ( w . get ( ) ) ;
if ( NS_WARN_IF ( ! window ) ) {
NS_WARNING ( " No valid nsGlobalWindow " ) ;
return PL_DHASH_NEXT ;
}
ErrorResult result ;
dom : : Navigator * navigator = window - > GetNavigator ( result ) ;
if ( NS_WARN_IF ( result . Failed ( ) ) ) {
return PL_DHASH_NEXT ;
}
nsRefPtr < ServiceWorkerContainer > container = navigator - > ServiceWorker ( ) ;
result = container - > DispatchTrustedEvent ( NS_LITERAL_STRING ( " controllerchange " ) ) ;
if ( result . Failed ( ) ) {
NS_WARNING ( " Failed to dispatch controllerchange event " ) ;
}
return PL_DHASH_NEXT ;
}
2014-10-27 04:03:00 -07:00
} // anonymous namespace
void
2015-02-20 07:16:17 -08:00
ServiceWorkerManager : : GetAllClients ( const nsCString & aScope ,
2015-03-06 05:04:49 -08:00
nsTArray < ServiceWorkerClientInfo > & aControlledDocuments )
2014-10-27 04:03:00 -07:00
{
2015-02-08 20:33:39 -08:00
nsRefPtr < ServiceWorkerRegistrationInfo > registration = GetRegistration ( aScope ) ;
2014-11-04 04:04:00 -08:00
if ( ! registration ) {
// The registration was removed, leave the array empty.
return ;
}
2014-10-27 04:03:00 -07:00
FilterRegistrationData data ( aControlledDocuments , registration ) ;
2015-02-08 20:33:39 -08:00
mControlledDocuments . EnumerateRead ( EnumControlledDocuments , & data ) ;
2014-10-27 04:03:00 -07:00
}
2014-12-19 02:00:29 -08:00
void
ServiceWorkerManager : : FireControllerChange ( ServiceWorkerRegistrationInfo * aRegistration )
{
2015-02-08 20:33:39 -08:00
mControlledDocuments . EnumerateRead ( FireControllerChangeOnMatchingDocument , aRegistration ) ;
2014-12-19 02:00:29 -08:00
}
2015-02-08 20:33:39 -08:00
ServiceWorkerRegistrationInfo *
2015-02-11 03:53:00 -08:00
ServiceWorkerManager : : CreateNewRegistration ( const nsCString & aScope ,
nsIPrincipal * aPrincipal )
2015-02-08 20:33:39 -08:00
{
# ifdef DEBUG
AssertIsOnMainThread ( ) ;
nsCOMPtr < nsIURI > scopeURI ;
nsresult rv = NS_NewURI ( getter_AddRefs ( scopeURI ) , aScope , nullptr , nullptr ) ;
MOZ_ASSERT ( NS_SUCCEEDED ( rv ) ) ;
# endif
2015-02-11 03:53:00 -08:00
ServiceWorkerRegistrationInfo * registration = new ServiceWorkerRegistrationInfo ( aScope , aPrincipal ) ;
2015-02-08 20:33:39 -08:00
// From now on ownership of registration is with
// mServiceWorkerRegistrationInfos.
mServiceWorkerRegistrationInfos . Put ( aScope , registration ) ;
AddScope ( mOrderedScopes , aScope ) ;
return registration ;
}
2015-02-10 14:33:23 -08:00
void
ServiceWorkerManager : : MaybeRemoveRegistration ( ServiceWorkerRegistrationInfo * aRegistration )
{
MOZ_ASSERT ( aRegistration ) ;
nsRefPtr < ServiceWorkerInfo > newest = aRegistration - > Newest ( ) ;
if ( ! newest ) {
RemoveRegistration ( aRegistration ) ;
}
}
2015-02-11 10:51:32 -08:00
void
ServiceWorkerManager : : RemoveRegistration ( ServiceWorkerRegistrationInfo * aRegistration )
{
MOZ_ASSERT ( aRegistration ) ;
MOZ_ASSERT ( ! aRegistration - > IsControllingDocuments ( ) ) ;
MOZ_ASSERT ( mServiceWorkerRegistrationInfos . Contains ( aRegistration - > mScope ) ) ;
ServiceWorkerManager : : RemoveScope ( mOrderedScopes , aRegistration - > mScope ) ;
// Hold a ref since the hashtable may be the last ref.
nsRefPtr < ServiceWorkerRegistrationInfo > reg ;
mServiceWorkerRegistrationInfos . Remove ( aRegistration - > mScope ,
getter_AddRefs ( reg ) ) ;
MOZ_ASSERT ( reg ) ;
// All callers should be either from a job in which case the actor is
// available, or from MaybeStopControlling(), in which case, this will only be
// called if a valid registration is found. If a valid registration exists,
// it means the actor is available since the original map of registrations is
// populated by it, and any new registrations wait until the actor is
// available before proceeding (See ServiceWorkerRegisterJob::Start).
MOZ_ASSERT ( mActor ) ;
PrincipalInfo principalInfo ;
if ( NS_WARN_IF ( NS_FAILED ( PrincipalToPrincipalInfo ( reg - > mPrincipal ,
& principalInfo ) ) ) ) {
//XXXnsm I can't think of any other reason a stored principal would fail to
//convert.
NS_WARNING ( " Unable to unregister serviceworker due to possible OOM " ) ;
return ;
}
mActor - > SendUnregisterServiceWorker ( principalInfo , NS_ConvertUTF8toUTF16 ( reg - > mScope ) ) ;
}
2015-02-19 08:40:21 -08:00
void
ServiceWorkerInfo : : AppendWorker ( ServiceWorker * aWorker )
{
MOZ_ASSERT ( aWorker ) ;
# ifdef DEBUG
nsAutoString workerURL ;
aWorker - > GetScriptURL ( workerURL ) ;
MOZ_ASSERT ( workerURL . Equals ( NS_ConvertUTF8toUTF16 ( mScriptSpec ) ) ) ;
# endif
MOZ_ASSERT ( ! mInstances . Contains ( aWorker ) ) ;
mInstances . AppendElement ( aWorker ) ;
aWorker - > SetState ( State ( ) ) ;
}
void
ServiceWorkerInfo : : RemoveWorker ( ServiceWorker * aWorker )
{
MOZ_ASSERT ( aWorker ) ;
# ifdef DEBUG
nsAutoString workerURL ;
aWorker - > GetScriptURL ( workerURL ) ;
MOZ_ASSERT ( workerURL . Equals ( NS_ConvertUTF8toUTF16 ( mScriptSpec ) ) ) ;
# endif
MOZ_ASSERT ( mInstances . Contains ( aWorker ) ) ;
mInstances . RemoveElement ( aWorker ) ;
}
void
ServiceWorkerInfo : : UpdateState ( ServiceWorkerState aState )
{
# ifdef DEBUG
// Any state can directly transition to redundant, but everything else is
// ordered.
if ( aState ! = ServiceWorkerState : : Redundant ) {
MOZ_ASSERT_IF ( mState = = ServiceWorkerState : : EndGuard_ , aState = = ServiceWorkerState : : Installing ) ;
MOZ_ASSERT_IF ( mState = = ServiceWorkerState : : Installing , aState = = ServiceWorkerState : : Installed ) ;
MOZ_ASSERT_IF ( mState = = ServiceWorkerState : : Installed , aState = = ServiceWorkerState : : Activating ) ;
MOZ_ASSERT_IF ( mState = = ServiceWorkerState : : Activating , aState = = ServiceWorkerState : : Activated ) ;
}
// Activated can only go to redundant.
MOZ_ASSERT_IF ( mState = = ServiceWorkerState : : Activated , aState = = ServiceWorkerState : : Redundant ) ;
# endif
mState = aState ;
for ( uint32_t i = 0 ; i < mInstances . Length ( ) ; + + i ) {
mInstances [ i ] - > QueueStateChangeEvent ( mState ) ;
}
}
2013-11-19 15:15:02 -08:00
END_WORKERS_NAMESPACE