o y`R@sBddlmZddlmZddlZddlZddlZddlZddlm Z ddlm Z ddl m Z m Z ddlmZddlmZeeZGd d d eZGd d d eZGd ddeZGdddeZGdddeZGdddeZGdddeZGdddeZGdddeZGdddeZeddgZedZ ed Z!dS)!)futures) namedtupleN)MAXINT)six)CancelledErrorTransferNotDoneError)FunctionContainer) TaskSemaphorec@s0eZdZeddZddZddZddZd S) BaseTransferFuturecCtd)z-The metadata associated to the TransferFuturemetaNotImplementedErrorselfr4/usr/lib/python3/dist-packages/s3transfer/futures.pyr zBaseTransferFuture.metacCr )zmDetermines if a TransferFuture has completed :returns: True if completed. False, otherwise. zdone()r rrrrdone$szBaseTransferFuture.donecCr )Waits until TransferFuture is done and returns the result If the TransferFuture succeeded, it will return the result. If the TransferFuture failed, it will raise the exception associated to the failure. zresult()r rrrrresult+szBaseTransferFuture.resultcCr )z6Cancels the request associated with the TransferFuturezcancel()r rrrrcancel4szBaseTransferFuture.cancelN)__name__ __module__ __qualname__propertyr rrrrrrrr s   r c@s0eZdZeddZeddZeddZdS)BaseTransferMetacCr )*The call args used in the transfer request call_argsr rrrrr:rzBaseTransferMeta.call_argscCr )The unique id of the transfer transfer_idr rrrrr ?rzBaseTransferMeta.transfer_idcCr ).A dictionary that requesters can store data in user_contextr rrrrr"DrzBaseTransferMeta.user_contextN)rrrrrr r"rrrrr9s  rc@sBeZdZdddZeddZddZdd Zd d Zd d Z dS)TransferFutureNcCs4||_|dur t|_||_|durt|_dSdS)aThe future associated to a submitted transfer request :type meta: TransferMeta :param meta: The metadata associated to the request. This object is visible to the requester. :type coordinator: TransferCoordinator :param coordinator: The coordinator associated to the request. This object is not visible to the requester. N)_meta TransferMeta _coordinatorTransferCoordinator)rr coordinatorrrr__init__Ks  zTransferFuture.__init__cC|jSN)r$rrrrr ^zTransferFuture.metacC |jSr+)r&rrrrrrb zTransferFuture.donec Cs2z|jWSty}z||d}~wwr+)r&rKeyboardInterruptr)rerrrres zTransferFuture.resultcCs|jdSr+)r&rrrrrroszTransferFuture.cancelcCs$|std|jj|dddS)z!Sets the exception on the future.z?set_exception can only be called once the transfer is complete.T)overrideN)rrr& set_exception)r exceptionrrrr2rs zTransferFuture.set_exceptionNN) rrrr)rr rrrr2rrrrr#Js   r#c@sReZdZdZdddZeddZeddZed d Zed d Z d dZ dS)r%z'Holds metadata about the TransferFutureNcCs||_||_d|_i|_dSr+) _call_args _transfer_id_size _user_context)rrr rrrr)}s zTransferMeta.__init__cCr*)r)r5rrrrrzTransferMeta.call_argscCr*)r)r6rrrrr r9zTransferMeta.transfer_idcCr*)z)The size of the transfer request if knownr7rrrrsizer9zTransferMeta.sizecCr*)r!)r8rrrrr"r9zTransferMeta.user_contextcC ||_dS)zA method to provide the size of a transfer request By providing this value, the TransferManager will not try to call HeadObject or use the use OS to determine the size of the transfer. Nr:)rr;rrrprovide_transfer_sizes z"TransferMeta.provide_transfer_sizer4) rrr__doc__r)rrr r;r"r=rrrrr%{s      r%c@seZdZdZd5ddZddZeddZed d Zed d Z ed dZ ddZ d6ddZ ddZ defddZddZddZddZd5dd Zd!d"Zd#d$Zd%d&Zd'd(Zd)d*Zd+d,Zd-d.Zd/d0Zd1d2Zd3d4ZdS)7r'z*A helper class for managing TransferFutureNcCsb||_d|_d|_d|_t|_g|_g|_t |_ t |_ t |_ t |_t |_dS)N not-started)r _status_result _exceptionset_associated_futures_failure_cleanups_done_callbacks threadingEvent _done_eventLock_lock_associated_futures_lock_done_callbacks_lock_failure_cleanups_lock)rr rrrr)s    zTransferCoordinator.__init__cCsd|jj|jfS)Nz%s(transfer_id=%s)) __class__rr rrrr__repr__s zTransferCoordinator.__repr__cCr*r+)rBrrrrr3r,zTransferCoordinator.exceptioncCs6|jt|jWdS1swYdS)zThe list of futures associated to the inprogress TransferFuture Once the transfer finishes this list becomes empty as the transfer is considered done and there should be no running futures left. N)rLcopyrDrrrrassociated_futuress $z&TransferCoordinator.associated_futurescCr*)z;The list of callbacks to call when the TransferFuture fails)rErrrrfailure_cleanupsr9z$TransferCoordinator.failure_cleanupscCr*)aThe status of the TransferFuture The currently supported states are: * not-started - Has yet to start. If in this state, a transfer can be canceled immediately and nothing will happen. * queued - SubmissionTask is about to submit tasks * running - Is inprogress. In-progress as of now means that the SubmissionTask that runs the transfer is being executed. So there is no guarantee any transfer requests had been made to S3 if this state is reached. * cancelled - Was cancelled * failed - An exception other than CancelledError was thrown * success - No exceptions were thrown and is done. )r@rrrrstatusszTransferCoordinator.statuscCs>|jd|_||_d|_WddS1swYdS)aSet a result for the TransferFuture Implies that the TransferFuture succeeded. This will always set a result because it is invoked on the final task where there is only ever one final task and it is ran at the very end of a transfer process. So if a result is being set for this final task, the transfer succeeded even if something came a long and canceled the transfer on the final task. Nsuccess)rKrBrAr@rrrrr set_results  "zTransferCoordinator.set_resultFcCsT|j|r |r||_d|_WddSWddS1s#wYdS)zSet an exception for the TransferFuture Implies the TransferFuture failed. :param exception: The exception that cause the transfer to fail. :param override: If True, override any existing state. failedN)rKrrBr@)rr3r1rrrr2s "z!TransferCoordinator.set_exceptioncCs|jt|jr |j|jS)r)rIwaitrrBrArrrrrs zTransferCoordinator.resultcCs|j;|s.d}td|||||_|jdkrd}d|_|r6|WddSWddSWddS1sAwYdS)zCancels the TransferFuture :param msg: The message to attach to the cancellation :param exc_type: The type of exception to set for the cancellation Fz%s cancel(%s) calledr?T cancelledN)rKrloggerdebugrBr@ announce_done)rmsgexc_typeshould_announce_donerrrr s   "zTransferCoordinator.cancelcC|ddS)z+Sets the TransferFutrue's status to runningqueuedN_transition_to_non_done_staterrrrset_status_to_queuedz(TransferCoordinator.set_status_to_queuedcCrb)z+Sets the TransferFuture's status to runningrunningNrdrrrrset_status_to_running!rgz)TransferCoordinator.set_status_to_runningcCsL|j|rtd|j|f||_WddS1swYdS)Nz=Unable to transition from done state %s to non-done state %s.)rKr RuntimeErrorrTr@)r desired_staterrrre%s"z1TransferCoordinator._transition_to_non_done_statecCsDtd|||jf|j||d}|||t|j||S)aSubmits a task to a provided executor :type executor: s3transfer.futures.BoundedExecutor :param executor: The executor to submit the callable to :type task: s3transfer.tasks.Task :param task: The task to submit to the executor :type tag: s3transfer.futures.TaskTag :param tag: A tag to associate to the submitted task :rtype: concurrent.futures.Future :returns: A future representing the submitted task z;Submitting task %s to executor %s for transfer request: %s.)tag)r\r]r submitadd_associated_futureadd_done_callbackrremove_associated_future)rexecutortaskrlfuturerrrrm-s  zTransferCoordinator.submitcCs |jdvS)zDetermines if a TransferFuture has completed :returns: False if status is equal to 'failed', 'cancelled', or 'success'. True, otherwise )rXr[rU)rTrrrrrHs zTransferCoordinator.donecC8|j|j|WddS1swYdS)z6Adds a future to be associated with the TransferFutureN)rLrDaddrrsrrrrnP"z)TransferCoordinator.add_associated_futurecCrt)z4Removes a future's association to the TransferFutureN)rLrDremovervrrrrpUrwz,TransferCoordinator.remove_associated_futurecOJ|j|jt|g|Ri|WddS1swYdS)z7Add a done callback to be invoked when transfer is doneN)rMrFappendrrfunctionargskwargsrrrroZ "z%TransferCoordinator.add_done_callbackcOry)z$Adds a callback to call upon failureN)rNrErzrr{rrradd_failure_cleanuparz'TransferCoordinator.add_failure_cleanupcCs(|jdkr ||j|dS)aMAnnounce that future is done running and run associated callbacks This will run any failure cleanups if the transfer failed if not they have not been run, allows the result() to be unblocked, and will run any done callbacks associated to the TransferFuture if they have not already been ran. rUN)rT_run_failure_cleanupsrIrC_run_done_callbacksrrrrr^gs   z!TransferCoordinator.announce_donecCs>|j||jg|_WddS1swYdSr+)rM_run_callbacksrFrrrrrt "z'TransferCoordinator._run_done_callbackscCs>|j||jg|_WddS1swYdSr+)rNrrSrErrrrr|rz)TransferCoordinator._run_failure_cleanupscCs|D]}||qdSr+) _run_callback)r callbackscallbackrrrrs z"TransferCoordinator._run_callbackscCs4z|WdStytjd|ddYdSw)NzException raised in %s.T)exc_info) Exceptionr\r])rrrrrrs   z!TransferCoordinator._run_callbackr+)F)rrrr>r)rPrr3rRrSrTrWr2rrrrfrirermrrnrprorr^rrrrrrrrr's<          r'c@s4eZdZejZ  d ddZd ddZd ddZdS) BoundedExecutorNcCs6||_|dur |j}||jd|_t||_||_dS)aDAn executor implentation that has a maximum queued up tasks The executor will block if the number of tasks that have been submitted and is currently working on is past its maximum. :params max_size: The maximum number of inflight futures. An inflight future means that the task is either queued up or is currently being executed. A size of None or 0 means that the executor will have no bound in terms of the number of inflight futures. :params max_num_threads: The maximum number of threads the executor uses. :type tag_semaphores: dict :params tag_semaphores: A dictionary where the key is the name of the tag and the value is the semaphore to use when limiting the number of tasks the executor is processing at a time. :type executor_cls: BaseExecutor :param underlying_executor_cls: The executor class that get bounded by this executor. If None is provided, the concurrent.futures.ThreadPoolExecutor class is used. N) max_workers)_max_num_threads EXECUTOR_CLS _executorr _semaphore_tag_semaphores)rmax_sizemax_num_threadstag_semaphores executor_clsrrrr)s   zBoundedExecutor.__init__TcCsP|j}|r |j|}||j|}t|j|j|}t|j|}| ||S)a1Submit a task to complete :type task: s3transfer.tasks.Task :param task: The task to run __call__ on :type tag: s3transfer.futures.TaskTag :param tag: An optional tag to associate to the task. This is used to override which semaphore to use. :type block: boolean :param block: True if to wait till it is possible to submit a task. False, if not to wait and raise an error if not able to submit a task. :returns: The future assocaited to the submitted task ) rracquirer rreleaseExecutorFuturerrmro)rrrrlblock semaphore acquire_tokenrelease_callbackrsrrrrms   zBoundedExecutor.submitcCs|j|dSr+)rshutdownrrYrrrrszBoundedExecutor.shutdownr4NTT) rrrrThreadPoolExecutorrr)rmrrrrrrs %rc@s,eZdZddZddZddZddZd S) rcCr<)aA future returned from the executor Currently, it is just a wrapper around a concurrent.futures.Future. However, this can eventually grow to implement the needed functionality of concurrent.futures.Future if we move off of the library and not affect the rest of the codebase. :type future: concurrent.futures.Future :param future: The underlying future N)_futurervrrrr)s zExecutorFuture.__init__cCr-r+)rrrrrrrr.zExecutorFuture.resultcsfdd}|j|dS)aAdds a callback to be completed once future is done :parm fn: A callable that takes no arguments. Note that is different than concurrent.futures.Future.add_done_callback that requires a single argument for the future. csSr+r)future_passed_to_callbackfnrr done_callbackz7ExecutorFuture.add_done_callback..done_callbackN)rro)rrrrrrros z ExecutorFuture.add_done_callbackcCr-r+)rrrrrrrr.zExecutorFuture.doneN)rrrr)rrorrrrrrs   rc@s,eZdZdZd ddZddZd dd ZdS) BaseExecutorzABase Executor class implementation needed to work with s3transferNcCdSr+r)rrrrrr)zBaseExecutor.__init__cOr )Nzsubmit()r )rrr}r~rrrrmzBaseExecutor.submitTcCr )Nz shutdown()r rrrrrrzBaseExecutor.shutdownr+r)rrrr>r)rmrrrrrrs  rc@s"eZdZdZddZdddZdS) NonThreadedExecutorz@A drop-in replacement non-threaded version of ThreadPoolExecutorc Osjt}z||i|}||W|Sty4tdd\}}td||||||Y|Sw)Nz0Setting exception for %s to %s with traceback %s)NonThreadedExecutorFuturerWrsysrr\r]set_exception_info)rrr}r~rsrr0tbrrrrms  zNonThreadedExecutor.submitTcCrr+rrrrrrrzNonThreadedExecutor.shutdownNr)rrrr>rmrrrrrr src@sReZdZdZddZddZddZdd d Zd d Zd dZ ddZ ddZ dS)rzThe Future returned from NonThreadedExecutor Note that this future is **not** thread-safe as it is being used from the context of a non-threaded environment. cCs"d|_d|_d|_d|_g|_dS)NF)rArB _traceback_donerFrrrrr)&s  z"NonThreadedExecutorFuture.__init__cCs||_|dSr+)rA _set_donerVrrrrW-s z$NonThreadedExecutorFuture.set_resultcCs||_||_|dSr+)rBrr)rr3 tracebackrrrr1s z,NonThreadedExecutorFuture.set_exception_infoNcCs$|jrtt|j|j|j|jSr+)rBrreraisetyperrA)rtimeoutrrrr6s z NonThreadedExecutorFuture.resultcCs&d|_|jD]}||qg|_dSr)rrF_invoke_done_callbackrrrrrr<s   z#NonThreadedExecutorFuture._set_donecCs||Sr+rrrrrrBrz/NonThreadedExecutorFuture._invoke_done_callbackcCr*r+)rrrrrrErzNonThreadedExecutorFuture.donecCs$|jr ||dS|j|dSr+)rrrFrz)rrrrrroHsz+NonThreadedExecutorFuture.add_done_callbackr+) rrrr>r)rWrrrrrrorrrrr s  rTaskTagnamein_memory_uploadin_memory_download)" concurrentr collectionsrrQloggingrrGs3transfer.compatrrs3transfer.exceptionsrrs3transfer.utilsrr getLoggerrr\objectr rr#r%r'rrrrrrIN_MEMORY_UPLOAD_TAGIN_MEMORY_DOWNLOAD_TAGrrrrs4      1&qL#  /