]> git.saurik.com Git - wxWidgets.git/blame - src/common/ipcbase.cpp
moving all dataview files to advanced
[wxWidgets.git] / src / common / ipcbase.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
8898456d 2// Name: src/common/ipcbase.cpp
c801d85f
KB
3// Purpose: IPC base classes
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
55d99c7a 8// Copyright: (c) Julian Smart
7beb59f3 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
c801d85f
KB
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
8898456d 16 #pragma hdrstop
c801d85f
KB
17#endif
18
19#ifndef WX_PRECOMP
c801d85f
KB
20#endif
21
22#include "wx/ipcbase.h"
23
c801d85f
KB
24IMPLEMENT_CLASS(wxServerBase, wxObject)
25IMPLEMENT_CLASS(wxClientBase, wxObject)
26IMPLEMENT_CLASS(wxConnectionBase, wxObject)
c801d85f 27
50c549b9
VZ
28wxConnectionBase::wxConnectionBase(void *buffer, size_t bytes)
29 : m_buffer((char *)buffer),
9d860992 30 m_buffersize(bytes),
50c549b9
VZ
31 m_deletebufferwhendone(false),
32 m_connected(true)
44379ce6 33{
50c549b9 34 if ( buffer == NULL )
44379ce6
JS
35 { // behave like next constructor
36 m_buffersize = 0;
7beb59f3 37 m_deletebufferwhendone = true;
44379ce6
JS
38 }
39}
40
41wxConnectionBase::wxConnectionBase()
50c549b9 42 : m_buffer(NULL),
bbcd408a 43 m_buffersize(0),
50c549b9
VZ
44 m_deletebufferwhendone(true),
45 m_connected(true)
44379ce6
JS
46{
47}
48
fbfb8bcc 49wxConnectionBase::wxConnectionBase(const wxConnectionBase& copy)
60431236 50 : wxObject(),
bbcd408a
JS
51 m_buffer(copy.m_buffer),
52 m_buffersize(copy.m_buffersize),
50c549b9
VZ
53 m_deletebufferwhendone(false),
54 m_connected(copy.m_connected)
bbcd408a 55
44379ce6
JS
56{
57 // copy constructor would require ref-counted pointer to buffer
58 wxFAIL_MSG( _T("Copy constructor of wxConnectionBase not implemented") );
59}
60
61
022a8a5a 62wxConnectionBase::~wxConnectionBase()
44379ce6 63{
022a8a5a 64 if ( m_deletebufferwhendone )
45633789 65 delete [] m_buffer;
44379ce6
JS
66}
67
022a8a5a
VZ
68/* static */
69wxString wxConnectionBase::GetTextFromData(const void* data,
70 size_t size,
71 wxIPCFormat fmt)
72{
73 wxString s;
74 switch ( fmt )
75 {
76 case wxIPC_TEXT:
77 // normally the string should be NUL-terminated and size should
78 // include the total size of the buffer, including NUL -- but don't
79 // crash (by trying to access (size_t)-1 bytes) if it doesn't
80 if ( size )
81 size--;
82
5c33522f 83 s = wxString(static_cast<const char *>(data), size);
022a8a5a
VZ
84 break;
85
86#if wxUSE_UNICODE
87 // TODO: we should handle both wxIPC_UTF16TEXT and wxIPC_UTF32TEXT here
88 // for inter-platform IPC
89 case wxIPC_UNICODETEXT:
90 wxASSERT_MSG( !(size % sizeof(wchar_t)), "invalid buffer size" );
91 if ( size )
92 {
93 size /= sizeof(wchar_t);
94 size--;
95 }
96
5c33522f 97 s = wxString(static_cast<const wchar_t *>(data), size);
022a8a5a
VZ
98 break;
99
100 case wxIPC_UTF8TEXT:
101 if ( size )
102 size--;
103
5c33522f 104 s = wxString::FromUTF8(static_cast<const char *>(data), size);
022a8a5a
VZ
105 break;
106#endif // wxUSE_UNICODE
107
108 default:
109 wxFAIL_MSG( "non-string IPC format in GetTextFromData()" );
110 }
111
112 return s;
113}
114
50c549b9 115void *wxConnectionBase::GetBufferAtLeast( size_t bytes )
44379ce6
JS
116{
117 if ( m_buffersize >= bytes )
118 return m_buffer;
119 else
120 { // need to resize buffer
121 if ( m_deletebufferwhendone )
122 { // we're in charge of buffer, increase it
45633789 123 delete [] m_buffer;
50c549b9 124 m_buffer = new char[bytes];
44379ce6
JS
125 m_buffersize = bytes;
126 return m_buffer;
127 } // user-supplied buffer, fail
128 else
129 return NULL;
130 }
131}