]>
Commit | Line | Data |
---|---|---|
1 | /////////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/buffer.h | |
3 | // Purpose: auto buffer classes: buffers which automatically free memory | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 12.04.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_BUFFER_H | |
13 | #define _WX_BUFFER_H | |
14 | ||
15 | #include "wx/wxchar.h" | |
16 | ||
17 | #include <stdlib.h> // malloc() and free() | |
18 | ||
19 | inline char *wxStrDup(const char *s) { return wxStrdupA(s); } | |
20 | #if wxUSE_WCHAR_T | |
21 | inline wchar_t *wxStrDup(const wchar_t *ws) { return wxStrdupW(ws); } | |
22 | #endif | |
23 | ||
24 | // ---------------------------------------------------------------------------- | |
25 | // Special classes for (wide) character strings: they use malloc/free instead | |
26 | // of new/delete | |
27 | // ---------------------------------------------------------------------------- | |
28 | ||
29 | template <typename T> | |
30 | class wxCharTypeBuffer | |
31 | { | |
32 | public: | |
33 | typedef T CharType; | |
34 | ||
35 | wxCharTypeBuffer(const CharType *str = NULL) | |
36 | : m_str(str ? wxStrDup(str) : NULL) | |
37 | { | |
38 | } | |
39 | ||
40 | wxCharTypeBuffer(size_t len) | |
41 | : m_str((CharType *)malloc((len + 1)*sizeof(CharType))) | |
42 | { | |
43 | m_str[len] = (CharType)0; | |
44 | } | |
45 | ||
46 | /* no need to check for NULL, free() does it */ | |
47 | ~wxCharTypeBuffer() { free(m_str); } | |
48 | ||
49 | /* | |
50 | WARNING: | |
51 | ||
52 | the copy ctor and assignment operators change the passed in object | |
53 | even although it is declared as "const", so: | |
54 | ||
55 | a) it shouldn't be really const | |
56 | b) you shouldn't use it afterwards (or know that it was reset) | |
57 | ||
58 | This is very ugly but is unfortunately needed to make the normal use\ | |
59 | of wxCharTypeBuffer buffer objects possible and is very similar to what | |
60 | std::auto_ptr<> does (as if it were an excuse...) | |
61 | */ | |
62 | ||
63 | /* | |
64 | because of the remark above, release() is declared const even if it | |
65 | isn't really const | |
66 | */ | |
67 | CharType *release() const | |
68 | { | |
69 | CharType *p = m_str; | |
70 | ((wxCharTypeBuffer *)this)->m_str = NULL; | |
71 | return p; | |
72 | } | |
73 | ||
74 | void reset() | |
75 | { | |
76 | free(m_str); | |
77 | m_str = NULL; | |
78 | } | |
79 | ||
80 | wxCharTypeBuffer(const wxCharTypeBuffer& src) | |
81 | : m_str(src.release()) | |
82 | { | |
83 | } | |
84 | ||
85 | wxCharTypeBuffer& operator=(const CharType *str) | |
86 | { | |
87 | free(m_str); | |
88 | m_str = str ? wxStrDup(str) : NULL; | |
89 | return *this; | |
90 | } | |
91 | ||
92 | wxCharTypeBuffer& operator=(const wxCharTypeBuffer& src) | |
93 | { | |
94 | free(m_str); | |
95 | m_str = src.release(); | |
96 | ||
97 | return *this; | |
98 | } | |
99 | ||
100 | bool extend(size_t len) | |
101 | { | |
102 | CharType * | |
103 | str = (CharType *)realloc(m_str, (len + 1)*sizeof(CharType)); | |
104 | if ( !str ) | |
105 | return false; | |
106 | ||
107 | m_str = str; | |
108 | ||
109 | return true; | |
110 | } | |
111 | ||
112 | CharType *data() { return m_str; } | |
113 | const CharType *data() const { return m_str; } | |
114 | operator const CharType *() const { return m_str; } | |
115 | CharType operator[](size_t n) const { return m_str[n]; } | |
116 | ||
117 | private: | |
118 | CharType *m_str; | |
119 | }; | |
120 | ||
121 | class WXDLLIMPEXP_BASE wxCharBuffer : public wxCharTypeBuffer<char> | |
122 | { | |
123 | public: | |
124 | typedef wxCharTypeBuffer<char> wxCharTypeBufferBase; | |
125 | ||
126 | wxCharBuffer(const CharType *str = NULL) : wxCharTypeBufferBase(str) {} | |
127 | wxCharBuffer(size_t len) : wxCharTypeBufferBase(len) {} | |
128 | ||
129 | wxCharBuffer(const wxCStrData& cstr); | |
130 | }; | |
131 | ||
132 | #if wxUSE_WCHAR_T | |
133 | class WXDLLIMPEXP_BASE wxWCharBuffer : public wxCharTypeBuffer<wchar_t> | |
134 | { | |
135 | public: | |
136 | typedef wxCharTypeBuffer<wchar_t> wxCharTypeBufferBase; | |
137 | ||
138 | wxWCharBuffer(const CharType *str = NULL) : wxCharTypeBufferBase(str) {} | |
139 | wxWCharBuffer(size_t len) : wxCharTypeBufferBase(len) {} | |
140 | ||
141 | wxWCharBuffer(const wxCStrData& cstr); | |
142 | }; | |
143 | #endif // wxUSE_WCHAR_T | |
144 | ||
145 | // wxCharTypeBuffer<T> implicitly convertible to T* | |
146 | template <typename T> | |
147 | class wxWritableCharTypeBuffer : public wxCharTypeBuffer<T> | |
148 | { | |
149 | public: | |
150 | typedef typename wxCharTypeBuffer<T>::CharType CharType; | |
151 | ||
152 | wxWritableCharTypeBuffer(const wxCharTypeBuffer<T>& src) | |
153 | : wxCharTypeBuffer<T>(src) {} | |
154 | // FIXME-UTF8: this won't be needed after converting mb_str()/wc_str() to | |
155 | // always return a buffer | |
156 | wxWritableCharTypeBuffer(const CharType *str = NULL) | |
157 | : wxCharTypeBuffer<T>(str) {} | |
158 | ||
159 | operator CharType*() { return this->data(); } | |
160 | }; | |
161 | ||
162 | typedef wxWritableCharTypeBuffer<char> wxWritableCharBuffer; | |
163 | typedef wxWritableCharTypeBuffer<wchar_t> wxWritableWCharBuffer; | |
164 | ||
165 | ||
166 | #if wxUSE_UNICODE | |
167 | #define wxWxCharBuffer wxWCharBuffer | |
168 | ||
169 | #define wxMB2WXbuf wxWCharBuffer | |
170 | #define wxWX2MBbuf wxCharBuffer | |
171 | #if wxUSE_UNICODE_WCHAR | |
172 | #define wxWC2WXbuf wxChar* | |
173 | #define wxWX2WCbuf wxChar* | |
174 | #elif wxUSE_UNICODE_UTF8 | |
175 | #define wxWC2WXbuf wxWCharBuffer | |
176 | #define wxWX2WCbuf wxWCharBuffer | |
177 | #endif | |
178 | #else // ANSI | |
179 | #define wxWxCharBuffer wxCharBuffer | |
180 | ||
181 | #define wxMB2WXbuf wxChar* | |
182 | #define wxWX2MBbuf wxChar* | |
183 | #define wxWC2WXbuf wxCharBuffer | |
184 | #define wxWX2WCbuf wxWCharBuffer | |
185 | #endif // Unicode/ANSI | |
186 | ||
187 | // ---------------------------------------------------------------------------- | |
188 | // A class for holding growable data buffers (not necessarily strings) | |
189 | // ---------------------------------------------------------------------------- | |
190 | ||
191 | // This class manages the actual data buffer pointer and is ref-counted. | |
192 | class wxMemoryBufferData | |
193 | { | |
194 | public: | |
195 | // the initial size and also the size added by ResizeIfNeeded() | |
196 | enum { DefBufSize = 1024 }; | |
197 | ||
198 | friend class wxMemoryBuffer; | |
199 | ||
200 | // everyting is private as it can only be used by wxMemoryBuffer | |
201 | private: | |
202 | wxMemoryBufferData(size_t size = wxMemoryBufferData::DefBufSize) | |
203 | : m_data(size ? malloc(size) : NULL), m_size(size), m_len(0), m_ref(0) | |
204 | { | |
205 | } | |
206 | ~wxMemoryBufferData() { free(m_data); } | |
207 | ||
208 | ||
209 | void ResizeIfNeeded(size_t newSize) | |
210 | { | |
211 | if (newSize > m_size) | |
212 | { | |
213 | void *dataOld = m_data; | |
214 | m_data = realloc(m_data, newSize + wxMemoryBufferData::DefBufSize); | |
215 | if ( !m_data ) | |
216 | { | |
217 | free(dataOld); | |
218 | } | |
219 | ||
220 | m_size = newSize + wxMemoryBufferData::DefBufSize; | |
221 | } | |
222 | } | |
223 | ||
224 | void IncRef() { m_ref += 1; } | |
225 | void DecRef() | |
226 | { | |
227 | m_ref -= 1; | |
228 | if (m_ref == 0) // are there no more references? | |
229 | delete this; | |
230 | } | |
231 | ||
232 | ||
233 | // the buffer containing the data | |
234 | void *m_data; | |
235 | ||
236 | // the size of the buffer | |
237 | size_t m_size; | |
238 | ||
239 | // the amount of data currently in the buffer | |
240 | size_t m_len; | |
241 | ||
242 | // the reference count | |
243 | size_t m_ref; | |
244 | ||
245 | DECLARE_NO_COPY_CLASS(wxMemoryBufferData) | |
246 | }; | |
247 | ||
248 | ||
249 | class wxMemoryBuffer | |
250 | { | |
251 | public: | |
252 | // ctor and dtor | |
253 | wxMemoryBuffer(size_t size = wxMemoryBufferData::DefBufSize) | |
254 | { | |
255 | m_bufdata = new wxMemoryBufferData(size); | |
256 | m_bufdata->IncRef(); | |
257 | } | |
258 | ||
259 | ~wxMemoryBuffer() { m_bufdata->DecRef(); } | |
260 | ||
261 | ||
262 | // copy and assignment | |
263 | wxMemoryBuffer(const wxMemoryBuffer& src) | |
264 | : m_bufdata(src.m_bufdata) | |
265 | { | |
266 | m_bufdata->IncRef(); | |
267 | } | |
268 | ||
269 | wxMemoryBuffer& operator=(const wxMemoryBuffer& src) | |
270 | { | |
271 | m_bufdata->DecRef(); | |
272 | m_bufdata = src.m_bufdata; | |
273 | m_bufdata->IncRef(); | |
274 | return *this; | |
275 | } | |
276 | ||
277 | ||
278 | // Accessors | |
279 | void *GetData() const { return m_bufdata->m_data; } | |
280 | size_t GetBufSize() const { return m_bufdata->m_size; } | |
281 | size_t GetDataLen() const { return m_bufdata->m_len; } | |
282 | ||
283 | void SetBufSize(size_t size) { m_bufdata->ResizeIfNeeded(size); } | |
284 | void SetDataLen(size_t len) | |
285 | { | |
286 | wxASSERT(len <= m_bufdata->m_size); | |
287 | m_bufdata->m_len = len; | |
288 | } | |
289 | ||
290 | // Ensure the buffer is big enough and return a pointer to it | |
291 | void *GetWriteBuf(size_t sizeNeeded) | |
292 | { | |
293 | m_bufdata->ResizeIfNeeded(sizeNeeded); | |
294 | return m_bufdata->m_data; | |
295 | } | |
296 | ||
297 | // Update the length after the write | |
298 | void UngetWriteBuf(size_t sizeUsed) { SetDataLen(sizeUsed); } | |
299 | ||
300 | // Like the above, but appends to the buffer | |
301 | void *GetAppendBuf(size_t sizeNeeded) | |
302 | { | |
303 | m_bufdata->ResizeIfNeeded(m_bufdata->m_len + sizeNeeded); | |
304 | return (char*)m_bufdata->m_data + m_bufdata->m_len; | |
305 | } | |
306 | ||
307 | // Update the length after the append | |
308 | void UngetAppendBuf(size_t sizeUsed) | |
309 | { | |
310 | SetDataLen(m_bufdata->m_len + sizeUsed); | |
311 | } | |
312 | ||
313 | // Other ways to append to the buffer | |
314 | void AppendByte(char data) | |
315 | { | |
316 | wxCHECK_RET( m_bufdata->m_data, _T("invalid wxMemoryBuffer") ); | |
317 | ||
318 | m_bufdata->ResizeIfNeeded(m_bufdata->m_len + 1); | |
319 | *(((char*)m_bufdata->m_data) + m_bufdata->m_len) = data; | |
320 | m_bufdata->m_len += 1; | |
321 | } | |
322 | ||
323 | void AppendData(const void *data, size_t len) | |
324 | { | |
325 | memcpy(GetAppendBuf(len), data, len); | |
326 | UngetAppendBuf(len); | |
327 | } | |
328 | ||
329 | operator const char *() const { return (const char*)GetData(); } | |
330 | ||
331 | private: | |
332 | wxMemoryBufferData* m_bufdata; | |
333 | }; | |
334 | ||
335 | // ---------------------------------------------------------------------------- | |
336 | // template class for any kind of data | |
337 | // ---------------------------------------------------------------------------- | |
338 | ||
339 | // TODO | |
340 | ||
341 | #endif // _WX_BUFFER_H |