Code Monkey home page Code Monkey logo

Comments (8)

walkor avatar walkor commented on July 2, 2024 1

需要带上,不然怎么知道给谁发呢,必须有个id标示

from gatewayworker.

wangfengfly avatar wangfengfly commented on July 2, 2024

向某个用户的网关发送消息函数:
protected static function sendCmdAndMessageToClient($client_id, $cmd, $message, $ext_data = '')
{
// 如果是发给当前用户则直接获取上下文中的地址
if ($client_id === Context::$client_id || $client_id === null) {
$address = long2ip(Context::$local_ip) . ':' . Context::$local_port;
$connection_id = Context::$connection_id;
} else {
$address_data = Context::clientIdToAddress($client_id);
if (!$address_data) {
return false;
}
$address = long2ip($address_data['local_ip']) . ":{$address_data['local_port']}";
$connection_id = $address_data['connection_id'];
}
businessworker接收gateway发送的消息回调:
public function onGatewayMessage($connection, $data){
// 上下文数据
Context::$client_ip = $data['client_ip'];
Context::$client_port = $data['client_port'];
Context::$local_ip = $data['local_ip'];
Context::$local_port = $data['local_port'];
Context::$connection_id = $data['connection_id'];
Context::$client_id = Context::addressToClientId($data['local_ip'], $data['local_port'],
$data['connection_id']);
...
// 尝试执行 Event::onConnection、Event::onMessage、Event::onClose
switch ($cmd) {
case GatewayProtocol::CMD_ON_CONNECT:
if ($this->_eventOnConnect) {
call_user_func($this->_eventOnConnect, Context::$client_id);
}
break;
case GatewayProtocol::CMD_ON_MESSAGE:
if ($this->_eventOnMessage) {
call_user_func($this->_eventOnMessage, Context::$client_id, $data['body']);
}
break;
}
可以看到eventOnMessage接收的client_id参数就是 Context::$client_id, 所以gateway分布部署在多台机器时,这种路由怎么实现的呢?

from gatewayworker.

walkor avatar walkor commented on July 2, 2024

http://doc2.workerman.net/principle.html
这里有原理图

from gatewayworker.

wangfengfly avatar wangfengfly commented on July 2, 2024

你好,我之前看到原理图了,只是在代码里面没有找到这部分的路由过程。是不是这个需要客户端c1给c2发消息的时候,包含c2的client_id进去,然后这个路由过程由业务代码自己实现?

from gatewayworker.

walkor avatar walkor commented on July 2, 2024

路由是自动的,需要带上client_id

from gatewayworker.

wangfengfly avatar wangfengfly commented on July 2, 2024

比如c1给c2发消息,是要带上c2的client_id吗?如果是,那我就明白了,谢谢。

from gatewayworker.

wangfengfly avatar wangfengfly commented on July 2, 2024

好的,谢谢~

from gatewayworker.

walkor avatar walkor commented on July 2, 2024

不客气

from gatewayworker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.