o
    ]~#g
                     @  s   d Z ddlmZ ddlZddlZddlZddlmZ ddlmZ ddl	m
Z
 ddlmZ e  edZdddZdddZdS )ze
Some light wrappers around Python's multiprocessing, to deal with cleanly
starting child processes.
    )annotationsN)SpawnProcess)socket)Callable)Configspawnconfigr   targetCallable[..., None]socketslist[socket]returnr   c              	   C  sF   zt j }W n ttfy   d}Y nw | |||d}tjt|dS )a  
    Called in the parent process, to instantiate a new child process instance.
    The child is not yet started at this point.

    * config - The Uvicorn configuration instance.
    * target - A callable that accepts a list of sockets. In practice this will
               be the `Server.run()` method.
    * sockets - A list of sockets to pass to the server. Sockets are bound once
                by the parent process, and then passed to the child processes.
    Nr   r	   r   stdin_fileno)r	   kwargs)sysstdinfilenoAttributeErrorOSErrorr   Processsubprocess_started)r   r	   r   r   r    r   x/var/www/static.ux5.de/https/Moving-Object-Detection-with-OpenCV/env/lib/python3.10/site-packages/uvicorn/_subprocess.pyget_subprocess   s   r   r   
int | NoneNonec                 C  sB   |dur
t |t_|   z||d W dS  ty    Y dS w )a  
    Called when the child process starts.

    * config - The Uvicorn configuration instance.
    * target - A callable that accepts a list of sockets. In practice this will
               be the `Server.run()` method.
    * sockets - A list of sockets to pass to the server. Sockets are bound once
                by the parent process, and then passed to the child processes.
    * stdin_fileno - The file number of sys.stdin, so that it can be reattached
                     to the child process.
    N)r   )osfdopenr   r   configure_loggingKeyboardInterruptr   r   r   r   r   6   s   r   )r   r   r	   r
   r   r   r   r   )
r   r   r	   r
   r   r   r   r   r   r   )__doc__
__future__r   multiprocessingr   r   multiprocessing.contextr   r   typingr   uvicorn.configr   allow_connection_picklingget_contextr   r   r   r   r   r   r   <module>   s    

!