2011-10-07 03:37:41 +00:00
|
|
|
|
using System;
|
2011-10-15 00:41:09 +00:00
|
|
|
|
using System.Diagnostics;
|
2013-01-30 02:21:45 +00:00
|
|
|
|
using System.IO;
|
2013-07-09 00:47:09 +00:00
|
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
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
|
|
|
|
{
|
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
|
|
|
|
void PrintHelp();
|
|
|
|
|
void PrintServiceAlreadyExist();
|
2013-07-09 00:47:09 +00:00
|
|
|
|
void PrintServiceDoesNotExist();
|
2013-04-16 04:52:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class ConsoleService : IConsoleService
|
|
|
|
|
{
|
2013-08-20 22:12:35 +00:00
|
|
|
|
public static bool IsConsoleAvailable
|
2013-01-30 02:21:45 +00:00
|
|
|
|
{
|
|
|
|
|
get { return Console.In != StreamReader.Null; }
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-16 04:52:41 +00:00
|
|
|
|
public void PrintHelp()
|
2011-10-09 02:16:11 +00:00
|
|
|
|
{
|
2011-10-15 00:41:09 +00:00
|
|
|
|
Console.WriteLine();
|
|
|
|
|
Console.WriteLine(" Usage: {0} <command> ", Process.GetCurrentProcess().MainModule.ModuleName);
|
|
|
|
|
Console.WriteLine(" Commands:");
|
2013-11-26 07:08:12 +00:00
|
|
|
|
Console.WriteLine(" /{0} Install the application as a Windows Service ({1}).", StartupContext.INSTALL_SERVICE, ServiceProvider.NZBDRONE_SERVICE_NAME);
|
|
|
|
|
Console.WriteLine(" /{0} Uninstall already installed Windows Service ({1}).", StartupContext.UNINSTALL_SERVICE, ServiceProvider.NZBDRONE_SERVICE_NAME);
|
|
|
|
|
Console.WriteLine(" /{0} Don't open NzbDrone in a browser", StartupContext.NO_BROWSER);
|
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
|
|
|
|
|
2013-04-16 04:52:41 +00:00
|
|
|
|
public void PrintServiceAlreadyExist()
|
2011-10-14 01:22:51 +00:00
|
|
|
|
{
|
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
|
|
|
|
|
2013-07-09 00:47:09 +00:00
|
|
|
|
public void PrintServiceDoesNotExist()
|
2011-10-15 00:41:09 +00:00
|
|
|
|
{
|
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
|
|
|
|
}
|