o bc,@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__rrf/home/lily/lilypond-2.24.1/release/binaries/dependencies/install/Python-3.10.8/lib/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 threadingLockmutex 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 ValueError notify_all)r!Z 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)rrwaitr!rrrjoinOs  "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)r!itemblocktimeoutendtime 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). Nrr0r1) rr,rr'r$r2_getrr4)r!r6r7r8r9r5rrrgets.      $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. Fr6r:r!r5rrr 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)rqueuer rrrrs z Queue._initcC t|jSrIlenrJr(rrrr, z Queue._qsizecC|j|dSrIrJappendrArrrr3z Queue._putcC |jSrI)rJpopleftr(rrrr<rNz Queue._get)rTN)rrrrr"r&r)r-r.r/r:r=rBrGrr,r3r< 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|_dSrIrJr rrrrrNzPriorityQueue._initcCrKrIrLr(rrrr,rNzPriorityQueue._qsizecCst|j|dSrI)rrJrArrrr3rRzPriorityQueue._putcCrKrI)rrJr(rrrr<rNzPriorityQueue._getNrrrrrr,r3r<rrrrr s  r c@rZ) r zBVariant of Queue that retrieves most recently added entries first.cCr[rIr\r rrrrrNzLifoQueue._initcCrKrIrLr(rrrr,rNzLifoQueue._qsizecCrOrIrPrArrrr3rRzLifoQueue._putcCrSrI)rJpopr(rrrr<rNzLifoQueue._getNr]rrrrr 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_queuer 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`rQrbrelease)r!r5r6r7rrrr:s z_PySimpleQueue.putcCs4|dur |dkr td|j||st|jS)r;Nrr0)r$rbacquirerr`rT)r!r6r7rrrr=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@rArrrrB*rCz_PySimpleQueue.put_nowaitcCrDrErFr(rrrrG2rHz_PySimpleQueue.get_nowaitcCst|jdkS)zCReturn True if the queue is empty, False otherwise (not reliable!).rrMr`r(rrrr.:sz_PySimpleQueue.emptycCrK)r*rer(rrrr->s z_PySimpleQueue.qsizerU)rrrrr"r:r=rBrGr.r-rVrWrXrYrrrrr_s  r_)rrrW collectionsrheapqrrr2rr`r ImportError__all__r Exceptionrr r r r_rrrrs4    DC