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: */
|
2014-07-01 03:02:04 +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 "CustomEvent.h"
|
|
|
|
#include "mozilla/dom/CustomEventBinding.h"
|
|
|
|
|
|
|
|
#include "mozilla/dom/BindingUtils.h"
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsIXPConnect.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
using namespace mozilla::dom;
|
|
|
|
|
|
|
|
CustomEvent::CustomEvent(mozilla::dom::EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
mozilla::WidgetEvent* aEvent)
|
2016-03-09 13:13:12 +03:00
|
|
|
: Event(aOwner, aPresContext, aEvent)
|
|
|
|
, mDetail(JS::NullValue())
|
2014-07-01 03:02:04 +04:00
|
|
|
{
|
2016-03-09 13:13:12 +03:00
|
|
|
mozilla::HoldJSObjects(this);
|
2014-07-01 03:02:04 +04:00
|
|
|
}
|
|
|
|
|
2016-03-09 13:13:12 +03:00
|
|
|
CustomEvent::~CustomEvent()
|
|
|
|
{
|
|
|
|
mozilla::DropJSObjects(this);
|
|
|
|
}
|
2014-07-01 03:02:04 +04:00
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(CustomEvent)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(CustomEvent, Event)
|
2016-03-09 13:13:12 +03:00
|
|
|
tmp->mDetail.setUndefined();
|
|
|
|
mozilla::DropJSObjects(this);
|
2014-07-01 03:02:04 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(CustomEvent, Event)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
2016-03-09 13:13:12 +03:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN_INHERITED(CustomEvent, Event)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_JS_MEMBER_CALLBACK(mDetail)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_END
|
|
|
|
|
2014-07-01 03:02:04 +04:00
|
|
|
NS_IMPL_ADDREF_INHERITED(CustomEvent, Event)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(CustomEvent, Event)
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(CustomEvent)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMCustomEvent)
|
|
|
|
NS_INTERFACE_MAP_END_INHERITING(Event)
|
|
|
|
|
|
|
|
already_AddRefed<CustomEvent>
|
|
|
|
CustomEvent::Constructor(const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
|
|
|
const CustomEventInit& aParam,
|
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
nsCOMPtr<mozilla::dom::EventTarget> t = do_QueryInterface(aGlobal.GetAsSupports());
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<CustomEvent> e = new CustomEvent(t, nullptr, nullptr);
|
2014-07-01 03:02:04 +04:00
|
|
|
bool trusted = e->Init(t);
|
|
|
|
JS::Rooted<JS::Value> detail(aGlobal.Context(), aParam.mDetail);
|
|
|
|
e->InitCustomEvent(aGlobal.Context(), aType, aParam.mBubbles, aParam.mCancelable, detail, aRv);
|
|
|
|
e->SetTrusted(trusted);
|
|
|
|
return e.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
CustomEvent::WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
2014-07-01 03:02:04 +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
|
|
|
return mozilla::dom::CustomEventBinding::Wrap(aCx, this, aGivenProto);
|
2014-07-01 03:02:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
CustomEvent::InitCustomEvent(const nsAString& aType,
|
|
|
|
bool aCanBubble,
|
|
|
|
bool aCancelable,
|
|
|
|
nsIVariant* aDetail)
|
|
|
|
{
|
2016-03-09 13:13:12 +03:00
|
|
|
AutoJSAPI jsapi;
|
|
|
|
NS_ENSURE_STATE(jsapi.Init(GetParentObject()));
|
|
|
|
JSContext* cx = jsapi.cx();
|
|
|
|
JS::Rooted<JS::Value> detail(cx);
|
|
|
|
|
|
|
|
if (!aDetail) {
|
|
|
|
detail = JS::NullValue();
|
|
|
|
} else if (NS_WARN_IF(!VariantToJsval(cx, aDetail, &detail))) {
|
|
|
|
JS_ClearPendingException(cx);
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2015-11-13 03:09:42 +03:00
|
|
|
Event::InitEvent(aType, aCanBubble, aCancelable);
|
2016-03-09 13:13:12 +03:00
|
|
|
mDetail = detail;
|
|
|
|
|
2014-07-01 03:02:04 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CustomEvent::InitCustomEvent(JSContext* aCx,
|
|
|
|
const nsAString& aType,
|
|
|
|
bool aCanBubble,
|
|
|
|
bool aCancelable,
|
|
|
|
JS::Handle<JS::Value> aDetail,
|
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
2016-03-09 13:13:12 +03:00
|
|
|
Event::InitEvent(aType, aCanBubble, aCancelable);
|
|
|
|
mDetail = aDetail;
|
2014-07-01 03:02:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
CustomEvent::GetDetail(nsIVariant** aDetail)
|
|
|
|
{
|
2016-03-09 13:13:12 +03:00
|
|
|
if (mDetail.isNull()) {
|
|
|
|
*aDetail = nullptr;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
AutoJSAPI jsapi;
|
|
|
|
NS_ENSURE_STATE(jsapi.Init(GetParentObject()));
|
|
|
|
JSContext* cx = jsapi.cx();
|
|
|
|
JS::Rooted<JS::Value> detail(cx, mDetail);
|
|
|
|
nsIXPConnect* xpc = nsContentUtils::XPConnect();
|
|
|
|
|
|
|
|
if (NS_WARN_IF(!xpc)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return xpc->JSToVariant(cx, detail, aDetail);
|
2014-07-01 03:02:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CustomEvent::GetDetail(JSContext* aCx,
|
|
|
|
JS::MutableHandle<JS::Value> aRetval)
|
|
|
|
{
|
2016-03-09 13:13:12 +03:00
|
|
|
aRetval.set(mDetail);
|
2014-07-01 03:02:04 +04:00
|
|
|
}
|
|
|
|
|
2015-08-12 14:39:31 +03:00
|
|
|
already_AddRefed<CustomEvent>
|
|
|
|
NS_NewDOMCustomEvent(EventTarget* aOwner,
|
2014-07-01 03:02:04 +04:00
|
|
|
nsPresContext* aPresContext,
|
|
|
|
mozilla::WidgetEvent* aEvent)
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<CustomEvent> it =
|
2015-08-12 14:39:31 +03:00
|
|
|
new CustomEvent(aOwner, aPresContext, aEvent);
|
|
|
|
return it.forget();
|
2014-07-01 03:02:04 +04:00
|
|
|
}
|