using System;
using System.Threading.Tasks;
using System.Timers;
using Artemis.Core.Modules;
namespace Artemis.Core
{
///
/// Represents a registration for a timed plugin update
///
public class TimedUpdateRegistration : IDisposable
{
private DateTime _lastEvent;
private Timer _timer;
private bool _disposed;
internal TimedUpdateRegistration(PluginFeature feature, TimeSpan interval, Action action)
{
Feature = feature;
Interval = interval;
Action = action;
Feature.Enabled += FeatureOnEnabled;
Feature.Disabled += FeatureOnDisabled;
if (Feature.IsEnabled)
Start();
}
internal TimedUpdateRegistration(PluginFeature feature, TimeSpan interval, Func asyncAction)
{
Feature = feature;
Interval = interval;
AsyncAction = asyncAction;
Feature.Enabled += FeatureOnEnabled;
Feature.Disabled += FeatureOnDisabled;
if (Feature.IsEnabled)
Start();
}
///
/// Gets the plugin feature this registration is associated with
///
public PluginFeature Feature { get; }
///
/// Gets the interval at which the update should occur
///
public TimeSpan Interval { get; }
///
/// Gets the action that gets called each time the update event fires
///
public Action Action { get; }
///
/// Gets the task that gets called each time the update event fires
///
public Func AsyncAction { get; }
///
/// Starts calling the or at the configured
/// Note: Called automatically when the plugin enables
///
public void Start()
{
if (_disposed)
throw new ObjectDisposedException("TimedUpdateRegistration");
lock (this)
{
if (!Feature.IsEnabled)
throw new ArtemisPluginException("Cannot start a timed update for a disabled plugin feature");
if (_timer != null)
return;
_lastEvent = DateTime.Now;
_timer = new Timer(Interval.TotalMilliseconds);
_timer.Elapsed += TimerOnElapsed;
_timer.Start();
}
}
///
/// Stops calling the or at the configured
/// Note: Called automatically when the plugin disables
///
public void Stop()
{
if (_disposed)
throw new ObjectDisposedException("TimedUpdateRegistration");
lock (this)
{
if (_timer == null)
return;
_timer.Elapsed -= TimerOnElapsed;
_timer.Stop();
_timer.Dispose();
_timer = null;
}
}
private void TimerOnElapsed(object sender, ElapsedEventArgs e)
{
if (!Feature.IsEnabled)
return;
lock (this)
{
TimeSpan interval = DateTime.Now - _lastEvent;
_lastEvent = DateTime.Now;
// Modules don't always want to update, honor that
if (Feature is Module module && !module.IsUpdateAllowed)
return;
if (Action != null)
Action(interval.TotalSeconds);
else if (AsyncAction != null)
{
Task task = AsyncAction(interval.TotalSeconds);
task.Wait();
}
}
}
private void FeatureOnEnabled(object sender, EventArgs e)
{
Start();
}
private void FeatureOnDisabled(object sender, EventArgs e)
{
Stop();
}
///
public void Dispose()
{
Stop();
Feature.Enabled -= FeatureOnEnabled;
Feature.Disabled -= FeatureOnDisabled;
_disposed = true;
}
}
}