2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-06-05 18:04:23 +04: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 "SharedWorker.h"
|
|
|
|
|
|
|
|
#include "nsPIDOMWindow.h"
|
|
|
|
|
2014-03-18 08:48:21 +04:00
|
|
|
#include "mozilla/EventDispatcher.h"
|
2013-06-05 18:04:23 +04:00
|
|
|
#include "mozilla/Preferences.h"
|
|
|
|
#include "mozilla/dom/SharedWorkerBinding.h"
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsIClassInfoImpl.h"
|
2014-03-05 04:37:43 +04:00
|
|
|
#include "nsIDOMEvent.h"
|
2013-06-05 18:04:23 +04:00
|
|
|
|
|
|
|
#include "MessagePort.h"
|
|
|
|
#include "RuntimeService.h"
|
|
|
|
#include "WorkerPrivate.h"
|
|
|
|
|
|
|
|
using mozilla::dom::Optional;
|
|
|
|
using mozilla::dom::Sequence;
|
2014-03-18 08:48:19 +04:00
|
|
|
using namespace mozilla;
|
2013-06-05 18:04:23 +04:00
|
|
|
|
|
|
|
USING_WORKERS_NAMESPACE
|
|
|
|
|
|
|
|
SharedWorker::SharedWorker(nsPIDOMWindow* aWindow,
|
|
|
|
WorkerPrivate* aWorkerPrivate)
|
2014-04-01 10:13:50 +04:00
|
|
|
: DOMEventTargetHelper(aWindow), mWorkerPrivate(aWorkerPrivate),
|
2015-04-01 12:00:19 +03:00
|
|
|
mFrozen(false)
|
2013-06-05 18:04:23 +04:00
|
|
|
{
|
|
|
|
AssertIsOnMainThread();
|
|
|
|
MOZ_ASSERT(aWorkerPrivate);
|
|
|
|
|
|
|
|
mSerial = aWorkerPrivate->NextMessagePortSerial();
|
|
|
|
|
|
|
|
mMessagePort = new MessagePort(aWindow, this, mSerial);
|
|
|
|
}
|
|
|
|
|
|
|
|
SharedWorker::~SharedWorker()
|
|
|
|
{
|
|
|
|
AssertIsOnMainThread();
|
2014-06-27 21:24:56 +04:00
|
|
|
Close();
|
2013-06-05 18:04:23 +04:00
|
|
|
MOZ_ASSERT(!mWorkerPrivate);
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
already_AddRefed<SharedWorker>
|
|
|
|
SharedWorker::Constructor(const GlobalObject& aGlobal, JSContext* aCx,
|
|
|
|
const nsAString& aScriptURL,
|
|
|
|
const mozilla::dom::Optional<nsAString>& aName,
|
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
AssertIsOnMainThread();
|
|
|
|
|
|
|
|
RuntimeService* rts = RuntimeService::GetOrCreateService();
|
|
|
|
if (!rts) {
|
|
|
|
aRv = NS_ERROR_NOT_AVAILABLE;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2014-02-06 18:39:10 +04:00
|
|
|
nsCString name;
|
2013-06-05 18:04:23 +04:00
|
|
|
if (aName.WasPassed()) {
|
2014-02-06 18:39:10 +04:00
|
|
|
name = NS_ConvertUTF16toUTF8(aName.Value());
|
2013-06-05 18:04:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<SharedWorker> sharedWorker;
|
2013-11-05 18:16:24 +04:00
|
|
|
nsresult rv = rts->CreateSharedWorker(aGlobal, aScriptURL, name,
|
2013-06-05 18:04:23 +04:00
|
|
|
getter_AddRefs(sharedWorker));
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
aRv = rv;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return sharedWorker.forget();
|
|
|
|
}
|
|
|
|
|
2014-09-25 18:12:06 +04:00
|
|
|
already_AddRefed<mozilla::dom::workers::MessagePort>
|
2013-06-05 18:04:23 +04:00
|
|
|
SharedWorker::Port()
|
|
|
|
{
|
|
|
|
AssertIsOnMainThread();
|
|
|
|
|
|
|
|
nsRefPtr<MessagePort> messagePort = mMessagePort;
|
|
|
|
return messagePort.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-04-01 12:00:19 +03:00
|
|
|
SharedWorker::Freeze()
|
2013-06-05 18:04:23 +04:00
|
|
|
{
|
|
|
|
AssertIsOnMainThread();
|
2015-04-01 12:00:19 +03:00
|
|
|
MOZ_ASSERT(!IsFrozen());
|
2013-06-05 18:04:23 +04:00
|
|
|
|
2015-04-01 12:00:19 +03:00
|
|
|
mFrozen = true;
|
2013-06-05 18:04:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-04-01 12:00:19 +03:00
|
|
|
SharedWorker::Thaw()
|
2013-06-05 18:04:23 +04:00
|
|
|
{
|
|
|
|
AssertIsOnMainThread();
|
2015-04-01 12:00:19 +03:00
|
|
|
MOZ_ASSERT(IsFrozen());
|
2013-06-05 18:04:23 +04:00
|
|
|
|
2015-04-01 12:00:19 +03:00
|
|
|
mFrozen = false;
|
2013-06-05 18:04:23 +04:00
|
|
|
|
2015-04-01 12:00:19 +03:00
|
|
|
if (!mFrozenEvents.IsEmpty()) {
|
2013-06-05 18:04:23 +04:00
|
|
|
nsTArray<nsCOMPtr<nsIDOMEvent>> events;
|
2015-04-01 12:00:19 +03:00
|
|
|
mFrozenEvents.SwapElements(events);
|
2013-06-05 18:04:23 +04:00
|
|
|
|
|
|
|
for (uint32_t index = 0; index < events.Length(); index++) {
|
|
|
|
nsCOMPtr<nsIDOMEvent>& event = events[index];
|
|
|
|
MOZ_ASSERT(event);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMEventTarget> target;
|
|
|
|
if (NS_SUCCEEDED(event->GetTarget(getter_AddRefs(target)))) {
|
|
|
|
bool ignored;
|
|
|
|
if (NS_FAILED(target->DispatchEvent(event, &ignored))) {
|
|
|
|
NS_WARNING("Failed to dispatch event!");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
NS_WARNING("Failed to get target!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SharedWorker::QueueEvent(nsIDOMEvent* aEvent)
|
|
|
|
{
|
|
|
|
AssertIsOnMainThread();
|
|
|
|
MOZ_ASSERT(aEvent);
|
2015-04-01 12:00:19 +03:00
|
|
|
MOZ_ASSERT(IsFrozen());
|
2013-06-05 18:04:23 +04:00
|
|
|
|
2015-04-01 12:00:19 +03:00
|
|
|
mFrozenEvents.AppendElement(aEvent);
|
2013-06-05 18:04:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SharedWorker::Close()
|
|
|
|
{
|
|
|
|
AssertIsOnMainThread();
|
|
|
|
|
|
|
|
if (mMessagePort) {
|
|
|
|
mMessagePort->Close();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mWorkerPrivate) {
|
|
|
|
AutoSafeJSContext cx;
|
|
|
|
NoteDeadWorker(cx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-11-11 12:04:41 +04:00
|
|
|
SharedWorker::PostMessage(JSContext* aCx, JS::Handle<JS::Value> aMessage,
|
2013-06-05 18:04:23 +04:00
|
|
|
const Optional<Sequence<JS::Value>>& aTransferable,
|
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
AssertIsOnMainThread();
|
|
|
|
MOZ_ASSERT(mWorkerPrivate);
|
|
|
|
MOZ_ASSERT(mMessagePort);
|
|
|
|
|
|
|
|
mWorkerPrivate->PostMessageToMessagePort(aCx, mMessagePort->Serial(),
|
|
|
|
aMessage, aTransferable, aRv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SharedWorker::NoteDeadWorker(JSContext* aCx)
|
|
|
|
{
|
|
|
|
AssertIsOnMainThread();
|
|
|
|
MOZ_ASSERT(mWorkerPrivate);
|
|
|
|
|
|
|
|
mWorkerPrivate->UnregisterSharedWorker(aCx, this);
|
|
|
|
mWorkerPrivate = nullptr;
|
|
|
|
}
|
|
|
|
|
2014-04-01 10:13:50 +04:00
|
|
|
NS_IMPL_ADDREF_INHERITED(SharedWorker, DOMEventTargetHelper)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(SharedWorker, DOMEventTargetHelper)
|
2013-06-05 18:04:23 +04:00
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(SharedWorker)
|
2014-04-01 10:13:50 +04:00
|
|
|
NS_INTERFACE_MAP_END_INHERITING(DOMEventTargetHelper)
|
2013-06-05 18:04:23 +04:00
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(SharedWorker)
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(SharedWorker,
|
2014-04-01 10:13:50 +04:00
|
|
|
DOMEventTargetHelper)
|
2013-06-05 18:04:23 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mMessagePort)
|
2015-04-01 12:00:19 +03:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mFrozenEvents)
|
2013-06-05 18:04:23 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(SharedWorker,
|
2014-04-01 10:13:50 +04:00
|
|
|
DOMEventTargetHelper)
|
2013-06-05 18:04:23 +04:00
|
|
|
tmp->Close();
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mMessagePort)
|
2015-04-01 12:00:19 +03:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mFrozenEvents)
|
2013-06-05 18:04:23 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
|
|
|
JSObject*
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
SharedWorker::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
2013-06-05 18:04:23 +04:00
|
|
|
{
|
|
|
|
AssertIsOnMainThread();
|
|
|
|
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
return SharedWorkerBinding::Wrap(aCx, this, aGivenProto);
|
2013-06-05 18:04:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2014-03-18 08:48:19 +04:00
|
|
|
SharedWorker::PreHandleEvent(EventChainPreVisitor& aVisitor)
|
2013-06-05 18:04:23 +04:00
|
|
|
{
|
|
|
|
AssertIsOnMainThread();
|
|
|
|
|
|
|
|
nsIDOMEvent*& event = aVisitor.mDOMEvent;
|
|
|
|
|
2015-04-01 12:00:19 +03:00
|
|
|
if (IsFrozen() && event) {
|
2013-06-05 18:04:23 +04:00
|
|
|
QueueEvent(event);
|
|
|
|
|
|
|
|
aVisitor.mCanHandle = false;
|
|
|
|
aVisitor.mParentTarget = nullptr;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-04-01 10:13:50 +04:00
|
|
|
return DOMEventTargetHelper::PreHandleEvent(aVisitor);
|
2013-06-05 18:04:23 +04:00
|
|
|
}
|