EventPoller.h 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. /*
  2. * Copyright (c) 2016 The ZLToolKit project authors. All Rights Reserved.
  3. *
  4. * This file is part of ZLToolKit(https://github.com/xia-chu/ZLToolKit).
  5. *
  6. * Use of this source code is governed by MIT license that can be found in the
  7. * LICENSE file in the root of the source tree. All contributing project authors
  8. * may be found in the AUTHORS file in the root of the source tree.
  9. */
  10. #ifndef EventPoller_h
  11. #define EventPoller_h
  12. #include <mutex>
  13. #include <thread>
  14. #include <string>
  15. #include <functional>
  16. #include <memory>
  17. #include <unordered_map>
  18. #include "PipeWrap.h"
  19. #include "Util/logger.h"
  20. #include "Util/util.h"
  21. #include "Util/List.h"
  22. #include "Thread/TaskExecutor.h"
  23. #include "Thread/ThreadPool.h"
  24. #include "Network/Buffer.h"
  25. using namespace std;
  26. #if defined(__linux__) || defined(__linux)
  27. #define HAS_EPOLL
  28. #endif //__linux__
  29. namespace toolkit {
  30. typedef enum {
  31. Event_Read = 1 << 0, //读事件
  32. Event_Write = 1 << 1, //写事件
  33. Event_Error = 1 << 2, //错误事件
  34. Event_LT = 1 << 3,//水平触发
  35. } Poll_Event;
  36. using PollEventCB = function<void(int event)>;
  37. using PollDelCB = function<void(bool success)>;
  38. using DelayTask = TaskCancelableImp<uint64_t(void)>;
  39. class EventPoller : public TaskExecutor, public AnyStorage, public std::enable_shared_from_this<EventPoller> {
  40. public:
  41. using Ptr = std::shared_ptr<EventPoller>;
  42. friend class TaskExecutorGetterImp;
  43. ~EventPoller();
  44. /**
  45. * 获取EventPollerPool单例中的第一个EventPoller实例,
  46. * 保留该接口是为了兼容老代码
  47. * @return 单例
  48. */
  49. static EventPoller &Instance();
  50. /**
  51. * 添加事件监听
  52. * @param fd 监听的文件描述符
  53. * @param event 事件类型,例如 Event_Read | Event_Write
  54. * @param eventCb 事件回调functional
  55. * @return -1:失败,0:成功
  56. */
  57. int addEvent(int fd, int event, PollEventCB eventCb);
  58. /**
  59. * 删除事件监听
  60. * @param fd 监听的文件描述符
  61. * @param delCb 删除成功回调functional
  62. * @return -1:失败,0:成功
  63. */
  64. int delEvent(int fd, PollDelCB delCb = nullptr);
  65. /**
  66. * 修改监听事件类型
  67. * @param fd 监听的文件描述符
  68. * @param event 事件类型,例如 Event_Read | Event_Write
  69. * @return -1:失败,0:成功
  70. */
  71. int modifyEvent(int fd, int event);
  72. /**
  73. * 异步执行任务
  74. * @param task 任务
  75. * @param may_sync 如果调用该函数的线程就是本对象的轮询线程,那么may_sync为true时就是同步执行任务
  76. * @return 是否成功,一定会返回true
  77. */
  78. Task::Ptr async(TaskIn task, bool may_sync = true) override ;
  79. /**
  80. * 同async方法,不过是把任务打入任务列队头,这样任务优先级最高
  81. * @param task 任务
  82. * @param may_sync 如果调用该函数的线程就是本对象的轮询线程,那么may_sync为true时就是同步执行任务
  83. * @return 是否成功,一定会返回true
  84. */
  85. Task::Ptr async_first(TaskIn task, bool may_sync = true) override ;
  86. /**
  87. * 判断执行该接口的线程是否为本对象的轮询线程
  88. * @return 是否为本对象的轮询线程
  89. */
  90. bool isCurrentThread();
  91. /**
  92. * 延时执行某个任务
  93. * @param delayMS 延时毫秒数
  94. * @param task 任务,返回值为0时代表不再重复任务,否则为下次执行延时,如果任务中抛异常,那么默认不重复任务
  95. * @return 可取消的任务标签
  96. */
  97. DelayTask::Ptr doDelayTask(uint64_t delayMS, function<uint64_t()> task);
  98. /**
  99. * 获取当前线程关联的Poller实例
  100. */
  101. static EventPoller::Ptr getCurrentPoller();
  102. /**
  103. * 获取当前线程下所有socket共享的读缓存
  104. */
  105. BufferRaw::Ptr getSharedBuffer();
  106. /**
  107. * 获取poller线程id
  108. */
  109. const thread::id& getThreadId() const;
  110. private:
  111. /**
  112. * 本对象只允许在EventPollerPool中构造
  113. */
  114. EventPoller(ThreadPool::Priority priority = ThreadPool::PRIORITY_HIGHEST);
  115. /**
  116. * 执行事件轮询
  117. * @param blocked 是否用执行该接口的线程执行轮询
  118. * @param regist_self 是否注册到全局map
  119. */
  120. void runLoop(bool blocked , bool regist_self);
  121. /**
  122. * 内部管道事件,用于唤醒轮询线程用
  123. */
  124. void onPipeEvent();
  125. /**
  126. * 切换线程并执行任务
  127. * @param task
  128. * @param may_sync
  129. * @param first
  130. * @return 可取消的任务本体,如果已经同步执行,则返回nullptr
  131. */
  132. Task::Ptr async_l(TaskIn task, bool may_sync = true,bool first = false) ;
  133. /**
  134. * 阻塞当前线程,等待轮询线程退出;
  135. * 在执行shutdown接口时本函数会退出
  136. */
  137. void wait() ;
  138. /**
  139. * 结束事件轮询
  140. * 需要指出的是,一旦结束就不能再次恢复轮询线程
  141. */
  142. void shutdown();
  143. /**
  144. * 刷新延时任务
  145. */
  146. uint64_t flushDelayTask(uint64_t now);
  147. /**
  148. * 获取select或epoll休眠时间
  149. */
  150. uint64_t getMinDelay();
  151. private:
  152. class ExitException : public std::exception{
  153. public:
  154. ExitException(){}
  155. ~ExitException(){}
  156. };
  157. private:
  158. //标记loop线程是否退出
  159. bool _exit_flag;
  160. //当前线程下,所有socket共享的读缓存
  161. weak_ptr<BufferRaw> _shared_buffer;
  162. //线程优先级
  163. ThreadPool::Priority _priority;
  164. //正在运行事件循环时该锁处于被锁定状态
  165. mutex _mtx_runing;
  166. //执行事件循环的线程
  167. thread *_loop_thread = nullptr;
  168. //事件循环的线程id
  169. thread::id _loop_thread_id;
  170. //通知事件循环的线程已启动
  171. semaphore _sem_run_started;
  172. //内部事件管道
  173. PipeWrap _pipe;
  174. //从其他线程切换过来的任务
  175. mutex _mtx_task;
  176. List<Task::Ptr> _list_task;
  177. //保持日志可用
  178. Logger::Ptr _logger;
  179. #if defined(HAS_EPOLL)
  180. //epoll相关
  181. int _epoll_fd = -1;
  182. unordered_map<int, std::shared_ptr<PollEventCB> > _event_map;
  183. #else
  184. //select相关
  185. struct Poll_Record {
  186. using Ptr = std::shared_ptr<Poll_Record>;
  187. int event;
  188. int attach;
  189. PollEventCB callBack;
  190. };
  191. unordered_map<int, Poll_Record::Ptr> _event_map;
  192. #endif //HAS_EPOLL
  193. //定时器相关
  194. multimap<uint64_t, DelayTask::Ptr> _delay_task_map;
  195. };
  196. class EventPollerPool : public std::enable_shared_from_this<EventPollerPool>, public TaskExecutorGetterImp {
  197. public:
  198. using Ptr = std::shared_ptr<EventPollerPool>;
  199. ~EventPollerPool(){};
  200. /**
  201. * 获取单例
  202. * @return
  203. */
  204. static EventPollerPool &Instance();
  205. /**
  206. * 设置EventPoller个数,在EventPollerPool单例创建前有效
  207. * 在不调用此方法的情况下,默认创建thread::hardware_concurrency()个EventPoller实例
  208. * @param size EventPoller个数,如果为0则为thread::hardware_concurrency()
  209. */
  210. static void setPoolSize(size_t size = 0);
  211. /**
  212. * 获取第一个实例
  213. * @return
  214. */
  215. EventPoller::Ptr getFirstPoller();
  216. /**
  217. * 根据负载情况获取轻负载的实例
  218. * 如果优先返回当前线程,那么会返回当前线程
  219. * 返回当前线程的目的是为了提高线程安全性
  220. * @param prefer_current_thread 是否优先获取当前线程
  221. */
  222. EventPoller::Ptr getPoller(bool prefer_current_thread = true);
  223. /**
  224. * 设置 getPoller() 是否优先返回当前线程
  225. * 在批量创建Socket对象时,如果优先返回当前线程,
  226. * 那么将导致负载不够均衡,所以可以暂时关闭然后再开启
  227. * @param flag 是否优先返回当前线程
  228. */
  229. void preferCurrentThread(bool flag = true);
  230. private:
  231. EventPollerPool() ;
  232. private:
  233. bool _preferCurrentThread = true;
  234. };
  235. } // namespace toolkit
  236. #endif /* EventPoller_h */