2008-11-28 07:47:07 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2008-11-28 08:04:47 -05:00
|
|
|
// Name: wx/unix/private/sockunix.h
|
2008-11-28 07:47:07 -05:00
|
|
|
// Purpose: wxSocketImpl implementation for Unix systems
|
|
|
|
// Authors: Guilhem Lavaux, Vadim Zeitlin
|
|
|
|
// Created: April 1997
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1997 Guilhem Lavaux
|
|
|
|
// (c) 2008 Vadim Zeitlin
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
1999-09-30 19:53:10 -04:00
|
|
|
|
2007-12-19 11:45:08 -05:00
|
|
|
#ifndef _WX_UNIX_GSOCKUNX_H_
|
|
|
|
#define _WX_UNIX_GSOCKUNX_H_
|
1999-08-06 06:10:10 -04:00
|
|
|
|
2008-11-25 08:57:19 -05:00
|
|
|
#include <unistd.h>
|
2008-11-28 07:47:07 -05:00
|
|
|
#include <sys/ioctl.h>
|
2008-11-25 08:57:19 -05:00
|
|
|
|
2008-11-28 07:47:07 -05:00
|
|
|
class wxSocketImplUnix : public wxSocketImpl
|
2004-08-03 15:18:39 -04:00
|
|
|
{
|
|
|
|
public:
|
2008-11-28 08:43:41 -05:00
|
|
|
wxSocketImplUnix(wxSocketBase& wxsocket)
|
|
|
|
: wxSocketImpl(wxsocket)
|
|
|
|
{
|
|
|
|
m_fds[0] =
|
|
|
|
m_fds[1] = -1;
|
|
|
|
|
|
|
|
m_use_events = false;
|
|
|
|
}
|
2008-11-23 08:12:46 -05:00
|
|
|
|
2008-11-22 20:44:50 -05:00
|
|
|
virtual void Shutdown();
|
2008-11-28 07:47:07 -05:00
|
|
|
virtual wxSocketImpl *WaitConnection(wxSocketBase& wxsocket);
|
|
|
|
|
2004-01-18 02:46:18 -05:00
|
|
|
int Read(char *buffer, int size);
|
|
|
|
int Write(const char *buffer, int size);
|
2007-12-19 11:45:08 -05:00
|
|
|
//attach or detach from main loop
|
|
|
|
void Notify(bool flag);
|
2008-11-22 20:44:50 -05:00
|
|
|
void Detected_Read();
|
|
|
|
void Detected_Write();
|
2007-11-17 10:21:26 -05:00
|
|
|
|
2008-11-25 08:33:07 -05:00
|
|
|
private:
|
2008-11-28 07:47:07 -05:00
|
|
|
virtual wxSocketError DoHandleConnect(int ret);
|
|
|
|
virtual void DoClose()
|
|
|
|
{
|
|
|
|
wxSocketManager * const manager = wxSocketManager::Get();
|
|
|
|
if ( manager )
|
|
|
|
{
|
|
|
|
manager->Uninstall_Callback(this, wxSOCKET_INPUT);
|
|
|
|
manager->Uninstall_Callback(this, wxSOCKET_OUTPUT);
|
|
|
|
}
|
|
|
|
|
|
|
|
close(m_fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void UnblockAndRegisterWithEventLoop()
|
|
|
|
{
|
|
|
|
int trueArg = 1;
|
|
|
|
ioctl(m_fd, FIONBIO, &trueArg);
|
|
|
|
|
|
|
|
EnableEvents();
|
|
|
|
}
|
|
|
|
|
2008-11-25 08:33:07 -05:00
|
|
|
// enable or disable notifications for socket input/output events but only
|
|
|
|
// if m_use_events is true; do nothing otherwise
|
2008-11-28 07:47:07 -05:00
|
|
|
virtual void EnableEvents()
|
2008-11-25 08:33:07 -05:00
|
|
|
{
|
|
|
|
if ( m_use_events )
|
|
|
|
DoEnableEvents(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DisableEvents()
|
|
|
|
{
|
|
|
|
if ( m_use_events )
|
|
|
|
DoEnableEvents(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
// really enable or disable socket input/output events, regardless of
|
|
|
|
// m_use_events value
|
|
|
|
void DoEnableEvents(bool enable);
|
|
|
|
|
|
|
|
|
|
|
|
// enable or disable events for the given event if m_use_events; do nothing
|
|
|
|
// otherwise
|
|
|
|
//
|
|
|
|
// notice that these functions also update m_detected: EnableEvent() clears
|
|
|
|
// the corresponding bit in it and DisableEvent() sets it
|
2008-11-28 07:47:07 -05:00
|
|
|
void EnableEvent(wxSocketNotify event);
|
|
|
|
void DisableEvent(wxSocketNotify event);
|
2008-11-25 08:33:07 -05:00
|
|
|
|
|
|
|
|
2008-11-28 07:47:07 -05:00
|
|
|
wxSocketError Input_Timeout();
|
|
|
|
wxSocketError Output_Timeout();
|
2004-01-18 02:46:18 -05:00
|
|
|
int Recv_Stream(char *buffer, int size);
|
|
|
|
int Recv_Dgram(char *buffer, int size);
|
|
|
|
int Send_Stream(const char *buffer, int size);
|
|
|
|
int Send_Dgram(const char *buffer, int size);
|
1999-07-22 13:51:54 -04:00
|
|
|
|
2008-11-28 07:47:07 -05:00
|
|
|
protected:
|
|
|
|
// true if socket should fire events
|
|
|
|
bool m_use_events;
|
2007-12-19 11:45:08 -05:00
|
|
|
|
2008-11-28 07:47:07 -05:00
|
|
|
// descriptors for input and output event notification channels associated
|
|
|
|
// with the socket
|
|
|
|
int m_fds[2];
|
2008-11-23 08:12:46 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
// notify the associated wxSocket about a change in socket state and shut
|
2008-11-28 07:47:07 -05:00
|
|
|
// down the socket if the event is wxSOCKET_LOST
|
|
|
|
void OnStateChange(wxSocketNotify event);
|
|
|
|
|
|
|
|
// give it access to our m_fds
|
|
|
|
friend class wxSocketFDBasedManager;
|
1999-07-22 13:51:54 -04:00
|
|
|
};
|
|
|
|
|
2008-11-28 07:47:07 -05:00
|
|
|
// A version of wxSocketManager which uses FDs for socket IO
|
|
|
|
class wxSocketFDBasedManager : public wxSocketManager
|
2007-12-19 11:45:08 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// no special initialization/cleanup needed when using FDs
|
|
|
|
virtual bool OnInit() { return true; }
|
|
|
|
virtual void OnExit() { }
|
|
|
|
|
|
|
|
// allocate/free the storage we need
|
2008-11-28 07:47:07 -05:00
|
|
|
virtual wxSocketImpl *CreateSocket(wxSocketBase& wxsocket)
|
2008-11-25 08:33:07 -05:00
|
|
|
{
|
2008-11-28 07:47:07 -05:00
|
|
|
return new wxSocketImplUnix(wxsocket);
|
2007-12-19 11:45:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// identifies either input or output direction
|
|
|
|
//
|
|
|
|
// NB: the values of this enum shouldn't change
|
|
|
|
enum SocketDir
|
|
|
|
{
|
|
|
|
FD_INPUT,
|
|
|
|
FD_OUTPUT
|
|
|
|
};
|
|
|
|
|
2008-11-28 07:47:07 -05:00
|
|
|
// get the FD index corresponding to the given wxSocketNotify
|
|
|
|
SocketDir GetDirForEvent(wxSocketImpl *socket, wxSocketNotify event)
|
2007-12-19 11:45:08 -05:00
|
|
|
{
|
|
|
|
switch ( event )
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
wxFAIL_MSG( "unexpected socket event" );
|
|
|
|
// fall through
|
|
|
|
|
2008-11-28 07:47:07 -05:00
|
|
|
case wxSOCKET_LOST:
|
2007-12-19 11:45:08 -05:00
|
|
|
// fall through
|
|
|
|
|
2008-11-28 07:47:07 -05:00
|
|
|
case wxSOCKET_INPUT:
|
2007-12-19 11:45:08 -05:00
|
|
|
return FD_INPUT;
|
|
|
|
|
2008-11-28 07:47:07 -05:00
|
|
|
case wxSOCKET_OUTPUT:
|
2007-12-19 11:45:08 -05:00
|
|
|
return FD_OUTPUT;
|
|
|
|
|
2008-11-28 07:47:07 -05:00
|
|
|
case wxSOCKET_CONNECTION:
|
2007-12-19 11:45:08 -05:00
|
|
|
// FIXME: explain this?
|
|
|
|
return socket->m_server ? FD_INPUT : FD_OUTPUT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// access the FDs we store
|
2008-11-28 07:47:07 -05:00
|
|
|
int& FD(wxSocketImpl *socket, SocketDir d)
|
2007-12-19 11:45:08 -05:00
|
|
|
{
|
2008-11-28 07:47:07 -05:00
|
|
|
return static_cast<wxSocketImplUnix *>(socket)->m_fds[d];
|
2007-12-19 11:45:08 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Common base class for all ports using X11-like (and hence implemented in
|
|
|
|
// X11, Motif and GTK) AddInput() and RemoveInput() functions
|
2008-11-28 07:47:07 -05:00
|
|
|
class wxSocketInputBasedManager : public wxSocketFDBasedManager
|
2007-12-19 11:45:08 -05:00
|
|
|
{
|
|
|
|
public:
|
2008-11-28 07:47:07 -05:00
|
|
|
virtual void Install_Callback(wxSocketImpl *socket, wxSocketNotify event)
|
2007-12-19 11:45:08 -05:00
|
|
|
{
|
|
|
|
wxCHECK_RET( socket->m_fd != -1,
|
|
|
|
"shouldn't be called on invalid socket" );
|
|
|
|
|
|
|
|
const SocketDir d = GetDirForEvent(socket, event);
|
|
|
|
|
|
|
|
int& fd = FD(socket, d);
|
|
|
|
if ( fd != -1 )
|
|
|
|
RemoveInput(fd);
|
|
|
|
|
|
|
|
fd = AddInput(socket, d);
|
|
|
|
}
|
|
|
|
|
2008-11-28 07:47:07 -05:00
|
|
|
virtual void Uninstall_Callback(wxSocketImpl *socket, wxSocketNotify event)
|
2007-12-19 11:45:08 -05:00
|
|
|
{
|
|
|
|
const SocketDir d = GetDirForEvent(socket, event);
|
|
|
|
|
|
|
|
int& fd = FD(socket, d);
|
|
|
|
if ( fd != -1 )
|
|
|
|
{
|
|
|
|
RemoveInput(fd);
|
|
|
|
fd = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
// these functions map directly to XtAdd/RemoveInput() or
|
|
|
|
// gdk_input_add/remove()
|
2008-11-28 07:47:07 -05:00
|
|
|
virtual int AddInput(wxSocketImpl *socket, SocketDir d) = 0;
|
2007-12-19 11:45:08 -05:00
|
|
|
virtual void RemoveInput(int fd) = 0;
|
|
|
|
};
|
1999-08-06 06:10:10 -04:00
|
|
|
|
2007-12-19 11:45:08 -05:00
|
|
|
#endif /* _WX_UNIX_GSOCKUNX_H_ */
|