<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
本文範例為大家分享了Python實現執行緒池之執行緒安全佇列的具體程式碼,供大家參考,具體內容如下
一個完整的執行緒池由下面幾部分組成,執行緒安全佇列、任務物件、執行緒處理物件、執行緒池物件。其中一個執行緒安全的佇列是實現執行緒池和任務佇列的基礎,本節我們通過threading包中的互斥量threading.Lock()和條件變數threading.Condition()來實現一個簡單的、讀取安全的執行緒佇列。
包括put、pop、get等方法,為保證執行緒安全,讀寫操作時要新增互斥鎖;並且pop操作可以設定等待時間以阻塞當前獲取元素的執行緒,當新元素寫入佇列時通過條件變數通知解除等待操作。
class ThreadSafeQueue(object): def __init__(self, max_size=0): self.queue = [] self.max_size = max_size # max_size為0表示無限大 self.lock = threading.Lock() # 互斥量 self.condition = threading.Condition() # 條件變數 def size(self): """ 獲取當前佇列的大小 :return: 佇列長度 """ # 加鎖 self.lock.acquire() size = len(self.queue) self.lock.release() return size def put(self, item): """ 將單個元素放入佇列 :param item: :return: """ # 佇列已滿 max_size為0表示無限大 if self.max_size != 0 and self.size() >= self.max_size: return ThreadSafeException() # 加鎖 self.lock.acquire() self.queue.append(item) self.lock.release() self.condition.acquire() # 通知等待讀取的執行緒 self.condition.notify() self.condition.release() return item def batch_put(self, item_list): """ 批次新增元素 :param item_list: :return: """ if not isinstance(item_list, list): item_list = list(item_list) res = [self.put(item) for item in item_list] return res def pop(self, block=False, timeout=0): """ 從佇列頭部取出元素 :param block: 是否阻塞執行緒 :param timeout: 等待時間 :return: """ if self.size() == 0: if block: self.condition.acquire() self.condition.wait(timeout) self.condition.release() else: return None # 加鎖 self.lock.acquire() item = None if len(self.queue): item = self.queue.pop() self.lock.release() return item def get(self, index): """ 獲取指定位置的元素 :param index: :return: """ if self.size() == 0 or index >= self.size(): return None # 加鎖 self.lock.acquire() item = self.queue[index] self.lock.release() return item class ThreadSafeException(Exception): pass
def thread_queue_test_1(): thread_queue = ThreadSafeQueue(10) def producer(): while True: thread_queue.put(random.randint(0, 10)) time.sleep(2) def consumer(): while True: print('current time before pop is %d' % time.time()) item = thread_queue.pop(block=True, timeout=3) # item = thread_queue.get(2) if item is not None: print('get value from queue is %s' % item) else: print(item) print('current time after pop is %d' % time.time()) t1 = threading.Thread(target=producer) t2 = threading.Thread(target=consumer) t1.start() t2.start() t1.join() t2.join()
測試結果:
我們可以看到生產者執行緒每隔2s向佇列寫入一個元素,消費者執行緒當無資料時預設阻塞3s。通過執行時間發現消費者執行緒確實發生了阻塞,當生產者寫入資料時結束當前等待操作。
def thread_queue_test_2(): thread_queue = ThreadSafeQueue(10) def producer(): while True: thread_queue.put(random.randint(0, 10)) time.sleep(2) def consumer(name): while True: item = thread_queue.pop(block=True, timeout=1) # item = thread_queue.get(2) if item is not None: print('%s get value from queue is %s' % (name, item)) else: print('%s get value from queue is None' % name) t1 = threading.Thread(target=producer) t2 = threading.Thread(target=consumer, args=('thread1',)) t3 = threading.Thread(target=consumer, args=('thread2',)) t1.start() t2.start() t3.start() t1.join() t2.join() t3.join()
測試結果:
生產者還是每2s生成一個元素寫入佇列,消費者開啟兩個執行緒進行消費,預設阻塞時間為1s,列印結果顯示通過加鎖確保每次只有一個執行緒能獲取資料,保證了執行緒讀寫的安全。
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45