188 lines
4.8 KiB
C++
188 lines
4.8 KiB
C++
|
/*
|
||
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||
|
* contributor license agreements. See the NOTICE file distributed with
|
||
|
* this work for additional information regarding copyright ownership.
|
||
|
* The ASF licenses this file to You 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.
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* $Id: DOMLocatorImpl.hpp 676853 2008-07-15 09:58:05Z borisk $
|
||
|
*/
|
||
|
|
||
|
#if !defined(XERCESC_INCLUDE_GUARD_DOMLOCATORIMPL_HPP)
|
||
|
#define XERCESC_INCLUDE_GUARD_DOMLOCATORIMPL_HPP
|
||
|
|
||
|
#include <xercesc/dom/DOMLocator.hpp>
|
||
|
|
||
|
XERCES_CPP_NAMESPACE_BEGIN
|
||
|
|
||
|
/**
|
||
|
* Introduced in DOM Level 3
|
||
|
*
|
||
|
* Implementation of a DOMLocator interface.
|
||
|
*
|
||
|
* @see DOMLocator#DOMLocator
|
||
|
*/
|
||
|
|
||
|
class CDOM_EXPORT DOMLocatorImpl : public DOMLocator
|
||
|
{
|
||
|
public:
|
||
|
/** @name Constructors and Destructor */
|
||
|
//@{
|
||
|
|
||
|
/** Constructor */
|
||
|
DOMLocatorImpl();
|
||
|
|
||
|
DOMLocatorImpl
|
||
|
(
|
||
|
const XMLFileLoc lineNum
|
||
|
, const XMLFileLoc columnNum
|
||
|
, DOMNode* const errorNode
|
||
|
, const XMLCh* const uri
|
||
|
, const XMLFilePos offset = ~(XMLFilePos(0))
|
||
|
, const XMLFilePos utf16Offset = ~(XMLFilePos(0))
|
||
|
);
|
||
|
|
||
|
/** Desctructor */
|
||
|
virtual ~DOMLocatorImpl();
|
||
|
|
||
|
//@}
|
||
|
|
||
|
// DOMLocator interface
|
||
|
virtual XMLFileLoc getLineNumber() const;
|
||
|
virtual XMLFileLoc getColumnNumber() const;
|
||
|
virtual XMLFilePos getByteOffset() const;
|
||
|
virtual XMLFilePos getUtf16Offset() const;
|
||
|
virtual DOMNode* getRelatedNode() const;
|
||
|
virtual const XMLCh* getURI() const;
|
||
|
|
||
|
// Setter functions
|
||
|
void setLineNumber(const XMLFileLoc lineNumber);
|
||
|
void setColumnNumber(const XMLFileLoc columnNumber);
|
||
|
void setByteOffset(const XMLFilePos offset);
|
||
|
void setUtf16Offset(const XMLFilePos offset);
|
||
|
void setRelatedNode(DOMNode* const errorNode);
|
||
|
void setURI(const XMLCh* const uri);
|
||
|
|
||
|
|
||
|
private :
|
||
|
/* Unimplemented constructors and operators */
|
||
|
|
||
|
/* Copy constructor */
|
||
|
DOMLocatorImpl(const DOMLocatorImpl&);
|
||
|
|
||
|
/* Assignment operator */
|
||
|
DOMLocatorImpl& operator=(const DOMLocatorImpl&);
|
||
|
|
||
|
protected:
|
||
|
// -----------------------------------------------------------------------
|
||
|
// Private data members
|
||
|
//
|
||
|
// fLineNum
|
||
|
// fColumnNum
|
||
|
// Track line/column number of where the error occured
|
||
|
//
|
||
|
// fByteOffset
|
||
|
// Track byte offset in the input source where the error
|
||
|
// occured
|
||
|
//
|
||
|
// fUtf16Offset
|
||
|
// Track character offset in the input source where the error
|
||
|
// occured
|
||
|
//
|
||
|
// fRelatedNode
|
||
|
// Current node where the error occured
|
||
|
//
|
||
|
// fURI
|
||
|
// The uri where the error occured
|
||
|
// -----------------------------------------------------------------------
|
||
|
XMLFileLoc fLineNum;
|
||
|
XMLFileLoc fColumnNum;
|
||
|
XMLFilePos fByteOffset;
|
||
|
XMLFilePos fUtf16Offset;
|
||
|
DOMNode* fRelatedNode;
|
||
|
const XMLCh* fURI;
|
||
|
};
|
||
|
|
||
|
|
||
|
// ---------------------------------------------------------------------------
|
||
|
// DOMLocatorImpl: Getter methods
|
||
|
// ---------------------------------------------------------------------------
|
||
|
inline XMLFileLoc DOMLocatorImpl::getLineNumber() const
|
||
|
{
|
||
|
return fLineNum;
|
||
|
}
|
||
|
|
||
|
inline XMLFileLoc DOMLocatorImpl::getColumnNumber() const
|
||
|
{
|
||
|
return fColumnNum;
|
||
|
}
|
||
|
|
||
|
inline XMLFilePos DOMLocatorImpl::getByteOffset() const
|
||
|
{
|
||
|
return fByteOffset;
|
||
|
}
|
||
|
|
||
|
inline XMLFilePos DOMLocatorImpl::getUtf16Offset() const
|
||
|
{
|
||
|
return fUtf16Offset;
|
||
|
}
|
||
|
|
||
|
inline DOMNode* DOMLocatorImpl::getRelatedNode() const
|
||
|
{
|
||
|
return fRelatedNode;
|
||
|
}
|
||
|
|
||
|
inline const XMLCh* DOMLocatorImpl::getURI() const
|
||
|
{
|
||
|
return fURI;
|
||
|
}
|
||
|
|
||
|
|
||
|
// ---------------------------------------------------------------------------
|
||
|
// DOMLocatorImpl: Setter methods
|
||
|
// ---------------------------------------------------------------------------
|
||
|
inline void DOMLocatorImpl::setLineNumber(const XMLFileLoc lineNumber)
|
||
|
{
|
||
|
fLineNum = lineNumber;
|
||
|
}
|
||
|
|
||
|
inline void DOMLocatorImpl::setColumnNumber(const XMLFileLoc columnNumber)
|
||
|
{
|
||
|
fColumnNum = columnNumber;
|
||
|
}
|
||
|
|
||
|
inline void DOMLocatorImpl::setByteOffset(const XMLFilePos offset)
|
||
|
{
|
||
|
fByteOffset = offset;
|
||
|
}
|
||
|
|
||
|
inline void DOMLocatorImpl::setUtf16Offset(const XMLFilePos offset)
|
||
|
{
|
||
|
fUtf16Offset = offset;
|
||
|
}
|
||
|
|
||
|
inline void DOMLocatorImpl::setRelatedNode(DOMNode* const errorNode)
|
||
|
{
|
||
|
fRelatedNode = errorNode;
|
||
|
}
|
||
|
|
||
|
inline void DOMLocatorImpl::setURI(const XMLCh* const uri)
|
||
|
{
|
||
|
fURI = uri;
|
||
|
}
|
||
|
|
||
|
XERCES_CPP_NAMESPACE_END
|
||
|
|
||
|
#endif
|