2015-07-28 12:33:30 +00:00
using MediaBrowser.Model.Events ;
using MediaBrowser.Model.Tasks ;
using System ;
2016-05-12 19:21:43 +00:00
using System.Globalization ;
2013-02-21 01:33:05 +00:00
using System.Threading ;
2016-05-12 19:21:43 +00:00
using MediaBrowser.Model.Logging ;
2013-02-21 01:33:05 +00:00
namespace MediaBrowser.Common.ScheduledTasks
{
/// <summary>
/// Represents a task trigger that fires everyday
/// </summary>
2013-02-24 21:53:54 +00:00
public class DailyTrigger : ITaskTrigger
2013-02-21 01:33:05 +00:00
{
/// <summary>
/// Get the time of day to trigger the task to run
/// </summary>
/// <value>The time of day.</value>
public TimeSpan TimeOfDay { get ; set ; }
/// <summary>
/// Gets or sets the timer.
/// </summary>
/// <value>The timer.</value>
private Timer Timer { get ; set ; }
2015-02-25 20:55:01 +00:00
/// <summary>
/// Gets the execution properties of this task.
/// </summary>
/// <value>
/// The execution properties of this task.
/// </value>
public TaskExecutionOptions TaskOptions { get ; set ; }
2013-02-21 01:33:05 +00:00
/// <summary>
/// Stars waiting for the trigger action
/// </summary>
2015-07-28 12:33:30 +00:00
/// <param name="lastResult">The last result.</param>
2013-02-23 07:57:11 +00:00
/// <param name="isApplicationStartup">if set to <c>true</c> [is application startup].</param>
2016-05-12 19:21:43 +00:00
public void Start ( TaskResult lastResult , ILogger logger , string taskName , bool isApplicationStartup )
2013-02-21 01:33:05 +00:00
{
DisposeTimer ( ) ;
var now = DateTime . Now ;
var triggerDate = now . TimeOfDay > TimeOfDay ? now . Date . AddDays ( 1 ) : now . Date ;
triggerDate = triggerDate . Add ( TimeOfDay ) ;
2016-05-12 19:21:43 +00:00
var dueTime = triggerDate - now ;
logger . Info ( "Daily trigger for {0} set to fire at {1}, which is {2} minutes from now." , taskName , triggerDate . ToString ( ) , dueTime . TotalMinutes . ToString ( CultureInfo . InvariantCulture ) ) ;
Timer = new Timer ( state = > OnTriggered ( ) , null , dueTime , TimeSpan . FromMilliseconds ( - 1 ) ) ;
2013-02-21 01:33:05 +00:00
}
/// <summary>
/// Stops waiting for the trigger action
/// </summary>
2013-02-24 21:53:54 +00:00
public void Stop ( )
2013-02-21 01:33:05 +00:00
{
DisposeTimer ( ) ;
}
/// <summary>
2013-02-24 21:53:54 +00:00
/// Disposes the timer.
2013-02-21 01:33:05 +00:00
/// </summary>
2013-02-24 21:53:54 +00:00
private void DisposeTimer ( )
2013-02-21 01:33:05 +00:00
{
2013-02-24 21:53:54 +00:00
if ( Timer ! = null )
2013-02-21 01:33:05 +00:00
{
2013-02-24 21:53:54 +00:00
Timer . Dispose ( ) ;
2013-02-21 01:33:05 +00:00
}
}
/// <summary>
2013-02-24 21:53:54 +00:00
/// Occurs when [triggered].
2013-02-21 01:33:05 +00:00
/// </summary>
2015-02-25 20:55:01 +00:00
public event EventHandler < GenericEventArgs < TaskExecutionOptions > > Triggered ;
2013-02-24 21:53:54 +00:00
/// <summary>
/// Called when [triggered].
/// </summary>
private void OnTriggered ( )
2013-02-21 01:33:05 +00:00
{
2013-02-24 21:53:54 +00:00
if ( Triggered ! = null )
2013-02-21 01:33:05 +00:00
{
2015-02-25 20:55:01 +00:00
Triggered ( this , new GenericEventArgs < TaskExecutionOptions > ( TaskOptions ) ) ;
2013-02-21 01:33:05 +00:00
}
}
}
}