2011-07-02 14:38:06 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
|
* PokerTH - The open source texas holdem engine *
|
2012-12-25 15:06:23 +01:00
|
|
|
* Copyright (C) 2006-2012 Felix Hammer, Florian Thauer, Lothar May *
|
2011-07-02 14:38:06 +00:00
|
|
|
* *
|
|
|
|
|
* 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/>. *
|
2012-12-25 15:06:23 +01:00
|
|
|
* *
|
|
|
|
|
* *
|
|
|
|
|
* Additional permission under GNU AGPL version 3 section 7 *
|
|
|
|
|
* *
|
|
|
|
|
* If you modify this program, or any covered work, by linking or *
|
|
|
|
|
* combining it with the OpenSSL project's OpenSSL library (or a *
|
|
|
|
|
* modified version of that library), containing parts covered by the *
|
|
|
|
|
* terms of the OpenSSL or SSLeay licenses, the authors of PokerTH *
|
|
|
|
|
* (Felix Hammer, Florian Thauer, Lothar May) grant you additional *
|
|
|
|
|
* permission to convey the resulting work. *
|
|
|
|
|
* Corresponding Source for a non-source form of such a combination *
|
|
|
|
|
* shall include the source code for the parts of OpenSSL used as well *
|
|
|
|
|
* as that of the covered work. *
|
2011-07-02 14:38:06 +00:00
|
|
|
*****************************************************************************/
|
2007-11-16 15:24:25 +00:00
|
|
|
|
|
|
|
|
#include <net/sessiondata.h>
|
2013-09-15 22:54:45 +02:00
|
|
|
#include <net/asioreceivebuffer.h>
|
|
|
|
|
#include <net/webreceivebuffer.h>
|
|
|
|
|
#include <net/asiosendbuffer.h>
|
|
|
|
|
#include <net/websendbuffer.h>
|
2011-12-11 14:54:17 +00:00
|
|
|
#include <net/socket_msg.h>
|
2013-09-15 22:54:45 +02:00
|
|
|
#include <net/websocketdata.h>
|
2009-10-11 12:07:56 +00:00
|
|
|
#include <gsasl.h>
|
|
|
|
|
|
2019-09-09 19:21:15 +02:00
|
|
|
// #include <ctime> // @TODO: remove if really not necessary
|
2019-09-09 20:02:16 +02:00
|
|
|
// #include <array> // same here
|
2019-09-09 19:21:15 +02:00
|
|
|
|
2009-10-11 12:07:56 +00:00
|
|
|
using namespace std;
|
2013-09-15 22:54:45 +02:00
|
|
|
using boost::asio::ip::tcp;
|
2007-11-16 15:24:25 +00:00
|
|
|
|
2014-03-29 16:13:53 +01:00
|
|
|
#ifdef BOOST_ASIO_HAS_STD_CHRONO
|
|
|
|
|
using namespace std::chrono;
|
|
|
|
|
#else
|
|
|
|
|
using namespace boost::chrono;
|
|
|
|
|
#endif
|
|
|
|
|
|
2011-12-11 14:54:17 +00:00
|
|
|
SessionData::SessionData(boost::shared_ptr<boost::asio::ip::tcp::socket> sock, SessionId id, SessionDataCallback &cb, boost::asio::io_service &ioService)
|
2011-03-10 21:53:25 +00:00
|
|
|
: m_socket(sock), m_id(id), m_state(SessionData::Init), m_readyFlag(false), m_wantsLobbyMsg(true),
|
2011-12-11 14:54:17 +00:00
|
|
|
m_activityTimeoutSec(0), m_activityWarningRemainingSec(0), m_initTimeoutTimer(ioService), m_globalTimeoutTimer(ioService),
|
|
|
|
|
m_activityTimeoutTimer(ioService), m_callback(cb), m_authSession(NULL), m_curAuthStep(0)
|
2007-11-16 15:24:25 +00:00
|
|
|
{
|
2013-09-15 22:54:45 +02:00
|
|
|
m_receiveBuffer.reset(new AsioReceiveBuffer);
|
|
|
|
|
m_sendBuffer.reset(new AsioSendBuffer);
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-16 23:11:16 +02:00
|
|
|
SessionData::SessionData(boost::shared_ptr<WebSocketData> webData, SessionId id, SessionDataCallback &cb, boost::asio::io_service &ioService, int /*filler*/)
|
2013-09-15 22:54:45 +02:00
|
|
|
: m_webData(webData), m_id(id), m_state(SessionData::Init), m_readyFlag(false), m_wantsLobbyMsg(true),
|
|
|
|
|
m_activityTimeoutSec(0), m_activityWarningRemainingSec(0), m_initTimeoutTimer(ioService), m_globalTimeoutTimer(ioService),
|
|
|
|
|
m_activityTimeoutTimer(ioService), m_callback(cb), m_authSession(NULL), m_curAuthStep(0)
|
|
|
|
|
{
|
|
|
|
|
m_receiveBuffer.reset(new WebReceiveBuffer);
|
2013-09-16 23:11:16 +02:00
|
|
|
m_sendBuffer.reset(new WebSendBuffer);
|
2007-11-16 15:24:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SessionData::~SessionData()
|
|
|
|
|
{
|
2009-10-11 12:07:56 +00:00
|
|
|
InternalClearAuthSession();
|
2013-09-15 22:54:45 +02:00
|
|
|
// Web Socket handle needs to be manually closed, asio socket is closed automatically.
|
|
|
|
|
CloseWebSocketHandle();
|
2007-11-16 15:24:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SessionId
|
|
|
|
|
SessionData::GetId() const
|
|
|
|
|
{
|
|
|
|
|
// const value - no mutex needed.
|
|
|
|
|
return m_id;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-10 21:53:25 +00:00
|
|
|
boost::shared_ptr<ServerGame>
|
|
|
|
|
SessionData::GetGame() const
|
2009-05-04 21:11:29 +00:00
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
2011-03-10 21:53:25 +00:00
|
|
|
return m_game.lock();
|
2009-05-04 21:11:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2011-03-10 21:53:25 +00:00
|
|
|
SessionData::SetGame(boost::shared_ptr<ServerGame> game)
|
2009-05-04 21:11:29 +00:00
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
2011-03-10 21:53:25 +00:00
|
|
|
m_game = game;
|
2009-05-04 21:11:29 +00:00
|
|
|
}
|
|
|
|
|
|
2007-11-16 15:24:25 +00:00
|
|
|
SessionData::State
|
|
|
|
|
SessionData::GetState() const
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
return m_state;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SessionData::SetState(SessionData::State state)
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_state = state;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-25 21:56:43 +00:00
|
|
|
boost::shared_ptr<boost::asio::ip::tcp::socket>
|
|
|
|
|
SessionData::GetAsioSocket()
|
|
|
|
|
{
|
|
|
|
|
return m_socket;
|
2007-11-16 15:24:25 +00:00
|
|
|
}
|
|
|
|
|
|
2013-09-16 23:11:16 +02:00
|
|
|
boost::shared_ptr<WebSocketData>
|
|
|
|
|
SessionData::GetWebData()
|
|
|
|
|
{
|
|
|
|
|
return m_webData;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-13 22:02:19 +00:00
|
|
|
bool
|
|
|
|
|
SessionData::CreateServerAuthSession(Gsasl *context)
|
2009-10-11 12:07:56 +00:00
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
InternalClearAuthSession();
|
|
|
|
|
int errorCode;
|
2009-10-13 21:52:10 +00:00
|
|
|
errorCode = gsasl_server_start(context, "SCRAM-SHA-1", &m_authSession);
|
|
|
|
|
return errorCode == GSASL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
SessionData::CreateClientAuthSession(Gsasl *context, const string &userName, const string &password)
|
|
|
|
|
{
|
|
|
|
|
bool retVal = false;
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
InternalClearAuthSession();
|
|
|
|
|
int errorCode;
|
|
|
|
|
errorCode = gsasl_client_start(context, "SCRAM-SHA-1", &m_authSession);
|
2011-02-11 20:02:08 +00:00
|
|
|
if (errorCode == GSASL_OK) {
|
2010-03-24 12:23:20 +00:00
|
|
|
gsasl_property_set(m_authSession, GSASL_AUTHID, userName.c_str());
|
2009-10-13 21:03:32 +00:00
|
|
|
gsasl_property_set(m_authSession, GSASL_PASSWORD, password.c_str());
|
2010-03-21 16:59:41 +00:00
|
|
|
|
2009-10-13 21:03:32 +00:00
|
|
|
retVal = true;
|
2009-10-11 12:07:56 +00:00
|
|
|
}
|
|
|
|
|
return retVal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
2009-10-18 20:53:58 +00:00
|
|
|
SessionData::AuthStep(int stepNum, const std::string &inData)
|
2009-10-11 12:07:56 +00:00
|
|
|
{
|
|
|
|
|
bool retVal = false;
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
2011-02-11 20:02:08 +00:00
|
|
|
if (m_authSession && stepNum == m_curAuthStep + 1) {
|
2009-10-11 12:07:56 +00:00
|
|
|
m_curAuthStep = stepNum;
|
|
|
|
|
char *tmpOut;
|
|
|
|
|
size_t tmpOutSize;
|
|
|
|
|
int errorCode = gsasl_step(m_authSession, inData.c_str(), inData.length(), &tmpOut, &tmpOutSize);
|
2011-02-11 20:02:08 +00:00
|
|
|
if (errorCode == GSASL_NEEDS_MORE) {
|
2009-10-18 20:53:58 +00:00
|
|
|
m_nextGsaslMsg = string(tmpOut, tmpOutSize);
|
2009-10-11 12:07:56 +00:00
|
|
|
retVal = true;
|
2011-02-11 20:02:08 +00:00
|
|
|
} else if (errorCode == GSASL_OK && stepNum != 1) {
|
2009-10-18 20:53:58 +00:00
|
|
|
m_nextGsaslMsg = string(tmpOut, tmpOutSize);
|
2009-10-11 12:07:56 +00:00
|
|
|
retVal = true;
|
|
|
|
|
InternalClearAuthSession();
|
|
|
|
|
}
|
|
|
|
|
gsasl_free(tmpOut);
|
|
|
|
|
}
|
|
|
|
|
return retVal;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-13 21:52:10 +00:00
|
|
|
string
|
2009-10-18 20:53:58 +00:00
|
|
|
SessionData::AuthGetUser() const
|
2009-10-13 21:52:10 +00:00
|
|
|
{
|
|
|
|
|
string retStr;
|
2011-02-11 20:02:08 +00:00
|
|
|
if (m_authSession) {
|
2010-03-21 16:59:41 +00:00
|
|
|
const char *tmpUser = gsasl_property_fast(m_authSession, GSASL_AUTHID);
|
2010-03-24 12:23:20 +00:00
|
|
|
if (tmpUser)
|
|
|
|
|
retStr = tmpUser;
|
2010-03-21 16:59:41 +00:00
|
|
|
}
|
2009-10-13 22:03:41 +00:00
|
|
|
return retStr;
|
2009-10-13 21:52:10 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-18 20:53:58 +00:00
|
|
|
void
|
|
|
|
|
SessionData::AuthSetPassword(const std::string &password)
|
|
|
|
|
{
|
|
|
|
|
if (m_authSession)
|
|
|
|
|
gsasl_property_set(m_authSession, GSASL_PASSWORD, password.c_str());
|
2010-09-04 11:56:40 +00:00
|
|
|
m_password = password;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string
|
|
|
|
|
SessionData::AuthGetPassword() const
|
|
|
|
|
{
|
|
|
|
|
return m_password;
|
2009-10-18 20:53:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string
|
|
|
|
|
SessionData::AuthGetNextOutMsg() const
|
|
|
|
|
{
|
|
|
|
|
return m_nextGsaslMsg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
SessionData::AuthGetCurStepNum() const
|
|
|
|
|
{
|
|
|
|
|
return m_curAuthStep;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-11 12:07:56 +00:00
|
|
|
void
|
|
|
|
|
SessionData::InternalClearAuthSession()
|
|
|
|
|
{
|
2011-02-11 20:02:08 +00:00
|
|
|
if (m_authSession) {
|
2009-10-11 12:07:56 +00:00
|
|
|
gsasl_finish(m_authSession);
|
|
|
|
|
m_authSession = NULL;
|
|
|
|
|
m_curAuthStep = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-11 14:54:17 +00:00
|
|
|
void
|
|
|
|
|
SessionData::TimerInitTimeout(const boost::system::error_code &ec)
|
|
|
|
|
{
|
|
|
|
|
if (!ec) {
|
|
|
|
|
if (GetState() == SessionData::Init) {
|
|
|
|
|
m_callback.SessionError(shared_from_this(), ERR_NET_SESSION_TIMED_OUT);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SessionData::TimerSessionTimeout(const boost::system::error_code &ec)
|
|
|
|
|
{
|
|
|
|
|
if (!ec) {
|
|
|
|
|
m_callback.SessionError(shared_from_this(), ERR_NET_SESSION_TIMED_OUT);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SessionData::TimerActivityWarning(const boost::system::error_code &ec)
|
|
|
|
|
{
|
|
|
|
|
if (!ec) {
|
|
|
|
|
m_callback.SessionTimeoutWarning(shared_from_this(), m_activityWarningRemainingSec);
|
|
|
|
|
|
|
|
|
|
m_activityTimeoutTimer.expires_from_now(
|
2014-03-29 16:13:53 +01:00
|
|
|
seconds(m_activityWarningRemainingSec));
|
2011-12-11 14:54:17 +00:00
|
|
|
m_activityTimeoutTimer.async_wait(
|
|
|
|
|
boost::bind(
|
|
|
|
|
&SessionData::TimerSessionTimeout, shared_from_this(), boost::asio::placeholders::error));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-16 15:24:25 +00:00
|
|
|
void
|
|
|
|
|
SessionData::SetReadyFlag()
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_readyFlag = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SessionData::ResetReadyFlag()
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_readyFlag = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
SessionData::IsReady() const
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
return m_readyFlag;
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-11 21:41:30 +00:00
|
|
|
void
|
|
|
|
|
SessionData::SetWantsLobbyMsg()
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_wantsLobbyMsg = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SessionData::ResetWantsLobbyMsg()
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_wantsLobbyMsg = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
SessionData::WantsLobbyMsg() const
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
return m_wantsLobbyMsg;
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-16 15:24:25 +00:00
|
|
|
const std::string &
|
|
|
|
|
SessionData::GetClientAddr() const
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
return m_clientAddr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SessionData::SetClientAddr(const std::string &addr)
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_clientAddr = addr;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-15 22:54:45 +02:00
|
|
|
void
|
|
|
|
|
SessionData::CloseSocketHandle()
|
|
|
|
|
{
|
|
|
|
|
if (m_socket) {
|
|
|
|
|
boost::system::error_code ec;
|
|
|
|
|
m_socket->close(ec);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SessionData::CloseWebSocketHandle()
|
|
|
|
|
{
|
|
|
|
|
if (m_webData) {
|
2017-02-05 00:44:48 +01:00
|
|
|
#if defined(__GXX_EXPERIMENTAL_CXX0X__) || (__cplusplus >= 201103L) // c++11
|
|
|
|
|
std::error_code std_ec;
|
|
|
|
|
m_webData->webSocketServer->close(m_webData->webHandle, websocketpp::close::status::normal, "PokerTH server closed the connection.", std_ec);
|
2017-08-16 13:55:18 +02:00
|
|
|
#else
|
2013-09-15 22:54:45 +02:00
|
|
|
boost::system::error_code ec;
|
|
|
|
|
m_webData->webSocketServer->close(m_webData->webHandle, websocketpp::close::status::normal, "PokerTH server closed the connection.", ec);
|
2017-02-05 00:44:48 +01:00
|
|
|
#endif
|
2013-09-15 22:54:45 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-04 23:47:45 +00:00
|
|
|
void
|
|
|
|
|
SessionData::ResetActivityTimer()
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
2011-12-11 14:54:17 +00:00
|
|
|
m_activityTimeoutTimer.expires_from_now(
|
2014-03-29 16:13:53 +01:00
|
|
|
seconds(m_activityTimeoutSec - m_activityWarningRemainingSec));
|
2011-12-11 14:54:17 +00:00
|
|
|
m_activityTimeoutTimer.async_wait(
|
|
|
|
|
boost::bind(
|
|
|
|
|
&SessionData::TimerActivityWarning, shared_from_this(), boost::asio::placeholders::error));
|
2008-03-04 23:47:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2011-12-11 14:54:17 +00:00
|
|
|
SessionData::StartTimerInitTimeout(unsigned timeoutSec)
|
2008-03-04 23:47:45 +00:00
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
2011-12-11 14:54:17 +00:00
|
|
|
m_initTimeoutTimer.expires_from_now(
|
2014-03-29 16:13:53 +01:00
|
|
|
seconds(timeoutSec));
|
2011-12-11 14:54:17 +00:00
|
|
|
m_initTimeoutTimer.async_wait(
|
|
|
|
|
boost::bind(
|
|
|
|
|
&SessionData::TimerInitTimeout, shared_from_this(), boost::asio::placeholders::error));
|
2008-03-04 23:47:45 +00:00
|
|
|
}
|
|
|
|
|
|
2011-12-11 14:54:17 +00:00
|
|
|
void
|
|
|
|
|
SessionData::StartTimerGlobalTimeout(unsigned timeoutSec)
|
2008-03-04 23:47:45 +00:00
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
2011-12-11 14:54:17 +00:00
|
|
|
m_globalTimeoutTimer.expires_from_now(
|
2014-03-29 16:13:53 +01:00
|
|
|
seconds(timeoutSec));
|
2011-12-11 14:54:17 +00:00
|
|
|
m_globalTimeoutTimer.async_wait(
|
|
|
|
|
boost::bind(
|
|
|
|
|
&SessionData::TimerSessionTimeout, shared_from_this(), boost::asio::placeholders::error));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SessionData::StartTimerActivityTimeout(unsigned timeoutSec, unsigned warningRemainingSec)
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_activityTimeoutSec = timeoutSec;
|
|
|
|
|
m_activityWarningRemainingSec = warningRemainingSec;
|
|
|
|
|
|
|
|
|
|
m_activityTimeoutTimer.expires_from_now(
|
2014-03-29 16:13:53 +01:00
|
|
|
seconds(timeoutSec - warningRemainingSec));
|
2011-12-11 14:54:17 +00:00
|
|
|
m_activityTimeoutTimer.async_wait(
|
|
|
|
|
boost::bind(
|
|
|
|
|
&SessionData::TimerActivityWarning, shared_from_this(), boost::asio::placeholders::error));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SessionData::CancelTimers()
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_initTimeoutTimer.cancel();
|
|
|
|
|
m_globalTimeoutTimer.cancel();
|
|
|
|
|
m_activityTimeoutTimer.cancel();
|
2008-03-04 23:47:45 +00:00
|
|
|
}
|
2011-03-10 20:55:46 +00:00
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SessionData::SetPlayerData(boost::shared_ptr<PlayerData> player)
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_playerData = player;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
boost::shared_ptr<PlayerData>
|
|
|
|
|
SessionData::GetPlayerData()
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
return m_playerData;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-09 19:21:15 +02:00
|
|
|
void
|
2019-09-09 20:06:12 +02:00
|
|
|
SessionData::SetPlayerLastGames(std:array<long, 25> lastGames)
|
2019-09-09 19:21:15 +02:00
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_lastGames = player;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-09 20:06:12 +02:00
|
|
|
std::array<long, 25>
|
2019-09-09 19:21:15 +02:00
|
|
|
SessionData::GetPlayerLastGames()
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
return m_lastGames;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-15 22:54:45 +02:00
|
|
|
string
|
|
|
|
|
SessionData::GetRemoteIPAddressFromSocket() const
|
|
|
|
|
{
|
2014-02-15 23:15:27 +01:00
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
2013-09-15 22:54:45 +02:00
|
|
|
string ipAddress;
|
|
|
|
|
if (m_socket) {
|
|
|
|
|
boost::system::error_code errCode;
|
|
|
|
|
tcp::endpoint clientEndpoint = m_socket->remote_endpoint(errCode);
|
|
|
|
|
if (!errCode) {
|
|
|
|
|
ipAddress = clientEndpoint.address().to_string(errCode);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2013-09-16 22:33:52 +02:00
|
|
|
boost::system::error_code errCode;
|
2013-09-15 22:54:45 +02:00
|
|
|
server::connection_ptr con = m_webData->webSocketServer->get_con_from_hdl(m_webData->webHandle);
|
2013-09-16 22:33:52 +02:00
|
|
|
tcp::endpoint webClientEndpoint = con->get_raw_socket().remote_endpoint(errCode);
|
|
|
|
|
if (!errCode) {
|
|
|
|
|
ipAddress = webClientEndpoint.address().to_string(errCode);
|
|
|
|
|
}
|
2013-09-15 22:54:45 +02:00
|
|
|
}
|
|
|
|
|
return ipAddress;
|
|
|
|
|
}
|
|
|
|
|
|