一、MutexLock 类

class  MutexLock  :  boost::noncopyable

二、MutexLockGuard类

class 
MutexLockGuard
 : 
boost::noncopyable

三、Condition类

class 
Condition
 : 
boost::noncopyable

某个线程:
加锁                                    
     while (条件)
          wait(); //1、解锁;2、等待通知;3、得到通知返回前重新加锁
解锁

另一个线程:
加锁
     更改条件
     通知notify(可以移到锁外)
解锁

四、CountDownLatch类

class 
CountDownLatch
 : 
boost::noncopyable

既可以用于所有子线程等待主线程发起 “起跑”


也可以用于主线程等待子线程初始化完毕才开始工作

下面写两个程序测试一下CountDownLatch 的作用:

CountDownLatch_test1:
 C++ Code 
1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

 
#include <muduo/base/CountDownLatch.h>


#include <muduo/base/Thread.h>

#include <boost/bind.hpp>


#include <boost/ptr_container/ptr_vector.hpp>


#include <string>


#include <stdio.h>

using 
namespace muduo;

class Test

{


public:

    Test(
int numThreads)

        : latch_(
),

          threads_(numThreads)

    {

        
for (
int i = 
; i < numThreads; ++i)

        {

            
char name[
];

            snprintf(name, 
sizeof name, 
"work thread %d", i);

            threads_.push_back(
new muduo::Thread(

                                   boost::bind(&Test::threadFunc, 
this), muduo::string(name)));

        }

        for_each(threads_.begin(), threads_.end(), boost::bind(&Thread::start, _1));

    }

void run()

    {

        latch_.countDown();

    }

void joinAll()

    {

        for_each(threads_.begin(), threads_.end(), boost::bind(&Thread::join, _1));

    }

private:

void threadFunc()

    {

        latch_.wait();

        printf(
"tid=%d, %s started\n",

               CurrentThread::tid(),

               CurrentThread::name());

printf(
"tid=%d, %s stopped\n",

               CurrentThread::tid(),

               CurrentThread::name());

    }

CountDownLatch latch_;

    boost::ptr_vector<Thread> threads_;

};

int main()

{

    printf(
"pid=%d, tid=%d\n", ::getpid(), CurrentThread::tid());

    Test t(
);

    sleep(
);

    printf(
"pid=%d, tid=%d %s running ...\n", ::getpid(), CurrentThread::tid(), CurrentThread::name());

    t.run();

    t.joinAll();

printf(
"number of created threads %d\n", Thread::numCreated());

}

执行结果如下:

simba@ubuntu:~/Documents/build/debug/bin$ ./countdownlatch_test1
pid=2994, tid=2994
pid=2994, tid=2994 main running ...
tid=2997, work thread 2 started
tid=2997, work thread 2 stopped
tid=2996, work thread 1 started
tid=2996, work thread 1 stopped
tid=2995, work thread 0 started
tid=2995, work thread 0 stopped
number of created threads 3
simba@ubuntu:~/Documents/build/debug/bin$

可以看到其他三个线程一直等到主线程睡眠完执行run(),在里面执行latch_.countDown() 将计数减为0,进而执行notifyall 唤醒后,才开始执行下来。

CountDownLatch_test2:
 C++ Code 
1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

 
#include <muduo/base/CountDownLatch.h>


#include <muduo/base/Thread.h>

#include <boost/bind.hpp>


#include <boost/ptr_container/ptr_vector.hpp>


#include <string>


#include <stdio.h>

using 
namespace muduo;

class Test

{


public:

    Test(
int numThreads)

        : latch_(numThreads),

          threads_(numThreads)

    {

        
for (
int i = 
; i < numThreads; ++i)

        {

            
char name[
];

            snprintf(name, 
sizeof name, 
"work thread %d", i);

            threads_.push_back(
new muduo::Thread(

                                   boost::bind(&Test::threadFunc, 
this), muduo::string(name)));

        }

        for_each(threads_.begin(), threads_.end(), boost::bind(&muduo::Thread::start, _1));

    }

void wait()

    {

        latch_.wait();

    }

void joinAll()

    {

        for_each(threads_.begin(), threads_.end(), boost::bind(&Thread::join, _1));

    }

private:

void threadFunc()

    {

        sleep(
);

       printf(
"tid=%d, %s started\n"
,


               CurrentThread::tid(),


               CurrentThread::name());

        latch_.countDown();

printf(
"tid=%d, %s stopped\n",

               CurrentThread::tid(),

               CurrentThread::name());

    }

CountDownLatch latch_;

    boost::ptr_vector<Thread> threads_;

};

int main()

{

    printf(
"pid=%d, tid=%d\n", ::getpid(), CurrentThread::tid());

    Test t(
);

    t.wait();

    printf(
"pid=%d, tid=%d %s running ...\n", ::getpid(), CurrentThread::tid(), CurrentThread::name());

    t.joinAll();

printf(
"number of created threads %d\n", Thread::numCreated());

}

执行结果输出如下:

simba@ubuntu:~/Documents/build/debug/bin$ ./countdownlatch_test2
pid=4488, tid=4488
tid=4491, work thread 2 started
tid=4491, work thread 2 stopped
tid=4490, work thread 1 started
tid=4490, work thread 1 stopped
tid=4489, work thread 0 started
pid=4488, tid=4488 main running ...
tid=4489, work thread 0 stopped
number of created threads 3

可以看出当其他三个线程都启动后,各自执行一次 latch_.countDown(),主线程wait() 返回继续执行下去。

参考:
muduo manual.pdf
《linux 多线程服务器编程:使用muduo c++网络库》

muduo网络库学习之MutexLock类、MutexLockGuard类、Condition类、CountDownLatch类封装中的知识点的更多相关文章

  1. muduo网络库学习笔记(四) 通过eventfd实现的事件通知机制

    目录 muduo网络库学习笔记(四) 通过eventfd实现的事件通知机制 eventfd的使用 eventfd系统函数 使用示例 EventLoop对eventfd的封装 工作时序 runInLoo ...

  2. muduo网络库学习笔记(五) 链接器Connector与监听器Acceptor

    目录 muduo网络库学习笔记(五) 链接器Connector与监听器Acceptor Connector 系统函数connect 处理非阻塞connect的步骤: Connetor时序图 Accep ...

  3. muduo网络库学习笔记(三)TimerQueue定时器队列

    目录 muduo网络库学习笔记(三)TimerQueue定时器队列 Linux中的时间函数 timerfd简单使用介绍 timerfd示例 muduo中对timerfd的封装 TimerQueue的结 ...

  4. muduo 网络库学习之路(一)

    前提介绍: 本人是一名大三学生,主要使用C++开发,兴趣是高性能的服务器方面. 网络开发离不开网络库,所以今天开始学一个新的网络库,陈老师的muduo库 我参考的书籍就是陈老师自己关于muduo而编著 ...

  5. muduo网络库学习笔记(10):定时器的实现

    传统的Reactor通过控制select和poll的等待时间来实现定时,而现在在Linux中有了timerfd,我们可以用和处理IO事件相同的方式来处理定时,代码的一致性更好. 一.为什么选择time ...

  6. muduo网络库架构总结

    目录 muduo网络库简介 muduo网络库模块组成 Recator反应器 EventLoop的两个组件 TimerQueue定时器 Eventfd Connector和Acceptor连接器和监听器 ...

  7. muduo网络库源码学习————Timestamp.cc

    今天开始学习陈硕先生的muduo网络库,moduo网络库得到很多好评,陈硕先生自己也说核心代码不超过5000行,所以我觉得有必要拿过来好好学习下,学习的时候在源码上面添加一些自己的注释,方便日后理解, ...

  8. 长文梳理muduo网络库核心代码、剖析优秀编程细节

    前言 muduo库是陈硕个人开发的tcp网络编程库,支持Reactor模型,推荐大家阅读陈硕写的<Linux多线程服务端编程:使用muduo C++网络库>.本人前段时间出于个人学习.找工 ...

  9. muduo网络库使用心得

    上个月看了朋友推荐的mudo网络库,下完代码得知是国内同行的开源作品,甚是敬佩.下了mudo使用手冊和035版的代码看了下结构,感觉是一个比較成熟并且方便使用的网络库.本人手头也有自己的网络库,尽管不 ...

随机推荐

  1. eclipse zg项目学习

    一.基本知识 1.新增测试系统: xx/jsp:用于摆放jsp xx/src:放置java source 2.在项目上,右键,New-Folder,新建xx文件夹. 同样的方法,在xx文件夹上,右键N ...

  2. springboot取得resources下的文件

    参考http://blog.csdn.net/programmeryu/article/details/58002218 ResourceUtils.getFile("classpath:p ...

  3. 115. Distinct Subsequences (String; DP)

    Given a string S and a string T, count the number of distinct subsequences of T in S. A subsequence ...

  4. Aactivity和Service之间的通信

    一.在activity中定义三个按钮 一个开启服务  一个关闭服务,还有一个是向服务发送广播 当创建出Serevice时先执行Service的onCreate()创建服务后只执行一次 以后每次点击开启 ...

  5. dede数据库内容替换,去掉文章内容中的img标签

    1.织梦已经给我们准备好了数据库内容替换工具,在采集->批量维护->数据库内容替换 2.织梦的文章内容一般在放在dede_addonarticle表body字段中. (1).选择好数据表和 ...

  6. 如何在64位WIN7旗舰版下安装SQL2000

    1>找到安装包下面的“DEVELOPER”或“ENTERPRISE”等下的X86\SETUP下的“SETUPSQL.EXE”,在安装前右键单击这个文 件, 1.1 打开“兼容性”标签,兼容模式选 ...

  7. cannot convert from 'wchar_t *' to 'char *' 问题

    MFC中使用unicode 会导致cstring之间的转换变的很复杂 经常遇到这样的错误cannot convert from 'wchar_t *' to 'char *' 强制转换成wchar_t ...

  8. bootstrap下modal模态框中webuploader控件按钮异常(无法点击)问题解决办法【转】

    http://bbs.csdn.net/topics/391917552 具体如下:   $(function () {         var _$modal = $('#MyModal');    ...

  9. NFS 挂载 + autofs

    NFS:Network File System RPC:Remote Procedure Call 一.手动挂载  (mount -t nfs 服务端IP:/共享目录  /本地挂载点) 客户端 1.安 ...

  10. Jmeter如何把CSV文件的路径设置成一个变量,且变量的值是一个相对路径

    首先,在Jmeter中,通过User Defined Variables设置一个变量用来存储CSV文件所在文件夹的相对路径 备注: 这个相对路径前面不要加.\ 加了的话在运行的时候会报错,提示找不到那 ...