@ -64,40 +64,45 @@ namespace NzbDrone.Core.Jobs
}
}
/// <summary>
/// Returns a list of all registered jobs
/// </summary>
public virtual List < JobDefinition > All ( )
{
return _database . Fetch < JobDefinition > ( ) . ToList ( ) ;
}
/// <summary>
/// Initializes jobs in the database using the IJob instances that are
/// registered using ninject
/// </summary>
public virtual void Initialize ( )
{
logger . Debug ( "Initializing jobs. Count {0}" , _jobs . Count ( ) ) ;
var currentTimer = All ( ) ;
var currentJobs = All ( ) ;
logger . Debug ( "Initializing jobs. Available: {0} Existing:{1}" , _jobs . Count ( ) , currentJobs . Count ) ;
foreach ( var currentJob in currentJobs )
{
if ( ! _jobs . Any ( c = > c . Name = = currentJob . Name ) )
{
logger . Debug ( "Removing job from database '{0}'" , currentJob . Name ) ;
_database . Delete ( currentJob ) ;
}
}
foreach ( var timer in _jobs )
foreach ( var job in _jobs )
{
var timerProviderLocal = timer ;
if ( ! currentTimer . Exists ( c = > c . TypeName = = timerProviderLocal . GetType ( ) . ToString ( ) ) )
var jobLocal = job ;
if ( ! current Jobs . Exists ( c = > c . TypeName = = job Local. GetType ( ) . ToString ( ) ) )
{
var settings = new JobDefinition
{
Enable = timerProviderLocal . DefaultInterval > 0 ,
TypeName = timer . GetType ( ) . ToString ( ) ,
Name = timerProvider Local. Name ,
Interval = timerProvider Local. DefaultInterval ,
Enable = job Local. DefaultInterval > 0 ,
TypeName = job . GetType ( ) . ToString ( ) ,
Name = job Local. Name ,
Interval = job Local. DefaultInterval ,
LastExecution = DateTime . Now
} ;
SaveDefinition ( settings ) ;
}
}
}
/// <summary>
@ -141,17 +146,6 @@ namespace NzbDrone.Core.Jobs
logger . Trace ( "{0} Scheduled tasks have been added to the queue" , pendingJobTypes . Count ) ;
}
/// <summary>
/// Gets the next scheduled run time for a specific job
/// (Estimated due to schedule timer)
/// </summary>
/// <returns>DateTime of next scheduled job execution</returns>
public virtual DateTime NextScheduledRun ( Type jobType )
{
var job = All ( ) . Where ( t = > t . TypeName = = jobType . ToString ( ) ) . Single ( ) ;
return job . LastExecution . AddMinutes ( job . Interval ) ;
}
public virtual void QueueJob ( Type jobType , int targetId = 0 , int secondaryTargetId = 0 )
{
var queueItem = new JobQueueItem