2015-05-03 19:32:37 +00: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 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/. */
|
2010-07-16 21:42:12 +00:00
|
|
|
|
|
|
|
#include "DOMSVGAnimatedLengthList.h"
|
|
|
|
#include "DOMSVGLengthList.h"
|
|
|
|
#include "SVGAnimatedLengthList.h"
|
|
|
|
#include "nsSVGElement.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsSVGAttrTearoffTable.h"
|
2012-12-23 04:54:25 +00:00
|
|
|
#include "mozilla/dom/SVGAnimatedLengthListBinding.h"
|
2010-07-16 21:42:12 +00:00
|
|
|
|
|
|
|
// See the architecture comment in this file's header.
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2013-05-30 22:34:53 +00:00
|
|
|
static inline
|
|
|
|
nsSVGAttrTearoffTable<SVGAnimatedLengthList, DOMSVGAnimatedLengthList>&
|
|
|
|
SVGAnimatedLengthListTearoffTable()
|
|
|
|
{
|
|
|
|
static nsSVGAttrTearoffTable<SVGAnimatedLengthList, DOMSVGAnimatedLengthList>
|
|
|
|
sSVGAnimatedLengthListTearoffTable;
|
|
|
|
return sSVGAnimatedLengthListTearoffTable;
|
|
|
|
}
|
2010-07-16 21:42:12 +00:00
|
|
|
|
2012-12-23 04:54:25 +00:00
|
|
|
NS_SVG_VAL_IMPL_CYCLE_COLLECTION_WRAPPERCACHED(DOMSVGAnimatedLengthList, mElement)
|
2010-07-16 21:42:12 +00:00
|
|
|
|
2013-07-23 08:34:18 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_ROOT_NATIVE(DOMSVGAnimatedLengthList, AddRef)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNROOT_NATIVE(DOMSVGAnimatedLengthList, Release)
|
2010-07-16 21:42:12 +00:00
|
|
|
|
2012-12-23 04:54:25 +00:00
|
|
|
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 14:13:33 +00:00
|
|
|
DOMSVGAnimatedLengthList::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
2012-12-23 04:54:25 +00: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 14:13:33 +00:00
|
|
|
return dom::SVGAnimatedLengthListBinding::Wrap(aCx, this, aGivenProto);
|
2012-12-23 04:54:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<DOMSVGLengthList>
|
|
|
|
DOMSVGAnimatedLengthList::BaseVal()
|
2010-07-16 21:42:12 +00:00
|
|
|
{
|
|
|
|
if (!mBaseVal) {
|
2011-02-06 09:11:26 +00:00
|
|
|
mBaseVal = new DOMSVGLengthList(this, InternalAList().GetBaseValue());
|
2010-07-16 21:42:12 +00:00
|
|
|
}
|
2012-12-23 04:54:25 +00:00
|
|
|
nsRefPtr<DOMSVGLengthList> baseVal = mBaseVal;
|
|
|
|
return baseVal.forget();
|
2010-07-16 21:42:12 +00:00
|
|
|
}
|
|
|
|
|
2012-12-23 04:54:25 +00:00
|
|
|
already_AddRefed<DOMSVGLengthList>
|
|
|
|
DOMSVGAnimatedLengthList::AnimVal()
|
2010-07-16 21:42:12 +00:00
|
|
|
{
|
|
|
|
if (!mAnimVal) {
|
2011-02-06 09:11:26 +00:00
|
|
|
mAnimVal = new DOMSVGLengthList(this, InternalAList().GetAnimValue());
|
2010-07-16 21:42:12 +00:00
|
|
|
}
|
2012-12-23 04:54:25 +00:00
|
|
|
nsRefPtr<DOMSVGLengthList> animVal = mAnimVal;
|
|
|
|
return animVal.forget();
|
|
|
|
}
|
|
|
|
|
2010-07-16 21:42:12 +00:00
|
|
|
/* static */ already_AddRefed<DOMSVGAnimatedLengthList>
|
|
|
|
DOMSVGAnimatedLengthList::GetDOMWrapper(SVGAnimatedLengthList *aList,
|
|
|
|
nsSVGElement *aElement,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t aAttrEnum,
|
|
|
|
uint8_t aAxis)
|
2010-07-16 21:42:12 +00:00
|
|
|
{
|
2012-08-23 06:24:41 +00:00
|
|
|
nsRefPtr<DOMSVGAnimatedLengthList> wrapper =
|
2013-05-30 22:34:53 +00:00
|
|
|
SVGAnimatedLengthListTearoffTable().GetTearoff(aList);
|
2010-07-16 21:42:12 +00:00
|
|
|
if (!wrapper) {
|
|
|
|
wrapper = new DOMSVGAnimatedLengthList(aElement, aAttrEnum, aAxis);
|
2013-05-30 22:34:53 +00:00
|
|
|
SVGAnimatedLengthListTearoffTable().AddTearoff(aList, wrapper);
|
2010-07-16 21:42:12 +00:00
|
|
|
}
|
2012-08-23 06:24:41 +00:00
|
|
|
return wrapper.forget();
|
2010-07-16 21:42:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ DOMSVGAnimatedLengthList*
|
|
|
|
DOMSVGAnimatedLengthList::GetDOMWrapperIfExists(SVGAnimatedLengthList *aList)
|
|
|
|
{
|
2013-05-30 22:34:53 +00:00
|
|
|
return SVGAnimatedLengthListTearoffTable().GetTearoff(aList);
|
2010-07-16 21:42:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DOMSVGAnimatedLengthList::~DOMSVGAnimatedLengthList()
|
|
|
|
{
|
|
|
|
// Script no longer has any references to us, to our base/animVal objects, or
|
|
|
|
// to any of their list items.
|
2013-05-30 22:34:53 +00:00
|
|
|
SVGAnimatedLengthListTearoffTable().RemoveTearoff(&InternalAList());
|
2010-07-16 21:42:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DOMSVGAnimatedLengthList::InternalBaseValListWillChangeTo(const SVGLengthList& aNewValue)
|
|
|
|
{
|
|
|
|
// When the number of items in our internal counterpart's baseVal changes,
|
|
|
|
// we MUST keep our baseVal in sync. If we don't, script will either see a
|
|
|
|
// list that is too short and be unable to access indexes that should be
|
|
|
|
// valid, or else, MUCH WORSE, script will see a list that is too long and be
|
|
|
|
// able to access "items" at indexes that are out of bounds (read/write to
|
|
|
|
// bad memory)!!
|
|
|
|
|
2011-03-29 15:47:53 +00:00
|
|
|
nsRefPtr<DOMSVGAnimatedLengthList> kungFuDeathGrip;
|
2010-07-16 21:42:12 +00:00
|
|
|
if (mBaseVal) {
|
2012-09-05 14:52:57 +00:00
|
|
|
if (aNewValue.Length() < mBaseVal->LengthNoFlush()) {
|
2011-03-29 15:47:53 +00:00
|
|
|
// InternalListLengthWillChange might clear last reference to |this|.
|
|
|
|
// Retain a temporary reference to keep from dying before returning.
|
|
|
|
kungFuDeathGrip = this;
|
|
|
|
}
|
2010-07-16 21:42:12 +00:00
|
|
|
mBaseVal->InternalListLengthWillChange(aNewValue.Length());
|
|
|
|
}
|
|
|
|
|
|
|
|
// If our attribute is not animating, then our animVal mirrors our baseVal
|
|
|
|
// and we must sync its length too. (If our attribute is animating, then the
|
|
|
|
// SMIL engine takes care of calling InternalAnimValListWillChangeTo() if
|
|
|
|
// necessary.)
|
|
|
|
|
|
|
|
if (!IsAnimating()) {
|
|
|
|
InternalAnimValListWillChangeTo(aNewValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DOMSVGAnimatedLengthList::InternalAnimValListWillChangeTo(const SVGLengthList& aNewValue)
|
|
|
|
{
|
|
|
|
if (mAnimVal) {
|
|
|
|
mAnimVal->InternalListLengthWillChange(aNewValue.Length());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2010-07-16 21:42:12 +00:00
|
|
|
DOMSVGAnimatedLengthList::IsAnimating() const
|
|
|
|
{
|
|
|
|
return InternalAList().IsAnimating();
|
|
|
|
}
|
|
|
|
|
|
|
|
SVGAnimatedLengthList&
|
|
|
|
DOMSVGAnimatedLengthList::InternalAList()
|
|
|
|
{
|
|
|
|
return *mElement->GetAnimatedLengthList(mAttrEnum);
|
|
|
|
}
|
|
|
|
|
|
|
|
const SVGAnimatedLengthList&
|
|
|
|
DOMSVGAnimatedLengthList::InternalAList() const
|
|
|
|
{
|
|
|
|
return *mElement->GetAnimatedLengthList(mAttrEnum);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mozilla
|