arabica/DOM/Simple/ElementNSImpl.h

121 lines
3.9 KiB
C
Raw Normal View History

2002-06-21 13:16:28 +02:00
#ifndef JEZUK_SimpleDOM_ELEMENTNSIMPL_H
#define JEZUK_SimpleDOM_ELEMENTNSIMPL_H
#include <DOM/Simple/ElementImpl.h>
#include <DOM/Simple/Helpers.h>
namespace SimpleDOM
{
template<class stringT, class string_adaptorT>
class ElementNSImpl : public ElementImpl<stringT, string_adaptorT>
{
typedef typename string_adaptorT::size_type size_type;
2004-09-14 22:51:36 +02:00
typedef ElementImpl<stringT, string_adaptorT> ElementImplT;
2002-06-21 13:16:28 +02:00
public:
ElementNSImpl(DocumentImpl<stringT, string_adaptorT>* ownerDoc,
const stringT& namespaceURI,
bool hasNamespaceURI,
const stringT& qualifiedName) :
ElementImpl<stringT, string_adaptorT>(ownerDoc, qualifiedName),
hasNamespaceURI_(false)
{
string_adaptorT SA;
bool hasPrefix = false;
stringT prefix;
size_type index = string_adaptorT::find(qualifiedName, SA.makeStringT(":"));
2002-06-21 13:16:28 +02:00
if(index == string_adaptorT::npos)
{ //qualifiedName contains no ':'
localName_ = qualifiedName;
2002-06-21 13:16:28 +02:00
}
else
{
hasPrefix = true;
prefix = string_adaptorT::substr(qualifiedName, 0, index);
localName_ = string_adaptorT::substr(qualifiedName, index+1);
2002-06-21 13:16:28 +02:00
}
std::pair<bool, stringT> mappedURI =
checkPrefixAndNamespace<stringT, string_adaptorT>(hasPrefix, prefix, hasNamespaceURI, namespaceURI, DOM::Node<stringT>::ELEMENT_NODE);
hasNamespaceURI_ = mappedURI.first;
namespaceURI_ = mappedURI.second;
} // ElementImpl
virtual ~ElementNSImpl() { }
///////////////////////////////////////////////////////
// DOM::Node methods
virtual DOM::Node_impl<stringT>* cloneNode(bool deep) const
{
ElementNSImpl* clone = dynamic_cast<ElementNSImpl*>(ElementImplT::ownerDoc_->createElementNS(namespaceURI_, ElementImplT::tagName_));
2004-10-12 22:49:30 +02:00
ElementImplT::cloneChildren(clone, deep);
2002-06-21 13:16:28 +02:00
return clone;
} // cloneNode
virtual stringT getNamespaceURI() const
{
return namespaceURI_;
} // getNamespaceURI
virtual stringT getPrefix() const
{
string_adaptorT SA;
size_type index = string_adaptorT::find(ElementImplT::tagName_, SA.makeStringT(":"));
return (index != string_adaptorT::npos) ? string_adaptorT::substr(ElementImplT::tagName_, 0, index) : stringT();
2002-06-21 13:16:28 +02:00
} // getPrefix
virtual void setPrefix(const stringT& prefix)
{
ElementImplT::throwIfReadOnly();
2002-06-21 13:16:28 +02:00
if(hasNamespaceURI_ == false)
throw DOM::DOMException(DOM::DOMException::NAMESPACE_ERR);
if(string_adaptorT::empty(prefix))
2002-06-21 13:16:28 +02:00
{
ElementImplT::tagName_ = localName_;
2002-06-21 13:16:28 +02:00
return;
} // empty prefix
checkPrefixAndNamespace<stringT, string_adaptorT>(true, prefix, true, namespaceURI_, DOM::Node<stringT>::ELEMENT_NODE);
string_adaptorT::append(ElementImplT::tagName_, prefix);
string_adaptorT::append(ElementImplT::tagName_, string_adaptorT().makeStringT(":"));
string_adaptorT::append(ElementImplT::tagName_, localName_);
2002-06-21 13:16:28 +02:00
} // setPrefix
virtual stringT getLocalName() const
{
return localName_;
} // getLocalName
// additional three methods - since C++ std::string (and by implication
// stringT) don't differenciate between a null string and an empty string,
// but the DOM recommendation does, I have to introduce these three methods
// to disambiguate. If they return false, the corresponding attribute should be
// considered null. If they return true, the attribute has been set EVEN IF
// it has been set to the empty string
virtual bool hasNamespaceURI() const
{
return hasNamespaceURI_;
} // hasNamespaceURI
virtual bool hasPrefix() const
{
return (string_adaptorT::find(ElementImplT::tagName_, string_adaptorT().makeStringT(":")) != string_adaptorT::npos);
2002-06-21 13:16:28 +02:00
} // hasPrefix
private:
stringT namespaceURI_;
stringT localName_;
bool hasNamespaceURI_;
}; // class ElementImpl
} // namespace SAX2DOM
#endif