%PDF- %PDF-
Direktori : /usr/local/lib/python3.8/__pycache__/ |
Current File : //usr/local/lib/python3.8/__pycache__/queue.cpython-38.pyc |
U na\, @ s d Z ddlZddlmZ ddlmZmZ ddlmZ zddl m Z W n ek r\ dZ Y nX ddd d ddgZzdd l m Z W n$ ek r G dd deZ Y nX G dd deZG dd d ZG dd d eZG dd deZG dd dZe dkreZ dS )z'A multi-producer, multi-consumer queue. N)deque)heappushheappop) monotonic)SimpleQueueEmptyFullQueue PriorityQueue LifoQueuer )r c @ s e Zd ZdZdS )r z4Exception raised by Queue.get(block=0)/get_nowait().N__name__ __module____qualname____doc__ r r !/usr/local/lib/python3.8/queue.pyr s c @ s e Zd ZdZdS )r z4Exception raised by Queue.put(block=0)/put_nowait().Nr r r r r r s c @ s e Zd ZdZd!ddZdd Zdd Zd d Zdd Zd d Z d"ddZ d#ddZdd Zdd Z dd Zdd Zdd Zdd ZdS )$r zjCreate a queue object with a given maximum size. If maxsize is <= 0, the queue size is infinite. r c C sN || _ | | t | _t| j| _t| j| _t| j| _d| _ d S Nr ) maxsize_init threadingLockmutex Condition not_emptynot_fullall_tasks_doneunfinished_tasksselfr r r r __init__! s zQueue.__init__c C sH | j 8 | jd }|dkr4|dk r*td| j || _W 5 Q R X dS )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. r z!task_done() called too many timesN)r r ValueError notify_all)r unfinishedr r r task_done8 s zQueue.task_donec C s( | j | jr| j qW 5 Q R X dS )a Blocks 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)r r waitr r r r joinN s z Queue.joinc C s&