]>
Commit | Line | Data |
---|---|---|
3d4c6a21 GL |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: stream.cpp | |
3 | // Purpose: wxStream 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 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "stream.h" | |
14 | #endif | |
15 | ||
db138a4c JS |
16 | // For compilers that support precompilation, includes "wx.h". |
17 | #include "wx/wxprec.h" | |
ce4169a4 RR |
18 | |
19 | #ifdef __BORLANDC__ | |
20 | #pragma hdrstop | |
21 | #endif | |
22 | ||
23 | #ifndef WX_PRECOMP | |
24 | #include "wx/defs.h" | |
25 | #endif | |
26 | ||
27 | #if wxUSE_STREAMS | |
28 | ||
6d44bf31 | 29 | #include <ctype.h> |
79c3e0e1 | 30 | #include <wx/stream.h> |
6d44bf31 | 31 | #include <wx/datstrm.h> |
123a7fdd | 32 | #include <wx/objstrm.h> |
db138a4c | 33 | |
8ef6a930 GL |
34 | #define BUF_TEMP_SIZE 10000 |
35 | ||
6d44bf31 GL |
36 | // ---------------------------------------------------------------------------- |
37 | // wxStreamBuffer | |
38 | // ---------------------------------------------------------------------------- | |
39 | ||
926c550d GL |
40 | #define CHECK_ERROR(err) \ |
41 | if (m_stream->m_lasterror == wxStream_NOERROR) \ | |
42 | m_stream->m_lasterror = err | |
43 | ||
75ed1d15 | 44 | wxStreamBuffer::wxStreamBuffer(wxStreamBase& stream, BufMode mode) |
6d44bf31 | 45 | : m_buffer_start(NULL), m_buffer_end(NULL), m_buffer_pos(NULL), |
fae05df5 | 46 | m_buffer_size(0), m_fixed(TRUE), m_flushable(TRUE), m_stream(&stream), |
8ef6a930 | 47 | m_mode(mode), m_destroybuf(FALSE), m_destroystream(FALSE) |
6d44bf31 GL |
48 | { |
49 | } | |
50 | ||
84b46c35 GL |
51 | wxStreamBuffer::wxStreamBuffer(BufMode mode) |
52 | : m_buffer_start(NULL), m_buffer_end(NULL), m_buffer_pos(NULL), | |
fae05df5 | 53 | m_buffer_size(0), m_fixed(TRUE), m_flushable(FALSE), m_stream(NULL), |
8ef6a930 | 54 | m_mode(mode), m_destroybuf(FALSE), m_destroystream(TRUE) |
84b46c35 | 55 | { |
8ef6a930 | 56 | m_stream = new wxStreamBase(); |
84b46c35 GL |
57 | } |
58 | ||
59 | wxStreamBuffer::wxStreamBuffer(const wxStreamBuffer& buffer) | |
60 | { | |
61 | m_buffer_start = buffer.m_buffer_start; | |
62 | m_buffer_end = buffer.m_buffer_end; | |
63 | m_buffer_pos = buffer.m_buffer_pos; | |
64 | m_buffer_size = buffer.m_buffer_size; | |
65 | m_fixed = buffer.m_fixed; | |
66 | m_flushable = buffer.m_flushable; | |
67 | m_stream = buffer.m_stream; | |
68 | m_mode = buffer.m_mode; | |
69 | m_destroybuf = FALSE; | |
8ef6a930 | 70 | m_destroystream = FALSE; |
84b46c35 GL |
71 | } |
72 | ||
75ed1d15 | 73 | wxStreamBuffer::~wxStreamBuffer() |
6d44bf31 | 74 | { |
84b46c35 GL |
75 | if (m_destroybuf) |
76 | wxDELETEA(m_buffer_start); | |
8ef6a930 GL |
77 | if (m_destroystream) |
78 | delete m_stream; | |
6d44bf31 GL |
79 | } |
80 | ||
6d44bf31 GL |
81 | void wxStreamBuffer::SetBufferIO(char *buffer_start, char *buffer_end) |
82 | { | |
84b46c35 GL |
83 | if (m_destroybuf) |
84 | wxDELETEA(m_buffer_start); | |
885ee235 GL |
85 | m_buffer_start = buffer_start; |
86 | m_buffer_end = buffer_end; | |
6d44bf31 GL |
87 | |
88 | m_buffer_size = m_buffer_end-m_buffer_start; | |
84b46c35 | 89 | m_destroybuf = FALSE; |
75ed1d15 | 90 | ResetBuffer(); |
6d44bf31 GL |
91 | } |
92 | ||
93 | void wxStreamBuffer::SetBufferIO(size_t bufsize) | |
94 | { | |
885ee235 GL |
95 | char *b_start; |
96 | ||
926c550d GL |
97 | if (m_destroybuf) |
98 | wxDELETEA(m_buffer_start); | |
6d44bf31 GL |
99 | |
100 | if (!bufsize) { | |
101 | m_buffer_start = NULL; | |
102 | m_buffer_end = NULL; | |
103 | m_buffer_pos = NULL; | |
104 | m_buffer_size = 0; | |
885ee235 | 105 | return; |
6d44bf31 GL |
106 | } |
107 | ||
885ee235 | 108 | b_start = new char[bufsize]; |
885ee235 | 109 | SetBufferIO(b_start, b_start + bufsize); |
84b46c35 | 110 | m_destroybuf = TRUE; |
6d44bf31 GL |
111 | } |
112 | ||
113 | void wxStreamBuffer::ResetBuffer() | |
114 | { | |
2a040d3f | 115 | m_stream->m_lasterror = wxStream_NOERROR; |
07b73270 | 116 | m_stream->m_lastcount = 0; |
75ed1d15 | 117 | if (m_mode == read) |
6d44bf31 GL |
118 | m_buffer_pos = m_buffer_end; |
119 | else | |
120 | m_buffer_pos = m_buffer_start; | |
121 | } | |
122 | ||
75ed1d15 GL |
123 | bool wxStreamBuffer::FillBuffer() |
124 | { | |
125 | size_t count; | |
126 | ||
127 | count = m_stream->OnSysRead(m_buffer_start, m_buffer_size); | |
128 | m_buffer_end = m_buffer_start+count; | |
129 | m_buffer_pos = m_buffer_start; | |
130 | ||
131 | if (count == 0) | |
132 | return FALSE; | |
133 | return TRUE; | |
134 | } | |
135 | ||
136 | bool wxStreamBuffer::FlushBuffer() | |
137 | { | |
138 | size_t count, current; | |
139 | ||
84b46c35 | 140 | if (m_buffer_pos == m_buffer_start || !m_flushable) |
75ed1d15 GL |
141 | return FALSE; |
142 | ||
143 | current = m_buffer_pos-m_buffer_start; | |
144 | count = m_stream->OnSysWrite(m_buffer_start, current); | |
145 | if (count != current) | |
146 | return FALSE; | |
147 | m_buffer_pos = m_buffer_start; | |
148 | ||
149 | return TRUE; | |
150 | } | |
151 | ||
152 | void wxStreamBuffer::GetFromBuffer(void *buffer, size_t size) | |
153 | { | |
154 | size_t s_toget = m_buffer_end-m_buffer_pos; | |
155 | ||
156 | if (size < s_toget) | |
157 | s_toget = size; | |
158 | ||
159 | memcpy(buffer, m_buffer_pos, s_toget); | |
160 | m_buffer_pos += s_toget; | |
161 | } | |
162 | ||
163 | void wxStreamBuffer::PutToBuffer(const void *buffer, size_t size) | |
164 | { | |
165 | size_t s_toput = m_buffer_end-m_buffer_pos; | |
166 | ||
167 | if (s_toput < size && !m_fixed) { | |
168 | m_buffer_start = (char *)realloc(m_buffer_start, m_buffer_size+size); | |
169 | // I round a bit | |
84b46c35 | 170 | m_buffer_size += size; |
75ed1d15 GL |
171 | m_buffer_end = m_buffer_start+m_buffer_size; |
172 | s_toput = size; | |
173 | } | |
174 | if (s_toput > size) | |
175 | s_toput = size; | |
176 | memcpy(m_buffer_pos, buffer, s_toput); | |
177 | m_buffer_pos += s_toput; | |
178 | } | |
179 | ||
84b46c35 GL |
180 | void wxStreamBuffer::PutChar(char c) |
181 | { | |
182 | wxASSERT(m_stream != NULL); | |
183 | ||
184 | if (!m_buffer_size) { | |
185 | m_stream->OnSysWrite(&c, 1); | |
186 | return; | |
187 | } | |
188 | ||
9fc0fe37 GL |
189 | if (GetDataLeft() == 0 && !FlushBuffer()) { |
190 | CHECK_ERROR(wxStream_WRITE_ERR); | |
84b46c35 | 191 | return; |
8ef6a930 | 192 | } |
84b46c35 GL |
193 | |
194 | PutToBuffer(&c, 1); | |
195 | m_stream->m_lastcount = 1; | |
196 | } | |
197 | ||
6319afe3 GL |
198 | char wxStreamBuffer::Peek() |
199 | { | |
200 | char c; | |
201 | ||
202 | wxASSERT(m_stream != NULL && m_buffer_size != 0); | |
203 | ||
204 | if (!GetDataLeft()) { | |
205 | CHECK_ERROR(wxStream_READ_ERR); | |
206 | return 0; | |
207 | } | |
208 | ||
209 | GetFromBuffer(&c, 1); | |
210 | m_buffer_pos--; | |
211 | ||
212 | return c; | |
213 | } | |
214 | ||
84b46c35 GL |
215 | char wxStreamBuffer::GetChar() |
216 | { | |
217 | char c; | |
218 | ||
219 | wxASSERT(m_stream != NULL); | |
220 | ||
221 | if (!m_buffer_size) { | |
222 | m_stream->OnSysRead(&c, 1); | |
223 | return c; | |
224 | } | |
225 | ||
8ef6a930 | 226 | if (!GetDataLeft()) { |
926c550d | 227 | CHECK_ERROR(wxStream_READ_ERR); |
84b46c35 | 228 | return 0; |
8ef6a930 | 229 | } |
84b46c35 GL |
230 | |
231 | GetFromBuffer(&c, 1); | |
e57e26dd | 232 | |
84b46c35 GL |
233 | m_stream->m_lastcount = 1; |
234 | return c; | |
235 | } | |
236 | ||
8ef6a930 | 237 | size_t wxStreamBuffer::Read(void *buffer, size_t size) |
6d44bf31 | 238 | { |
75ed1d15 | 239 | wxASSERT(m_stream != NULL); |
6d44bf31 | 240 | |
7f42cff1 GL |
241 | if (m_mode == write) |
242 | return 0; | |
243 | ||
6d44bf31 GL |
244 | // ------------------ |
245 | // Buffering disabled | |
246 | // ------------------ | |
247 | ||
2a040d3f | 248 | m_stream->m_lasterror = wxStream_NOERROR; |
926c550d | 249 | if (!m_buffer_size) |
8ef6a930 | 250 | return (m_stream->m_lastcount += m_stream->OnSysRead(buffer, size)); |
6d44bf31 GL |
251 | |
252 | // ----------------- | |
253 | // Buffering enabled | |
254 | // ----------------- | |
255 | size_t buf_left, orig_size = size; | |
6d44bf31 GL |
256 | |
257 | while (size > 0) { | |
75ed1d15 | 258 | buf_left = GetDataLeft(); |
6d44bf31 GL |
259 | |
260 | // First case: the requested buffer is larger than the stream buffer, | |
84b46c35 | 261 | // we split it. |
6d44bf31 | 262 | if (size > buf_left) { |
75ed1d15 GL |
263 | GetFromBuffer(buffer, buf_left); |
264 | size -= buf_left; | |
6d44bf31 GL |
265 | buffer = (char *)buffer + buf_left; // ANSI C++ violation. |
266 | ||
75ed1d15 | 267 | if (!FillBuffer()) { |
6319afe3 | 268 | CHECK_ERROR(wxStream_EOF); |
8ef6a930 | 269 | return (m_stream->m_lastcount = orig_size-size); |
6d44bf31 GL |
270 | } |
271 | } else { | |
272 | ||
273 | // Second case: we just copy from the stream buffer. | |
75ed1d15 | 274 | GetFromBuffer(buffer, size); |
6d44bf31 GL |
275 | break; |
276 | } | |
277 | } | |
8ef6a930 | 278 | return (m_stream->m_lastcount += orig_size); |
6d44bf31 GL |
279 | } |
280 | ||
8ef6a930 GL |
281 | size_t wxStreamBuffer::Read(wxStreamBuffer *s_buf) |
282 | { | |
283 | char buf[BUF_TEMP_SIZE]; | |
284 | size_t s = 0, bytes_read = BUF_TEMP_SIZE; | |
285 | ||
7f42cff1 GL |
286 | if (m_mode == write) |
287 | return 0; | |
288 | ||
062c4861 | 289 | while (bytes_read != 0) { |
8ef6a930 GL |
290 | bytes_read = Read(buf, bytes_read); |
291 | bytes_read = s_buf->Write(buf, bytes_read); | |
292 | s += bytes_read; | |
293 | } | |
294 | return s; | |
295 | } | |
296 | ||
297 | size_t wxStreamBuffer::Write(const void *buffer, size_t size) | |
6d44bf31 | 298 | { |
75ed1d15 | 299 | wxASSERT(m_stream != NULL); |
6d44bf31 | 300 | |
7f42cff1 GL |
301 | if (m_mode == read) |
302 | return 0; | |
303 | ||
6d44bf31 GL |
304 | // ------------------ |
305 | // Buffering disabled | |
306 | // ------------------ | |
307 | ||
2a040d3f | 308 | m_stream->m_lasterror = wxStream_NOERROR; |
8ef6a930 GL |
309 | if (!m_buffer_size) |
310 | return (m_stream->m_lastcount = m_stream->OnSysWrite(buffer, size)); | |
6d44bf31 GL |
311 | |
312 | // ------------------ | |
313 | // Buffering enabled | |
314 | // ------------------ | |
315 | ||
316 | size_t buf_left, orig_size = size; | |
6d44bf31 GL |
317 | |
318 | while (size > 0) { | |
319 | buf_left = m_buffer_end - m_buffer_pos; | |
320 | ||
321 | // First case: the buffer to write is larger than the stream buffer, | |
322 | // we split it | |
323 | if (size > buf_left) { | |
75ed1d15 | 324 | PutToBuffer(buffer, buf_left); |
6d44bf31 GL |
325 | size -= buf_left; |
326 | buffer = (char *)buffer + buf_left; // ANSI C++ violation. | |
327 | ||
75ed1d15 | 328 | if (!FlushBuffer()) { |
926c550d | 329 | CHECK_ERROR(wxStream_WRITE_ERR); |
8ef6a930 | 330 | return (m_stream->m_lastcount = orig_size-size); |
6d44bf31 | 331 | } |
8ef6a930 | 332 | |
6d44bf31 GL |
333 | m_buffer_pos = m_buffer_start; |
334 | ||
335 | } else { | |
336 | ||
337 | // Second case: just copy it in the stream buffer. | |
75ed1d15 | 338 | PutToBuffer(buffer, size); |
6d44bf31 GL |
339 | break; |
340 | } | |
341 | } | |
8ef6a930 GL |
342 | return (m_stream->m_lastcount = orig_size); |
343 | } | |
344 | ||
345 | size_t wxStreamBuffer::Write(wxStreamBuffer *sbuf) | |
346 | { | |
347 | char buf[BUF_TEMP_SIZE]; | |
eb4e516d | 348 | size_t s = 0, bytes_count = BUF_TEMP_SIZE, b_count2; |
fae05df5 | 349 | wxInputStream *in_stream; |
8ef6a930 | 350 | |
7f42cff1 GL |
351 | if (m_mode == read) |
352 | return 0; | |
353 | ||
fae05df5 GL |
354 | in_stream = (wxInputStream *)sbuf->Stream(); |
355 | ||
8ef6a930 | 356 | while (bytes_count == BUF_TEMP_SIZE) { |
eb4e516d GL |
357 | b_count2 = sbuf->Read(buf, bytes_count); |
358 | bytes_count = Write(buf, b_count2); | |
359 | if (b_count2 > bytes_count) | |
fae05df5 | 360 | in_stream->Ungetch(buf+bytes_count, b_count2-bytes_count); |
8ef6a930 GL |
361 | s += bytes_count; |
362 | } | |
363 | return s; | |
75ed1d15 GL |
364 | } |
365 | ||
366 | off_t wxStreamBuffer::Seek(off_t pos, wxSeekMode mode) | |
367 | { | |
368 | off_t ret_off, diff, last_access; | |
369 | ||
370 | last_access = GetLastAccess(); | |
371 | ||
8ef6a930 | 372 | if (!m_flushable) { |
84b46c35 GL |
373 | diff = pos + GetIntPosition(); |
374 | if (diff < 0 || diff > last_access) | |
375 | return wxInvalidOffset; | |
376 | SetIntPosition(diff); | |
377 | return diff; | |
378 | } | |
379 | ||
75ed1d15 GL |
380 | switch (mode) { |
381 | case wxFromStart: { | |
382 | // We'll try to compute an internal position later ... | |
383 | ret_off = m_stream->OnSysSeek(pos, wxFromStart); | |
384 | ResetBuffer(); | |
385 | return ret_off; | |
386 | } | |
387 | case wxFromCurrent: { | |
388 | diff = pos + GetIntPosition(); | |
389 | ||
390 | if ( (diff > last_access) || (diff < 0) ) { | |
d4feedcf GL |
391 | // We must take into account the fact that we have read something |
392 | // previously. | |
f1f5976f | 393 | ret_off = m_stream->OnSysSeek(diff-last_access, wxFromCurrent); |
75ed1d15 GL |
394 | ResetBuffer(); |
395 | return ret_off; | |
396 | } else { | |
397 | SetIntPosition(diff); | |
398 | return pos; | |
399 | } | |
400 | } | |
401 | case wxFromEnd: | |
402 | // Hard to compute: always seek to the requested position. | |
403 | ret_off = m_stream->OnSysSeek(pos, wxFromEnd); | |
404 | ResetBuffer(); | |
405 | return ret_off; | |
406 | } | |
407 | return wxInvalidOffset; | |
408 | } | |
409 | ||
410 | off_t wxStreamBuffer::Tell() const | |
411 | { | |
412 | off_t pos; | |
413 | ||
8ef6a930 | 414 | if (m_flushable) { |
84b46c35 GL |
415 | pos = m_stream->OnSysTell(); |
416 | if (pos == wxInvalidOffset) | |
417 | return wxInvalidOffset; | |
418 | return pos - GetLastAccess() + GetIntPosition(); | |
419 | } else | |
420 | return GetIntPosition(); | |
75ed1d15 GL |
421 | } |
422 | ||
8ef6a930 | 423 | size_t wxStreamBuffer::GetDataLeft() |
75ed1d15 | 424 | { |
8ef6a930 GL |
425 | if (m_buffer_end == m_buffer_pos && m_flushable) |
426 | FillBuffer(); | |
75ed1d15 GL |
427 | return m_buffer_end-m_buffer_pos; |
428 | } | |
429 | ||
430 | // ---------------------------------------------------------------------------- | |
431 | // wxStreamBase | |
432 | // ---------------------------------------------------------------------------- | |
433 | ||
434 | wxStreamBase::wxStreamBase() | |
435 | { | |
436 | m_lasterror = wxStream_NOERROR; | |
437 | m_lastcount = 0; | |
438 | } | |
439 | ||
440 | wxStreamBase::~wxStreamBase() | |
441 | { | |
442 | } | |
443 | ||
df875e59 | 444 | size_t wxStreamBase::OnSysRead(void *WXUNUSED(buffer), size_t WXUNUSED(size)) |
75ed1d15 GL |
445 | { |
446 | return 0; | |
447 | } | |
448 | ||
df875e59 | 449 | size_t wxStreamBase::OnSysWrite(const void *WXUNUSED(buffer), size_t WXUNUSED(bufsize)) |
75ed1d15 GL |
450 | { |
451 | return 0; | |
452 | } | |
453 | ||
df875e59 | 454 | off_t wxStreamBase::OnSysSeek(off_t WXUNUSED(seek), wxSeekMode WXUNUSED(mode)) |
75ed1d15 GL |
455 | { |
456 | return wxInvalidOffset; | |
457 | } | |
458 | ||
84b46c35 | 459 | off_t wxStreamBase::OnSysTell() const |
75ed1d15 GL |
460 | { |
461 | return wxInvalidOffset; | |
6d44bf31 GL |
462 | } |
463 | ||
1678ad78 GL |
464 | // ---------------------------------------------------------------------------- |
465 | // wxInputStream | |
466 | // ---------------------------------------------------------------------------- | |
467 | ||
3d4c6a21 | 468 | wxInputStream::wxInputStream() |
fae05df5 GL |
469 | : wxStreamBase(), |
470 | m_wback(NULL), m_wbacksize(0), m_wbackcur(0) | |
3d4c6a21 | 471 | { |
6d44bf31 GL |
472 | } |
473 | ||
fae05df5 | 474 | wxInputStream::~wxInputStream() |
6d44bf31 | 475 | { |
fae05df5 GL |
476 | if (m_wback) |
477 | free(m_wback); | |
3d4c6a21 GL |
478 | } |
479 | ||
fae05df5 | 480 | char *wxInputStream::AllocSpaceWBack(size_t needed_size) |
3d4c6a21 | 481 | { |
fae05df5 GL |
482 | char *temp_b; |
483 | ||
484 | m_wbacksize += needed_size; | |
485 | ||
486 | if (!m_wback) | |
487 | temp_b = (char *)malloc(m_wbacksize); | |
488 | else | |
489 | temp_b = (char *)realloc(m_wback, m_wbacksize); | |
490 | ||
491 | if (!temp_b) | |
492 | return NULL; | |
493 | m_wback = temp_b; | |
494 | ||
495 | return (char *)(m_wback+(m_wbacksize-needed_size)); | |
6d44bf31 GL |
496 | } |
497 | ||
fae05df5 | 498 | size_t wxInputStream::GetWBack(char *buf, size_t bsize) |
6d44bf31 | 499 | { |
fae05df5 GL |
500 | size_t s_toget = m_wbacksize-m_wbackcur; |
501 | ||
a324a7bc GL |
502 | if (!m_wback) |
503 | return 0; | |
504 | ||
fae05df5 GL |
505 | if (bsize < s_toget) |
506 | s_toget = bsize; | |
507 | ||
508 | memcpy(buf, (m_wback+m_wbackcur), s_toget); | |
509 | ||
510 | m_wbackcur += s_toget; | |
511 | if (m_wbackcur == m_wbacksize) { | |
512 | free(m_wback); | |
513 | m_wback = (char *)NULL; | |
514 | m_wbacksize = 0; | |
515 | m_wbackcur = 0; | |
516 | } | |
517 | ||
518 | return s_toget; | |
6d44bf31 GL |
519 | } |
520 | ||
8f7173ab | 521 | size_t wxInputStream::Ungetch(const void *buf, size_t bufsize) |
fae05df5 GL |
522 | { |
523 | char *ptrback; | |
524 | ||
525 | ptrback = AllocSpaceWBack(bufsize); | |
526 | if (!ptrback) | |
527 | return 0; | |
1e3eca9d | 528 | |
fae05df5 GL |
529 | memcpy(ptrback, buf, bufsize); |
530 | return bufsize; | |
531 | } | |
532 | ||
533 | bool wxInputStream::Ungetch(char c) | |
1e3eca9d | 534 | { |
fae05df5 | 535 | char *ptrback; |
1e3eca9d | 536 | |
fae05df5 GL |
537 | ptrback = AllocSpaceWBack(1); |
538 | if (!ptrback) | |
539 | return FALSE; | |
1e3eca9d | 540 | |
fae05df5 GL |
541 | *ptrback = c; |
542 | return TRUE; | |
543 | } | |
544 | ||
545 | char wxInputStream::GetC() | |
546 | { | |
547 | char c; | |
548 | Read(&c, 1); | |
549 | return c; | |
1e3eca9d GL |
550 | } |
551 | ||
6d44bf31 GL |
552 | wxInputStream& wxInputStream::Read(void *buffer, size_t size) |
553 | { | |
fae05df5 GL |
554 | size_t retsize; |
555 | char *buf = (char *)buffer; | |
556 | ||
557 | retsize = GetWBack(buf, size); | |
558 | if (retsize == size) { | |
559 | m_lastcount = size; | |
560 | m_lasterror = wxStream_NOERROR; | |
561 | return *this; | |
562 | } | |
563 | size -= retsize; | |
564 | buf += retsize; | |
565 | ||
566 | m_lastcount = OnSysRead(buf, size); | |
6d44bf31 | 567 | return *this; |
3d4c6a21 GL |
568 | } |
569 | ||
75ed1d15 GL |
570 | char wxInputStream::Peek() |
571 | { | |
fae05df5 | 572 | char c; |
75ed1d15 | 573 | |
fae05df5 GL |
574 | Read(&c, 1); |
575 | if (m_lasterror == wxStream_NOERROR) { | |
576 | Ungetch(c); | |
577 | return c; | |
578 | } | |
579 | return 0; | |
75ed1d15 GL |
580 | } |
581 | ||
3d4c6a21 GL |
582 | wxInputStream& wxInputStream::Read(wxOutputStream& stream_out) |
583 | { | |
584 | char buf[BUF_TEMP_SIZE]; | |
585 | size_t bytes_read = BUF_TEMP_SIZE; | |
586 | ||
8ef6a930 | 587 | while (bytes_read == BUF_TEMP_SIZE) { |
3d4c6a21 | 588 | bytes_read = Read(buf, bytes_read).LastRead(); |
8ef6a930 | 589 | bytes_read = stream_out.Write(buf, bytes_read).LastWrite(); |
3d4c6a21 GL |
590 | } |
591 | return *this; | |
592 | } | |
593 | ||
75ed1d15 GL |
594 | off_t wxInputStream::SeekI(off_t pos, wxSeekMode mode) |
595 | { | |
60b6c062 | 596 | return OnSysSeek(pos, mode); |
75ed1d15 GL |
597 | } |
598 | ||
599 | off_t wxInputStream::TellI() const | |
600 | { | |
60b6c062 | 601 | return OnSysTell(); |
75ed1d15 GL |
602 | } |
603 | ||
604 | // -------------------- | |
605 | // Overloaded operators | |
606 | // -------------------- | |
607 | ||
fae05df5 GL |
608 | #if wxUSE_SERIAL |
609 | wxInputStream& wxInputStream::operator>>(wxObject *& obj) | |
1678ad78 | 610 | { |
fae05df5 GL |
611 | wxObjectInputStream obj_s(*this); |
612 | obj = obj_s.LoadObject(); | |
1678ad78 GL |
613 | return *this; |
614 | } | |
fae05df5 | 615 | #endif |
1678ad78 | 616 | |
1678ad78 | 617 | |
fae05df5 GL |
618 | // ---------------------------------------------------------------------------- |
619 | // wxOutputStream | |
620 | // ---------------------------------------------------------------------------- | |
621 | wxOutputStream::wxOutputStream() | |
622 | : wxStreamBase() | |
1678ad78 | 623 | { |
1678ad78 GL |
624 | } |
625 | ||
fae05df5 | 626 | wxOutputStream::~wxOutputStream() |
123a7fdd | 627 | { |
123a7fdd GL |
628 | } |
629 | ||
fae05df5 | 630 | wxOutputStream& wxOutputStream::Write(const void *buffer, size_t size) |
1678ad78 | 631 | { |
fae05df5 | 632 | m_lastcount = OnSysWrite(buffer, size); |
1678ad78 GL |
633 | return *this; |
634 | } | |
635 | ||
fae05df5 | 636 | wxOutputStream& wxOutputStream::Write(wxInputStream& stream_in) |
38830220 | 637 | { |
fae05df5 | 638 | stream_in.Read(*this); |
38830220 RR |
639 | return *this; |
640 | } | |
641 | ||
fae05df5 | 642 | off_t wxOutputStream::TellO() const |
38830220 | 643 | { |
60b6c062 | 644 | return OnSysTell(); |
38830220 RR |
645 | } |
646 | ||
fae05df5 | 647 | off_t wxOutputStream::SeekO(off_t pos, wxSeekMode mode) |
38830220 | 648 | { |
60b6c062 | 649 | return OnSysSeek(pos, mode); |
38830220 RR |
650 | } |
651 | ||
fae05df5 | 652 | void wxOutputStream::Sync() |
1678ad78 | 653 | { |
1678ad78 GL |
654 | } |
655 | ||
47d67540 | 656 | #if wxUSE_SERIAL |
fae05df5 | 657 | wxOutputStream& wxOutputStream::operator<<(wxObject& obj) |
123a7fdd | 658 | { |
fae05df5 GL |
659 | wxObjectOutputStream obj_s(*this); |
660 | obj_s.SaveObject(obj); | |
123a7fdd GL |
661 | return *this; |
662 | } | |
fcc6dddd | 663 | #endif |
123a7fdd | 664 | |
e2acb9ae RR |
665 | // ---------------------------------------------------------------------------- |
666 | // wxCountingOutputStream | |
667 | // ---------------------------------------------------------------------------- | |
668 | ||
669 | wxCountingOutputStream::wxCountingOutputStream () | |
670 | : wxOutputStream() | |
671 | { | |
672 | m_currentPos = 0; | |
673 | } | |
674 | ||
675 | size_t wxCountingOutputStream::GetSize() const | |
676 | { | |
677 | return m_lastcount; | |
678 | } | |
679 | ||
680 | size_t wxCountingOutputStream::OnSysWrite(const void *buffer, size_t size) | |
681 | { | |
682 | m_currentPos += size; | |
683 | if (m_currentPos > m_lastcount) m_lastcount = m_currentPos; | |
684 | return m_currentPos; | |
685 | } | |
686 | ||
687 | off_t wxCountingOutputStream::OnSysSeek(off_t pos, wxSeekMode mode) | |
688 | { | |
689 | if (mode == wxFromStart) | |
690 | { | |
691 | m_currentPos = pos; | |
692 | } | |
693 | if (mode == wxFromEnd) | |
694 | { | |
695 | m_currentPos = m_lastcount + pos; | |
696 | } | |
697 | else | |
698 | { | |
699 | m_currentPos += pos; | |
700 | } | |
701 | if (m_currentPos > m_lastcount) m_lastcount = m_currentPos; | |
702 | ||
703 | return m_currentPos; // ? | |
704 | } | |
705 | ||
706 | off_t wxCountingOutputStream::OnSysTell() const | |
707 | { | |
708 | return m_currentPos; // ? | |
709 | } | |
710 | ||
1678ad78 | 711 | // ---------------------------------------------------------------------------- |
fae05df5 | 712 | // wxFilterInputStream |
1678ad78 | 713 | // ---------------------------------------------------------------------------- |
e2acb9ae | 714 | |
fae05df5 GL |
715 | wxFilterInputStream::wxFilterInputStream() |
716 | : wxInputStream() | |
3d4c6a21 | 717 | { |
6d44bf31 GL |
718 | } |
719 | ||
fae05df5 GL |
720 | wxFilterInputStream::wxFilterInputStream(wxInputStream& stream) |
721 | : wxInputStream() | |
6d44bf31 | 722 | { |
fae05df5 | 723 | m_parent_i_stream = &stream; |
3d4c6a21 GL |
724 | } |
725 | ||
fae05df5 | 726 | wxFilterInputStream::~wxFilterInputStream() |
3d4c6a21 | 727 | { |
6d44bf31 GL |
728 | } |
729 | ||
fae05df5 GL |
730 | // ---------------------------------------------------------------------------- |
731 | // wxFilterOutputStream | |
732 | // ---------------------------------------------------------------------------- | |
733 | wxFilterOutputStream::wxFilterOutputStream() | |
734 | : wxOutputStream() | |
6d44bf31 | 735 | { |
3d4c6a21 GL |
736 | } |
737 | ||
fae05df5 GL |
738 | wxFilterOutputStream::wxFilterOutputStream(wxOutputStream& stream) |
739 | : wxOutputStream() | |
3d4c6a21 | 740 | { |
fae05df5 | 741 | m_parent_o_stream = &stream; |
6d44bf31 GL |
742 | } |
743 | ||
fae05df5 | 744 | wxFilterOutputStream::~wxFilterOutputStream() |
6d44bf31 | 745 | { |
6d44bf31 GL |
746 | } |
747 | ||
fae05df5 GL |
748 | // ---------------------------------------------------------------------------- |
749 | // wxBufferedInputStream | |
750 | // ---------------------------------------------------------------------------- | |
751 | wxBufferedInputStream::wxBufferedInputStream(wxInputStream& s) | |
752 | : wxFilterInputStream(s) | |
6d44bf31 | 753 | { |
fae05df5 GL |
754 | m_i_streambuf = new wxStreamBuffer(*this, wxStreamBuffer::read); |
755 | m_i_streambuf->SetBufferIO(1024); | |
6d44bf31 GL |
756 | } |
757 | ||
fae05df5 | 758 | wxBufferedInputStream::~wxBufferedInputStream() |
6d44bf31 | 759 | { |
fae05df5 | 760 | delete m_i_streambuf; |
6d44bf31 GL |
761 | } |
762 | ||
6319afe3 GL |
763 | char wxBufferedInputStream::Peek() |
764 | { | |
765 | return m_i_streambuf->Peek(); | |
766 | } | |
767 | ||
fae05df5 | 768 | wxInputStream& wxBufferedInputStream::Read(void *buffer, size_t size) |
1e3eca9d | 769 | { |
fae05df5 GL |
770 | size_t retsize; |
771 | char *buf = (char *)buffer; | |
1e3eca9d | 772 | |
fae05df5 | 773 | retsize = GetWBack(buf, size); |
a324a7bc | 774 | m_lastcount = retsize; |
fae05df5 | 775 | if (retsize == size) { |
fae05df5 GL |
776 | m_lasterror = wxStream_NOERROR; |
777 | return *this; | |
778 | } | |
779 | size -= retsize; | |
780 | buf += retsize; | |
1e3eca9d | 781 | |
fae05df5 | 782 | m_i_streambuf->Read(buf, size); |
6d44bf31 | 783 | |
fae05df5 | 784 | return *this; |
6d44bf31 GL |
785 | } |
786 | ||
fae05df5 | 787 | off_t wxBufferedInputStream::SeekI(off_t pos, wxSeekMode mode) |
6d44bf31 | 788 | { |
fae05df5 | 789 | return m_i_streambuf->Seek(pos, mode); |
6d44bf31 GL |
790 | } |
791 | ||
fae05df5 | 792 | off_t wxBufferedInputStream::TellI() const |
6d44bf31 | 793 | { |
fae05df5 | 794 | return m_i_streambuf->Tell(); |
38830220 | 795 | } |
6d44bf31 | 796 | |
fae05df5 | 797 | size_t wxBufferedInputStream::OnSysRead(void *buffer, size_t bufsize) |
38830220 | 798 | { |
fae05df5 | 799 | return m_parent_i_stream->Read(buffer, bufsize).LastRead(); |
38830220 RR |
800 | } |
801 | ||
fae05df5 | 802 | off_t wxBufferedInputStream::OnSysSeek(off_t seek, wxSeekMode mode) |
38830220 | 803 | { |
fae05df5 | 804 | return m_parent_i_stream->SeekI(seek, mode); |
6d44bf31 GL |
805 | } |
806 | ||
fae05df5 | 807 | off_t wxBufferedInputStream::OnSysTell() const |
6d44bf31 | 808 | { |
fae05df5 | 809 | return m_parent_i_stream->TellI(); |
38830220 | 810 | } |
6d44bf31 | 811 | |
fae05df5 GL |
812 | // ---------------------------------------------------------------------------- |
813 | // wxBufferedOutputStream | |
814 | // ---------------------------------------------------------------------------- | |
6d44bf31 | 815 | |
fae05df5 GL |
816 | wxBufferedOutputStream::wxBufferedOutputStream(wxOutputStream& s) |
817 | : wxFilterOutputStream(s) | |
6d44bf31 | 818 | { |
fae05df5 GL |
819 | m_o_streambuf = new wxStreamBuffer(*this, wxStreamBuffer::write); |
820 | m_o_streambuf->SetBufferIO(1024); | |
6d44bf31 GL |
821 | } |
822 | ||
fae05df5 | 823 | wxBufferedOutputStream::~wxBufferedOutputStream() |
6d44bf31 | 824 | { |
fae05df5 | 825 | delete m_o_streambuf; |
3d4c6a21 GL |
826 | } |
827 | ||
fae05df5 | 828 | wxOutputStream& wxBufferedOutputStream::Write(const void *buffer, size_t size) |
123a7fdd | 829 | { |
a324a7bc | 830 | m_lastcount = 0; |
fae05df5 | 831 | m_o_streambuf->Write(buffer, size); |
123a7fdd GL |
832 | return *this; |
833 | } | |
834 | ||
fae05df5 | 835 | off_t wxBufferedOutputStream::SeekO(off_t pos, wxSeekMode mode) |
f4ada568 | 836 | { |
fae05df5 | 837 | return m_o_streambuf->Seek(pos, mode); |
f4ada568 GL |
838 | } |
839 | ||
fae05df5 | 840 | off_t wxBufferedOutputStream::TellO() const |
3d4c6a21 | 841 | { |
fae05df5 | 842 | return m_o_streambuf->Tell(); |
3d4c6a21 GL |
843 | } |
844 | ||
fae05df5 | 845 | void wxBufferedOutputStream::Sync() |
3d4c6a21 | 846 | { |
fae05df5 GL |
847 | m_o_streambuf->FlushBuffer(); |
848 | m_parent_o_stream->Sync(); | |
3d4c6a21 | 849 | } |
219f895a | 850 | |
fae05df5 | 851 | size_t wxBufferedOutputStream::OnSysWrite(const void *buffer, size_t bufsize) |
f4ada568 | 852 | { |
fae05df5 | 853 | return m_parent_o_stream->Write(buffer, bufsize).LastWrite(); |
f4ada568 GL |
854 | } |
855 | ||
fae05df5 | 856 | off_t wxBufferedOutputStream::OnSysSeek(off_t seek, wxSeekMode mode) |
219f895a | 857 | { |
fae05df5 | 858 | return m_parent_o_stream->SeekO(seek, mode); |
219f895a RR |
859 | } |
860 | ||
fae05df5 | 861 | off_t wxBufferedOutputStream::OnSysTell() const |
219f895a | 862 | { |
fae05df5 | 863 | return m_parent_o_stream->TellO(); |
219f895a | 864 | } |
6d44bf31 | 865 | |
6d44bf31 GL |
866 | // ---------------------------------------------------------------------------- |
867 | // Some IOManip function | |
868 | // ---------------------------------------------------------------------------- | |
869 | ||
870 | wxOutputStream& wxEndL(wxOutputStream& stream) | |
871 | { | |
872 | #ifdef __MSW__ | |
873 | return stream.Write("\r\n", 2); | |
1e3eca9d GL |
874 | #else |
875 | #ifdef __WXMAC__ | |
876 | return stream.Write("\r", 1); | |
6d44bf31 GL |
877 | #else |
878 | return stream.Write("\n", 1); | |
879 | #endif | |
1e3eca9d | 880 | #endif |
6d44bf31 | 881 | } |
ce4169a4 RR |
882 | |
883 | #endif | |
884 | // wxUSE_STREAMS |