]>
Commit | Line | Data |
---|---|---|
32fc4afb GL |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: stream.h | |
3 | // Purpose: "wxWindows stream" base classes | |
4 | // Author: Guilhem Lavaux | |
5 | // Modified by: | |
6 | // Created: 11/07/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Guilhem Lavaux | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
34138703 JS |
12 | #ifndef _WX_WXSTREAM_H__ |
13 | #define _WX_WXSTREAM_H__ | |
32fc4afb GL |
14 | |
15 | #ifdef __GNUG__ | |
79c3e0e1 | 16 | #pragma interface |
32fc4afb GL |
17 | #endif |
18 | ||
ce4169a4 RR |
19 | #include "wx/defs.h" |
20 | ||
21 | #if wxUSE_STREAMS | |
22 | ||
32fc4afb | 23 | #include <stdio.h> |
45ea509a VZ |
24 | #include "wx/object.h" |
25 | #include "wx/string.h" | |
1678ad78 GL |
26 | #include "wx/filefn.h" // for off_t, wxInvalidOffset and wxSeekMode |
27 | ||
75ed1d15 | 28 | class WXDLLEXPORT wxStreamBase; |
1678ad78 GL |
29 | class WXDLLEXPORT wxInputStream; |
30 | class WXDLLEXPORT wxOutputStream; | |
31 | ||
32 | typedef wxInputStream& (*__wxInputManip)(wxInputStream&); | |
33 | typedef wxOutputStream& (*__wxOutputManip)(wxOutputStream&); | |
34 | ||
184b5d99 | 35 | WXDLLEXPORT wxOutputStream& wxEndL(wxOutputStream& o_stream); |
1678ad78 | 36 | |
f4ada568 GL |
37 | // --------------------------------------------------------------------------- |
38 | // wxStream: base classes | |
39 | // --------------------------------------------------------------------------- | |
40 | ||
23a54e14 RR |
41 | #define wxStream_NOERROR wxSTREAM_NOERROR |
42 | #define wxStream_EOF wxSTREAM_EOF | |
43 | #define wxStream_WRITE_ERR wxSTREAM_WRITE_ERROR | |
44 | #define wxStream_READ_ERR wxSTREAM_READ_ERROR | |
657d2097 | 45 | |
75ed1d15 | 46 | typedef enum { |
c7a9fa36 RR |
47 | wxSTREAM_NO_ERROR = 0, |
48 | wxSTREAM_NO_ERR = wxSTREAM_NO_ERROR, | |
49 | wxSTREAM_NOERROR = wxSTREAM_NO_ERROR, | |
657d2097 | 50 | |
c7a9fa36 | 51 | wxSTREAM_EOF, |
657d2097 | 52 | |
c7a9fa36 RR |
53 | wxSTREAM_WRITE_ERROR, |
54 | wxSTREAM_WRITE_ERR = wxSTREAM_WRITE_ERROR, | |
657d2097 | 55 | |
c7a9fa36 | 56 | wxSTREAM_READ_ERROR, |
657d2097 DW |
57 | wxSTREAM_READ_ERR = wxSTREAM_READ_ERROR |
58 | ||
75ed1d15 GL |
59 | } wxStreamError; |
60 | ||
657d2097 | 61 | class WXDLLEXPORT wxStreamBase |
c7a9fa36 RR |
62 | { |
63 | public: | |
64 | wxStreamBase(); | |
65 | virtual ~wxStreamBase(); | |
75ed1d15 | 66 | |
c7a9fa36 RR |
67 | bool operator!() const { return (LastError() != wxSTREAM_NOERROR); } |
68 | wxStreamError LastError() const { return m_lasterror; } | |
69 | virtual size_t GetSize() const { return ~((size_t)0); } | |
70 | size_t StreamSize() const { return GetSize(); } | |
75ed1d15 | 71 | |
c7a9fa36 RR |
72 | protected: |
73 | virtual size_t OnSysRead(void *buffer, size_t bufsize); | |
74 | virtual size_t OnSysWrite(const void *buffer, size_t bufsize); | |
75 | virtual off_t OnSysSeek(off_t seek, wxSeekMode mode); | |
76 | virtual off_t OnSysTell() const; | |
75ed1d15 | 77 | |
c7a9fa36 | 78 | friend class wxStreamBuffer; |
75ed1d15 | 79 | |
c7a9fa36 RR |
80 | size_t m_lastcount; |
81 | wxStreamError m_lasterror; | |
75ed1d15 GL |
82 | }; |
83 | ||
657d2097 | 84 | class WXDLLEXPORT wxInputStream: public wxStreamBase |
c7a9fa36 RR |
85 | { |
86 | public: | |
87 | wxInputStream(); | |
88 | virtual ~wxInputStream(); | |
32fc4afb | 89 | |
c7a9fa36 RR |
90 | // IO functions |
91 | virtual char Peek(); | |
92 | char GetC(); | |
93 | virtual wxInputStream& Read(void *buffer, size_t size); | |
94 | wxInputStream& Read(wxOutputStream& stream_out); | |
32fc4afb | 95 | |
c7a9fa36 RR |
96 | // Position functions |
97 | virtual off_t SeekI(off_t pos, wxSeekMode mode = wxFromStart); | |
98 | virtual off_t TellI() const; | |
32fc4afb | 99 | |
c7a9fa36 RR |
100 | // State functions |
101 | virtual size_t LastRead() { return wxStreamBase::m_lastcount; } | |
fae05df5 | 102 | |
c7a9fa36 RR |
103 | // Ungetch |
104 | size_t Ungetch(const void *buffer, size_t size); | |
105 | bool Ungetch(char c); | |
0cd9bfe8 | 106 | |
c7a9fa36 RR |
107 | // Operators |
108 | wxInputStream& operator>>(wxOutputStream& out) { return Read(out); } | |
47d67540 | 109 | #if wxUSE_SERIAL |
c7a9fa36 | 110 | wxInputStream& operator>>(wxObject *& obj); |
fcc6dddd | 111 | #endif |
c7a9fa36 | 112 | wxInputStream& operator>>( __wxInputManip func) { return func(*this); } |
fae05df5 | 113 | |
c7a9fa36 RR |
114 | protected: |
115 | // Ungetch managers | |
116 | char *m_wback; | |
117 | size_t m_wbacksize; | |
118 | size_t m_wbackcur; | |
fae05df5 | 119 | |
c7a9fa36 RR |
120 | char *AllocSpaceWBack(size_t needed_size); |
121 | size_t GetWBack(char *buf, size_t bsize); | |
32fc4afb GL |
122 | }; |
123 | ||
657d2097 | 124 | class WXDLLEXPORT wxOutputStream: public wxStreamBase |
c7a9fa36 RR |
125 | { |
126 | public: | |
127 | wxOutputStream(); | |
128 | virtual ~wxOutputStream(); | |
32fc4afb | 129 | |
c7a9fa36 RR |
130 | void PutC(char c); |
131 | virtual wxOutputStream& Write(const void *buffer, size_t size); | |
132 | wxOutputStream& Write(wxInputStream& stream_in); | |
32fc4afb | 133 | |
c7a9fa36 RR |
134 | virtual off_t SeekO(off_t pos, wxSeekMode mode = wxFromStart); |
135 | virtual off_t TellO() const; | |
1678ad78 | 136 | |
c7a9fa36 | 137 | virtual size_t LastWrite() const { return wxStreamBase::m_lastcount; } |
32fc4afb | 138 | |
c7a9fa36 | 139 | virtual void Sync(); |
32fc4afb | 140 | |
c7a9fa36 | 141 | wxOutputStream& operator<<(wxInputStream& out) { return Write(out); } |
47d67540 | 142 | #if wxUSE_SERIAL |
c7a9fa36 | 143 | wxOutputStream& operator<<(wxObject& obj); |
fcc6dddd | 144 | #endif |
c7a9fa36 | 145 | wxOutputStream& operator<<( __wxOutputManip func) { return func(*this); } |
32fc4afb GL |
146 | }; |
147 | ||
e2acb9ae RR |
148 | // --------------------------------------------------------------------------- |
149 | // A stream for measuring streamed output | |
150 | // --------------------------------------------------------------------------- | |
151 | ||
657d2097 | 152 | class wxCountingOutputStream: public wxOutputStream |
c7a9fa36 RR |
153 | { |
154 | public: | |
155 | wxCountingOutputStream(); | |
e2acb9ae | 156 | |
c7a9fa36 RR |
157 | size_t GetSize() const; |
158 | bool Ok() const { return TRUE; } | |
e2acb9ae | 159 | |
c7a9fa36 RR |
160 | protected: |
161 | size_t OnSysWrite(const void *buffer, size_t size); | |
162 | off_t OnSysSeek(off_t pos, wxSeekMode mode); | |
163 | off_t OnSysTell() const; | |
e2acb9ae | 164 | |
c7a9fa36 | 165 | size_t m_currentPos; |
e2acb9ae RR |
166 | }; |
167 | ||
168 | ||
f4ada568 GL |
169 | // --------------------------------------------------------------------------- |
170 | // "Filter" streams | |
171 | // --------------------------------------------------------------------------- | |
32fc4afb | 172 | |
657d2097 | 173 | class WXDLLEXPORT wxFilterInputStream: public wxInputStream |
c7a9fa36 RR |
174 | { |
175 | public: | |
176 | wxFilterInputStream(); | |
177 | wxFilterInputStream(wxInputStream& stream); | |
178 | ~wxFilterInputStream(); | |
32fc4afb | 179 | |
c7a9fa36 | 180 | char Peek() { return m_parent_i_stream->Peek(); } |
32fc4afb | 181 | |
c7a9fa36 | 182 | size_t GetSize() const { return m_parent_i_stream->GetSize(); } |
84b46c35 | 183 | |
c7a9fa36 RR |
184 | protected: |
185 | wxInputStream *m_parent_i_stream; | |
32fc4afb GL |
186 | }; |
187 | ||
657d2097 | 188 | class WXDLLEXPORT wxFilterOutputStream: public wxOutputStream |
c7a9fa36 RR |
189 | { |
190 | public: | |
191 | wxFilterOutputStream(); | |
192 | wxFilterOutputStream(wxOutputStream& stream); | |
193 | ~wxFilterOutputStream(); | |
1678ad78 | 194 | |
c7a9fa36 | 195 | size_t GetSize() const { return m_parent_o_stream->GetSize(); } |
84b46c35 | 196 | |
c7a9fa36 RR |
197 | protected: |
198 | wxOutputStream *m_parent_o_stream; | |
32fc4afb GL |
199 | }; |
200 | ||
fae05df5 GL |
201 | // --------------------------------------------------------------------------- |
202 | // Stream buffer | |
203 | // --------------------------------------------------------------------------- | |
204 | ||
657d2097 | 205 | class WXDLLEXPORT wxStreamBuffer |
c7a9fa36 RR |
206 | { |
207 | public: | |
208 | typedef enum { | |
209 | read = 0, write, read_write | |
210 | } BufMode; | |
211 | ||
212 | wxStreamBuffer(wxStreamBase& stream, BufMode mode); | |
213 | wxStreamBuffer(BufMode mode); | |
214 | wxStreamBuffer(const wxStreamBuffer& buf); | |
215 | ~wxStreamBuffer(); | |
216 | ||
217 | // Filtered IO | |
218 | size_t Read(void *buffer, size_t size); | |
219 | size_t Read(wxStreamBuffer *buf); | |
220 | size_t Write(const void *buffer, size_t size); | |
221 | size_t Write(wxStreamBuffer *buf); | |
222 | ||
223 | char Peek(); | |
224 | char GetChar(); | |
225 | void PutChar(char c); | |
226 | off_t Tell() const; | |
227 | off_t Seek(off_t pos, wxSeekMode mode); | |
228 | ||
229 | // Buffer control | |
230 | void ResetBuffer(); | |
231 | void SetBufferIO(char *buffer_start, char *buffer_end); | |
232 | void SetBufferIO(size_t bufsize); | |
233 | char *GetBufferStart() const { return m_buffer_start; } | |
234 | char *GetBufferEnd() const { return m_buffer_end; } | |
235 | char *GetBufferPos() const { return m_buffer_pos; } | |
236 | off_t GetIntPosition() const { return m_buffer_pos-m_buffer_start; } | |
237 | void SetIntPosition(off_t pos) { m_buffer_pos = m_buffer_start+pos; } | |
238 | size_t GetLastAccess() const { return m_buffer_end-m_buffer_start; } | |
239 | ||
240 | void Fixed(bool fixed) { m_fixed = fixed; } | |
241 | void Flushable(bool f) { m_flushable = f; } | |
242 | ||
243 | bool FlushBuffer(); | |
244 | bool FillBuffer(); | |
245 | size_t GetDataLeft(); | |
246 | ||
247 | // Misc. | |
248 | wxStreamBase *Stream() { return m_stream; } | |
249 | ||
250 | protected: | |
251 | void GetFromBuffer(void *buffer, size_t size); | |
252 | void PutToBuffer(const void *buffer, size_t size); | |
253 | ||
254 | char *m_buffer_start, *m_buffer_end, *m_buffer_pos; | |
255 | size_t m_buffer_size; | |
256 | ||
257 | bool m_fixed, m_flushable; | |
258 | ||
259 | wxStreamBase *m_stream; | |
260 | BufMode m_mode; | |
261 | bool m_destroybuf, m_destroystream; | |
fae05df5 GL |
262 | }; |
263 | ||
264 | // --------------------------------------------------------------------------- | |
265 | // wxBufferedStreams | |
266 | // --------------------------------------------------------------------------- | |
267 | ||
657d2097 | 268 | class wxBufferedInputStream: public wxFilterInputStream |
c7a9fa36 RR |
269 | { |
270 | public: | |
271 | wxBufferedInputStream(wxInputStream& stream); | |
272 | ~wxBufferedInputStream(); | |
fae05df5 | 273 | |
c7a9fa36 RR |
274 | char Peek(); |
275 | wxInputStream& Read(void *buffer, size_t size); | |
657d2097 | 276 | |
c7a9fa36 RR |
277 | // Position functions |
278 | off_t SeekI(off_t pos, wxSeekMode mode = wxFromStart); | |
279 | off_t TellI() const; | |
fae05df5 | 280 | |
c7a9fa36 | 281 | wxStreamBuffer *InputStreamBuffer() const { return m_i_streambuf; } |
fae05df5 | 282 | |
c7a9fa36 RR |
283 | protected: |
284 | size_t OnSysRead(void *buffer, size_t bufsize); | |
285 | off_t OnSysSeek(off_t seek, wxSeekMode mode); | |
657d2097 | 286 | off_t OnSysTell() const; |
fae05df5 | 287 | |
c7a9fa36 | 288 | wxStreamBuffer *m_i_streambuf; |
fae05df5 GL |
289 | }; |
290 | ||
657d2097 | 291 | class wxBufferedOutputStream: public wxFilterOutputStream |
c7a9fa36 RR |
292 | { |
293 | public: | |
294 | wxBufferedOutputStream(wxOutputStream& stream); | |
295 | ~wxBufferedOutputStream(); | |
fae05df5 | 296 | |
c7a9fa36 | 297 | wxOutputStream& Write(const void *buffer, size_t size); |
657d2097 | 298 | |
c7a9fa36 RR |
299 | // Position functions |
300 | off_t SeekO(off_t pos, wxSeekMode mode = wxFromStart); | |
301 | off_t TellO() const; | |
fae05df5 | 302 | |
c7a9fa36 | 303 | void Sync(); |
fae05df5 | 304 | |
c7a9fa36 | 305 | size_t GetSize() const; |
657d2097 | 306 | |
c7a9fa36 | 307 | wxStreamBuffer *OutputStreamBuffer() const { return m_o_streambuf; } |
fae05df5 | 308 | |
c7a9fa36 RR |
309 | protected: |
310 | size_t OnSysWrite(const void *buffer, size_t bufsize); | |
311 | off_t OnSysSeek(off_t seek, wxSeekMode mode); | |
657d2097 | 312 | off_t OnSysTell() const; |
fae05df5 | 313 | |
c7a9fa36 | 314 | wxStreamBuffer *m_o_streambuf; |
fae05df5 GL |
315 | }; |
316 | ||
32fc4afb | 317 | #endif |
ce4169a4 RR |
318 | // wxUSE_STREAMS |
319 | ||
320 | #endif | |
321 | // _WX_WXSTREAM_H__ |