| | 1 | | using System; |
| | 2 | | using System.Threading; |
| | 3 | | using MediaBrowser.Model.Tasks; |
| | 4 | | using Microsoft.Extensions.Logging; |
| | 5 | |
|
| | 6 | | namespace Emby.Server.Implementations.ScheduledTasks.Triggers |
| | 7 | | { |
| | 8 | | /// <summary> |
| | 9 | | /// Represents a task trigger that fires everyday. |
| | 10 | | /// </summary> |
| | 11 | | public sealed class DailyTrigger : ITaskTrigger, IDisposable |
| | 12 | | { |
| | 13 | | private readonly TimeSpan _timeOfDay; |
| | 14 | | private Timer? _timer; |
| | 15 | | private bool _disposed = false; |
| | 16 | |
|
| | 17 | | /// <summary> |
| | 18 | | /// Initializes a new instance of the <see cref="DailyTrigger"/> class. |
| | 19 | | /// </summary> |
| | 20 | | /// <param name="timeofDay">The time of day to trigger the task to run.</param> |
| | 21 | | /// <param name="taskOptions">The options of this task.</param> |
| | 22 | | public DailyTrigger(TimeSpan timeofDay, TaskOptions taskOptions) |
| | 23 | | { |
| 42 | 24 | | _timeOfDay = timeofDay; |
| | 25 | | TaskOptions = taskOptions; |
| 42 | 26 | | } |
| | 27 | |
|
| | 28 | | /// <inheritdoc /> |
| | 29 | | public event EventHandler<EventArgs>? Triggered; |
| | 30 | |
|
| | 31 | | /// <inheritdoc /> |
| | 32 | | public TaskOptions TaskOptions { get; } |
| | 33 | |
|
| | 34 | | /// <inheritdoc /> |
| | 35 | | public void Start(TaskResult? lastResult, ILogger logger, string taskName, bool isApplicationStartup) |
| | 36 | | { |
| 42 | 37 | | DisposeTimer(); |
| | 38 | |
|
| 42 | 39 | | var now = DateTime.Now; |
| | 40 | |
|
| 42 | 41 | | var triggerDate = now.TimeOfDay > _timeOfDay ? now.Date.AddDays(1) : now.Date; |
| 42 | 42 | | triggerDate = triggerDate.Add(_timeOfDay); |
| | 43 | |
|
| 42 | 44 | | var dueTime = triggerDate - now; |
| | 45 | |
|
| 42 | 46 | | logger.LogInformation("Daily trigger for {Task} set to fire at {TriggerDate:yyyy-MM-dd HH:mm:ss.fff zzz}, wh |
| | 47 | |
|
| 42 | 48 | | _timer = new Timer(_ => OnTriggered(), null, dueTime, TimeSpan.FromMilliseconds(-1)); |
| 42 | 49 | | } |
| | 50 | |
|
| | 51 | | /// <inheritdoc /> |
| | 52 | | public void Stop() |
| | 53 | | { |
| 84 | 54 | | DisposeTimer(); |
| 84 | 55 | | } |
| | 56 | |
|
| | 57 | | /// <summary> |
| | 58 | | /// Disposes the timer. |
| | 59 | | /// </summary> |
| | 60 | | private void DisposeTimer() |
| | 61 | | { |
| 168 | 62 | | _timer?.Dispose(); |
| 168 | 63 | | _timer = null; |
| 168 | 64 | | } |
| | 65 | |
|
| | 66 | | /// <summary> |
| | 67 | | /// Called when [triggered]. |
| | 68 | | /// </summary> |
| | 69 | | private void OnTriggered() |
| | 70 | | { |
| 0 | 71 | | Triggered?.Invoke(this, EventArgs.Empty); |
| 0 | 72 | | } |
| | 73 | |
|
| | 74 | | /// <inheritdoc /> |
| | 75 | | public void Dispose() |
| | 76 | | { |
| 42 | 77 | | if (_disposed) |
| | 78 | | { |
| 0 | 79 | | return; |
| | 80 | | } |
| | 81 | |
|
| 42 | 82 | | DisposeTimer(); |
| | 83 | |
|
| 42 | 84 | | _disposed = true; |
| 42 | 85 | | } |
| | 86 | | } |
| | 87 | | } |