using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.IO; using System.Linq; using NLog; using NzbDrone.Common.EnvironmentInfo; using NzbDrone.Common.Model; namespace NzbDrone.Common.Processes { public interface IProcessProvider { ProcessInfo GetCurrentProcess(); ProcessInfo GetProcessById(int id); List FindProcessByName(string name); void OpenDefaultBrowser(string url); void WaitForExit(Process process); void SetPriority(int processId, ProcessPriorityClass priority); void KillAll(string processName); void Kill(int processId); Boolean Exists(int processId); Boolean Exists(string processName); ProcessPriorityClass GetCurrentProcessPriority(); Process Start(string path, string args = null, Action onOutputDataReceived = null, Action onErrorDataReceived = null); Process SpawnNewProcess(string path, string args = null); ProcessOutput StartAndCapture(string path, string args = null); } public class ProcessProvider : IProcessProvider { private readonly Logger _logger; public const string NZB_DRONE_PROCESS_NAME = "NzbDrone"; public const string NZB_DRONE_CONSOLE_PROCESS_NAME = "NzbDrone.Console"; public ProcessProvider(Logger logger) { _logger = logger; } public ProcessInfo GetCurrentProcess() { return ConvertToProcessInfo(Process.GetCurrentProcess()); } public bool Exists(int processId) { return GetProcessById(processId) != null; } public Boolean Exists(string processName) { return GetProcessesByName(processName).Any(); } public ProcessPriorityClass GetCurrentProcessPriority() { return Process.GetCurrentProcess().PriorityClass; } public ProcessInfo GetProcessById(int id) { _logger.Debug("Finding process with Id:{0}", id); var processInfo = ConvertToProcessInfo(Process.GetProcesses().FirstOrDefault(p => p.Id == id)); if (processInfo == null) { _logger.Warn("Unable to find process with ID {0}", id); } else { _logger.Debug("Found process {0}", processInfo.ToString()); } return processInfo; } public List FindProcessByName(string name) { return GetProcessesByName(name).Select(ConvertToProcessInfo).Where(c => c != null).ToList(); } public void OpenDefaultBrowser(string url) { _logger.Info("Opening URL [{0}]", url); var process = new Process { StartInfo = new ProcessStartInfo(url) { UseShellExecute = true } }; process.Start(); } public Process Start(string path, string args = null, Action onOutputDataReceived = null, Action onErrorDataReceived = null) { if (OsInfo.IsMonoRuntime && path.EndsWith(".exe", StringComparison.InvariantCultureIgnoreCase)) { args = GetMonoArgs(path, args); path = "mono"; } var logger = LogManager.GetLogger(new FileInfo(path).Name); var startInfo = new ProcessStartInfo(path, args) { CreateNoWindow = true, UseShellExecute = false, RedirectStandardError = true, RedirectStandardOutput = true, RedirectStandardInput = true }; logger.Debug("Starting {0} {1}", path, args); var process = new Process { StartInfo = startInfo }; process.OutputDataReceived += (sender, eventArgs) => { if (string.IsNullOrWhiteSpace(eventArgs.Data)) return; logger.Debug(eventArgs.Data); if (onOutputDataReceived != null) { onOutputDataReceived(eventArgs.Data); } }; process.ErrorDataReceived += (sender, eventArgs) => { if (string.IsNullOrWhiteSpace(eventArgs.Data)) return; logger.Error(eventArgs.Data); if (onErrorDataReceived != null) { onErrorDataReceived(eventArgs.Data); } }; process.Start(); process.BeginErrorReadLine(); process.BeginOutputReadLine(); return process; } public Process SpawnNewProcess(string path, string args = null) { if (OsInfo.IsMonoRuntime && path.EndsWith(".exe", StringComparison.InvariantCultureIgnoreCase)) { args = GetMonoArgs(path, args); path = "mono"; } _logger.Debug("Starting {0} {1}", path, args); var startInfo = new ProcessStartInfo(path, args); var process = new Process { StartInfo = startInfo }; process.Start(); return process; } public ProcessOutput StartAndCapture(string path, string args = null) { var output = new ProcessOutput(); Start(path, args, s => output.Standard.Add(s), error => output.Error.Add(error)).WaitForExit(); return output; } public void WaitForExit(Process process) { _logger.Debug("Waiting for process {0} to exit.", process.ProcessName); process.WaitForExit(); } public void SetPriority(int processId, ProcessPriorityClass priority) { var process = Process.GetProcessById(processId); _logger.Info("Updating [{0}] process priority from {1} to {2}", process.ProcessName, process.PriorityClass, priority); process.PriorityClass = priority; } public void Kill(int processId) { var process = Process.GetProcesses().FirstOrDefault(p => p.Id == processId); if (process == null) { _logger.Warn("Cannot find process with id: {0}", processId); return; } process.Refresh(); if (process.Id != Process.GetCurrentProcess().Id && process.HasExited) { _logger.Debug("Process has already exited"); return; } _logger.Info("[{0}]: Killing process", process.Id); process.Kill(); _logger.Info("[{0}]: Waiting for exit", process.Id); process.WaitForExit(); _logger.Info("[{0}]: Process terminated successfully", process.Id); } public void KillAll(string processName) { var processes = GetProcessesByName(processName); _logger.Debug("Found {0} processes to kill", processes.Count); foreach (var processInfo in processes) { _logger.Debug("Killing process: {0} [{1}]", processInfo.Id, processInfo.ProcessName); Kill(processInfo.Id); } } private ProcessInfo ConvertToProcessInfo(Process process) { if (process == null) return null; process.Refresh(); ProcessInfo processInfo = null; try { if (process.Id <= 0) return null; processInfo = new ProcessInfo(); processInfo.Id = process.Id; processInfo.Name = process.ProcessName; processInfo.StartPath = GetExeFileName(process); if (process.Id != Process.GetCurrentProcess().Id && process.HasExited) { processInfo = null; } } catch (Win32Exception e) { _logger.WarnException("Couldn't get process info for " + process.ProcessName, e); } return processInfo; } private static string GetExeFileName(Process process) { if (process.MainModule.FileName != "mono.exe") { return process.MainModule.FileName; } return process.Modules.Cast().FirstOrDefault(module => module.ModuleName.ToLower().EndsWith(".exe")).FileName; } private List GetProcessesByName(string name) { //TODO: move this to an OS specific class var monoProcesses = Process.GetProcessesByName("mono") .Union(Process.GetProcessesByName("mono-sgen")) .Where(process => process.Modules.Cast() .Any(module => module.ModuleName.ToLower() == name.ToLower() + ".exe")); var processes = Process.GetProcessesByName(name) .Union(monoProcesses).ToList(); _logger.Debug("Found {0} processes with the name: {1}", processes.Count, name); return processes; } private string GetMonoArgs(string path, string args) { return String.Format("--debug {0} {1}", path, args); } } }