]>
git.saurik.com Git - wxWidgets.git/blob - src/common/mstream.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: "Memory stream" classes
4 // Author: Guilhem Lavaux
8 // Copyright: (c) Guilhem Lavaux
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "mstream.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
19 #include <wx/stream.h>
20 #include <wx/mstream.h>
26 // ----------------------------------------------------------------------------
28 // ----------------------------------------------------------------------------
29 wxMemoryStreamBase::wxMemoryStreamBase()
37 wxMemoryStreamBase::~wxMemoryStreamBase()
39 if (!m_persistent
&& m_buffer
)
43 bool wxMemoryStreamBase::ChangeBufferSize(size_t new_size
)
50 m_buffer
= (char *)malloc(m_length
);
52 m_buffer
= (char *)realloc(m_buffer
, m_length
);
54 return (m_buffer
!= NULL
);
57 // ----------------------------------------------------------------------------
58 // wxMemoryInputStream
59 // ----------------------------------------------------------------------------
61 wxMemoryInputStream::wxMemoryInputStream(const char *data
, size_t len
)
65 m_buffer
= (char *)data
; // It's bad.
71 m_i_streambuf
->SetBufferIO(0);
74 wxMemoryInputStream::~wxMemoryInputStream()
78 size_t wxMemoryInputStream::DoRead(void *buffer
, size_t size
)
84 if (m_position_i
+size
> m_length
)
85 size
= m_length
-m_position_i
;
87 memcpy((void *)((unsigned long)buffer
+m_position_i
), m_buffer
, size
);
93 off_t
wxMemoryInputStream::DoSeekInput(off_t pos
, wxSeekMode mode
)
100 if ((size_t)pos
> m_length
)
102 return (m_position_i
= pos
);
105 if ((size_t)(m_position_i
+pos
) > m_length
)
108 return (m_position_i
+= pos
);
111 if ((size_t)(m_length
-pos
) > m_length
)
114 return (m_position_i
= m_length
-pos
);
120 // ----------------------------------------------------------------------------
121 // wxMemoryOutputStream
122 // ----------------------------------------------------------------------------
124 wxMemoryOutputStream::wxMemoryOutputStream(char *data
, size_t len
)
126 m_persistent
= FALSE
;
134 m_o_streambuf
->SetBufferIO(0);
137 wxMemoryOutputStream::~wxMemoryOutputStream()
142 size_t wxMemoryOutputStream::DoWrite(const void *buffer
, size_t size
)
144 if (m_iolimit
== 1) {
149 if (m_position_o
+size
> m_length
)
150 if (!ChangeBufferSize(m_position_o
+size
)) {
155 memcpy(m_buffer
+m_position_o
, buffer
, size
);
156 m_position_o
+= size
;
161 off_t
wxMemoryOutputStream::DoSeekOutput(off_t pos
, wxSeekMode mode
)
168 if ((size_t)pos
> m_length
)
170 return (m_position_o
= pos
);
173 if ((size_t)(m_position_o
+pos
) > m_length
)
176 return (m_position_o
+= pos
);
179 if ((size_t)(m_length
-pos
) > m_length
)
182 return (m_position_o
= m_length
-pos
);
188 // ----------------------------------------------------------------------------
190 // ----------------------------------------------------------------------------
192 wxMemoryStream::wxMemoryStream(char *data
, size_t len
)
193 : wxMemoryInputStream(NULL
, 0), wxMemoryOutputStream(NULL
, 0)
195 m_persistent
= FALSE
;
201 wxMemoryStream::~wxMemoryStream()