]> git.saurik.com Git - wxWidgets.git/blame - src/common/mstream.cpp
wxHTML src code indentation now conforms (more) to wxWin coding style
[wxWidgets.git] / src / common / mstream.cpp
CommitLineData
3d4c6a21 1/////////////////////////////////////////////////////////////////////////////
32fc4afb 2// Name: mstream.cpp
3d4c6a21
GL
3// Purpose: "Memory stream" classes
4// Author: Guilhem Lavaux
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Guilhem Lavaux
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
32fc4afb 13#pragma implementation "mstream.h"
3d4c6a21
GL
14#endif
15
79c3e0e1
GL
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
79c3e0e1
GL
18
19#ifdef __BORLANDC__
ce4169a4 20 #pragma hdrstop
79c3e0e1 21#endif
3d4c6a21 22
ce4169a4
RR
23#if wxUSE_STREAMS
24
25#include <stdlib.h>
3096bd2f
VZ
26#include "wx/stream.h"
27#include "wx/mstream.h"
ce4169a4 28
79c3e0e1
GL
29// ----------------------------------------------------------------------------
30// wxMemoryInputStream
31// ----------------------------------------------------------------------------
32
33wxMemoryInputStream::wxMemoryInputStream(const char *data, size_t len)
75ed1d15 34 : wxInputStream()
79c3e0e1 35{
c980c992 36 m_i_streambuf = new wxStreamBuffer(wxStreamBuffer::read);
2d0a075d 37 m_i_streambuf->SetBufferIO((char*) data, (char*) (data+len));
18c07b73 38 m_i_streambuf->SetIntPosition(0); // seek to start pos
75ed1d15 39 m_i_streambuf->Fixed(TRUE);
c980c992 40
18c07b73 41 m_length = len;
3d4c6a21
GL
42}
43
0cd9bfe8
GL
44wxMemoryInputStream::~wxMemoryInputStream()
45{
c980c992 46 delete m_i_streambuf;
0cd9bfe8
GL
47}
48
32a4b1d5
GL
49char wxMemoryInputStream::Peek()
50{
75ed1d15 51 return m_i_streambuf->GetBufferStart()[m_i_streambuf->GetIntPosition()];
c980c992
GL
52}
53
83141d3a
VZ
54bool wxMemoryInputStream::Eof() const
55{
56 return m_i_streambuf->GetBufferPos() == m_i_streambuf->GetBufferEnd();
57}
58
c980c992 59size_t wxMemoryInputStream::OnSysRead(void *buffer, size_t nbytes)
83141d3a
VZ
60{
61 size_t pos = m_i_streambuf->GetIntPosition();
62 if ( pos == m_length )
63 {
64 m_lasterror = wxSTREAM_EOF;
65
66 return 0;
67 }
68
69 m_i_streambuf->Read(buffer, nbytes);
70 m_lasterror = wxSTREAM_NOERROR;
71
72 return m_i_streambuf->GetIntPosition() - pos;
c980c992
GL
73}
74
75off_t wxMemoryInputStream::OnSysSeek(off_t pos, wxSeekMode mode)
76{
77 return m_i_streambuf->Seek(pos, mode);
78}
79
80off_t wxMemoryInputStream::OnSysTell() const
81{
82 return m_i_streambuf->Tell();
3d4c6a21
GL
83}
84
79c3e0e1
GL
85// ----------------------------------------------------------------------------
86// wxMemoryOutputStream
87// ----------------------------------------------------------------------------
88
89wxMemoryOutputStream::wxMemoryOutputStream(char *data, size_t len)
75ed1d15 90 : wxOutputStream()
79c3e0e1 91{
c980c992 92 m_o_streambuf = new wxStreamBuffer(wxStreamBuffer::write);
75ed1d15
GL
93 if (data)
94 m_o_streambuf->SetBufferIO(data, data+len);
56dc1ffd
GL
95 m_o_streambuf->Fixed(FALSE);
96 m_o_streambuf->Flushable(FALSE);
79c3e0e1
GL
97}
98
0cd9bfe8 99wxMemoryOutputStream::~wxMemoryOutputStream()
79c3e0e1 100{
c980c992 101 delete m_o_streambuf;
3d4c6a21 102}
ce4169a4 103
c980c992
GL
104size_t wxMemoryOutputStream::OnSysWrite(const void *buffer, size_t nbytes)
105{
c83b0766
VS
106 size_t bufsize = m_o_streambuf->GetBufferEnd() - m_o_streambuf->GetBufferStart();
107 size_t oldpos = m_o_streambuf->GetIntPosition();
108 m_o_streambuf->Write(buffer, nbytes);
109 size_t newpos = m_o_streambuf->GetIntPosition();
110 if (newpos == 0) return bufsize - oldpos;
111 else return newpos - oldpos;
c980c992
GL
112}
113
114off_t wxMemoryOutputStream::OnSysSeek(off_t pos, wxSeekMode mode)
115{
116 return m_o_streambuf->Seek(pos, mode);
117}
118
119off_t wxMemoryOutputStream::OnSysTell() const
120{
121 return m_o_streambuf->Tell();
122}
123
a324a7bc
GL
124size_t wxMemoryOutputStream::CopyTo(char *buffer, size_t len) const
125{
126 if (!buffer)
127 return 0;
128
cd25b18c
RR
129 if (len > GetSize())
130 len = GetSize();
a324a7bc
GL
131
132 memcpy(buffer, m_o_streambuf->GetBufferStart(), len);
133 return len;
134}
c980c992 135
ce4169a4 136#endif