U
    €Ha  ã                   @   sH   d Z ddlZddlZddlmZ ddlmZ dgZdd„ Zdd
d„Z	dS )zž
Move a file in the safest way possible::

    >>> from django.core.files.move import file_move_safe
    >>> file_move_safe("/tmp/old_file", "/tmp/new_file")
é    N)Úcopystat)ÚlocksÚfile_move_safec                 C   s\   t tjdƒr4ztj | |¡W S  tk
r2   Y dS X tj tj | ¡¡tj tj |¡¡kS )NÚsamefileF)ÚhasattrÚosÚpathr   ÚOSErrorÚnormcaseÚabspath)ÚsrcÚdst© r   ú:/tmp/pip-unpacked-wheel-3jxiddxt/django/core/files/move.pyÚ	_samefile   s    ÿr   é   Fc              
   C   sv  t | |ƒrdS z0|s.t |tj¡r.td| ƒ‚t | |¡ W dS  tk
rR   Y nX t| dƒ‚}t |tjtj	B t
tddƒB |s†tjndB ¡}z6t |tj¡ d}|dkrÂ| |¡}t ||¡ q¢W 5 t |¡ t |¡ X W 5 Q R X zt| |ƒ W n4 tk
r( } z|jtjkr‚ W 5 d}~X Y nX zt | ¡ W n8 tk
rp } zt
|ddƒdkr`‚ W 5 d}~X Y nX dS )	aU  
    Move a file from one location to another in the safest way possible.

    First, try ``os.rename``, which is simple but will break across filesystems.
    If that fails, stream manually from one file to another in pure Python.

    If the destination file exists and ``allow_overwrite`` is ``False``, raise
    ``FileExistsError``.
    Nz8Destination file %s exists and allow_overwrite is False.ÚrbÚO_BINARYr   ó    Úwinerroré    )r   r   ÚaccessÚF_OKÚFileExistsErrorÚrenamer	   ÚopenÚO_WRONLYÚO_CREATÚgetattrÚO_EXCLr   ZunlockÚcloseÚlockZLOCK_EXÚreadÚwriter   ÚPermissionErrorÚerrnoÚEPERMÚremove)Zold_file_nameZnew_file_nameÚ
chunk_sizeZallow_overwriteZold_fileÚfdZcurrent_chunkÚer   r   r   r      s>    
ÿ

)r   F)
Ú__doc__r%   r   Úshutilr   Zdjango.core.filesr   Ú__all__r   r   r   r   r   r   Ú<module>   s   