aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.ServerApplication/EntryPoints/KeepServerAwake.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-09 13:24:57 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-09 13:24:57 -0500
commit1a80362a0f04c3cc571456af64f9de19c0c30d2a (patch)
tree31916eea422d8ac861aa36a47cae832eee168ad8 /MediaBrowser.ServerApplication/EntryPoints/KeepServerAwake.cs
parent40897bac1494791e1ec6abcfe85cda27d4664a32 (diff)
created common startup project for mono & windows
Diffstat (limited to 'MediaBrowser.ServerApplication/EntryPoints/KeepServerAwake.cs')
-rw-r--r--MediaBrowser.ServerApplication/EntryPoints/KeepServerAwake.cs57
1 files changed, 0 insertions, 57 deletions
diff --git a/MediaBrowser.ServerApplication/EntryPoints/KeepServerAwake.cs b/MediaBrowser.ServerApplication/EntryPoints/KeepServerAwake.cs
deleted file mode 100644
index 9881bdf18..000000000
--- a/MediaBrowser.ServerApplication/EntryPoints/KeepServerAwake.cs
+++ /dev/null
@@ -1,57 +0,0 @@
-using MediaBrowser.Controller.Plugins;
-using MediaBrowser.Controller.Session;
-using MediaBrowser.Model.Logging;
-using MediaBrowser.ServerApplication.Native;
-using System;
-using System.Linq;
-using System.Threading;
-
-namespace MediaBrowser.ServerApplication.EntryPoints
-{
- public class KeepServerAwake : IServerEntryPoint
- {
- private readonly ISessionManager _sessionManager;
- private readonly ILogger _logger;
- private Timer _timer;
-
- public KeepServerAwake(ISessionManager sessionManager, ILogger logger)
- {
- _sessionManager = sessionManager;
- _logger = logger;
- }
-
- public void Run()
- {
- _timer = new Timer(obj =>
- {
- var now = DateTime.UtcNow;
- if (_sessionManager.Sessions.Any(i => (now - i.LastActivityDate).TotalMinutes < 5))
- {
- KeepAlive();
- }
-
- }, null, TimeSpan.FromMinutes(5), TimeSpan.FromMinutes(5));
- }
-
- private void KeepAlive()
- {
- try
- {
- NativeApp.PreventSystemStandby();
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error resetting system standby timer", ex);
- }
- }
-
- public void Dispose()
- {
- if (_timer != null)
- {
- _timer.Dispose();
- _timer = null;
- }
- }
- }
-}