khanat-code-old/code/ryzom/server/src/server_share/log_player_gen.cpp
2015-03-29 17:28:33 +03:00

182 lines
4.2 KiB
C++

// Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
// Copyright (C) 2010 Winch Gate Property Limited
//
// 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/>.
#include "stdpch.h"
#include "game_share/utils.h"
#include "log_player_gen.h"
#include "logger_service_itf.h"
#include "logger_service_client.h"
// A function fo force linking of this code module
void forceLink_Player(){}
class CPlayerDesc
{
friend class CLoggerClient;
/// The list of log definition for this log class
std::vector<LGS::TLogDefinition> _LogDefs;
/// Stack of context variable
/// Counter of 'no context' object stacked.
uint32 _NoContextCount;
public:
/// constructor
CPlayerDesc()
: _NoContextCount(0)
{
_LogDefs.resize(2);
{
LGS::TLogDefinition &logDef = _LogDefs[0];
logDef.setLogName("Player_Connect");
logDef.setLogText("The player has connected");
logDef.getParams().resize(2);
logDef.getListParams().resize(0);
logDef.getParams()[0].setName("userId");
logDef.getParams()[0].setType(LGS::TSupportedParamType::spt_uint32);
logDef.getParams()[0].setList(false);
logDef.getParams()[1].setName("fromAddr");
logDef.getParams()[1].setType(LGS::TSupportedParamType::spt_string);
logDef.getParams()[1].setList(false);
}
{
LGS::TLogDefinition &logDef = _LogDefs[1];
logDef.setLogName("Player_Disconnect");
logDef.setLogText("The player has disconnected");
logDef.getParams().resize(2);
logDef.getListParams().resize(0);
logDef.getParams()[0].setName("userId");
logDef.getParams()[0].setType(LGS::TSupportedParamType::spt_uint32);
logDef.getParams()[0].setList(false);
logDef.getParams()[1].setName("crashed");
logDef.getParams()[1].setType(LGS::TSupportedParamType::spt_uint32);
logDef.getParams()[1].setList(false);
}
// Register the log definitions
LGS::ILoggerServiceClient::addLogDefinitions(_LogDefs);
}
// Context var stack accessor
void pushNoContext()
{
++_NoContextCount;
}
void popNoContext()
{
nlassert(_NoContextCount > 0);
--_NoContextCount;
}
uint32 getNoContextCount()
{
return _NoContextCount;
}
};
// Instantiate the descriptor class
CPlayerDesc PlayerDesc;
/// No context context. Use this to disable any contextual log underneath
TLogNoContext_Player::TLogNoContext_Player()
{
PlayerDesc.pushNoContext();
}
TLogNoContext_Player::~TLogNoContext_Player()
{
PlayerDesc.popNoContext();
}
void _log_Player_Connect(uint32 userId, const std::string &fromAddr, const char *_filename_, uint _lineNo_)
{
static LGS::TLogInfo logInfo;
static bool init = false;
if (!init)
{
logInfo.setLogName("Player_Connect");
logInfo.getParams().resize(2);
logInfo.getListParams().resize(0);
}
logInfo.getParams()[0] = LGS::TParamValue(userId);
logInfo.getParams()[1] = LGS::TParamValue(fromAddr);
logInfo.setTimeStamp(NLMISC::CTime::getSecondsSince1970());
if (LGS::ILoggerServiceClient::isInitialized())
LGS::ILoggerServiceClient::getInstance()->sendLog(logInfo);
}
void _log_Player_Disconnect(uint32 userId, bool crashed, const char *_filename_, uint _lineNo_)
{
static LGS::TLogInfo logInfo;
static bool init = false;
if (!init)
{
logInfo.setLogName("Player_Disconnect");
logInfo.getParams().resize(2);
logInfo.getListParams().resize(0);
}
logInfo.getParams()[0] = LGS::TParamValue(userId);
logInfo.getParams()[1] = LGS::TParamValue(crashed);
logInfo.setTimeStamp(NLMISC::CTime::getSecondsSince1970());
if (LGS::ILoggerServiceClient::isInitialized())
LGS::ILoggerServiceClient::getInstance()->sendLog(logInfo);
}