
    Owg@                     v    d dl Z d dlmZmZ  G d de      Z G d de      Z G d de      Z G d	 d
e      Z	y)    N)ABCMetaabstractmethodc                   "     e Zd ZdZ fdZ xZS )JobLookupErrorzBRaised when the job store cannot find a job for update or removal.c                 ,    t         |   d| d       y )NzNo job by the id of z
 was foundsuper__init__selfjob_id	__class__s     Q/var/www/horilla/myenv/lib/python3.12/site-packages/apscheduler/jobstores/base.pyr
   zJobLookupError.__init__   s    /xzBC    __name__
__module____qualname____doc__r
   __classcell__r   s   @r   r   r      s    LD Dr   r   c                   "     e Zd ZdZ fdZ xZS )ConflictingIdErrorz8Raised when the uniqueness of job IDs is being violated.c                 ,    t         |   d| d       y )NzJob identifier (z ) conflicts with an existing jobr   r   s     r   r
   zConflictingIdError.__init__   s    +F83STUr   r   r   s   @r   r   r      s    BV Vr   r   c                   "     e Zd ZdZ fdZ xZS )TransientJobErrorzs
    Raised when an attempt to add transient (with no func_ref) job to a persistent job store is
    detected.
    c                 ,    t         |   d| d       y )NzJob (z`) cannot be added to this job store because a reference to the callable could not be determined.r   r   s     r   r
   zTransientJobError.__init__   s!    F8 ' '	
r   r   r   s   @r   r   r      s    

 
r   r   c                       e Zd ZdZdZdZ ej                  d      Zd Z	d Z
d Zed        Zed        Zed	        Zed
        Zed        Zed        Zed        Zed        Zd Zy)BaseJobStorezSAbstract base class that defines the interface that every job store must implement.Nzapscheduler.jobstoresc                 Z    || _         || _        t        j                  d|       | _        y)ax  
        Called by the scheduler when the scheduler is being started or when the job store is being
        added to an already running scheduler.

        :param apscheduler.schedulers.base.BaseScheduler scheduler: the scheduler that is starting
            this job store
        :param str|unicode alias: alias of this job store as it was assigned to the scheduler
        zapscheduler.jobstores.N)
_scheduler_aliaslogging	getLogger_logger)r   	scheduleraliass      r   startzBaseJobStore.start'   s,     $((+A%)IJr   c                      y)z2Frees any resources still bound to this job store.N r   s    r   shutdownzBaseJobStore.shutdown5       r   c                     t        |      D ]3  \  }}|j                  |dkD  r|d | }|d |= |j                  |        y  y )Nr   )	enumeratenext_run_timeextend)r   jobsijobpaused_jobss        r   _fix_paused_jobs_sortingz%BaseJobStore._fix_paused_jobs_sorting8   sQ    o 	FAs  ,q5"&r(KRaRKK,	r   c                      y)aG  
        Returns a specific job, or ``None`` if it isn't found..

        The job store is responsible for setting the ``scheduler`` and ``jobstore`` attributes of
        the returned job to point to the scheduler and itself, respectively.

        :param str|unicode job_id: identifier of the job
        :rtype: Job
        Nr*   r   r   s     r   
lookup_jobzBaseJobStore.lookup_jobA   r-   r   c                      y)a  
        Returns the list of jobs that have ``next_run_time`` earlier or equal to ``now``.
        The returned jobs must be sorted by next run time (ascending).

        :param datetime.datetime now: the current (timezone aware) datetime
        :rtype: list[Job]
        Nr*   )r   nows     r   get_due_jobszBaseJobStore.get_due_jobsM   r-   r   c                      y)z
        Returns the earliest run time of all the jobs stored in this job store, or ``None`` if
        there are no active jobs.

        :rtype: datetime.datetime
        Nr*   r+   s    r   get_next_run_timezBaseJobStore.get_next_run_timeW   r-   r   c                      y)a  
        Returns a list of all jobs in this job store.
        The returned jobs should be sorted by next run time (ascending).
        Paused jobs (next_run_time == None) should be sorted last.

        The job store is responsible for setting the ``scheduler`` and ``jobstore`` attributes of
        the returned jobs to point to the scheduler and itself, respectively.

        :rtype: list[Job]
        Nr*   r+   s    r   get_all_jobszBaseJobStore.get_all_jobs`   r-   r   c                      y)z
        Adds the given job to this store.

        :param Job job: the job to add
        :raises ConflictingIdError: if there is another job in this store with the same ID
        Nr*   r   r4   s     r   add_jobzBaseJobStore.add_jobm   r-   r   c                      y)z
        Replaces the job in the store with the given newer version.

        :param Job job: the job to update
        :raises JobLookupError: if the job does not exist
        Nr*   rB   s     r   
update_jobzBaseJobStore.update_jobv   r-   r   c                      y)z
        Removes the given job from this store.

        :param str|unicode job_id: identifier of the job
        :raises JobLookupError: if the job does not exist
        Nr*   r8   s     r   
remove_jobzBaseJobStore.remove_job   r-   r   c                      y)z!Removes all jobs from this store.Nr*   r+   s    r   remove_all_jobszBaseJobStore.remove_all_jobs   r-   r   c                 6    d| j                   j                   dS )N<>)r   r   r+   s    r   __repr__zBaseJobStore.__repr__   s    4>>**+1--r   )r   r   r   r   r!   r"   r#   r$   r%   r(   r,   r6   r   r9   r<   r>   r@   rC   rE   rG   rI   rM   r*   r   r   r   r       s    ]JFg 78GKA 	 	     
 
       0 0.r   r   )	metaclass)
r#   abcr   r   KeyErrorr   r   
ValueErrorr   r   r*   r   r   <module>rR      sA     'DX DV V


 

m.W m.r   