aboutsummaryrefslogtreecommitdiff
path: root/src/stable/multiserver.cpp
blob: 697725c2ed98cb1208c50d8ccfce5efea264ffb8 (plain)
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
/*
 * Copyright (C) 2007-2019 Xagasoft, All rights reserved.
 *
 * This file is part of the libbu++ library and is released under the
 * terms of the license contained in the file LICENSE.
 */

#include "bu/multiserver.h"
#include "bu/protocol.h"
#include "bu/client.h"
#include "bu/serversocket.h"

#include "bu/config.h"

#include "bu/sio.h"

Bu::MultiServer::MultiServer()
{
}

Bu::MultiServer::~MultiServer()
{
}

void Bu::MultiServer::addProtocol( Bu::Protocol *(*proc)(),
        Bu::ServerSocket *pServer )
{
    addServerSocket( pServer );
    int iFd;
    pServer->getFd( iFd );
    hProtos.insert( iFd, proc );
}

void Bu::MultiServer::onNewConnection( const Bu::ServerSocket *pSrv,
        Client *pClient, Bu::Socket * /*pSocket*/ )
{
    int iFd;
    if( pSrv->getFd( iFd ) )
    {
        pClient->setProtocol( hProtos.get( iFd )() );
    }
}

void Bu::MultiServer::onClosedConnection( Bu::Client *pClient )
{
    Bu::Protocol *pProto = pClient->getProtocol();
    pClient->clearProtocol();
    delete pProto;
}

void Bu::MultiServer::shutdown()
{
    Bu::Server::shutdown();
}

void Bu::MultiServer::tick()
{
    Bu::Server::tick();
}