]>
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> |
3096bd2f VZ |
30 | #include "wx/stream.h" |
31 | #include "wx/datstrm.h" | |
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) { | |
d984207c RR |
101 | m_buffer_start = (char*)NULL; |
102 | m_buffer_end = (char*)NULL; | |
103 | m_buffer_pos = (char*)NULL; | |
6d44bf31 | 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; |
1cb6da2d | 117 | if (m_mode == read && m_flushable) |
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) { | |
56dc1ffd GL |
168 | if (!m_buffer_start) |
169 | SetBufferIO(size); | |
170 | else { | |
171 | size_t delta = m_buffer_pos-m_buffer_start; | |
172 | ||
173 | m_buffer_start = (char *)realloc(m_buffer_start, m_buffer_size+size); | |
174 | m_buffer_pos = m_buffer_start + delta; | |
175 | // I round a bit | |
176 | m_buffer_size += size; | |
177 | m_buffer_end = m_buffer_start+m_buffer_size; | |
178 | } | |
75ed1d15 GL |
179 | s_toput = size; |
180 | } | |
181 | if (s_toput > size) | |
182 | s_toput = size; | |
183 | memcpy(m_buffer_pos, buffer, s_toput); | |
184 | m_buffer_pos += s_toput; | |
185 | } | |
186 | ||
84b46c35 GL |
187 | void wxStreamBuffer::PutChar(char c) |
188 | { | |
189 | wxASSERT(m_stream != NULL); | |
190 | ||
191 | if (!m_buffer_size) { | |
192 | m_stream->OnSysWrite(&c, 1); | |
193 | return; | |
194 | } | |
195 | ||
9fc0fe37 GL |
196 | if (GetDataLeft() == 0 && !FlushBuffer()) { |
197 | CHECK_ERROR(wxStream_WRITE_ERR); | |
84b46c35 | 198 | return; |
8ef6a930 | 199 | } |
84b46c35 GL |
200 | |
201 | PutToBuffer(&c, 1); | |
202 | m_stream->m_lastcount = 1; | |
203 | } | |
204 | ||
6319afe3 GL |
205 | char wxStreamBuffer::Peek() |
206 | { | |
207 | char c; | |
208 | ||
209 | wxASSERT(m_stream != NULL && m_buffer_size != 0); | |
210 | ||
211 | if (!GetDataLeft()) { | |
212 | CHECK_ERROR(wxStream_READ_ERR); | |
213 | return 0; | |
214 | } | |
215 | ||
216 | GetFromBuffer(&c, 1); | |
217 | m_buffer_pos--; | |
218 | ||
219 | return c; | |
220 | } | |
221 | ||
84b46c35 GL |
222 | char wxStreamBuffer::GetChar() |
223 | { | |
224 | char c; | |
225 | ||
226 | wxASSERT(m_stream != NULL); | |
227 | ||
228 | if (!m_buffer_size) { | |
229 | m_stream->OnSysRead(&c, 1); | |
230 | return c; | |
231 | } | |
232 | ||
8ef6a930 | 233 | if (!GetDataLeft()) { |
926c550d | 234 | CHECK_ERROR(wxStream_READ_ERR); |
84b46c35 | 235 | return 0; |
8ef6a930 | 236 | } |
84b46c35 GL |
237 | |
238 | GetFromBuffer(&c, 1); | |
e57e26dd | 239 | |
84b46c35 GL |
240 | m_stream->m_lastcount = 1; |
241 | return c; | |
242 | } | |
243 | ||
8ef6a930 | 244 | size_t wxStreamBuffer::Read(void *buffer, size_t size) |
6d44bf31 | 245 | { |
75ed1d15 | 246 | wxASSERT(m_stream != NULL); |
6d44bf31 | 247 | |
7f42cff1 GL |
248 | if (m_mode == write) |
249 | return 0; | |
250 | ||
6d44bf31 GL |
251 | // ------------------ |
252 | // Buffering disabled | |
253 | // ------------------ | |
254 | ||
2a040d3f | 255 | m_stream->m_lasterror = wxStream_NOERROR; |
926c550d | 256 | if (!m_buffer_size) |
8ef6a930 | 257 | return (m_stream->m_lastcount += m_stream->OnSysRead(buffer, size)); |
6d44bf31 GL |
258 | |
259 | // ----------------- | |
260 | // Buffering enabled | |
261 | // ----------------- | |
262 | size_t buf_left, orig_size = size; | |
6d44bf31 GL |
263 | |
264 | while (size > 0) { | |
75ed1d15 | 265 | buf_left = GetDataLeft(); |
6d44bf31 GL |
266 | |
267 | // First case: the requested buffer is larger than the stream buffer, | |
84b46c35 | 268 | // we split it. |
6d44bf31 | 269 | if (size > buf_left) { |
75ed1d15 GL |
270 | GetFromBuffer(buffer, buf_left); |
271 | size -= buf_left; | |
6d44bf31 GL |
272 | buffer = (char *)buffer + buf_left; // ANSI C++ violation. |
273 | ||
75ed1d15 | 274 | if (!FillBuffer()) { |
6319afe3 | 275 | CHECK_ERROR(wxStream_EOF); |
8ef6a930 | 276 | return (m_stream->m_lastcount = orig_size-size); |
6d44bf31 GL |
277 | } |
278 | } else { | |
279 | ||
280 | // Second case: we just copy from the stream buffer. | |
75ed1d15 | 281 | GetFromBuffer(buffer, size); |
6d44bf31 GL |
282 | break; |
283 | } | |
284 | } | |
8ef6a930 | 285 | return (m_stream->m_lastcount += orig_size); |
6d44bf31 GL |
286 | } |
287 | ||
8ef6a930 GL |
288 | size_t wxStreamBuffer::Read(wxStreamBuffer *s_buf) |
289 | { | |
290 | char buf[BUF_TEMP_SIZE]; | |
291 | size_t s = 0, bytes_read = BUF_TEMP_SIZE; | |
292 | ||
7f42cff1 GL |
293 | if (m_mode == write) |
294 | return 0; | |
295 | ||
062c4861 | 296 | while (bytes_read != 0) { |
8ef6a930 GL |
297 | bytes_read = Read(buf, bytes_read); |
298 | bytes_read = s_buf->Write(buf, bytes_read); | |
299 | s += bytes_read; | |
300 | } | |
301 | return s; | |
302 | } | |
303 | ||
304 | size_t wxStreamBuffer::Write(const void *buffer, size_t size) | |
6d44bf31 | 305 | { |
75ed1d15 | 306 | wxASSERT(m_stream != NULL); |
6d44bf31 | 307 | |
7f42cff1 GL |
308 | if (m_mode == read) |
309 | return 0; | |
310 | ||
6d44bf31 GL |
311 | // ------------------ |
312 | // Buffering disabled | |
313 | // ------------------ | |
314 | ||
2a040d3f | 315 | m_stream->m_lasterror = wxStream_NOERROR; |
56dc1ffd | 316 | if (!m_buffer_size && m_fixed) |
8ef6a930 | 317 | return (m_stream->m_lastcount = m_stream->OnSysWrite(buffer, size)); |
6d44bf31 GL |
318 | |
319 | // ------------------ | |
320 | // Buffering enabled | |
321 | // ------------------ | |
322 | ||
323 | size_t buf_left, orig_size = size; | |
6d44bf31 GL |
324 | |
325 | while (size > 0) { | |
326 | buf_left = m_buffer_end - m_buffer_pos; | |
327 | ||
328 | // First case: the buffer to write is larger than the stream buffer, | |
329 | // we split it | |
56dc1ffd GL |
330 | // NB: If stream buffer isn't fixed (as for wxMemoryOutputStream), |
331 | // we always go to the second case. | |
332 | if (size > buf_left && m_fixed) { | |
75ed1d15 | 333 | PutToBuffer(buffer, buf_left); |
6d44bf31 GL |
334 | size -= buf_left; |
335 | buffer = (char *)buffer + buf_left; // ANSI C++ violation. | |
336 | ||
75ed1d15 | 337 | if (!FlushBuffer()) { |
926c550d | 338 | CHECK_ERROR(wxStream_WRITE_ERR); |
8ef6a930 | 339 | return (m_stream->m_lastcount = orig_size-size); |
6d44bf31 | 340 | } |
8ef6a930 | 341 | |
6d44bf31 GL |
342 | m_buffer_pos = m_buffer_start; |
343 | ||
344 | } else { | |
345 | ||
346 | // Second case: just copy it in the stream buffer. | |
75ed1d15 | 347 | PutToBuffer(buffer, size); |
6d44bf31 GL |
348 | break; |
349 | } | |
350 | } | |
8ef6a930 GL |
351 | return (m_stream->m_lastcount = orig_size); |
352 | } | |
353 | ||
354 | size_t wxStreamBuffer::Write(wxStreamBuffer *sbuf) | |
355 | { | |
356 | char buf[BUF_TEMP_SIZE]; | |
eb4e516d | 357 | size_t s = 0, bytes_count = BUF_TEMP_SIZE, b_count2; |
fae05df5 | 358 | wxInputStream *in_stream; |
8ef6a930 | 359 | |
7f42cff1 GL |
360 | if (m_mode == read) |
361 | return 0; | |
362 | ||
fae05df5 GL |
363 | in_stream = (wxInputStream *)sbuf->Stream(); |
364 | ||
8ef6a930 | 365 | while (bytes_count == BUF_TEMP_SIZE) { |
eb4e516d GL |
366 | b_count2 = sbuf->Read(buf, bytes_count); |
367 | bytes_count = Write(buf, b_count2); | |
368 | if (b_count2 > bytes_count) | |
fae05df5 | 369 | in_stream->Ungetch(buf+bytes_count, b_count2-bytes_count); |
8ef6a930 GL |
370 | s += bytes_count; |
371 | } | |
372 | return s; | |
75ed1d15 GL |
373 | } |
374 | ||
375 | off_t wxStreamBuffer::Seek(off_t pos, wxSeekMode mode) | |
376 | { | |
377 | off_t ret_off, diff, last_access; | |
378 | ||
379 | last_access = GetLastAccess(); | |
380 | ||
8ef6a930 | 381 | if (!m_flushable) { |
d984207c RR |
382 | switch (mode) { |
383 | case wxFromStart: diff = pos; break; | |
384 | case wxFromCurrent: diff = pos + GetIntPosition(); break; | |
385 | case wxFromEnd: diff = pos + last_access; break; | |
386 | default: return wxInvalidOffset; | |
387 | } | |
84b46c35 GL |
388 | if (diff < 0 || diff > last_access) |
389 | return wxInvalidOffset; | |
390 | SetIntPosition(diff); | |
391 | return diff; | |
392 | } | |
393 | ||
75ed1d15 GL |
394 | switch (mode) { |
395 | case wxFromStart: { | |
396 | // We'll try to compute an internal position later ... | |
397 | ret_off = m_stream->OnSysSeek(pos, wxFromStart); | |
398 | ResetBuffer(); | |
399 | return ret_off; | |
400 | } | |
401 | case wxFromCurrent: { | |
402 | diff = pos + GetIntPosition(); | |
403 | ||
404 | if ( (diff > last_access) || (diff < 0) ) { | |
d4feedcf GL |
405 | // We must take into account the fact that we have read something |
406 | // previously. | |
f1f5976f | 407 | ret_off = m_stream->OnSysSeek(diff-last_access, wxFromCurrent); |
75ed1d15 GL |
408 | ResetBuffer(); |
409 | return ret_off; | |
410 | } else { | |
411 | SetIntPosition(diff); | |
412 | return pos; | |
413 | } | |
414 | } | |
415 | case wxFromEnd: | |
416 | // Hard to compute: always seek to the requested position. | |
417 | ret_off = m_stream->OnSysSeek(pos, wxFromEnd); | |
418 | ResetBuffer(); | |
419 | return ret_off; | |
420 | } | |
421 | return wxInvalidOffset; | |
422 | } | |
423 | ||
424 | off_t wxStreamBuffer::Tell() const | |
425 | { | |
426 | off_t pos; | |
427 | ||
8ef6a930 | 428 | if (m_flushable) { |
84b46c35 GL |
429 | pos = m_stream->OnSysTell(); |
430 | if (pos == wxInvalidOffset) | |
431 | return wxInvalidOffset; | |
432 | return pos - GetLastAccess() + GetIntPosition(); | |
433 | } else | |
434 | return GetIntPosition(); | |
75ed1d15 GL |
435 | } |
436 | ||
8ef6a930 | 437 | size_t wxStreamBuffer::GetDataLeft() |
75ed1d15 | 438 | { |
8ef6a930 GL |
439 | if (m_buffer_end == m_buffer_pos && m_flushable) |
440 | FillBuffer(); | |
75ed1d15 GL |
441 | return m_buffer_end-m_buffer_pos; |
442 | } | |
443 | ||
444 | // ---------------------------------------------------------------------------- | |
445 | // wxStreamBase | |
446 | // ---------------------------------------------------------------------------- | |
447 | ||
448 | wxStreamBase::wxStreamBase() | |
449 | { | |
450 | m_lasterror = wxStream_NOERROR; | |
451 | m_lastcount = 0; | |
452 | } | |
453 | ||
454 | wxStreamBase::~wxStreamBase() | |
455 | { | |
456 | } | |
457 | ||
df875e59 | 458 | size_t wxStreamBase::OnSysRead(void *WXUNUSED(buffer), size_t WXUNUSED(size)) |
75ed1d15 GL |
459 | { |
460 | return 0; | |
461 | } | |
462 | ||
df875e59 | 463 | size_t wxStreamBase::OnSysWrite(const void *WXUNUSED(buffer), size_t WXUNUSED(bufsize)) |
75ed1d15 GL |
464 | { |
465 | return 0; | |
466 | } | |
467 | ||
df875e59 | 468 | off_t wxStreamBase::OnSysSeek(off_t WXUNUSED(seek), wxSeekMode WXUNUSED(mode)) |
75ed1d15 GL |
469 | { |
470 | return wxInvalidOffset; | |
471 | } | |
472 | ||
84b46c35 | 473 | off_t wxStreamBase::OnSysTell() const |
75ed1d15 GL |
474 | { |
475 | return wxInvalidOffset; | |
6d44bf31 GL |
476 | } |
477 | ||
1678ad78 GL |
478 | // ---------------------------------------------------------------------------- |
479 | // wxInputStream | |
480 | // ---------------------------------------------------------------------------- | |
481 | ||
3d4c6a21 | 482 | wxInputStream::wxInputStream() |
fae05df5 GL |
483 | : wxStreamBase(), |
484 | m_wback(NULL), m_wbacksize(0), m_wbackcur(0) | |
3d4c6a21 | 485 | { |
6d44bf31 GL |
486 | } |
487 | ||
fae05df5 | 488 | wxInputStream::~wxInputStream() |
6d44bf31 | 489 | { |
fae05df5 GL |
490 | if (m_wback) |
491 | free(m_wback); | |
3d4c6a21 GL |
492 | } |
493 | ||
fae05df5 | 494 | char *wxInputStream::AllocSpaceWBack(size_t needed_size) |
3d4c6a21 | 495 | { |
fae05df5 | 496 | char *temp_b; |
5ac8158a | 497 | size_t toget; |
fae05df5 | 498 | |
5ac8158a GRG |
499 | /* get number of bytes left from previous wback buffer */ |
500 | toget = m_wbacksize - m_wbackcur; | |
fae05df5 | 501 | |
5ac8158a GRG |
502 | /* allocate a buffer large enough to hold prev + new data */ |
503 | temp_b = (char *) malloc(needed_size + toget); | |
fae05df5 GL |
504 | |
505 | if (!temp_b) | |
5ac8158a GRG |
506 | return NULL; |
507 | ||
508 | /* copy previous data (and free old buffer) if needed */ | |
509 | if (m_wback) | |
510 | { | |
511 | memmove(temp_b + needed_size, m_wback + m_wbackcur, toget); | |
512 | free(m_wback); | |
513 | } | |
514 | ||
515 | /* done */ | |
fae05df5 | 516 | m_wback = temp_b; |
5ac8158a GRG |
517 | m_wbackcur = 0; |
518 | m_wbacksize = needed_size + toget; | |
783ff666 | 519 | |
5ac8158a | 520 | return (char *) m_wback; |
6d44bf31 GL |
521 | } |
522 | ||
fae05df5 | 523 | size_t wxInputStream::GetWBack(char *buf, size_t bsize) |
6d44bf31 | 524 | { |
56dc1ffd | 525 | size_t s_toget = m_wbacksize-m_wbackcur; |
fae05df5 | 526 | |
a324a7bc GL |
527 | if (!m_wback) |
528 | return 0; | |
529 | ||
fae05df5 GL |
530 | if (bsize < s_toget) |
531 | s_toget = bsize; | |
532 | ||
56dc1ffd | 533 | memcpy(buf, (m_wback+m_wbackcur), s_toget); |
fae05df5 | 534 | |
56dc1ffd GL |
535 | m_wbackcur += s_toget; |
536 | if (m_wbackcur == m_wbacksize) { | |
fae05df5 GL |
537 | free(m_wback); |
538 | m_wback = (char *)NULL; | |
539 | m_wbacksize = 0; | |
540 | m_wbackcur = 0; | |
541 | } | |
542 | ||
543 | return s_toget; | |
6d44bf31 GL |
544 | } |
545 | ||
8f7173ab | 546 | size_t wxInputStream::Ungetch(const void *buf, size_t bufsize) |
fae05df5 GL |
547 | { |
548 | char *ptrback; | |
549 | ||
550 | ptrback = AllocSpaceWBack(bufsize); | |
551 | if (!ptrback) | |
552 | return 0; | |
1e3eca9d | 553 | |
fae05df5 GL |
554 | memcpy(ptrback, buf, bufsize); |
555 | return bufsize; | |
556 | } | |
557 | ||
558 | bool wxInputStream::Ungetch(char c) | |
1e3eca9d | 559 | { |
fae05df5 | 560 | char *ptrback; |
1e3eca9d | 561 | |
fae05df5 GL |
562 | ptrback = AllocSpaceWBack(1); |
563 | if (!ptrback) | |
564 | return FALSE; | |
1e3eca9d | 565 | |
fae05df5 GL |
566 | *ptrback = c; |
567 | return TRUE; | |
568 | } | |
569 | ||
570 | char wxInputStream::GetC() | |
571 | { | |
572 | char c; | |
573 | Read(&c, 1); | |
574 | return c; | |
1e3eca9d GL |
575 | } |
576 | ||
6d44bf31 GL |
577 | wxInputStream& wxInputStream::Read(void *buffer, size_t size) |
578 | { | |
fae05df5 GL |
579 | size_t retsize; |
580 | char *buf = (char *)buffer; | |
581 | ||
582 | retsize = GetWBack(buf, size); | |
583 | if (retsize == size) { | |
584 | m_lastcount = size; | |
585 | m_lasterror = wxStream_NOERROR; | |
586 | return *this; | |
587 | } | |
588 | size -= retsize; | |
589 | buf += retsize; | |
590 | ||
5ac8158a | 591 | // GRG: shouldn't we also add retsize to m_lastcount here? |
fae05df5 | 592 | m_lastcount = OnSysRead(buf, size); |
6d44bf31 | 593 | return *this; |
3d4c6a21 GL |
594 | } |
595 | ||
75ed1d15 GL |
596 | char wxInputStream::Peek() |
597 | { | |
fae05df5 | 598 | char c; |
75ed1d15 | 599 | |
fae05df5 GL |
600 | Read(&c, 1); |
601 | if (m_lasterror == wxStream_NOERROR) { | |
602 | Ungetch(c); | |
603 | return c; | |
604 | } | |
605 | return 0; | |
75ed1d15 GL |
606 | } |
607 | ||
3d4c6a21 GL |
608 | wxInputStream& wxInputStream::Read(wxOutputStream& stream_out) |
609 | { | |
610 | char buf[BUF_TEMP_SIZE]; | |
611 | size_t bytes_read = BUF_TEMP_SIZE; | |
612 | ||
8ef6a930 | 613 | while (bytes_read == BUF_TEMP_SIZE) { |
3d4c6a21 | 614 | bytes_read = Read(buf, bytes_read).LastRead(); |
8ef6a930 | 615 | bytes_read = stream_out.Write(buf, bytes_read).LastWrite(); |
3d4c6a21 GL |
616 | } |
617 | return *this; | |
618 | } | |
619 | ||
75ed1d15 GL |
620 | off_t wxInputStream::SeekI(off_t pos, wxSeekMode mode) |
621 | { | |
d984207c | 622 | // Should be check and improve, just to remove a slight bug ! |
fe8aa971 | 623 | // I don't know whether it should be put as well in wxFileInputStream::OnSysSeek ? |
d984207c RR |
624 | if (m_lasterror==wxSTREAM_EOF) |
625 | m_lasterror=wxSTREAM_NOERROR; | |
626 | ||
627 | // A call to SeekI() will automatically invalidate any previous call | |
628 | // to Ungetch(), otherwise it would be possible to SeeI() to one | |
629 | // one position, unread some bytes there, SeekI() to another position | |
630 | // and the data would be corrupted. | |
631 | if (m_wback) { | |
632 | free(m_wback); | |
633 | m_wback = (char*) NULL; | |
634 | m_wbacksize = 0; | |
635 | m_wbackcur = 0; | |
636 | } | |
fe8aa971 | 637 | |
60b6c062 | 638 | return OnSysSeek(pos, mode); |
75ed1d15 GL |
639 | } |
640 | ||
641 | off_t wxInputStream::TellI() const | |
642 | { | |
60b6c062 | 643 | return OnSysTell(); |
75ed1d15 GL |
644 | } |
645 | ||
646 | // -------------------- | |
647 | // Overloaded operators | |
648 | // -------------------- | |
649 | ||
fae05df5 GL |
650 | #if wxUSE_SERIAL |
651 | wxInputStream& wxInputStream::operator>>(wxObject *& obj) | |
1678ad78 | 652 | { |
fae05df5 GL |
653 | wxObjectInputStream obj_s(*this); |
654 | obj = obj_s.LoadObject(); | |
1678ad78 GL |
655 | return *this; |
656 | } | |
fae05df5 | 657 | #endif |
1678ad78 | 658 | |
1678ad78 | 659 | |
fae05df5 GL |
660 | // ---------------------------------------------------------------------------- |
661 | // wxOutputStream | |
662 | // ---------------------------------------------------------------------------- | |
663 | wxOutputStream::wxOutputStream() | |
664 | : wxStreamBase() | |
1678ad78 | 665 | { |
1678ad78 GL |
666 | } |
667 | ||
fae05df5 | 668 | wxOutputStream::~wxOutputStream() |
123a7fdd | 669 | { |
123a7fdd GL |
670 | } |
671 | ||
fae05df5 | 672 | wxOutputStream& wxOutputStream::Write(const void *buffer, size_t size) |
1678ad78 | 673 | { |
fae05df5 | 674 | m_lastcount = OnSysWrite(buffer, size); |
1678ad78 GL |
675 | return *this; |
676 | } | |
677 | ||
fae05df5 | 678 | wxOutputStream& wxOutputStream::Write(wxInputStream& stream_in) |
38830220 | 679 | { |
fae05df5 | 680 | stream_in.Read(*this); |
38830220 RR |
681 | return *this; |
682 | } | |
683 | ||
fae05df5 | 684 | off_t wxOutputStream::TellO() const |
38830220 | 685 | { |
60b6c062 | 686 | return OnSysTell(); |
38830220 RR |
687 | } |
688 | ||
fae05df5 | 689 | off_t wxOutputStream::SeekO(off_t pos, wxSeekMode mode) |
38830220 | 690 | { |
60b6c062 | 691 | return OnSysSeek(pos, mode); |
38830220 RR |
692 | } |
693 | ||
fae05df5 | 694 | void wxOutputStream::Sync() |
1678ad78 | 695 | { |
1678ad78 GL |
696 | } |
697 | ||
47d67540 | 698 | #if wxUSE_SERIAL |
fae05df5 | 699 | wxOutputStream& wxOutputStream::operator<<(wxObject& obj) |
123a7fdd | 700 | { |
fae05df5 GL |
701 | wxObjectOutputStream obj_s(*this); |
702 | obj_s.SaveObject(obj); | |
123a7fdd GL |
703 | return *this; |
704 | } | |
fcc6dddd | 705 | #endif |
123a7fdd | 706 | |
e2acb9ae RR |
707 | // ---------------------------------------------------------------------------- |
708 | // wxCountingOutputStream | |
709 | // ---------------------------------------------------------------------------- | |
710 | ||
711 | wxCountingOutputStream::wxCountingOutputStream () | |
712 | : wxOutputStream() | |
713 | { | |
714 | m_currentPos = 0; | |
715 | } | |
716 | ||
717 | size_t wxCountingOutputStream::GetSize() const | |
718 | { | |
719 | return m_lastcount; | |
720 | } | |
721 | ||
5e0201ea | 722 | size_t wxCountingOutputStream::OnSysWrite(const void *WXUNUSED(buffer), size_t size) |
e2acb9ae RR |
723 | { |
724 | m_currentPos += size; | |
725 | if (m_currentPos > m_lastcount) m_lastcount = m_currentPos; | |
726 | return m_currentPos; | |
727 | } | |
728 | ||
729 | off_t wxCountingOutputStream::OnSysSeek(off_t pos, wxSeekMode mode) | |
730 | { | |
731 | if (mode == wxFromStart) | |
732 | { | |
733 | m_currentPos = pos; | |
734 | } | |
735 | if (mode == wxFromEnd) | |
736 | { | |
737 | m_currentPos = m_lastcount + pos; | |
738 | } | |
739 | else | |
740 | { | |
741 | m_currentPos += pos; | |
742 | } | |
743 | if (m_currentPos > m_lastcount) m_lastcount = m_currentPos; | |
744 | ||
745 | return m_currentPos; // ? | |
746 | } | |
747 | ||
748 | off_t wxCountingOutputStream::OnSysTell() const | |
749 | { | |
750 | return m_currentPos; // ? | |
751 | } | |
752 | ||
1678ad78 | 753 | // ---------------------------------------------------------------------------- |
fae05df5 | 754 | // wxFilterInputStream |
1678ad78 | 755 | // ---------------------------------------------------------------------------- |
e2acb9ae | 756 | |
fae05df5 GL |
757 | wxFilterInputStream::wxFilterInputStream() |
758 | : wxInputStream() | |
3d4c6a21 | 759 | { |
6d44bf31 GL |
760 | } |
761 | ||
fae05df5 GL |
762 | wxFilterInputStream::wxFilterInputStream(wxInputStream& stream) |
763 | : wxInputStream() | |
6d44bf31 | 764 | { |
fae05df5 | 765 | m_parent_i_stream = &stream; |
3d4c6a21 GL |
766 | } |
767 | ||
fae05df5 | 768 | wxFilterInputStream::~wxFilterInputStream() |
3d4c6a21 | 769 | { |
6d44bf31 GL |
770 | } |
771 | ||
fae05df5 GL |
772 | // ---------------------------------------------------------------------------- |
773 | // wxFilterOutputStream | |
774 | // ---------------------------------------------------------------------------- | |
775 | wxFilterOutputStream::wxFilterOutputStream() | |
776 | : wxOutputStream() | |
6d44bf31 | 777 | { |
3d4c6a21 GL |
778 | } |
779 | ||
fae05df5 GL |
780 | wxFilterOutputStream::wxFilterOutputStream(wxOutputStream& stream) |
781 | : wxOutputStream() | |
3d4c6a21 | 782 | { |
fae05df5 | 783 | m_parent_o_stream = &stream; |
6d44bf31 GL |
784 | } |
785 | ||
fae05df5 | 786 | wxFilterOutputStream::~wxFilterOutputStream() |
6d44bf31 | 787 | { |
6d44bf31 GL |
788 | } |
789 | ||
fae05df5 GL |
790 | // ---------------------------------------------------------------------------- |
791 | // wxBufferedInputStream | |
792 | // ---------------------------------------------------------------------------- | |
793 | wxBufferedInputStream::wxBufferedInputStream(wxInputStream& s) | |
794 | : wxFilterInputStream(s) | |
6d44bf31 | 795 | { |
fae05df5 GL |
796 | m_i_streambuf = new wxStreamBuffer(*this, wxStreamBuffer::read); |
797 | m_i_streambuf->SetBufferIO(1024); | |
6d44bf31 GL |
798 | } |
799 | ||
fae05df5 | 800 | wxBufferedInputStream::~wxBufferedInputStream() |
6d44bf31 | 801 | { |
fae05df5 | 802 | delete m_i_streambuf; |
6d44bf31 GL |
803 | } |
804 | ||
6319afe3 GL |
805 | char wxBufferedInputStream::Peek() |
806 | { | |
807 | return m_i_streambuf->Peek(); | |
808 | } | |
809 | ||
fae05df5 | 810 | wxInputStream& wxBufferedInputStream::Read(void *buffer, size_t size) |
1e3eca9d | 811 | { |
fae05df5 GL |
812 | size_t retsize; |
813 | char *buf = (char *)buffer; | |
1e3eca9d | 814 | |
fae05df5 | 815 | retsize = GetWBack(buf, size); |
a324a7bc | 816 | m_lastcount = retsize; |
fae05df5 | 817 | if (retsize == size) { |
fae05df5 GL |
818 | m_lasterror = wxStream_NOERROR; |
819 | return *this; | |
820 | } | |
821 | size -= retsize; | |
822 | buf += retsize; | |
1e3eca9d | 823 | |
fae05df5 | 824 | m_i_streambuf->Read(buf, size); |
6d44bf31 | 825 | |
fae05df5 | 826 | return *this; |
6d44bf31 GL |
827 | } |
828 | ||
fae05df5 | 829 | off_t wxBufferedInputStream::SeekI(off_t pos, wxSeekMode mode) |
6d44bf31 | 830 | { |
fae05df5 | 831 | return m_i_streambuf->Seek(pos, mode); |
6d44bf31 GL |
832 | } |
833 | ||
fae05df5 | 834 | off_t wxBufferedInputStream::TellI() const |
6d44bf31 | 835 | { |
fae05df5 | 836 | return m_i_streambuf->Tell(); |
38830220 | 837 | } |
6d44bf31 | 838 | |
fae05df5 | 839 | size_t wxBufferedInputStream::OnSysRead(void *buffer, size_t bufsize) |
38830220 | 840 | { |
fae05df5 | 841 | return m_parent_i_stream->Read(buffer, bufsize).LastRead(); |
38830220 RR |
842 | } |
843 | ||
fae05df5 | 844 | off_t wxBufferedInputStream::OnSysSeek(off_t seek, wxSeekMode mode) |
38830220 | 845 | { |
fae05df5 | 846 | return m_parent_i_stream->SeekI(seek, mode); |
6d44bf31 GL |
847 | } |
848 | ||
fae05df5 | 849 | off_t wxBufferedInputStream::OnSysTell() const |
6d44bf31 | 850 | { |
fae05df5 | 851 | return m_parent_i_stream->TellI(); |
38830220 | 852 | } |
6d44bf31 | 853 | |
fae05df5 GL |
854 | // ---------------------------------------------------------------------------- |
855 | // wxBufferedOutputStream | |
856 | // ---------------------------------------------------------------------------- | |
6d44bf31 | 857 | |
fae05df5 GL |
858 | wxBufferedOutputStream::wxBufferedOutputStream(wxOutputStream& s) |
859 | : wxFilterOutputStream(s) | |
6d44bf31 | 860 | { |
fae05df5 GL |
861 | m_o_streambuf = new wxStreamBuffer(*this, wxStreamBuffer::write); |
862 | m_o_streambuf->SetBufferIO(1024); | |
6d44bf31 GL |
863 | } |
864 | ||
fae05df5 | 865 | wxBufferedOutputStream::~wxBufferedOutputStream() |
6d44bf31 | 866 | { |
1b055864 | 867 | Sync(); |
fae05df5 | 868 | delete m_o_streambuf; |
3d4c6a21 GL |
869 | } |
870 | ||
fae05df5 | 871 | wxOutputStream& wxBufferedOutputStream::Write(const void *buffer, size_t size) |
123a7fdd | 872 | { |
a324a7bc | 873 | m_lastcount = 0; |
fae05df5 | 874 | m_o_streambuf->Write(buffer, size); |
123a7fdd GL |
875 | return *this; |
876 | } | |
877 | ||
fae05df5 | 878 | off_t wxBufferedOutputStream::SeekO(off_t pos, wxSeekMode mode) |
f4ada568 | 879 | { |
1b055864 | 880 | Sync(); |
fae05df5 | 881 | return m_o_streambuf->Seek(pos, mode); |
f4ada568 GL |
882 | } |
883 | ||
fae05df5 | 884 | off_t wxBufferedOutputStream::TellO() const |
3d4c6a21 | 885 | { |
fae05df5 | 886 | return m_o_streambuf->Tell(); |
3d4c6a21 GL |
887 | } |
888 | ||
fae05df5 | 889 | void wxBufferedOutputStream::Sync() |
3d4c6a21 | 890 | { |
fae05df5 GL |
891 | m_o_streambuf->FlushBuffer(); |
892 | m_parent_o_stream->Sync(); | |
3d4c6a21 | 893 | } |
219f895a | 894 | |
fae05df5 | 895 | size_t wxBufferedOutputStream::OnSysWrite(const void *buffer, size_t bufsize) |
f4ada568 | 896 | { |
fae05df5 | 897 | return m_parent_o_stream->Write(buffer, bufsize).LastWrite(); |
f4ada568 GL |
898 | } |
899 | ||
fae05df5 | 900 | off_t wxBufferedOutputStream::OnSysSeek(off_t seek, wxSeekMode mode) |
219f895a | 901 | { |
fae05df5 | 902 | return m_parent_o_stream->SeekO(seek, mode); |
219f895a RR |
903 | } |
904 | ||
fae05df5 | 905 | off_t wxBufferedOutputStream::OnSysTell() const |
219f895a | 906 | { |
fae05df5 | 907 | return m_parent_o_stream->TellO(); |
219f895a | 908 | } |
6d44bf31 | 909 | |
6d44bf31 GL |
910 | // ---------------------------------------------------------------------------- |
911 | // Some IOManip function | |
912 | // ---------------------------------------------------------------------------- | |
913 | ||
914 | wxOutputStream& wxEndL(wxOutputStream& stream) | |
915 | { | |
916 | #ifdef __MSW__ | |
917 | return stream.Write("\r\n", 2); | |
1e3eca9d GL |
918 | #else |
919 | #ifdef __WXMAC__ | |
920 | return stream.Write("\r", 1); | |
6d44bf31 GL |
921 | #else |
922 | return stream.Write("\n", 1); | |
923 | #endif | |
1e3eca9d | 924 | #endif |
6d44bf31 | 925 | } |
ce4169a4 RR |
926 | |
927 | #endif | |
928 | // wxUSE_STREAMS |