提示:文章写完后,目录可以自动生成,如何生成可参考右边的资助文档
前言
我们的网络通信框架使用的muduo库,而在mudu库中是已经有了毗连的概念,但是我们呢还有一个信道的概念muduo库是没有的。实在muduo库是有一个channel的概念的,只不外这个概念和我们这里的channel不一样。
这也就是我们要封装这个模块的意义。
管理的字段
有一个信道内存管理句柄,因为一个毗连上可以有多个信道。
- class Connection
- {
- private:
- muduo::net::TcpConnectionPtr _conn;
- ProtobufCodecPtr _codec;
- VirtualHost::ptr _host;
- ConsumerManager::ptr _cmp;
- ThreadPool::ptr _pool;
- ChannelManager::ptr _channels;
- }
复制代码 提供了三个操作分别是的打开信道,关闭信道和获取指定信道。
就是调用信道内存管理句柄进行操作。
打开信道和关闭都是必要给客户端返回响应的。
- void openChannel(const openChannelRequestPtr &req){
- bool ret = _channels->openChannel(req->cid(),_host,_cmp,_codec,_conn,_pool);
- if(ret == false)
- {
- return basicResponse(false,req->rid(),req->cid());
- }
- return basicResponse(true,req->rid(),req->cid());
- }
- void closeChannel(const closeChannelRequestPtr &req){
- _channels->closeChannel(req->cid());
- return basicResponse(true, req->rid(), req->cid());
- }
- Channel::ptr getChannel(const std::string &cid){
- return _channels->getChannel(cid);
- }
复制代码 毗连内存管理对象
服务器上可能会存在多条链接,因此我们也必要把毗连受理起来
通过一个哈希表,建立tcp毗连和毗连受理对象的映射。
- class ConnectionManager
- {
- private:
- std::mutex _mutex;
- std::unordered_map<muduo::net::TcpConnectionPtr,Connection::ptr> _conns;
- }
复制代码 提供三个操作,新建毗连。关闭毗连和获取指定毗连。
在服务器中就必要管理这个句柄,就可以管理所有的channel了。
- void newConnection(const VirtualHost::ptr &host,
- const ConsumerManager::ptr &cmp,
- const ProtobufCodecPtr &codec,
- const muduo::net::TcpConnectionPtr &conn,
- const ThreadPool::ptr &pool){
- std::unique_lock<std::mutex> lock(_mutex);
- auto it = _conns.find(conn);
- if (it != _conns.end()) {
- return ;
- }
- Connection::ptr self_conn = std::make_shared<Connection>(host,cmp, codec, conn, pool);
- _conns.insert(std::make_pair(conn, self_conn));
- }
- void delConnection(const muduo::net::TcpConnectionPtr &conn){
- std::unique_lock<std::mutex> lock(_mutex);
- _conns.erase(conn);
- }
- Connection::ptr getConnection(const muduo::net::TcpConnectionPtr &conn){
- std::unique_lock<std::mutex> lock(_mutex);
- auto it = _conns.find(conn);
- if (it == _conns.end()) {
- return Connection::ptr();
- }
- return it->second;
- }
复制代码 免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |