]> git.saurik.com Git - wxWidgets.git/blob - include/wx/buffer.h
added length to wx(Scoped)CharBuffer to improve handling of embedded NULs
[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, _T("can't release non-owned buffer") );
146 wxASSERT_MSG( m_data->m_ref == 1, _T("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
335 WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxCharTypeBuffer<char> )
336
337 class wxCharBuffer : public wxCharTypeBuffer<char>
338 {
339 public:
340 typedef wxCharTypeBuffer<char> wxCharTypeBufferBase;
341 typedef wxScopedCharTypeBuffer<char> wxScopedCharTypeBufferBase;
342
343 wxCharBuffer(const wxCharTypeBufferBase& buf)
344 : wxCharTypeBufferBase(buf) {}
345 wxCharBuffer(const wxScopedCharTypeBufferBase& buf)
346 : wxCharTypeBufferBase(buf) {}
347
348 wxCharBuffer(const CharType *str = NULL) : wxCharTypeBufferBase(str) {}
349 wxCharBuffer(size_t len) : wxCharTypeBufferBase(len) {}
350
351 wxCharBuffer(const wxCStrData& cstr);
352 };
353
354 #if wxUSE_WCHAR_T
355 WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxCharTypeBuffer<wchar_t> )
356
357 class wxWCharBuffer : public wxCharTypeBuffer<wchar_t>
358 {
359 public:
360 typedef wxCharTypeBuffer<wchar_t> wxCharTypeBufferBase;
361 typedef wxScopedCharTypeBuffer<wchar_t> wxScopedCharTypeBufferBase;
362
363 wxWCharBuffer(const wxCharTypeBufferBase& buf)
364 : wxCharTypeBufferBase(buf) {}
365 wxWCharBuffer(const wxScopedCharTypeBufferBase& buf)
366 : wxCharTypeBufferBase(buf) {}
367
368 wxWCharBuffer(const CharType *str = NULL) : wxCharTypeBufferBase(str) {}
369 wxWCharBuffer(size_t len) : wxCharTypeBufferBase(len) {}
370
371 wxWCharBuffer(const wxCStrData& cstr);
372 };
373 #endif // wxUSE_WCHAR_T
374
375 // wxCharTypeBuffer<T> implicitly convertible to T*
376 template <typename T>
377 class wxWritableCharTypeBuffer : public wxCharTypeBuffer<T>
378 {
379 public:
380 typedef typename wxScopedCharTypeBuffer<T>::CharType CharType;
381
382 wxWritableCharTypeBuffer(const wxScopedCharTypeBuffer<T>& src)
383 : wxCharTypeBuffer<T>(src) {}
384 // FIXME-UTF8: this won't be needed after converting mb_str()/wc_str() to
385 // always return a buffer
386 // + we should derive this class from wxScopedCharTypeBuffer
387 // then
388 wxWritableCharTypeBuffer(const CharType *str = NULL)
389 : wxCharTypeBuffer<T>(str) {}
390
391 operator CharType*() { return this->data(); }
392 };
393
394 typedef wxWritableCharTypeBuffer<char> wxWritableCharBuffer;
395 typedef wxWritableCharTypeBuffer<wchar_t> wxWritableWCharBuffer;
396
397
398 #if wxUSE_UNICODE
399 #define wxWxCharBuffer wxWCharBuffer
400
401 #define wxMB2WXbuf wxWCharBuffer
402 #define wxWX2MBbuf wxCharBuffer
403 #if wxUSE_UNICODE_WCHAR
404 #define wxWC2WXbuf wxChar*
405 #define wxWX2WCbuf wxChar*
406 #elif wxUSE_UNICODE_UTF8
407 #define wxWC2WXbuf wxWCharBuffer
408 #define wxWX2WCbuf wxWCharBuffer
409 #endif
410 #else // ANSI
411 #define wxWxCharBuffer wxCharBuffer
412
413 #define wxMB2WXbuf wxChar*
414 #define wxWX2MBbuf wxChar*
415 #define wxWC2WXbuf wxCharBuffer
416 #define wxWX2WCbuf wxWCharBuffer
417 #endif // Unicode/ANSI
418
419 // type of the value returned by wxString::utf8_str()
420 #if wxUSE_UNICODE_UTF8
421 #define wxUTF8Buf char *
422 #else
423 #define wxUTF8Buf wxCharBuffer
424 #endif
425
426 // ----------------------------------------------------------------------------
427 // A class for holding growable data buffers (not necessarily strings)
428 // ----------------------------------------------------------------------------
429
430 // This class manages the actual data buffer pointer and is ref-counted.
431 class wxMemoryBufferData
432 {
433 public:
434 // the initial size and also the size added by ResizeIfNeeded()
435 enum { DefBufSize = 1024 };
436
437 friend class wxMemoryBuffer;
438
439 // everyting is private as it can only be used by wxMemoryBuffer
440 private:
441 wxMemoryBufferData(size_t size = wxMemoryBufferData::DefBufSize)
442 : m_data(size ? malloc(size) : NULL), m_size(size), m_len(0), m_ref(0)
443 {
444 }
445 ~wxMemoryBufferData() { free(m_data); }
446
447
448 void ResizeIfNeeded(size_t newSize)
449 {
450 if (newSize > m_size)
451 {
452 void *dataOld = m_data;
453 m_data = realloc(m_data, newSize + wxMemoryBufferData::DefBufSize);
454 if ( !m_data )
455 {
456 free(dataOld);
457 }
458
459 m_size = newSize + wxMemoryBufferData::DefBufSize;
460 }
461 }
462
463 void IncRef() { m_ref += 1; }
464 void DecRef()
465 {
466 m_ref -= 1;
467 if (m_ref == 0) // are there no more references?
468 delete this;
469 }
470
471
472 // the buffer containing the data
473 void *m_data;
474
475 // the size of the buffer
476 size_t m_size;
477
478 // the amount of data currently in the buffer
479 size_t m_len;
480
481 // the reference count
482 size_t m_ref;
483
484 wxDECLARE_NO_COPY_CLASS(wxMemoryBufferData);
485 };
486
487
488 class wxMemoryBuffer
489 {
490 public:
491 // ctor and dtor
492 wxMemoryBuffer(size_t size = wxMemoryBufferData::DefBufSize)
493 {
494 m_bufdata = new wxMemoryBufferData(size);
495 m_bufdata->IncRef();
496 }
497
498 ~wxMemoryBuffer() { m_bufdata->DecRef(); }
499
500
501 // copy and assignment
502 wxMemoryBuffer(const wxMemoryBuffer& src)
503 : m_bufdata(src.m_bufdata)
504 {
505 m_bufdata->IncRef();
506 }
507
508 wxMemoryBuffer& operator=(const wxMemoryBuffer& src)
509 {
510 if (&src != this)
511 {
512 m_bufdata->DecRef();
513 m_bufdata = src.m_bufdata;
514 m_bufdata->IncRef();
515 }
516 return *this;
517 }
518
519
520 // Accessors
521 void *GetData() const { return m_bufdata->m_data; }
522 size_t GetBufSize() const { return m_bufdata->m_size; }
523 size_t GetDataLen() const { return m_bufdata->m_len; }
524
525 void SetBufSize(size_t size) { m_bufdata->ResizeIfNeeded(size); }
526 void SetDataLen(size_t len)
527 {
528 wxASSERT(len <= m_bufdata->m_size);
529 m_bufdata->m_len = len;
530 }
531
532 // Ensure the buffer is big enough and return a pointer to it
533 void *GetWriteBuf(size_t sizeNeeded)
534 {
535 m_bufdata->ResizeIfNeeded(sizeNeeded);
536 return m_bufdata->m_data;
537 }
538
539 // Update the length after the write
540 void UngetWriteBuf(size_t sizeUsed) { SetDataLen(sizeUsed); }
541
542 // Like the above, but appends to the buffer
543 void *GetAppendBuf(size_t sizeNeeded)
544 {
545 m_bufdata->ResizeIfNeeded(m_bufdata->m_len + sizeNeeded);
546 return (char*)m_bufdata->m_data + m_bufdata->m_len;
547 }
548
549 // Update the length after the append
550 void UngetAppendBuf(size_t sizeUsed)
551 {
552 SetDataLen(m_bufdata->m_len + sizeUsed);
553 }
554
555 // Other ways to append to the buffer
556 void AppendByte(char data)
557 {
558 wxCHECK_RET( m_bufdata->m_data, _T("invalid wxMemoryBuffer") );
559
560 m_bufdata->ResizeIfNeeded(m_bufdata->m_len + 1);
561 *(((char*)m_bufdata->m_data) + m_bufdata->m_len) = data;
562 m_bufdata->m_len += 1;
563 }
564
565 void AppendData(const void *data, size_t len)
566 {
567 memcpy(GetAppendBuf(len), data, len);
568 UngetAppendBuf(len);
569 }
570
571 operator const char *() const { return (const char*)GetData(); }
572
573 private:
574 wxMemoryBufferData* m_bufdata;
575 };
576
577 // ----------------------------------------------------------------------------
578 // template class for any kind of data
579 // ----------------------------------------------------------------------------
580
581 // TODO
582
583 #endif // _WX_BUFFER_H