2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Allan Beaufour <allan@beaufour.dk>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Implementation of the |attributes| property of DOM Core's nsIDOMNode object.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsDOMAttributeMap.h"
|
|
|
|
#include "nsDOMAttribute.h"
|
2008-02-21 18:18:43 -08:00
|
|
|
#include "nsIDOM3Document.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsGenericElement.h"
|
|
|
|
#include "nsIContent.h"
|
2008-02-21 18:18:43 -08:00
|
|
|
#include "nsIDocument.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsINameSpaceManager.h"
|
|
|
|
#include "nsDOMError.h"
|
|
|
|
#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
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsDOMAttributeMap::Init()
|
|
|
|
{
|
|
|
|
return mAttributeCache.Init();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
{
|
2010-04-19 08:41:39 -07:00
|
|
|
aData->SetMap(nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return PL_DHASH_REMOVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsDOMAttributeMap::~nsDOMAttributeMap()
|
|
|
|
{
|
|
|
|
mAttributeCache.Enumerate(RemoveMapRef, nsnull);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDOMAttributeMap::DropReference()
|
|
|
|
{
|
|
|
|
mAttributeCache.Enumerate(RemoveMapRef, nsnull);
|
|
|
|
mContent = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
PRUint32 n = mAttributeCache.Enumerate(SetOwnerDocumentFunc, aDocument);
|
|
|
|
NS_ENSURE_TRUE(n == mAttributeCache.Count(), NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDOMAttributeMap::DropAttribute(PRInt32 aNamespaceID, nsIAtom* aLocalName)
|
|
|
|
{
|
|
|
|
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
|
2010-04-19 08:41:39 -07:00
|
|
|
node->SetMap(nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Remove from cache
|
|
|
|
mAttributeCache.Remove(attr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2008-10-22 07:31:14 -07:00
|
|
|
nsDOMAttributeMap::RemoveAttribute(nsINodeInfo* aNodeInfo, nsIDOMNode** aReturn)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-10-22 07:31:14 -07:00
|
|
|
NS_ASSERTION(aNodeInfo, "RemoveAttribute() called with aNodeInfo == nsnull!");
|
|
|
|
NS_ASSERTION(aReturn, "RemoveAttribute() called with aReturn == nsnull");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
*aReturn = nsnull;
|
|
|
|
|
|
|
|
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;
|
|
|
|
nsCOMPtr<nsIDOMNode> newAttr =
|
2010-10-14 07:07:20 -07:00
|
|
|
new nsDOMAttribute(nsnull, ni.forget(), value, PR_TRUE);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!newAttr) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
newAttr.swap(*aReturn);
|
|
|
|
}
|
2008-10-22 07:31:14 -07:00
|
|
|
else {
|
2007-03-22 10:30:00 -07:00
|
|
|
// Break link to map
|
2010-04-19 08:41:39 -07:00
|
|
|
node->SetMap(nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Remove from cache
|
|
|
|
mAttributeCache.Remove(attr);
|
2010-04-19 08:41:39 -07:00
|
|
|
|
|
|
|
node.forget(aReturn);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-04-19 08:41:39 -07:00
|
|
|
nsDOMAttribute*
|
2010-10-14 07:07:20 -07:00
|
|
|
nsDOMAttributeMap::GetAttribute(nsINodeInfo* aNodeInfo, PRBool aNsAware)
|
2008-10-22 07:31:14 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aNodeInfo, "GetAttribute() called with aNodeInfo == nsnull!");
|
|
|
|
|
|
|
|
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);
|
2008-10-22 07:31:14 -07:00
|
|
|
if (newAttr && mAttributeCache.Put(attr, newAttr)) {
|
|
|
|
node = newAttr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2010-04-19 08:41:39 -07:00
|
|
|
nsDOMAttribute*
|
2008-10-31 14:40:35 -07:00
|
|
|
nsDOMAttributeMap::GetNamedItem(const nsAString& aAttrName, nsresult *aResult)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-10-31 14:40:35 -07:00
|
|
|
*aResult = NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (mContent) {
|
|
|
|
nsCOMPtr<nsINodeInfo> ni =
|
|
|
|
mContent->GetExistingAttrNameFromQName(aAttrName);
|
|
|
|
if (ni) {
|
2010-10-14 07:07:20 -07:00
|
|
|
return GetAttribute(ni, PR_FALSE);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-31 14:40:35 -07:00
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMAttributeMap::GetNamedItem(const nsAString& aAttrName,
|
|
|
|
nsIDOMNode** aAttribute)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aAttribute);
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
NS_IF_ADDREF(*aAttribute = GetNamedItem(aAttrName, &rv));
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMAttributeMap::SetNamedItem(nsIDOMNode *aNode, nsIDOMNode **aReturn)
|
|
|
|
{
|
|
|
|
return SetNamedItemInternal(aNode, aReturn, PR_FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMAttributeMap::SetNamedItemNS(nsIDOMNode *aNode, nsIDOMNode **aReturn)
|
|
|
|
{
|
|
|
|
return SetNamedItemInternal(aNode, aReturn, PR_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsDOMAttributeMap::SetNamedItemInternal(nsIDOMNode *aNode,
|
|
|
|
nsIDOMNode **aReturn,
|
|
|
|
PRBool aWithNS)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aNode);
|
|
|
|
NS_ENSURE_ARG_POINTER(aReturn);
|
|
|
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
*aReturn = nsnull;
|
|
|
|
nsCOMPtr<nsIDOMNode> tmpReturn;
|
|
|
|
|
|
|
|
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) {
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_DOM_HIERARCHY_REQUEST_ERR;
|
|
|
|
}
|
|
|
|
|
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) {
|
|
|
|
return NS_ERROR_DOM_INUSE_ATTRIBUTE_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// setting a preexisting attribute is a no-op, just return the same
|
|
|
|
// node.
|
|
|
|
NS_ADDREF(*aReturn = aNode);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mContent->HasSameOwnerDoc(iAttribute)) {
|
2008-02-21 18:18:43 -08:00
|
|
|
nsCOMPtr<nsIDOM3Document> domDoc =
|
|
|
|
do_QueryInterface(mContent->GetOwnerDoc(), &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> adoptedNode;
|
|
|
|
rv = domDoc->AdoptNode(aNode, getter_AddRefs(adoptedNode));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
// SetNamedItemNS()
|
|
|
|
if (aWithNS) {
|
|
|
|
// Return existing attribute, if present
|
|
|
|
ni = iAttribute->NodeInfo();
|
|
|
|
|
|
|
|
if (mContent->HasAttr(ni->NamespaceID(), ni->NameAtom())) {
|
2008-10-22 07:31:14 -07:00
|
|
|
rv = RemoveAttribute(ni, getter_AddRefs(tmpReturn));
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else { // SetNamedItem()
|
|
|
|
attribute->GetName(name);
|
|
|
|
|
|
|
|
// get node-info of old attribute
|
|
|
|
ni = mContent->GetExistingAttrNameFromQName(name);
|
|
|
|
if (ni) {
|
2008-10-22 07:31:14 -07:00
|
|
|
rv = RemoveAttribute(ni, getter_AddRefs(tmpReturn));
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
else {
|
2009-12-28 06:35:06 -08:00
|
|
|
if (mContent->IsInHTMLDocument() &&
|
|
|
|
mContent->IsHTML()) {
|
|
|
|
nsAutoString lower;
|
|
|
|
ToLowerCase(name, lower);
|
|
|
|
name = lower;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
rv = mContent->NodeInfo()->NodeInfoManager()->
|
|
|
|
GetNodeInfo(name, nsnull, kNameSpaceID_None, getter_AddRefs(ni));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// 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());
|
|
|
|
rv = mAttributeCache.Put(attrkey, attribute);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
iAttribute->SetMap(this);
|
|
|
|
|
2009-12-28 06:35:06 -08:00
|
|
|
rv = mContent->SetAttr(ni->NamespaceID(), ni->NameAtom(),
|
|
|
|
ni->GetPrefixAtom(), value, PR_TRUE);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
DropAttribute(ni->NamespaceID(), ni->NameAtom());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tmpReturn.swap(*aReturn); // transfers ref.
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMAttributeMap::RemoveNamedItem(const nsAString& aName,
|
|
|
|
nsIDOMNode** aReturn)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aReturn);
|
|
|
|
*aReturn = nsnull;
|
|
|
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
if (mContent) {
|
|
|
|
nsCOMPtr<nsINodeInfo> ni = mContent->GetExistingAttrNameFromQName(aName);
|
|
|
|
if (!ni) {
|
|
|
|
return NS_ERROR_DOM_NOT_FOUND_ERR;
|
|
|
|
}
|
|
|
|
|
2010-10-14 07:07:20 -07:00
|
|
|
NS_ADDREF(*aReturn = GetAttribute(ni, PR_TRUE));
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// This removes the attribute node from the attribute map.
|
|
|
|
rv = mContent->UnsetAttr(ni->NamespaceID(), ni->NameAtom(), PR_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-19 08:41:39 -07:00
|
|
|
nsDOMAttribute*
|
2008-10-22 07:31:14 -07:00
|
|
|
nsDOMAttributeMap::GetItemAt(PRUint32 aIndex, nsresult *aResult)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-10-22 07:31:14 -07:00
|
|
|
*aResult = NS_OK;
|
|
|
|
|
2010-04-19 08:41:39 -07:00
|
|
|
nsDOMAttribute* node = nsnull;
|
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()->
|
|
|
|
GetNodeInfo(name->LocalName(), name->GetPrefix(), name->NamespaceID());
|
2008-10-22 07:31:14 -07:00
|
|
|
if (ni) {
|
2010-10-14 07:07:20 -07:00
|
|
|
node = GetAttribute(ni, PR_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
|
|
|
|
nsDOMAttributeMap::Item(PRUint32 aIndex, nsIDOMNode** aReturn)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
NS_IF_ADDREF(*aReturn = GetItemAt(aIndex, &rv));
|
|
|
|
return rv;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsDOMAttributeMap::GetLength(PRUint32 *aLength)
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
return GetNamedItemNSInternal(aNamespaceURI, aLocalName, aReturn);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsDOMAttributeMap::GetNamedItemNSInternal(const nsAString& aNamespaceURI,
|
|
|
|
const nsAString& aLocalName,
|
|
|
|
nsIDOMNode** aReturn,
|
|
|
|
PRBool aRemove)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aReturn);
|
|
|
|
*aReturn = nsnull;
|
|
|
|
|
|
|
|
if (!mContent) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 nameSpaceID = kNameSpaceID_None;
|
|
|
|
|
|
|
|
if (!aNamespaceURI.IsEmpty()) {
|
|
|
|
nameSpaceID =
|
|
|
|
nsContentUtils::NameSpaceManager()->GetNameSpaceID(aNamespaceURI);
|
|
|
|
|
|
|
|
if (nameSpaceID == kNameSpaceID_Unknown) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 i, count = mContent->GetAttrCount();
|
|
|
|
for (i = 0; i < count; ++i) {
|
|
|
|
const nsAttrName* name = mContent->GetAttrNameAt(i);
|
|
|
|
PRInt32 attrNS = name->NamespaceID();
|
|
|
|
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()->
|
|
|
|
GetNodeInfo(nameAtom, name->GetPrefix(), nameSpaceID);
|
2008-09-25 15:46:52 -07:00
|
|
|
NS_ENSURE_TRUE(ni, NS_ERROR_OUT_OF_MEMORY);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-04-19 08:41:39 -07:00
|
|
|
if (aRemove) {
|
|
|
|
return RemoveAttribute(ni, aReturn);
|
|
|
|
}
|
|
|
|
|
2010-10-14 07:07:20 -07:00
|
|
|
NS_ADDREF(*aReturn = GetAttribute(ni, PR_TRUE));
|
2010-04-19 08:41:39 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMAttributeMap::RemoveNamedItemNS(const nsAString& aNamespaceURI,
|
|
|
|
const nsAString& aLocalName,
|
|
|
|
nsIDOMNode** aReturn)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aReturn);
|
|
|
|
*aReturn = nsnull;
|
|
|
|
|
|
|
|
nsresult rv = GetNamedItemNSInternal(aNamespaceURI,
|
|
|
|
aLocalName,
|
|
|
|
aReturn,
|
|
|
|
PR_TRUE);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (!*aReturn) {
|
2008-03-10 16:02:36 -07:00
|
|
|
return NS_ERROR_DOM_NOT_FOUND_ERR;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAttribute> attr = do_QueryInterface(*aReturn);
|
|
|
|
NS_ASSERTION(attr, "attribute returned from nsDOMAttributeMap::GetNameItemNS "
|
|
|
|
"didn't implement nsIAttribute");
|
|
|
|
NS_ENSURE_TRUE(attr, NS_ERROR_UNEXPECTED);
|
|
|
|
|
|
|
|
nsINodeInfo *ni = attr->NodeInfo();
|
|
|
|
mContent->UnsetAttr(ni->NamespaceID(), ni->NameAtom(), PR_TRUE);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32
|
|
|
|
nsDOMAttributeMap::Count() const
|
|
|
|
{
|
|
|
|
return mAttributeCache.Count();
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32
|
|
|
|
nsDOMAttributeMap::Enumerate(AttrCache::EnumReadFunction aFunc,
|
|
|
|
void *aUserArg) const
|
|
|
|
{
|
|
|
|
return mAttributeCache.EnumerateRead(aFunc, aUserArg);
|
|
|
|
}
|