Sonarr/NzbDrone/PriorityMonitor.cs

52 lines
1.6 KiB
C#
Raw Normal View History

2013-07-19 03:47:55 +00:00
using System;
2011-10-07 06:36:04 +00:00
using System.Diagnostics;
using System.Threading;
2011-10-07 06:36:04 +00:00
using NLog;
using NzbDrone.Common;
2011-10-07 06:36:04 +00:00
2013-03-01 00:50:50 +00:00
namespace NzbDrone
2011-10-07 06:36:04 +00:00
{
2013-03-01 00:50:50 +00:00
public class PriorityMonitor
2011-10-07 06:36:04 +00:00
{
2013-05-10 23:53:50 +00:00
private readonly IProcessProvider _processProvider;
2013-03-01 00:50:50 +00:00
private readonly Logger _logger;
2011-10-07 06:36:04 +00:00
private Timer _processPriorityCheckTimer;
2011-10-07 06:36:04 +00:00
2013-05-10 23:53:50 +00:00
public PriorityMonitor(IProcessProvider processProvider, Logger logger)
2011-10-07 06:36:04 +00:00
{
_processProvider = processProvider;
2013-03-01 00:50:50 +00:00
_logger = logger;
2011-10-07 06:36:04 +00:00
}
public void Start()
{
_processPriorityCheckTimer = new Timer(EnsurePriority);
_processPriorityCheckTimer.Change(TimeSpan.FromSeconds(15), TimeSpan.FromMinutes(30));
2011-10-07 06:36:04 +00:00
}
public virtual void EnsurePriority(object sender)
2011-10-07 06:36:04 +00:00
{
try
2011-10-07 06:36:04 +00:00
{
var currentProcess = _processProvider.GetCurrentProcess();
if (currentProcess.Priority != ProcessPriorityClass.Normal)
{
_processProvider.SetPriority(currentProcess.Id, ProcessPriorityClass.Normal);
}
2011-10-07 06:36:04 +00:00
2013-02-19 01:13:42 +00:00
var iisProcess = _processProvider.GetProcessById(_processProvider.GetCurrentProcess().Id);
if (iisProcess != null && iisProcess.Priority != ProcessPriorityClass.Normal &&
iisProcess.Priority != ProcessPriorityClass.AboveNormal)
{
_processProvider.SetPriority(iisProcess.Id, ProcessPriorityClass.Normal);
}
}
catch (Exception e)
2011-10-07 06:36:04 +00:00
{
2013-03-01 00:50:50 +00:00
_logger.WarnException("Unable to verify priority", e);
2011-10-07 06:36:04 +00:00
}
}
}
}