2011-07-02 14:38:06 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
|
* PokerTH - The open source texas holdem engine *
|
|
|
|
|
* Copyright (C) 2006-2011 Felix Hammer, Florian Thauer, Lothar May *
|
|
|
|
|
* *
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
|
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
|
|
|
* License, or (at your option) any later version. *
|
|
|
|
|
* *
|
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
|
* GNU Affero General Public License for more details. *
|
|
|
|
|
* *
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
|
|
|
|
*****************************************************************************/
|
2007-11-16 22:34:38 +00:00
|
|
|
|
2011-02-22 21:53:56 +00:00
|
|
|
#include <boost/asio.hpp>
|
2007-11-16 22:34:38 +00:00
|
|
|
#include <net/servermanager.h>
|
2011-02-22 21:53:56 +00:00
|
|
|
#include <net/socket_helper.h>
|
2007-11-16 22:34:38 +00:00
|
|
|
#include <net/serverlobbythread.h>
|
2009-05-10 22:21:20 +00:00
|
|
|
#include <net/serveraccepthelper.h>
|
2007-11-16 22:34:38 +00:00
|
|
|
#include <net/serverexception.h>
|
|
|
|
|
#include <net/socket_msg.h>
|
|
|
|
|
#include <net/socket_startup.h>
|
2011-03-11 21:56:24 +00:00
|
|
|
#include <net/serverircbotcallback.h>
|
2007-11-16 22:34:38 +00:00
|
|
|
#include <core/loghelper.h>
|
|
|
|
|
|
|
|
|
|
#include <boost/bind.hpp>
|
|
|
|
|
#include <boost/algorithm/string/predicate.hpp>
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
2011-03-11 21:56:24 +00:00
|
|
|
class GenericIrcCallback : public ServerIrcBotCallback
|
|
|
|
|
{
|
|
|
|
|
virtual void SignalLobbyMessage(unsigned /*playerId*/, const std::string &/*playerName*/, const std::string &/*msg*/) {}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static GenericIrcCallback g_ircCallback;
|
|
|
|
|
|
|
|
|
|
ServerManager::ServerManager(ConfigFile &config, GuiInterface &gui)
|
|
|
|
|
: m_playerConfig(config), m_gui(gui)
|
2007-11-16 22:34:38 +00:00
|
|
|
{
|
2009-06-14 22:07:41 +00:00
|
|
|
m_ioService.reset(new boost::asio::io_service);
|
2011-03-11 21:56:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ServerManager::ServerManager(ConfigFile &config, GuiInterface &gui, ServerMode mode, AvatarManager &avatarManager)
|
|
|
|
|
: m_playerConfig(config), m_gui(gui)
|
|
|
|
|
{
|
|
|
|
|
m_ioService.reset(new boost::asio::io_service);
|
|
|
|
|
m_lobbyThread.reset(new ServerLobbyThread(gui, mode, g_ircCallback, config, avatarManager, m_ioService));
|
2007-11-16 22:34:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ServerManager::~ServerManager()
|
|
|
|
|
{
|
2011-02-28 23:06:23 +00:00
|
|
|
size_t remainingHandler = 0;
|
|
|
|
|
// Call all pending handlers to clean up.
|
|
|
|
|
do {
|
|
|
|
|
m_ioService->reset();
|
|
|
|
|
remainingHandler = m_ioService->poll();
|
|
|
|
|
} while (remainingHandler > 0);
|
|
|
|
|
m_ioService->reset();
|
2007-11-16 22:34:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2011-03-11 21:56:24 +00:00
|
|
|
ServerManager::Init(unsigned serverPort, bool ipv6, ServerTransportProtocol proto, const string &logDir)
|
2007-11-16 22:34:38 +00:00
|
|
|
{
|
2009-11-08 09:48:01 +00:00
|
|
|
GetLobbyThread().Init(logDir);
|
2007-11-16 22:34:38 +00:00
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
if (proto & TRANSPORT_PROTOCOL_TCP) {
|
2011-02-22 21:53:56 +00:00
|
|
|
boost::shared_ptr<ServerAcceptInterface> tcpAcceptHelper(new ServerAcceptHelper<boost::asio::ip::tcp>(GetGui(), m_ioService));
|
|
|
|
|
tcpAcceptHelper->Listen(serverPort, ipv6, logDir, m_lobbyThread);
|
2009-05-10 22:21:20 +00:00
|
|
|
m_acceptHelperPool.push_back(tcpAcceptHelper);
|
2007-11-16 22:34:38 +00:00
|
|
|
}
|
2011-02-26 10:09:45 +00:00
|
|
|
/* if (proto & TRANSPORT_PROTOCOL_SCTP)
|
|
|
|
|
{
|
|
|
|
|
boost::shared_ptr<ServerAcceptInterface> sctpAcceptHelper(new ServerAcceptHelper<boost::asio::ip::sctp>(GetGui(), m_ioService));
|
|
|
|
|
sctpAcceptHelper->Listen(serverPort, ipv6, logDir, m_lobbyThread);
|
|
|
|
|
m_acceptHelperPool.push_back(sctpAcceptHelper);
|
|
|
|
|
}*/
|
2007-11-16 22:34:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ServerManager::RunAll()
|
|
|
|
|
{
|
|
|
|
|
GetLobbyThread().Run();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ServerManager::SignalTerminationAll()
|
|
|
|
|
{
|
|
|
|
|
GetLobbyThread().SignalTermination();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
ServerManager::JoinAll(bool wait)
|
|
|
|
|
{
|
2009-05-10 14:57:51 +00:00
|
|
|
return GetLobbyThread().Join(wait ? NET_LOBBY_THREAD_TERMINATE_TIMEOUT_MSEC : 0);
|
2007-11-16 22:34:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ServerLobbyThread &
|
|
|
|
|
ServerManager::GetLobbyThread()
|
|
|
|
|
{
|
2011-02-10 22:16:36 +00:00
|
|
|
assert(m_lobbyThread);
|
2007-11-16 22:34:38 +00:00
|
|
|
return *m_lobbyThread;
|
|
|
|
|
}
|
|
|
|
|
|