Python queue

#!/usr/bin/env python
# -*- coding:utf-8 -*-
# author: Changhua Gong
import queue
from queue import Queue
'''
class queue.Queue(maxsize=0) #先入先出
class queue.LifoQueue(maxsize=0) #last in fisrt out 
class queue.PriorityQueue(maxsize=0) #存儲數據時可設置優先級的隊列
方法:
Queue.qsize()
Queue.empty() #return True if empty  
Queue.full() # return True if full 
Queue.put(item, block=True, timeout=None)
Queue.put_nowait(item) Equivalent to put(item, False).
Queue.get(block=True, timeout=None)
Queue.get_nowait() Equivalent to get(False).
Queue.task_done()
Two methods are offered to support tracking 
whether enqueued tasks have been fully processed by daemon consumer threads.
有兩個方法用來跟蹤消費線程中處理的對列任務是否被徹底處理
Queue.task_done()
Indicate that a formerly enqueued task is complete.
Used by queue consumer threads. For each get() used to fetch a task, 
a subsequent call to task_done() tells the queue that the processing on the task is complete.
Queue.task_done()代表當前對列任務完成,對於每一個get方法獲取一個任務,後來對task_done方法的調用
告訴對列這個任務處理完畢。
If a join() is currently blocking, 
it will resume when all items have been processed 
(meaning that a task_done() call was received for every item that had been put() into the queue).
若是join方法正在阻塞,全部的items會被繼續處理完成,意味着對列中的每一個item都會收到task_done()的通知
Raises a ValueError if called more times than there were items placed in the queue.
Blocks until all items in the Queue have been gotten and processed.
Queue.join() block直到queue被消費完畢
The count of unfinished tasks goes up whenever an item is added to the
queue. The count goes down whenever a consumer thread calls task_done()
to indicate the item was retrieved and all work on it is complete.
When the count of unfinished tasks drops to zero, join() unblocks.
當未完成的任務數量降低至0時,join再也不阻塞
'''
import threading
import queue
def producer():
    for i in range(10):
        q.put("骨頭 %s" % i)
    print("開始等待全部的骨頭被取走...")
    q.join()
    print("全部的骨頭被取完了...")
def consumer(n):
    while q.qsize() > 0:
        print("%s 取到" % n, q.get())
        q.task_done()  # 告知這個任務執行完了
q = queue.Queue()
p = threading.Thread(target=producer, )
p.start()
consumer("李闖")
print("****************************************************************")
import time,random
import queue,threading
q = queue.Queue()
def Producer(name):
  count = 0
  while count <20:
    time.sleep(random.randrange(3))
    q.put(count)
    print('Producer %s has produced %s baozi..' %(name, count))
    count +=1
def Consumer(name):
  count = 0
  while count <20:
    time.sleep(random.randrange(4))
    if not q.empty():
        data = q.get()
        print(data)
        print('\033[32;1mConsumer %s has eat %s baozi...\033[0m' %(name, data))
    else:
        print("-----no baozi anymore----")
    count +=1
p1 = threading.Thread(target=Producer, args=('A',))
c1 = threading.Thread(target=Consumer, args=('B',))
p1.start()
c1.start()

From: alex examplepython

相關文章
相關標籤/搜索