python實現線程池

mxw8 9年前發布 | 2K 次閱讀 Python

python實現線程池
原理:建立一個任務隊列,然多個線程都從這個任務隊列中取出任務然后執行,當然任務隊列要加鎖,詳細請看代碼

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

</pre>

 本文由用戶 mxw8 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!