Linux/C++简单线程池实现 了解Java语言对于多线程的支持多丰富
sinye56 2024-11-06 12:02 3 浏览 0 评论
我们知道Java语言对于多线程的支持十分丰富,JDK本身提供了很多性能优良的库,包括ThreadPoolExecutor和ScheduleThreadPoolExecutor等。C++11中的STL也提供了std:thread(然而我还没有看,这里先占个坑)还有很多第三方库的实现。这里我重复“造轮子”的目的还是为了深入理解C++和Linux线程基础概念,主要以学习的目的。
首先,为什么要使用线程池。因为线程的创建、和清理都是需要耗费系统资源的。我们知道Linux中线程实际上是由轻量级进程实现的,相对于纯理论上的线程这个开销还是有的。假设某个线程的创建、运行和销毁的时间分别为T1、T2、T3,当T1+T3的时间相对于T2不可忽略时,线程池的就有必要引入了,尤其是处理数百万级的高并发处理时。线程池提升了多线程程序的性能,因为线程池里面的线程都是现成的而且能够重复使用,我们不需要临时创建大量线程,然后在任务结束时又销毁大量线程。一个理想的线程池能够合理地动态调节池内线程数量,既不会因为线程过少而导致大量任务堆积,也不会因为线程过多了而增加额外的系统开销。
其实线程池的原理非常简单,它就是一个非常典型的生产者消费者同步问题。根据刚才描述的线程池的功能,可以看出线程池至少有两个主要动作,一个是主程序不定时地向线程池添加任务,另一个是线程池里的线程领取任务去执行。且不论任务和执行任务是个什么概念,但是一个任务肯定只能分配给一个线程执行。这样就可以简单猜想线程池的一种可能的架构了:主程序执行入队操作,把任务添加到一个队列里面;池子里的多个工作线程共同对这个队列试图执行出队操作,这里要保证同一时刻只有一个线程出队成功,抢夺到这个任务,其他线程继续共同试图出队抢夺下一个任务。所以在实现线程池之前,我们需要一个队列。这里的生产者就是主程序,生产任务(增加任务),消费者就是工作线程,消费任务(执行、减少任务)。因为这里涉及到多个线程同时访问一个队列的问题,所以我们需要互斥锁来保护队列,同时还需要条件变量来处理主线程通知任务到达、工作线程抢夺任务的问题。
一般来说实现一个线程池主要包括以下4个组成部分:
- 线程管理器:用于创建并管理线程池。
- 工作线程:线程池中实际执行任务的线程。在初始化线程时会预先创建好固定数目的线程在池中,这些初始化的线程一般处于空闲状态。
- 任务接口:每个任务必须实现的接口。当线程池的任务队列中有可执行任务时,被空间的工作线程调去执行(线程的闲与忙的状态是通过互斥量实现的),把任务抽象出来形成一个接口,可以做到线程池与具体的任务无关。
- 任务队列:用来存放没有处理的任务。提供一种缓冲机制。实现这种结构有很多方法,常用的有队列和链表结构。
流程图如下:
ool.h
#ifndef __THREAD_POOL_H #define __THREAD_POOL_H #include <vector> #include <string> #include <pthread.h> using namespace std; /*执行任务的类:设置任务数据并执行*/ class CTask { protected: string m_strTaskName; //任务的名称 void* m_ptrData; //要执行的任务的具体数据 public: CTask() = default; CTask(string &taskName): m_strTaskName(taskName), m_ptrData(NULL) {} virtual int Run() = 0; void setData(void* data); //设置任务数据 virtual ~CTask() {} }; /*线程池管理类*/ class CThreadPool { private: static vector<CTask*> m_vecTaskList; //任务列表 static bool shutdown; //线程退出标志 int m_iThreadNum; //线程池中启动的线程数 pthread_t *pthread_id; static pthread_mutex_t m_pthreadMutex; //线程同步锁 static pthread_cond_t m_pthreadCond; //线程同步条件变量 protected: static void* ThreadFunc(void *threadData); //新线程的线程回调函数 static int MoveToIdle(pthread_t tid); //线程执行结束后,把自己放入空闲线程中 static int MoveToBusy(pthread_t tid); //移入到忙碌线程中去 int Create(); //创建线程池中的线程 public: CThreadPool(int threadNum); int AddTask(CTask *task); //把任务添加到任务队列中 int StopAll(); //使线程池中的所有线程退出 int getTaskSize(); //获取当前任务队列中的任务数 }; #endif
2 thread_pool.cpp
#include "thread_pool.h" #include <cstdio> void CTask::setData(void* data) { m_ptrData = data; } //静态成员初始化 vector<CTask*> CThreadPool::m_vecTaskList; bool CThreadPool::shutdown = false; pthread_mutex_t CThreadPool::m_pthreadMutex = PTHREAD_MUTEX_INITIALIZER; pthread_cond_t CThreadPool::m_pthreadCond = PTHREAD_COND_INITIALIZER; //线程管理类构造函数 CThreadPool::CThreadPool(int threadNum) { this->m_iThreadNum = threadNum; printf("I will create %d threads.\n", threadNum); Create(); } //线程回调函数 void* CThreadPool::ThreadFunc(void* threadData) { pthread_t tid = pthread_self(); while(1) { pthread_mutex_lock(&m_pthreadMutex); //如果队列为空,等待新任务进入任务队列 while(m_vecTaskList.size() == 0 && !shutdown) pthread_cond_wait(&m_pthreadCond, &m_pthreadMutex); //关闭线程 if(shutdown) { pthread_mutex_unlock(&m_pthreadMutex); printf("[tid: %lu]\texit\n", pthread_self()); pthread_exit(NULL); } printf("[tid: %lu]\trun: ", tid); vector<CTask*>::iterator iter = m_vecTaskList.begin(); //取出一个任务并处理之 CTask* task = *iter; if(iter != m_vecTaskList.end()) { task = *iter; m_vecTaskList.erase(iter); } pthread_mutex_unlock(&m_pthreadMutex); task->Run(); //执行任务 printf("[tid: %lu]\tidle\n", tid); } return (void*)0; } //往任务队列里添加任务并发出线程同步信号 int CThreadPool::AddTask(CTask *task) { pthread_mutex_lock(&m_pthreadMutex); m_vecTaskList.push_back(task); pthread_mutex_unlock(&m_pthreadMutex); pthread_cond_signal(&m_pthreadCond); return 0; } //创建线程 int CThreadPool::Create() { pthread_id = new pthread_t[m_iThreadNum]; for(int i = 0; i < m_iThreadNum; i++) pthread_create(&pthread_id[i], NULL, ThreadFunc, NULL); return 0; } //停止所有线程 int CThreadPool::StopAll() { //避免重复调用 if(shutdown) return -1; printf("Now I will end all threads!\n\n"); //唤醒所有等待进程,线程池也要销毁了 shutdown = true; pthread_cond_broadcast(&m_pthreadCond); //清楚僵尸 for(int i = 0; i < m_iThreadNum; i++) pthread_join(pthread_id[i], NULL); delete[] pthread_id; pthread_id = NULL; //销毁互斥量和条件变量 pthread_mutex_destroy(&m_pthreadMutex); pthread_cond_destroy(&m_pthreadCond); return 0; } //获取当前队列中的任务数 int CThreadPool::getTaskSize() { return m_vecTaskList.size(); }
3 main.cpp
#include "thread_pool.h" #include <cstdio> #include <stdlib.h> #include <unistd.h> class CMyTask: public CTask { public: CMyTask() = default; int Run() { printf("%s\n", (char*)m_ptrData); int x = rand()%4 + 1; sleep(x); return 0; } ~CMyTask() {} }; int main() { CMyTask taskObj; char szTmp[] = "hello!"; taskObj.setData((void*)szTmp); CThreadPool threadpool(5); //线程池大小为5 for(int i = 0; i < 10; i++) threadpool.AddTask(&taskObj); while(1) { printf("There are still %d tasks need to handle\n", threadpool.getTaskSize()); //任务队列已没有任务了 if(threadpool.getTaskSize()==0) { //清除线程池 if(threadpool.StopAll() == -1) { printf("Thread pool clear, exit.\n"); exit(0); } } sleep(2); printf("2 seconds later...\n"); } return 0; }
4 Makefile
CC:= g++ TARGET:= threadpool INCLUDE:= -I./ LIBS:= -lpthread # C++语言编译参数 CXXFLAGS:= -std=c++11 -g -Wall -D_REENTRANT # C预处理参数 # CPPFLAGS:= OBJECTS :=thread_pool.o main.o $(TARGET): $(OBJECTS) $(CC) -o $(TARGET) $(OBJECTS) $(LIBS) # $@表示所有目标集 %.o:%.cpp $(CC) -c $(CXXFLAGS) $(INCLUDE) lt; -o $@ .PHONY : clean clean: -rm -f $(OBJECTS) $(TARGET)
5 输出结果
I will create 5 threads. There are still 10 tasks need to handle [tid: 140056759576320] run: hello! [tid: 140056751183616] run: hello! [tid: 140056742790912] run: hello! [tid: 140056734398208] run: hello! [tid: 140056767969024] run: hello! 2 seconds later... There are still 5 tasks need to handle [tid: 140056742790912] idle [tid: 140056742790912] run: hello! [tid: 140056767969024] idle [tid: 140056767969024] run: hello! [tid: 140056751183616] idle [tid: 140056751183616] run: hello! [tid: 140056759576320] idle [tid: 140056759576320] run: hello! [tid: 140056751183616] idle [tid: 140056751183616] run: hello! [tid: 140056734398208] idle 2 seconds later... There are still 0 tasks need to handle Now I will end all threads! 2 seconds later... [tid: 140056734398208] exit [tid: 140056767969024] idle [tid: 140056767969024] exit [tid: 140056759576320] idle [tid: 140056759576320] exit [tid: 140056751183616] idle [tid: 140056751183616] exit [tid: 140056742790912] idle [tid: 140056742790912] exit 2 seconds later... There are still 0 tasks need to handle Thread pool clear, exit.
自己因为比较喜欢技术,所以收集了一些Java高并发、分布式、JVM、spring、源码分析和kafka等架构技术资料
如果你也对技术感兴趣:
关注+转发后,私信关键词 【架构】即可免费获取!
重要的事情说三遍,转发、转发、转发后再发私信,才可以拿到!
相关推荐
- Linux两种光驱自动挂载的方法
-
环境:CentOS6.4西昆云服务器方式一修改fstab文件/etc/fstab是系统保存文件系统信息?静态文件,每一行描述一个文件系统;系统每次启动会读取此文件信息以确定需要挂载哪些文件系统。参...
- linux系统运维,挂载和分区概念太难?在虚机下操作一次全掌握
-
虚拟机的好处就是可以模拟和学习生产环境的一切操作,假如我们还不熟悉磁盘操作,那先在虚机环境下多操作几次。这次来练习下硬盘扩容操作。虚拟机环境:centos8vm11linux设备命名规则在linux中...
- Linux 挂载 NFS 外部存储 (mount 和 /etc/fstab)
-
mount:手工挂载,下次重启需再重新挂载,操作命令:mount-tnfs-ooptionsserver:/remote/export/local/directory上面命令中,本地目录...
- 在Linux中如何设置自动挂载特定文件系统(示例)
-
Linux...
- Linux环境中的绑定挂载(bind mount)
-
简介:Linux中的mount命令是一个特殊的指令,主要用于挂载文件目录。而绑定挂载(bindmount)命令更为特别。mount的bind选项将第一个目录克隆到第二个。一个目录中的改变将会在...
- Linux挂载CIFS共享 临时挂载 1. 首先
-
如何解决服务器存储空间不足的问题?大家好,欢迎回来。在上一期视频中,我为大家介绍了如何利用Linux挂载来扩容服务器存储空间。这一期视频,我将以Linux为例,教大家如何进行扩容。群辉使用的是Linu...
- Linux 硬盘挂载(服务器重启自动挂载)
-
1、先查看目前机器上有几块硬盘,及已挂载磁盘:fdisk-l能够查看到当前主机上已连接上的磁盘,以及已经分割的磁盘分区。(下面以/dev/vdb磁盘进行分区、挂载为例,挂载点设置为/data)df...
- linux 挂载磁盘
-
在Linux中挂载硬盘的步骤如下:...
- 笨小猪教您Linux磁盘挂载
-
本教程针对Linux系统比较熟悉或者想学习Linux基础的用户朋友,本教程操作起来比较傻瓜式,跟着步骤就会操作,本文使用的工具是XShell同时多多注意空格(文中会有提示)。【问答】什么是磁盘挂载?答...
- Linux 磁盘挂载和docker安装命令
-
本篇给大家介绍Linux磁盘挂载和docker安装的相关内容,Linux服务器的操作是一个手熟的过程,一些不常用的命令隔断时间就忘记了,熟话说好记性不如烂笔头,还需在平时的工作中多练习记录。...
- Linux设置开机自动挂载分区
-
有时候,我们在安装完Linux系统之后,可能在使用过程中添加硬盘或者分区进行使用,这时候就需要手动把磁盘分区挂载到某个路径,但是开机之后就会消失,需要重新挂载,非常麻烦,那么我们应该如何设置开机自动挂...
- 在linux挂载一个新硬盘的完整步骤
-
以下是在Linux中挂载新原始磁盘的完整步骤,包括分区、创建文件系统以及使用UUID在/etc/fstab中启动时挂载磁盘:将新的原始磁盘连接到Linux系统并打开电源。运行以下命令,...
- Linux系统如何挂载exFAT分区
-
简介:Linux系统中不能像Windows系统那样自动识别加载新设备,需要手动识别,手动加载。Linux中一切皆文件。文件通过一个很大的文件树来组织,文件树的根目录是:/,从根目开始录逐级展开。这些文...
- Linux系统挂载硬盘
-
fdisk-l查看可挂载的磁盘都有哪些df-h查看已经挂载的磁盘...
- WSL2发布,如何在Win10中挂载Linux文件系统
-
WSL2是最新版本的架构,它为Windows子系统提供支持,使其能够在Windows上运行ELF64Linux二进制文件。通过最近的更新,它允许使用Linux文件系统访问存储在硬盘中的文件。如果你...
你 发表评论:
欢迎- 一周热门
- 最近发表
- 标签列表
-
- oracle忘记用户名密码 (59)
- oracle11gr2安装教程 (55)
- mybatis调用oracle存储过程 (67)
- oracle spool的用法 (57)
- oracle asm 磁盘管理 (67)
- 前端 设计模式 (64)
- 前端面试vue (56)
- linux格式化 (55)
- linux图形界面 (62)
- linux文件压缩 (75)
- Linux设置权限 (53)
- linux服务器配置 (62)
- mysql安装linux (71)
- linux启动命令 (59)
- 查看linux磁盘 (72)
- linux用户组 (74)
- linux多线程 (70)
- linux设备驱动 (53)
- linux自启动 (59)
- linux网络命令 (55)
- linux传文件 (60)
- linux打包文件 (58)
- linux查看数据库 (61)
- linux获取ip (64)
- 关闭防火墙linux (53)