acl  3.5.3.0
master_fiber.hpp
浏览该文件的文档.
1 #pragma once
2 #include "fiber_cpp_define.hpp"
3 //#include "acl_cpp/master/master_base.hpp"
4 
5 struct ACL_VSTREAM;
6 
7 namespace acl {
8 
9 class socket_stream;
10 
11 /**
12  * 基于协程方式的网络服务类
13  */
15 {
16 public:
17  /**
18  * 在 acl_master 框架下运行本网络服务对象
19  * @param argc {int} 传入的参数数组大小
20  * @param argv {char**} 传入的参数数组
21  */
22  void run_daemon(int argc, char** argv);
23 
24  /**
25  * 以独立运行模式启动本网络服务对象
26  * @param addrs {const char*} 监听的本机服务地址列表,格式:
27  * ip:port, ip:port, ...
28  * @param path {const char*} 非 NULL 指定配置文件路径
29  */
30  bool run_alone(const char* addrs, const char* path = NULL);
31 
32  /**
33  * 获得配置文件路径
34  * @return {const char*} 返回值为 NULL 表示没有设配置文件
35  */
36  const char* get_conf_path(void) const;
37 
38 protected:
39  master_fiber();
40 
41  virtual ~master_fiber();
42 
43  /**
44  * 虚函数,当协程服务器接收到客户端连接后调用本函数
45  * @param stream {socket_stream&} 客户端连接对象,本函数返回后,协程
46  * 服务框架将会关闭该连接对象
47  */
48  virtual void on_accept(socket_stream& stream) = 0;
49 
50  /**
51  * 当线程初始化时该虚方法将被调用
52  */
53  virtual void thread_on_init(void) {}
54 
55 private:
56  static void service_on_listen(void*, ACL_VSTREAM*);
57  static void service_on_accept(void*, ACL_VSTREAM*);
58  static void service_pre_jail(void*);
59  static void service_init(void*);
60  static void thread_init(void*);
61  static void service_exit(void*);
62  static int service_on_sighup(void*, ACL_VSTRING*);
63 
64  void run(int argc, char** argv);
65 };
66 
67 } // namespace acl
#define FIBER_CPP_API
virtual void thread_on_init(void)