git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37162 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
161 lines
3.7 KiB
C++
161 lines
3.7 KiB
C++
/* -------------------------------------------------------------------------
|
|
* Project: GSocket (Generic Socket) for WX
|
|
* Name: src/x11/gsockx11.cpp
|
|
* Purpose: GSocket: X11 part
|
|
* Licence: The wxWindows licence
|
|
* CVSID: $Id$
|
|
* ------------------------------------------------------------------------- */
|
|
|
|
// for compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#if defined(__BORLANDC__)
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_SOCKETS
|
|
|
|
#include <stdlib.h>
|
|
#include "wx/gsocket.h"
|
|
#include "wx/unix/gsockunx.h"
|
|
|
|
/*
|
|
* FIXME: have these in a common header instead of being repeated
|
|
* in evtloop.cpp and gsockx11.c
|
|
*/
|
|
|
|
typedef void (*wxSocketCallback) (int fd, void* data);
|
|
|
|
typedef enum
|
|
{ wxSocketTableInput, wxSocketTableOutput } wxSocketTableType ;
|
|
|
|
extern "C" void wxRegisterSocketCallback(int fd, wxSocketTableType socketType, wxSocketCallback cback, void* data);
|
|
extern "C" void wxUnregisterSocketCallback(int fd, wxSocketTableType socketType);
|
|
|
|
|
|
static void _GSocket_X11_Input(int *fid, void* data)
|
|
{
|
|
GSocket *socket = (GSocket *)data;
|
|
|
|
socket->Detected_Read();
|
|
}
|
|
|
|
static void _GSocket_X11_Output(int *fid, void* data)
|
|
{
|
|
GSocket *socket = (GSocket *)data;
|
|
|
|
socket->Detected_Write();
|
|
}
|
|
|
|
bool GSocketGUIFunctionsTableConcrete::CanUseEventLoop()
|
|
{ return true; }
|
|
|
|
bool GSocketGUIFunctionsTableConcrete::OnInit(void)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
void GSocketGUIFunctionsTableConcrete::OnExit(void)
|
|
{
|
|
}
|
|
|
|
bool GSocketGUIFunctionsTableConcrete::Init_Socket(GSocket *socket)
|
|
{
|
|
int *m_id;
|
|
|
|
socket->m_gui_dependent = (char *)malloc(sizeof(int)*2);
|
|
m_id = (int *)(socket->m_gui_dependent);
|
|
|
|
m_id[0] = -1;
|
|
m_id[1] = -1;
|
|
|
|
return true;
|
|
}
|
|
|
|
void GSocketGUIFunctionsTableConcrete::Destroy_Socket(GSocket *socket)
|
|
{
|
|
free(socket->m_gui_dependent);
|
|
}
|
|
|
|
void GSocketGUIFunctionsTableConcrete::Install_Callback(GSocket *socket, GSocketEvent event)
|
|
{
|
|
int *m_id = (int *)(socket->m_gui_dependent);
|
|
int c;
|
|
|
|
if (socket->m_fd == -1)
|
|
return;
|
|
|
|
switch (event)
|
|
{
|
|
case GSOCK_LOST: /* fall-through */
|
|
case GSOCK_INPUT: c = 0; break;
|
|
case GSOCK_OUTPUT: c = 1; break;
|
|
case GSOCK_CONNECTION: c = ((socket->m_server) ? 0 : 1); break;
|
|
default: return;
|
|
}
|
|
|
|
#if 0
|
|
if (m_id[c] != -1)
|
|
XtRemoveInput(m_id[c]);
|
|
#endif /* 0 */
|
|
|
|
if (c == 0)
|
|
{
|
|
m_id[0] = socket->m_fd;
|
|
|
|
wxRegisterSocketCallback(socket->m_fd, wxSocketTableInput,
|
|
(wxSocketCallback) _GSocket_X11_Input, (void*) socket);
|
|
}
|
|
else
|
|
{
|
|
m_id[1] = socket->m_fd;
|
|
|
|
wxRegisterSocketCallback(socket->m_fd, wxSocketTableOutput,
|
|
(wxSocketCallback) _GSocket_X11_Output, (void*) socket);
|
|
}
|
|
}
|
|
|
|
void GSocketGUIFunctionsTableConcrete::Uninstall_Callback(GSocket *socket, GSocketEvent event)
|
|
{
|
|
int *m_id = (int *)(socket->m_gui_dependent);
|
|
int c;
|
|
|
|
switch (event)
|
|
{
|
|
case GSOCK_LOST: /* fall-through */
|
|
case GSOCK_INPUT: c = 0; break;
|
|
case GSOCK_OUTPUT: c = 1; break;
|
|
case GSOCK_CONNECTION: c = ((socket->m_server) ? 0 : 1); break;
|
|
default: return;
|
|
}
|
|
|
|
if (m_id[c] != -1)
|
|
{
|
|
if (c == 0)
|
|
wxUnregisterSocketCallback(m_id[c], wxSocketTableInput);
|
|
else
|
|
wxUnregisterSocketCallback(m_id[c], wxSocketTableOutput);
|
|
}
|
|
|
|
m_id[c] = -1;
|
|
}
|
|
|
|
void GSocketGUIFunctionsTableConcrete::Enable_Events(GSocket *socket)
|
|
{
|
|
Install_Callback(socket, GSOCK_INPUT);
|
|
Install_Callback(socket, GSOCK_OUTPUT);
|
|
}
|
|
|
|
void GSocketGUIFunctionsTableConcrete::Disable_Events(GSocket *socket)
|
|
{
|
|
Uninstall_Callback(socket, GSOCK_INPUT);
|
|
Uninstall_Callback(socket, GSOCK_OUTPUT);
|
|
}
|
|
|
|
#else /* !wxUSE_SOCKETS */
|
|
|
|
/* some compilers don't like having empty source files */
|
|
static int wxDummyGsockVar = 0;
|
|
|
|
#endif /* wxUSE_SOCKETS/!wxUSE_SOCKETS */
|