2011-10-07 03:37:41 +00:00
|
|
|
|
using System;
|
2011-10-15 00:41:09 +00:00
|
|
|
|
using System.Diagnostics;
|
2011-10-07 03:37:41 +00:00
|
|
|
|
|
2011-10-23 05:26:43 +00:00
|
|
|
|
namespace NzbDrone.Common
|
2011-10-07 03:37:41 +00:00
|
|
|
|
{
|
|
|
|
|
public class ConsoleProvider
|
|
|
|
|
{
|
|
|
|
|
public virtual void WaitForClose()
|
|
|
|
|
{
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
2011-10-13 02:24:30 +00:00
|
|
|
|
Console.ReadLine();
|
2011-10-07 03:37:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2011-10-09 02:16:11 +00:00
|
|
|
|
|
|
|
|
|
public virtual void PrintHelp()
|
|
|
|
|
{
|
2011-10-15 00:41:09 +00:00
|
|
|
|
Console.WriteLine();
|
|
|
|
|
Console.WriteLine(" Usage: {0} <command> ", Process.GetCurrentProcess().MainModule.ModuleName);
|
|
|
|
|
Console.WriteLine(" Commands:");
|
2011-10-26 17:15:47 +00:00
|
|
|
|
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);
|
2011-10-15 00:41:09 +00:00
|
|
|
|
Console.WriteLine(" <No Arguments> Run application in console mode.");
|
2011-10-09 02:16:11 +00:00
|
|
|
|
}
|
2011-10-14 01:22:51 +00:00
|
|
|
|
|
|
|
|
|
public virtual void PrintServiceAlreadyExist()
|
|
|
|
|
{
|
2011-10-26 17:15:47 +00:00
|
|
|
|
Console.WriteLine("A service with the same name ({0}) already exists. Aborting installation", ServiceProvider.NZBDRONE_SERVICE_NAME);
|
2011-10-14 01:22:51 +00:00
|
|
|
|
}
|
2011-10-15 00:41:09 +00:00
|
|
|
|
|
|
|
|
|
public virtual void PrintServiceDoestExist()
|
|
|
|
|
{
|
2011-10-26 17:15:47 +00:00
|
|
|
|
Console.WriteLine("Can't find service ({0})", ServiceProvider.NZBDRONE_SERVICE_NAME);
|
2011-10-15 00:41:09 +00:00
|
|
|
|
}
|
2011-10-07 03:37:41 +00:00
|
|
|
|
}
|
2011-10-07 06:57:43 +00:00
|
|
|
|
}
|