
    Q-j                        d dl mZ d dlmZ d dlmZ d dlZd dlmZ d dlm	Z	 d dlm
Z
 erd dlmZ  e	d	       G d
 d             Z eddd       G d de             Zy)    )annotations)Any)TYPE_CHECKINGN)deprecated_class)experimental_class)experimental_func)FrozenTrial2.8.0c                  ~    e Zd ZdZ	 d		 	 	 	 	 d
dZddZe ed      dd              Ze ed      dd              Z	y) RetryHeartbeatStaleTrialCallbacka  Retry a heartbeat-stale trial up to a maximum number of times.

    When a running trial becomes stale due to the heartbeat mechanism, this callback can be
    used with a class in :mod:`optuna.storages` to recreate the trial in ``TrialState.WAITING``
    to queue up the trial to be run again.

    The original stale trial can be identified by the
    :func:`~optuna.storages.RetryHeartbeatStaleTrialCallback.retried_trial_number` function.
    Even if repetitive failure occurs (a retried trial becomes stale again), this method returns
    the number of the original trial. To get a full list including the numbers of the retried
    trials as well as their original trial, call the
    :func:`~optuna.storages.RetryHeartbeatStaleTrialCallback.retry_history` function.

    This callback is helpful in environments where running trials may become stale due to external
    conditions, such as worker preemption or unexpected process termination.

    Usage:

        .. testcode::

            import optuna
            from optuna.storages import RetryHeartbeatStaleTrialCallback

            storage = optuna.storages.RDBStorage(
                url="sqlite:///:memory:",
                heartbeat_interval=60,
                grace_period=120,
                heartbeat_stale_trial_callback=RetryHeartbeatStaleTrialCallback(max_retry=3),
            )

            study = optuna.create_study(
                storage=storage,
            )

    .. seealso::
        See :class:`~optuna.storages.RDBStorage`.

    Args:
        max_retry:
            The max number of times a trial can be retried. Must be set to :obj:`None` or an
            integer. If set to the default value of :obj:`None` will retry indefinitely.
            If set to an integer, will only retry that many times.
        inherit_intermediate_values:
            Option to inherit `trial.intermediate_values` reported by
            :func:`optuna.trial.Trial.report` from the failed trial. Default is :obj:`False`.
    Nc                     || _         || _        y )N)
_max_retry_inherit_intermediate_values)self	max_retryinherit_intermediate_valuess      h/Users/jameslopez/projects/TradingBot25/.venv/lib/python3.12/site-packages/optuna/storages/_callbacks.py__init__z)RetryHeartbeatStaleTrialCallback.__init__A   s     $,G)    c           
        |j                   g d|j                  }|d   j                  |j                          | j                  | j                  t	        |d         k  ry |j                  t        j                  t        j                  j                  j                  |j                  |j                  |j                  || j                  r|j                  nd              y )N)failed_trialretry_historyr   )stateparamsdistributions
user_attrssystem_attrsintermediate_values)numberr   appendr   len	add_trialoptunacreate_trialtrial
TrialStateWAITINGr   r   r   r   r   )r   studyr%   r   s       r   __call__z)RetryHeartbeatStaleTrialCallback.__call__G   s    !LL(
   (

 	_%,,U\\:??&\/%B!CCll--55||#11 ++)151R1RE--X\		
r   r
   c                :    | j                   j                  dd      S )a
  Return the number of the original trial being retried.

        Args:
            trial:
                The trial object.

        Returns:
            The number of the first failed trial. If not retry of a previous trial,
            returns :obj:`None`.
        r   Nr   getr%   s    r   retried_trial_numberz5RetryHeartbeatStaleTrialCallback.retried_trial_number_   s     !!%%nd;;r   z3.0.0c                :    | j                   j                  dg       S )at  Return the list of retried trial numbers with respect to the specified trial.

        Args:
            trial:
                The trial object.

        Returns:
            A list of trial numbers in ascending order of the series of retried trials.
            The first item of the list indicates the original trial which is identical
            to the :func:`~optuna.storages.RetryHeartbeatStaleTrialCallback.retried_trial_number`,
            and the last item is the one right before the specified trial in the retry series.
            If the specified trial is not a retry of any trial, returns an empty list.
        r   r+   r-   s    r   r   z.RetryHeartbeatStaleTrialCallback.retry_historyo   s      !!%%or::r   )NF)r   
int | Noner   boolreturnNone)r(   z'optuna.study.Study'r%   r	   r2   r3   )r%   r	   r2   r0   )r%   r	   r2   z	list[int])
__name__
__module____qualname____doc__r   r)   staticmethodr   r.   r    r   r   r   r      sw    -` QVH#HIMH	H
0 w<   < w;   ;r   r   z4.9.0z6.0.0z/Use `RetryHeartbeatStaleTrialCallback` instead.)textc                      e Zd ZdZy)RetryFailedTrialCallbackzDeprecated alias of :class:`~optuna.storages.RetryHeartbeatStaleTrialCallback`.

    Deprecated in v4.9.0. This class will be removed in v6.0.0.
    N)r4   r5   r6   r7   r9   r   r   r<   r<      s    
 	r   r<   )
__future__r   typingr   r   r#   optuna._deprecatedr   optuna._experimentalr   r   optuna.trialr	   r   r<   r9   r   r   <module>rB      sn    "     / 3 2 ( Gn; n; n;b 	:
	? 	
	r   