o ?Og,@sdZddlZddlZddlmZddlmZmZddlm Zzddl m Z Wn e y1dZ YnwgdZ zddl mZWne yOGd d d eZYnwGd d d eZGd ddZGdddeZGdddeZGdddZe dur~eZ dSdS)z'A multi-producer, multi-consumer queue.N)deque)heappushheappop) monotonic) SimpleQueue)EmptyFullQueue PriorityQueue LifoQueuer)rc@eZdZdZdS)rz4Exception raised by Queue.get(block=0)/get_nowait().N__name__ __module__ __qualname____doc__rr,/opt/alt/python310/lib64/python3.10/queue.pyrrc@r )rz4Exception raised by Queue.put(block=0)/put_nowait().Nr rrrrrrrc@seZdZdZd!ddZddZddZd d Zd d Zd dZ d"ddZ d"ddZ ddZ ddZ ddZddZddZdd ZeejZdS)#r zjCreate 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__cCs^|j"|jd}|dkr|dkrtd|j||_WddS1s(wYdS)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_done9s  "zQueue.task_donecCsR|j|jr|j|jsWddSWddS1s"wYdS)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)rrwaitrrrrjoinOs  "z Queue.joincCs2|j |WdS1swYdS)9Return the approximate size of the queue (not reliable!).Nr_qsizer%rrrqsize\s$z Queue.qsizecCs4|j | WdS1swYdS)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%rrremptyas $z Queue.emptycCsH|jd|jko|knWdS1swYdS)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%rrrfullos$z Queue.fullTNcCs|jo|jdkrY|s||jkrtnD|dur-||jkr,|j||jks n,|dkr5tdt|}||jkrY|t}|dkrLt|j|||jksA|||jd7_|j WddS1suwYdS)aPut an item into the queue. If optional args 'block' is true and 'timeout' is None (the default), block if necessary until a free slot is available. If 'timeout' is a non-negative number, it blocks at most 'timeout' seconds and raises the Full exception if no free slot was available within that time. Otherwise ('block' is false), put an item on the queue if a free slot is immediately available, else raise the Full exception ('timeout' is ignored in that case). rN''timeout' must be a non-negative numberr!) rrr)rr$r"time_putrrnotify)ritemblocktimeoutendtime remainingrrrputzs0       "z Queue.putcCs|jT|s |s tn8|dur|s|j|rn&|dkr'tdt|}|sE|t}|dkr;t|j||r0|}|j|WdS1sZwYdS)Remove and return an item from the queue. If optional args 'block' is true and 'timeout' is None (the default), block if necessary until an item is available. If 'timeout' is a non-negative number, it blocks at most 'timeout' seconds and raises the Empty exception if no item was available within that time. Otherwise ('block' is false), return an item if one is immediately available, else raise the Empty exception ('timeout' is ignored in that case). Nrr-r.) rr)rr$r"r/_getrr1)rr3r4r5r6r2rrrgets.      $z Queue.getcC|j|ddS)zPut an item into the queue without blocking. Only enqueue the item if a free slot is immediately available. Otherwise raise the Full exception. Fr3r7rr2rrr put_nowaitzQueue.put_nowaitcC |jddSzRemove and return an item from the queue without blocking. Only get an item if one is immediately available. Otherwise raise the Empty exception. Fr<r:r%rrr get_nowait zQueue.get_nowaitcCs t|_dSN)rqueuerrrrrs z Queue._initcC t|jSrFlenrGr%rrrr) z Queue._qsizecC|j|dSrFrGappendr>rrrr0z Queue._putcC |jSrF)rGpopleftr%rrrr9rKz Queue._get)rTN)rrrrr r#r&r*r+r,r7r:r?rDrr)r0r9 classmethodtypes GenericAlias__class_getitem__rrrrr s"    r 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|_dSrFrGrrrrrrKzPriorityQueue._initcCrHrFrIr%rrrr)rKzPriorityQueue._qsizecCst|j|dSrF)rrGr>rrrr0rOzPriorityQueue._putcCrHrF)rrGr%rrrr9rKzPriorityQueue._getNrrrrrr)r0r9rrrrr s  r c@rW) r zBVariant of Queue that retrieves most recently added entries first.cCrXrFrYrrrrrrKzLifoQueue._initcCrHrFrIr%rrrr)rKzLifoQueue._qsizecCrLrFrMr>rrrr0rOzLifoQueue._putcCrPrF)rGpopr%rrrr9rKzLifoQueue._getNrZrrrrr s  r c@sVeZdZdZddZdddZddd Zd d Zd d ZddZ ddZ e e j ZdS)_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)r]rNr^release)rr2r3r4rrrr7s z_PySimpleQueue.putcCs4|dur |dkr td|j||st|jS)r8Nrr-)r"r^acquirerr]rQ)rr3r4rrrr:s   z_PySimpleQueue.getcCr;)zPut an item into the queue without blocking. This is exactly equivalent to `put(item, block=False)` and is only provided for compatibility with the Queue class. Fr<r=r>rrrr?*r@z_PySimpleQueue.put_nowaitcCrArBrCr%rrrrD2rEz_PySimpleQueue.get_nowaitcCst|jdkS)zCReturn True if the queue is empty, False otherwise (not reliable!).rrJr]r%rrrr+:sz_PySimpleQueue.emptycCrH)r'rar%rrrr*>s z_PySimpleQueue.qsizerR)rrrrr r7r:r?rDr+r*rSrTrUrVrrrrr\s  r\)rrrT collectionsrheapqrrr/rr]r ImportError__all__r Exceptionrr r r r\rrrrs4    DC