]>
Commit | Line | Data |
---|---|---|
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 | ||
16 | // For compilers that support precompilation, includes "wx.h". | |
17 | #include "wx/wxprec.h" | |
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 | ||
29 | #include <ctype.h> | |
30 | #include <wx/stream.h> | |
31 | #include <wx/datstrm.h> | |
32 | #include <wx/objstrm.h> | |
33 | ||
34 | #define BUF_TEMP_SIZE 10000 | |
35 | ||
36 | // ---------------------------------------------------------------------------- | |
37 | // wxStreamBuffer | |
38 | // ---------------------------------------------------------------------------- | |
39 | ||
40 | #define CHECK_ERROR(err) \ | |
41 | if (m_stream->m_lasterror == wxStream_NOERROR) \ | |
42 | m_stream->m_lasterror = err | |
43 | ||
44 | wxStreamBuffer::wxStreamBuffer(wxStreamBase& stream, BufMode mode) | |
45 | : m_buffer_start(NULL), m_buffer_end(NULL), m_buffer_pos(NULL), | |
46 | m_buffer_size(0), m_fixed(TRUE), m_flushable(TRUE), m_stream(&stream), | |
47 | m_mode(mode), m_destroybuf(FALSE), m_destroystream(FALSE) | |
48 | { | |
49 | } | |
50 | ||
51 | wxStreamBuffer::wxStreamBuffer(BufMode mode) | |
52 | : m_buffer_start(NULL), m_buffer_end(NULL), m_buffer_pos(NULL), | |
53 | m_buffer_size(0), m_fixed(TRUE), m_flushable(FALSE), m_stream(NULL), | |
54 | m_mode(mode), m_destroybuf(FALSE), m_destroystream(TRUE) | |
55 | { | |
56 | m_stream = new wxStreamBase(); | |
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; | |
70 | m_destroystream = FALSE; | |
71 | } | |
72 | ||
73 | wxStreamBuffer::~wxStreamBuffer() | |
74 | { | |
75 | if (m_destroybuf) | |
76 | wxDELETEA(m_buffer_start); | |
77 | if (m_destroystream) | |
78 | delete m_stream; | |
79 | } | |
80 | ||
81 | void wxStreamBuffer::SetBufferIO(char *buffer_start, char *buffer_end) | |
82 | { | |
83 | if (m_destroybuf) | |
84 | wxDELETEA(m_buffer_start); | |
85 | m_buffer_start = buffer_start; | |
86 | m_buffer_end = buffer_end; | |
87 | ||
88 | m_buffer_size = m_buffer_end-m_buffer_start; | |
89 | m_destroybuf = FALSE; | |
90 | ResetBuffer(); | |
91 | } | |
92 | ||
93 | void wxStreamBuffer::SetBufferIO(size_t bufsize) | |
94 | { | |
95 | char *b_start; | |
96 | ||
97 | if (m_destroybuf) | |
98 | wxDELETEA(m_buffer_start); | |
99 | ||
100 | if (!bufsize) { | |
101 | m_buffer_start = NULL; | |
102 | m_buffer_end = NULL; | |
103 | m_buffer_pos = NULL; | |
104 | m_buffer_size = 0; | |
105 | return; | |
106 | } | |
107 | ||
108 | b_start = new char[bufsize]; | |
109 | SetBufferIO(b_start, b_start + bufsize); | |
110 | m_destroybuf = TRUE; | |
111 | } | |
112 | ||
113 | void wxStreamBuffer::ResetBuffer() | |
114 | { | |
115 | m_stream->m_lasterror = wxStream_NOERROR; | |
116 | m_stream->m_lastcount = 0; | |
117 | if (m_mode == read) | |
118 | m_buffer_pos = m_buffer_end; | |
119 | else | |
120 | m_buffer_pos = m_buffer_start; | |
121 | } | |
122 | ||
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 | ||
140 | if (m_buffer_pos == m_buffer_start || !m_flushable) | |
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 | |
170 | m_buffer_size += size; | |
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 | ||
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 | ||
189 | if (GetDataLeft() == 0 && !FlushBuffer()) { | |
190 | CHECK_ERROR(wxStream_WRITE_ERR); | |
191 | return; | |
192 | } | |
193 | ||
194 | PutToBuffer(&c, 1); | |
195 | m_stream->m_lastcount = 1; | |
196 | } | |
197 | ||
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 | ||
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 | ||
226 | if (!GetDataLeft()) { | |
227 | CHECK_ERROR(wxStream_READ_ERR); | |
228 | return 0; | |
229 | } | |
230 | ||
231 | GetFromBuffer(&c, 1); | |
232 | ||
233 | m_stream->m_lastcount = 1; | |
234 | return c; | |
235 | } | |
236 | ||
237 | size_t wxStreamBuffer::Read(void *buffer, size_t size) | |
238 | { | |
239 | wxASSERT(m_stream != NULL); | |
240 | ||
241 | if (m_mode == write) | |
242 | return 0; | |
243 | ||
244 | // ------------------ | |
245 | // Buffering disabled | |
246 | // ------------------ | |
247 | ||
248 | m_stream->m_lasterror = wxStream_NOERROR; | |
249 | if (!m_buffer_size) | |
250 | return (m_stream->m_lastcount += m_stream->OnSysRead(buffer, size)); | |
251 | ||
252 | // ----------------- | |
253 | // Buffering enabled | |
254 | // ----------------- | |
255 | size_t buf_left, orig_size = size; | |
256 | ||
257 | while (size > 0) { | |
258 | buf_left = GetDataLeft(); | |
259 | ||
260 | // First case: the requested buffer is larger than the stream buffer, | |
261 | // we split it. | |
262 | if (size > buf_left) { | |
263 | GetFromBuffer(buffer, buf_left); | |
264 | size -= buf_left; | |
265 | buffer = (char *)buffer + buf_left; // ANSI C++ violation. | |
266 | ||
267 | if (!FillBuffer()) { | |
268 | CHECK_ERROR(wxStream_EOF); | |
269 | return (m_stream->m_lastcount = orig_size-size); | |
270 | } | |
271 | } else { | |
272 | ||
273 | // Second case: we just copy from the stream buffer. | |
274 | GetFromBuffer(buffer, size); | |
275 | break; | |
276 | } | |
277 | } | |
278 | return (m_stream->m_lastcount += orig_size); | |
279 | } | |
280 | ||
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 | ||
286 | if (m_mode == write) | |
287 | return 0; | |
288 | ||
289 | while (bytes_read != 0) { | |
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) | |
298 | { | |
299 | wxASSERT(m_stream != NULL); | |
300 | ||
301 | if (m_mode == read) | |
302 | return 0; | |
303 | ||
304 | // ------------------ | |
305 | // Buffering disabled | |
306 | // ------------------ | |
307 | ||
308 | m_stream->m_lasterror = wxStream_NOERROR; | |
309 | if (!m_buffer_size) | |
310 | return (m_stream->m_lastcount = m_stream->OnSysWrite(buffer, size)); | |
311 | ||
312 | // ------------------ | |
313 | // Buffering enabled | |
314 | // ------------------ | |
315 | ||
316 | size_t buf_left, orig_size = size; | |
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) { | |
324 | PutToBuffer(buffer, buf_left); | |
325 | size -= buf_left; | |
326 | buffer = (char *)buffer + buf_left; // ANSI C++ violation. | |
327 | ||
328 | if (!FlushBuffer()) { | |
329 | CHECK_ERROR(wxStream_WRITE_ERR); | |
330 | return (m_stream->m_lastcount = orig_size-size); | |
331 | } | |
332 | ||
333 | m_buffer_pos = m_buffer_start; | |
334 | ||
335 | } else { | |
336 | ||
337 | // Second case: just copy it in the stream buffer. | |
338 | PutToBuffer(buffer, size); | |
339 | break; | |
340 | } | |
341 | } | |
342 | return (m_stream->m_lastcount = orig_size); | |
343 | } | |
344 | ||
345 | size_t wxStreamBuffer::Write(wxStreamBuffer *sbuf) | |
346 | { | |
347 | char buf[BUF_TEMP_SIZE]; | |
348 | size_t s = 0, bytes_count = BUF_TEMP_SIZE, b_count2; | |
349 | wxInputStream *in_stream; | |
350 | ||
351 | if (m_mode == read) | |
352 | return 0; | |
353 | ||
354 | in_stream = (wxInputStream *)sbuf->Stream(); | |
355 | ||
356 | while (bytes_count == BUF_TEMP_SIZE) { | |
357 | b_count2 = sbuf->Read(buf, bytes_count); | |
358 | bytes_count = Write(buf, b_count2); | |
359 | if (b_count2 > bytes_count) | |
360 | in_stream->Ungetch(buf+bytes_count, b_count2-bytes_count); | |
361 | s += bytes_count; | |
362 | } | |
363 | return s; | |
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 | ||
372 | if (!m_flushable) { | |
373 | diff = pos + GetIntPosition(); | |
374 | if (diff < 0 || diff > last_access) | |
375 | return wxInvalidOffset; | |
376 | SetIntPosition(diff); | |
377 | return diff; | |
378 | } | |
379 | ||
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) ) { | |
391 | // We must take into account the fact that we have read something | |
392 | // previously. | |
393 | ret_off = m_stream->OnSysSeek(diff-last_access, wxFromCurrent); | |
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 | ||
414 | if (m_flushable) { | |
415 | pos = m_stream->OnSysTell(); | |
416 | if (pos == wxInvalidOffset) | |
417 | return wxInvalidOffset; | |
418 | return pos - GetLastAccess() + GetIntPosition(); | |
419 | } else | |
420 | return GetIntPosition(); | |
421 | } | |
422 | ||
423 | size_t wxStreamBuffer::GetDataLeft() | |
424 | { | |
425 | if (m_buffer_end == m_buffer_pos && m_flushable) | |
426 | FillBuffer(); | |
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 | ||
444 | size_t wxStreamBase::OnSysRead(void *WXUNUSED(buffer), size_t WXUNUSED(size)) | |
445 | { | |
446 | return 0; | |
447 | } | |
448 | ||
449 | size_t wxStreamBase::OnSysWrite(const void *WXUNUSED(buffer), size_t WXUNUSED(bufsize)) | |
450 | { | |
451 | return 0; | |
452 | } | |
453 | ||
454 | off_t wxStreamBase::OnSysSeek(off_t WXUNUSED(seek), wxSeekMode WXUNUSED(mode)) | |
455 | { | |
456 | return wxInvalidOffset; | |
457 | } | |
458 | ||
459 | off_t wxStreamBase::OnSysTell() const | |
460 | { | |
461 | return wxInvalidOffset; | |
462 | } | |
463 | ||
464 | // ---------------------------------------------------------------------------- | |
465 | // wxInputStream | |
466 | // ---------------------------------------------------------------------------- | |
467 | ||
468 | wxInputStream::wxInputStream() | |
469 | : wxStreamBase(), | |
470 | m_wback(NULL), m_wbacksize(0), m_wbackcur(0) | |
471 | { | |
472 | } | |
473 | ||
474 | wxInputStream::~wxInputStream() | |
475 | { | |
476 | if (m_wback) | |
477 | free(m_wback); | |
478 | } | |
479 | ||
480 | char *wxInputStream::AllocSpaceWBack(size_t needed_size) | |
481 | { | |
482 | char *temp_b; | |
483 | size_t old_size; | |
484 | ||
485 | old_size = m_wbacksize; | |
486 | m_wbacksize += needed_size; | |
487 | ||
488 | if (!m_wback) | |
489 | temp_b = (char *)malloc(m_wbacksize); | |
490 | else | |
491 | temp_b = (char *)realloc(m_wback, m_wbacksize); | |
492 | ||
493 | if (!temp_b) | |
494 | return NULL; | |
495 | m_wback = temp_b; | |
496 | m_wbackcur += needed_size; | |
497 | ||
498 | memmove(m_wback+needed_size, m_wback, old_size); | |
499 | ||
500 | return (char *)(m_wback); | |
501 | } | |
502 | ||
503 | size_t wxInputStream::GetWBack(char *buf, size_t bsize) | |
504 | { | |
505 | size_t s_toget = m_wbackcur; | |
506 | ||
507 | if (!m_wback) | |
508 | return 0; | |
509 | ||
510 | if (bsize < s_toget) | |
511 | s_toget = bsize; | |
512 | ||
513 | memcpy(buf, (m_wback+m_wbackcur-bsize), s_toget); | |
514 | ||
515 | m_wbackcur -= s_toget; | |
516 | if (m_wbackcur == 0) { | |
517 | free(m_wback); | |
518 | m_wback = (char *)NULL; | |
519 | m_wbacksize = 0; | |
520 | m_wbackcur = 0; | |
521 | } | |
522 | ||
523 | return s_toget; | |
524 | } | |
525 | ||
526 | size_t wxInputStream::Ungetch(const void *buf, size_t bufsize) | |
527 | { | |
528 | char *ptrback; | |
529 | ||
530 | ptrback = AllocSpaceWBack(bufsize); | |
531 | if (!ptrback) | |
532 | return 0; | |
533 | ||
534 | memcpy(ptrback, buf, bufsize); | |
535 | return bufsize; | |
536 | } | |
537 | ||
538 | bool wxInputStream::Ungetch(char c) | |
539 | { | |
540 | char *ptrback; | |
541 | ||
542 | ptrback = AllocSpaceWBack(1); | |
543 | if (!ptrback) | |
544 | return FALSE; | |
545 | ||
546 | *ptrback = c; | |
547 | return TRUE; | |
548 | } | |
549 | ||
550 | char wxInputStream::GetC() | |
551 | { | |
552 | char c; | |
553 | Read(&c, 1); | |
554 | return c; | |
555 | } | |
556 | ||
557 | wxInputStream& wxInputStream::Read(void *buffer, size_t size) | |
558 | { | |
559 | size_t retsize; | |
560 | char *buf = (char *)buffer; | |
561 | ||
562 | retsize = GetWBack(buf, size); | |
563 | if (retsize == size) { | |
564 | m_lastcount = size; | |
565 | m_lasterror = wxStream_NOERROR; | |
566 | return *this; | |
567 | } | |
568 | size -= retsize; | |
569 | buf += retsize; | |
570 | ||
571 | m_lastcount = OnSysRead(buf, size); | |
572 | return *this; | |
573 | } | |
574 | ||
575 | char wxInputStream::Peek() | |
576 | { | |
577 | char c; | |
578 | ||
579 | Read(&c, 1); | |
580 | if (m_lasterror == wxStream_NOERROR) { | |
581 | Ungetch(c); | |
582 | return c; | |
583 | } | |
584 | return 0; | |
585 | } | |
586 | ||
587 | wxInputStream& wxInputStream::Read(wxOutputStream& stream_out) | |
588 | { | |
589 | char buf[BUF_TEMP_SIZE]; | |
590 | size_t bytes_read = BUF_TEMP_SIZE; | |
591 | ||
592 | while (bytes_read == BUF_TEMP_SIZE) { | |
593 | bytes_read = Read(buf, bytes_read).LastRead(); | |
594 | bytes_read = stream_out.Write(buf, bytes_read).LastWrite(); | |
595 | } | |
596 | return *this; | |
597 | } | |
598 | ||
599 | off_t wxInputStream::SeekI(off_t pos, wxSeekMode mode) | |
600 | { | |
601 | //should be check and improve, just to remove a slight bug ! | |
602 | // I don't know whether it should be put as well in wxFileInputStream::OnSysSeek ? | |
603 | if (m_lasterror==wxSTREAM_EOF) m_lasterror=wxSTREAM_NOERROR; | |
604 | ||
605 | return OnSysSeek(pos, mode); | |
606 | } | |
607 | ||
608 | off_t wxInputStream::TellI() const | |
609 | { | |
610 | return OnSysTell(); | |
611 | } | |
612 | ||
613 | // -------------------- | |
614 | // Overloaded operators | |
615 | // -------------------- | |
616 | ||
617 | #if wxUSE_SERIAL | |
618 | wxInputStream& wxInputStream::operator>>(wxObject *& obj) | |
619 | { | |
620 | wxObjectInputStream obj_s(*this); | |
621 | obj = obj_s.LoadObject(); | |
622 | return *this; | |
623 | } | |
624 | #endif | |
625 | ||
626 | ||
627 | // ---------------------------------------------------------------------------- | |
628 | // wxOutputStream | |
629 | // ---------------------------------------------------------------------------- | |
630 | wxOutputStream::wxOutputStream() | |
631 | : wxStreamBase() | |
632 | { | |
633 | } | |
634 | ||
635 | wxOutputStream::~wxOutputStream() | |
636 | { | |
637 | } | |
638 | ||
639 | wxOutputStream& wxOutputStream::Write(const void *buffer, size_t size) | |
640 | { | |
641 | m_lastcount = OnSysWrite(buffer, size); | |
642 | return *this; | |
643 | } | |
644 | ||
645 | wxOutputStream& wxOutputStream::Write(wxInputStream& stream_in) | |
646 | { | |
647 | stream_in.Read(*this); | |
648 | return *this; | |
649 | } | |
650 | ||
651 | off_t wxOutputStream::TellO() const | |
652 | { | |
653 | return OnSysTell(); | |
654 | } | |
655 | ||
656 | off_t wxOutputStream::SeekO(off_t pos, wxSeekMode mode) | |
657 | { | |
658 | return OnSysSeek(pos, mode); | |
659 | } | |
660 | ||
661 | void wxOutputStream::Sync() | |
662 | { | |
663 | } | |
664 | ||
665 | #if wxUSE_SERIAL | |
666 | wxOutputStream& wxOutputStream::operator<<(wxObject& obj) | |
667 | { | |
668 | wxObjectOutputStream obj_s(*this); | |
669 | obj_s.SaveObject(obj); | |
670 | return *this; | |
671 | } | |
672 | #endif | |
673 | ||
674 | // ---------------------------------------------------------------------------- | |
675 | // wxCountingOutputStream | |
676 | // ---------------------------------------------------------------------------- | |
677 | ||
678 | wxCountingOutputStream::wxCountingOutputStream () | |
679 | : wxOutputStream() | |
680 | { | |
681 | m_currentPos = 0; | |
682 | } | |
683 | ||
684 | size_t wxCountingOutputStream::GetSize() const | |
685 | { | |
686 | return m_lastcount; | |
687 | } | |
688 | ||
689 | size_t wxCountingOutputStream::OnSysWrite(const void *WXUNUSED(buffer), size_t size) | |
690 | { | |
691 | m_currentPos += size; | |
692 | if (m_currentPos > m_lastcount) m_lastcount = m_currentPos; | |
693 | return m_currentPos; | |
694 | } | |
695 | ||
696 | off_t wxCountingOutputStream::OnSysSeek(off_t pos, wxSeekMode mode) | |
697 | { | |
698 | if (mode == wxFromStart) | |
699 | { | |
700 | m_currentPos = pos; | |
701 | } | |
702 | if (mode == wxFromEnd) | |
703 | { | |
704 | m_currentPos = m_lastcount + pos; | |
705 | } | |
706 | else | |
707 | { | |
708 | m_currentPos += pos; | |
709 | } | |
710 | if (m_currentPos > m_lastcount) m_lastcount = m_currentPos; | |
711 | ||
712 | return m_currentPos; // ? | |
713 | } | |
714 | ||
715 | off_t wxCountingOutputStream::OnSysTell() const | |
716 | { | |
717 | return m_currentPos; // ? | |
718 | } | |
719 | ||
720 | // ---------------------------------------------------------------------------- | |
721 | // wxFilterInputStream | |
722 | // ---------------------------------------------------------------------------- | |
723 | ||
724 | wxFilterInputStream::wxFilterInputStream() | |
725 | : wxInputStream() | |
726 | { | |
727 | } | |
728 | ||
729 | wxFilterInputStream::wxFilterInputStream(wxInputStream& stream) | |
730 | : wxInputStream() | |
731 | { | |
732 | m_parent_i_stream = &stream; | |
733 | } | |
734 | ||
735 | wxFilterInputStream::~wxFilterInputStream() | |
736 | { | |
737 | } | |
738 | ||
739 | // ---------------------------------------------------------------------------- | |
740 | // wxFilterOutputStream | |
741 | // ---------------------------------------------------------------------------- | |
742 | wxFilterOutputStream::wxFilterOutputStream() | |
743 | : wxOutputStream() | |
744 | { | |
745 | } | |
746 | ||
747 | wxFilterOutputStream::wxFilterOutputStream(wxOutputStream& stream) | |
748 | : wxOutputStream() | |
749 | { | |
750 | m_parent_o_stream = &stream; | |
751 | } | |
752 | ||
753 | wxFilterOutputStream::~wxFilterOutputStream() | |
754 | { | |
755 | } | |
756 | ||
757 | // ---------------------------------------------------------------------------- | |
758 | // wxBufferedInputStream | |
759 | // ---------------------------------------------------------------------------- | |
760 | wxBufferedInputStream::wxBufferedInputStream(wxInputStream& s) | |
761 | : wxFilterInputStream(s) | |
762 | { | |
763 | m_i_streambuf = new wxStreamBuffer(*this, wxStreamBuffer::read); | |
764 | m_i_streambuf->SetBufferIO(1024); | |
765 | } | |
766 | ||
767 | wxBufferedInputStream::~wxBufferedInputStream() | |
768 | { | |
769 | delete m_i_streambuf; | |
770 | } | |
771 | ||
772 | char wxBufferedInputStream::Peek() | |
773 | { | |
774 | return m_i_streambuf->Peek(); | |
775 | } | |
776 | ||
777 | wxInputStream& wxBufferedInputStream::Read(void *buffer, size_t size) | |
778 | { | |
779 | size_t retsize; | |
780 | char *buf = (char *)buffer; | |
781 | ||
782 | retsize = GetWBack(buf, size); | |
783 | m_lastcount = retsize; | |
784 | if (retsize == size) { | |
785 | m_lasterror = wxStream_NOERROR; | |
786 | return *this; | |
787 | } | |
788 | size -= retsize; | |
789 | buf += retsize; | |
790 | ||
791 | m_i_streambuf->Read(buf, size); | |
792 | ||
793 | return *this; | |
794 | } | |
795 | ||
796 | off_t wxBufferedInputStream::SeekI(off_t pos, wxSeekMode mode) | |
797 | { | |
798 | return m_i_streambuf->Seek(pos, mode); | |
799 | } | |
800 | ||
801 | off_t wxBufferedInputStream::TellI() const | |
802 | { | |
803 | return m_i_streambuf->Tell(); | |
804 | } | |
805 | ||
806 | size_t wxBufferedInputStream::OnSysRead(void *buffer, size_t bufsize) | |
807 | { | |
808 | return m_parent_i_stream->Read(buffer, bufsize).LastRead(); | |
809 | } | |
810 | ||
811 | off_t wxBufferedInputStream::OnSysSeek(off_t seek, wxSeekMode mode) | |
812 | { | |
813 | return m_parent_i_stream->SeekI(seek, mode); | |
814 | } | |
815 | ||
816 | off_t wxBufferedInputStream::OnSysTell() const | |
817 | { | |
818 | return m_parent_i_stream->TellI(); | |
819 | } | |
820 | ||
821 | // ---------------------------------------------------------------------------- | |
822 | // wxBufferedOutputStream | |
823 | // ---------------------------------------------------------------------------- | |
824 | ||
825 | wxBufferedOutputStream::wxBufferedOutputStream(wxOutputStream& s) | |
826 | : wxFilterOutputStream(s) | |
827 | { | |
828 | m_o_streambuf = new wxStreamBuffer(*this, wxStreamBuffer::write); | |
829 | m_o_streambuf->SetBufferIO(1024); | |
830 | } | |
831 | ||
832 | wxBufferedOutputStream::~wxBufferedOutputStream() | |
833 | { | |
834 | delete m_o_streambuf; | |
835 | } | |
836 | ||
837 | wxOutputStream& wxBufferedOutputStream::Write(const void *buffer, size_t size) | |
838 | { | |
839 | m_lastcount = 0; | |
840 | m_o_streambuf->Write(buffer, size); | |
841 | return *this; | |
842 | } | |
843 | ||
844 | off_t wxBufferedOutputStream::SeekO(off_t pos, wxSeekMode mode) | |
845 | { | |
846 | return m_o_streambuf->Seek(pos, mode); | |
847 | } | |
848 | ||
849 | off_t wxBufferedOutputStream::TellO() const | |
850 | { | |
851 | return m_o_streambuf->Tell(); | |
852 | } | |
853 | ||
854 | void wxBufferedOutputStream::Sync() | |
855 | { | |
856 | m_o_streambuf->FlushBuffer(); | |
857 | m_parent_o_stream->Sync(); | |
858 | } | |
859 | ||
860 | size_t wxBufferedOutputStream::OnSysWrite(const void *buffer, size_t bufsize) | |
861 | { | |
862 | return m_parent_o_stream->Write(buffer, bufsize).LastWrite(); | |
863 | } | |
864 | ||
865 | off_t wxBufferedOutputStream::OnSysSeek(off_t seek, wxSeekMode mode) | |
866 | { | |
867 | return m_parent_o_stream->SeekO(seek, mode); | |
868 | } | |
869 | ||
870 | off_t wxBufferedOutputStream::OnSysTell() const | |
871 | { | |
872 | return m_parent_o_stream->TellO(); | |
873 | } | |
874 | ||
875 | // ---------------------------------------------------------------------------- | |
876 | // Some IOManip function | |
877 | // ---------------------------------------------------------------------------- | |
878 | ||
879 | wxOutputStream& wxEndL(wxOutputStream& stream) | |
880 | { | |
881 | #ifdef __MSW__ | |
882 | return stream.Write("\r\n", 2); | |
883 | #else | |
884 | #ifdef __WXMAC__ | |
885 | return stream.Write("\r", 1); | |
886 | #else | |
887 | return stream.Write("\n", 1); | |
888 | #endif | |
889 | #endif | |
890 | } | |
891 | ||
892 | #endif | |
893 | // wxUSE_STREAMS |