git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59927
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
- UntypedBufferData(void *str, Kind kind = Owned)
- : m_str(str), m_ref(1), m_owned(kind == Owned) {}
+ UntypedBufferData(void *str, size_t len, Kind kind = Owned)
+ : m_str(str), m_length(len), m_ref(1), m_owned(kind == Owned) {}
- // "short" to have sizeof(Data)=8 on 32bit archs
+ // "short" to have sizeof(Data)=12 on 32bit archs
unsigned short m_ref;
bool m_owned;
unsigned short m_ref;
bool m_owned;
// Creates "non-owned" buffer, i.e. 'str' is not owned by the buffer
// and doesn't get freed by dtor. Used e.g. to point to wxString's internal
// storage.
// Creates "non-owned" buffer, i.e. 'str' is not owned by the buffer
// and doesn't get freed by dtor. Used e.g. to point to wxString's internal
// storage.
- static const wxScopedCharTypeBuffer CreateNonOwned(const CharType *str)
+ static
+ const wxScopedCharTypeBuffer CreateNonOwned(const CharType *str,
+ size_t len = wxNO_LEN)
+ if ( len == wxNO_LEN )
+ len = wxStrlen(str);
+
wxScopedCharTypeBuffer buf;
if ( str )
wxScopedCharTypeBuffer buf;
if ( str )
- buf.m_data = new Data(const_cast<CharType*>(str), Data::NonOwned);
+ buf.m_data = new Data(const_cast<CharType*>(str), len, Data::NonOwned);
return buf;
}
// Creates "owned" buffer, i.e. takes over ownership of 'str' and frees it
// in dtor (if ref.count reaches 0).
return buf;
}
// Creates "owned" buffer, i.e. takes over ownership of 'str' and frees it
// in dtor (if ref.count reaches 0).
- static const wxScopedCharTypeBuffer CreateOwned(const CharType *str)
+ static
+ const wxScopedCharTypeBuffer CreateOwned(const CharType *str,
+ size_t len = wxNO_LEN )
+ if ( len == wxNO_LEN )
+ len = wxStrlen(str);
+
wxScopedCharTypeBuffer buf;
if ( str )
wxScopedCharTypeBuffer buf;
if ( str )
- buf.m_data = new Data(wxStrdup(str));
+ buf.m_data = new Data(StrCopy(str, len), len);
CharType * const p = m_data->Get();
wxScopedCharTypeBuffer *self = const_cast<wxScopedCharTypeBuffer*>(this);
CharType * const p = m_data->Get();
wxScopedCharTypeBuffer *self = const_cast<wxScopedCharTypeBuffer*>(this);
- self->m_data->Set(NULL);
+ self->m_data->Set(NULL, 0);
self->DecRef();
return p;
self->DecRef();
return p;
operator const CharType *() const { return data(); }
CharType operator[](size_t n) const { return data()[n]; }
operator const CharType *() const { return data(); }
CharType operator[](size_t n) const { return data()[n]; }
+ size_t length() const { return m_data->m_length; }
+
protected:
// reference-counted data
struct Data : public wxPrivate::UntypedBufferData
{
protected:
// reference-counted data
struct Data : public wxPrivate::UntypedBufferData
{
- Data(CharType *str, Kind kind = Owned)
- : wxPrivate::UntypedBufferData(str, kind)
+ Data(CharType *str, size_t len, Kind kind = Owned)
+ : wxPrivate::UntypedBufferData(str, len, kind)
{
}
CharType *Get() const { return static_cast<CharType *>(m_str); }
{
}
CharType *Get() const { return static_cast<CharType *>(m_str); }
- void Set(CharType *str) { m_str = str; }
+ void Set(CharType *str, size_t len)
+ {
+ m_str = str;
+ m_length = len;
+ }
};
// placeholder for NULL string, to simplify this code
};
// placeholder for NULL string, to simplify this code
// if the scoped buffer had non-owned data, we have to make
// a copy here, because src.m_data->m_str is valid only for as long
// as 'src' exists
// if the scoped buffer had non-owned data, we have to make
// a copy here, because src.m_data->m_str is valid only for as long
// as 'src' exists
- this->m_data = new Data(wxStrdup(src.m_data->Get()));
+ this->m_data = new Data
+ (
+ StrCopy(src.data(), src.length()),
+ src.length()
+ );
+ static CharType *StrCopy(const CharType *src, size_t len)
+ {
+ CharType *dst = (CharType*)malloc(sizeof(CharType) * (len + 1));
+ memcpy(dst, src, sizeof(CharType) * (len + 1));
+ return dst;
+ }
+
protected:
Data *m_data;
};
protected:
Data *m_data;
};
public:
typedef T CharType;
public:
typedef T CharType;
- wxCharTypeBuffer(const CharType *str = NULL)
+ wxCharTypeBuffer(const CharType *str = NULL, size_t len = wxNO_LEN)
- this->m_data = new Data(wxStrdup(str));
+ {
+ if ( len == wxNO_LEN )
+ len = wxStrlen(str);
+ this->m_data = new Data(StrCopy(str, len), len);
+ }
this->m_data = this->GetNullData();
this->m_data = this->GetNullData();
}
wxCharTypeBuffer(size_t len)
{
}
wxCharTypeBuffer(size_t len)
{
- this->m_data = new Data((CharType *)malloc((len + 1)*sizeof(CharType)));
+ this->m_data =
+ new Data((CharType *)malloc((len + 1)*sizeof(CharType)), len);
this->m_data->Get()[len] = (CharType)0;
}
this->m_data->Get()[len] = (CharType)0;
}
this->DecRef();
if ( str )
this->DecRef();
if ( str )
- this->m_data = new Data(wxStrdup(str));
+ this->m_data = new Data(wxStrdup(str), wxStrlen(str));
if ( this->m_data == this->GetNullData() )
{
if ( this->m_data == this->GetNullData() )
{
- this->m_data = new Data(str);
+ this->m_data = new Data(str, len);
- this->m_data->Set(str);
+ this->m_data->Set(str, len);
this->m_data->m_owned = true;
}
this->m_data->m_owned = true;
}
/* integer on success as failure indicator */
#define wxNOT_FOUND (-1)
/* integer on success as failure indicator */
#define wxNOT_FOUND (-1)
+/* the default value for some length parameters meaning that the string is */
+/* NUL-terminated */
+#define wxNO_LEN ((size_t)-1)
+
/* ---------------------------------------------------------------------------- */
/* macros dealing with comparison operators */
/* ---------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------- */
/* macros dealing with comparison operators */
/* ---------------------------------------------------------------------------- */
// the error value returned by wxMBConv methods
#define wxCONV_FAILED ((size_t)-1)
// the error value returned by wxMBConv methods
#define wxCONV_FAILED ((size_t)-1)
-// the default value for some length parameters meaning that the string is
-// NUL-terminated
-#define wxNO_LEN ((size_t)-1)
-
// ----------------------------------------------------------------------------
// wxMBConv (abstract base class for conversions)
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// wxMBConv (abstract base class for conversions)
// ----------------------------------------------------------------------------
if ( len )
*len = length();
if ( len )
*len = length();
- return wxCharTypeBuffer<T>::CreateNonOwned(wx_str());
+ return wxCharTypeBuffer<T>::CreateNonOwned(wx_str(), length());
#endif // Unicode build kind
}
#endif // Unicode build kind
}
{
static wxScopedWCharBuffer Get(const wxString& s, size_t *len)
{
{
static wxScopedWCharBuffer Get(const wxString& s, size_t *len)
{
+ const size_t length = s.length();
- *len = s.length();
- return wxScopedWCharBuffer::CreateNonOwned(s.wx_str());
+ *len = length;
+ return wxScopedWCharBuffer::CreateNonOwned(s.wx_str(), length);
{
static wxScopedCharBuffer Get(const wxString& s, size_t *len)
{
{
static wxScopedCharBuffer Get(const wxString& s, size_t *len)
{
+ const size_t length = s.utf8_length();
- *len = s.utf8_length();
- return wxScopedCharBuffer::CreateNonOwned(s.wx_str());
+ *len = length;
+ return wxScopedCharBuffer::CreateNonOwned(s.wx_str(), length);
The buffer's destructor will not destroy @a str. The returned buffer's
data is valid only as long as @a str is valid.
The buffer's destructor will not destroy @a str. The returned buffer's
data is valid only as long as @a str is valid.
+
+ @param str String data.
+ @param len If specified, length of the string, otherwise the string
+ is considered to be NUL-terminated.
- static const wxScopedCharTypeBuffer CreateNonOwned(const CharType *str);
+ static const wxScopedCharTypeBuffer CreateNonOwned(const CharType *str, size_t len = wxNO_LEN);
/**
Creates owned buffer from @a str and takes ownership of it.
The buffer's destructor will free @a str when its reference count
reaches zero (initial count is 1).
/**
Creates owned buffer from @a str and takes ownership of it.
The buffer's destructor will free @a str when its reference count
reaches zero (initial count is 1).
+
+ @param str String data.
+ @param len If specified, length of the string, otherwise the string
+ is considered to be NUL-terminated.
- static const wxScopedCharTypeBuffer CreateOwned(const CharType *str);
+ static const wxScopedCharTypeBuffer CreateOwned(const CharType *str, size_t len = wxNO_LEN);
/// Returns const pointer to the stored data.
const CharType *data() const;
/// Returns const pointer to the stored data.
const CharType *data() const;
+ /// Returns length of the string stored.
+ size_t length() const;
+
/// Implicit conversion to C string.
operator const CharType *() const;
/// Implicit conversion to C string.
operator const CharType *() const;
/**
Creates (owned) buffer from @a str and takes ownership of it.
/**
Creates (owned) buffer from @a str and takes ownership of it.
+ @param str String data.
+ @param len If specified, length of the string, otherwise the string
+ is considered to be NUL-terminated.
+
@see wxScopedCharTypeBuffer<T>::CreateOwned()
*/
@see wxScopedCharTypeBuffer<T>::CreateOwned()
*/
- wxCharTypeBuffer(const CharType *str = NULL);
+ wxCharTypeBuffer(const CharType *str = NULL, size_t len = wxNO_LEN);
}
#else // !wxUSE_UNICODE
// no need for conversion
}
#else // !wxUSE_UNICODE
// no need for conversion
- cbuf = wxCharBuffer::CreateNonOwned((char *)buf.GetData());
+ cbuf = wxCharBuffer::CreateNonOwned((char *)buf.GetData(), buf.GetDataLen());
#endif // wxUSE_UNICODE/!wxUSE_UNICODE
#endif // wxUSE_UNICODE/!wxUSE_UNICODE
-static UntypedBufferData s_untypedNullData(NULL);
+static UntypedBufferData s_untypedNullData(NULL, 0);
UntypedBufferData * const untypedNullDataPtr = &s_untypedNullData;
UntypedBufferData * const untypedNullDataPtr = &s_untypedNullData;
// we must pass the real string length to SubstrBufFromMB ctor
if ( nLength == npos )
nLength = psz ? strlen(psz) : 0;
// we must pass the real string length to SubstrBufFromMB ctor
if ( nLength == npos )
nLength = psz ? strlen(psz) : 0;
- return SubstrBufFromMB(wxCharBuffer::CreateNonOwned(psz), nLength);
+ return SubstrBufFromMB(wxCharBuffer::CreateNonOwned(psz, nLength),
+ nLength);
}
// else: do the roundtrip through wchar_t*
}
}
// else: do the roundtrip through wchar_t*
}
const wxScopedCharBuffer wxString::mb_str(const wxMBConv& conv) const
{
if ( conv.IsUTF8() )
const wxScopedCharBuffer wxString::mb_str(const wxMBConv& conv) const
{
if ( conv.IsUTF8() )
- return wxScopedCharBuffer::CreateNonOwned(m_impl.c_str());
+ return wxScopedCharBuffer::CreateNonOwned(m_impl.c_str(), m_impl.length());
// FIXME-UTF8: use wc_str() here once we have buffers with length
// FIXME-UTF8: use wc_str() here once we have buffers with length