#include <vil_stream_core.h>
Inheritance diagram for vil_stream_core:

This is an infinite stream - reads past the last point written will succeed but will return garbage data.
Definition at line 18 of file vil_stream_core.h.
Public Member Functions | |
| vil_stream_core (unsigned block_size=16384) | |
| vil_streampos | size () const |
| get current file size. | |
| vil_streampos | m_transfer (char *buf, vil_streampos pos, vil_streampos n, bool read) |
| Read or write n bytes at position pos. | |
| bool | ok () const |
| Return false if the stream is broken. | |
| vil_streampos | read (void *buf, vil_streampos n) |
| Read n bytes into buf. Returns number of bytes read. | |
| vil_streampos | write (void const *buf, vil_streampos n) |
| Write n bytes from buf. Returns number of bytes written. | |
| vil_streampos | tell () const |
| Return file pointer. | |
| void | seek (vil_streampos position) |
| Goto file pointer. | |
| vil_streampos | file_size () const |
| Amount of data in the stream. | |
| void | ref () |
| up/down the reference count. | |
| void | unref () |
Protected Member Functions | |
| ~vil_stream_core () | |
Private Attributes | |
| vil_streampos | curpos_ |
| unsigned | blocksize_ |
| vcl_vector< char * > | block_ |
| vil_streampos | tailpos_ |
Related Functions | |
| (Note that these are not member functions.) | |
| vil_stream * | vil_open (char const *what, char const *how="r") |
| make a vil_stream from a filename, an URL, etc. | |
| vil_stream_core::vil_stream_core | ( | unsigned | block_size = 16384 |
) |
Definition at line 14 of file vil_stream_core.cxx.
| vil_stream_core::~vil_stream_core | ( | ) | [protected] |
Definition at line 20 of file vil_stream_core.cxx.
| vil_streampos vil_stream_core::size | ( | ) | const [inline] |
| vil_streampos vil_stream_core::m_transfer | ( | char * | buf, | |
| vil_streampos | pos, | |||
| vil_streampos | n, | |||
| bool | read | |||
| ) |
Read or write n bytes at position pos.
This does not change the current position. When read=false, buf is actually a "char const *".
Definition at line 50 of file vil_stream_core.cxx.
| bool vil_stream_core::ok | ( | ) | const [inline, virtual] |
Return false if the stream is broken.
Implements vil_stream.
Definition at line 37 of file vil_stream_core.h.
| vil_streampos vil_stream_core::read | ( | void * | buf, | |
| vil_streampos | n | |||
| ) | [virtual] |
Read n bytes into buf. Returns number of bytes read.
The return value is less than n only at eof.
Implements vil_stream.
Definition at line 29 of file vil_stream_core.cxx.
| vil_streampos vil_stream_core::write | ( | void const * | buf, | |
| vil_streampos | n | |||
| ) | [virtual] |
Write n bytes from buf. Returns number of bytes written.
The return value is less than n only in case of device failure.
Implements vil_stream.
Definition at line 40 of file vil_stream_core.cxx.
| vil_streampos vil_stream_core::tell | ( | ) | const [inline, virtual] |
| void vil_stream_core::seek | ( | vil_streampos | position | ) | [inline, virtual] |
| vil_streampos vil_stream_core::file_size | ( | ) | const [inline, virtual] |
Amount of data in the stream.
Implements vil_stream.
Definition at line 43 of file vil_stream_core.h.
| void vil_stream::ref | ( | ) | [inline, inherited] |
| void vil_stream::unref | ( | ) | [inherited] |
Definition at line 31 of file vil_stream.cxx.
| vil_stream * vil_open | ( | char const * | what, | |
| char const * | how = "r" | |||
| ) | [related, inherited] |
vil_streampos vil_stream_core::curpos_ [private] |
Definition at line 20 of file vil_stream_core.h.
unsigned vil_stream_core::blocksize_ [private] |
Definition at line 21 of file vil_stream_core.h.
vcl_vector<char*> vil_stream_core::block_ [private] |
Definition at line 22 of file vil_stream_core.h.
vil_streampos vil_stream_core::tailpos_ [private] |
Definition at line 23 of file vil_stream_core.h.
1.5.1