acl  3.5.3.0
acl::fiber_tbox< T > 模板类 参考

#include <fiber_tbox.hpp>

+ acl::fiber_tbox< T > 的协作图:

Public 成员函数

 fiber_tbox (bool free_obj=true)
 
 ~fiber_tbox (void)
 
void clear (bool free_obj=false)
 
bool push (T *t, bool notify_first=true)
 
T * pop (int wait_ms=-1, bool *found=NULL)
 
size_t size (void) const
 
void lock (void)
 
void unlock (void)
 

详细描述

template<typename T>
class acl::fiber_tbox< T >

用于协程之间,线程之间以及协程与线程之间的消息通信,通过协程条件变量 及协程事件锁实现

示例:

class myobj { public: myobj(void) {} ~myobj(void) {}

void test(void) { printf("hello world\r\n"); } };

acl::fiber_tbox<myobj> fiber_tbox;

void thread_producer(void) { myobj* o = new myobj; fiber_tbox.push(o); }

void thread_consumer(void) { myobj* o = fiber_tbox.pop(); o->test(); delete o; }

在文件 fiber_tbox.hpp42 行定义.

构造及析构函数说明

◆ fiber_tbox()

template<typename T>
acl::fiber_tbox< T >::fiber_tbox ( bool  free_obj = true)
inline

构造方法

参数
free_obj{bool} 当 fiber_tbox 销毁时,是否自动检查并释放 未被消费的动态对象

在文件 fiber_tbox.hpp50 行定义.

50 : size_(0), free_obj_(free_obj) {}

◆ ~fiber_tbox()

template<typename T>
acl::fiber_tbox< T >::~fiber_tbox ( void  )
inline

在文件 fiber_tbox.hpp52 行定义.

53  {
54  clear(free_obj_);
55  }
void clear(bool free_obj=false)
Definition: fiber_tbox.hpp:61

引用了 acl::fiber_tbox< T >::clear().

+ 函数调用图:

成员函数说明

◆ clear()

template<typename T>
void acl::fiber_tbox< T >::clear ( bool  free_obj = false)
inline

清理消息队列中未被消费的消息对象

参数
free_obj{bool} 释放调用 delete 方法删除消息对象

在文件 fiber_tbox.hpp61 行定义.

62  {
63  if (free_obj) {
64  for (typename std::list<T*>::iterator it =
65  tbox_.begin(); it != tbox_.end(); ++it) {
66 
67  delete *it;
68  }
69  }
70  tbox_.clear();
71  }

被这些函数引用 acl::fiber_tbox< T >::~fiber_tbox().

+ 这是这个函数的调用关系图:

◆ lock()

template<typename T>
void acl::fiber_tbox< T >::lock ( void  )
inline

在文件 fiber_tbox.hpp168 行定义.

169  {
170  if (event_.wait() == false) {
171  abort();
172  }
173  }
bool wait(void)

引用了 acl::fiber_event::wait().

+ 函数调用图:

◆ pop()

template<typename T>
T* acl::fiber_tbox< T >::pop ( int  wait_ms = -1,
bool *  found = NULL 
)
inline

接收消息对象

参数
wait_ms{int} >= 0 时设置等待超时时间(毫秒级别), 否则永远等待直到读到消息对象或出错
found{bool*} 非空时用来存放是否获得了一个消息对象,主要用在 当允许传递空对象时的检查
返回
{T*} 非 NULL 表示获得一个消息对象,返回 NULL 时得需要做进一 步检查,生产者如果 push 了一个空对象(NULL),则消费者也会获得 NULL, 但此时仍然认为获得了一个消息对象,只不过为空对象;如果 wait_ms 参数 为 -1 时返回 NULL 依然认为获得了一个空消息对象,如果 wait_ms 大于 等于 0 时返回 NULL,则应该检查 found 参数的值为 true 还是 false 来 判断是否获得了一个空消息对象

在文件 fiber_tbox.hpp127 行定义.

128  {
129  bool found_flag;
130  if (event_.wait() == false) {
131  abort();
132  }
133  while (true) {
134  T* t = peek(found_flag);
135  if (found_flag) {
136  if (event_.notify() == false) {
137  abort();
138  }
139  if (found) {
140  *found = found_flag;
141  }
142  return t;
143  }
144 
145  // 注意调用顺序,必须先调用 wait 再判断 wait_ms
146  if (!cond_.wait(event_, wait_ms) && wait_ms >= 0) {
147  if (event_.notify() == false) {
148  abort();
149  }
150  if (found) {
151  *found = false;
152  }
153  return NULL;
154  }
155  }
156  }
bool wait(fiber_event &event, int timeout=-1)
bool notify(void)
bool wait(void)

引用了 acl::fiber_event::notify(), acl::fiber_cond::wait() , 以及 acl::fiber_event::wait().

被这些函数引用 acl::go_fiber::operator<() , 以及 acl::go_fiber::operator<<().

+ 函数调用图:
+ 这是这个函数的调用关系图:

◆ push()

template<typename T>
bool acl::fiber_tbox< T >::push ( T *  t,
bool  notify_first = true 
)
inline

发送消息对象

参数
t{T*} 非空消息对象
notify_first{bool} 如果本参数为 true,则内部添加完消息后 采用先通知后解锁方式,否则采用先解锁后通知方式,当 fiber_tbox 对象 的生存周期比较长时,该参数设为 false 的效率更高,如果 fiber_tbox 对象的生存周期较短(如:等待者调用 pop 后直接销毁 fiber_tbox 对象), 则本参数应该设为 true,以避免 push 者还没有完全返回前因 fiber_tbox 对象被提前销毁而造成内存非法访问
返回
{bool}

在文件 fiber_tbox.hpp84 行定义.

85  {
86  // 先加锁
87  if (event_.wait() == false) {
88  abort();
89  }
90 
91  // 向队列中添加消息对象
92  tbox_.push_back(t);
93  size_++;
94 
95  if (notify_first) {
96  if (cond_.notify() == false) {
97  abort();
98  }
99  if (event_.notify() == false) {
100  abort();
101  }
102  return true;
103  } else {
104  if (event_.notify() == false) {
105  abort();
106  }
107  if (cond_.notify() == false) {
108  abort();
109  }
110  return true;
111  }
112  }
bool notify(void)
bool notify(void)
bool wait(void)

引用了 acl::fiber_cond::notify(), acl::fiber_event::notify() , 以及 acl::fiber_event::wait().

被这些函数引用 acl::go_fiber::operator<() , 以及 acl::go_fiber::operator<<().

+ 函数调用图:
+ 这是这个函数的调用关系图:

◆ size()

template<typename T>
size_t acl::fiber_tbox< T >::size ( void  ) const
inline

返回当前存在于消息队列中的消息数量

返回
{size_t}

在文件 fiber_tbox.hpp162 行定义.

163  {
164  return size_;
165  }

◆ unlock()

template<typename T>
void acl::fiber_tbox< T >::unlock ( void  )
inline

在文件 fiber_tbox.hpp175 行定义.

176  {
177  if (event_.notify() == false) {
178  abort();
179  }
180  }
bool notify(void)

引用了 acl::fiber_event::notify().

+ 函数调用图:

该类的文档由以下文件生成: