]> git.saurik.com Git - wxWidgets.git/blob - include/wx/unix/private/sockunix.h
use void pointers, not char ones, in socket IO functions
[wxWidgets.git] / include / wx / unix / private / sockunix.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/unix/private/sockunix.h
3 // Purpose: wxSocketImpl implementation for Unix systems
4 // Authors: Guilhem Lavaux, Vadim Zeitlin
5 // Created: April 1997
6 // RCS-ID: $Id$
7 // Copyright: (c) 1997 Guilhem Lavaux
8 // (c) 2008 Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_UNIX_GSOCKUNX_H_
13 #define _WX_UNIX_GSOCKUNX_H_
14
15 #include <unistd.h>
16 #include <sys/ioctl.h>
17 #include "wx/private/fdiodispatcher.h"
18
19 class wxSocketImplUnix : public wxSocketImpl,
20 public wxFDIOHandler
21 {
22 public:
23 wxSocketImplUnix(wxSocketBase& wxsocket)
24 : wxSocketImpl(wxsocket)
25 {
26 m_fds[0] =
27 m_fds[1] = -1;
28
29 m_use_events = false;
30 m_enabledCallbacks = 0;
31 }
32
33 virtual void Shutdown();
34 virtual wxSocketImpl *WaitConnection(wxSocketBase& wxsocket);
35
36 int Read(void *buffer, int size);
37 int Write(const void *buffer, int size);
38 //attach or detach from main loop
39 void Notify(bool flag);
40
41 // wxFDIOHandler methods
42 virtual void OnReadWaiting();
43 virtual void OnWriteWaiting();
44 virtual void OnExceptionWaiting();
45
46 // Unix-specific functions
47 bool HasAnyEnabledCallbacks() const { return m_enabledCallbacks != 0; }
48 void EnableCallback(wxFDIODispatcherEntryFlags flag)
49 { m_enabledCallbacks |= flag; }
50 void DisableCallback(wxFDIODispatcherEntryFlags flag)
51 { m_enabledCallbacks &= ~flag; }
52 int GetEnabledCallbacks() const { return m_enabledCallbacks; }
53
54 private:
55 virtual wxSocketError DoHandleConnect(int ret);
56 virtual void DoClose()
57 {
58 wxSocketManager * const manager = wxSocketManager::Get();
59 if ( manager )
60 {
61 manager->Uninstall_Callback(this, wxSOCKET_INPUT);
62 manager->Uninstall_Callback(this, wxSOCKET_OUTPUT);
63 }
64
65 close(m_fd);
66 }
67
68 virtual void UnblockAndRegisterWithEventLoop()
69 {
70 int trueArg = 1;
71 ioctl(m_fd, FIONBIO, &trueArg);
72
73 EnableEvents();
74 }
75
76 // enable or disable notifications for socket input/output events but only
77 // if m_use_events is true; do nothing otherwise
78 virtual void EnableEvents()
79 {
80 if ( m_use_events )
81 DoEnableEvents(true);
82 }
83
84 void DisableEvents()
85 {
86 if ( m_use_events )
87 DoEnableEvents(false);
88 }
89
90 // really enable or disable socket input/output events, regardless of
91 // m_use_events value
92 void DoEnableEvents(bool enable);
93
94
95 // enable or disable events for the given event if m_use_events; do nothing
96 // otherwise
97 //
98 // notice that these functions also update m_detected: EnableEvent() clears
99 // the corresponding bit in it and DisableEvent() sets it
100 void EnableEvent(wxSocketNotify event);
101 void DisableEvent(wxSocketNotify event);
102
103
104 wxSocketError Input_Timeout();
105 wxSocketError Output_Timeout();
106 int Recv_Stream(void *buffer, int size);
107 int Recv_Dgram(void *buffer, int size);
108 int Send_Stream(const void *buffer, int size);
109 int Send_Dgram(const void *buffer, int size);
110
111
112 protected:
113 // true if socket should fire events
114 bool m_use_events;
115
116 // descriptors for input and output event notification channels associated
117 // with the socket
118 int m_fds[2];
119
120 // the events which are currently enabled for this socket, combination of
121 // wxFDIO_INPUT and wxFDIO_OUTPUT values
122 //
123 // TODO: this overlaps with m_detected but the semantics of the latter are
124 // very unclear so I don't dare to remove it right now
125 int m_enabledCallbacks;
126
127 private:
128 // notify the associated wxSocket about a change in socket state and shut
129 // down the socket if the event is wxSOCKET_LOST
130 void OnStateChange(wxSocketNotify event);
131
132 // give it access to our m_fds
133 friend class wxSocketFDBasedManager;
134 };
135
136 // A version of wxSocketManager which uses FDs for socket IO
137 class wxSocketFDBasedManager : public wxSocketManager
138 {
139 public:
140 // no special initialization/cleanup needed when using FDs
141 virtual bool OnInit() { return true; }
142 virtual void OnExit() { }
143
144 protected:
145 // identifies either input or output direction
146 //
147 // NB: the values of this enum shouldn't change
148 enum SocketDir
149 {
150 FD_INPUT,
151 FD_OUTPUT
152 };
153
154 // get the FD index corresponding to the given wxSocketNotify
155 SocketDir GetDirForEvent(wxSocketImpl *socket, wxSocketNotify event)
156 {
157 switch ( event )
158 {
159 default:
160 wxFAIL_MSG( "unexpected socket event" );
161 // fall through
162
163 case wxSOCKET_LOST:
164 // fall through
165
166 case wxSOCKET_INPUT:
167 return FD_INPUT;
168
169 case wxSOCKET_OUTPUT:
170 return FD_OUTPUT;
171
172 case wxSOCKET_CONNECTION:
173 // FIXME: explain this?
174 return socket->m_server ? FD_INPUT : FD_OUTPUT;
175 }
176 }
177
178 // access the FDs we store
179 int& FD(wxSocketImplUnix *socket, SocketDir d)
180 {
181 return socket->m_fds[d];
182 }
183 };
184
185 // Common base class for all ports using X11-like (and hence implemented in
186 // X11, Motif and GTK) AddInput() and RemoveInput() functions
187 class wxSocketInputBasedManager : public wxSocketFDBasedManager
188 {
189 public:
190 virtual void Install_Callback(wxSocketImpl *socket_, wxSocketNotify event)
191 {
192 wxSocketImplUnix * const
193 socket = static_cast<wxSocketImplUnix *>(socket_);
194
195 wxCHECK_RET( socket->m_fd != -1,
196 "shouldn't be called on invalid socket" );
197
198 const SocketDir d = GetDirForEvent(socket, event);
199
200 int& fd = FD(socket, d);
201 if ( fd != -1 )
202 RemoveInput(fd);
203
204 fd = AddInput(socket, socket->m_fd, d);
205 }
206
207 virtual void Uninstall_Callback(wxSocketImpl *socket_, wxSocketNotify event)
208 {
209 wxSocketImplUnix * const
210 socket = static_cast<wxSocketImplUnix *>(socket_);
211
212 const SocketDir d = GetDirForEvent(socket, event);
213
214 int& fd = FD(socket, d);
215 if ( fd != -1 )
216 {
217 RemoveInput(fd);
218 fd = -1;
219 }
220 }
221
222 private:
223 // these functions map directly to XtAdd/RemoveInput() or
224 // gdk_input_add/remove()
225 virtual int AddInput(wxFDIOHandler *handler, int fd, SocketDir d) = 0;
226 virtual void RemoveInput(int fd) = 0;
227 };
228
229 #endif /* _WX_UNIX_GSOCKUNX_H_ */