1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#include "server.h"
#include <errno.h>
Bu::Server::Server() :
nTimeoutSec( 0 ),
nTimeoutUSec( 0 )
{
FD_ZERO( &fdActive );
}
Bu::Server::~Server()
{
}
void Bu::Server::addPort( int nPort, int nPoolSize )
{
ServerSocket *s = new ServerSocket( nPort, nPoolSize );
int nSocket = s->getSocket();
FD_SET( nSocket, &fdActive );
hServers.insert( nSocket, s );
}
void Bu::Server::addPort( const FString &sAddr, int nPort, int nPoolSize )
{
ServerSocket *s = new ServerSocket( sAddr, nPort, nPoolSize );
int nSocket = s->getSocket();
FD_SET( nSocket, &fdActive );
hServers.insert( nSocket, s );
}
void Bu::Server::setTimeout( int nTimeoutSec, int nTimeoutUSec )
{
this->nTimeoutSec = nTimeoutSec;
this->nTimeoutUSec = nTimeoutUSec;
}
void Bu::Server::scan()
{
struct timeval xTimeout = { nTimeoutSec, nTimeoutUSec };
fd_set fdRead = fdActive;
fd_set fdWrite = fdActive;
fd_set fdException = fdActive;
if( TEMP_FAILURE_RETRY( select( FD_SETSIZE, &fdRead, NULL, &fdException, &xTimeout ) ) < 0 )
{
throw ExceptionBase("Error attempting to scan open connections.");
}
for( int j = 0; j < FD_SETSIZE; j++ )
{
if( FD_ISSET( j, &fdRead ) )
{
if( hServers.has( j ) )
{
ServerSocket *pSrv = hServers.get( j );
addClient( pSrv->accept(), pSrv->getPort() );
}
else
{
}
}
}
}
void Bu::Server::addClient( int nSocket, int nPort )
{
FD_SET( nSocket, &fdActive );
Client *c = new Client();
hClients.insert( nSocket, c );
onNewConnection( c, nPort );
}
|