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