2002-06-21 13:16:28 +02:00
|
|
|
#ifndef JEZUK_SimpleDOM_ELEMENTIMPL_H
|
|
|
|
#define JEZUK_SimpleDOM_ELEMENTIMPL_H
|
|
|
|
|
|
|
|
#include <DOM/Element.h>
|
|
|
|
#include <DOM/Simple/NodeImpl.h>
|
|
|
|
#include <DOM/Simple/ElementByTagImpl.h>
|
|
|
|
#include <DOM/Simple/AttrMap.h>
|
|
|
|
|
|
|
|
namespace SimpleDOM
|
|
|
|
{
|
|
|
|
|
|
|
|
template<class stringT, class string_adaptorT>
|
|
|
|
class ElementImpl : public DOM::Element_impl<stringT>,
|
|
|
|
public NodeImplWithChildren<stringT, string_adaptorT>
|
|
|
|
{
|
2004-09-18 01:17:51 +02:00
|
|
|
protected:
|
|
|
|
typedef NodeImplWithChildren<stringT, string_adaptorT> NodeT;
|
2004-09-14 22:51:36 +02:00
|
|
|
|
2002-06-21 13:16:28 +02:00
|
|
|
public:
|
|
|
|
ElementImpl(DocumentImpl<stringT, string_adaptorT>* ownerDoc, const stringT& tagName) :
|
|
|
|
DOM::Element_impl<stringT>(),
|
|
|
|
NodeImplWithChildren<stringT, string_adaptorT>(ownerDoc),
|
|
|
|
attributes_(ownerDoc),
|
2005-12-09 12:49:03 +01:00
|
|
|
tagName_(ownerDoc->stringPool(tagName))
|
2002-06-21 13:16:28 +02:00
|
|
|
{
|
|
|
|
attributes_.setOwnerElement(this);
|
|
|
|
} // ElementImpl
|
|
|
|
|
|
|
|
virtual ~ElementImpl()
|
|
|
|
{
|
|
|
|
} // ~ElementImpl
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////
|
|
|
|
// DOM::Element functions
|
2005-12-09 15:09:08 +01:00
|
|
|
virtual const stringT& getTagName() const { return getNodeName(); }
|
2002-06-21 13:16:28 +02:00
|
|
|
|
2005-12-09 17:01:31 +01:00
|
|
|
virtual const stringT& getAttribute(const stringT& name) const
|
2002-06-21 13:16:28 +02:00
|
|
|
{
|
|
|
|
return attributes_.getAttribute(name);
|
|
|
|
} // getAttribute
|
|
|
|
|
|
|
|
virtual void setAttribute(const stringT& name, const stringT& value)
|
|
|
|
{
|
|
|
|
attributes_.setAttribute(name, value);
|
|
|
|
} // setAttribute
|
|
|
|
|
|
|
|
virtual void removeAttribute(const stringT& name)
|
|
|
|
{
|
|
|
|
attributes_.removeAttribute(name);
|
|
|
|
} // removeAttribute
|
|
|
|
|
|
|
|
virtual DOM::Attr_impl<stringT>* getAttributeNode(const stringT& name) const
|
|
|
|
{
|
|
|
|
return attributes_.getAttributeNode(name);
|
|
|
|
} // getAttributeNode
|
|
|
|
|
|
|
|
virtual DOM::Attr_impl<stringT>* setAttributeNode(DOM::Attr_impl<stringT>* newAttr)
|
|
|
|
{
|
|
|
|
return attributes_.setAttributeNode(newAttr);
|
|
|
|
} // setAttributeNode
|
|
|
|
|
|
|
|
virtual DOM::Attr_impl<stringT>* removeAttributeNode(DOM::Attr_impl<stringT>* oldAttr)
|
|
|
|
{
|
|
|
|
return attributes_.removeAttributeNode(oldAttr);
|
|
|
|
} // removeAttributeNode
|
|
|
|
|
|
|
|
virtual DOM::NodeList_impl<stringT>* getElementsByTagName(const stringT& tagName) const
|
|
|
|
{
|
2004-09-18 01:17:51 +02:00
|
|
|
return new ElementByTagList<stringT, string_adaptorT>(NodeT::ownerDoc_,
|
2002-06-21 13:16:28 +02:00
|
|
|
const_cast<ElementImpl*>(this),
|
|
|
|
tagName);
|
|
|
|
} // getElementsByTagName
|
|
|
|
|
|
|
|
virtual stringT getAttributeNS(const stringT& namespaceURI, const stringT& localName) const
|
|
|
|
{
|
|
|
|
return attributes_.getAttributeNS(namespaceURI, localName);
|
|
|
|
} // getAttributeNS
|
|
|
|
|
|
|
|
virtual void setAttributeNS(const stringT& namespaceURI, const stringT& qualifiedName, const stringT& value)
|
|
|
|
{
|
|
|
|
attributes_.setAttributeNS(namespaceURI, qualifiedName, value);
|
|
|
|
} // setAttributeNS
|
|
|
|
|
|
|
|
virtual void removeAttributeNS(const stringT& namespaceURI, const stringT& localName)
|
|
|
|
{
|
|
|
|
attributes_.removeAttributeNS(namespaceURI, localName);
|
|
|
|
} // removeAttributeNS
|
|
|
|
|
|
|
|
virtual DOM::Attr_impl<stringT>* getAttributeNodeNS(const stringT& namespaceURI, const stringT& localName) const
|
|
|
|
{
|
|
|
|
return attributes_.getAttributeNodeNS(namespaceURI, localName);
|
|
|
|
} // getAttributeNodeNS
|
|
|
|
|
|
|
|
virtual DOM::Attr_impl<stringT>* setAttributeNodeNS(DOM::Attr_impl<stringT>* newAttr)
|
|
|
|
{
|
|
|
|
return attributes_.setAttributeNodeNS(newAttr);
|
|
|
|
} // setAttributeNodeNS
|
|
|
|
|
|
|
|
virtual DOM::NodeList_impl<stringT>* getElementsByTagNameNS(const stringT& namespaceURI, const stringT& localName) const
|
|
|
|
{
|
2004-09-18 01:17:51 +02:00
|
|
|
return new ElementByTagList<stringT, string_adaptorT>(NodeT::ownerDoc_,
|
2002-06-21 13:16:28 +02:00
|
|
|
const_cast<ElementImpl*>(this),
|
|
|
|
namespaceURI, localName);
|
|
|
|
} // getElementsByTagNameNS
|
|
|
|
|
|
|
|
virtual bool hasAttribute(const stringT& name) const
|
|
|
|
{
|
|
|
|
return attributes_.hasAttribute(name);
|
|
|
|
} // hasAttribute
|
|
|
|
|
|
|
|
virtual bool hasAttributeNS(const stringT& namespaceURI, const stringT& localName) const
|
|
|
|
{
|
|
|
|
return attributes_.hasAttributeNS(namespaceURI, localName);
|
|
|
|
} // hasAttributeNS
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////
|
|
|
|
// DOM::Node methods
|
|
|
|
virtual DOM::Node_base::Type getNodeType() const
|
|
|
|
{
|
|
|
|
return DOM::Node_base::ELEMENT_NODE;
|
|
|
|
} // getNodeType
|
|
|
|
|
2005-12-09 15:09:08 +01:00
|
|
|
virtual const stringT& getNodeName() const
|
2002-06-21 13:16:28 +02:00
|
|
|
{
|
2005-12-09 12:49:03 +01:00
|
|
|
return *tagName_;
|
2002-06-21 13:16:28 +02:00
|
|
|
} // getNodeName
|
|
|
|
|
|
|
|
virtual DOM::NamedNodeMap_impl<stringT>* getAttributes() const
|
|
|
|
{
|
|
|
|
return const_cast<AttrMap<stringT, string_adaptorT>*>(&attributes_);
|
|
|
|
} // getAttributes
|
|
|
|
|
|
|
|
virtual DOM::Node_impl<stringT>* cloneNode(bool deep) const
|
|
|
|
{
|
2005-12-09 12:49:03 +01:00
|
|
|
ElementImpl* clone = dynamic_cast<ElementImpl*>(NodeT::ownerDoc_->createElement(*tagName_));
|
2002-06-21 13:16:28 +02:00
|
|
|
cloneChildren(clone, deep);
|
|
|
|
return clone;
|
|
|
|
} // cloneNode
|
|
|
|
|
|
|
|
virtual bool hasAttributes() const
|
|
|
|
{
|
|
|
|
return (attributes_.getLength() > 0);
|
|
|
|
} // hasAttributes
|
|
|
|
|
|
|
|
virtual void setOwnerDoc(DocumentImpl<stringT, string_adaptorT>* ownerDoc)
|
|
|
|
{
|
|
|
|
attributes_.setOwnerDoc(ownerDoc);
|
|
|
|
NodeImplWithChildren<stringT, string_adaptorT>::setOwnerDoc(ownerDoc);
|
|
|
|
} // setOwnerDoc
|
|
|
|
|
|
|
|
virtual void setReadOnly(bool readOnly)
|
|
|
|
{
|
|
|
|
attributes_.setReadOnly(readOnly);
|
|
|
|
NodeImplWithChildren<stringT, string_adaptorT>::setReadOnly(readOnly);
|
|
|
|
} // setReadOnly
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void cloneChildren(ElementImpl* clone, bool deep) const
|
|
|
|
{
|
|
|
|
for(unsigned int i = 0; i < attributes_.getLength(); ++i)
|
|
|
|
{
|
|
|
|
DOM::Attr_impl<stringT>* a = dynamic_cast<DOM::Attr_impl<stringT>*>(attributes_.item(i));
|
|
|
|
if(a->getSpecified())
|
|
|
|
{
|
|
|
|
DOM::Attr_impl<stringT>* newA = dynamic_cast<DOM::Attr_impl<stringT>*>(a->cloneNode(true));
|
2005-09-08 23:43:21 +02:00
|
|
|
if(string_adaptorT::empty(a->getLocalName()))
|
2002-06-21 13:16:28 +02:00
|
|
|
clone->setAttributeNode(newA);
|
|
|
|
else
|
|
|
|
clone->setAttributeNodeNS(newA);
|
|
|
|
} // if ...
|
|
|
|
} // for
|
|
|
|
|
|
|
|
if(deep)
|
2004-09-18 01:17:51 +02:00
|
|
|
for(DOM::Node_impl<stringT>* c = NodeT::getFirstChild(); c != 0; c = c->getNextSibling())
|
2002-06-21 13:16:28 +02:00
|
|
|
clone->appendChild(c->cloneNode(true));
|
|
|
|
} // cloneChildren
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual void checkChildType(DOM::Node_impl<stringT>* child)
|
|
|
|
{
|
2002-11-23 21:03:54 +01:00
|
|
|
typename DOM::Node<stringT>::Type type = child->getNodeType();
|
2002-06-21 13:16:28 +02:00
|
|
|
if((type != DOM::Node<stringT>::ELEMENT_NODE) &&
|
|
|
|
(type != DOM::Node<stringT>::TEXT_NODE) &&
|
|
|
|
(type != DOM::Node<stringT>::COMMENT_NODE) &&
|
|
|
|
(type != DOM::Node<stringT>::PROCESSING_INSTRUCTION_NODE) &&
|
|
|
|
(type != DOM::Node<stringT>::CDATA_SECTION_NODE) &&
|
|
|
|
(type != DOM::Node<stringT>::ENTITY_REFERENCE_NODE))
|
|
|
|
throw DOM::DOMException(DOM::DOMException::HIERARCHY_REQUEST_ERR);
|
|
|
|
} // checkChildType
|
|
|
|
|
|
|
|
AttrMap<stringT, string_adaptorT> attributes_;
|
|
|
|
protected:
|
2005-12-09 12:49:03 +01:00
|
|
|
stringT const* tagName_;
|
2002-06-21 13:16:28 +02:00
|
|
|
}; // class ElementImpl
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace SAX2DOM
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|