1999-01-25 18:33:08 +00:00
|
|
|
% -----------------------------------------------------------------------------
|
|
|
|
% wxInputStream
|
|
|
|
% -----------------------------------------------------------------------------
|
|
|
|
\section{\class{wxInputStream}}\label{wxinputstream}
|
|
|
|
|
1999-12-06 16:16:14 +00:00
|
|
|
wxInputStream is an abstract base class which may not be used directly.
|
|
|
|
|
1999-01-25 18:33:08 +00:00
|
|
|
\wxheading{Derived from}
|
|
|
|
|
|
|
|
\helpref{wxStreamBase}{wxstreambase}
|
|
|
|
|
1999-02-15 20:41:29 +00:00
|
|
|
\wxheading{Include files}
|
|
|
|
|
|
|
|
<wx/stream.h>
|
|
|
|
|
2000-03-15 00:21:49 +00:00
|
|
|
\latexignore{\rtfignore{\wxheading{Members}}}
|
|
|
|
|
1999-01-25 18:33:08 +00:00
|
|
|
% -----------
|
|
|
|
% ctor & dtor
|
|
|
|
% -----------
|
2004-09-29 11:25:34 +00:00
|
|
|
\membersection{wxInputStream::wxInputStream}\label{wxinputstreamctor}
|
1999-01-25 18:33:08 +00:00
|
|
|
|
|
|
|
\func{}{wxInputStream}{\void}
|
|
|
|
|
|
|
|
Creates a dummy input stream.
|
|
|
|
|
2004-09-29 11:25:34 +00:00
|
|
|
\membersection{wxInputStream::\destruct{wxInputStream}}\label{wxinputstreamdtor}
|
1999-01-25 18:33:08 +00:00
|
|
|
|
|
|
|
\func{}{\destruct{wxInputStream}}{\void}
|
|
|
|
|
|
|
|
Destructor.
|
|
|
|
|
2004-09-29 11:25:34 +00:00
|
|
|
\membersection{wxInputStream::GetC}\label{wxinputstreamgetc}
|
1999-01-25 18:33:08 +00:00
|
|
|
|
|
|
|
\func{char}{GetC}{\void}
|
|
|
|
|
2004-04-11 20:58:56 +00:00
|
|
|
Returns the first character in the input queue and removes it,
|
|
|
|
blocking until it appears if necessary.
|
|
|
|
|
|
|
|
\wxheading{Note}
|
|
|
|
|
|
|
|
If EOF, return value is undefined and LastRead() will return 0 and not 1.
|
1999-01-25 18:33:08 +00:00
|
|
|
|
2000-03-02 19:06:13 +00:00
|
|
|
\membersection{wxInputStream::Eof}\label{wxinputstreameof}
|
|
|
|
|
|
|
|
\constfunc{wxInputStream}{Eof}{\void}
|
|
|
|
|
2003-01-18 00:16:34 +00:00
|
|
|
Returns true if the end of stream has been reached.
|
2000-03-02 19:06:13 +00:00
|
|
|
|
2004-04-11 20:58:56 +00:00
|
|
|
\wxheading{Note}
|
|
|
|
|
2004-04-16 16:37:17 +00:00
|
|
|
For some streams Eof() will not return true until an
|
|
|
|
attempt has been made to read past the end of the stream.
|
|
|
|
\helpref{LastRead()}{wxinputstreamlastread}
|
|
|
|
should be called after each read to check that
|
|
|
|
a non-zero number of bytes have been read.
|
2004-04-11 20:58:56 +00:00
|
|
|
|
1999-07-30 17:54:18 +00:00
|
|
|
\membersection{wxInputStream::LastRead}\label{wxinputstreamlastread}
|
1999-02-25 15:07:00 +00:00
|
|
|
|
|
|
|
\constfunc{size\_t}{LastRead}{\void}
|
|
|
|
|
|
|
|
Returns the last number of bytes read.
|
|
|
|
|
2004-09-29 11:25:34 +00:00
|
|
|
\membersection{wxInputStream::Peek}\label{wxinputstreampeek}
|
1999-02-25 15:07:00 +00:00
|
|
|
|
|
|
|
\func{char}{Peek}{\void}
|
|
|
|
|
|
|
|
Returns the first character in the input queue without removing it.
|
|
|
|
|
2004-04-11 20:58:56 +00:00
|
|
|
\wxheading{Note}
|
|
|
|
|
|
|
|
Blocks until something appears in the stream if necessary, if nothing
|
|
|
|
ever does (i.e. EOF) LastRead() will return 0 (and the return value is
|
|
|
|
undefined), otherwise LastRead() returns 1.
|
|
|
|
|
2004-09-29 11:25:34 +00:00
|
|
|
\membersection{wxInputStream::Read}\label{wxinputstreamread}
|
1999-01-25 18:33:08 +00:00
|
|
|
|
1999-02-25 15:07:00 +00:00
|
|
|
\func{wxInputStream\&}{Read}{\param{void *}{buffer}, \param{size\_t}{ size}}
|
1999-01-25 18:33:08 +00:00
|
|
|
|
1999-12-24 23:40:13 +00:00
|
|
|
Reads the specified amount of bytes and stores the data in {\it buffer}.
|
1999-01-25 18:33:08 +00:00
|
|
|
|
1999-02-09 18:12:20 +00:00
|
|
|
\wxheading{Warning}
|
|
|
|
|
|
|
|
The buffer absolutely needs to have at least the specified size.
|
|
|
|
|
|
|
|
\wxheading{Return value}
|
1999-01-25 18:33:08 +00:00
|
|
|
|
|
|
|
This function returns a reference on the current object, so the user can test
|
|
|
|
any states of the stream right away.
|
|
|
|
|
1999-03-13 20:14:37 +00:00
|
|
|
\func{wxInputStream\&}{Read}{\param{wxOutputStream\&}{ stream\_out}}
|
1999-01-25 18:33:08 +00:00
|
|
|
|
|
|
|
Reads data from the input queue and stores it in the specified output stream.
|
|
|
|
The data is read until an error is raised by one of the two streams.
|
|
|
|
|
1999-02-09 18:12:20 +00:00
|
|
|
\wxheading{Return value}
|
|
|
|
|
|
|
|
This function returns a reference on the current object, so the user can test
|
|
|
|
any states of the stream right away.
|
|
|
|
|
2003-09-26 20:07:22 +00:00
|
|
|
\membersection{wxInputStream::SeekI}\label{wxinputstreamseeki}
|
1999-01-25 18:33:08 +00:00
|
|
|
|
1999-02-25 15:07:00 +00:00
|
|
|
\func{off\_t}{SeekI}{\param{off\_t}{ pos}, \param{wxSeekMode}{ mode = wxFromStart}}
|
1999-01-25 18:33:08 +00:00
|
|
|
|
|
|
|
Changes the stream current position.
|
|
|
|
|
2004-04-11 20:58:56 +00:00
|
|
|
\wxheading{Parameters}
|
|
|
|
|
|
|
|
\docparam{pos}{Offset to seek to.}
|
|
|
|
|
|
|
|
\docparam{mode}{One of {\bf wxFromStart}, {\bf wxFromEnd}, {\bf wxFromCurrent}.}
|
|
|
|
|
|
|
|
\wxheading{Return value}
|
|
|
|
|
|
|
|
The new stream position or wxInvalidOffset on error.
|
|
|
|
|
2004-09-29 11:25:34 +00:00
|
|
|
\membersection{wxInputStream::TellI}\label{wxinputstreamtelli}
|
1999-01-25 18:33:08 +00:00
|
|
|
|
1999-02-25 15:07:00 +00:00
|
|
|
\constfunc{off\_t}{TellI}{\void}
|
1999-01-25 18:33:08 +00:00
|
|
|
|
|
|
|
Returns the current stream position.
|
|
|
|
|
2001-06-11 14:55:44 +00:00
|
|
|
\membersection{wxInputStream::Ungetch}\label{wxinputstreamungetch}
|
1999-07-09 17:10:49 +00:00
|
|
|
|
|
|
|
\func{size\_t}{Ungetch}{\param{const char*}{ buffer}, \param{size\_t}{ size}}
|
|
|
|
|
1999-12-24 23:40:13 +00:00
|
|
|
This function is only useful in {\it read} mode. It is the manager of the "Write-Back"
|
2002-06-07 20:15:28 +00:00
|
|
|
buffer. This buffer acts like a temporary buffer where data which has to be
|
1999-07-09 17:10:49 +00:00
|
|
|
read during the next read IO call are put. This is useful when you get a big
|
|
|
|
block of data which you didn't want to read: you can replace them at the top
|
|
|
|
of the input queue by this way.
|
|
|
|
|
1999-12-06 16:16:14 +00:00
|
|
|
Be very careful about this call in connection with calling SeekI() on the same
|
|
|
|
stream. Any call to SeekI() will invalidate any previous call to this method
|
|
|
|
(otherwise you could SeekI() to one position, "unread" a few bytes there, SeekI()
|
|
|
|
to another position and data would be either lost or corrupted).
|
|
|
|
|
1999-07-09 17:10:49 +00:00
|
|
|
\wxheading{Return value}
|
|
|
|
|
|
|
|
Returns the amount of bytes saved in the Write-Back buffer.
|
|
|
|
|
|
|
|
\func{bool}{Ungetch}{\param{char }{c}}
|
|
|
|
|
|
|
|
This function acts like the previous one except that it takes only one
|
|
|
|
character: it is sometimes shorter to use than the generic function.
|
|
|
|
|