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