transmission/libtransmission/trevent.c

319 lines
7.7 KiB
C
Raw Normal View History

/*
2010-01-04 21:00:47 +00:00
* This file Copyright (C) 2007-2010 Mnemosyne LLC
*
* This file is licensed by the GPL version 2. Works owned by the
* Transmission project are granted a special exemption to clause 2(b)
* so that the bulk of its code can remain under the MIT license.
* This exemption does not extend to derived works not owned by
* the Transmission project.
2007-08-18 17:19:49 +00:00
*
* $Id$
*/
2007-11-09 20:07:52 +00:00
#include <assert.h>
2008-05-06 15:52:57 +00:00
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <signal.h>
#include <event.h>
#include "transmission.h"
#include "net.h"
#include "session.h"
2008-05-06 15:52:57 +00:00
#ifdef WIN32
2009-08-10 20:04:08 +00:00
#include <WinSock2.h>
static int
pgpipe( int handles[2] )
{
SOCKET s;
struct sockaddr_in serv_addr;
int len = sizeof( serv_addr );
2009-08-10 20:04:08 +00:00
handles[0] = handles[1] = INVALID_SOCKET;
2009-08-10 20:04:08 +00:00
if ( ( s = socket( AF_INET, SOCK_STREAM, 0 ) ) == INVALID_SOCKET )
{
/* ereport(LOG, (errmsg_internal("pgpipe failed to create socket: %ui", WSAGetLastError()))); */
return -1;
}
2009-08-10 20:04:08 +00:00
memset( &serv_addr, 0, sizeof( serv_addr ) );
serv_addr.sin_family = AF_INET;
serv_addr.sin_port = htons(0);
serv_addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
if (bind(s, (SOCKADDR *) & serv_addr, len) == SOCKET_ERROR)
{
/* ereport(LOG, (errmsg_internal("pgpipe failed to bind: %ui", WSAGetLastError()))); */
closesocket(s);
return -1;
}
if (listen(s, 1) == SOCKET_ERROR)
{
/* ereport(LOG, (errmsg_internal("pgpipe failed to listen: %ui", WSAGetLastError()))); */
closesocket(s);
return -1;
}
if (getsockname(s, (SOCKADDR *) & serv_addr, &len) == SOCKET_ERROR)
{
/* ereport(LOG, (errmsg_internal("pgpipe failed to getsockname: %ui", WSAGetLastError()))); */
closesocket(s);
return -1;
}
if ((handles[1] = socket(PF_INET, SOCK_STREAM, 0)) == INVALID_SOCKET)
{
/* ereport(LOG, (errmsg_internal("pgpipe failed to create socket 2: %ui", WSAGetLastError()))); */
closesocket(s);
return -1;
}
2009-08-10 20:04:08 +00:00
if (connect(handles[1], (SOCKADDR *) & serv_addr, len) == SOCKET_ERROR)
{
/* ereport(LOG, (errmsg_internal("pgpipe failed to connect socket: %ui", WSAGetLastError()))); */
closesocket(s);
return -1;
}
if ((handles[0] = accept(s, (SOCKADDR *) & serv_addr, &len)) == INVALID_SOCKET)
{
/* ereport(LOG, (errmsg_internal("pgpipe failed to accept socket: %ui", WSAGetLastError()))); */
closesocket(handles[1]);
handles[1] = INVALID_SOCKET;
closesocket(s);
return -1;
}
closesocket(s);
return 0;
}
2009-08-10 20:04:08 +00:00
static int
piperead( int s, char *buf, int len )
{
int ret = recv(s, buf, len, 0);
if (ret < 0 && WSAGetLastError() == WSAECONNRESET)
/* EOF on the pipe! (win32 socket based implementation) */
ret = 0;
return ret;
}
#define pipe(a) pgpipe(a)
#define pipewrite(a,b,c) send(a,(char*)b,c,0)
2008-05-06 15:52:57 +00:00
#else
2009-08-10 20:04:08 +00:00
#define piperead(a,b,c) read(a,b,c)
#define pipewrite(a,b,c) write(a,b,c)
2008-05-06 15:52:57 +00:00
#endif
2009-08-10 20:04:08 +00:00
#include <unistd.h>
#include <event.h>
#include "transmission.h"
#include "platform.h"
#include "trevent.h"
#include "utils.h"
/***
****
***/
typedef struct tr_event_handle
{
uint8_t die;
int fds[2];
tr_lock * lock;
tr_session * session;
tr_thread * thread;
struct event_base * base;
2008-05-06 15:52:57 +00:00
struct event pipeEvent;
}
tr_event_handle;
2008-05-06 15:52:57 +00:00
struct tr_run_data
{
void ( *func )( void * );
void * user_data;
};
#define dbgmsg( ... ) \
do { \
if( tr_deepLoggingIsActive( ) ) \
tr_deepLog( __FILE__, __LINE__, "event", __VA_ARGS__ ); \
} while( 0 )
2008-05-06 15:52:57 +00:00
static void
readFromPipe( int fd,
short eventType,
void * veh )
{
char ch;
int ret;
tr_event_handle * eh = veh;
2008-05-06 15:52:57 +00:00
dbgmsg( "readFromPipe: eventType is %hd", eventType );
2008-05-06 15:52:57 +00:00
/* read the command type */
ch = '\0';
do
{
ret = piperead( fd, &ch, 1 );
}
while( !eh->die && ret < 0 && errno == EAGAIN );
2008-05-06 15:52:57 +00:00
dbgmsg( "command is [%c], ret is %d, errno is %d", ch, ret, (int)errno );
2008-05-06 15:52:57 +00:00
switch( ch )
{
case 'r': /* run in libevent thread */
{
struct tr_run_data data;
const size_t nwant = sizeof( data );
const ssize_t ngot = piperead( fd, &data, nwant );
if( !eh->die && ( ngot == (ssize_t)nwant ) )
{
2008-05-06 15:52:57 +00:00
dbgmsg( "invoking function in libevent thread" );
( data.func )( data.user_data );
2008-05-06 15:52:57 +00:00
}
2007-10-08 00:56:12 +00:00
break;
2008-05-06 15:52:57 +00:00
}
2008-05-06 15:52:57 +00:00
case '\0': /* eof */
{
2008-05-06 15:52:57 +00:00
dbgmsg( "pipe eof reached... removing event listener" );
event_del( &eh->pipeEvent );
break;
}
2008-05-06 15:52:57 +00:00
default:
{
assert( 0 && "unhandled command type!" );
break;
}
}
}
static void
logFunc( int severity, const char * message )
{
if( severity >= _EVENT_LOG_ERR )
tr_err( "%s", message );
else
tr_dbg( "%s", message );
}
static void
libeventThreadFunc( void * veh )
{
tr_event_handle * eh = veh;
2007-08-20 02:18:38 +00:00
tr_dbg( "Starting libevent thread" );
#ifndef WIN32
/* Don't exit when writing on a broken socket */
signal( SIGPIPE, SIG_IGN );
#endif
eh->base = event_init( );
eh->session->events = eh;
2008-05-06 15:52:57 +00:00
/* listen to the pipe's read fd */
event_set( &eh->pipeEvent, eh->fds[0], EV_READ | EV_PERSIST, readFromPipe, veh );
2008-05-06 15:52:57 +00:00
event_add( &eh->pipeEvent, NULL );
2008-10-01 20:23:57 +00:00
event_set_log_callback( logFunc );
/* loop until all the events are done */
while( !eh->die )
event_dispatch( );
/* shut down the thread */
2007-08-20 02:18:38 +00:00
tr_lockFree( eh->lock );
event_base_free( eh->base );
eh->session->events = NULL;
tr_free( eh );
2007-08-20 02:18:38 +00:00
tr_dbg( "Closing libevent thread" );
}
void
tr_eventInit( tr_session * session )
{
tr_event_handle * eh;
session->events = NULL;
eh = tr_new0( tr_event_handle, 1 );
eh->lock = tr_lockNew( );
2008-05-06 15:52:57 +00:00
pipe( eh->fds );
eh->session = session;
eh->thread = tr_threadNew( libeventThreadFunc, eh );
/* wait until the libevent thread is running */
while( session->events == NULL )
tr_wait_msec( 100 );
}
void
tr_eventClose( tr_session * session )
{
assert( tr_isSession( session ) );
session->events->die = TRUE;
2008-05-06 15:52:57 +00:00
tr_deepLog( __FILE__, __LINE__, NULL, "closing trevent pipe" );
tr_netCloseSocket( session->events->fds[1] );
}
/**
***
**/
tr_bool
tr_amInEventThread( const tr_session * session )
2007-11-15 16:43:46 +00:00
{
assert( tr_isSession( session ) );
assert( session->events != NULL );
return tr_amInThread( session->events->thread );
2007-11-15 16:43:46 +00:00
}
/**
***
**/
void
tr_runInEventThread( tr_session * session,
void func( void* ), void * user_data )
{
assert( tr_isSession( session ) );
assert( session->events != NULL );
if( tr_amInThread( session->events->thread ) )
2008-05-06 15:52:57 +00:00
{
(func)( user_data );
2008-05-06 15:52:57 +00:00
}
else
{
const char ch = 'r';
int fd = session->events->fds[1];
tr_lock * lock = session->events->lock;
2008-05-06 15:52:57 +00:00
struct tr_run_data data;
tr_lockLock( lock );
pipewrite( fd, &ch, 1 );
2008-05-06 15:52:57 +00:00
data.func = func;
data.user_data = user_data;
pipewrite( fd, &data, sizeof( data ) );
2008-05-06 15:52:57 +00:00
tr_lockUnlock( lock );
}
}
struct event_base *
tr_eventGetBase( tr_session * session )
{
assert( tr_isSession( session ) );
return session->events->base;
}