1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: auto buffer classes: buffers which automatically free memory
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
15 #include "wx/chartype.h"
16 #include "wx/wxcrtbase.h"
18 #include <stdlib.h> // malloc() and free()
20 class WXDLLIMPEXP_FWD_BASE wxCStrData
;
22 // ----------------------------------------------------------------------------
23 // Special classes for (wide) character strings: they use malloc/free instead
25 // ----------------------------------------------------------------------------
27 // helpers used by wxCharTypeBuffer
31 struct UntypedBufferData
39 UntypedBufferData(void *str
, size_t len
, Kind kind
= Owned
)
40 : m_str(str
), m_length(len
), m_ref(1), m_owned(kind
== Owned
) {}
51 // "short" to have sizeof(Data)=12 on 32bit archs
57 // NB: this is defined in string.cpp and not the (non-existent) buffer.cpp
58 WXDLLIMPEXP_BASE UntypedBufferData
* GetUntypedNullData();
60 } // namespace wxPrivate
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.
67 class wxScopedCharTypeBuffer
72 wxScopedCharTypeBuffer()
74 m_data
= GetNullData();
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
81 const wxScopedCharTypeBuffer
CreateNonOwned(const CharType
*str
,
82 size_t len
= wxNO_LEN
)
84 if ( len
== wxNO_LEN
)
87 wxScopedCharTypeBuffer buf
;
89 buf
.m_data
= new Data(const_cast<CharType
*>(str
), len
, Data::NonOwned
);
93 // Creates "owned" buffer, i.e. takes over ownership of 'str' and frees it
94 // in dtor (if ref.count reaches 0).
96 const wxScopedCharTypeBuffer
CreateOwned(CharType
*str
,
97 size_t len
= wxNO_LEN
)
99 if ( len
== wxNO_LEN
)
102 wxScopedCharTypeBuffer buf
;
104 buf
.m_data
= new Data(str
, len
);
108 wxScopedCharTypeBuffer(const wxScopedCharTypeBuffer
& src
)
114 wxScopedCharTypeBuffer
& operator=(const wxScopedCharTypeBuffer
& src
)
126 ~wxScopedCharTypeBuffer()
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
136 if ( m_data
== GetNullData() )
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") );
142 CharType
* const p
= m_data
->Get();
144 wxScopedCharTypeBuffer
*self
= const_cast<wxScopedCharTypeBuffer
*>(this);
145 self
->m_data
->Set(NULL
, 0);
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
]; }
161 size_t length() const { return m_data
->m_length
; }
164 // reference-counted data
165 struct Data
: public wxPrivate::UntypedBufferData
167 Data(CharType
*str
, size_t len
, Kind kind
= Owned
)
168 : wxPrivate::UntypedBufferData(str
, len
, kind
)
172 CharType
*Get() const { return static_cast<CharType
*>(m_str
); }
173 void Set(CharType
*str
, size_t len
)
180 // placeholder for NULL string, to simplify this code
181 static Data
*GetNullData()
183 return static_cast<Data
*>(wxPrivate::GetUntypedNullData());
188 if ( m_data
== GetNullData() ) // exception, not ref-counted
195 if ( m_data
== GetNullData() ) // exception, not ref-counted
197 if ( --m_data
->m_ref
== 0 )
199 m_data
= GetNullData();
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
)
208 if ( src
.m_data
== this->GetNullData() )
210 this->m_data
= this->GetNullData();
212 else if ( src
.m_data
->m_owned
)
214 this->m_data
= src
.m_data
;
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
222 this->m_data
= new Data
224 StrCopy(src
.data(), src
.length()),
230 static CharType
*StrCopy(const CharType
*src
, size_t len
)
232 CharType
*dst
= (CharType
*)malloc(sizeof(CharType
) * (len
+ 1));
234 memcpy(dst
, src
, sizeof(CharType
) * (len
+ 1));
242 typedef wxScopedCharTypeBuffer
<char> wxScopedCharBuffer
;
243 typedef wxScopedCharTypeBuffer
<wchar_t> wxScopedWCharBuffer
;
246 // this buffer class always stores data in "owned" (persistent) manner
247 template <typename T
>
248 class wxCharTypeBuffer
: public wxScopedCharTypeBuffer
<T
>
251 typedef typename wxScopedCharTypeBuffer
<T
>::Data Data
;
256 wxCharTypeBuffer(const CharType
*str
= NULL
, size_t len
= wxNO_LEN
)
260 if ( len
== wxNO_LEN
)
262 this->m_data
= new Data(this->StrCopy(str
, len
), len
);
266 this->m_data
= this->GetNullData();
270 wxCharTypeBuffer(size_t len
)
273 new Data((CharType
*)malloc((len
+ 1)*sizeof(CharType
)), len
);
274 this->m_data
->Get()[len
] = (CharType
)0;
277 wxCharTypeBuffer(const wxCharTypeBuffer
& src
)
278 : wxScopedCharTypeBuffer
<T
>(src
) {}
280 wxCharTypeBuffer
& operator=(const CharType
*str
)
285 this->m_data
= new Data(wxStrdup(str
), wxStrlen(str
));
289 wxCharTypeBuffer
& operator=(const wxCharTypeBuffer
& src
)
291 wxScopedCharTypeBuffer
<T
>::operator=(src
);
295 wxCharTypeBuffer(const wxScopedCharTypeBuffer
<T
>& src
)
297 this->MakeOwnedCopyOf(src
);
300 wxCharTypeBuffer
& operator=(const wxScopedCharTypeBuffer
<T
>& src
)
302 MakeOwnedCopyOf(src
);
306 bool extend(size_t len
)
308 wxASSERT_MSG( this->m_data
->m_owned
, "cannot extend non-owned buffer" );
309 wxASSERT_MSG( this->m_data
->m_ref
== 1, "can't extend shared buffer" );
312 (CharType
*)realloc(this->data(), (len
+ 1) * sizeof(CharType
));
316 // For consistency with the ctor taking just the length, NUL-terminate
318 str
[len
] = (CharType
)0;
320 if ( this->m_data
== this->GetNullData() )
322 this->m_data
= new Data(str
, len
);
326 this->m_data
->Set(str
, len
);
327 this->m_data
->m_owned
= true;
333 void shrink(size_t len
)
335 wxASSERT_MSG( this->m_data
->m_owned
, "cannot shrink non-owned buffer" );
336 wxASSERT_MSG( this->m_data
->m_ref
== 1, "can't shrink shared buffer" );
338 wxASSERT( len
<= this->length() );
340 this->m_data
->m_length
= len
;
341 this->data()[len
] = 0;
345 WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxScopedCharTypeBuffer
<char> )
346 WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxCharTypeBuffer
<char> )
348 class wxCharBuffer
: public wxCharTypeBuffer
<char>
351 typedef wxCharTypeBuffer
<char> wxCharTypeBufferBase
;
352 typedef wxScopedCharTypeBuffer
<char> wxScopedCharTypeBufferBase
;
354 wxCharBuffer(const wxCharTypeBufferBase
& buf
)
355 : wxCharTypeBufferBase(buf
) {}
356 wxCharBuffer(const wxScopedCharTypeBufferBase
& buf
)
357 : wxCharTypeBufferBase(buf
) {}
359 wxCharBuffer(const CharType
*str
= NULL
) : wxCharTypeBufferBase(str
) {}
360 wxCharBuffer(size_t len
) : wxCharTypeBufferBase(len
) {}
362 wxCharBuffer(const wxCStrData
& cstr
);
365 WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxScopedCharTypeBuffer
<wchar_t> )
366 WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxCharTypeBuffer
<wchar_t> )
368 class wxWCharBuffer
: public wxCharTypeBuffer
<wchar_t>
371 typedef wxCharTypeBuffer
<wchar_t> wxCharTypeBufferBase
;
372 typedef wxScopedCharTypeBuffer
<wchar_t> wxScopedCharTypeBufferBase
;
374 wxWCharBuffer(const wxCharTypeBufferBase
& buf
)
375 : wxCharTypeBufferBase(buf
) {}
376 wxWCharBuffer(const wxScopedCharTypeBufferBase
& buf
)
377 : wxCharTypeBufferBase(buf
) {}
379 wxWCharBuffer(const CharType
*str
= NULL
) : wxCharTypeBufferBase(str
) {}
380 wxWCharBuffer(size_t len
) : wxCharTypeBufferBase(len
) {}
382 wxWCharBuffer(const wxCStrData
& cstr
);
385 // wxCharTypeBuffer<T> implicitly convertible to T*
386 template <typename T
>
387 class wxWritableCharTypeBuffer
: public wxCharTypeBuffer
<T
>
390 typedef typename wxScopedCharTypeBuffer
<T
>::CharType CharType
;
392 wxWritableCharTypeBuffer(const wxScopedCharTypeBuffer
<T
>& src
)
393 : wxCharTypeBuffer
<T
>(src
) {}
394 // FIXME-UTF8: this won't be needed after converting mb_str()/wc_str() to
395 // always return a buffer
396 // + we should derive this class from wxScopedCharTypeBuffer
398 wxWritableCharTypeBuffer(const CharType
*str
= NULL
)
399 : wxCharTypeBuffer
<T
>(str
) {}
401 operator CharType
*() { return this->data(); }
404 typedef wxWritableCharTypeBuffer
<char> wxWritableCharBuffer
;
405 typedef wxWritableCharTypeBuffer
<wchar_t> wxWritableWCharBuffer
;
409 #define wxWxCharBuffer wxWCharBuffer
411 #define wxMB2WXbuf wxWCharBuffer
412 #define wxWX2MBbuf wxCharBuffer
413 #if wxUSE_UNICODE_WCHAR
414 #define wxWC2WXbuf wxChar*
415 #define wxWX2WCbuf wxChar*
416 #elif wxUSE_UNICODE_UTF8
417 #define wxWC2WXbuf wxWCharBuffer
418 #define wxWX2WCbuf wxWCharBuffer
421 #define wxWxCharBuffer wxCharBuffer
423 #define wxMB2WXbuf wxChar*
424 #define wxWX2MBbuf wxChar*
425 #define wxWC2WXbuf wxCharBuffer
426 #define wxWX2WCbuf wxWCharBuffer
427 #endif // Unicode/ANSI
429 // ----------------------------------------------------------------------------
430 // A class for holding growable data buffers (not necessarily strings)
431 // ----------------------------------------------------------------------------
433 // This class manages the actual data buffer pointer and is ref-counted.
434 class wxMemoryBufferData
437 // the initial size and also the size added by ResizeIfNeeded()
438 enum { DefBufSize
= 1024 };
440 friend class wxMemoryBuffer
;
442 // everything is private as it can only be used by wxMemoryBuffer
444 wxMemoryBufferData(size_t size
= wxMemoryBufferData::DefBufSize
)
445 : m_data(size
? malloc(size
) : NULL
), m_size(size
), m_len(0), m_ref(0)
448 ~wxMemoryBufferData() { free(m_data
); }
451 void ResizeIfNeeded(size_t newSize
)
453 if (newSize
> m_size
)
455 void *dataOld
= m_data
;
456 m_data
= realloc(m_data
, newSize
+ wxMemoryBufferData::DefBufSize
);
462 m_size
= newSize
+ wxMemoryBufferData::DefBufSize
;
466 void IncRef() { m_ref
+= 1; }
470 if (m_ref
== 0) // are there no more references?
476 if ( m_data
== NULL
)
479 wxASSERT_MSG( m_ref
== 1, "can't release shared buffer" );
490 // the buffer containing the data
493 // the size of the buffer
496 // the amount of data currently in the buffer
499 // the reference count
502 wxDECLARE_NO_COPY_CLASS(wxMemoryBufferData
);
510 wxMemoryBuffer(size_t size
= wxMemoryBufferData::DefBufSize
)
512 m_bufdata
= new wxMemoryBufferData(size
);
516 ~wxMemoryBuffer() { m_bufdata
->DecRef(); }
519 // copy and assignment
520 wxMemoryBuffer(const wxMemoryBuffer
& src
)
521 : m_bufdata(src
.m_bufdata
)
526 wxMemoryBuffer
& operator=(const wxMemoryBuffer
& src
)
531 m_bufdata
= src
.m_bufdata
;
539 void *GetData() const { return m_bufdata
->m_data
; }
540 size_t GetBufSize() const { return m_bufdata
->m_size
; }
541 size_t GetDataLen() const { return m_bufdata
->m_len
; }
543 bool IsEmpty() const { return GetDataLen() == 0; }
545 void SetBufSize(size_t size
) { m_bufdata
->ResizeIfNeeded(size
); }
546 void SetDataLen(size_t len
)
548 wxASSERT(len
<= m_bufdata
->m_size
);
549 m_bufdata
->m_len
= len
;
552 void Clear() { SetDataLen(0); }
554 // Ensure the buffer is big enough and return a pointer to it
555 void *GetWriteBuf(size_t sizeNeeded
)
557 m_bufdata
->ResizeIfNeeded(sizeNeeded
);
558 return m_bufdata
->m_data
;
561 // Update the length after the write
562 void UngetWriteBuf(size_t sizeUsed
) { SetDataLen(sizeUsed
); }
564 // Like the above, but appends to the buffer
565 void *GetAppendBuf(size_t sizeNeeded
)
567 m_bufdata
->ResizeIfNeeded(m_bufdata
->m_len
+ sizeNeeded
);
568 return (char*)m_bufdata
->m_data
+ m_bufdata
->m_len
;
571 // Update the length after the append
572 void UngetAppendBuf(size_t sizeUsed
)
574 SetDataLen(m_bufdata
->m_len
+ sizeUsed
);
577 // Other ways to append to the buffer
578 void AppendByte(char data
)
580 wxCHECK_RET( m_bufdata
->m_data
, wxT("invalid wxMemoryBuffer") );
582 m_bufdata
->ResizeIfNeeded(m_bufdata
->m_len
+ 1);
583 *(((char*)m_bufdata
->m_data
) + m_bufdata
->m_len
) = data
;
584 m_bufdata
->m_len
+= 1;
587 void AppendData(const void *data
, size_t len
)
589 memcpy(GetAppendBuf(len
), data
, len
);
593 operator const char *() const { return (const char*)GetData(); }
595 // gives up ownership of data, returns the pointer; after this call,
596 // data isn't freed by the buffer and its content is resent to empty
599 return m_bufdata
->release();
603 wxMemoryBufferData
* m_bufdata
;
606 // ----------------------------------------------------------------------------
607 // template class for any kind of data
608 // ----------------------------------------------------------------------------
612 #endif // _WX_BUFFER_H