2014-11-09 18:24:57 +00:00
|
|
|
|
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;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
|
2014-11-09 18:24:57 +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;
|
|
|
|
|
private Timer _timer;
|
2014-11-09 18:24:57 +00:00
|
|
|
|
private readonly IServerApplicationHost _appHost;
|
2014-05-09 04:36:13 +00:00
|
|
|
|
|
2014-11-09 18:24:57 +00:00
|
|
|
|
public KeepServerAwake(ISessionManager sessionManager, ILogger logger, IServerApplicationHost appHost)
|
2014-05-09 04:36:13 +00:00
|
|
|
|
{
|
|
|
|
|
_sessionManager = sessionManager;
|
|
|
|
|
_logger = logger;
|
2014-11-09 18:24:57 +00:00
|
|
|
|
_appHost = appHost;
|
2014-05-09 04:36:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Run()
|
|
|
|
|
{
|
|
|
|
|
_timer = new Timer(obj =>
|
|
|
|
|
{
|
|
|
|
|
var now = DateTime.UtcNow;
|
2015-06-21 21:31:21 +00:00
|
|
|
|
if (_sessionManager.Sessions.Any(i => (now - i.LastActivityDate).TotalMinutes < 15))
|
2014-05-09 04:36:13 +00:00
|
|
|
|
{
|
|
|
|
|
KeepAlive();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}, null, TimeSpan.FromMinutes(5), TimeSpan.FromMinutes(5));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void KeepAlive()
|
|
|
|
|
{
|
2014-11-09 18:24:57 +00:00
|
|
|
|
var nativeApp = ((ApplicationHost)_appHost).NativeApp;
|
|
|
|
|
|
2014-05-09 04:36:13 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2014-11-09 18:24:57 +00:00
|
|
|
|
nativeApp.PreventSystemStandby();
|
2014-05-09 04:36:13 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.ErrorException("Error resetting system standby timer", ex);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
if (_timer != null)
|
|
|
|
|
{
|
|
|
|
|
_timer.Dispose();
|
|
|
|
|
_timer = null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|