U AT^\,c@sdZddlZddlmZddlmZmZddlmZzddl m Z Wne k r\dZ YnXddd d d d gZ zdd l m Z Wn$e k rGdddeZ YnXGdddeZGdd d ZGdd d eZGdd d eZGdddZe dkreZ dS)z'A multi-producer, multi-consumer queue.N)deque)heappushheappop) monotonic) SimpleQueueEmptyFullQueue PriorityQueue LifoQueuer)rc@eZdZdZdS)rz4Exception raised by Queue.get(block=0)/get_nowait().N__name__ __module__ __qualname____doc__rr/usr/lib64/python3.8/queue.pyrc@r )rz4Exception raised by Queue.put(block=0)/put_nowait().Nr rrrrrrc@seZdZdZd!ddZddZddZd d Zd d Zd dZ d"ddZ d#ddZ ddZ ddZ ddZddZddZdd ZdS)$rzjCreate a queue object with a given maximum size. If maxsize is <= 0, the queue size is infinite. rcCsN||_||t|_t|j|_t|j|_t|j|_d|_ dSNr) maxsize_init threadingZLockmutexZ Condition not_emptynot_fullall_tasks_doneunfinished_tasksselfrrrr__init__!s  zQueue.__init__c CsH|j8|jd}|dkr4|dkr*td|j||_W5QRXdS)a.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. 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). Raises a ValueError if called more times than there were items placed in the queue. rz!task_done() called too many timesN)rr ValueErrorZ notify_all)rZ unfinishedrrr task_done8s  zQueue.task_donec Cs(|j|jr|jqW5QRXdS)aBlocks until all items in the Queue have been gotten and processed. 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. N)rrwaitrrrrjoinNs z Queue.joinc Cs&|j|W5QRSQRXdS)9Return the approximate size of the queue (not reliable!).Nr_qsizer$rrrqsize[sz Queue.qsizec Cs(|j| W5QRSQRXdS)aReturn True if the queue is empty, False otherwise (not reliable!). This method is likely to be removed at some point. Use qsize() == 0 as a direct substitute, but be aware that either approach risks a race condition where a queue can grow before the result of empty() or qsize() can be used. To create code that needs to wait for all queued tasks to be completed, the preferred technique is to use the join() method. Nr'r$rrrempty`s z Queue.emptyc Cs<|j,d|jko |knW5QRSQRXdS)aOReturn True if the queue is full, False otherwise (not reliable!). This method is likely to be removed at some point. Use qsize() >= n as a direct substitute, but be aware that either approach risks a race condition where a queue can shrink before the result of full() or qsize() can be used. rN)rrr(r$rrrfullnsz Queue.fullTNc Cs|j|jdkr|s*||jkrtnr|dkrN||jkr|jq2nN|dkr`tdnrCrr(r/r8rrrrrs    c@0eZdZdZddZddZddZdd Zd S) r zVariant of Queue that retrieves open entries in priority order (lowest first). Entries are typically tuples of the form: (priority number, data). cC g|_dSrDrErrrrrrFzPriorityQueue._initcCrGrDrHr$rrrr(rFzPriorityQueue._qsizecCst|j|dSrD)rrEr=rrrr/rFzPriorityQueue._putcCrGrD)rrEr$rrrr8rFzPriorityQueue._getNr rrrrr(r/r8rrrrr s c@rP) r zBVariant of Queue that retrieves most recently added entries first.cCrQrDrRrrrrrrFzLifoQueue._initcCrGrDrHr$rrrr(rFzLifoQueue._qsizecCrJrDrKr=rrrr/rFzLifoQueue._putcCrMrD)rEZpopr$rrrr8rFzLifoQueue._getNrSrrrrr s c@sLeZdZdZddZdddZddd Zd d Zd d ZddZ ddZ dS)_PySimpleQueuezYSimple, unbounded FIFO queue. This pure Python implementation is not reentrant. cCst|_td|_dSr)r_queuerZ Semaphore_countr$rrrr sz_PySimpleQueue.__init__TNcCs|j||jdS)zPut the item on the queue. The optional 'block' and 'timeout' arguments are ignored, as this method never blocks. They are provided for compatibility with the Queue class. N)rUrLrVZrelease)rr1r2r3rrrr6 s z_PySimpleQueue.putcCs4|dk r|dkrtd|j||s*t|jS)r7Nrr,)r!rVZacquirerrUrN)rr2r3rrrr9s z_PySimpleQueue.getcCr:)zPut an item into the queue without blocking. This is exactly equivalent to `put(item)` and is only provided for compatibility with the Queue class. Fr;r<r=rrrr>'r?z_PySimpleQueue.put_nowaitcCr@rArBr$rrrrC/r?z_PySimpleQueue.get_nowaitcCst|jdkS)zCReturn True if the queue is empty, False otherwise (not reliable!).rrIrUr$rrrr*7z_PySimpleQueue.emptycCrG)r&rWr$rrrr);rXz_PySimpleQueue.qsizerOrO) r rrrrr6r9r>rCr*r)rrrrrTs  rT)rrZ collectionsrZheapqrrr.rrUrZ ImportErrorZ__all__rZ Exceptionrrr r rTrrrrZs*   BA