1999-04-12 09:57:22 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: buffer.h
|
|
|
|
// Purpose: auto buffer classes: buffers which automatically free memory
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 12.04.99
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
|
|
|
// Licence: wxWindows license
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// these classes are for private use only for now, they're not documented
|
|
|
|
|
|
|
|
#ifndef _WX_BUFFER_H
|
|
|
|
#define _WX_BUFFER_H
|
|
|
|
|
1999-04-19 16:07:51 +00:00
|
|
|
#include "wx/wxchar.h"
|
1999-10-04 20:15:38 +00:00
|
|
|
|
1999-04-12 20:10:56 +00:00
|
|
|
#include <string.h> // strdup
|
1999-04-12 09:57:22 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Special classes for (wide) character strings: they use malloc/free instead
|
|
|
|
// of new/delete
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxCharBuffer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxCharBuffer(const char *str)
|
|
|
|
{
|
1999-10-08 14:35:56 +00:00
|
|
|
wxASSERT_MSG( str, wxT("NULL string in wxCharBuffer") );
|
1999-04-12 09:57:22 +00:00
|
|
|
|
|
|
|
m_str = str ? strdup(str) : (char *)NULL;
|
|
|
|
}
|
1999-04-12 20:10:56 +00:00
|
|
|
wxCharBuffer(size_t len)
|
|
|
|
{
|
|
|
|
m_str = (char *)malloc(len+1);
|
1999-10-04 20:15:38 +00:00
|
|
|
m_str[len] = '\0';
|
1999-04-12 20:10:56 +00:00
|
|
|
}
|
1999-04-12 09:57:22 +00:00
|
|
|
// no need to check for NULL, free() does it
|
|
|
|
~wxCharBuffer() { free(m_str); }
|
|
|
|
|
1999-04-12 20:10:56 +00:00
|
|
|
wxCharBuffer(const wxCharBuffer& src)
|
|
|
|
{
|
|
|
|
m_str = src.m_str;
|
|
|
|
// no reference count yet...
|
1999-04-18 00:18:39 +00:00
|
|
|
((wxCharBuffer*)&src)->m_str = (char *)NULL;
|
1999-04-12 20:10:56 +00:00
|
|
|
}
|
|
|
|
wxCharBuffer& operator=(const wxCharBuffer& src)
|
|
|
|
{
|
|
|
|
m_str = src.m_str;
|
|
|
|
// no reference count yet...
|
1999-04-18 00:18:39 +00:00
|
|
|
((wxCharBuffer*)&src)->m_str = (char *)NULL;
|
1999-04-12 20:10:56 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
1999-04-12 09:57:22 +00:00
|
|
|
operator const char *() const { return m_str; }
|
1999-04-22 00:31:06 +00:00
|
|
|
char operator[](size_t n) const { return m_str[n]; }
|
1999-04-12 09:57:22 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
char *m_str;
|
|
|
|
};
|
|
|
|
|
1999-04-20 11:05:16 +00:00
|
|
|
#if wxUSE_WCHAR_T
|
1999-04-12 09:57:22 +00:00
|
|
|
class wxWCharBuffer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxWCharBuffer(const wchar_t *wcs)
|
|
|
|
{
|
1999-10-08 14:35:56 +00:00
|
|
|
wxASSERT_MSG( wcs, wxT("NULL string in wxWCharBuffer") );
|
1999-04-12 09:57:22 +00:00
|
|
|
|
1999-04-19 16:07:51 +00:00
|
|
|
if (wcs) {
|
|
|
|
size_t siz = (wcslen(wcs)+1)*sizeof(wchar_t);
|
|
|
|
m_wcs = (wchar_t *)malloc(siz);
|
|
|
|
memcpy(m_wcs, wcs, siz);
|
|
|
|
}
|
|
|
|
else m_wcs = (wchar_t *)NULL;
|
1999-04-12 20:10:56 +00:00
|
|
|
}
|
|
|
|
wxWCharBuffer(size_t len)
|
|
|
|
{
|
|
|
|
m_wcs = (wchar_t *)malloc((len+1)*sizeof(wchar_t));
|
1999-10-04 20:15:38 +00:00
|
|
|
m_wcs[len] = L'\0';
|
1999-04-12 09:57:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// no need to check for NULL, free() does it
|
|
|
|
~wxWCharBuffer() { free(m_wcs); }
|
|
|
|
|
1999-04-12 20:10:56 +00:00
|
|
|
wxWCharBuffer(const wxWCharBuffer& src)
|
|
|
|
{
|
|
|
|
m_wcs = src.m_wcs;
|
|
|
|
// no reference count yet...
|
1999-04-18 00:20:20 +00:00
|
|
|
((wxWCharBuffer*)&src)->m_wcs = (wchar_t *)NULL;
|
1999-04-12 20:10:56 +00:00
|
|
|
}
|
|
|
|
wxWCharBuffer& operator=(const wxWCharBuffer& src)
|
|
|
|
{
|
|
|
|
m_wcs = src.m_wcs;
|
|
|
|
// no reference count yet...
|
1999-04-18 00:20:20 +00:00
|
|
|
((wxWCharBuffer*)&src)->m_wcs = (wchar_t *)NULL;
|
1999-04-12 20:10:56 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
1999-04-12 09:57:22 +00:00
|
|
|
operator const wchar_t *() const { return m_wcs; }
|
1999-04-22 00:31:06 +00:00
|
|
|
wchar_t operator[](size_t n) const { return m_wcs[n]; }
|
1999-10-04 20:15:38 +00:00
|
|
|
|
1999-04-12 09:57:22 +00:00
|
|
|
private:
|
|
|
|
wchar_t *m_wcs;
|
|
|
|
};
|
1999-04-20 11:05:16 +00:00
|
|
|
#endif
|
1999-04-12 09:57:22 +00:00
|
|
|
|
1999-04-12 20:10:56 +00:00
|
|
|
#if wxUSE_UNICODE
|
1999-10-04 20:15:38 +00:00
|
|
|
#define wxMB2WXbuf wxWCharBuffer
|
|
|
|
#define wxWX2MBbuf wxCharBuffer
|
|
|
|
#define wxWC2WXbuf wxChar*
|
|
|
|
#define wxWX2WCbuf wxChar*
|
|
|
|
#else // ANSI
|
|
|
|
#define wxMB2WXbuf wxChar*
|
|
|
|
#define wxWX2MBbuf wxChar*
|
|
|
|
#define wxWC2WXbuf wxCharBuffer
|
|
|
|
#define wxWX2WCbuf wxWCharBuffer
|
|
|
|
#endif // Unicode/ANSI
|
1999-04-12 20:10:56 +00:00
|
|
|
|
1999-04-12 09:57:22 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// template class for any kind of data
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
|
|
|
|
#endif // _WX_BUFFER_H
|