/* * (C) Copyright The MITRE Corporation 1999 All rights reserved. * * The contents of this file are subject to the Mozilla Public License * Version 1.0 (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/ * * The program provided "as is" without any warranty express or * implied, including the warranty of non-infringement and the implied * warranties of merchantibility and fitness for a particular purpose. * The Copyright owner will not be liable for any damages suffered by * you as a result of using the Program. In no event will the Copyright * owner be liable for any special, indirect or consequential damages or * lost profits even if the Copyright owner has been advised of the * possibility of their occurrence. * * Please see release.txt distributed with this file for more information. * * Contributor(s): Tom Kneeland * Peter Van der Beken * */ /* Implementation of the wrapper class to convert the Mozilla nsIDOMNode interface into a TransforMIIX Node interface. */ #include "mozilladom.h" #include "ArrayList.h" #include "URIUtils.h" const String XMLBASE_ATTR = "xml:base"; MOZ_DECL_CTOR_COUNTER(Node) /** * Construct a wrapper with the specified Mozilla object and document owner. * * @param aNode the nsIDOMNode you want to wrap * @param aOwner the document that owns this object */ Node::Node(nsIDOMNode* aNode, Document* aOwner) : MozillaObjectWrapper(aNode, aOwner) { MOZ_COUNT_CTOR(Node); } /** * Destructor */ Node::~Node() { MOZ_COUNT_DTOR(Node); } /** * Wrap a different Mozilla object with this wrapper. * * @param aNode the nsIDOMNode you want to wrap */ void Node::setNSObj(nsIDOMNode* aNode) { NSI_FROM_TX(Node) // First we must remove this wrapper from the document hash table since we // don't want to be associated with the existing nsIDOM* object anymore if (ownerDocument && nsNode) ownerDocument->removeWrapper(nsNode); // Now assume control of the new node MozillaObjectWrapper::setNSObj(aNode); // Finally, place our selves back in the hash table if (ownerDocument && aNode) ownerDocument->addWrapper(this); } /** * Call nsIDOMNode::GetNodeName to get the node's name. * * @return the node's name */ const String& Node::getNodeName() { NSI_FROM_TX(Node) nodeName.clear(); if (nsNode) nsNode->GetNodeName(nodeName.getNSString()); return nodeName; } /** * Call nsIDOMNode::GetNodeValue to get the node's value. * * @return the node's name */ const String& Node::getNodeValue() { NSI_FROM_TX(Node) nodeValue.clear(); if (nsNode) nsNode->GetNodeValue(nodeValue.getNSString()); return nodeValue; } /** * Call nsIDOMNode::GetNodeType to get the node's type. * * @return the node's type */ unsigned short Node::getNodeType() const { NSI_FROM_TX(Node) unsigned short nodeType = 0; if (nsNode) nsNode->GetNodeType(&nodeType); return nodeType; } /** * Call nsIDOMNode::GetParentNode to get the node's parent. * * @return the node's parent */ Node* Node::getParentNode() { NSI_FROM_TX_NULL_CHECK(Node) nsCOMPtr tmpParent; if (NS_SUCCEEDED(nsNode->GetParentNode(getter_AddRefs(tmpParent)))) return ownerDocument->createWrapper(tmpParent); else return NULL; } /** * Call nsIDOMNode::GetChildNodes to get the node's childnodes. * * @return the node's children */ NodeList* Node::getChildNodes() { NSI_FROM_TX_NULL_CHECK(Node) nsCOMPtr tmpNodeList; if (NS_SUCCEEDED(nsNode->GetChildNodes(getter_AddRefs(tmpNodeList)))) return (NodeList*)ownerDocument->createNodeList(tmpNodeList); else return NULL; } /** * Call nsIDOMNode::GetFirstChild to get the node's first child. * * @return the node's first child */ Node* Node::getFirstChild() { NSI_FROM_TX_NULL_CHECK(Node) nsCOMPtr tmpFirstChild; if (NS_SUCCEEDED(nsNode->GetFirstChild(getter_AddRefs(tmpFirstChild)))) return ownerDocument->createWrapper(tmpFirstChild); else return NULL; } /** * Call nsIDOMNode::GetLastChild to get the node's last child. * * @return the node's first child */ Node* Node::getLastChild() { NSI_FROM_TX_NULL_CHECK(Node) nsCOMPtr tmpLastChild; if (NS_SUCCEEDED(nsNode->GetLastChild(getter_AddRefs(tmpLastChild)))) return ownerDocument->createWrapper(tmpLastChild); else return NULL; } /** * Call nsIDOMNode::GetPreviousSibling to get the node's previous sibling. * * @return the node's previous sibling */ Node* Node::getPreviousSibling() { NSI_FROM_TX_NULL_CHECK(Node) nsCOMPtr tmpPrevSib; if (NS_SUCCEEDED(nsNode->GetPreviousSibling(getter_AddRefs(tmpPrevSib)))) return ownerDocument->createWrapper(tmpPrevSib); else return NULL; } /** * Call nsIDOMNode::GetNextSibling to get the node's next sibling. * * @return the node's next sibling */ Node* Node::getNextSibling() { NSI_FROM_TX_NULL_CHECK(Node) nsCOMPtr tmpNextSib; if (NS_SUCCEEDED(nsNode->GetNextSibling(getter_AddRefs(tmpNextSib)))) return ownerDocument->createWrapper(tmpNextSib); else return NULL; } /** * Call nsIDOMNode::GetAttributes to get the node's attributes. * * @return the node's attributes */ NamedNodeMap* Node::getAttributes() { NSI_FROM_TX_NULL_CHECK(Node) nsCOMPtr tmpAttributes; if (NS_SUCCEEDED(nsNode->GetAttributes(getter_AddRefs(tmpAttributes)))) return (NamedNodeMap*)ownerDocument->createNamedNodeMap(tmpAttributes); else return NULL; } /** * Get this wrapper's owning document. * * @return the wrapper's owning document */ Document* Node::getOwnerDocument() { return ownerDocument; } /** * Call nsIDOMNode::SetNodeValue to set this node's value. * * @param aNewNodeValue the new value for the node */ void Node::setNodeValue(const String& aNewNodeValue) { NSI_FROM_TX(Node) if (nsNode) nsNode->SetNodeValue(aNewNodeValue.getConstNSString()); } /** * Call nsIDOMNode::insertBefore to insert a new child before an existing child. * * @param aNewChild the new child to insert * @param aRefChild the child before which the new child is inserted * * @return the inserted child */ Node* Node::insertBefore(Node* aNewChild, Node* aRefChild) { NSI_FROM_TX_NULL_CHECK(Node) nsCOMPtr newChild(do_QueryInterface(GET_NSOBJ(aNewChild))); nsCOMPtr refChild(do_QueryInterface(GET_NSOBJ(aRefChild))); nsCOMPtr returnValue; if (NS_SUCCEEDED(nsNode->InsertBefore(newChild, refChild, getter_AddRefs(returnValue)))) return ownerDocument->createWrapper(returnValue); else return NULL; } /** * Call nsIDOMNode::ReplaceChild to replace an existing child with a new child. * * @param aNewChild the new child to insert * @param aOldChild the child that has to be replaced * * @return the replaced child */ Node* Node::replaceChild(Node* aNewChild, Node* aOldChild) { NSI_FROM_TX_NULL_CHECK(Node) nsCOMPtr newChild(do_QueryInterface(GET_NSOBJ(aNewChild))); nsCOMPtr oldChild(do_QueryInterface(GET_NSOBJ(aOldChild))); nsCOMPtr returnValue; if (NS_SUCCEEDED(nsNode->ReplaceChild(newChild, oldChild, getter_AddRefs(returnValue)))) return (Node*)ownerDocument->removeWrapper(returnValue.get()); else return NULL; } /** * Call nsIDOMNode::RemoveChild to remove a child. * * @param aOldChild the child to remove * * @return the removed child */ Node* Node::removeChild(Node* aOldChild) { NSI_FROM_TX_NULL_CHECK(Node) nsCOMPtr oldChild(do_QueryInterface(GET_NSOBJ(aOldChild))); nsCOMPtr returnValue; if (NS_SUCCEEDED(nsNode->RemoveChild(oldChild, getter_AddRefs(returnValue)))) return (Node*)ownerDocument->removeWrapper(returnValue.get()); else return NULL; } /** * Call nsIDOMNode::AppendChild to append a child to the current node. * * @param aNewChild the child to append * * @return the new child */ Node* Node::appendChild(Node* aNewChild) { NSI_FROM_TX_NULL_CHECK(Node) nsCOMPtr newChild(do_QueryInterface(GET_NSOBJ(aNewChild))); nsCOMPtr returnValue; if (NS_SUCCEEDED(nsNode->AppendChild(newChild, getter_AddRefs(returnValue)))) return ownerDocument->createWrapper(returnValue); else return NULL; } /** * Call nsIDOMNode::CloneNode to clone this node. * * @param aDeep recursive cloning? * @param aDest the Node to put the cloned nsIDOMNode into * * @return the new (cloned) node */ Node* Node::cloneNode(MBool aDeep, Node* aDest) { NSI_FROM_TX_NULL_CHECK(Node) nsCOMPtr returnValue; if (NS_SUCCEEDED(nsNode->CloneNode(aDeep, getter_AddRefs(returnValue)))) { aDest->setNSObj(returnValue); return aDest; } else return NULL; } /** * Call nsIDOMNode::HasChildNodes to return if this node has children. * * @return boolean value that says if this node has children */ MBool Node::hasChildNodes() const { NSI_FROM_TX(Node) PRBool returnValue = MB_FALSE; if (nsNode) nsNode->HasChildNodes(&returnValue); return returnValue; } /** * Returns the base URI of the node. Acccounts for xml:base * attributes. * * @return base URI for the node **/ String Node::getBaseURI() { Node* node=this; ArrayList baseUrls; String url; Node* xbAttr; while(node) { switch(node->getNodeType()) { case Node::ELEMENT_NODE : xbAttr = ((Element*)node)->getAttributeNode(XMLBASE_ATTR); if(xbAttr) baseUrls.add(new String(xbAttr->getNodeValue())); break; case Node::DOCUMENT_NODE : baseUrls.add(new String(((Document*)node)->getBaseURI())); break; default: break; } node = node->getParentNode(); } if(baseUrls.size()) { url = *((String*)baseUrls.get(baseUrls.size()-1)); for(int i=baseUrls.size()-2;i>=0;i--) { String dest; URIUtils::resolveHref(*(String*)baseUrls.get(i), url, dest); url = dest; } } baseUrls.clear(MB_TRUE); return url; }