Lidarr/src/NzbDrone.Common/ConsoleService.cs

48 lines
2.1 KiB
C#
Raw Permalink Normal View History

using System;
using System.Diagnostics;
using System.IO;
using NzbDrone.Common.EnvironmentInfo;
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
void PrintHelp();
void PrintServiceAlreadyExist();
void PrintServiceDoesNotExist();
2013-04-16 04:52:41 +00:00
}
public class ConsoleService : IConsoleService
{
2016-12-09 06:54:15 +00:00
public static bool IsConsoleAvailable => Console.In != StreamReader.Null;
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:");
if (OsInfo.IsWindows)
{
Console.WriteLine(" /{0} Install the application as a Windows Service ({1}).", StartupContext.INSTALL_SERVICE, ServiceProvider.SERVICE_NAME);
Console.WriteLine(" /{0} Uninstall already installed Windows Service ({1}).", StartupContext.UNINSTALL_SERVICE, ServiceProvider.SERVICE_NAME);
Console.WriteLine(" /{0} Register URL and open firewall port (allows access from other devices on your network).", StartupContext.REGISTER_URL);
}
2017-03-30 03:49:38 +00:00
Console.WriteLine(" /{0} Don't open Lidarr in a browser", StartupContext.NO_BROWSER);
Console.WriteLine(" /{0} Start Lidarr terminating any other instances", StartupContext.TERMINATE);
Console.WriteLine(" /{0}=path Path to use as the AppData location (stores database, config, logs, etc)", StartupContext.APPDATA);
Console.WriteLine(" <No Arguments> Run application in console mode.");
}
2013-04-16 04:52:41 +00:00
public void PrintServiceAlreadyExist()
{
2017-09-27 02:06:05 +00:00
Console.WriteLine("A service with the same name ({0}) already exists. Aborting installation", ServiceProvider.SERVICE_NAME);
}
public void PrintServiceDoesNotExist()
{
2017-09-27 02:06:05 +00:00
Console.WriteLine("Can't find service ({0})", ServiceProvider.SERVICE_NAME);
}
2011-10-07 03:37:41 +00:00
}
}