热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

主从reactor模式

muduo中,类EventLoopThreadPool的构造函数将成员numThreads_设置为0,表示默认不开启主从Reactor模式,

muduo中,类EventLoopThreadPool的构造函数将成员numThreads_设置为0,表示默认不开启主从Reactor模式,即单Reactor模式。
Reactor模式中,该Reactor负责监听新连接的到来、套接字的可读可写。

通过在调用void TcpServer::start()之前,调用EventLoopThreadPool::setThreadNum()。即可开启主从Reactor模式

TcpServer的结构如下:

class TcpServer : noncopyable
{
public:...
private:EventLoop* loop_; // the acceptor loop...std::shared_ptr<EventLoopThreadPool> threadPool_;...
};

TcpServer构造时&#xff0c;传入已经构造好的EventLoop对象赋值给成员loop_&#xff0c;loop_运行在主线程中。
称这个EventLoop主Reactor&#xff0c;只会负责监听新的连接请求

TcpServer::TcpServer(EventLoop* loop,const InetAddress& listenAddr,const string& nameArg,Option option): loop_(CHECK_NOTNULL(loop)), // 外部直接传入ipPort_(listenAddr.toIpPort()),name_(nameArg),acceptor_(new Acceptor(loop, listenAddr, option &#61;&#61; kReusePort)), // 将loop_作为主reactor使用threadPool_(new EventLoopThreadPool(loop, name_)),connectionCallback_(defaultConnectionCallback),messageCallback_(defaultMessageCallback),nextConnId_(1)
{acceptor_->setNewConnectionCallback(std::bind(&TcpServer::newConnection, this, _1, _2));
}

服务器启动时&#xff0c;会调用TcpServer::start()&#xff0c;其中又会调用EventLoopThreadPool::start(const ThreadInitCallback& cb)&#xff0c;用来初始化并运行子线程并保存在TcpServer::threadPool_中&#xff0c;这些子线程中运行着EventLoop的无限事件循环。称这些运行在EventLoopThread中的EventLoop从Reactor

void TcpServer::start()
{if (started_.getAndSet(1) &#61;&#61; 0){threadPool_->start(threadInitCallback_);assert(!acceptor_->listenning());loop_->runInLoop(std::bind(&Acceptor::listen, get_pointer(acceptor_)));}
}

void EventLoopThreadPool::start(const ThreadInitCallback& cb)
{assert(!started_);baseLoop_->assertInLoopThread();started_ &#61; true;for (int i &#61; 0; i < numThreads_; &#43;&#43;i){char buf[name_.size() &#43; 32];snprintf(buf, sizeof buf, "%s%d", name_.c_str(), i);EventLoopThread* t &#61; new EventLoopThread(cb, buf);threads_.push_back(std::unique_ptr<EventLoopThread>(t));loops_.push_back(t->startLoop());}if (numThreads_ &#61;&#61; 0 && cb){cb(baseLoop_);}
}

对于已经连接的套接字&#xff0c;监听它们的事件&#xff0c;由从Reactor负责, 也即是运行在子线程中的EventLoop负责
当需要一个从Reactor时&#xff0c;需要调用EventLoopThreadPool->getNextLoop();

void TcpServer::newConnection(int sockfd, const InetAddress& peerAddr)
{loop_->assertInLoopThread();EventLoop* ioLoop &#61; threadPool_->getNextLoop(); // 这里获取一个从reactorchar buf[64];snprintf(buf, sizeof buf, "-%s#%d", ipPort_.c_str(), nextConnId_);&#43;&#43;nextConnId_;string connName &#61; name_ &#43; buf;LOG_INFO << "TcpServer::newConnection [" << name_<< "] - new connection [" << connName<< "] from " << peerAddr.toIpPort();InetAddress localAddr(sockets::getLocalAddr(sockfd));// FIXME poll with zero timeout to double confirm the new connection// FIXME use make_shared if necessaryTcpConnectionPtr conn(new TcpConnection(ioLoop,connName,sockfd,localAddr,peerAddr));...;
}

EventLoop* EventLoopThreadPool::getNextLoop()
{baseLoop_->assertInLoopThread();assert(started_);EventLoop* loop &#61; baseLoop_;if (!loops_.empty()){// round-robinloop &#61; loops_[next_];&#43;&#43;next_;if (implicit_cast<size_t>(next_) >&#61; loops_.size()){next_ &#61; 0;}}return loop;
}

推荐阅读
author-avatar
酸葡萄洗澡她_606
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有