Linux C++ 实现线程池

http://blog.csdn.net/qq_25425023/article/details/53914609

线程池中的线程,在任务队列为空的时候,等待任务的到来,任务队列中有任务时,则依次获取任务来执行,任务队列需要同步。

  Linux线程同步有多种方法:互斥量、信号量、条件变量等。


  下面是根据互斥量、信号量、条件变量封装的三个类。

  线程池中用到了互斥量和信号量。

 

[cpp] view plain copy
  1. #ifndef _LOCKER_H_  
  2. #define _LOCKER_H_  
  3.   
  4. #include <pthread.h>  
  5. #include <stdio.h>  
  6. #include <semaphore.h>  
  7.   
  8. /*信号量的类*/  
  9. class sem_locker  
  10. {  
  11. private:  
  12.     sem_t m_sem;  
  13.   
  14. public:  
  15.     //初始化信号量  
  16.     sem_locker()  
  17.     {  
  18.     if(sem_init(&m_sem, 0, 0) != 0)  
  19.         printf("sem init error\n");  
  20.     }  
  21.     //销毁信号量  
  22.     ~sem_locker()  
  23.     {  
  24.     sem_destroy(&m_sem);  
  25.     }  
  26.   
  27.     //等待信号量  
  28.     bool wait()  
  29.     {  
  30.     return sem_wait(&m_sem) == 0;  
  31.     }  
  32.     //添加信号量  
  33.     bool add()  
  34.     {  
  35.     return sem_post(&m_sem) == 0;  
  36.     }  
  37. };  
  38.   
  39.   
  40. /*互斥 locker*/  
  41. class mutex_locker  
  42. {  
  43. private:  
  44.     pthread_mutex_t m_mutex;  
  45.   
  46. public:  
  47.     mutex_locker()  
  48.     {  
  49.         if(pthread_mutex_init(&m_mutex, NULL) != 0)  
  50.         printf("mutex init error!");  
  51.     }  
  52.     ~mutex_locker()  
  53.     {  
  54.     pthread_mutex_destroy(&m_mutex);  
  55.     }  
  56.   
  57.     bool mutex_lock()  //lock mutex  
  58.     {  
  59.     return pthread_mutex_lock(&m_mutex) == 0;  
  60.     }  
  61.     bool mutex_unlock()   //unlock  
  62.     {  
  63.     return pthread_mutex_unlock(&m_mutex) == 0;  
  64.     }  
  65. };  
  66.   
  67. /*条件变量 locker*/  
  68. class cond_locker  
  69. {  
  70. private:  
  71.     pthread_mutex_t m_mutex;  
  72.     pthread_cond_t m_cond;  
  73.   
  74. public:  
  75.     // 初始化 m_mutex and m_cond  
  76.     cond_locker()  
  77.     {  
  78.     if(pthread_mutex_init(&m_mutex, NULL) != 0)  
  79.         printf("mutex init error");  
  80.     if(pthread_cond_init(&m_cond, NULL) != 0)  
  81.     {   //条件变量初始化是被,释放初始化成功的mutex  
  82.         pthread_mutex_destroy(&m_mutex);  
  83.         printf("cond init error");  
  84.     }  
  85.     }  
  86.     // destroy mutex and cond  
  87.     ~cond_locker()  
  88.     {  
  89.     pthread_mutex_destroy(&m_mutex);  
  90.     pthread_cond_destroy(&m_cond);  
  91.     }  
  92.     //等待条件变量  
  93.     bool wait()  
  94.     {  
  95.     int ans = 0;  
  96.     pthread_mutex_lock(&m_mutex);  
  97.     ans = pthread_cond_wait(&m_cond, &m_mutex);  
  98.     pthread_mutex_unlock(&m_mutex);  
  99.     return ans == 0;  
  100.     }  
  101.     //唤醒等待条件变量的线程  
  102.     bool signal()  
  103.     {  
  104.     return pthread_cond_signal(&m_cond) == 0;  
  105.     }  
  106.   
  107. };  
  108.   
  109. #endif  

下面的是线程池类,是一个模版类:

[cpp] view plain copy
  1. #ifndef _PTHREAD_POOL_  
  2. #define _PTHREAD_POOL_  
  3.   
  4. #include "locker.h"  
  5. #include <list>  
  6. #include <stdio.h>  
  7. #include <exception>  
  8. #include <errno.h>  
  9. #include <pthread.h>  
  10. #include <iostream>  
  11.   
  12. template<class T>  
  13. class threadpool  
  14. {  
  15. private:  
  16.     int thread_number;  //线程池的线程数  
  17.     int max_task_number;  //任务队列中的最大任务数  
  18.     pthread_t *all_threads;   //线程数组  
  19.     std::list<T *> task_queue; //任务队列  
  20.     mutex_locker queue_mutex_locker;  //互斥锁  
  21.     sem_locker queue_sem_locker;   //信号量  
  22.     bool is_stop; //是否结束线程  
  23. public:  
  24.     threadpool(int thread_num = 20, int max_task_num = 30);  
  25.     ~threadpool();  
  26.     bool append_task(T *task);  
  27.     void start();  
  28.     void stop();  
  29. private:  
  30.     //线程运行的函数。执行run()函数  
  31.     static void *worker(void *arg);  
  32.     void run();  
  33. };  
  34.   
  35. template <class T>  
  36. threadpool<T>::threadpool(int thread_num, int max_task_num):  
  37.     thread_number(thread_num), max_task_number(max_task_num),  
  38.     is_stop(false), all_threads(NULL)  
  39. {  
  40.     if((thread_num <= 0) || max_task_num <= 0)  
  41.     printf("threadpool can't init because thread_number = 0"  
  42.         " or max_task_number = 0");  
  43.   
  44.     all_threads = new pthread_t[thread_number];  
  45.     if(!all_threads)  
  46.         printf("can't init threadpool because thread array can't new");  
  47. }  
  48.   
  49. template <class T>  
  50. threadpool<T>::~threadpool()  
  51. {  
  52.     delete []all_threads;  
  53.     is_stop = true;  
  54. }  
  55.   
  56. template <class T>  
  57. void threadpool<T>::stop()  
  58. {  
  59.     is_stop = true;  
  60.     //queue_sem_locker.add();  
  61. }  
  62.   
  63. template <class T>  
  64. void threadpool<T>::start()  
  65. {  
  66.     for(int i = 0; i < thread_number; ++i)  
  67.     {  
  68.     printf("create the %dth pthread\n", i);  
  69.     if(pthread_create(all_threads + i, NULL, worker, this) != 0)  
  70.     {//创建线程失败,清除成功申请的资源并抛出异常  
  71.         delete []all_threads;  
  72.         throw std::exception();  
  73.     }  
  74.     if(pthread_detach(all_threads[i]))  
  75.     {//将线程设置为脱离线程,失败则清除成功申请的资源并抛出异常  
  76.         delete []all_threads;  
  77.         throw std::exception();  
  78.     }  
  79.     }  
  80. }  
  81. //添加任务进入任务队列  
  82. template <class T>  
  83. bool threadpool<T>::append_task(T *task)  
  84. {   //获取互斥锁  
  85.     queue_mutex_locker.mutex_lock();  
  86.     //判断队列中任务数是否大于最大任务数  
  87.     if(task_queue.size() > max_task_number)  
  88.     {//是则释放互斥锁  
  89.     queue_mutex_locker.mutex_unlock();  
  90.     return false;  
  91.     }  
  92.     //添加进入队列  
  93.     task_queue.push_back(task);  
  94.     queue_mutex_locker.mutex_unlock();  
  95.     //唤醒等待任务的线程  
  96.     queue_sem_locker.add();  
  97.     return true;  
  98. }  
  99.   
  100. template <class T>  
  101. void *threadpool<T>::worker(void *arg)  
  102. {  
  103.     threadpool *pool = (threadpool *)arg;  
  104.     pool->run();  
  105.     return pool;  
  106. }  
  107.   
  108. template <class T>  
  109. void threadpool<T>::run()  
  110. {  
  111.     while(!is_stop)  
  112.     {   //等待任务  
  113.     queue_sem_locker.wait();      
  114.     if(errno == EINTR)  
  115.     {  
  116.         printf("errno");  
  117.         continue;  
  118.     }  
  119.     //获取互斥锁  
  120.     queue_mutex_locker.mutex_lock();  
  121.     //判断任务队列是否为空  
  122.     if(task_queue.empty())  
  123.     {  
  124.         queue_mutex_locker.mutex_unlock();  
  125.         continue;  
  126.     }  
  127.     //获取队头任务并执行  
  128.     T *task = task_queue.front();  
  129.     task_queue.pop_front();  
  130.     queue_mutex_locker.mutex_unlock();  
  131.     if(!task)  
  132.         continue;  
  133. //  printf("pthreadId = %ld\n", (unsigned long)pthread_self());   
  134.     task->doit();  //doit是T对象中的方法  
  135.     }  
  136.     //测试用  
  137.     printf("close %ld\n", (unsigned long)pthread_self());  
  138. }  
  139.   
  140. #endif  

以上参考《Linux高性能服务器编程》


写个程序对线程池进行测试:

[cpp] view plain copy
  1. #include <stdio.h>  
  2. #include <iostream>  
  3. #include <unistd.h>  
  4.   
  5. #include "thread_pool.h"  
  6.   
  7. class task  
  8. {  
  9. private:  
  10.     int number;  
  11.   
  12. public:  
  13.     task(int num) : number(num)  
  14.     {  
  15.     }  
  16.     ~task()  
  17.     {  
  18.     }  
  19.   
  20.     void doit()  
  21.     {  
  22.     printf("this is the %dth task\n", number);  
  23.     }  
  24. };  
  25.   
  26. int main()  
  27. {  
  28.     task *ta;  
  29.     threadpool<task> pool(10, 15);  
  30. //    pool.start();  
  31.     for(int i = 0; i < 20; ++i)  
  32.     {  
  33.     ta = new task(i);  
  34. //  sleep(2);  
  35.     pool.append_task(ta);  
  36.     }  
  37.     pool.start();  
  38.     sleep(10);  
  39.     printf("close the thread pool\n");  
  40.     pool.stop();  
  41.     pause();  
  42.     return 0;  
  43. }  

经测试,线程池可以正常使用。

下一篇博客,使用线程池来实现回射服务器,测试可以达到多大的并发量。


本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/383817.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C++制表符

制表符的转义字符为\t&#xff0c;一般情况下长度为8个空格&#xff0c;这里的8个指的是从上一个字符串的开头开始算&#xff0c;往后数8个&#xff0c;不够的话就补空格。 如果前面的字符串的长度大于等于8个&#xff0c;例如前面字符串的长度为x,那么就会补(8-x%8)个空格 例…

C++派生类含有成员对象构造函数析构函数顺序

参考博客&#xff1a;传送门1 当类中含有对象成员时&#xff1a; 类的构造函数要包含对成员对象的初始化&#xff0c;如果构造函数的成员初始化列表没有包含对成员对象的初始化&#xff0c;系统会自动调用成员对象的无参构造函数。顺序上&#xff1a;先调用成员对象的构造函数…

c,c++中字符串处理函数strtok,strstr,strchr,strsub

http://blog.csdn.net/wangqing_12345/article/details/51760220 1&#xff0c;字符串切割函数 函数原型&#xff1a;char *strtok(char *s, char *delim); 函数功能&#xff1a;把字符串s按照字符串delim进行分割&#xff0c;然后返回分割的结果。 函数使用说&#xff1a; 1…

C++虚基类成员可见性

详见《CPrimer》[第五版]719页 如果继承路径上没有和虚基类成员重名的成员&#xff0c;则不存在二义性&#xff0c;因为我们仅能访问到虚基类成员。 当访问仅有一条继承路径上含有和虚基类成员重名的成员&#xff0c;也不存在二义性。派生类的成员的优先级比基类的成员高&…

链表逆序的原理及实例

http://blog.csdn.net/wangqing_12345/article/details/51757294 尾插法建立链表&#xff0c;带头结点设链表节点为typedef struct node {int data;struct node *next;}node_t, *pnode_t;要求将一带链表头List head的单向链表逆序。 分析&#xff1a; 1). 若链表为空或只有一个…

C++关于虚基类、构造函数、析构函数、成员对象的两个程序浅析

预备博客&#xff1a; C虚继承中构造函数和析构函数顺序问题以及原理 C派生类含有成员对象构造函数析构函数顺序 C虚基类成员可见性 程序一如下&#xff1a; #include<iostream> using namespace std; class A { public:A(int a) :x(a) { cout << "A const…

strtok函数及其实现

头文件&#xff1a;#include <string.h> 定义函数&#xff1a;char * strtok(char *s, const char *delim); 函数说明&#xff1a;strtok()用来将字符串分割成一个个片段。参数s 指向欲分割的字符串&#xff0c;参数delim 则为分割字符串&#xff0c;当 strtok()在参数s …

C++小型公司管理系统

项目要求&#xff1a; 编写一个程序实现小型公司的人员信息管理系统。该公司雇员&#xff08;employee&#xff09;包括经理&#xff08;manager&#xff09;&#xff0c;技术人员&#xff08;technician&#xff09;、销售员&#xff08;salesman&#xff09;和销售部经理&…

Linux网络编程“惊群”问题总结

http://www.cnblogs.com/Anker/p/7071849.html 1、前言 我从事Linux系统下网络开发将近4年了&#xff0c;经常还是遇到一些问题&#xff0c;只是知其然而不知其所以然&#xff0c;有时候和其他人交流&#xff0c;搞得非常尴尬。如今计算机都是多核了&#xff0c;网络编程框架也…

【Java学习笔记六】常用数据对象之String

字符串 在Java中系统定义了两种类型的字符串类&#xff1a;String和StringBuffer String类对象的值和长度都不能改变&#xff0c;称为常量字符串类&#xff0c;其中每个值称为常量字符串。 StringBuffer类对象的值和长度都可以改变&#xff0c;称为变量字符串类&#xff0c;其…

【Java学习笔记七】常用数据对象之数组

同一般的对象创建和定义一样&#xff0c;数组的定义和创建可以分开进行也可以合并一起进行。 一维数组定义格式&#xff1a; <元素类型>[] <数组名>;//[]也可以放在数组名的后面一维数组创建格式&#xff1a; new <元素类型>[<元素个数>];执行new运…

yfan.qiu linux硬链接与软链接

http://www.cnblogs.com/yfanqiu/archive/2012/06/11/2545556.html Linux 系统中有软链接和硬链接两种特殊的“文件”。 软链接可以看作是Windows中的快捷方式&#xff0c;可以让你快速链接到目标档案或目录。 硬链接则透过文件系统的inode来产生新档名&#xff0c;而不是产生…

【Java学习笔记八】包装类和vector

包装类 在Java语言中&#xff0c;每一种基本的数据类型都有相应的对象类型&#xff0c;称为他们基本类型的包装类&#xff08;包裹类&#xff09;。 字节byte&#xff1a;Byte、短整数型short&#xff1a;Short 标准整数型int&#xff1a;Integer、长整数型long&#xff1a;Lo…

Linux C++线程池实例

http://www.cnblogs.com/danxi/p/6636095.html 想做一个多线程服务器测试程序&#xff0c;因此参考了github的一些实例&#xff0c;然后自己动手写了类似的代码来加深理解。 目前了解的线程池实现有2种思路&#xff1a; 第一种&#xff1a; 主进程创建一定数量的线程&#xff0…

Java编写简单的自定义异常类

除了系统中自己带的异常&#xff0c;我们也可以自己写一些简单的异常类来帮助我们处理问题。 所有的异常命名都是以Exception结尾&#xff0c;并且都是Exception的子类。 假设我们要编写一个人类的类&#xff0c;为了判断年龄的输入是否合法&#xff0c;我们编写了一个名为Il…

shared_ptr简介以及常见问题

http://blog.csdn.net/stelalala/article/details/19993425 本文中的shared_ptr以vs2010中的std::tr1::shared_ptr作为研究对象。可能和boost中的有些许差异&#xff0c;特此说明。 基本功能 shared_ptr提供了一个管理内存的简单有效的方法。shared_ptr能在以下方面给开发提供便…

【Java学习笔记九】多线程

程序&#xff1a;计算机指令的集合&#xff0c;它以文件的形式存储在磁盘上&#xff0c;是应用程序执行的蓝本。 进程&#xff1a;是一个程序在其自身的地址空间中的一次执行活动。进程是资源申请、调度和独立运行的单位&#xff0c;因此&#xff0c;它使用系统中的运行资源。而…

【C++11新特性】 C++11智能指针之weak_ptr

http://blog.csdn.net/xiejingfa/article/details/50772571 原创作品&#xff0c;转载请标明&#xff1a;http://blog.csdn.net/Xiejingfa/article/details/50772571 如题&#xff0c;我们今天要讲的是C11引入的三种智能指针中的最后一个&#xff1a;weak_ptr。在学习weak_ptr之…

【C++学习笔记四】运算符重载

当调用一个重载函数和重载运算符时&#xff0c;编译器通过把您所使用的参数类型和定义中的参数类型相比较&#xff0c;巨鼎选用最合适的定义。&#xff08;重载决策&#xff09; 重载运算符时带有特殊名称的函数&#xff0c;函数名是由关键字operator和其后要重载的运算符符号…

【C++11新特性】 C++11智能指针之unique_ptr

原创作品&#xff0c;转载请标明&#xff1a;http://blog.csdn.net/Xiejingfa/article/details/50759210 在前面一篇文章中&#xff0c;我们了解了C11中引入的智能指针之一shared_ptr&#xff0c;今天&#xff0c;我们来介绍一下另一种智能指针unique_ptr。 unique_ptr介绍 uni…