|
Scopira
20080306
|
#include <flow.h>
Public Member Functions | |
| virtual size_t | read (byte_t *_buf, size_t _maxsize)=0 |
| virtual size_t | read_byte (byte_t &out) |
| template<class TT > | |
| size_t | read_array (TT *_buf, size_t _numelem) |
| size_t | read_void (void *_buf, size_t _maxsize) |
Public Member Functions inherited from scopira::tool::flow_i | |
| virtual bool | failed (void) const =0 |
Public Member Functions inherited from scopira::tool::object | |
| virtual | ~object () |
| int | add_ref (void) const |
| bool | sub_ref (void) const |
| void | auto_ref (void) const |
| int | current_ref (void) const |
| virtual scopira::tool::oflow_i & | print (scopira::tool::oflow_i &o) const |
| virtual bool | load (scopira::tool::iobjflow_i &in) |
| virtual void | save (scopira::tool::oobjflow_i &out) const |
| bool | is_alive_object (void) const |
| bool | is_dead_object (void) const |
Additional Inherited Members | |
Public Types inherited from scopira::tool::flow_i | |
| enum | { input_c = 1, output_c = 2 } |
| typedef scopira::tool::byte_t | byte_t |
| typedef int | mode_t |
Protected Member Functions inherited from scopira::tool::object | |
| object (void) | |
| object (bool neverusecounter) | |
A raw input stream of bytes
|
pure virtual |
Read a raw block of bytes.
| _buf | the buffer to write out to |
| _maxsize | the maximume number of bytes to read into the buffer |
Implemented in scopira::tool::unixflow, scopira::tool::cacheiflow, scopira::tool::netflow, scopira::tool::fileflow, scopira::tool::bufferiflow, scopira::tool::stringiflow, scopira::tool::propiflow, scopira::tool::hexiflow, scopira::tool::polyiflow, scopira::tool::printiflow, scopira::tool::bufferflow, scopira::tool::stringflow, scopira::tool::textiflow, scopira::tool::biniflow, scopira::tool::commentiflow, and scopira::tool::nullflow.
|
inline |
Nice wrapper around the raw read() method. Lets you read raw arrays of a particular type. POD types only. Returns the number of elelments actually read.
Referenced by scopira::basekit::narray< scopira::tool::uuid >::load(), and scopira::basekit::nslice< T, DIM >::load().
|
inlinevirtual |
Reads one byte
| out | where to write the byte |
Reimplemented in scopira::tool::cacheiflow, scopira::tool::hexiflow, and scopira::tool::commentiflow.
|
inline |
Reads a raw block of bytes, using a void*
| _buf | the buffer to write out to |
| _maxsize | the maximume number of bytes to read into the buffer |