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-12-08 12:15:53 +00:00
|
|
|
|
|
|
|
#include "nsSVGElement.h"
|
|
|
|
#include "DOMSVGPointList.h"
|
|
|
|
#include "DOMSVGPoint.h"
|
2012-07-27 14:03:27 +00:00
|
|
|
#include "nsError.h"
|
2010-12-08 12:15:53 +00:00
|
|
|
#include "SVGAnimatedPointList.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsSVGAttrTearoffTable.h"
|
2011-08-22 09:14:13 +00:00
|
|
|
#include "nsContentUtils.h"
|
2012-06-13 15:18:30 +00:00
|
|
|
#include "mozilla/dom/SVGPointListBinding.h"
|
2013-01-15 12:22:03 +00:00
|
|
|
#include <algorithm>
|
2010-12-08 12:15:53 +00:00
|
|
|
|
|
|
|
// See the comment in this file's header.
|
|
|
|
|
2011-02-16 07:54:04 +00:00
|
|
|
// local helper functions
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
void
|
2013-03-23 16:47:31 +00:00
|
|
|
UpdateListIndicesFromIndex(FallibleTArray<mozilla::nsISVGPoint*>& aItemsArray,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aStartingIndex)
|
2011-02-16 07:54:04 +00:00
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t length = aItemsArray.Length();
|
2011-02-16 07:54:04 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
for (uint32_t i = aStartingIndex; i < length; ++i) {
|
2011-02-16 07:54:04 +00:00
|
|
|
if (aItemsArray[i]) {
|
|
|
|
aItemsArray[i]->UpdateListIndex(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2011-02-16 07:53:43 +00:00
|
|
|
namespace mozilla {
|
2010-12-08 12:15:53 +00:00
|
|
|
|
2013-05-30 22:34:53 +00:00
|
|
|
static inline
|
|
|
|
nsSVGAttrTearoffTable<void, DOMSVGPointList>&
|
|
|
|
SVGPointListTearoffTable()
|
|
|
|
{
|
|
|
|
static nsSVGAttrTearoffTable<void, DOMSVGPointList>
|
|
|
|
sSVGPointListTearoffTable;
|
|
|
|
return sSVGPointListTearoffTable;
|
|
|
|
}
|
2010-12-08 12:15:53 +00:00
|
|
|
|
2013-08-02 01:29:05 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(DOMSVGPointList)
|
|
|
|
|
2011-08-22 09:14:13 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(DOMSVGPointList)
|
|
|
|
// No unlinking of mElement, we'd need to null out the value pointer (the
|
|
|
|
// object it points to is held by the element) and null-check it everywhere.
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_PRESERVED_WRAPPER
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(DOMSVGPointList)
|
2012-11-15 07:32:40 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mElement)
|
2011-08-22 09:14:13 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_SCRIPT_OBJECTS
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN(DOMSVGPointList)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_PRESERVED_WRAPPER
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_END
|
2010-12-08 12:15:53 +00:00
|
|
|
|
2013-12-22 17:56:39 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(DOMSVGPointList)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(DOMSVGPointList)
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(DOMSVGPointList)
|
|
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
2013-12-24 22:09:22 +00:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Helper class: AutoChangePointListNotifier
|
|
|
|
// Stack-based helper class to pair calls to WillChangePointList and
|
|
|
|
// DidChangePointList.
|
2015-09-03 16:15:23 +00:00
|
|
|
class MOZ_RAII AutoChangePointListNotifier
|
2013-12-24 22:09:22 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-09-01 01:08:04 +00:00
|
|
|
explicit AutoChangePointListNotifier(DOMSVGPointList* aPointList MOZ_GUARD_OBJECT_NOTIFIER_PARAM)
|
2013-12-24 22:09:22 +00:00
|
|
|
: mPointList(aPointList)
|
|
|
|
{
|
|
|
|
MOZ_GUARD_OBJECT_NOTIFIER_INIT;
|
2013-12-25 08:33:48 +00:00
|
|
|
MOZ_ASSERT(mPointList, "Expecting non-null pointList");
|
2013-12-24 22:09:22 +00:00
|
|
|
mEmptyOrOldValue =
|
|
|
|
mPointList->Element()->WillChangePointList();
|
|
|
|
}
|
|
|
|
|
|
|
|
~AutoChangePointListNotifier()
|
|
|
|
{
|
|
|
|
mPointList->Element()->DidChangePointList(mEmptyOrOldValue);
|
|
|
|
if (mPointList->AttrIsAnimating()) {
|
|
|
|
mPointList->Element()->AnimationNeedsResample();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2013-12-25 08:33:48 +00:00
|
|
|
DOMSVGPointList* const mPointList;
|
2013-12-24 22:09:22 +00:00
|
|
|
nsAttrValue mEmptyOrOldValue;
|
|
|
|
MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER
|
|
|
|
};
|
|
|
|
|
2010-12-08 12:15:53 +00:00
|
|
|
|
|
|
|
/* static */ already_AddRefed<DOMSVGPointList>
|
|
|
|
DOMSVGPointList::GetDOMWrapper(void *aList,
|
|
|
|
nsSVGElement *aElement,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aIsAnimValList)
|
2010-12-08 12:15:53 +00:00
|
|
|
{
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<DOMSVGPointList> wrapper =
|
2013-05-30 22:34:53 +00:00
|
|
|
SVGPointListTearoffTable().GetTearoff(aList);
|
2010-12-08 12:15:53 +00:00
|
|
|
if (!wrapper) {
|
|
|
|
wrapper = new DOMSVGPointList(aElement, aIsAnimValList);
|
2013-05-30 22:34:53 +00:00
|
|
|
SVGPointListTearoffTable().AddTearoff(aList, wrapper);
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
2012-08-23 06:24:41 +00:00
|
|
|
return wrapper.forget();
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ DOMSVGPointList*
|
|
|
|
DOMSVGPointList::GetDOMWrapperIfExists(void *aList)
|
|
|
|
{
|
2013-05-30 22:34:53 +00:00
|
|
|
return SVGPointListTearoffTable().GetTearoff(aList);
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DOMSVGPointList::~DOMSVGPointList()
|
|
|
|
{
|
2011-02-06 09:11:26 +00:00
|
|
|
// There are now no longer any references to us held by script or list items.
|
|
|
|
// Note we must use GetAnimValKey/GetBaseValKey here, NOT InternalList()!
|
2010-12-08 12:15:53 +00:00
|
|
|
void *key = mIsAnimValList ?
|
|
|
|
InternalAList().GetAnimValKey() :
|
|
|
|
InternalAList().GetBaseValKey();
|
2013-05-30 22:34:53 +00:00
|
|
|
SVGPointListTearoffTable().RemoveTearoff(key);
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
|
2011-08-22 09:14:13 +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
|
|
|
DOMSVGPointList::WrapObject(JSContext *cx, JS::Handle<JSObject*> aGivenProto)
|
2011-08-22 09:14:13 +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 mozilla::dom::SVGPointListBinding::Wrap(cx, this, aGivenProto);
|
2011-04-07 22:44:03 +00:00
|
|
|
}
|
|
|
|
|
2010-12-08 12:15:53 +00:00
|
|
|
void
|
|
|
|
DOMSVGPointList::InternalListWillChangeTo(const SVGPointList& aNewValue)
|
|
|
|
{
|
|
|
|
// When the number of items in our internal counterpart changes, we MUST stay
|
|
|
|
// in sync. Everything in the scary comment in
|
|
|
|
// DOMSVGLengthList::InternalBaseValListWillChangeTo applies here too!
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t oldLength = mItems.Length();
|
2011-02-08 13:43:34 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t newLength = aNewValue.Length();
|
2013-01-17 01:35:24 +00:00
|
|
|
if (newLength > nsISVGPoint::MaxListIndex()) {
|
2011-02-08 13:43:34 +00:00
|
|
|
// It's safe to get out of sync with our internal list as long as we have
|
|
|
|
// FEWER items than it does.
|
2013-01-17 01:35:24 +00:00
|
|
|
newLength = nsISVGPoint::MaxListIndex();
|
2011-02-08 13:43:34 +00:00
|
|
|
}
|
2010-12-08 12:15:53 +00:00
|
|
|
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<DOMSVGPointList> kungFuDeathGrip;
|
2011-07-07 15:48:10 +00:00
|
|
|
if (newLength < oldLength) {
|
2011-03-29 15:47:53 +00:00
|
|
|
// RemovingFromList() might clear last reference to |this|.
|
|
|
|
// Retain a temporary reference to keep from dying before returning.
|
|
|
|
kungFuDeathGrip = this;
|
|
|
|
}
|
|
|
|
|
2010-12-08 12:15:53 +00:00
|
|
|
// If our length will decrease, notify the items that will be removed:
|
2012-08-22 15:56:38 +00:00
|
|
|
for (uint32_t i = newLength; i < oldLength; ++i) {
|
2010-12-08 12:15:53 +00:00
|
|
|
if (mItems[i]) {
|
|
|
|
mItems[i]->RemovingFromList();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-18 20:50:35 +00:00
|
|
|
if (!mItems.SetLength(newLength, fallible)) {
|
2010-12-08 12:15:53 +00:00
|
|
|
// We silently ignore SetLength OOM failure since being out of sync is safe
|
|
|
|
// so long as we have *fewer* items than our internal list.
|
|
|
|
mItems.Clear();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If our length has increased, null out the new pointers:
|
2012-08-22 15:56:38 +00:00
|
|
|
for (uint32_t i = oldLength; i < newLength; ++i) {
|
2012-07-30 14:20:58 +00:00
|
|
|
mItems[i] = nullptr;
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2010-12-08 12:15:53 +00:00
|
|
|
DOMSVGPointList::AttrIsAnimating() const
|
|
|
|
{
|
2011-11-26 10:22:15 +00:00
|
|
|
return InternalAList().IsAnimating();
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SVGPointList&
|
2011-11-26 10:22:15 +00:00
|
|
|
DOMSVGPointList::InternalList() const
|
2010-12-08 12:15:53 +00:00
|
|
|
{
|
|
|
|
SVGAnimatedPointList *alist = mElement->GetAnimatedPointList();
|
|
|
|
return mIsAnimValList && alist->IsAnimating() ? *alist->mAnimVal : alist->mBaseVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
SVGAnimatedPointList&
|
2011-11-26 10:22:15 +00:00
|
|
|
DOMSVGPointList::InternalAList() const
|
2010-12-08 12:15:53 +00:00
|
|
|
{
|
2015-02-09 22:34:50 +00:00
|
|
|
MOZ_ASSERT(mElement->GetAnimatedPointList(), "Internal error");
|
2010-12-08 12:15:53 +00:00
|
|
|
return *mElement->GetAnimatedPointList();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// nsIDOMSVGPointList implementation:
|
|
|
|
|
2012-09-05 20:49:53 +00:00
|
|
|
void
|
|
|
|
DOMSVGPointList::Clear(ErrorResult& aError)
|
2010-12-08 12:15:53 +00:00
|
|
|
{
|
|
|
|
if (IsAnimValList()) {
|
2012-09-05 20:49:53 +00:00
|
|
|
aError.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return;
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
|
2012-09-05 14:52:57 +00:00
|
|
|
if (LengthNoFlush() > 0) {
|
2013-12-24 22:09:22 +00:00
|
|
|
AutoChangePointListNotifier notifier(this);
|
2010-12-08 12:15:53 +00:00
|
|
|
// DOM list items that are to be removed must be removed before we change
|
|
|
|
// the internal list, otherwise they wouldn't be able to copy their
|
|
|
|
// internal counterparts' values!
|
|
|
|
|
|
|
|
InternalListWillChangeTo(SVGPointList()); // clears mItems
|
|
|
|
|
|
|
|
if (!AttrIsAnimating()) {
|
|
|
|
// The anim val list is in sync with the base val list
|
|
|
|
DOMSVGPointList *animList =
|
|
|
|
GetDOMWrapperIfExists(InternalAList().GetAnimValKey());
|
|
|
|
if (animList) {
|
|
|
|
animList->InternalListWillChangeTo(SVGPointList()); // clears its mItems
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
InternalList().Clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-23 04:54:20 +00:00
|
|
|
already_AddRefed<nsISVGPoint>
|
|
|
|
DOMSVGPointList::Initialize(nsISVGPoint& aNewItem, ErrorResult& aError)
|
2010-12-08 12:15:53 +00:00
|
|
|
{
|
|
|
|
if (IsAnimValList()) {
|
2012-09-05 20:49:53 +00:00
|
|
|
aError.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return nullptr;
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If aNewItem is already in a list we should insert a clone of aNewItem,
|
|
|
|
// and for consistency, this should happen even if *this* is the list that
|
|
|
|
// aNewItem is currently in. Note that in the case of aNewItem being in this
|
|
|
|
// list, the Clear() call before the InsertItemBefore() call would remove it
|
|
|
|
// from this list, and so the InsertItemBefore() call would not insert a
|
|
|
|
// clone of aNewItem, it would actually insert aNewItem. To prevent that
|
|
|
|
// from happening we have to do the clone here, if necessary.
|
|
|
|
|
2013-01-17 01:35:24 +00:00
|
|
|
nsCOMPtr<nsISVGPoint> domItem = &aNewItem;
|
2014-08-06 13:58:57 +00:00
|
|
|
if (domItem->HasOwner() || domItem->IsReadonly() ||
|
|
|
|
domItem->IsTranslatePoint()) {
|
|
|
|
domItem = domItem->Copy(); // must do this before changing anything!
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
|
2012-09-05 20:49:53 +00:00
|
|
|
ErrorResult rv;
|
2012-12-23 04:54:21 +00:00
|
|
|
Clear(rv);
|
|
|
|
MOZ_ASSERT(!rv.Failed());
|
|
|
|
return InsertItemBefore(*domItem, 0, aError);
|
2012-09-05 20:49:53 +00:00
|
|
|
}
|
|
|
|
|
2013-07-12 10:25:27 +00:00
|
|
|
already_AddRefed<nsISVGPoint>
|
|
|
|
DOMSVGPointList::GetItem(uint32_t index, ErrorResult& error)
|
|
|
|
{
|
|
|
|
bool found;
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsISVGPoint> item = IndexedGetter(index, found, error);
|
2013-07-12 10:25:27 +00:00
|
|
|
if (!found) {
|
|
|
|
error.Throw(NS_ERROR_DOM_INDEX_SIZE_ERR);
|
|
|
|
}
|
|
|
|
return item.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsISVGPoint>
|
2012-09-05 20:49:53 +00:00
|
|
|
DOMSVGPointList::IndexedGetter(uint32_t aIndex, bool& aFound,
|
|
|
|
ErrorResult& aError)
|
2010-12-08 12:15:53 +00:00
|
|
|
{
|
2012-09-05 20:49:53 +00:00
|
|
|
if (IsAnimValList()) {
|
|
|
|
Element()->FlushAnimations();
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
2012-09-05 20:49:53 +00:00
|
|
|
aFound = aIndex < LengthNoFlush();
|
|
|
|
if (aFound) {
|
2013-07-12 10:25:27 +00:00
|
|
|
return GetItemAt(aIndex);
|
2012-09-05 20:49:53 +00:00
|
|
|
}
|
|
|
|
return nullptr;
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
|
2012-12-23 04:54:20 +00:00
|
|
|
already_AddRefed<nsISVGPoint>
|
|
|
|
DOMSVGPointList::InsertItemBefore(nsISVGPoint& aNewItem, uint32_t aIndex,
|
2012-09-05 20:49:53 +00:00
|
|
|
ErrorResult& aError)
|
2010-12-08 12:15:53 +00:00
|
|
|
{
|
|
|
|
if (IsAnimValList()) {
|
2012-09-05 20:49:53 +00:00
|
|
|
aError.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return nullptr;
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
|
2013-01-15 12:22:03 +00:00
|
|
|
aIndex = std::min(aIndex, LengthNoFlush());
|
2013-01-17 01:35:24 +00:00
|
|
|
if (aIndex >= nsISVGPoint::MaxListIndex()) {
|
2012-09-05 20:49:53 +00:00
|
|
|
aError.Throw(NS_ERROR_DOM_INDEX_SIZE_ERR);
|
|
|
|
return nullptr;
|
2011-02-08 13:43:34 +00:00
|
|
|
}
|
|
|
|
|
2013-01-17 01:35:24 +00:00
|
|
|
nsCOMPtr<nsISVGPoint> domItem = &aNewItem;
|
2014-08-06 13:58:57 +00:00
|
|
|
if (domItem->HasOwner() || domItem->IsReadonly() ||
|
|
|
|
domItem->IsTranslatePoint()) {
|
|
|
|
domItem = domItem->Copy(); // must do this before changing anything!
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure we have enough memory so we can avoid complex error handling below:
|
2015-05-18 20:50:34 +00:00
|
|
|
if (!mItems.SetCapacity(mItems.Length() + 1, fallible) ||
|
2010-12-08 12:15:53 +00:00
|
|
|
!InternalList().SetCapacity(InternalList().Length() + 1)) {
|
2012-09-05 20:49:53 +00:00
|
|
|
aError.Throw(NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
return nullptr;
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
|
2013-12-24 22:09:22 +00:00
|
|
|
AutoChangePointListNotifier notifier(this);
|
2011-02-16 07:54:37 +00:00
|
|
|
// Now that we know we're inserting, keep animVal list in sync as necessary.
|
|
|
|
MaybeInsertNullInAnimValListAt(aIndex);
|
|
|
|
|
2010-12-08 12:15:53 +00:00
|
|
|
InternalList().InsertItem(aIndex, domItem->ToSVGPoint());
|
2015-05-28 18:07:43 +00:00
|
|
|
MOZ_ALWAYS_TRUE(mItems.InsertElementAt(aIndex, domItem, fallible));
|
2010-12-08 12:15:53 +00:00
|
|
|
|
2011-02-06 09:11:26 +00:00
|
|
|
// This MUST come after the insertion into InternalList(), or else under the
|
|
|
|
// insertion into InternalList() the values read from domItem would be bad
|
|
|
|
// data from InternalList() itself!:
|
2010-12-08 12:15:53 +00:00
|
|
|
domItem->InsertingIntoList(this, aIndex, IsAnimValList());
|
|
|
|
|
2011-02-16 07:54:04 +00:00
|
|
|
UpdateListIndicesFromIndex(mItems, aIndex + 1);
|
2010-12-08 12:15:53 +00:00
|
|
|
|
2012-09-05 20:49:53 +00:00
|
|
|
return domItem.forget();
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
|
2012-12-23 04:54:20 +00:00
|
|
|
already_AddRefed<nsISVGPoint>
|
|
|
|
DOMSVGPointList::ReplaceItem(nsISVGPoint& aNewItem, uint32_t aIndex,
|
2012-09-05 20:49:53 +00:00
|
|
|
ErrorResult& aError)
|
2010-12-08 12:15:53 +00:00
|
|
|
{
|
|
|
|
if (IsAnimValList()) {
|
2012-09-05 20:49:53 +00:00
|
|
|
aError.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return nullptr;
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
|
2012-09-05 14:52:57 +00:00
|
|
|
if (aIndex >= LengthNoFlush()) {
|
2012-09-05 20:49:53 +00:00
|
|
|
aError.Throw(NS_ERROR_DOM_INDEX_SIZE_ERR);
|
|
|
|
return nullptr;
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
2012-12-23 04:54:19 +00:00
|
|
|
|
2013-01-17 01:35:24 +00:00
|
|
|
nsCOMPtr<nsISVGPoint> domItem = &aNewItem;
|
2014-08-06 13:58:57 +00:00
|
|
|
if (domItem->HasOwner() || domItem->IsReadonly() ||
|
|
|
|
domItem->IsTranslatePoint()) {
|
|
|
|
domItem = domItem->Copy(); // must do this before changing anything!
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
|
2013-12-24 22:09:22 +00:00
|
|
|
AutoChangePointListNotifier notifier(this);
|
2010-12-08 12:15:53 +00:00
|
|
|
if (mItems[aIndex]) {
|
|
|
|
// Notify any existing DOM item of removal *before* modifying the lists so
|
|
|
|
// that the DOM item can copy the *old* value at its index:
|
|
|
|
mItems[aIndex]->RemovingFromList();
|
|
|
|
}
|
|
|
|
|
|
|
|
InternalList()[aIndex] = domItem->ToSVGPoint();
|
|
|
|
mItems[aIndex] = domItem;
|
|
|
|
|
2011-02-06 09:11:26 +00:00
|
|
|
// This MUST come after the ToSVGPoint() call, otherwise that call
|
2010-12-08 12:15:53 +00:00
|
|
|
// would end up reading bad data from InternalList()!
|
|
|
|
domItem->InsertingIntoList(this, aIndex, IsAnimValList());
|
|
|
|
|
2012-09-05 20:49:53 +00:00
|
|
|
return domItem.forget();
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
|
2012-12-23 04:54:20 +00:00
|
|
|
already_AddRefed<nsISVGPoint>
|
2012-09-05 20:49:53 +00:00
|
|
|
DOMSVGPointList::RemoveItem(uint32_t aIndex, ErrorResult& aError)
|
2010-12-08 12:15:53 +00:00
|
|
|
{
|
|
|
|
if (IsAnimValList()) {
|
2012-09-05 20:49:53 +00:00
|
|
|
aError.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return nullptr;
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
|
2012-09-05 14:52:57 +00:00
|
|
|
if (aIndex >= LengthNoFlush()) {
|
2012-09-05 20:49:53 +00:00
|
|
|
aError.Throw(NS_ERROR_DOM_INDEX_SIZE_ERR);
|
|
|
|
return nullptr;
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
2011-02-16 07:54:37 +00:00
|
|
|
|
2013-12-24 22:09:22 +00:00
|
|
|
AutoChangePointListNotifier notifier(this);
|
2011-02-16 07:54:37 +00:00
|
|
|
// Now that we know we're removing, keep animVal list in sync as necessary.
|
|
|
|
// Do this *before* touching InternalList() so the removed item can get its
|
|
|
|
// internal value.
|
|
|
|
MaybeRemoveItemFromAnimValListAt(aIndex);
|
|
|
|
|
2013-07-12 10:25:27 +00:00
|
|
|
// We have to return the removed item, so get it, creating it if necessary:
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsISVGPoint> result = GetItemAt(aIndex);
|
2010-12-08 12:15:53 +00:00
|
|
|
|
|
|
|
// Notify the DOM item of removal *before* modifying the lists so that the
|
|
|
|
// DOM item can copy its *old* value:
|
|
|
|
mItems[aIndex]->RemovingFromList();
|
|
|
|
|
|
|
|
InternalList().RemoveItem(aIndex);
|
|
|
|
mItems.RemoveElementAt(aIndex);
|
|
|
|
|
2011-02-16 07:54:04 +00:00
|
|
|
UpdateListIndicesFromIndex(mItems, aIndex);
|
2010-12-08 12:15:53 +00:00
|
|
|
|
2012-09-05 20:49:53 +00:00
|
|
|
return result.forget();
|
|
|
|
}
|
|
|
|
|
2013-07-12 10:25:27 +00:00
|
|
|
already_AddRefed<nsISVGPoint>
|
|
|
|
DOMSVGPointList::GetItemAt(uint32_t aIndex)
|
2010-12-08 12:15:53 +00:00
|
|
|
{
|
2013-07-12 10:25:27 +00:00
|
|
|
MOZ_ASSERT(aIndex < mItems.Length());
|
|
|
|
|
2010-12-08 12:15:53 +00:00
|
|
|
if (!mItems[aIndex]) {
|
|
|
|
mItems[aIndex] = new DOMSVGPoint(this, aIndex, IsAnimValList());
|
|
|
|
}
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsISVGPoint> result = mItems[aIndex];
|
2013-07-12 10:25:27 +00:00
|
|
|
return result.forget();
|
2010-12-08 12:15:53 +00:00
|
|
|
}
|
|
|
|
|
2011-02-16 07:54:37 +00:00
|
|
|
void
|
2012-08-22 15:56:38 +00:00
|
|
|
DOMSVGPointList::MaybeInsertNullInAnimValListAt(uint32_t aIndex)
|
2011-02-16 07:54:37 +00:00
|
|
|
{
|
2015-02-09 22:34:50 +00:00
|
|
|
MOZ_ASSERT(!IsAnimValList(), "call from baseVal to animVal");
|
2011-02-16 07:54:37 +00:00
|
|
|
|
|
|
|
if (AttrIsAnimating()) {
|
|
|
|
// animVal not a clone of baseVal
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The anim val list is in sync with the base val list
|
|
|
|
DOMSVGPointList *animVal =
|
|
|
|
GetDOMWrapperIfExists(InternalAList().GetAnimValKey());
|
|
|
|
if (!animVal) {
|
|
|
|
// No animVal list wrapper
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-02-09 22:34:50 +00:00
|
|
|
MOZ_ASSERT(animVal->mItems.Length() == mItems.Length(),
|
|
|
|
"animVal list not in sync!");
|
2011-02-16 07:54:37 +00:00
|
|
|
|
2015-05-28 18:07:43 +00:00
|
|
|
MOZ_ALWAYS_TRUE(animVal->mItems.InsertElementAt(aIndex, nullptr, fallible));
|
2011-02-16 07:54:37 +00:00
|
|
|
|
|
|
|
UpdateListIndicesFromIndex(animVal->mItems, aIndex + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-08-22 15:56:38 +00:00
|
|
|
DOMSVGPointList::MaybeRemoveItemFromAnimValListAt(uint32_t aIndex)
|
2011-02-16 07:54:37 +00:00
|
|
|
{
|
2015-02-09 22:34:50 +00:00
|
|
|
MOZ_ASSERT(!IsAnimValList(), "call from baseVal to animVal");
|
2011-02-16 07:54:37 +00:00
|
|
|
|
|
|
|
if (AttrIsAnimating()) {
|
|
|
|
// animVal not a clone of baseVal
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-29 15:47:53 +00:00
|
|
|
// This needs to be a strong reference; otherwise, the RemovingFromList call
|
|
|
|
// below might drop the last reference to animVal before we're done with it.
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<DOMSVGPointList> animVal =
|
2011-02-16 07:54:37 +00:00
|
|
|
GetDOMWrapperIfExists(InternalAList().GetAnimValKey());
|
|
|
|
if (!animVal) {
|
|
|
|
// No animVal list wrapper
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-02-09 22:34:50 +00:00
|
|
|
MOZ_ASSERT(animVal->mItems.Length() == mItems.Length(),
|
|
|
|
"animVal list not in sync!");
|
2011-02-16 07:54:37 +00:00
|
|
|
|
|
|
|
if (animVal->mItems[aIndex]) {
|
|
|
|
animVal->mItems[aIndex]->RemovingFromList();
|
|
|
|
}
|
|
|
|
animVal->mItems.RemoveElementAt(aIndex);
|
|
|
|
|
|
|
|
UpdateListIndicesFromIndex(animVal->mItems, aIndex);
|
|
|
|
}
|
|
|
|
|
2011-02-16 07:53:43 +00:00
|
|
|
} // namespace mozilla
|