blob: 8fa0bfe6527430c337a4e4b3a510956ea01fd52a [file] [log] [blame]
/*
* Copyright 1999-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "XercesTextWrapper.hpp"
#include <cassert>
#include <xercesc/dom/DOMText.hpp>
#include <xalanc/DOMSupport/DOMServices.hpp>
#include "XercesWrapperHelper.hpp"
#include "XercesWrapperNavigator.hpp"
#include "XercesDOMWrapperException.hpp"
#include "XercesDocumentWrapper.hpp"
XALAN_CPP_NAMESPACE_BEGIN
XercesTextWrapper::XercesTextWrapper(
const DOMTextType* theXercesText,
const XercesWrapperNavigator& theNavigator) :
XalanText(),
m_xercesNode(theXercesText),
m_navigator(theNavigator)
{
assert(m_xercesNode != 0);
}
XercesTextWrapper::~XercesTextWrapper()
{
}
const XalanDOMString&
XercesTextWrapper::getNodeName() const
{
return m_navigator.getPooledString(m_xercesNode->getNodeName());
}
const XalanDOMString&
XercesTextWrapper::getNodeValue() const
{
return m_navigator.getPooledString(m_xercesNode->getNodeValue());
}
XercesTextWrapper::NodeType
XercesTextWrapper::getNodeType() const
{
return TEXT_NODE;
}
XalanNode*
XercesTextWrapper::getParentNode() const
{
return m_navigator.getParentNode(m_xercesNode);
}
const XalanNodeList*
XercesTextWrapper::getChildNodes() const
{
return 0;
}
XalanNode*
XercesTextWrapper::getFirstChild() const
{
return 0;
}
XalanNode*
XercesTextWrapper::getLastChild() const
{
return 0;
}
XalanNode*
XercesTextWrapper::getPreviousSibling() const
{
return m_navigator.getPreviousSibling(m_xercesNode);
}
XalanNode*
XercesTextWrapper::getNextSibling() const
{
return m_navigator.getNextSibling(m_xercesNode);
}
const XalanNamedNodeMap*
XercesTextWrapper::getAttributes() const
{
return 0;
}
XalanDocument*
XercesTextWrapper::getOwnerDocument() const
{
return m_navigator.getOwnerDocument();
}
#if defined(XALAN_NO_COVARIANT_RETURN_TYPE)
XalanNode*
#else
XercesTextWrapper*
#endif
XercesTextWrapper::cloneNode(bool /* deep */) const
{
throw XercesDOMWrapperException(XercesDOMWrapperException::NOT_SUPPORTED_ERR);
return 0;
}
XalanNode*
XercesTextWrapper::insertBefore(
XalanNode* /* newChild */,
XalanNode* /* refChild */)
{
throw XercesDOMWrapperException(XercesDOMWrapperException::HIERARCHY_REQUEST_ERR);
return 0;
}
XalanNode*
XercesTextWrapper::replaceChild(
XalanNode* /* newChild */,
XalanNode* /* oldChild */)
{
throw XercesDOMWrapperException(XercesDOMWrapperException::HIERARCHY_REQUEST_ERR);
return 0;
}
XalanNode*
XercesTextWrapper::removeChild(XalanNode* /* oldChild */)
{
throw XercesDOMWrapperException(XercesDOMWrapperException::HIERARCHY_REQUEST_ERR);
return 0;
}
XalanNode*
XercesTextWrapper::appendChild(XalanNode* /* newChild */)
{
throw XercesDOMWrapperException(XercesDOMWrapperException::HIERARCHY_REQUEST_ERR);
return 0;
}
bool
XercesTextWrapper::hasChildNodes() const
{
return false;
}
void
XercesTextWrapper::setNodeValue(const XalanDOMString& /* nodeValue */)
{
throw XalanDOMException(XalanDOMException::NO_MODIFICATION_ALLOWED_ERR);
}
void
XercesTextWrapper::normalize()
{
throw XalanDOMException(XalanDOMException::NO_MODIFICATION_ALLOWED_ERR);
}
bool
XercesTextWrapper::isSupported(
const XalanDOMString& feature,
const XalanDOMString& version) const
{
return XercesWrapperHelper::isSupported(m_xercesNode, feature, version);
}
const XalanDOMString&
XercesTextWrapper::getNamespaceURI() const
{
return m_navigator.getPooledString(m_xercesNode->getNamespaceURI());
}
const XalanDOMString&
XercesTextWrapper::getPrefix() const
{
return m_navigator.getPooledString(m_xercesNode->getPrefix());
}
const XalanDOMString&
XercesTextWrapper::getLocalName() const
{
return m_navigator.getPooledString(m_xercesNode->getLocalName());
}
void
XercesTextWrapper::setPrefix(const XalanDOMString& /* prefix */)
{
throw XalanDOMException(XalanDOMException::NO_MODIFICATION_ALLOWED_ERR);
}
bool
XercesTextWrapper::isIndexed() const
{
return m_navigator.getOwnerDocument()->isIndexed();
}
XercesTextWrapper::IndexType
XercesTextWrapper::getIndex() const
{
return m_navigator.getIndex();
}
const XalanDOMString&
XercesTextWrapper::getData() const
{
return m_navigator.getPooledString(m_xercesNode->getData());
}
unsigned int
XercesTextWrapper::getLength() const
{
return m_xercesNode->getLength();
}
XalanDOMString
XercesTextWrapper::substringData(
unsigned int offset,
unsigned int count) const
{
return XercesWrapperHelper::substringData(m_xercesNode, offset, count);
}
void
XercesTextWrapper::appendData(const XalanDOMString& /* arg */)
{
throw XalanDOMException(XalanDOMException::NO_MODIFICATION_ALLOWED_ERR);
}
void
XercesTextWrapper::insertData(
unsigned int /* offset */,
const XalanDOMString& /* arg */)
{
throw XalanDOMException(XalanDOMException::NO_MODIFICATION_ALLOWED_ERR);
}
void
XercesTextWrapper::deleteData(
unsigned int /* offset */,
unsigned int /* count */)
{
throw XalanDOMException(XalanDOMException::NO_MODIFICATION_ALLOWED_ERR);
}
void
XercesTextWrapper::replaceData(
unsigned int /* offset */,
unsigned int /* count */,
const XalanDOMString& /* arg */)
{
throw XalanDOMException(XalanDOMException::NO_MODIFICATION_ALLOWED_ERR);
}
XalanText*
XercesTextWrapper::splitText(unsigned int /* offset */)
{
throw XalanDOMException(XalanDOMException::NO_MODIFICATION_ALLOWED_ERR);
return 0;
}
bool
XercesTextWrapper::isIgnorableWhitespace() const
{
return isXMLWhitespace(getData());
}
XALAN_CPP_NAMESPACE_END