]>
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 | } | |
d314c3bb GRG |
588 | size -= retsize; |
589 | buf += retsize; | |
fae05df5 | 590 | |
d314c3bb | 591 | m_lastcount = OnSysRead(buf, size) + retsize; |
6d44bf31 | 592 | return *this; |
3d4c6a21 GL |
593 | } |
594 | ||
75ed1d15 GL |
595 | char wxInputStream::Peek() |
596 | { | |
fae05df5 | 597 | char c; |
75ed1d15 | 598 | |
fae05df5 GL |
599 | Read(&c, 1); |
600 | if (m_lasterror == wxStream_NOERROR) { | |
601 | Ungetch(c); | |
602 | return c; | |
603 | } | |
604 | return 0; | |
75ed1d15 GL |
605 | } |
606 | ||
3d4c6a21 GL |
607 | wxInputStream& wxInputStream::Read(wxOutputStream& stream_out) |
608 | { | |
609 | char buf[BUF_TEMP_SIZE]; | |
610 | size_t bytes_read = BUF_TEMP_SIZE; | |
611 | ||
8ef6a930 | 612 | while (bytes_read == BUF_TEMP_SIZE) { |
3d4c6a21 | 613 | bytes_read = Read(buf, bytes_read).LastRead(); |
8ef6a930 | 614 | bytes_read = stream_out.Write(buf, bytes_read).LastWrite(); |
3d4c6a21 GL |
615 | } |
616 | return *this; | |
617 | } | |
618 | ||
75ed1d15 GL |
619 | off_t wxInputStream::SeekI(off_t pos, wxSeekMode mode) |
620 | { | |
d984207c | 621 | // Should be check and improve, just to remove a slight bug ! |
fe8aa971 | 622 | // I don't know whether it should be put as well in wxFileInputStream::OnSysSeek ? |
d984207c RR |
623 | if (m_lasterror==wxSTREAM_EOF) |
624 | m_lasterror=wxSTREAM_NOERROR; | |
625 | ||
626 | // A call to SeekI() will automatically invalidate any previous call | |
627 | // to Ungetch(), otherwise it would be possible to SeeI() to one | |
628 | // one position, unread some bytes there, SeekI() to another position | |
629 | // and the data would be corrupted. | |
630 | if (m_wback) { | |
631 | free(m_wback); | |
632 | m_wback = (char*) NULL; | |
633 | m_wbacksize = 0; | |
634 | m_wbackcur = 0; | |
635 | } | |
fe8aa971 | 636 | |
60b6c062 | 637 | return OnSysSeek(pos, mode); |
75ed1d15 GL |
638 | } |
639 | ||
640 | off_t wxInputStream::TellI() const | |
641 | { | |
60b6c062 | 642 | return OnSysTell(); |
75ed1d15 GL |
643 | } |
644 | ||
645 | // -------------------- | |
646 | // Overloaded operators | |
647 | // -------------------- | |
648 | ||
fae05df5 GL |
649 | #if wxUSE_SERIAL |
650 | wxInputStream& wxInputStream::operator>>(wxObject *& obj) | |
1678ad78 | 651 | { |
fae05df5 GL |
652 | wxObjectInputStream obj_s(*this); |
653 | obj = obj_s.LoadObject(); | |
1678ad78 GL |
654 | return *this; |
655 | } | |
fae05df5 | 656 | #endif |
1678ad78 | 657 | |
1678ad78 | 658 | |
fae05df5 GL |
659 | // ---------------------------------------------------------------------------- |
660 | // wxOutputStream | |
661 | // ---------------------------------------------------------------------------- | |
662 | wxOutputStream::wxOutputStream() | |
663 | : wxStreamBase() | |
1678ad78 | 664 | { |
1678ad78 GL |
665 | } |
666 | ||
fae05df5 | 667 | wxOutputStream::~wxOutputStream() |
123a7fdd | 668 | { |
123a7fdd GL |
669 | } |
670 | ||
fae05df5 | 671 | wxOutputStream& wxOutputStream::Write(const void *buffer, size_t size) |
1678ad78 | 672 | { |
fae05df5 | 673 | m_lastcount = OnSysWrite(buffer, size); |
1678ad78 GL |
674 | return *this; |
675 | } | |
676 | ||
fae05df5 | 677 | wxOutputStream& wxOutputStream::Write(wxInputStream& stream_in) |
38830220 | 678 | { |
fae05df5 | 679 | stream_in.Read(*this); |
38830220 RR |
680 | return *this; |
681 | } | |
682 | ||
fae05df5 | 683 | off_t wxOutputStream::TellO() const |
38830220 | 684 | { |
60b6c062 | 685 | return OnSysTell(); |
38830220 RR |
686 | } |
687 | ||
fae05df5 | 688 | off_t wxOutputStream::SeekO(off_t pos, wxSeekMode mode) |
38830220 | 689 | { |
60b6c062 | 690 | return OnSysSeek(pos, mode); |
38830220 RR |
691 | } |
692 | ||
fae05df5 | 693 | void wxOutputStream::Sync() |
1678ad78 | 694 | { |
1678ad78 GL |
695 | } |
696 | ||
47d67540 | 697 | #if wxUSE_SERIAL |
fae05df5 | 698 | wxOutputStream& wxOutputStream::operator<<(wxObject& obj) |
123a7fdd | 699 | { |
fae05df5 GL |
700 | wxObjectOutputStream obj_s(*this); |
701 | obj_s.SaveObject(obj); | |
123a7fdd GL |
702 | return *this; |
703 | } | |
fcc6dddd | 704 | #endif |
123a7fdd | 705 | |
e2acb9ae RR |
706 | // ---------------------------------------------------------------------------- |
707 | // wxCountingOutputStream | |
708 | // ---------------------------------------------------------------------------- | |
709 | ||
710 | wxCountingOutputStream::wxCountingOutputStream () | |
711 | : wxOutputStream() | |
712 | { | |
713 | m_currentPos = 0; | |
714 | } | |
715 | ||
716 | size_t wxCountingOutputStream::GetSize() const | |
717 | { | |
718 | return m_lastcount; | |
719 | } | |
720 | ||
5e0201ea | 721 | size_t wxCountingOutputStream::OnSysWrite(const void *WXUNUSED(buffer), size_t size) |
e2acb9ae RR |
722 | { |
723 | m_currentPos += size; | |
724 | if (m_currentPos > m_lastcount) m_lastcount = m_currentPos; | |
725 | return m_currentPos; | |
726 | } | |
727 | ||
728 | off_t wxCountingOutputStream::OnSysSeek(off_t pos, wxSeekMode mode) | |
729 | { | |
730 | if (mode == wxFromStart) | |
731 | { | |
732 | m_currentPos = pos; | |
733 | } | |
734 | if (mode == wxFromEnd) | |
735 | { | |
736 | m_currentPos = m_lastcount + pos; | |
737 | } | |
738 | else | |
739 | { | |
740 | m_currentPos += pos; | |
741 | } | |
742 | if (m_currentPos > m_lastcount) m_lastcount = m_currentPos; | |
743 | ||
744 | return m_currentPos; // ? | |
745 | } | |
746 | ||
747 | off_t wxCountingOutputStream::OnSysTell() const | |
748 | { | |
749 | return m_currentPos; // ? | |
750 | } | |
751 | ||
1678ad78 | 752 | // ---------------------------------------------------------------------------- |
fae05df5 | 753 | // wxFilterInputStream |
1678ad78 | 754 | // ---------------------------------------------------------------------------- |
e2acb9ae | 755 | |
fae05df5 GL |
756 | wxFilterInputStream::wxFilterInputStream() |
757 | : wxInputStream() | |
3d4c6a21 | 758 | { |
6d44bf31 GL |
759 | } |
760 | ||
fae05df5 GL |
761 | wxFilterInputStream::wxFilterInputStream(wxInputStream& stream) |
762 | : wxInputStream() | |
6d44bf31 | 763 | { |
fae05df5 | 764 | m_parent_i_stream = &stream; |
3d4c6a21 GL |
765 | } |
766 | ||
fae05df5 | 767 | wxFilterInputStream::~wxFilterInputStream() |
3d4c6a21 | 768 | { |
6d44bf31 GL |
769 | } |
770 | ||
fae05df5 GL |
771 | // ---------------------------------------------------------------------------- |
772 | // wxFilterOutputStream | |
773 | // ---------------------------------------------------------------------------- | |
774 | wxFilterOutputStream::wxFilterOutputStream() | |
775 | : wxOutputStream() | |
6d44bf31 | 776 | { |
3d4c6a21 GL |
777 | } |
778 | ||
fae05df5 GL |
779 | wxFilterOutputStream::wxFilterOutputStream(wxOutputStream& stream) |
780 | : wxOutputStream() | |
3d4c6a21 | 781 | { |
fae05df5 | 782 | m_parent_o_stream = &stream; |
6d44bf31 GL |
783 | } |
784 | ||
fae05df5 | 785 | wxFilterOutputStream::~wxFilterOutputStream() |
6d44bf31 | 786 | { |
6d44bf31 GL |
787 | } |
788 | ||
fae05df5 GL |
789 | // ---------------------------------------------------------------------------- |
790 | // wxBufferedInputStream | |
791 | // ---------------------------------------------------------------------------- | |
792 | wxBufferedInputStream::wxBufferedInputStream(wxInputStream& s) | |
793 | : wxFilterInputStream(s) | |
6d44bf31 | 794 | { |
fae05df5 GL |
795 | m_i_streambuf = new wxStreamBuffer(*this, wxStreamBuffer::read); |
796 | m_i_streambuf->SetBufferIO(1024); | |
6d44bf31 GL |
797 | } |
798 | ||
fae05df5 | 799 | wxBufferedInputStream::~wxBufferedInputStream() |
6d44bf31 | 800 | { |
fae05df5 | 801 | delete m_i_streambuf; |
6d44bf31 GL |
802 | } |
803 | ||
6319afe3 GL |
804 | char wxBufferedInputStream::Peek() |
805 | { | |
806 | return m_i_streambuf->Peek(); | |
807 | } | |
808 | ||
fae05df5 | 809 | wxInputStream& wxBufferedInputStream::Read(void *buffer, size_t size) |
1e3eca9d | 810 | { |
fae05df5 GL |
811 | size_t retsize; |
812 | char *buf = (char *)buffer; | |
1e3eca9d | 813 | |
fae05df5 | 814 | retsize = GetWBack(buf, size); |
a324a7bc | 815 | m_lastcount = retsize; |
fae05df5 | 816 | if (retsize == size) { |
fae05df5 GL |
817 | m_lasterror = wxStream_NOERROR; |
818 | return *this; | |
819 | } | |
820 | size -= retsize; | |
821 | buf += retsize; | |
1e3eca9d | 822 | |
fae05df5 | 823 | m_i_streambuf->Read(buf, size); |
6d44bf31 | 824 | |
fae05df5 | 825 | return *this; |
6d44bf31 GL |
826 | } |
827 | ||
fae05df5 | 828 | off_t wxBufferedInputStream::SeekI(off_t pos, wxSeekMode mode) |
6d44bf31 | 829 | { |
fae05df5 | 830 | return m_i_streambuf->Seek(pos, mode); |
6d44bf31 GL |
831 | } |
832 | ||
fae05df5 | 833 | off_t wxBufferedInputStream::TellI() const |
6d44bf31 | 834 | { |
fae05df5 | 835 | return m_i_streambuf->Tell(); |
38830220 | 836 | } |
6d44bf31 | 837 | |
fae05df5 | 838 | size_t wxBufferedInputStream::OnSysRead(void *buffer, size_t bufsize) |
38830220 | 839 | { |
fae05df5 | 840 | return m_parent_i_stream->Read(buffer, bufsize).LastRead(); |
38830220 RR |
841 | } |
842 | ||
fae05df5 | 843 | off_t wxBufferedInputStream::OnSysSeek(off_t seek, wxSeekMode mode) |
38830220 | 844 | { |
fae05df5 | 845 | return m_parent_i_stream->SeekI(seek, mode); |
6d44bf31 GL |
846 | } |
847 | ||
fae05df5 | 848 | off_t wxBufferedInputStream::OnSysTell() const |
6d44bf31 | 849 | { |
fae05df5 | 850 | return m_parent_i_stream->TellI(); |
38830220 | 851 | } |
6d44bf31 | 852 | |
fae05df5 GL |
853 | // ---------------------------------------------------------------------------- |
854 | // wxBufferedOutputStream | |
855 | // ---------------------------------------------------------------------------- | |
6d44bf31 | 856 | |
fae05df5 GL |
857 | wxBufferedOutputStream::wxBufferedOutputStream(wxOutputStream& s) |
858 | : wxFilterOutputStream(s) | |
6d44bf31 | 859 | { |
fae05df5 GL |
860 | m_o_streambuf = new wxStreamBuffer(*this, wxStreamBuffer::write); |
861 | m_o_streambuf->SetBufferIO(1024); | |
6d44bf31 GL |
862 | } |
863 | ||
fae05df5 | 864 | wxBufferedOutputStream::~wxBufferedOutputStream() |
6d44bf31 | 865 | { |
1b055864 | 866 | Sync(); |
fae05df5 | 867 | delete m_o_streambuf; |
3d4c6a21 GL |
868 | } |
869 | ||
fae05df5 | 870 | wxOutputStream& wxBufferedOutputStream::Write(const void *buffer, size_t size) |
123a7fdd | 871 | { |
a324a7bc | 872 | m_lastcount = 0; |
fae05df5 | 873 | m_o_streambuf->Write(buffer, size); |
123a7fdd GL |
874 | return *this; |
875 | } | |
876 | ||
fae05df5 | 877 | off_t wxBufferedOutputStream::SeekO(off_t pos, wxSeekMode mode) |
f4ada568 | 878 | { |
1b055864 | 879 | Sync(); |
fae05df5 | 880 | return m_o_streambuf->Seek(pos, mode); |
f4ada568 GL |
881 | } |
882 | ||
fae05df5 | 883 | off_t wxBufferedOutputStream::TellO() const |
3d4c6a21 | 884 | { |
fae05df5 | 885 | return m_o_streambuf->Tell(); |
3d4c6a21 GL |
886 | } |
887 | ||
fae05df5 | 888 | void wxBufferedOutputStream::Sync() |
3d4c6a21 | 889 | { |
fae05df5 GL |
890 | m_o_streambuf->FlushBuffer(); |
891 | m_parent_o_stream->Sync(); | |
3d4c6a21 | 892 | } |
219f895a | 893 | |
fae05df5 | 894 | size_t wxBufferedOutputStream::OnSysWrite(const void *buffer, size_t bufsize) |
f4ada568 | 895 | { |
fae05df5 | 896 | return m_parent_o_stream->Write(buffer, bufsize).LastWrite(); |
f4ada568 GL |
897 | } |
898 | ||
fae05df5 | 899 | off_t wxBufferedOutputStream::OnSysSeek(off_t seek, wxSeekMode mode) |
219f895a | 900 | { |
fae05df5 | 901 | return m_parent_o_stream->SeekO(seek, mode); |
219f895a RR |
902 | } |
903 | ||
fae05df5 | 904 | off_t wxBufferedOutputStream::OnSysTell() const |
219f895a | 905 | { |
fae05df5 | 906 | return m_parent_o_stream->TellO(); |
219f895a | 907 | } |
6d44bf31 | 908 | |
6d44bf31 GL |
909 | // ---------------------------------------------------------------------------- |
910 | // Some IOManip function | |
911 | // ---------------------------------------------------------------------------- | |
912 | ||
913 | wxOutputStream& wxEndL(wxOutputStream& stream) | |
914 | { | |
915 | #ifdef __MSW__ | |
916 | return stream.Write("\r\n", 2); | |
1e3eca9d GL |
917 | #else |
918 | #ifdef __WXMAC__ | |
919 | return stream.Write("\r", 1); | |
6d44bf31 GL |
920 | #else |
921 | return stream.Write("\n", 1); | |
922 | #endif | |
1e3eca9d | 923 | #endif |
6d44bf31 | 924 | } |
ce4169a4 RR |
925 | |
926 | #endif | |
927 | // wxUSE_STREAMS |