mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 13:23:07 +00:00
963b86a51f
- Bug 1175138 P1 Make the dom.caches.testing.enabled pref available in workers. r=ehsan (fe47d0e0a) - Bug 1175138 P2 Expose dom.serviceWorkers.testing.enabled to workers. r=ehsan (efab5d0d3) - Bug 1160458 - Part 1: Use the CSP of the principal passed to CreateServiceWorker. r=nsm (4d0a1d742) - Bug 1172948 - Part 3: Add an explicit test case to ensure that authenticated origins that have a non-authenticated parent cannot register a service worker; r=nsm (78b3087c9) - Bug 803537 - XHR crashes in workers and in debug-builds when blob URLs are used from file scheme documents, r=khuey (aa86f77b7) - Bug 1163900 - crash in mozilla::net::nsHttpChannelCacheKey::GetData(unsigned int*, nsACString_internal&), r=jduell (adb5ddb01) - Bug 1147746 - Null check mInterceptListener in HttpChannelChild::ResetInterception; r=jdm (4c8c4e630) - Bug 1157283 - Recreate IPC redirected HTTP channels as necessary after intercepting the request in the child. r=mayhemer (3b144e45e) - Bug 1172884 P1 Properly decode body when intercepted response redirects. r=jduell (f49c37d4f) - Bug 1172884 P2 Add test for synthesizing a redirect to a compressed resource. r=ehsan (823d2122a) - Bug 1160458 - Part 2: Test. r=nsm (02b9fb3a0) - Bug 1169249 - Unregister service worker registration when uninstalling a service-worker-enabled application. Tests. r=baku (5509a19d6) - Bug 1177621 - SharedWorkers should not be shared between a private and a non-private documents, r=nsm (0836234c7) - Bug 1175138 P3 Expose the devtools SW testing flag on workers. r=ehsan (aade20454) - Bug 1173467 P3 Pass private browsing flag into CacheStorage factory methods. r=ehsan (c4d062a80) - Bug 1173467 P4 Add a test to validate Cache in private browsing window. r=ehsan (dde897e69) - Bug 1162487 - Enable the dom.caches.enabled pref in test_chrome_constructor.html; r=baku (2c73e2929) - Bug 1175138 P4 Enable dom.caches.testing.enabled in existing tests. r=ehsan (c453e03fb) - Bug 1175138 P5 Make CacheStorage reject on untrusted origins. r=ehsan (c85424d4e) - Bug 1175138 P6 Add a simple test to verify CacheStorage rejects in http origin. r=ehsan (5832eb99d) - Bug 1179567 - Make ServiceWorker keep its document and window alive; r=baku (1ae847884) - Bug 1179982 - Fix all compile errors in dom/workers on non-unified build. r=mrbkap (d30bece64)
140 lines
4.0 KiB
C++
140 lines
4.0 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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 "ServiceWorker.h"
|
|
|
|
#include "nsIDocument.h"
|
|
#include "nsPIDOMWindow.h"
|
|
#include "ServiceWorkerClient.h"
|
|
#include "ServiceWorkerManager.h"
|
|
#include "SharedWorker.h"
|
|
#include "WorkerPrivate.h"
|
|
|
|
#include "mozilla/Preferences.h"
|
|
#include "mozilla/dom/Promise.h"
|
|
#include "mozilla/dom/ServiceWorkerGlobalScopeBinding.h"
|
|
|
|
#ifdef XP_WIN
|
|
#undef PostMessage
|
|
#endif
|
|
|
|
using mozilla::ErrorResult;
|
|
using namespace mozilla::dom;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace workers {
|
|
|
|
bool
|
|
ServiceWorkerVisible(JSContext* aCx, JSObject* aObj)
|
|
{
|
|
if (NS_IsMainThread()) {
|
|
return Preferences::GetBool("dom.serviceWorkers.enabled", false);
|
|
}
|
|
|
|
ServiceWorkerGlobalScope* scope = nullptr;
|
|
nsresult rv = UnwrapObject<prototypes::id::ServiceWorkerGlobalScope_workers,
|
|
mozilla::dom::ServiceWorkerGlobalScopeBinding_workers::NativeType>(aObj, scope);
|
|
return NS_SUCCEEDED(rv);
|
|
}
|
|
|
|
ServiceWorker::ServiceWorker(nsPIDOMWindow* aWindow,
|
|
ServiceWorkerInfo* aInfo,
|
|
SharedWorker* aSharedWorker)
|
|
: DOMEventTargetHelper(aWindow),
|
|
mInfo(aInfo),
|
|
mSharedWorker(aSharedWorker)
|
|
{
|
|
AssertIsOnMainThread();
|
|
MOZ_ASSERT(aInfo);
|
|
MOZ_ASSERT(mSharedWorker);
|
|
|
|
if (aWindow) {
|
|
mDocument = aWindow->GetExtantDoc();
|
|
mWindow = aWindow->GetOuterWindow();
|
|
}
|
|
|
|
// This will update our state too.
|
|
mInfo->AppendWorker(this);
|
|
}
|
|
|
|
ServiceWorker::~ServiceWorker()
|
|
{
|
|
AssertIsOnMainThread();
|
|
mInfo->RemoveWorker(this);
|
|
}
|
|
|
|
NS_IMPL_ADDREF_INHERITED(ServiceWorker, DOMEventTargetHelper)
|
|
NS_IMPL_RELEASE_INHERITED(ServiceWorker, DOMEventTargetHelper)
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(ServiceWorker)
|
|
NS_INTERFACE_MAP_END_INHERITING(DOMEventTargetHelper)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_INHERITED(ServiceWorker, DOMEventTargetHelper,
|
|
mSharedWorker, mDocument, mWindow)
|
|
|
|
JSObject*
|
|
ServiceWorker::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
|
{
|
|
AssertIsOnMainThread();
|
|
|
|
return ServiceWorkerBinding::Wrap(aCx, this, aGivenProto);
|
|
}
|
|
|
|
void
|
|
ServiceWorker::GetScriptURL(nsString& aURL) const
|
|
{
|
|
CopyUTF8toUTF16(mInfo->ScriptSpec(), aURL);
|
|
}
|
|
|
|
void
|
|
ServiceWorker::PostMessage(JSContext* aCx, JS::Handle<JS::Value> aMessage,
|
|
const Optional<Sequence<JS::Value>>& aTransferable,
|
|
ErrorResult& aRv)
|
|
{
|
|
WorkerPrivate* workerPrivate = GetWorkerPrivate();
|
|
MOZ_ASSERT(workerPrivate);
|
|
|
|
if (State() == ServiceWorkerState::Redundant) {
|
|
aRv.Throw(NS_ERROR_DOM_INVALID_STATE_ERR);
|
|
return;
|
|
}
|
|
|
|
MOZ_ASSERT(mDocument && mWindow,
|
|
"Cannot call PostMessage on a ServiceWorker object that doesn't "
|
|
"have a window");
|
|
|
|
nsAutoPtr<ServiceWorkerClientInfo> clientInfo(
|
|
new ServiceWorkerClientInfo(mDocument, mWindow));
|
|
|
|
workerPrivate->PostMessageToServiceWorker(aCx, aMessage, aTransferable,
|
|
clientInfo, aRv);
|
|
}
|
|
|
|
WorkerPrivate*
|
|
ServiceWorker::GetWorkerPrivate() const
|
|
{
|
|
// At some point in the future, this may be optimized to terminate a worker
|
|
// that hasn't been used in a certain amount of time or when there is memory
|
|
// pressure or similar.
|
|
MOZ_ASSERT(mSharedWorker);
|
|
return mSharedWorker->GetWorkerPrivate();
|
|
}
|
|
|
|
void
|
|
ServiceWorker::QueueStateChangeEvent(ServiceWorkerState aState)
|
|
{
|
|
nsCOMPtr<nsIRunnable> r =
|
|
NS_NewRunnableMethodWithArg<ServiceWorkerState>(this,
|
|
&ServiceWorker::DispatchStateChange,
|
|
aState);
|
|
MOZ_ALWAYS_TRUE(NS_SUCCEEDED(NS_DispatchToMainThread(r)));
|
|
}
|
|
|
|
} // namespace workers
|
|
} // namespace dom
|
|
} // namespace mozilla
|