This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
104 lines
3.1 KiB
C++
104 lines
3.1 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/unix/fdiounix.cpp
|
|
// Purpose: wxFDIOManager implementation for console Unix applications
|
|
// Author: Vadim Zeitlin
|
|
// Created: 2009-08-17
|
|
// Copyright: (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org>
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ============================================================================
|
|
// declarations
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// headers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// for compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_SOCKETS
|
|
|
|
#include "wx/apptrait.h"
|
|
#include "wx/log.h"
|
|
#include "wx/private/fdiodispatcher.h"
|
|
#include "wx/unix/private/fdiounix.h"
|
|
|
|
// ============================================================================
|
|
// wxFDIOManagerUnix implementation
|
|
// ============================================================================
|
|
|
|
int wxFDIOManagerUnix::AddInput(wxFDIOHandler *handler, int fd, Direction d)
|
|
{
|
|
wxFDIODispatcher * const dispatcher = wxFDIODispatcher::Get();
|
|
wxCHECK_MSG( dispatcher, -1, "can't monitor FDs without FD IO dispatcher" );
|
|
|
|
// translate our direction to dispatcher flags
|
|
const int flag = d == INPUT ? wxFDIO_INPUT : wxFDIO_OUTPUT;
|
|
|
|
// we need to either register this FD with the dispatcher or update an
|
|
// existing registration depending on whether it had been previously
|
|
// registered for anything or not
|
|
bool ok;
|
|
const int regmask = handler->GetRegisteredEvents();
|
|
if ( !regmask )
|
|
{
|
|
ok = dispatcher->RegisterFD(fd, handler, flag);
|
|
}
|
|
else
|
|
{
|
|
ok = dispatcher->ModifyFD(fd, handler, regmask | flag);
|
|
}
|
|
|
|
if ( !ok )
|
|
return -1;
|
|
|
|
// update the stored mask of registered events
|
|
handler->SetRegisteredEvent(flag);
|
|
|
|
return fd;
|
|
}
|
|
|
|
void wxFDIOManagerUnix::RemoveInput(wxFDIOHandler *handler, int fd, Direction d)
|
|
{
|
|
wxFDIODispatcher * const dispatcher = wxFDIODispatcher::Get();
|
|
if ( !dispatcher )
|
|
return;
|
|
|
|
const int flag = d == INPUT ? wxFDIO_INPUT : wxFDIO_OUTPUT;
|
|
|
|
// just as in AddInput() above we may need to either just modify the FD or
|
|
// remove it completely if we don't need to monitor it any more
|
|
bool ok;
|
|
const int regmask = handler->GetRegisteredEvents();
|
|
if ( regmask == flag )
|
|
{
|
|
ok = dispatcher->UnregisterFD(fd);
|
|
}
|
|
else
|
|
{
|
|
ok = dispatcher->ModifyFD(fd, handler, regmask & ~flag);
|
|
}
|
|
|
|
if ( !ok )
|
|
{
|
|
wxLogDebug("Failed to unregister %d in direction %d", fd, d);
|
|
}
|
|
|
|
// do this even after a failure to unregister it, we still tried...
|
|
handler->ClearRegisteredEvent(flag);
|
|
}
|
|
|
|
wxFDIOManager *wxAppTraits::GetFDIOManager()
|
|
{
|
|
static wxFDIOManagerUnix s_manager;
|
|
return &s_manager;
|
|
}
|
|
|
|
#endif // wxUSE_SOCKETS
|