Compare commits

...

6 Commits
master ... dev

Author SHA1 Message Date
aozhiwei
ce39bf9af2 1 2020-09-14 17:52:38 +08:00
aozhiwei
c120fccab2 1 2020-08-25 19:55:06 +08:00
aozhiwei
649c3208a7 1 2020-08-25 19:38:35 +08:00
aozhiwei
fd9a2ba7eb 1 2020-08-25 17:19:48 +08:00
aozhiwei
03a8c08040 1 2020-08-22 21:35:43 +08:00
aozhiwei
da3c6ee96e 1 2020-08-22 21:24:35 +08:00
6 changed files with 47 additions and 31 deletions

View File

@ -23,6 +23,7 @@
#include "framework/cpp/msgqueue.h"
#include "framework/cpp/tglog.h"
#include "framework/cpp/utils.h"
struct MsgNode
{
@ -483,7 +484,25 @@ bool App::IsSeparateChannel(int channel)
void App::LoadSeparateChannelConfig()
{
std::string data;
a8::ReadStringFromFile("../config/separate_channels.csv", data);
std::string filename = "../config/separate_channels.csv";
if (!f8::IsOnlineEnv()) {
if (f8::IsTestEnv()) {
filename = a8::Format("/root/pub/%d/%d/conf_test/game%d/masterserver.test/separate_channels.csv",
{
GAME_ID,
App::Instance()->instance_id,
GAME_ID
});
} else {
filename = a8::Format("/root/pub/%d/%d/conf_test/game%d/masterserver.dev/separate_channels.csv",
{
GAME_ID,
App::Instance()->instance_id,
GAME_ID
});
}
}
a8::ReadStringFromFile(filename, data);
std::vector<std::string> strings;
a8::Split(data, strings, ',');
separate_channel_hash_.clear();
@ -493,9 +512,10 @@ void App::LoadSeparateChannelConfig()
separate_channel_hash_.insert(channel);
}
}
a8::UdpLog::Instance()->Info("LoadSeparateChannelConfig channelids:%s",
a8::UdpLog::Instance()->Debug("LoadSeparateChannelConfig %s channelids:%s",
{
GetSeparateChannelConfigData()
filename,
GetSeparateChannelConfigData()
});
}

View File

@ -1,13 +0,0 @@
#pragma once
/*
http的错误码设计
0
<400:
>500:
*/
enum ErrorCode_e
{
ERRNO_OK = 0,
};

View File

@ -26,18 +26,8 @@ void GSMgr::UnInit()
void GSMgr::_SS_WSP_RequestTargetServer(f8::MsgHdr& hdr, const ss::SS_WSP_RequestTargetServer& msg)
{
int channel = f8::ExtractChannelIdFromAccountId(msg.account_id());
if (!App::Instance()->IsSeparateChannel(channel)) {
channel = 0;
}
#if 1
int src_channel = f8::ExtractChannelIdFromAccountId(msg.account_id());
if (channel == 0 &&
src_channel == kTouTiaoChannelId &&
msg.proto_version() == 2019071502) {
channel = src_channel;
}
#endif
int target_channel = GetTargetChannel(msg);
ss::SS_MS_ResponseTargetServer respmsg;
respmsg.set_context_id(msg.context_id());
if (msg.is_reconnect()) {
@ -51,11 +41,11 @@ void GSMgr::_SS_WSP_RequestTargetServer(f8::MsgHdr& hdr, const ss::SS_WSP_Reques
}
} else {
GSNode* node = GetNodeByTeamId(msg.team_id());
if (node && node->channel == channel) {
if (node && node->channel == target_channel) {
respmsg.set_host(node->ip);
respmsg.set_port(node->port);
} else {
node = AllocNode(channel);
node = AllocNode(target_channel);
if (node) {
respmsg.set_host(node->ip);
respmsg.set_port(node->port);
@ -314,3 +304,19 @@ void GSMgr::OnChannelChange(GSNode* node)
RemoveNodeFromSortedNodes(node);
AddNodeToSortedNodes(node);
}
int GSMgr::GetTargetChannel(const ss::SS_WSP_RequestTargetServer& msg)
{
int channel = f8::ExtractChannelIdFromAccountId(msg.account_id());
if ((channel == 6000 || channel == 0) && !msg.url().empty()) {
std::vector<std::string> strings;
a8::Split(msg.url(), strings, '/');
if (strings.size() > 1) {
channel = a8::XValue(strings[1]);
}
}
if (!App::Instance()->IsSeparateChannel(channel)) {
channel = 0;
}
return channel;
}

View File

@ -48,6 +48,7 @@ class GSMgr : public a8::Singleton<GSMgr>
void RemoveNodeFromSortedNodes(GSNode* node);
std::vector<GSNode*>* GetSortedNodesByChannel(int channel);
void OnChannelChange(GSNode* node);
int GetTargetChannel(const ss::SS_WSP_RequestTargetServer& msg);
private:

View File

@ -5,7 +5,6 @@
#include "constant.h"
#include "types.h"
#include "error_code.h"
#include "global.h"
namespace google

View File

@ -22,6 +22,9 @@ message SS_WSP_RequestTargetServer
optional string server_info = 4;
optional int32 is_reconnect = 5;
optional int32 proto_version = 6; //Constant_e.ProtoVersion
optional string url = 7;
optional string query_str = 8;
optional string session_id = 9;
}
message SS_MS_ResponseTargetServer