o
    _b!5                     @   st   d dl Z d dlZd dlmZmZmZmZ d dlmZm	Z	m
Z
mZ G dd deZG dd deZG dd	 d	eZdS )
    N)CompleteMultipartUploadTaskCreateMultipartUploadTaskSubmissionTaskTask)ChunksizeAdjustercalculate_range_parameterget_callbacksget_filtered_dictc                
   @   sx   e Zd ZdZdddddddd	d
d	Zg dZg dZd	d
gZdd Zdd Z	dd Z
dd Zdd Zdd Zdd ZdS )CopySubmissionTaskz+Task for submitting tasks to execute a copyZIfMatchZIfModifiedSinceZIfNoneMatchZIfUnmodifiedSinceSSECustomerKeySSECustomerAlgorithmSSECustomerKeyMD5RequestPayerExpectedBucketOwner)	CopySourceIfMatchCopySourceIfModifiedSinceCopySourceIfNoneMatchCopySourceIfUnmodifiedSinceCopySourceSSECustomerKeyCopySourceSSECustomerAlgorithmCopySourceSSECustomerKeyMD5r   r   )r   r   r   r   r   r   r   r   r   r   r   r   )	r   r   r   r   r   r   r   ZMetadataDirectiveZTaggingDirectivec                 C   s   |j jdu r9|j j}| |j}|j}| D ]\}	}
|	| jv r'|
|| j|	 < q|jj	di |}|j 
|d  |j j|jk rK| ||||| dS | ||||| dS )a  
        :param client: The client associated with the transfer manager

        :type config: s3transfer.manager.TransferConfig
        :param config: The transfer config associated with the transfer
            manager

        :type osutil: s3transfer.utils.OSUtil
        :param osutil: The os utility associated to the transfer manager

        :type request_executor: s3transfer.futures.BoundedExecutor
        :param request_executor: The request executor associated with the
            transfer manager

        :type transfer_future: s3transfer.futures.TransferFuture
        :param transfer_future: The transfer future associated with the
            transfer request that tasks are being submitted for
        NZContentLength )metasize	call_args)_get_head_object_request_from_copy_sourcecopy_source
extra_argsitemsEXTRA_ARGS_TO_HEAD_ARGS_MAPPINGZsource_clientZhead_objectZprovide_transfer_sizeZmultipart_threshold_submit_copy_request_submit_multipart_request)selfclientconfigosutilrequest_executortransfer_futurer   Zhead_object_requestr   paramvalueresponser   r   5usr/lib/python3.10/site-packages/s3transfer/copies.py_submitJ   s6   



zCopySubmissionTask._submitc                 C   sL   |j j}t|d}| j|t| j||j|j|j|j	||j j
ddd d S )Nprogress)r#   r   bucketkeyr   	callbacksr   T)transfer_coordinatormain_kwargsis_final)r   r   r   _transfer_coordinatorsubmitCopyObjectTaskr   r.   r/   r   r   )r"   r#   r$   r%   r&   r'   r   progress_callbacksr   r   r+   r       s"   
	z'CopySubmissionTask._submit_copy_requestc                 C   sj  |j j}i }|j D ]\}}	|| jvr|	||< q| j|t| j||j|j	|dd}
|j
}t }|||j j}tt|j jt| }g }t|d}td|d D ]?}| |j}t||d ||j j|d< | ||d ||j j}|| j|t| j||j|j|j	||||dd|
id qU| |j}| j|t| j||j|j	|d|
|d	d
d d S )N)r#   r.   r/   r   )r1   r2   r-      ZCopySourceRange)r#   r   r.   r/   part_numberr   r0   r   	upload_id)r1   r2   pending_main_kwargs)r:   partsT)r1   r2   r;   r3   )r   r   r   r   CREATE_MULTIPART_ARGS_BLACKLISTr4   r5   r   r.   r/   Zmultipart_chunksizer   Zadjust_chunksizer   intmathceilfloatr   range_extra_upload_part_argsr   _get_transfer_sizeappendCopyPartTaskr   _extra_complete_multipart_argsr   )r"   r#   r$   r%   r&   r'   r   Zcreate_multipart_extra_argsr(   valZcreate_multipart_future	part_sizeZadjuster	num_partsZpart_futuresr7   r9   Zextra_part_argsr   Zcomplete_multipart_extra_argsr   r   r+   r!      s   

z,CopySubmissionTask._submit_multipart_requestc                 C   s(   t |tr
t|S td|t|f )NzZExpecting dictionary formatted: {"Bucket": bucket_name, "Key": key} but got %s or type %s.)
isinstancedictcopy	TypeErrortype)r"   r   r   r   r+   r     s   


z<CopySubmissionTask._get_head_object_request_from_copy_sourcec                 C      t || jS N)r	   UPLOAD_PART_COPY_ARGSr"   r   r   r   r+   rC     s   z*CopySubmissionTask._extra_upload_part_argsc                 C   rP   rQ   )r	   COMPLETE_MULTIPART_ARGSrS   r   r   r+   rG     s   z1CopySubmissionTask._extra_complete_multipart_argsc                 C   s   ||d kr|||  S |S )Nr8   r   )r"   rI   Z
part_indexrJ   Ztotal_transfer_sizer   r   r+   rD     s   z%CopySubmissionTask._get_transfer_sizeN)__name__
__module____qualname____doc__r   rR   r=   rT   r,   r    r!   r   rC   rG   rD   r   r   r   r+   r
      s,    >i
r
   c                   @      e Zd ZdZdd ZdS )r6   zTask to do a nonmultipart copyc           	      C   s0   |j d|||d| |D ]}||d qdS )a  
        :param client: The client to use when calling PutObject
        :param copy_source: The CopySource parameter to use
        :param bucket: The name of the bucket to copy to
        :param key: The name of the key to copy to
        :param extra_args: A dictionary of any extra arguments that may be
            used in the upload.
        :param callbacks: List of callbacks to call after copy
        :param size: The size of the transfer. This value is passed into
            the callbacks

        )
CopySourceBucketKeyZbytes_transferredNr   )Zcopy_object)	r"   r#   r   r.   r/   r   r0   r   callbackr   r   r+   _main*  s   zCopyObjectTask._mainNrU   rV   rW   rX   r_   r   r   r   r+   r6   '      r6   c                   @   rY   )rF   z)Task to upload a part in a multipart copyc
                 C   sF   |j d|||||d|}
|D ]}||	d q|
d d }||dS )a  
        :param client: The client to use when calling PutObject
        :param copy_source: The CopySource parameter to use
        :param bucket: The name of the bucket to upload to
        :param key: The name of the key to upload to
        :param upload_id: The id of the upload
        :param part_number: The number representing the part of the multipart
            upload
        :param extra_args: A dictionary of any extra arguments that may be
            used in the upload.
        :param callbacks: List of callbacks to call after copy part
        :param size: The size of the transfer. This value is passed into
            the callbacks

        :rtype: dict
        :returns: A dictionary representing a part::

            {'Etag': etag_value, 'PartNumber': part_number}

            This value can be appended to a list to be used to complete
            the multipart upload.
        )rZ   r[   r\   ZUploadId
PartNumberr]   ZCopyPartResultETag)rc   rb   Nr   )Zupload_part_copy)r"   r#   r   r.   r/   r:   r9   r   r0   r   r*   r^   Zetagr   r   r+   r_   C  s   "
zCopyPartTask._mainNr`   r   r   r   r+   rF   @  ra   rF   )rM   r?   Zs3transfer.tasksr   r   r   r   Zs3transfer.utilsr   r   r   r	   r
   r6   rF   r   r   r   r+   <module>   s     