Inheritance diagram for code::ORPGReader:
Public Member Functions | |
virtual int | open (const URL &url) |
virtual int | read (Buffer &, long offset=0, size_t max_bytes=0) |
virtual | ~ORPGReader () |
Static Public Member Functions | |
static void | introduce () |
static int | read (const URL &url, Buffer &buffer, long offset=0, size_t max_len=0) |
Convenience function to read `url' into `buf'. | |
static int | read (const URL &url, std::string &s, long offset=0, size_t max_len=0) |
Identical to read(const URL&,Buffer&,long,size_t) except it takes a string instead of a buffer. | |
static int | readRaw (const URL &url, Buffer &b, long offset=0, size_t max_len=0) |
Identical to read() except except it doesn't uncompress files. | |
static SmartPtr< XML::Document > | readXMLDocument (const URL &url) |
Returns an XML::Document created by passing the contents of `url' to XML::Parser::parse(). | |
static SmartPtr< Reader > | getReader (const URL &url) |
Returns a handle to a reader for the given URL. | |
static void | introduceWDSSIIReaders () |
virtual code::ORPGReader::~ORPGReader | ( | ) | [inline, virtual] |
Returns a handle to a reader for the given URL.
This is useful when you want to make iterative calls to read() or LineReader::readLine().
static void code::ORPGReader::introduce | ( | ) | [static] |
static void code::Reader::introduceWDSSIIReaders | ( | ) | [static, inherited] |
virtual int code::ORPGReader::open | ( | const URL & | url | ) | [virtual] |
Implements code::SchemeReader.
static int code::Reader::read | ( | const URL & | url, | |
std::string & | s, | |||
long | offset = 0 , |
|||
size_t | max_len = 0 | |||
) | [static, inherited] |
Identical to read(const URL&,Buffer&,long,size_t) except it takes a string instead of a buffer.
static int code::Reader::read | ( | const URL & | url, | |
Buffer & | buffer, | |||
long | offset = 0 , |
|||
size_t | max_len = 0 | |||
) | [static, inherited] |
Convenience function to read `url' into `buf'.
Handles remote, local, compressed, and uncompressed files transparently.
url | the data source. | |
buffer | where source's contents will be stored. | |
offset | number of bytes to skip before read() begins storing. | |
max_len | if nonzero, maximum number of bytes to store in buf. |
virtual int code::ORPGReader::read | ( | Buffer & | , | |
long | offset = 0 , |
|||
size_t | max_bytes = 0 | |||
) | [virtual] |
static int code::Reader::readRaw | ( | const URL & | url, | |
Buffer & | b, | |||
long | offset = 0 , |
|||
size_t | max_len = 0 | |||
) | [static, inherited] |
Identical to read() except except it doesn't uncompress files.
This is useful when mirroring compressed files to avoid decompress / recompress steps.
static SmartPtr<XML::Document> code::Reader::readXMLDocument | ( | const URL & | url | ) | [static, inherited] |
Returns an XML::Document created by passing the contents of `url' to XML::Parser::parse().