jellyfin/MediaBrowser.Server.Startup.Common/EntryPoints/KeepServerAwake.cs

61 lines
1.8 KiB
C#
Raw Normal View History

using MediaBrowser.Controller;
using MediaBrowser.Controller.Plugins;
2014-05-09 04:36:13 +00:00
using MediaBrowser.Controller.Session;
using MediaBrowser.Model.Logging;
using System;
using System.Linq;
2016-01-29 19:20:09 +00:00
using MediaBrowser.Common.Threading;
2014-05-09 04:36:13 +00:00
namespace MediaBrowser.Server.Startup.Common.EntryPoints
2014-05-09 04:36:13 +00:00
{
public class KeepServerAwake : IServerEntryPoint
{
private readonly ISessionManager _sessionManager;
private readonly ILogger _logger;
2016-01-29 19:20:09 +00:00
private PeriodicTimer _timer;
private readonly IServerApplicationHost _appHost;
2014-05-09 04:36:13 +00:00
public KeepServerAwake(ISessionManager sessionManager, ILogger logger, IServerApplicationHost appHost)
2014-05-09 04:36:13 +00:00
{
_sessionManager = sessionManager;
_logger = logger;
_appHost = appHost;
2014-05-09 04:36:13 +00:00
}
public void Run()
{
2016-01-29 19:20:09 +00:00
_timer = new PeriodicTimer(obj =>
2014-05-09 04:36:13 +00:00
{
var now = DateTime.UtcNow;
2016-04-23 18:38:36 +00:00
var nativeApp = ((ApplicationHost)_appHost).NativeApp;
try
{
if (_sessionManager.Sessions.Any(i => (now - i.LastActivityDate).TotalMinutes < 15))
{
nativeApp.PreventSystemStandby();
}
else
{
nativeApp.AllowSystemStandby();
}
}
catch (Exception ex)
2014-05-09 04:36:13 +00:00
{
2016-04-23 18:38:36 +00:00
_logger.ErrorException("Error resetting system standby timer", ex);
2014-05-09 04:36:13 +00:00
}
}, null, TimeSpan.FromMinutes(5), TimeSpan.FromMinutes(5));
}
public void Dispose()
{
if (_timer != null)
{
_timer.Dispose();
_timer = null;
}
}
}
}