AlkantarClanX12
Current Path : /opt/alt/python37/lib64/python3.7/__pycache__/ |
Current File : //opt/alt/python37/lib64/python3.7/__pycache__/queue.cpython-37.pyc |
B � f_, � @ s d Z ddlZddlmZ ddlmZmZ ddlmZ yddl m Z W n ek r\ dZ Y nX ddd d ddgZydd l m Z W n$ ek r� G dd� de�Z Y nX G dd� de�ZG dd � d �ZG dd � d e�ZG dd� de�ZG dd� d�Ze dkr�eZ dS )z'A multi-producer, multi-consumer queue.� N)�deque)�heappush�heappop)� monotonic)�SimpleQueue�Empty�Full�Queue� 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 �*/opt/alt/python37/lib64/python3.7/queue.pyr s c @ s e Zd ZdZdS )r z4Exception raised by Queue.put(block=0)/put_nowait().N)r r r r r r r r r s c @ s� e Zd ZdZd!dd�Zdd� Zdd� Zd d � Zdd� Zd d� Z d"dd�Z d#dd�Zdd� 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� threadingZLock�mutexZ Condition� not_empty�not_full�all_tasks_done�unfinished_tasks)�selfr r r r �__init__! s zQueue.__init__c C sH | j �8 | jd }|dkr4|dk r*td��| j �� || _W dQ 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 � ValueErrorZ notify_all)r Z unfinishedr r r � task_done8 s zQueue.task_donec C s, | j � x| jr| j �� q W W dQ 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 �wait)r r r r �joinN s z Queue.joinc C s | j � | �� S Q R X dS )z9Return the approximate size of the queue (not reliable!).N)r �_qsize)r r r r �qsize[ s zQueue.qsizec C s | j � | �� S Q R X dS )a� Return 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. N)r r! )r r r r �empty` s zQueue.emptyc C s0 | j � d| j k o | �� kS S Q R X dS )aO Return 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. r N)r r r! )r r r r �fulln s z Queue.fullTNc C s� | j �� | jdkr�|s*| �� | jkr�t�nz|dkrRxp| �� | jkrN| j �� q4W nR|dk rdtd��n@t� | }x4| �� | jkr�|t� }|dkr�t�| j �|� qpW | �|� | jd7 _| j � � W dQ R X dS )a Put 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). r Nz''timeout' must be a non-negative numberg r )r r r! r r r �time�_putr r �notify)r �item�block�timeout�endtime� remainingr r r �puty s&