使用Python佇列和多執行緒實現生產者消費者

gaopengtttt發表於2018-03-30

這個模型使用python來實現相比POSIX來做簡單太多太多了,輪子python都可以寫好了直接呼叫即可,佇列就已經封裝好了對共享資料的安全訪問。在POSIX多執行緒中考慮Mutex和條件變數是一個重點。這是我以前用POSIX pthread函式實現的一個生產者和消費者模型:

一、實現方式

下面是Python實現的方法,實際上就是使用佇列作為共享資料的中間價這是模組封裝好的,不需要在使用Mutex保護執行緒之間共享資料訪問的
安全性。附帶佇列的測試程式碼,程式碼簡單如下:


點選(此處)摺疊或開啟

  1. import threading
  2. import time
  3. import queue
  4. from global_par import global_par
  5. #queue is especially useful in threaded programming when information must be exchanged safely between multiple threads.

  6. def Prod(global_data):
  7.     """生產者執行緒"""
  8.     i = 1
  9.     qfifo = global_data.get_global_pars("CusQue")
  10.     while 1:
  11.         qfifo.put(i)
  12.         print("生產產品: {} ".format(i))
  13.         i +=1;
  14.     return 0

  15. def Cust(global_data,detail):
  16.     """消費者執行緒"""
  17.     qfifo = global_data.get_global_pars("CusQue")
  18.     while 1:
  19.         print("{}:消費產品:{}".format(detail,qfifo.get()))
  20.         time.sleep(1)
  21.     return 0

  22. def main():
  23.     pthread_list = []
  24.     global_data = global_par()
  25.     qfifo = queue.Queue(maxsize=10)
  26.     global_data.set_global_pars("CusQue",qfifo)

  27.     ##建立1個生產者執行緒
  28.     thread_pro = threading.Thread(target=Prod,args=(global_data,))
  29.     pthread_list.append(thread_pro)

  30.     ##建立10個消費者執行緒
  31.     for i in range(10):
  32.         thread_cus = threading.Thread(target=Cust, args=(global_data, "消費執行緒{}".format(i+1),))
  33.         pthread_list.append(thread_cus)

  34.     for i in pthread_list:
  35.         i.start()

  36.     for i in pthread_list:
  37.         i.join

  38.     return 0

  39. if __name__ == '__main__':
  40.     main()

二、佇列測試程式碼


點選(此處)摺疊或開啟

  1. import threading
  2. import queue
  3. #http://www.cnblogs.com/alex3714/articles/5230609.html

  4. def my_format(x, y):
  5.     """par one: what des your print
  6.        par two: value
  7.     """
  8.     x = "-->" + x + " {}"
  9.     print(x.format(y))
  10.     return

  11. qfifo = queue.Queue(maxsize=2) ##先進先出佇列 如果達到最大值預設Queue.put()會堵塞 如果為空預設Queue.get()會堵塞
  12. qlifo = queue.LifoQueue(maxsize=2) ##後入先出佇列 如果達到最大值預設Queue.put()會堵塞 如果為空預設Queue.get()會堵塞
  13. qpri = queue.PriorityQueue(maxsize=2) ##根據優先順序判斷順序小的為優先順序高 如果達到最大值預設Queue.put()會堵塞 如果為空預設Queue.get()會堵塞

  14. ##part0:在佇列增加元素Queue.put(item, block=True, timeout=None) 可以設定是否堵塞
  15. my_format("##part0:在佇列增加元素Queue.put(item, block=True, timeout=None):","")
  16. qfifo.put(1)
  17. qfifo.put(2)
  18. ##part1:佇列滿了會報queue.Full異常
  19. try:
  20.     qfifo.put(2,timeout=1)
  21. except queue.Full as e:
  22.     my_format("##part1:佇列滿了如果不堵塞會報queue.Full異常", "")

  23. ##part2:出佇列Queue.get(block=True, timeout=None) 可以設定是否堵塞

  24. my_format("##part2:出佇列Queue.get(block=True, timeout=None) 可以設定是否堵塞:","")
  25. qfifo.get()
  26. qfifo.get()

  27. ##part3:佇列空如果不堵塞會報異常queue.Empty
  28. try:
  29.     qfifo.get(timeout=1)
  30. except queue.Empty as e:
  31.     my_format("##part3:佇列空如果不堵塞會報異常queue.Empty", "")


  32. ##part4:返回佇列的大小Queue.qsize()
  33. my_format("##part0:返回佇列的大小Queue.qsize():",qfifo.qsize())

  34. ##part5:返回是否為空的bool值Queue.empty()
  35. my_format("##part1:返回是否為空的bool值Queue.empty():",qfifo.empty())

  36. ##part6:返回是否滿的bool值Queue.full()

  37. my_format("##part1:返回是否為空的bool值Queue.full():",qfifo.full())

作者微信:

使用Python佇列和多執行緒實現生產者消費者


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7728585/viewspace-2152432/,如需轉載,請註明出處,否則將追究法律責任。

相關文章