Oracle® Database XML C++ API Reference 10g Release 2 (10.2) Part Number B16206-01 |
|
|
View PDF |
XPointer
package contains XPointer processing related types and interfaces.
This chapter contains the following sections:
Table 9-1 summarizes the datatypes of the XPointer
package.
Table 9-1 Summary of Datatypes; XPointer Package
Datatype | Description |
---|---|
XppExceptionCode |
Defines XPath compiler identifiers. |
XppPrIdType |
Defines XPointer processor identifiers. |
XppLocType |
Defines location types for XPointer. |
XPointer related exception codes.
Definition
typedef enum XPathCompIdType { XvmXPathCompCXml = 1 } XPathCompIdType;
Defines XPointer processor identifiers.
Definition
typedef enum XppPrIdType { XPtrPrCXml = 1} XppPrIdType;
Defines location types for XPointer.
Definition
typedef enum XppLocType { XPPLOC_TYPE_UNKNOWN = 0, XPPLOC_TYPE_NODE = 1, XPPLOC_TYPE_POINT = 2, XPPLOC_TYPE_RANGE = 3, XPPLOC_TYPE_BOOL = 4, XPPLOC_TYPE_NUM = 5, XPPLOC_TYPE_STR = 6 } XppLocType;
Table 9-2 summarizes the methods of available through the Processor
interface.
Table 9-2 Summary of Processor Methods; XPointer Package
Function | Summary |
---|---|
getProcessorId() |
Get processor's Id. |
process() |
Evaluate XPointer expression against given document. |
Get Processor Id.
Syntax
virtual XppPrIdType getProcessorId() const = 0;
Returns
(XppPrIdType)
Processor's Id
Evaluates XPointer expression against given document and returns result XPointer location set object.
Syntax
virtual XppLocSet< Node>* process ( InputSource* isrc_ptr, oratext* xpp_exp) throw (XppException) = 0;
Parameter | Description |
---|---|
isrc_ptr |
instance document to process |
xpp_exp |
XPointer expression |
Returns
(XppLocSet*)
XPath object
Table 9-3 summarizes the methods of available through the XPPException
interface.
Table 9-3 Summary of XppException Methods; Package XPointer
Function | Summary |
---|---|
getCode() |
Get Oracle XML error code embedded in the exception. |
getMesLang() |
Get current language (encoding) of error messages. |
getMesLang() |
Get Oracle XML error message. |
getXppCode() |
Get XPointer exception code embedded in the exception. |
Virtual member function inherited from XmlException
.
Syntax
virtual unsigned getCode() const = 0;
Returns
(unsigned)
numeric error code (0 on success)
Virtual member function inherited from XmlException
.
Syntax
virtual oratext* getMesLang() const = 0;
Returns
(oratext*)
Current language (encoding) of error messages
Virtual member function inherited from XmlException
.
Syntax
virtual oratext* getMessage() const = 0;
Returns
(oratext *)
Error message
This is a virtual member function that defines a prototype for implementation defined member functions returning XPointer processor and compiler exception codes, defined in XppExceptionCode, of the exceptional situations during execution.
Syntax
virtual XppExceptionCode getXppCode() const = 0;
Returns
(XppExceptionCode)
exception code
Table 9-4 summarizes the methods of available through the XppLocation
interface.
Table 9-4 Summary of XppLocation Methods; XPointer Package
Function | Summary |
---|---|
getLocType() |
Get the location type. |
getNode() |
Get the node. |
getRange() |
Get range. |
Get the location type.
Syntax
XppLocType getLocType() const;
Get the node.
Syntax
Node* getNode() const;
Get range.
Syntax
Range< Node>* getRange() const;
Table 9-5 summarizes the methods of available through the XppLocSet
interface.
Table 9-5 Summary of XppLocSet Methods; XPointer Package
Function | Summary |
---|---|
getItem() |
Get item given its index. |
getSize() |
Get location set size. |
Returns a reference to the item.
Syntax
XppLocation< Node>* getItem( ub4 index) const;
Parameter | Description |
---|---|
index |
index of an item |
Returns
(XppLocation*)
reference to the item
The size of the node set.
Syntax
ub4 getSize() const;
Returns
(ub4)
node set size