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: */
|
2012-05-21 15:12:37 +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/. */
|
2008-01-30 04:31:29 +03:00
|
|
|
|
2014-02-27 14:51:14 +04:00
|
|
|
#include "mozilla/dom/MessageEvent.h"
|
2019-01-02 16:27:05 +03:00
|
|
|
#include "mozilla/dom/BrowsingContext.h"
|
2013-11-05 18:16:26 +04:00
|
|
|
#include "mozilla/dom/MessageEventBinding.h"
|
2013-09-11 18:10:01 +04:00
|
|
|
#include "mozilla/dom/MessagePort.h"
|
|
|
|
#include "mozilla/dom/MessagePortBinding.h"
|
2018-01-27 00:08:59 +03:00
|
|
|
#include "mozilla/dom/ServiceWorker.h"
|
2013-08-17 00:10:17 +04:00
|
|
|
|
2013-09-10 19:29:43 +04:00
|
|
|
#include "mozilla/HoldDropJSObjects.h"
|
2011-05-23 22:53:31 +04:00
|
|
|
#include "jsapi.h"
|
2008-01-30 04:31:29 +03:00
|
|
|
|
2020-11-04 11:54:36 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2013-05-02 13:12:45 +04:00
|
|
|
|
2020-03-26 13:49:06 +03:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_MULTI_ZONE_JSHOLDER_CLASS(MessageEvent)
|
2013-08-02 05:29:05 +04:00
|
|
|
|
2014-03-05 04:37:43 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(MessageEvent, Event)
|
2015-01-14 10:59:06 +03:00
|
|
|
tmp->mData.setUndefined();
|
2013-09-11 18:10:01 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mWindowSource)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mPortSource)
|
2017-03-10 04:50:13 +03:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mServiceWorkerSource)
|
2013-09-11 18:10:01 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mPorts)
|
2008-01-30 04:31:29 +03:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
2014-03-05 04:37:43 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(MessageEvent, Event)
|
2013-09-11 18:10:01 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mWindowSource)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mPortSource)
|
2017-03-10 04:50:13 +03:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mServiceWorkerSource)
|
2013-09-11 18:10:01 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mPorts)
|
2008-01-30 04:31:29 +03:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
2014-03-05 04:37:43 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN_INHERITED(MessageEvent, Event)
|
2016-02-22 21:11:02 +03:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_JS_MEMBER_CALLBACK(mData)
|
2011-05-23 22:53:31 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_END
|
|
|
|
|
2017-08-30 02:02:48 +03:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(MessageEvent)
|
2014-03-05 04:37:43 +04:00
|
|
|
NS_INTERFACE_MAP_END_INHERITING(Event)
|
2008-01-30 04:31:29 +03:00
|
|
|
|
2014-03-05 04:37:43 +04:00
|
|
|
NS_IMPL_ADDREF_INHERITED(MessageEvent, Event)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(MessageEvent, Event)
|
2008-01-30 04:31:29 +03:00
|
|
|
|
2014-02-27 14:51:14 +04:00
|
|
|
MessageEvent::MessageEvent(EventTarget* aOwner, nsPresContext* aPresContext,
|
|
|
|
WidgetEvent* aEvent)
|
2014-03-05 04:37:43 +04:00
|
|
|
: Event(aOwner, aPresContext, aEvent), mData(JS::UndefinedValue()) {}
|
2011-05-23 22:53:31 +04:00
|
|
|
|
2014-02-27 14:51:14 +04:00
|
|
|
MessageEvent::~MessageEvent() {
|
2015-01-14 10:59:06 +03:00
|
|
|
mData.setUndefined();
|
2014-02-27 14:51:14 +04:00
|
|
|
DropJSObjects(this);
|
2011-05-23 22:53:31 +04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
JSObject* MessageEvent::WrapObjectInternal(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) {
|
2018-06-26 00:20:54 +03:00
|
|
|
return mozilla::dom::MessageEvent_Binding::Wrap(aCx, this, aGivenProto);
|
2013-11-05 18:16:26 +04:00
|
|
|
}
|
|
|
|
|
2014-06-12 00:26:52 +04:00
|
|
|
void MessageEvent::GetData(JSContext* aCx, JS::MutableHandle<JS::Value> aData,
|
|
|
|
ErrorResult& aRv) {
|
|
|
|
aData.set(mData);
|
|
|
|
if (!JS_WrapValue(aCx, aData)) {
|
2013-05-02 13:12:45 +04:00
|
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
|
|
|
}
|
2008-01-30 04:31:29 +03:00
|
|
|
}
|
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
void MessageEvent::GetOrigin(nsAString& aOrigin) const { aOrigin = mOrigin; }
|
2008-01-30 04:31:29 +03:00
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
void MessageEvent::GetLastEventId(nsAString& aLastEventId) const {
|
2008-05-02 23:26:47 +04:00
|
|
|
aLastEventId = mLastEventId;
|
2008-01-30 04:31:29 +03:00
|
|
|
}
|
|
|
|
|
2017-03-10 04:50:13 +03:00
|
|
|
void MessageEvent::GetSource(
|
|
|
|
Nullable<OwningWindowProxyOrMessagePortOrServiceWorker>& aValue) const {
|
2013-09-11 18:10:01 +04:00
|
|
|
if (mWindowSource) {
|
2017-03-10 04:50:13 +03:00
|
|
|
aValue.SetValue().SetAsWindowProxy() = mWindowSource;
|
2013-09-11 18:10:01 +04:00
|
|
|
} else if (mPortSource) {
|
|
|
|
aValue.SetValue().SetAsMessagePort() = mPortSource;
|
2017-03-10 04:50:13 +03:00
|
|
|
} else if (mServiceWorkerSource) {
|
|
|
|
aValue.SetValue().SetAsServiceWorker() = mServiceWorkerSource;
|
2013-09-11 18:10:01 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-26 01:05:29 +03:00
|
|
|
/* static */
|
|
|
|
already_AddRefed<MessageEvent> MessageEvent::Constructor(
|
2014-02-27 14:51:14 +04:00
|
|
|
const GlobalObject& aGlobal, const nsAString& aType,
|
2019-09-11 17:35:28 +03:00
|
|
|
const MessageEventInit& aParam) {
|
2014-02-27 14:51:14 +04:00
|
|
|
nsCOMPtr<EventTarget> t = do_QueryInterface(aGlobal.GetAsSupports());
|
2017-03-10 04:50:13 +03:00
|
|
|
return Constructor(t, aType, aParam);
|
2015-01-15 19:58:40 +03:00
|
|
|
}
|
|
|
|
|
2019-02-26 01:05:29 +03:00
|
|
|
/* static */
|
|
|
|
already_AddRefed<MessageEvent> MessageEvent::Constructor(
|
2015-01-15 19:58:40 +03:00
|
|
|
EventTarget* aEventTarget, const nsAString& aType,
|
2017-03-10 04:50:13 +03:00
|
|
|
const MessageEventInit& aParam) {
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<MessageEvent> event = new MessageEvent(aEventTarget, nullptr, nullptr);
|
2013-09-11 18:10:01 +04:00
|
|
|
|
2015-11-13 03:09:42 +03:00
|
|
|
event->InitEvent(aType, aParam.mBubbles, aParam.mCancelable);
|
2015-01-15 19:58:40 +03:00
|
|
|
bool trusted = event->Init(aEventTarget);
|
2013-09-11 18:10:01 +04:00
|
|
|
event->SetTrusted(trusted);
|
|
|
|
|
2014-02-19 19:13:38 +04:00
|
|
|
event->mData = aParam.mData;
|
2013-09-11 18:10:01 +04:00
|
|
|
|
|
|
|
mozilla::HoldJSObjects(event.get());
|
|
|
|
|
2016-10-25 08:48:05 +03:00
|
|
|
event->mOrigin = aParam.mOrigin;
|
|
|
|
event->mLastEventId = aParam.mLastEventId;
|
2013-09-11 18:10:01 +04:00
|
|
|
|
2013-12-20 12:51:03 +04:00
|
|
|
if (!aParam.mSource.IsNull()) {
|
2017-03-10 04:50:13 +03:00
|
|
|
if (aParam.mSource.Value().IsWindowProxy()) {
|
2019-01-02 16:26:56 +03:00
|
|
|
event->mWindowSource = aParam.mSource.Value().GetAsWindowProxy().get();
|
2017-03-10 04:50:13 +03:00
|
|
|
} else if (aParam.mSource.Value().IsMessagePort()) {
|
2013-12-20 12:51:03 +04:00
|
|
|
event->mPortSource = aParam.mSource.Value().GetAsMessagePort();
|
2017-03-10 04:50:13 +03:00
|
|
|
} else {
|
|
|
|
event->mServiceWorkerSource = aParam.mSource.Value().GetAsServiceWorker();
|
2013-09-11 18:10:01 +04:00
|
|
|
}
|
|
|
|
|
2017-03-10 04:50:13 +03:00
|
|
|
MOZ_ASSERT(event->mWindowSource || event->mPortSource ||
|
|
|
|
event->mServiceWorkerSource);
|
2013-09-11 18:10:01 +04:00
|
|
|
}
|
|
|
|
|
2016-10-25 08:48:05 +03:00
|
|
|
event->mPorts.AppendElements(aParam.mPorts);
|
2013-09-11 18:10:01 +04:00
|
|
|
|
|
|
|
return event.forget();
|
|
|
|
}
|
|
|
|
|
2015-10-08 19:44:58 +03:00
|
|
|
void MessageEvent::InitMessageEvent(
|
|
|
|
JSContext* aCx, const nsAString& aType, mozilla::CanBubble aCanBubble,
|
2018-06-25 19:23:50 +03:00
|
|
|
mozilla::Cancelable aCancelable, JS::Handle<JS::Value> aData,
|
2015-10-08 19:44:58 +03:00
|
|
|
const nsAString& aOrigin, const nsAString& aLastEventId,
|
2017-03-10 04:50:13 +03:00
|
|
|
const Nullable<WindowProxyOrMessagePortOrServiceWorker>& aSource,
|
2016-10-25 08:48:05 +03:00
|
|
|
const Sequence<OwningNonNull<MessagePort>>& aPorts) {
|
2016-10-30 22:30:06 +03:00
|
|
|
NS_ENSURE_TRUE_VOID(!mEvent->mFlags.mIsBeingDispatched);
|
|
|
|
|
2015-11-13 03:09:42 +03:00
|
|
|
Event::InitEvent(aType, aCanBubble, aCancelable);
|
2015-10-08 19:44:58 +03:00
|
|
|
mData = aData;
|
|
|
|
mozilla::HoldJSObjects(this);
|
|
|
|
mOrigin = aOrigin;
|
|
|
|
mLastEventId = aLastEventId;
|
|
|
|
|
|
|
|
mWindowSource = nullptr;
|
|
|
|
mPortSource = nullptr;
|
2017-03-10 04:50:13 +03:00
|
|
|
mServiceWorkerSource = nullptr;
|
2015-10-08 19:44:58 +03:00
|
|
|
|
|
|
|
if (!aSource.IsNull()) {
|
|
|
|
if (aSource.Value().IsWindowProxy()) {
|
2019-01-02 16:26:56 +03:00
|
|
|
mWindowSource = aSource.Value().GetAsWindowProxy().get();
|
2017-03-10 04:50:13 +03:00
|
|
|
} else if (aSource.Value().IsMessagePort()) {
|
2015-10-08 19:44:58 +03:00
|
|
|
mPortSource = &aSource.Value().GetAsMessagePort();
|
2017-03-10 04:50:13 +03:00
|
|
|
} else {
|
|
|
|
mServiceWorkerSource = &aSource.Value().GetAsServiceWorker();
|
2015-10-08 19:44:58 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-13 16:19:24 +03:00
|
|
|
mPorts.Clear();
|
2016-10-25 08:48:05 +03:00
|
|
|
mPorts.AppendElements(aPorts);
|
2018-06-26 00:20:54 +03:00
|
|
|
MessageEvent_Binding::ClearCachedPortsValue(this);
|
2016-10-13 16:19:24 +03:00
|
|
|
}
|
|
|
|
|
2016-10-25 08:48:05 +03:00
|
|
|
void MessageEvent::GetPorts(nsTArray<RefPtr<MessagePort>>& aPorts) {
|
2020-05-05 13:16:24 +03:00
|
|
|
aPorts = mPorts.Clone();
|
2015-10-08 19:44:58 +03:00
|
|
|
}
|
|
|
|
|
2020-11-04 11:54:36 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|