/usr/include/vtk-6.2/vtkXMLDataParser.h is in libvtk6-dev 6.2.0+dfsg1-10build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkXMLDataParser.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkXMLDataParser - Used by vtkXMLReader to parse VTK XML files.
// .SECTION Description
// 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.
// .SECTION See Also
// vtkXMLDataElement
#ifndef vtkXMLDataParser_h
#define vtkXMLDataParser_h
#include "vtkIOXMLParserModule.h" // For export macro
#include "vtkXMLParser.h"
#include "vtkXMLDataElement.h"//For inline definition.
class vtkInputStream;
class vtkDataCompressor;
class VTKIOXMLPARSER_EXPORT vtkXMLDataParser : public vtkXMLParser
{
public:
vtkTypeMacro(vtkXMLDataParser,vtkXMLParser);
void PrintSelf(ostream& os, vtkIndent indent);
static vtkXMLDataParser* New();
// Description:
// Get the root element from the XML document.
vtkXMLDataElement* GetRootElement();
//BTX
// Description:
// Enumerate big and little endian byte order settings.
enum { BigEndian, LittleEndian };
// Description:
// Read inline data from inside the given element. Returns the
// number of words read.
size_t ReadInlineData(vtkXMLDataElement* element, int isAscii,
void* buffer, vtkTypeUInt64 startWord,
size_t numWords, int wordType);
size_t ReadInlineData(vtkXMLDataElement* element, int isAscii,
char* buffer, vtkTypeUInt64 startWord,
size_t numWords)
{ return this->ReadInlineData(element, isAscii, buffer, startWord,
numWords, VTK_CHAR); }
// Description:
// Read from an appended data section starting at the given appended
// data offset. Returns the number of words read.
size_t ReadAppendedData(vtkTypeInt64 offset, void* buffer,
vtkTypeUInt64 startWord,
size_t numWords, int wordType);
size_t ReadAppendedData(vtkTypeInt64 offset, char* buffer,
vtkTypeUInt64 startWord,
size_t numWords)
{ return this->ReadAppendedData(offset, buffer, startWord, numWords,
VTK_CHAR); }
// Description:
// Read from an ascii data section starting at the current position in
// the stream. Returns the number of words read.
size_t ReadAsciiData(void* buffer, vtkTypeUInt64 startWord,
size_t numWords, int wordType);
// Description:
// Read from a data section starting at the current position in the
// stream. Returns the number of words read.
size_t ReadBinaryData(void* buffer, vtkTypeUInt64 startWord,
size_t maxWords, int wordType);
//ETX
// Description:
// Get/Set the compressor used to decompress binary and appended data
// after reading from the file.
virtual void SetCompressor(vtkDataCompressor*);
vtkGetObjectMacro(Compressor, vtkDataCompressor);
// Description:
// Get the size of a word of the given type.
size_t GetWordTypeSize(int wordType);
// Description:
// Parse the XML input and check that the file is safe to read.
// Returns 1 for okay, 0 for error.
virtual int Parse();
// Description:
// Get/Set flag to abort reading of data. This may be set by a
// progress event observer.
vtkGetMacro(Abort, int);
vtkSetMacro(Abort, int);
// Description:
// Get/Set progress of reading data. This may be checked by a
// progress event observer.
vtkGetMacro(Progress, float);
vtkSetMacro(Progress, float);
// Description:
// 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).
vtkSetClampMacro(AttributesEncoding,int,VTK_ENCODING_NONE,VTK_ENCODING_UNKNOWN);
vtkGetMacro(AttributesEncoding, int);
// Description:
// If you need the text inside XMLElements, turn IgnoreCharacterData off.
// This method will then be called when the file is parsed, and the text
// will be stored in each XMLDataElement. VTK XML Readers store the
// information elsewhere, so the default is to ignore it.
virtual void CharacterDataHandler(const char* data, int length);
// Description:
// Returns the byte index of where appended data starts (if the
// file is using appended data). Valid after the XML is parsed.
vtkTypeInt64 GetAppendedDataPosition()
{
return this->AppendedDataPosition;
}
protected:
vtkXMLDataParser();
~vtkXMLDataParser();
// This parser does not support parsing from a string.
virtual int Parse(const char*);
virtual int Parse(const char*, unsigned int);
// Implement parsing methods.
virtual void StartElement(const char* name, const char** atts);
virtual void EndElement(const char*);
int ParsingComplete();
int CheckPrimaryAttributes();
void FindAppendedDataPosition();
int ParseBuffer(const char* buffer, unsigned int count);
void AddElement(vtkXMLDataElement* element);
void PushOpenElement(vtkXMLDataElement* element);
vtkXMLDataElement* PopOpenElement();
void FreeAllElements();
void PerformByteSwap(void* data, size_t numWords, size_t wordSize);
// Data reading methods.
int ReadCompressionHeader();
size_t FindBlockSize(vtkTypeUInt64 block);
int ReadBlock(vtkTypeUInt64 block, unsigned char* buffer);
unsigned char* ReadBlock(vtkTypeUInt64 block);
size_t ReadUncompressedData(unsigned char* data,
vtkTypeUInt64 startWord,
size_t numWords,
size_t wordSize);
size_t ReadCompressedData(unsigned char* data,
vtkTypeUInt64 startWord,
size_t numWords,
size_t wordSize);
// Go to the start of the inline data
void SeekInlineDataPosition(vtkXMLDataElement *element);
// Ascii data reading methods.
int ParseAsciiData(int wordType);
void FreeAsciiBuffer();
// Progress update methods.
void UpdateProgress(float progress);
// The root XML element.
vtkXMLDataElement* RootElement;
// The stack of elements currently being parsed.
vtkXMLDataElement** OpenElements;
unsigned int NumberOfOpenElements;
unsigned int OpenElementsSize;
// The position of the appended data section, if found.
vtkTypeInt64 AppendedDataPosition;
// How much of the string "<AppendedData" has been matched in input.
int AppendedDataMatched;
// The byte order of the binary input.
int ByteOrder;
// The word type of binary input headers.
int HeaderType;
// The input stream used to read data. Set by ReadAppendedData and
// ReadInlineData methods.
vtkInputStream* DataStream;
// The input stream used to read inline data. May transparently
// decode the data.
vtkInputStream* InlineDataStream;
// The stream to use for appended data.
vtkInputStream* AppendedDataStream;
// Decompression data.
vtkDataCompressor* Compressor;
size_t NumberOfBlocks;
size_t BlockUncompressedSize;
size_t PartialLastBlockUncompressedSize;
size_t* BlockCompressedSizes;
vtkTypeInt64* BlockStartOffsets;
// Ascii data parsing.
unsigned char* AsciiDataBuffer;
size_t AsciiDataBufferLength;
int AsciiDataWordType;
vtkTypeInt64 AsciiDataPosition;
// Progress during reading of data.
float Progress;
// Abort flag checked during reading of data.
int Abort;
int AttributesEncoding;
private:
vtkXMLDataParser(const vtkXMLDataParser&); // Not implemented.
void operator=(const vtkXMLDataParser&); // Not implemented.
};
//----------------------------------------------------------------------------
inline
void vtkXMLDataParser::CharacterDataHandler(const char* data, int length )
{
const unsigned int eid=this->NumberOfOpenElements-1;
this->OpenElements[eid]->AddCharacterData(data, length);
}
#endif
|