]> git.saurik.com Git - wxWidgets.git/blob - include/wx/buffer.h
Applied patch #9058 (add Hildon 2.0 support)
[wxWidgets.git] / include / wx / buffer.h
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/chartype.h"
16 #include "wx/wxcrtbase.h"
17
18 #ifndef __WXPALMOS5__
19 #include <stdlib.h> // malloc() and free()
20 #endif // ! __WXPALMOS5__
21
22 class WXDLLIMPEXP_FWD_BASE wxCStrData;
23
24 // ----------------------------------------------------------------------------
25 // Special classes for (wide) character strings: they use malloc/free instead
26 // of new/delete
27 // ----------------------------------------------------------------------------
28
29 // helpers used by wxCharTypeBuffer
30 namespace wxPrivate
31 {
32
33 struct UntypedBufferData
34 {
35 enum Kind
36 {
37 Owned,
38 NonOwned
39 };
40
41 UntypedBufferData(void *str, size_t len, Kind kind = Owned)
42 : m_str(str), m_length(len), m_ref(1), m_owned(kind == Owned) {}
43
44 ~UntypedBufferData()
45 {
46 if ( m_owned )
47 free(m_str);
48 }
49
50 void *m_str;
51 size_t m_length;
52
53 // "short" to have sizeof(Data)=12 on 32bit archs
54 unsigned short m_ref;
55
56 bool m_owned;
57 };
58
59 // this has to be defined inside the DLL (and not e.g. as a static variable
60 // inside an inline function) as otherwise MSVC gives link errors when the
61 // functions are effectively inlined (i.e. in non-debug build)
62 //
63 // NB: this is defined in string.cpp and not the (non-existent) buffer.cpp
64 extern WXDLLIMPEXP_DATA_BASE(UntypedBufferData * const) untypedNullDataPtr;
65
66 } // namespace wxPrivate
67
68
69 // Reference-counted character buffer for storing string data. The buffer
70 // is only valid for as long as the "parent" object that provided the data
71 // is valid; see wxCharTypeBuffer<T> for persistent variant.
72 template <typename T>
73 class wxScopedCharTypeBuffer
74 {
75 public:
76 typedef T CharType;
77
78 wxScopedCharTypeBuffer()
79 {
80 m_data = GetNullData();
81 }
82
83 // Creates "non-owned" buffer, i.e. 'str' is not owned by the buffer
84 // and doesn't get freed by dtor. Used e.g. to point to wxString's internal
85 // storage.
86 static
87 const wxScopedCharTypeBuffer CreateNonOwned(const CharType *str,
88 size_t len = wxNO_LEN)
89 {
90 if ( len == wxNO_LEN )
91 len = wxStrlen(str);
92
93 wxScopedCharTypeBuffer buf;
94 if ( str )
95 buf.m_data = new Data(const_cast<CharType*>(str), len, Data::NonOwned);
96 return buf;
97 }
98
99 // Creates "owned" buffer, i.e. takes over ownership of 'str' and frees it
100 // in dtor (if ref.count reaches 0).
101 static
102 const wxScopedCharTypeBuffer CreateOwned(const CharType *str,
103 size_t len = wxNO_LEN )
104 {
105 if ( len == wxNO_LEN )
106 len = wxStrlen(str);
107
108 wxScopedCharTypeBuffer buf;
109 if ( str )
110 buf.m_data = new Data(StrCopy(str, len), len);
111 return buf;
112 }
113
114 wxScopedCharTypeBuffer(const wxScopedCharTypeBuffer& src)
115 {
116 m_data = src.m_data;
117 IncRef();
118 }
119
120 wxScopedCharTypeBuffer& operator=(const wxScopedCharTypeBuffer& src)
121 {
122 if ( &src == this )
123 return *this;
124
125 DecRef();
126 m_data = src.m_data;
127 IncRef();
128
129 return *this;
130 }
131
132 ~wxScopedCharTypeBuffer()
133 {
134 DecRef();
135 }
136
137 // NB: this method is only const for backward compatibility. It used to
138 // be needed for auto_ptr-like semantics of the copy ctor, but now
139 // that ref-counting is used, it's not really needed.
140 CharType *release() const
141 {
142 if ( m_data == GetNullData() )
143 return NULL;
144
145 wxASSERT_MSG( m_data->m_owned, wxT("can't release non-owned buffer") );
146 wxASSERT_MSG( m_data->m_ref == 1, wxT("can't release shared buffer") );
147
148 CharType * const p = m_data->Get();
149
150 wxScopedCharTypeBuffer *self = const_cast<wxScopedCharTypeBuffer*>(this);
151 self->m_data->Set(NULL, 0);
152 self->DecRef();
153
154 return p;
155 }
156
157 void reset()
158 {
159 DecRef();
160 }
161
162 CharType *data() { return m_data->Get(); }
163 const CharType *data() const { return m_data->Get(); }
164 operator const CharType *() const { return data(); }
165 CharType operator[](size_t n) const { return data()[n]; }
166
167 size_t length() const { return m_data->m_length; }
168
169 protected:
170 // reference-counted data
171 struct Data : public wxPrivate::UntypedBufferData
172 {
173 Data(CharType *str, size_t len, Kind kind = Owned)
174 : wxPrivate::UntypedBufferData(str, len, kind)
175 {
176 }
177
178 CharType *Get() const { return static_cast<CharType *>(m_str); }
179 void Set(CharType *str, size_t len)
180 {
181 m_str = str;
182 m_length = len;
183 }
184 };
185
186 // placeholder for NULL string, to simplify this code
187 static Data *GetNullData()
188 {
189 return static_cast<Data *>(wxPrivate::untypedNullDataPtr);
190 }
191
192 void IncRef()
193 {
194 if ( m_data == GetNullData() ) // exception, not ref-counted
195 return;
196 m_data->m_ref++;
197 }
198
199 void DecRef()
200 {
201 if ( m_data == GetNullData() ) // exception, not ref-counted
202 return;
203 if ( --m_data->m_ref == 0 )
204 delete m_data;
205 m_data = GetNullData();
206 }
207
208 // sets this object to a be copy of 'other'; if 'src' is non-owned,
209 // a deep copy is made and 'this' will contain new instance of the data
210 void MakeOwnedCopyOf(const wxScopedCharTypeBuffer& src)
211 {
212 this->DecRef();
213
214 if ( src.m_data == this->GetNullData() )
215 {
216 this->m_data = this->GetNullData();
217 }
218 else if ( src.m_data->m_owned )
219 {
220 this->m_data = src.m_data;
221 this->IncRef();
222 }
223 else
224 {
225 // if the scoped buffer had non-owned data, we have to make
226 // a copy here, because src.m_data->m_str is valid only for as long
227 // as 'src' exists
228 this->m_data = new Data
229 (
230 StrCopy(src.data(), src.length()),
231 src.length()
232 );
233 }
234 }
235
236 static CharType *StrCopy(const CharType *src, size_t len)
237 {
238 CharType *dst = (CharType*)malloc(sizeof(CharType) * (len + 1));
239 memcpy(dst, src, sizeof(CharType) * (len + 1));
240 return dst;
241 }
242
243 protected:
244 Data *m_data;
245 };
246
247 typedef wxScopedCharTypeBuffer<char> wxScopedCharBuffer;
248 typedef wxScopedCharTypeBuffer<wchar_t> wxScopedWCharBuffer;
249
250
251 // this buffer class always stores data in "owned" (persistent) manner
252 template <typename T>
253 class wxCharTypeBuffer : public wxScopedCharTypeBuffer<T>
254 {
255 protected:
256 typedef typename wxScopedCharTypeBuffer<T>::Data Data;
257
258 public:
259 typedef T CharType;
260
261 wxCharTypeBuffer(const CharType *str = NULL, size_t len = wxNO_LEN)
262 {
263 if ( str )
264 {
265 if ( len == wxNO_LEN )
266 len = wxStrlen(str);
267 this->m_data = new Data(StrCopy(str, len), len);
268 }
269 else
270 {
271 this->m_data = this->GetNullData();
272 }
273 }
274
275 wxCharTypeBuffer(size_t len)
276 {
277 this->m_data =
278 new Data((CharType *)malloc((len + 1)*sizeof(CharType)), len);
279 this->m_data->Get()[len] = (CharType)0;
280 }
281
282 wxCharTypeBuffer(const wxCharTypeBuffer& src)
283 : wxScopedCharTypeBuffer<T>(src) {}
284
285 wxCharTypeBuffer& operator=(const CharType *str)
286 {
287 this->DecRef();
288
289 if ( str )
290 this->m_data = new Data(wxStrdup(str), wxStrlen(str));
291 return *this;
292 }
293
294 wxCharTypeBuffer& operator=(const wxCharTypeBuffer& src)
295 {
296 wxScopedCharTypeBuffer<T>::operator=(src);
297 return *this;
298 }
299
300 wxCharTypeBuffer(const wxScopedCharTypeBuffer<T>& src)
301 {
302 MakeOwnedCopyOf(src);
303 }
304
305 wxCharTypeBuffer& operator=(const wxScopedCharTypeBuffer<T>& src)
306 {
307 MakeOwnedCopyOf(src);
308 return *this;
309 }
310
311 bool extend(size_t len)
312 {
313 wxASSERT_MSG( this->m_data->m_owned, "cannot extend non-owned buffer" );
314 wxASSERT_MSG( this->m_data->m_ref == 1, "can't extend shared buffer" );
315
316 CharType *str =
317 (CharType *)realloc(this->data(), (len + 1) * sizeof(CharType));
318 if ( !str )
319 return false;
320
321 if ( this->m_data == this->GetNullData() )
322 {
323 this->m_data = new Data(str, len);
324 }
325 else
326 {
327 this->m_data->Set(str, len);
328 this->m_data->m_owned = true;
329 }
330
331 return true;
332 }
333
334 void shrink(size_t len)
335 {
336 wxASSERT_MSG( this->m_data->m_owned, "cannot shrink non-owned buffer" );
337 wxASSERT_MSG( this->m_data->m_ref == 1, "can't shrink shared buffer" );
338
339 wxASSERT( len <= this->length() );
340
341 this->m_data->m_length = len;
342 this->data()[len] = 0;
343 }
344 };
345
346 WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxScopedCharTypeBuffer<char> )
347 WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxCharTypeBuffer<char> )
348
349 class wxCharBuffer : public wxCharTypeBuffer<char>
350 {
351 public:
352 typedef wxCharTypeBuffer<char> wxCharTypeBufferBase;
353 typedef wxScopedCharTypeBuffer<char> wxScopedCharTypeBufferBase;
354
355 wxCharBuffer(const wxCharTypeBufferBase& buf)
356 : wxCharTypeBufferBase(buf) {}
357 wxCharBuffer(const wxScopedCharTypeBufferBase& buf)
358 : wxCharTypeBufferBase(buf) {}
359
360 wxCharBuffer(const CharType *str = NULL) : wxCharTypeBufferBase(str) {}
361 wxCharBuffer(size_t len) : wxCharTypeBufferBase(len) {}
362
363 wxCharBuffer(const wxCStrData& cstr);
364 };
365
366 #if wxUSE_WCHAR_T
367 WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxScopedCharTypeBuffer<wchar_t> )
368 WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxCharTypeBuffer<wchar_t> )
369
370 class wxWCharBuffer : public wxCharTypeBuffer<wchar_t>
371 {
372 public:
373 typedef wxCharTypeBuffer<wchar_t> wxCharTypeBufferBase;
374 typedef wxScopedCharTypeBuffer<wchar_t> wxScopedCharTypeBufferBase;
375
376 wxWCharBuffer(const wxCharTypeBufferBase& buf)
377 : wxCharTypeBufferBase(buf) {}
378 wxWCharBuffer(const wxScopedCharTypeBufferBase& buf)
379 : wxCharTypeBufferBase(buf) {}
380
381 wxWCharBuffer(const CharType *str = NULL) : wxCharTypeBufferBase(str) {}
382 wxWCharBuffer(size_t len) : wxCharTypeBufferBase(len) {}
383
384 wxWCharBuffer(const wxCStrData& cstr);
385 };
386 #endif // wxUSE_WCHAR_T
387
388 // wxCharTypeBuffer<T> implicitly convertible to T*
389 template <typename T>
390 class wxWritableCharTypeBuffer : public wxCharTypeBuffer<T>
391 {
392 public:
393 typedef typename wxScopedCharTypeBuffer<T>::CharType CharType;
394
395 wxWritableCharTypeBuffer(const wxScopedCharTypeBuffer<T>& src)
396 : wxCharTypeBuffer<T>(src) {}
397 // FIXME-UTF8: this won't be needed after converting mb_str()/wc_str() to
398 // always return a buffer
399 // + we should derive this class from wxScopedCharTypeBuffer
400 // then
401 wxWritableCharTypeBuffer(const CharType *str = NULL)
402 : wxCharTypeBuffer<T>(str) {}
403
404 operator CharType*() { return this->data(); }
405 };
406
407 typedef wxWritableCharTypeBuffer<char> wxWritableCharBuffer;
408 typedef wxWritableCharTypeBuffer<wchar_t> wxWritableWCharBuffer;
409
410
411 #if wxUSE_UNICODE
412 #define wxWxCharBuffer wxWCharBuffer
413
414 #define wxMB2WXbuf wxWCharBuffer
415 #define wxWX2MBbuf wxCharBuffer
416 #if wxUSE_UNICODE_WCHAR
417 #define wxWC2WXbuf wxChar*
418 #define wxWX2WCbuf wxChar*
419 #elif wxUSE_UNICODE_UTF8
420 #define wxWC2WXbuf wxWCharBuffer
421 #define wxWX2WCbuf wxWCharBuffer
422 #endif
423 #else // ANSI
424 #define wxWxCharBuffer wxCharBuffer
425
426 #define wxMB2WXbuf wxChar*
427 #define wxWX2MBbuf wxChar*
428 #define wxWC2WXbuf wxCharBuffer
429 #define wxWX2WCbuf wxWCharBuffer
430 #endif // Unicode/ANSI
431
432 // ----------------------------------------------------------------------------
433 // A class for holding growable data buffers (not necessarily strings)
434 // ----------------------------------------------------------------------------
435
436 // This class manages the actual data buffer pointer and is ref-counted.
437 class wxMemoryBufferData
438 {
439 public:
440 // the initial size and also the size added by ResizeIfNeeded()
441 enum { DefBufSize = 1024 };
442
443 friend class wxMemoryBuffer;
444
445 // everyting is private as it can only be used by wxMemoryBuffer
446 private:
447 wxMemoryBufferData(size_t size = wxMemoryBufferData::DefBufSize)
448 : m_data(size ? malloc(size) : NULL), m_size(size), m_len(0), m_ref(0)
449 {
450 }
451 ~wxMemoryBufferData() { free(m_data); }
452
453
454 void ResizeIfNeeded(size_t newSize)
455 {
456 if (newSize > m_size)
457 {
458 void *dataOld = m_data;
459 m_data = realloc(m_data, newSize + wxMemoryBufferData::DefBufSize);
460 if ( !m_data )
461 {
462 free(dataOld);
463 }
464
465 m_size = newSize + wxMemoryBufferData::DefBufSize;
466 }
467 }
468
469 void IncRef() { m_ref += 1; }
470 void DecRef()
471 {
472 m_ref -= 1;
473 if (m_ref == 0) // are there no more references?
474 delete this;
475 }
476
477
478 // the buffer containing the data
479 void *m_data;
480
481 // the size of the buffer
482 size_t m_size;
483
484 // the amount of data currently in the buffer
485 size_t m_len;
486
487 // the reference count
488 size_t m_ref;
489
490 wxDECLARE_NO_COPY_CLASS(wxMemoryBufferData);
491 };
492
493
494 class wxMemoryBuffer
495 {
496 public:
497 // ctor and dtor
498 wxMemoryBuffer(size_t size = wxMemoryBufferData::DefBufSize)
499 {
500 m_bufdata = new wxMemoryBufferData(size);
501 m_bufdata->IncRef();
502 }
503
504 ~wxMemoryBuffer() { m_bufdata->DecRef(); }
505
506
507 // copy and assignment
508 wxMemoryBuffer(const wxMemoryBuffer& src)
509 : m_bufdata(src.m_bufdata)
510 {
511 m_bufdata->IncRef();
512 }
513
514 wxMemoryBuffer& operator=(const wxMemoryBuffer& src)
515 {
516 if (&src != this)
517 {
518 m_bufdata->DecRef();
519 m_bufdata = src.m_bufdata;
520 m_bufdata->IncRef();
521 }
522 return *this;
523 }
524
525
526 // Accessors
527 void *GetData() const { return m_bufdata->m_data; }
528 size_t GetBufSize() const { return m_bufdata->m_size; }
529 size_t GetDataLen() const { return m_bufdata->m_len; }
530
531 void SetBufSize(size_t size) { m_bufdata->ResizeIfNeeded(size); }
532 void SetDataLen(size_t len)
533 {
534 wxASSERT(len <= m_bufdata->m_size);
535 m_bufdata->m_len = len;
536 }
537
538 // Ensure the buffer is big enough and return a pointer to it
539 void *GetWriteBuf(size_t sizeNeeded)
540 {
541 m_bufdata->ResizeIfNeeded(sizeNeeded);
542 return m_bufdata->m_data;
543 }
544
545 // Update the length after the write
546 void UngetWriteBuf(size_t sizeUsed) { SetDataLen(sizeUsed); }
547
548 // Like the above, but appends to the buffer
549 void *GetAppendBuf(size_t sizeNeeded)
550 {
551 m_bufdata->ResizeIfNeeded(m_bufdata->m_len + sizeNeeded);
552 return (char*)m_bufdata->m_data + m_bufdata->m_len;
553 }
554
555 // Update the length after the append
556 void UngetAppendBuf(size_t sizeUsed)
557 {
558 SetDataLen(m_bufdata->m_len + sizeUsed);
559 }
560
561 // Other ways to append to the buffer
562 void AppendByte(char data)
563 {
564 wxCHECK_RET( m_bufdata->m_data, wxT("invalid wxMemoryBuffer") );
565
566 m_bufdata->ResizeIfNeeded(m_bufdata->m_len + 1);
567 *(((char*)m_bufdata->m_data) + m_bufdata->m_len) = data;
568 m_bufdata->m_len += 1;
569 }
570
571 void AppendData(const void *data, size_t len)
572 {
573 memcpy(GetAppendBuf(len), data, len);
574 UngetAppendBuf(len);
575 }
576
577 operator const char *() const { return (const char*)GetData(); }
578
579 private:
580 wxMemoryBufferData* m_bufdata;
581 };
582
583 // ----------------------------------------------------------------------------
584 // template class for any kind of data
585 // ----------------------------------------------------------------------------
586
587 // TODO
588
589 #endif // _WX_BUFFER_H