X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/817270659e986de1b243586d8eb6ad3a76c87480..f9d6e4e454ac06b3303c71081b289152c8867ec1:/include/wx/buffer.h diff --git a/include/wx/buffer.h b/include/wx/buffer.h index 81184c7705..346ef113f9 100644 --- a/include/wx/buffer.h +++ b/include/wx/buffer.h @@ -12,14 +12,14 @@ #ifndef _WX_BUFFER_H #define _WX_BUFFER_H -#include "wx/wxchar.h" +#include "wx/chartype.h" +#include "wx/wxcrtbase.h" +#ifndef __WXPALMOS5__ #include // malloc() and free() +#endif // ! __WXPALMOS5__ -inline char *wxStrDup(const char *s) { return wxStrdupA(s); } -#if wxUSE_WCHAR_T - inline wchar_t *wxStrDup(const wchar_t *ws) { return wxStrdupW(ws); } -#endif +class WXDLLIMPEXP_FWD_BASE wxCStrData; // ---------------------------------------------------------------------------- // Special classes for (wide) character strings: they use malloc/free instead @@ -27,24 +27,38 @@ inline char *wxStrDup(const char *s) { return wxStrdupA(s); } // ---------------------------------------------------------------------------- template -class wxCharTypeBuffer +class WXDLLIMPEXP_BASE wxCharTypeBuffer { public: typedef T CharType; wxCharTypeBuffer(const CharType *str = NULL) - : m_str(str ? wxStrDup(str) : NULL) + : m_str(str ? wxStrdup(str) : NULL), + m_owned(true) { } wxCharTypeBuffer(size_t len) - : m_str((CharType *)malloc((len + 1)*sizeof(CharType))) + : m_str((CharType *)malloc((len + 1)*sizeof(CharType))), + m_owned(true) { m_str[len] = (CharType)0; } + static const wxCharTypeBuffer CreateNonOwned(const CharType *str) + { + wxCharTypeBuffer buf; + buf.m_str = wx_const_cast(CharType*, str); + buf.m_owned = false; + return buf; + } + /* no need to check for NULL, free() does it */ - ~wxCharTypeBuffer() { free(m_str); } + ~wxCharTypeBuffer() + { + if ( m_owned) + free(m_str); + } /* WARNING: @@ -55,7 +69,7 @@ public: a) it shouldn't be really const b) you shouldn't use it afterwards (or know that it was reset) - This is very ugly but is unfortunately needed to make the normal use\ + This is very ugly but is unfortunately needed to make the normal use of wxCharTypeBuffer buffer objects possible and is very similar to what std::auto_ptr<> does (as if it were an excuse...) */ @@ -66,39 +80,46 @@ public: */ CharType *release() const { - CharType *p = m_str; - ((wxCharTypeBuffer *)this)->m_str = NULL; - return p; + wxASSERT_MSG( m_owned, _T("can't release non-owned buffer") ); + return DoRelease(); } void reset() { - free(m_str); + if ( m_owned ) + free(m_str); m_str = NULL; } wxCharTypeBuffer(const wxCharTypeBuffer& src) - : m_str(src.release()) { + CopyFrom(src); } wxCharTypeBuffer& operator=(const CharType *str) { - free(m_str); - m_str = str ? wxStrDup(str) : NULL; + if ( m_owned ) + free(m_str); + m_str = str ? wxStrdup(str) : NULL; + m_owned = true; return *this; } wxCharTypeBuffer& operator=(const wxCharTypeBuffer& src) { - free(m_str); - m_str = src.release(); - + if (&src != this) + { + if ( m_owned ) + free(m_str); + CopyFrom(src); + } return *this; } bool extend(size_t len) { + wxASSERT_MSG( m_owned, _T("cannot extend non-owned buffer") ); + CharType * str = (CharType *)realloc(m_str, (len + 1)*sizeof(CharType)); if ( !str ) @@ -114,15 +135,36 @@ public: operator const CharType *() const { return m_str; } CharType operator[](size_t n) const { return m_str[n]; } + +private: + CharType *DoRelease() const + { + CharType *p = m_str; + ((wxCharTypeBuffer *)this)->m_str = NULL; + return p; + } + + void CopyFrom(const wxCharTypeBuffer& src) + { + m_owned = src.m_owned; + m_str = src.DoRelease(); + } + private: CharType *m_str; + bool m_owned; }; +WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxCharTypeBuffer ) + class WXDLLIMPEXP_BASE wxCharBuffer : public wxCharTypeBuffer { public: typedef wxCharTypeBuffer wxCharTypeBufferBase; + wxCharBuffer(const wxCharTypeBufferBase& buf) + : wxCharTypeBufferBase(buf) {} + wxCharBuffer(const CharType *str = NULL) : wxCharTypeBufferBase(str) {} wxCharBuffer(size_t len) : wxCharTypeBufferBase(len) {} @@ -130,11 +172,16 @@ public: }; #if wxUSE_WCHAR_T +WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxCharTypeBuffer ) + class WXDLLIMPEXP_BASE wxWCharBuffer : public wxCharTypeBuffer { public: typedef wxCharTypeBuffer wxCharTypeBufferBase; + wxWCharBuffer(const wxCharTypeBufferBase& buf) + : wxCharTypeBufferBase(buf) {} + wxWCharBuffer(const CharType *str = NULL) : wxCharTypeBufferBase(str) {} wxWCharBuffer(size_t len) : wxCharTypeBufferBase(len) {} @@ -184,6 +231,13 @@ typedef wxWritableCharTypeBuffer wxWritableWCharBuffer; #define wxWX2WCbuf wxWCharBuffer #endif // Unicode/ANSI +// type of the value returned by wxString::utf8_str() +#if wxUSE_UNICODE_UTF8 + #define wxUTF8Buf char * +#else + #define wxUTF8Buf wxCharBuffer +#endif + // ---------------------------------------------------------------------------- // A class for holding growable data buffers (not necessarily strings) // ---------------------------------------------------------------------------- @@ -246,7 +300,7 @@ private: }; -class wxMemoryBuffer +class WXDLLIMPEXP_BASE wxMemoryBuffer { public: // ctor and dtor @@ -268,9 +322,12 @@ public: wxMemoryBuffer& operator=(const wxMemoryBuffer& src) { - m_bufdata->DecRef(); - m_bufdata = src.m_bufdata; - m_bufdata->IncRef(); + if (&src != this) + { + m_bufdata->DecRef(); + m_bufdata = src.m_bufdata; + m_bufdata->IncRef(); + } return *this; }