// Author: Vadim Zeitlin
// Modified by:
// Created: 12.04.99
-// RCS-ID: $Id$
// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
#include "wx/chartype.h"
#include "wx/wxcrtbase.h"
-#ifndef __WXPALMOS5__
#include <stdlib.h> // malloc() and free()
-#endif // ! __WXPALMOS5__
class WXDLLIMPEXP_FWD_BASE wxCStrData;
// 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,
+ const wxScopedCharTypeBuffer CreateOwned(CharType *str,
size_t len = wxNO_LEN )
{
if ( len == wxNO_LEN )
wxScopedCharTypeBuffer buf;
if ( str )
- buf.m_data = new Data(StrCopy(str, len), len);
+ buf.m_data = new Data(str, len);
return buf;
}
static CharType *StrCopy(const CharType *src, size_t len)
{
CharType *dst = (CharType*)malloc(sizeof(CharType) * (len + 1));
- memcpy(dst, src, sizeof(CharType) * (len + 1));
+ if ( dst )
+ memcpy(dst, src, sizeof(CharType) * (len + 1));
return dst;
}
{
if ( len == wxNO_LEN )
len = wxStrlen(str);
- this->m_data = new Data(StrCopy(str, len), len);
+ this->m_data = new Data(this->StrCopy(str, len), len);
}
else
{
wxCharTypeBuffer(const wxScopedCharTypeBuffer<T>& src)
{
- MakeOwnedCopyOf(src);
+ this->MakeOwnedCopyOf(src);
}
wxCharTypeBuffer& operator=(const wxScopedCharTypeBuffer<T>& src)
if ( !str )
return false;
+ // For consistency with the ctor taking just the length, NUL-terminate
+ // the buffer.
+ str[len] = (CharType)0;
+
if ( this->m_data == this->GetNullData() )
{
this->m_data = new Data(str, len);
friend class wxMemoryBuffer;
- // everyting is private as it can only be used by wxMemoryBuffer
+ // everything is private as it can only be used by wxMemoryBuffer
private:
wxMemoryBufferData(size_t size = wxMemoryBufferData::DefBufSize)
: m_data(size ? malloc(size) : NULL), m_size(size), m_len(0), m_ref(0)
size_t GetBufSize() const { return m_bufdata->m_size; }
size_t GetDataLen() const { return m_bufdata->m_len; }
+ bool IsEmpty() const { return GetDataLen() == 0; }
+
void SetBufSize(size_t size) { m_bufdata->ResizeIfNeeded(size); }
void SetDataLen(size_t len)
{
m_bufdata->m_len = len;
}
+ void Clear() { SetDataLen(0); }
+
// Ensure the buffer is big enough and return a pointer to it
void *GetWriteBuf(size_t sizeNeeded)
{