python实现线程池的方法

作者:liujian0616 时间:2023-03-10 14:08:06 

本文实例讲述了python实现线程池的方法。分享给大家供大家参考。具体如下:

原理:建立一个任务队列,然多个线程都从这个任务队列中取出任务然后执行,当然任务队列要加锁,详细请看代码

文件名:thrd_pool.py 系统环境:ubuntu linux & python2.6


import threading
import time
import signal
import os
class task_info(object):
 def __init__(self):
   self.func = None
   self.parm0 = None
   self.parm1 = None
   self.parm2 = None
class task_list(object):
 def __init__(self):
   self.tl = []
   self.mutex = threading.Lock()
   self.sem = threading.Semaphore(0)
 def append(self, ti):
   self.mutex.acquire()
   self.tl.append(ti)
   self.mutex.release()
   self.sem.release()
 def fetch(self):
   self.sem.acquire()
   self.mutex.acquire()
   ti = self.tl.pop(0)    
   self.mutex.release()
   return ti
class thrd(threading.Thread):
 def __init__(self, tl):
   threading.Thread.__init__(self)
   self.tl = tl
 def run(self):
   while True:
     tsk = self.tl.fetch()
     tsk.func(tsk.parm0, tsk.parm1, tsk.parm2)  
class thrd_pool(object):
 def __init__(self, thd_count, tl):
   self.thds = []
   for i in range(thd_count):
     self.thds.append(thrd(tl))
 def run(self):
   for thd in self.thds:
     thd.start()
def func(parm0=None, parm1=None, parm2=None):
 print 'count:%s, thrd_name:%s'%(str(parm0), threading.currentThread().getName())
def cleanup(signo, stkframe):
 print ('Oops! Got signal %s', signo)  
 os._exit(0)
if __name__ == '__main__':
 signal.signal(signal.SIGINT, cleanup)
 signal.signal(signal.SIGQUIT, cleanup)
 signal.signal(signal.SIGTERM, cleanup)
 tl = task_list()
 tp = thrd_pool(6, tl)
 tp.run()
 count = 0
 while True:
   ti = task_info()
   ti.parm0 = count
   ti.func = func
   tl.append(ti)
   count += 1
   time.sleep(2)
 pass

执行方式:python thrd_pool.py

执行结果:


count:0, thrd_name:Thread-1
count:1, thrd_name:Thread-2
count:2, thrd_name:Thread-3
count:3, thrd_name:Thread-4
count:4, thrd_name:Thread-5
count:5, thrd_name:Thread-1
count:6, thrd_name:Thread-6
count:7, thrd_name:Thread-2
count:8, thrd_name:Thread-3
count:9, thrd_name:Thread-4
count:10, thrd_name:Thread-5
count:11, thrd_name:Thread-1
count:12, thrd_name:Thread-6
count:13, thrd_name:Thread-2
count:14, thrd_name:Thread-3
('Oops! Got signal %s', 15)

希望本文所述对大家的Python程序设计有所帮助。

标签:python,线程池
0
投稿

猜你喜欢

  • Mootools 1.2教程(6)——操纵HTML DOM元素

    2008-11-20 13:19:00
  • python中的函数嵌套和嵌套调用

    2021-09-05 01:10:26
  • Vue中ref和$refs的介绍以及使用方法示例

    2023-07-02 17:00:10
  • javascript scrollLeft,scrollWidth,clientWidth,offsetWidth 完全详解

    2024-04-22 22:28:47
  • python中yield的用法详解——最简单,最清晰的解释

    2021-10-22 21:27:56
  • Python利用pdfplumber实现读取PDF写入Excel

    2023-02-21 01:08:57
  • Python matplotlib底层原理解析

    2021-05-11 07:05:29
  • PHP Class&Object -- PHP 自排序二叉树的深入解析

    2024-06-05 09:48:33
  • 修改asp代码防止被杀毒软件误删

    2007-10-07 12:32:00
  • MySQL如何快速修改表的表结构

    2024-01-15 13:51:36
  • Window 7/XP 安装Apache 2.4与PHP 5.4 的过程详解

    2023-11-24 09:28:09
  • opencv3/python 鼠标响应操作详解

    2022-10-11 09:29:52
  • 解决Python中字符串和数字拼接报错的方法

    2023-06-11 23:12:37
  • bootstrap-table.js扩展分页工具栏(增加跳转到xx页)功能

    2024-04-29 13:12:45
  • nx.adjacency_matrix计算邻接矩阵与真实结果不一致的解决

    2023-12-06 14:23:56
  • 如何给windows设置定时任务并运行python脚本

    2023-09-18 13:40:19
  • python 生成器协程运算实例

    2021-11-22 05:27:51
  • JS实现合并json对象的方法

    2023-08-29 15:09:30
  • 总结几个非常实用的Python库

    2023-02-28 11:39:54
  • vue具名插槽的基本使用实例

    2024-04-27 15:51:16
  • asp之家 网络编程 m.aspxhome.com