本文整理汇总了C++中TcpSessionPtr::getUserParamString方法的典型用法代码示例。如果您正苦于以下问题:C++ TcpSessionPtr::getUserParamString方法的具体用法?C++ TcpSessionPtr::getUserParamString怎么用?C++ TcpSessionPtr::getUserParamString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TcpSessionPtr
的用法示例。
在下文中一共展示了TcpSessionPtr::getUserParamString方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: msg_onSelectUserReq
void NetMgr::msg_onSelectUserReq(TcpSessionPtr session, ReadStream & rs)
{
if (session->getUserParamNumber(UPARAM_SESSION_STATUS) != SSTATUS_PLAT_LOGINED)
{
LOGE("NetMgr::msg_onSelectUserReq. status error. session id=" << session->getSessionID() << ", status = " << session->getUserParamNumber(UPARAM_SESSION_STATUS));
session->close();
return;
}
auto founder = _mapAccounts.find(session->getUserParamString(UPARAM_ACCOUNT));
if (founder == _mapAccounts.end())
{
LOGW("Login::msg_onSelectUserReq session have no account info. sID=" << session->getSessionID());
return;
}
SelectUserReq req;
rs >> req;
auto base = founder->second.find(req.uID);
if (base == founder->second.end())
{
LOGW("Login::msg_onSelectUserReq session have no user info. sID=" << session->getSessionID());
return;
}
MD5Data data;
data.append(base->second.account);
data.append(base->second.nickName);
data.append(toString(rand()));
//模拟通知logic刷新token
auto ptr = getUserInfo(req.uID);
if (!ptr)
{
return;
}
ptr->token.uID = req.uID;
ptr->token.token = data.genMD5();
ptr->token.expire = (unsigned int)time(NULL) + 600;
//模拟断开连接
session->setUserParam(UPARAM_SESSION_STATUS, SSTATUS_UNKNOW);
SelectUserAck ack;
ack.retCode = EC_SUCCESS;
ack.uID = req.uID;
ack.token = data.genMD5();
ack.ip = ServerConfig::getRef().getConfigListen(LogicServer)._wip;
ack.port = ServerConfig::getRef().getConfigListen(LogicServer)._wport;
sendMessage(session, ack);
}
示例2: msg_onCreateUserReq
void NetMgr::msg_onCreateUserReq(TcpSessionPtr session, ReadStream & rs)
{
if (session->getUserParamNumber(UPARAM_SESSION_STATUS) != SSTATUS_PLAT_LOGINED)
{
LOGE("NetMgr::msg_onCreateUserReq. status error. session id=" << session->getSessionID() << ", status = " << session->getUserParamNumber(UPARAM_SESSION_STATUS));
session->close();
return;
}
auto founder = _mapAccounts.find(session->getUserParamString(UPARAM_ACCOUNT));
if (founder != _mapAccounts.end() && founder->second.size() > MAX_ACCOUNT_USERS)
{
LOGW("Login::msg_onCreateUserReq too many users. sID=" << session->getSessionID());
return;
}
CreateUserReq req;
rs >> req;
session->setUserParam(UPARAM_SESSION_STATUS, SSTATUS_PLAT_CREATING);
BaseInfo info;
info.uID = _genID.genNewObjID();
if (info.uID >= _genID.getMaxObjID() || info.uID < _genID.getMinObjID())
{
LOGE("gen UserID over the max user ID. cur ID=" << info.uID);
return;
}
info.account = session->getUserParamString(UPARAM_ACCOUNT);
info.nickName = req.nickName;
info.iconID = req.iconID;
info.joinTime = (ui32)time(NULL);
_mapAccounts[session->getUserParamString(UPARAM_ACCOUNT)][info.uID] = info;
std::string sql = BaseInfo_INSERT(info);
DBMgr::getRef().infoAsyncQuery(sql, std::bind(&NetMgr::db_onCreateUser, this, _1, session, info));
}
示例3: db_onFetchUsers
void NetMgr::db_onFetchUsers(DBResultPtr result, TcpSessionPtr session)
{
//loading guard over.
session->setUserParam(UPARAM_SESSION_STATUS, SSTATUS_PLAT_LOGINED);
PlatAuthAck ack;
ack.retCode = EC_DB_ERROR;
if (result->getErrorCode() != QEC_SUCCESS)
{
LOGE("Login::db_onFetchUsers have db error. error=" << result->getLastError() << ", sql=" << result->sqlString());
}
else
{
ack.retCode = EC_SUCCESS;
try
{
BaseInfo info;
while (result->haveRow())
{
*result >> info.uID;
*result >> info.account;
*result >> info.nickName;
*result >> info.iconID;
*result >> info.diamond;
*result >> info.hisotryDiamond;
*result >> info.giftDiamond;
*result >> info.joinTime;
ack.users.push_back(info);
_mapAccounts[session->getUserParamString(UPARAM_ACCOUNT)][info.uID] = info;
}
}
catch (std::runtime_error e)
{
ack.retCode = EC_DB_ERROR;
LOGE("Login::db_onFetchUsers catch one exception. e=" << e.what() << ", sql=" << result->sqlString());
}
}
sendMessage(session, ack);
}