Radarr/NzbDrone.Common/ConsoleService.cs

51 lines
1.6 KiB
C#
Raw Normal View History

2011-10-07 03:37:41 +00:00
using System;
using System.Diagnostics;
using System.IO;
2011-10-07 03:37:41 +00:00
namespace NzbDrone.Common
2011-10-07 03:37:41 +00:00
{
2013-04-16 04:52:41 +00:00
public interface IConsoleService
2011-10-07 03:37:41 +00:00
{
2013-04-16 04:52:41 +00:00
bool IsConsoleApplication { get; }
void WaitForClose();
void PrintHelp();
void PrintServiceAlreadyExist();
void PrintServiceDoestExist();
}
public class ConsoleService : IConsoleService
{
public bool IsConsoleApplication
{
get { return Console.In != StreamReader.Null; }
}
2013-04-16 04:52:41 +00:00
public void WaitForClose()
2011-10-07 03:37:41 +00:00
{
while (true)
{
2011-10-13 02:24:30 +00:00
Console.ReadLine();
2011-10-07 03:37:41 +00:00
}
}
2013-04-16 04:52:41 +00:00
public void PrintHelp()
{
Console.WriteLine();
Console.WriteLine(" Usage: {0} <command> ", Process.GetCurrentProcess().MainModule.ModuleName);
Console.WriteLine(" Commands:");
Console.WriteLine(" /i Install the application as a Windows Service ({0}).", ServiceProvider.NZBDRONE_SERVICE_NAME);
Console.WriteLine(" /u Uninstall already installed Windows Service ({0}).", ServiceProvider.NZBDRONE_SERVICE_NAME);
Console.WriteLine(" <No Arguments> Run application in console mode.");
}
2013-04-16 04:52:41 +00:00
public void PrintServiceAlreadyExist()
{
Console.WriteLine("A service with the same name ({0}) already exists. Aborting installation", ServiceProvider.NZBDRONE_SERVICE_NAME);
}
2013-04-16 04:52:41 +00:00
public void PrintServiceDoestExist()
{
Console.WriteLine("Can't find service ({0})", ServiceProvider.NZBDRONE_SERVICE_NAME);
}
2011-10-07 03:37:41 +00:00
}
2011-10-07 06:57:43 +00:00
}