2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Implementation of the |attributes| property of DOM Core's nsIDOMNode object.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsDOMAttributeMap.h"
|
|
|
|
#include "nsDOMAttribute.h"
|
2011-03-26 09:06:27 -07:00
|
|
|
#include "nsIDOMDocument.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsGenericElement.h"
|
2008-02-21 18:18:43 -08:00
|
|
|
#include "nsIDocument.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsINameSpaceManager.h"
|
2012-07-27 07:03:27 -07:00
|
|
|
#include "nsError.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsNodeInfoManager.h"
|
|
|
|
#include "nsAttrName.h"
|
2009-12-28 06:35:06 -08:00
|
|
|
#include "nsUnicharUtils.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
using namespace mozilla;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
2010-07-30 06:42:11 -07:00
|
|
|
nsDOMAttributeMap::nsDOMAttributeMap(Element* aContent)
|
2007-03-22 10:30:00 -07:00
|
|
|
: mContent(aContent)
|
|
|
|
{
|
|
|
|
// We don't add a reference to our content. If it goes away,
|
|
|
|
// we'll be told to drop our reference
|
2012-05-18 10:30:49 -07:00
|
|
|
mAttributeCache.Init();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear map pointer for attributes.
|
|
|
|
*/
|
|
|
|
PLDHashOperator
|
2010-04-19 08:41:39 -07:00
|
|
|
RemoveMapRef(nsAttrHashKey::KeyType aKey, nsRefPtr<nsDOMAttribute>& aData,
|
|
|
|
void* aUserArg)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
aData->SetMap(nullptr);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return PL_DHASH_REMOVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsDOMAttributeMap::~nsDOMAttributeMap()
|
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
mAttributeCache.Enumerate(RemoveMapRef, nullptr);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDOMAttributeMap::DropReference()
|
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
mAttributeCache.Enumerate(RemoveMapRef, nullptr);
|
|
|
|
mContent = nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(nsDOMAttributeMap)
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(nsDOMAttributeMap)
|
|
|
|
tmp->DropReference();
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
|
|
|
|
|
|
|
PLDHashOperator
|
2010-04-19 08:41:39 -07:00
|
|
|
TraverseMapEntry(nsAttrHashKey::KeyType aKey, nsRefPtr<nsDOMAttribute>& aData,
|
|
|
|
void* aUserArg)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsCycleCollectionTraversalCallback *cb =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsCycleCollectionTraversalCallback*>(aUserArg);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-04-19 08:41:39 -07:00
|
|
|
cb->NoteXPCOMChild(static_cast<nsINode*>(aData.get()));
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(nsDOMAttributeMap)
|
|
|
|
tmp->mAttributeCache.Enumerate(TraverseMapEntry, &cb);
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
2010-01-12 05:08:43 -08:00
|
|
|
DOMCI_DATA(NamedNodeMap, nsDOMAttributeMap)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// QueryInterface implementation for nsDOMAttributeMap
|
2008-11-03 02:31:47 -08:00
|
|
|
NS_INTERFACE_TABLE_HEAD(nsDOMAttributeMap)
|
|
|
|
NS_OFFSET_AND_INTERFACE_TABLE_BEGIN(nsDOMAttributeMap)
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(nsDOMAttributeMap, nsIDOMNamedNodeMap)
|
|
|
|
NS_OFFSET_AND_INTERFACE_TABLE_END
|
|
|
|
NS_OFFSET_AND_INTERFACE_TABLE_TO_MAP_SEGUE
|
|
|
|
NS_INTERFACE_MAP_ENTRIES_CYCLE_COLLECTION(nsDOMAttributeMap)
|
2010-03-17 08:09:05 -07:00
|
|
|
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(NamedNodeMap)
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsDOMAttributeMap)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsDOMAttributeMap)
|
|
|
|
|
|
|
|
PLDHashOperator
|
2010-04-19 08:41:39 -07:00
|
|
|
SetOwnerDocumentFunc(nsAttrHashKey::KeyType aKey,
|
|
|
|
nsRefPtr<nsDOMAttribute>& aData,
|
2007-03-22 10:30:00 -07:00
|
|
|
void* aUserArg)
|
|
|
|
{
|
2010-04-19 08:41:39 -07:00
|
|
|
nsresult rv = aData->SetOwnerDocument(static_cast<nsIDocument*>(aUserArg));
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return NS_FAILED(rv) ? PL_DHASH_STOP : PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsDOMAttributeMap::SetOwnerDocument(nsIDocument* aDocument)
|
|
|
|
{
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t n = mAttributeCache.Enumerate(SetOwnerDocumentFunc, aDocument);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_TRUE(n == mAttributeCache.Count(), NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-08-22 08:56:38 -07:00
|
|
|
nsDOMAttributeMap::DropAttribute(int32_t aNamespaceID, nsIAtom* aLocalName)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsAttrKey attr(aNamespaceID, aLocalName);
|
2010-04-19 08:41:39 -07:00
|
|
|
nsDOMAttribute *node = mAttributeCache.GetWeak(attr);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (node) {
|
|
|
|
// Break link to map
|
2012-07-30 07:20:58 -07:00
|
|
|
node->SetMap(nullptr);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Remove from cache
|
|
|
|
mAttributeCache.Remove(attr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
already_AddRefed<nsDOMAttribute>
|
|
|
|
nsDOMAttributeMap::RemoveAttribute(nsINodeInfo* aNodeInfo)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
NS_ASSERTION(aNodeInfo, "RemoveAttribute() called with aNodeInfo == nullptr!");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsAttrKey attr(aNodeInfo->NamespaceID(), aNodeInfo->NameAtom());
|
|
|
|
|
2010-04-19 08:41:39 -07:00
|
|
|
nsRefPtr<nsDOMAttribute> node;
|
|
|
|
if (!mAttributeCache.Get(attr, getter_AddRefs(node))) {
|
2007-03-22 10:30:00 -07:00
|
|
|
nsAutoString value;
|
2008-10-22 07:31:14 -07:00
|
|
|
// As we are removing the attribute we need to set the current value in
|
|
|
|
// the attribute node.
|
|
|
|
mContent->GetAttr(aNodeInfo->NamespaceID(), aNodeInfo->NameAtom(), value);
|
2010-07-23 02:49:57 -07:00
|
|
|
nsCOMPtr<nsINodeInfo> ni = aNodeInfo;
|
2012-10-16 04:51:00 -07:00
|
|
|
node = new nsDOMAttribute(nullptr, ni.forget(), value, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2008-10-22 07:31:14 -07:00
|
|
|
else {
|
2007-03-22 10:30:00 -07:00
|
|
|
// Break link to map
|
2012-07-30 07:20:58 -07:00
|
|
|
node->SetMap(nullptr);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Remove from cache
|
|
|
|
mAttributeCache.Remove(attr);
|
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
return node.forget();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-04-19 08:41:39 -07:00
|
|
|
nsDOMAttribute*
|
2011-09-28 23:19:26 -07:00
|
|
|
nsDOMAttributeMap::GetAttribute(nsINodeInfo* aNodeInfo, bool aNsAware)
|
2008-10-22 07:31:14 -07:00
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
NS_ASSERTION(aNodeInfo, "GetAttribute() called with aNodeInfo == nullptr!");
|
2008-10-22 07:31:14 -07:00
|
|
|
|
|
|
|
nsAttrKey attr(aNodeInfo->NamespaceID(), aNodeInfo->NameAtom());
|
|
|
|
|
2010-04-19 08:41:39 -07:00
|
|
|
nsDOMAttribute* node = mAttributeCache.GetWeak(attr);
|
2008-10-22 07:31:14 -07:00
|
|
|
if (!node) {
|
2010-07-23 02:49:57 -07:00
|
|
|
nsCOMPtr<nsINodeInfo> ni = aNodeInfo;
|
2010-04-19 08:41:39 -07:00
|
|
|
nsRefPtr<nsDOMAttribute> newAttr =
|
2010-10-14 07:07:20 -07:00
|
|
|
new nsDOMAttribute(this, ni.forget(), EmptyString(), aNsAware);
|
2012-05-18 10:30:49 -07:00
|
|
|
mAttributeCache.Put(attr, newAttr);
|
|
|
|
node = newAttr;
|
2008-10-22 07:31:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2010-04-19 08:41:39 -07:00
|
|
|
nsDOMAttribute*
|
2012-10-16 04:51:00 -07:00
|
|
|
nsDOMAttributeMap::GetNamedItem(const nsAString& aAttrName)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (mContent) {
|
|
|
|
nsCOMPtr<nsINodeInfo> ni =
|
|
|
|
mContent->GetExistingAttrNameFromQName(aAttrName);
|
|
|
|
if (ni) {
|
2011-10-17 07:59:28 -07:00
|
|
|
return GetAttribute(ni, false);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2008-10-31 14:40:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMAttributeMap::GetNamedItem(const nsAString& aAttrName,
|
|
|
|
nsIDOMNode** aAttribute)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aAttribute);
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
NS_IF_ADDREF(*aAttribute = GetNamedItem(aAttrName));
|
2008-10-31 14:40:35 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMAttributeMap::SetNamedItem(nsIDOMNode *aNode, nsIDOMNode **aReturn)
|
|
|
|
{
|
2012-10-16 04:51:00 -07:00
|
|
|
ErrorResult rv;
|
|
|
|
*aReturn = SetNamedItemInternal(aNode, false, rv).get();
|
|
|
|
return rv.ErrorCode();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMAttributeMap::SetNamedItemNS(nsIDOMNode *aNode, nsIDOMNode **aReturn)
|
|
|
|
{
|
2012-10-16 04:51:00 -07:00
|
|
|
ErrorResult rv;
|
|
|
|
*aReturn = SetNamedItemInternal(aNode, true, rv).get();
|
|
|
|
return rv.ErrorCode();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
already_AddRefed<nsDOMAttribute>
|
2007-03-22 10:30:00 -07:00
|
|
|
nsDOMAttributeMap::SetNamedItemInternal(nsIDOMNode *aNode,
|
2012-10-16 04:51:00 -07:00
|
|
|
bool aWithNS,
|
|
|
|
ErrorResult& aError)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (mContent) {
|
|
|
|
// XXX should check same-origin between mContent and aNode however
|
|
|
|
// nsContentUtils::CheckSameOrigin can't deal with attributenodes yet
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAttribute> iAttribute(do_QueryInterface(aNode));
|
2010-04-19 08:41:39 -07:00
|
|
|
if (!iAttribute) {
|
2012-10-16 04:51:00 -07:00
|
|
|
aError.Throw(NS_ERROR_DOM_HIERARCHY_REQUEST_ERR);
|
|
|
|
return nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-04-19 08:41:39 -07:00
|
|
|
nsDOMAttribute *attribute = static_cast<nsDOMAttribute*>(iAttribute.get());
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Check that attribute is not owned by somebody else
|
|
|
|
nsDOMAttributeMap* owner = iAttribute->GetMap();
|
|
|
|
if (owner) {
|
|
|
|
if (owner != this) {
|
2012-10-16 04:51:00 -07:00
|
|
|
aError.Throw(NS_ERROR_DOM_INUSE_ATTRIBUTE_ERR);
|
|
|
|
return nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// setting a preexisting attribute is a no-op, just return the same
|
|
|
|
// node.
|
2012-10-16 04:51:00 -07:00
|
|
|
NS_ADDREF(attribute);
|
|
|
|
return attribute;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
nsresult rv;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!mContent->HasSameOwnerDoc(iAttribute)) {
|
2011-03-26 09:06:27 -07:00
|
|
|
nsCOMPtr<nsIDOMDocument> domDoc =
|
2011-10-18 03:53:36 -07:00
|
|
|
do_QueryInterface(mContent->OwnerDoc(), &rv);
|
2012-10-16 04:51:00 -07:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
aError.Throw(rv);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2008-02-21 18:18:43 -08:00
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> adoptedNode;
|
|
|
|
rv = domDoc->AdoptNode(aNode, getter_AddRefs(adoptedNode));
|
2012-10-16 04:51:00 -07:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
aError.Throw(rv);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2008-02-21 18:18:43 -08:00
|
|
|
|
|
|
|
NS_ASSERTION(adoptedNode == aNode, "Uh, adopt node changed nodes?");
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get nodeinfo and preexisting attribute (if it exists)
|
|
|
|
nsAutoString name;
|
|
|
|
nsCOMPtr<nsINodeInfo> ni;
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
nsRefPtr<nsDOMAttribute> attr;
|
2007-03-22 10:30:00 -07:00
|
|
|
// SetNamedItemNS()
|
|
|
|
if (aWithNS) {
|
|
|
|
// Return existing attribute, if present
|
|
|
|
ni = iAttribute->NodeInfo();
|
|
|
|
|
|
|
|
if (mContent->HasAttr(ni->NamespaceID(), ni->NameAtom())) {
|
2012-10-16 04:51:00 -07:00
|
|
|
attr = RemoveAttribute(ni);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else { // SetNamedItem()
|
|
|
|
attribute->GetName(name);
|
|
|
|
|
|
|
|
// get node-info of old attribute
|
|
|
|
ni = mContent->GetExistingAttrNameFromQName(name);
|
|
|
|
if (ni) {
|
2012-10-16 04:51:00 -07:00
|
|
|
attr = RemoveAttribute(ni);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
2009-12-28 06:35:06 -08:00
|
|
|
if (mContent->IsInHTMLDocument() &&
|
|
|
|
mContent->IsHTML()) {
|
2012-03-09 21:50:34 -08:00
|
|
|
nsContentUtils::ASCIIToLower(name);
|
2009-12-28 06:35:06 -08:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
rv = mContent->NodeInfo()->NodeInfoManager()->
|
2012-07-30 07:20:58 -07:00
|
|
|
GetNodeInfo(name, nullptr, kNameSpaceID_None,
|
2011-06-14 00:56:49 -07:00
|
|
|
nsIDOMNode::ATTRIBUTE_NODE, getter_AddRefs(ni));
|
2012-10-16 04:51:00 -07:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
aError.Throw(rv);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
// value is already empty
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAutoString value;
|
|
|
|
attribute->GetValue(value);
|
|
|
|
|
|
|
|
// Add the new attribute to the attribute map before updating
|
|
|
|
// its value in the element. @see bug 364413.
|
|
|
|
nsAttrKey attrkey(ni->NamespaceID(), ni->NameAtom());
|
2012-05-18 10:30:49 -07:00
|
|
|
mAttributeCache.Put(attrkey, attribute);
|
2007-03-22 10:30:00 -07:00
|
|
|
iAttribute->SetMap(this);
|
|
|
|
|
2009-12-28 06:35:06 -08:00
|
|
|
rv = mContent->SetAttr(ni->NamespaceID(), ni->NameAtom(),
|
2011-10-17 07:59:28 -07:00
|
|
|
ni->GetPrefixAtom(), value, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(rv)) {
|
2012-10-16 04:51:00 -07:00
|
|
|
aError.Throw(rv);
|
2007-03-22 10:30:00 -07:00
|
|
|
DropAttribute(ni->NamespaceID(), ni->NameAtom());
|
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
return attr.forget();
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
return nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMAttributeMap::RemoveNamedItem(const nsAString& aName,
|
|
|
|
nsIDOMNode** aReturn)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aReturn);
|
2012-07-30 07:20:58 -07:00
|
|
|
*aReturn = nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
if (mContent) {
|
|
|
|
nsCOMPtr<nsINodeInfo> ni = mContent->GetExistingAttrNameFromQName(aName);
|
|
|
|
if (!ni) {
|
|
|
|
return NS_ERROR_DOM_NOT_FOUND_ERR;
|
|
|
|
}
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
NS_ADDREF(*aReturn = GetAttribute(ni, true));
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// This removes the attribute node from the attribute map.
|
2011-10-17 07:59:28 -07:00
|
|
|
rv = mContent->UnsetAttr(ni->NamespaceID(), ni->NameAtom(), true);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-19 08:41:39 -07:00
|
|
|
nsDOMAttribute*
|
2012-08-22 08:56:38 -07:00
|
|
|
nsDOMAttributeMap::GetItemAt(uint32_t aIndex, nsresult *aResult)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-10-22 07:31:14 -07:00
|
|
|
*aResult = NS_OK;
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
nsDOMAttribute* node = nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
const nsAttrName* name;
|
|
|
|
if (mContent && (name = mContent->GetAttrNameAt(aIndex))) {
|
|
|
|
// Don't use the nodeinfo even if one exists since it can
|
|
|
|
// have the wrong owner document.
|
|
|
|
nsCOMPtr<nsINodeInfo> ni;
|
2008-09-12 15:32:18 -07:00
|
|
|
ni = mContent->NodeInfo()->NodeInfoManager()->
|
2011-06-14 00:56:49 -07:00
|
|
|
GetNodeInfo(name->LocalName(), name->GetPrefix(), name->NamespaceID(),
|
|
|
|
nsIDOMNode::ATTRIBUTE_NODE);
|
2008-10-22 07:31:14 -07:00
|
|
|
if (ni) {
|
2011-10-17 07:59:28 -07:00
|
|
|
node = GetAttribute(ni, true);
|
2008-10-22 07:31:14 -07:00
|
|
|
}
|
2010-04-19 08:41:39 -07:00
|
|
|
else {
|
2008-10-22 07:31:14 -07:00
|
|
|
*aResult = NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-10-22 07:31:14 -07:00
|
|
|
return node;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-10-22 07:31:14 -07:00
|
|
|
NS_IMETHODIMP
|
2012-08-22 08:56:38 -07:00
|
|
|
nsDOMAttributeMap::Item(uint32_t aIndex, nsIDOMNode** aReturn)
|
2008-10-22 07:31:14 -07:00
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
NS_IF_ADDREF(*aReturn = GetItemAt(aIndex, &rv));
|
|
|
|
return rv;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2012-08-22 08:56:38 -07:00
|
|
|
nsDOMAttributeMap::GetLength(uint32_t *aLength)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aLength);
|
|
|
|
|
|
|
|
if (mContent) {
|
|
|
|
*aLength = mContent->GetAttrCount();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
*aLength = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMAttributeMap::GetNamedItemNS(const nsAString& aNamespaceURI,
|
|
|
|
const nsAString& aLocalName,
|
|
|
|
nsIDOMNode** aReturn)
|
|
|
|
{
|
2012-10-16 04:51:00 -07:00
|
|
|
ErrorResult rv;
|
|
|
|
NS_IF_ADDREF(*aReturn = GetNamedItemNS(aNamespaceURI, aLocalName, rv));
|
|
|
|
return rv.ErrorCode();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
nsDOMAttribute*
|
|
|
|
nsDOMAttributeMap::GetNamedItemNS(const nsAString& aNamespaceURI,
|
|
|
|
const nsAString& aLocalName,
|
|
|
|
ErrorResult& aError)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-10-16 04:51:00 -07:00
|
|
|
nsCOMPtr<nsINodeInfo> ni = GetAttrNodeInfo(aNamespaceURI, aLocalName, aError);
|
|
|
|
if (!ni) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GetAttribute(ni, true);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
already_AddRefed<nsINodeInfo>
|
|
|
|
nsDOMAttributeMap::GetAttrNodeInfo(const nsAString& aNamespaceURI,
|
|
|
|
const nsAString& aLocalName,
|
|
|
|
mozilla::ErrorResult& aError)
|
|
|
|
{
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!mContent) {
|
2012-10-16 04:51:00 -07:00
|
|
|
return nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t nameSpaceID = kNameSpaceID_None;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (!aNamespaceURI.IsEmpty()) {
|
|
|
|
nameSpaceID =
|
|
|
|
nsContentUtils::NameSpaceManager()->GetNameSpaceID(aNamespaceURI);
|
|
|
|
|
|
|
|
if (nameSpaceID == kNameSpaceID_Unknown) {
|
2012-10-16 04:51:00 -07:00
|
|
|
return nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t i, count = mContent->GetAttrCount();
|
2007-03-22 10:30:00 -07:00
|
|
|
for (i = 0; i < count; ++i) {
|
|
|
|
const nsAttrName* name = mContent->GetAttrNameAt(i);
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t attrNS = name->NamespaceID();
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIAtom* nameAtom = name->LocalName();
|
|
|
|
|
|
|
|
if (nameSpaceID == attrNS &&
|
2010-03-08 07:45:00 -08:00
|
|
|
nameAtom->Equals(aLocalName)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsINodeInfo> ni;
|
2008-09-12 15:32:18 -07:00
|
|
|
ni = mContent->NodeInfo()->NodeInfoManager()->
|
2011-06-14 00:56:49 -07:00
|
|
|
GetNodeInfo(nameAtom, name->GetPrefix(), nameSpaceID,
|
|
|
|
nsIDOMNode::ATTRIBUTE_NODE);
|
2012-10-16 04:51:00 -07:00
|
|
|
if (!ni) {
|
|
|
|
aError.Throw(NS_ERROR_OUT_OF_MEMORY);
|
2010-04-19 08:41:39 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
return ni.forget();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
return nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMAttributeMap::RemoveNamedItemNS(const nsAString& aNamespaceURI,
|
|
|
|
const nsAString& aLocalName,
|
|
|
|
nsIDOMNode** aReturn)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aReturn);
|
2012-07-30 07:20:58 -07:00
|
|
|
*aReturn = nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
ErrorResult error;
|
|
|
|
nsCOMPtr<nsINodeInfo> ni = GetAttrNodeInfo(aNamespaceURI, aLocalName, error);
|
|
|
|
if (error.Failed()) {
|
|
|
|
return error.ErrorCode();
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
if (!ni) {
|
2008-03-10 16:02:36 -07:00
|
|
|
return NS_ERROR_DOM_NOT_FOUND_ERR;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
nsRefPtr<nsDOMAttribute> attr = RemoveAttribute(ni);
|
|
|
|
nsINodeInfo *attrNi = attr->NodeInfo();
|
|
|
|
mContent->UnsetAttr(attrNi->NamespaceID(), attrNi->NameAtom(), true);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
attr.forget(aReturn);
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t
|
2007-03-22 10:30:00 -07:00
|
|
|
nsDOMAttributeMap::Count() const
|
|
|
|
{
|
|
|
|
return mAttributeCache.Count();
|
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t
|
2007-03-22 10:30:00 -07:00
|
|
|
nsDOMAttributeMap::Enumerate(AttrCache::EnumReadFunction aFunc,
|
|
|
|
void *aUserArg) const
|
|
|
|
{
|
|
|
|
return mAttributeCache.EnumerateRead(aFunc, aUserArg);
|
|
|
|
}
|
2012-09-30 09:43:47 -07:00
|
|
|
|
|
|
|
size_t
|
|
|
|
AttrCacheSizeEnumerator(const nsAttrKey& aKey,
|
|
|
|
const nsRefPtr<nsDOMAttribute>& aValue,
|
|
|
|
nsMallocSizeOfFun aMallocSizeOf,
|
|
|
|
void* aUserArg)
|
|
|
|
{
|
|
|
|
return aMallocSizeOf(aValue.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
nsDOMAttributeMap::SizeOfIncludingThis(nsMallocSizeOfFun aMallocSizeOf) const
|
|
|
|
{
|
|
|
|
size_t n = aMallocSizeOf(this);
|
|
|
|
n += mAttributeCache.SizeOfExcludingThis(AttrCacheSizeEnumerator,
|
|
|
|
aMallocSizeOf);
|
|
|
|
|
|
|
|
// NB: mContent is non-owning and thus not counted.
|
|
|
|
return n;
|
|
|
|
}
|