Allow using socket from both wxBase and wxCore (adopting to changes from r50831)
Use Unix' gsocketiohandler files for wxBase. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51055 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -269,6 +269,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
|
|||||||
<set var="BASE_OS2_SRC" hints="files">
|
<set var="BASE_OS2_SRC" hints="files">
|
||||||
src/common/fdiodispatcher.cpp
|
src/common/fdiodispatcher.cpp
|
||||||
src/common/selectdispatcher.cpp
|
src/common/selectdispatcher.cpp
|
||||||
|
src/common/gsocketiohandler.cpp
|
||||||
src/unix/appunix.cpp
|
src/unix/appunix.cpp
|
||||||
src/unix/evtloopunix.cpp
|
src/unix/evtloopunix.cpp
|
||||||
src/unix/timerunx.cpp
|
src/unix/timerunx.cpp
|
||||||
@@ -284,6 +285,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
|
|||||||
<set var="BASE_OS2_HDR" hints="files">
|
<set var="BASE_OS2_HDR" hints="files">
|
||||||
wx/private/fdiodispatcher.h
|
wx/private/fdiodispatcher.h
|
||||||
wx/private/selectdispatcher.h
|
wx/private/selectdispatcher.h
|
||||||
|
wx/private/gsocketiohandler.h
|
||||||
wx/unix/app.h
|
wx/unix/app.h
|
||||||
wx/os2/apptbase.h
|
wx/os2/apptbase.h
|
||||||
wx/os2/apptrait.h
|
wx/os2/apptrait.h
|
||||||
|
|||||||
@@ -27,6 +27,12 @@ public:
|
|||||||
|
|
||||||
// Clean up message queue.
|
// Clean up message queue.
|
||||||
virtual void TerminateGui(unsigned long ulHab);
|
virtual void TerminateGui(unsigned long ulHab);
|
||||||
|
#if wxUSE_SOCKETS
|
||||||
|
// returns the select()-based socket manager for console applications which
|
||||||
|
// is also used by some ports (wxX11, wxDFB) in the GUI build (hence it is
|
||||||
|
// here and not in wxConsoleAppTraits)
|
||||||
|
virtual GSocketManager *GetSocketManager();
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _WX_OS2_APPTBASE_H_
|
#endif // _WX_OS2_APPTBASE_H_
|
||||||
|
|||||||
@@ -47,6 +47,9 @@ public:
|
|||||||
#ifdef __WXGTK__
|
#ifdef __WXGTK__
|
||||||
virtual wxString GetDesktopEnvironment() const;
|
virtual wxString GetDesktopEnvironment() const;
|
||||||
#endif
|
#endif
|
||||||
|
#if wxUSE_SOCKETS
|
||||||
|
virtual GSocketManager *GetSocketManager();
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // wxUSE_GUI
|
#endif // wxUSE_GUI
|
||||||
|
|||||||
@@ -31,67 +31,32 @@ static void _GSocket_PM_Output(void *data)
|
|||||||
socket->Detected_Write();
|
socket->Detected_Write();
|
||||||
}
|
}
|
||||||
|
|
||||||
void GSocketGUIFunctionsTableConcrete::Install_Callback(GSocket *socket, GSocketEvent event)
|
class PMSocketManager : public GSocketInputBasedManager
|
||||||
{
|
{
|
||||||
int *m_id = (int *)(socket->m_gui_dependent);
|
public:
|
||||||
int c;
|
virtual int AddInput(GSocket *socket, SocketDir d)
|
||||||
|
|
||||||
if (socket->m_fd == -1)
|
|
||||||
return;
|
|
||||||
|
|
||||||
switch (event)
|
|
||||||
{
|
{
|
||||||
case GSOCK_LOST: /* fall-through */
|
|
||||||
case GSOCK_INPUT: c = 0; break;
|
if (d == FD_OUTPUT)
|
||||||
case GSOCK_OUTPUT: c = 1; break;
|
return wxTheApp->AddSocketHandler(socket->m_fd, wxSockWriteMask,
|
||||||
case GSOCK_CONNECTION: c = ((socket->m_server) ? 0 : 1); break;
|
_GSocket_PM_Output, (void *)socket);
|
||||||
default: return;
|
else
|
||||||
|
return wxTheApp->AddSocketHandler(socket->m_fd, wxSockReadMask,
|
||||||
|
_GSocket_PM_Input, (void *)socket);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_id[c] != -1)
|
virtual void RemoveInput(int fd)
|
||||||
wxTheApp->RemoveSocketHandler(m_id[c]);
|
|
||||||
|
|
||||||
if (c == 0)
|
|
||||||
{
|
{
|
||||||
m_id[0] = wxTheApp->AddSocketHandler(socket->m_fd, wxSockReadMask,
|
wxTheApp->RemoveSocketHandler(fd);
|
||||||
_GSocket_PM_Input, (void *)socket);
|
|
||||||
}
|
}
|
||||||
else
|
};
|
||||||
{
|
|
||||||
m_id[1] = wxTheApp->AddSocketHandler(socket->m_fd, wxSockWriteMask,
|
|
||||||
_GSocket_PM_Output, (void *)socket);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void GSocketGUIFunctionsTableConcrete::Uninstall_Callback(GSocket *socket, GSocketEvent event)
|
GSocketManager *wxGUIAppTraits::GetSocketManager()
|
||||||
{
|
{
|
||||||
int *m_id = (int *)(socket->m_gui_dependent);
|
static GTKSocketManager s_manager;
|
||||||
int c;
|
return &s_manager;
|
||||||
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)
|
|
||||||
wxTheApp->RemoveSocketHandler(m_id[c]);
|
|
||||||
|
|
||||||
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 */
|
#else /* !wxUSE_SOCKETS */
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user