#include <vtkXMLDataParser.h>
Inheritance diagram for vtkXMLDataParser:
vtkXMLDataParser provides a subclass of vtkXMLParser that constructs a representation of an XML data format's file using vtkXMLDataElement to represent each XML element. This representation is then used by vtkXMLReader and its subclasses to traverse the structure of the file and extract data.
Definition at line 50 of file vtkXMLDataParser.h.
Public Types | |
typedef vtkXMLParser | Superclass |
enum | { BigEndian, LittleEndian } |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
vtkXMLDataElement * | GetRootElement () |
unsigned long | GetWordTypeSize (int wordType) |
virtual int | Parse () |
unsigned long | ReadInlineData (vtkXMLDataElement *element, int isAscii, void *buffer, int startWord, int numWords, int wordType) |
unsigned long | ReadInlineData (vtkXMLDataElement *element, int isAscii, char *buffer, int startWord, int numWords) |
unsigned long | ReadAppendedData (unsigned long offset, void *buffer, int startWord, int numWords, int wordType) |
unsigned long | ReadAppendedData (unsigned long offset, char *buffer, int startWord, int numWords) |
unsigned long | ReadAsciiData (void *buffer, int startWord, int numWords, int wordType) |
unsigned long | ReadBinaryData (void *buffer, int startWord, int maxWords, int wordType) |
virtual void | SetCompressor (vtkDataCompressor *) |
virtual vtkDataCompressor * | GetCompressor () |
virtual int | GetAbort () |
virtual void | SetAbort (int) |
virtual float | GetProgress () |
virtual void | SetProgress (float) |
virtual void | SetAttributesEncoding (int) |
virtual int | GetAttributesEncoding () |
Static Public Member Functions | |
int | IsTypeOf (const char *type) |
vtkXMLDataParser * | SafeDownCast (vtkObject *o) |
vtkXMLDataParser * | New () |
Protected Member Functions | |
vtkXMLDataParser () | |
~vtkXMLDataParser () | |
virtual int | Parse (const char *) |
virtual int | Parse (const char *, unsigned int) |
void | StartElement (const char *name, const char **atts) |
void | EndElement (const char *) |
int | ParsingComplete () |
int | CheckPrimaryAttributes () |
void | FindAppendedDataPosition () |
unsigned long | FindInlineDataPosition (unsigned long start) |
int | ParseBuffer (const char *buffer, unsigned int count) |
void | AddElement (vtkXMLDataElement *element) |
void | PushOpenElement (vtkXMLDataElement *element) |
vtkXMLDataElement * | PopOpenElement () |
void | FreeAllElements () |
void | PerformByteSwap (void *data, int numWords, int wordSize) |
void | ReadCompressionHeader () |
unsigned int | FindBlockSize (unsigned int block) |
int | ReadBlock (unsigned int block, unsigned char *buffer) |
unsigned char * | ReadBlock (unsigned int block) |
unsigned long | ReadUncompressedData (unsigned char *data, unsigned long startWord, unsigned long numWords, int wordSize) |
unsigned long | ReadCompressedData (unsigned char *data, unsigned long startWord, unsigned long numWords, int wordSize) |
int | ParseAsciiData (int wordType) |
void | FreeAsciiBuffer () |
void | UpdateProgress (float progress) |
Protected Attributes | |
vtkXMLDataElement * | RootElement |
vtkXMLDataElement ** | OpenElements |
unsigned int | NumberOfOpenElements |
unsigned int | OpenElementsSize |
unsigned long | AppendedDataPosition |
int | AppendedDataMatched |
int | ByteOrder |
vtkInputStream * | DataStream |
vtkInputStream * | InlineDataStream |
vtkInputStream * | AppendedDataStream |
vtkDataCompressor * | Compressor |
unsigned int | NumberOfBlocks |
unsigned int | BlockUncompressedSize |
unsigned int | PartialLastBlockUncompressedSize |
HeaderType * | BlockCompressedSizes |
unsigned long * | BlockStartOffsets |
unsigned char * | AsciiDataBuffer |
int | AsciiDataBufferLength |
int | AsciiDataWordType |
unsigned long | AsciiDataPosition |
float | Progress |
int | Abort |
int | AttributesEncoding |
|
Reimplemented from vtkXMLParser. Definition at line 53 of file vtkXMLDataParser.h. |
|
Enumerate big and little endian byte order settings. Definition at line 60 of file vtkXMLDataParser.h. |
|
|
|
|
|
Reimplemented from vtkXMLParser. |
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkXMLParser. |
|
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkXMLParser. |
|
Reimplemented from vtkXMLParser. |
|
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes. Reimplemented from vtkXMLParser. |
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. Reimplemented from vtkXMLParser. |
|
Get the root element from the XML document. |
|
Read inline data from inside the given element. Returns the number of words read. |
|
Read inline data from inside the given element. Returns the number of words read. Definition at line 73 of file vtkXMLDataParser.h. References VTK_CHAR. |
|
Read from an appended data section starting at the given appended data offset. Returns the number of words read. |
|
Read from an appended data section starting at the given appended data offset. Returns the number of words read. Definition at line 84 of file vtkXMLDataParser.h. References VTK_CHAR. |
|
Read from an ascii data section starting at the current position in the stream. Returns the number of words read. |
|
Read from a data section starting at the current position in the stream. Returns the number of words read. |
|
Get/Set the compressor used to decompress binary and appended data after reading from the file. |
|
Get/Set the compressor used to decompress binary and appended data after reading from the file. |
|
Get the size of a word of the given type. |
|
Parse the XML input and check that the file is safe to read. Returns 1 for okay, 0 for error. Reimplemented from vtkXMLParser. |
|
Get/Set flag to abort reading of data. This may be set by a progress event observer. |
|
Get/Set flag to abort reading of data. This may be set by a progress event observer. |
|
Get/Set progress of reading data. This may be checked by a progress event observer. |
|
Get/Set progress of reading data. This may be checked by a progress event observer. |
|
Get/Set the character encoding that will be used to set the attributes's encoding type of each vtkXMLDataElement created by this parser (i.e., the data element attributes will use that encoding internally). If set to VTK_ENCODING_NONE (default), the attribute encoding type will not be changed and will default to the vtkXMLDataElement default encoding type (see vtkXMLDataElement::AttributeEncoding). |
|
Get/Set the character encoding that will be used to set the attributes's encoding type of each vtkXMLDataElement created by this parser (i.e., the data element attributes will use that encoding internally). If set to VTK_ENCODING_NONE (default), the attribute encoding type will not be changed and will default to the vtkXMLDataElement default encoding type (see vtkXMLDataElement::AttributeEncoding). |
|
Parse the XML message. If length is specified, parse only the first "length" characters Reimplemented from vtkXMLParser. |
|
Parse the XML message. If length is specified, parse only the first "length" characters Reimplemented from vtkXMLParser. |
|
Reimplemented from vtkXMLParser. |
|
Reimplemented from vtkXMLParser. |
|
Reimplemented from vtkXMLParser. |
|
|
|
|
|
|
|
Reimplemented from vtkXMLParser. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Definition at line 189 of file vtkXMLDataParser.h. |
|
Definition at line 192 of file vtkXMLDataParser.h. |
|
Definition at line 193 of file vtkXMLDataParser.h. |
|
Definition at line 194 of file vtkXMLDataParser.h. |
|
Definition at line 197 of file vtkXMLDataParser.h. |
|
Definition at line 200 of file vtkXMLDataParser.h. |
|
Definition at line 203 of file vtkXMLDataParser.h. |
|
Definition at line 207 of file vtkXMLDataParser.h. |
|
Definition at line 211 of file vtkXMLDataParser.h. |
|
Definition at line 214 of file vtkXMLDataParser.h. |
|
Definition at line 231 of file vtkXMLDataParser.h. |
|
Definition at line 232 of file vtkXMLDataParser.h. |
|
Definition at line 233 of file vtkXMLDataParser.h. |
|
Definition at line 234 of file vtkXMLDataParser.h. |
|
Definition at line 235 of file vtkXMLDataParser.h. |
|
Definition at line 236 of file vtkXMLDataParser.h. |
|
Definition at line 239 of file vtkXMLDataParser.h. |
|
Definition at line 240 of file vtkXMLDataParser.h. |
|
Definition at line 241 of file vtkXMLDataParser.h. |
|
Definition at line 242 of file vtkXMLDataParser.h. |
|
Definition at line 245 of file vtkXMLDataParser.h. |
|
Definition at line 248 of file vtkXMLDataParser.h. |
|
Definition at line 250 of file vtkXMLDataParser.h. |