Xerces-C++ 3.3.0
|
#include <xercesc/util/BinMemInputStream.hpp>
Public Types | |
enum | BufOpts { BufOpt_Adopt , BufOpt_Copy , BufOpt_Reference } |
Public Member Functions | |
BinMemInputStream (const XMLByte *const initData, const XMLSize_t capacity, const BufOpts bufOpt=BufOpt_Copy, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) | |
virtual | ~BinMemInputStream () |
void | reset () |
virtual XMLFilePos | curPos () const |
virtual XMLSize_t | readBytes (XMLByte *const toFill, const XMLSize_t maxToRead) |
virtual const XMLCh * | getContentType () const |
Return the "out-of-band" content type for the data supplied by this input stream in the form of the media-type production (mime type with optional parameters such as encoding) as defined by the HTTP 1.1 specification. | |
XMLSize_t | getSize () const |
Public Member Functions inherited from BinInputStream | |
virtual | ~BinInputStream () |
virtual const XMLCh * | getEncoding () const |
Return the "out-of-band" encoding for the data supplied by this input stream. | |
Public Member Functions inherited from XMemory | |
void * | operator new (size_t size) |
This method overrides operator new. | |
void * | operator new (size_t size, MemoryManager *memMgr) |
This method defines a custom operator new, that will use the provided memory manager to perform the allocation. | |
void * | operator new (size_t size, void *ptr) |
This method overrides placement operator new. | |
void | operator delete (void *p) |
This method overrides operator delete. | |
void | operator delete (void *p, MemoryManager *memMgr) |
This method provides a matching delete for the custom operator new. | |
void | operator delete (void *p, void *ptr) |
This method provides a matching delete for the placement new. | |
Additional Inherited Members | |
Protected Member Functions inherited from BinInputStream | |
BinInputStream () | |
Protected Member Functions inherited from XMemory | |
XMemory () | |
Protected default constructor. | |
BinMemInputStream::BinMemInputStream | ( | const XMLByte *const | initData, |
const XMLSize_t | capacity, | ||
const BufOpts | bufOpt = BufOpt_Copy, | ||
MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager ) |
|
virtual |
|
virtual |
Implements BinInputStream.
|
virtual |
Return the "out-of-band" content type for the data supplied by this input stream in the form of the media-type production (mime type with optional parameters such as encoding) as defined by the HTTP 1.1 specification.
If no such content type is provided for the data, 0 is returned. This function is expected to return the correct value at any time after the construction of the stream.
An example of the stream that may return non-0 from this function is an HTTP stream with the value returned taken from the "Content-Type" HTTP header. Note also that if the encoding of the data is known to the application by some other means then the setEncoding function in the InputSource object should be used instead. The getContentType function should only be used to return information that is intrinsic to the stream.
Implements BinInputStream.
XMLSize_t BinMemInputStream::getSize | ( | ) | const |
|
virtual |
Implements BinInputStream.
void BinMemInputStream::reset | ( | ) |