一、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. 罗伯特•盖洛博士(Dr. Robert Charles Gallo)是世界著名的美国生物医学家,他以共同发现了人类免疫缺陷病毒(HIV)――这一导致获得性免疫缺陷综合症(AIDS)的致病源而闻名于世。

    罗伯特•盖洛 开放分类:各国生物学家|生物学家罗伯特•盖洛博士(Dr. Robert Charles Gallo)是世界著名的美国生物医学家,他以共同发现了人类免疫缺陷病毒(HIV)――这一导致获得性 ...

  2. 登陆sharepoint的主页,提示:文件存在(异常来自 HRESULT:0x80070050)

    用sharepoint搭建了Project2007的服务器之后,由于我们公司管理域的服务器崩溃了,必须重新再加一次域,而域和服务器是关联的,即使域的名字一样,但该名字所对应的ID是不一样的,会导致一些 ...

  3. kubeadmin 部署(centos 7)

    安装指定版本docker:# yum list docker-ce --showduplicates | sort -ryum install docker-ce-18.06.1.ce-3.el7vi ...

  4. SpringBoot yml properties文件

    一.在SpringBoot实现属性注入: 1).添加pom依赖jar包: 1 <!-- 支持 @ConfigurationProperties 注解 --> 2 <!-- https ...

  5. Maven(一)——Maven入门

    一.Maven的基本概念 Maven(翻译为"专家","内行")是跨平台的项目管理工具.主要服务于基于Java平台的项目构建,依赖管理和项目信息管理. 1.1. ...

  6. Cannot create inner bean '(inner bean)#67f903b5' of typ

    严重: Context initialization failedorg.springframework.beans.factory.BeanCreationException: Error crea ...

  7. 阿里云SSL证书tomcat配置

    1. SSL证书申请 登录阿里云控制台,查看购买域名中有SSL证书的申请,ssl证书申请中有单域名的申请,配置要申请的域名信息(注意:一个域名下,一次只能添加一个证书,最多申请3个免费证书用于测试), ...

  8. Python format 格式化函数。

    Python format 格式化函数  Python 字符串 Python2.6 开始,新增了一种格式化字符串的函数 str.format(),它增强了字符串格式化的功能. 基本语法是通过 {} 和 ...

  9. 利用python实现二分法和斐波那契序列

    利用python实现二分法:我的实现思路如下 1.判断要查找的值是否大于最大值,如果大于则直接返回False 2.判断要查找的值是否小于最小值,如果小于则直接返回False 3.如果要查找的值在最大值 ...

  10. SQL2000清除SQL日志

    1.打开查询分析器,输入命令DUMP TRANSACTION 数据库名 WITH NO_LOG2.再打开企业管理器--右键你要压缩的数据库--所有任务--收缩数据库--收缩文件--选择日志文件--在收 ...