2008-01-30 01:31:29 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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 01:31:29 +00:00
|
|
|
|
2014-02-27 10:51:14 +00:00
|
|
|
#include "mozilla/dom/MessageEvent.h"
|
2013-11-05 14:16:26 +00:00
|
|
|
#include "mozilla/dom/MessageEventBinding.h"
|
2013-09-11 14:10:01 +00:00
|
|
|
#include "mozilla/dom/MessagePort.h"
|
|
|
|
#include "mozilla/dom/MessagePortBinding.h"
|
|
|
|
#include "mozilla/dom/MessagePortList.h"
|
|
|
|
#include "mozilla/dom/UnionTypes.h"
|
2013-08-16 20:10:17 +00:00
|
|
|
|
2013-09-10 15:29:43 +00:00
|
|
|
#include "mozilla/HoldDropJSObjects.h"
|
2011-05-23 18:53:31 +00:00
|
|
|
#include "jsapi.h"
|
2008-01-30 01:31:29 +00:00
|
|
|
|
2014-02-27 10:51:14 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2013-05-02 09:12:45 +00:00
|
|
|
|
2014-02-27 10:51:14 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(MessageEvent)
|
2013-08-02 01:29:05 +00:00
|
|
|
|
2014-03-05 00:37:43 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(MessageEvent, Event)
|
2013-03-18 15:50:37 +00:00
|
|
|
tmp->mData = JSVAL_VOID;
|
2013-09-11 14:10:01 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mWindowSource)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mPortSource)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mPorts)
|
2008-01-30 01:31:29 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
2014-03-05 00:37:43 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(MessageEvent, Event)
|
2013-09-11 14:10:01 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mWindowSource)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mPortSource)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mPorts)
|
2008-01-30 01:31:29 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
2014-03-05 00:37:43 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN_INHERITED(MessageEvent, Event)
|
2012-06-10 23:44:50 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_JSVAL_MEMBER_CALLBACK(mData)
|
2011-05-23 18:53:31 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_END
|
|
|
|
|
2014-02-27 10:51:14 +00:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(MessageEvent)
|
2008-01-30 01:31:29 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMMessageEvent)
|
2014-03-05 00:37:43 +00:00
|
|
|
NS_INTERFACE_MAP_END_INHERITING(Event)
|
2008-01-30 01:31:29 +00:00
|
|
|
|
2014-03-05 00:37:43 +00:00
|
|
|
NS_IMPL_ADDREF_INHERITED(MessageEvent, Event)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(MessageEvent, Event)
|
2008-01-30 01:31:29 +00:00
|
|
|
|
2014-02-27 10:51:14 +00:00
|
|
|
MessageEvent::MessageEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetEvent* aEvent)
|
2014-03-05 00:37:43 +00:00
|
|
|
: Event(aOwner, aPresContext, aEvent)
|
2014-02-27 10:51:14 +00:00
|
|
|
, mData(JSVAL_VOID)
|
2011-05-23 18:53:31 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-02-27 10:51:14 +00:00
|
|
|
MessageEvent::~MessageEvent()
|
2011-05-23 18:53:31 +00:00
|
|
|
{
|
|
|
|
mData = JSVAL_VOID;
|
2014-02-27 10:51:14 +00:00
|
|
|
DropJSObjects(this);
|
2011-05-23 18:53:31 +00:00
|
|
|
}
|
|
|
|
|
2013-11-05 14:16:26 +00:00
|
|
|
JSObject*
|
2014-02-27 10:51:14 +00:00
|
|
|
MessageEvent::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aScope)
|
2013-11-05 14:16:26 +00:00
|
|
|
{
|
|
|
|
return mozilla::dom::MessageEventBinding::Wrap(aCx, aScope, this);
|
|
|
|
}
|
|
|
|
|
2008-01-30 01:31:29 +00:00
|
|
|
NS_IMETHODIMP
|
2014-02-27 10:51:14 +00:00
|
|
|
MessageEvent::GetData(JSContext* aCx, JS::MutableHandle<JS::Value> aData)
|
2008-01-30 01:31:29 +00:00
|
|
|
{
|
2013-05-02 09:12:45 +00:00
|
|
|
ErrorResult rv;
|
2014-01-09 17:39:36 +00:00
|
|
|
aData.set(GetData(aCx, rv));
|
2013-05-02 09:12:45 +00:00
|
|
|
return rv.ErrorCode();
|
|
|
|
}
|
|
|
|
|
|
|
|
JS::Value
|
2014-02-27 10:51:14 +00:00
|
|
|
MessageEvent::GetData(JSContext* aCx, ErrorResult& aRv)
|
2013-05-02 09:12:45 +00:00
|
|
|
{
|
2013-05-02 09:12:47 +00:00
|
|
|
JS::Rooted<JS::Value> data(aCx, mData);
|
2013-10-26 16:19:05 +00:00
|
|
|
if (!JS_WrapValue(aCx, &data)) {
|
2013-05-02 09:12:45 +00:00
|
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
|
|
|
}
|
|
|
|
return data;
|
2008-01-30 01:31:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2014-02-27 10:51:14 +00:00
|
|
|
MessageEvent::GetOrigin(nsAString& aOrigin)
|
2008-01-30 01:31:29 +00:00
|
|
|
{
|
2008-02-27 03:48:54 +00:00
|
|
|
aOrigin = mOrigin;
|
2008-01-30 01:31:29 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-05-02 19:26:47 +00:00
|
|
|
NS_IMETHODIMP
|
2014-02-27 10:51:14 +00:00
|
|
|
MessageEvent::GetLastEventId(nsAString& aLastEventId)
|
2008-05-02 19:26:47 +00:00
|
|
|
{
|
|
|
|
aLastEventId = mLastEventId;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-01-30 01:31:29 +00:00
|
|
|
NS_IMETHODIMP
|
2014-02-27 10:51:14 +00:00
|
|
|
MessageEvent::GetSource(nsIDOMWindow** aSource)
|
2008-01-30 01:31:29 +00:00
|
|
|
{
|
2013-09-11 14:10:01 +00:00
|
|
|
NS_IF_ADDREF(*aSource = mWindowSource);
|
2008-01-30 01:31:29 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-09-11 14:10:01 +00:00
|
|
|
void
|
2014-02-27 10:51:14 +00:00
|
|
|
MessageEvent::GetSource(Nullable<OwningWindowProxyOrMessagePort>& aValue) const
|
2013-09-11 14:10:01 +00:00
|
|
|
{
|
|
|
|
if (mWindowSource) {
|
|
|
|
aValue.SetValue().SetAsWindowProxy() = mWindowSource;
|
|
|
|
} else if (mPortSource) {
|
|
|
|
aValue.SetValue().SetAsMessagePort() = mPortSource;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-27 10:51:14 +00:00
|
|
|
/* static */ already_AddRefed<MessageEvent>
|
|
|
|
MessageEvent::Constructor(const GlobalObject& aGlobal,
|
|
|
|
JSContext* aCx, const nsAString& aType,
|
|
|
|
const MessageEventInit& aParam,
|
|
|
|
ErrorResult& aRv)
|
2013-09-11 14:10:01 +00:00
|
|
|
{
|
2014-02-27 10:51:14 +00:00
|
|
|
nsCOMPtr<EventTarget> t = do_QueryInterface(aGlobal.GetAsSupports());
|
|
|
|
nsRefPtr<MessageEvent> event = new MessageEvent(t, nullptr, nullptr);
|
2013-09-11 14:10:01 +00:00
|
|
|
|
|
|
|
aRv = event->InitEvent(aType, aParam.mBubbles, aParam.mCancelable);
|
|
|
|
if (aRv.Failed()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool trusted = event->Init(t);
|
|
|
|
event->SetTrusted(trusted);
|
|
|
|
|
2014-02-19 15:13:38 +00:00
|
|
|
event->mData = aParam.mData;
|
2013-09-11 14:10:01 +00:00
|
|
|
|
|
|
|
mozilla::HoldJSObjects(event.get());
|
|
|
|
|
|
|
|
if (aParam.mOrigin.WasPassed()) {
|
|
|
|
event->mOrigin = aParam.mOrigin.Value();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aParam.mLastEventId.WasPassed()) {
|
|
|
|
event->mLastEventId = aParam.mLastEventId.Value();
|
|
|
|
}
|
|
|
|
|
2013-12-20 08:51:03 +00:00
|
|
|
if (!aParam.mSource.IsNull()) {
|
|
|
|
if (aParam.mSource.Value().IsWindowProxy()) {
|
|
|
|
event->mWindowSource = aParam.mSource.Value().GetAsWindowProxy();
|
|
|
|
} else {
|
|
|
|
event->mPortSource = aParam.mSource.Value().GetAsMessagePort();
|
2013-09-11 14:10:01 +00:00
|
|
|
}
|
|
|
|
|
2013-12-20 08:51:03 +00:00
|
|
|
MOZ_ASSERT(event->mWindowSource || event->mPortSource);
|
2013-09-11 14:10:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (aParam.mPorts.WasPassed() && !aParam.mPorts.Value().IsNull()) {
|
2013-11-05 14:16:26 +00:00
|
|
|
nsTArray<nsRefPtr<MessagePortBase>> ports;
|
2013-09-11 14:10:01 +00:00
|
|
|
for (uint32_t i = 0, len = aParam.mPorts.Value().Value().Length(); i < len; ++i) {
|
|
|
|
ports.AppendElement(aParam.mPorts.Value().Value()[i].get());
|
|
|
|
}
|
|
|
|
|
2014-03-05 00:37:43 +00:00
|
|
|
event->mPorts = new MessagePortList(static_cast<EventBase*>(event), ports);
|
2013-09-11 14:10:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return event.forget();
|
|
|
|
}
|
|
|
|
|
2008-01-30 01:31:29 +00:00
|
|
|
NS_IMETHODIMP
|
2014-02-27 10:51:14 +00:00
|
|
|
MessageEvent::InitMessageEvent(const nsAString& aType,
|
|
|
|
bool aCanBubble,
|
|
|
|
bool aCancelable,
|
|
|
|
JS::Handle<JS::Value> aData,
|
|
|
|
const nsAString& aOrigin,
|
|
|
|
const nsAString& aLastEventId,
|
|
|
|
nsIDOMWindow* aSource)
|
2008-01-30 01:31:29 +00:00
|
|
|
{
|
2014-03-05 00:37:43 +00:00
|
|
|
nsresult rv = Event::InitEvent(aType, aCanBubble, aCancelable);
|
2008-01-30 01:31:29 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
mData = aData;
|
2013-08-16 20:10:17 +00:00
|
|
|
mozilla::HoldJSObjects(this);
|
2008-02-27 03:48:54 +00:00
|
|
|
mOrigin = aOrigin;
|
2008-05-02 19:26:47 +00:00
|
|
|
mLastEventId = aLastEventId;
|
2013-09-11 14:10:01 +00:00
|
|
|
mWindowSource = aSource;
|
2008-01-30 01:31:29 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-11-05 14:16:26 +00:00
|
|
|
void
|
2014-02-27 10:51:14 +00:00
|
|
|
MessageEvent::SetPorts(MessagePortList* aPorts)
|
2013-11-05 14:16:26 +00:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mPorts && aPorts);
|
|
|
|
mPorts = aPorts;
|
|
|
|
}
|
|
|
|
|
2014-02-27 10:51:14 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
using namespace mozilla::dom;
|
|
|
|
|
2008-01-30 01:31:29 +00:00
|
|
|
nsresult
|
|
|
|
NS_NewDOMMessageEvent(nsIDOMEvent** aInstancePtrResult,
|
2014-02-27 10:51:14 +00:00
|
|
|
EventTarget* aOwner,
|
2008-01-30 01:31:29 +00:00
|
|
|
nsPresContext* aPresContext,
|
2013-10-02 03:46:04 +00:00
|
|
|
WidgetEvent* aEvent)
|
2008-01-30 01:31:29 +00:00
|
|
|
{
|
2014-02-27 10:51:14 +00:00
|
|
|
MessageEvent* it = new MessageEvent(aOwner, aPresContext, aEvent);
|
2008-01-30 01:31:29 +00:00
|
|
|
return CallQueryInterface(it, aInstancePtrResult);
|
|
|
|
}
|