public int RunSubCommand(SubCommandOptions unparsed) { int exitCode = Exit.OK; // Parse and process our sub-verbs Parser.Default.ParseArgumentsStrict(unparsed.options.ToArray(), new RepairSubOptions(), (string option, object suboptions) => { // ParseArgumentsStrict calls us unconditionally, even with bad arguments if (!string.IsNullOrEmpty(option) && suboptions != null) { CommonOptions options = (CommonOptions)suboptions; User = new ConsoleUser(options.Headless); KSPManager manager = new KSPManager(User); exitCode = options.Handle(manager, User); if (exitCode != Exit.OK) { return; } switch (option) { case "registry": exitCode = Registry(MainClass.GetGameInstance(manager)); break; default: User.RaiseMessage("Unknown command: repair {0}", option); exitCode = Exit.BADOPT; break; } } }, () => { exitCode = MainClass.AfterHelp(); }); RegistryManager.DisposeAll(); return(exitCode); }
/// <summary> /// Execute a cache subcommand /// </summary> /// <param name="mgr">KSPManager object containing our instances and cache</param> /// <param name="opts">Command line options object</param> /// <param name="unparsed">Raw command line options</param> /// <returns> /// Exit code for shell environment /// </returns> public int RunSubCommand(KSPManager mgr, CommonOptions opts, SubCommandOptions unparsed) { string[] args = unparsed.options.ToArray(); int exitCode = Exit.OK; // Parse and process our sub-verbs Parser.Default.ParseArgumentsStrict(args, new CacheSubOptions(), (string option, object suboptions) => { // ParseArgumentsStrict calls us unconditionally, even with bad arguments if (!string.IsNullOrEmpty(option) && suboptions != null) { CommonOptions options = (CommonOptions)suboptions; options.Merge(opts); user = new ConsoleUser(options.Headless); manager = mgr ?? new KSPManager(user); exitCode = options.Handle(manager, user); if (exitCode != Exit.OK) { return; } switch (option) { case "list": exitCode = ListCacheDirectory((CommonOptions)suboptions); break; case "set": exitCode = SetCacheDirectory((SetOptions)suboptions); break; case "clear": exitCode = ClearCacheDirectory((CommonOptions)suboptions); break; case "reset": exitCode = ResetCacheDirectory((CommonOptions)suboptions); break; case "showlimit": exitCode = ShowCacheSizeLimit((CommonOptions)suboptions); break; case "setlimit": exitCode = SetCacheSizeLimit((SetLimitOptions)suboptions); break; default: user.RaiseMessage("Unknown command: cache {0}", option); exitCode = Exit.BADOPT; break; } } }, () => { exitCode = MainClass.AfterHelp(); }); return(exitCode); }
/// <summary> /// Run the subcommand /// </summary> /// <param name="mgr">Manager to provide game instances</param> /// <param name="opts">Command line parameters paritally handled by parser</param> /// <param name="unparsed">Command line parameters not yet handled by parser</param> /// <returns> /// Exit code /// </returns> public int RunSubCommand(GameInstanceManager mgr, CommonOptions opts, SubCommandOptions unparsed) { string[] args = unparsed.options.ToArray(); int exitCode = Exit.OK; // Parse and process our sub-verbs Parser.Default.ParseArgumentsStrict(args, new FilterSubOptions(), (string option, object suboptions) => { // ParseArgumentsStrict calls us unconditionally, even with bad arguments if (!string.IsNullOrEmpty(option) && suboptions != null) { CommonOptions options = (CommonOptions)suboptions; options.Merge(opts); user = new ConsoleUser(options.Headless); manager = mgr ?? new GameInstanceManager(user); exitCode = options.Handle(manager, user); if (exitCode != Exit.OK) { return; } switch (option) { case "list": exitCode = ListFilters((FilterListOptions)suboptions, option); break; case "add": exitCode = AddFilters((FilterAddOptions)suboptions, option); break; case "remove": exitCode = RemoveFilters((FilterRemoveOptions)suboptions, option); break; default: user.RaiseMessage("Unknown command: filter {0}", option); exitCode = Exit.BADOPT; break; } } }, () => { exitCode = MainClass.AfterHelp(); }); return(exitCode); }
/// <summary> /// Run the subcommand /// </summary> /// <param name="mgr">Manager to provide game instances</param> /// <param name="opts">Command line parameters paritally handled by parser</param> /// <param name="unparsed">Command line parameters not yet handled by parser</param> /// <returns> /// Exit code /// </returns> public int RunSubCommand(GameInstanceManager mgr, CommonOptions opts, SubCommandOptions unparsed) { string[] args = unparsed.options.ToArray(); int exitCode = Exit.OK; // Parse and process our sub-verbs Parser.Default.ParseArgumentsStrict(args, new MarkSubOptions(), (string option, object suboptions) => { // ParseArgumentsStrict calls us unconditionally, even with bad arguments if (!string.IsNullOrEmpty(option) && suboptions != null) { CommonOptions options = (CommonOptions)suboptions; options.Merge(opts); user = new ConsoleUser(options.Headless); manager = mgr ?? new GameInstanceManager(user); exitCode = options.Handle(manager, user); if (exitCode != Exit.OK) { return; } switch (option) { case "auto": exitCode = MarkAuto((MarkAutoOptions)suboptions, true, option, "auto-installed"); break; case "user": exitCode = MarkAuto((MarkAutoOptions)suboptions, false, option, "user-selected"); break; default: user.RaiseMessage("Unknown command: mark {0}", option); exitCode = Exit.BADOPT; break; } } }, () => { exitCode = MainClass.AfterHelp(); }); return(exitCode); }
/// <summary> /// Run the subcommand /// </summary> /// <param name="mgr">Manager to provide game instances</param> /// <param name="opts">Command line parameters paritally handled by parser</param> /// <param name="unparsed">Command line parameters not yet handled by parser</param> /// <returns> /// Exit code /// </returns> public int RunSubCommand(KSPManager manager, CommonOptions opts, SubCommandOptions unparsed) { string[] args = unparsed.options.ToArray(); int exitCode = Exit.OK; Parser.Default.ParseArgumentsStrict(args, new AuthTokenSubOptions(), (string option, object suboptions) => { if (!string.IsNullOrEmpty(option) && suboptions != null) { CommonOptions options = (CommonOptions)suboptions; options.Merge(opts); user = new ConsoleUser(options.Headless); if (manager == null) { manager = new KSPManager(user); } exitCode = options.Handle(manager, user); if (exitCode == Exit.OK) { switch (option) { case "list": exitCode = listAuthTokens(options); break; case "add": exitCode = addAuthToken((AddAuthTokenOptions)options); break; case "remove": exitCode = removeAuthToken((RemoveAuthTokenOptions)options); break; } } } }, () => { exitCode = MainClass.AfterHelp(); }); return(exitCode); }
public static int Execute(KSPManager manager, CommonOptions opts, string[] args) { // We shouldn't instantiate Options if it's a subcommand. // It breaks command-specific help, for starters. try { switch (args[0]) { case "repair": return((new Repair()).RunSubCommand(manager, opts, new SubCommandOptions(args))); case "ksp": return((new KSP()).RunSubCommand(manager, opts, new SubCommandOptions(args))); case "compat": return((new Compat()).RunSubCommand(manager, opts, new SubCommandOptions(args))); case "repo": return((new Repo()).RunSubCommand(manager, opts, new SubCommandOptions(args))); case "authtoken": return((new AuthToken()).RunSubCommand(manager, opts, new SubCommandOptions(args))); case "cache": return((new Cache()).RunSubCommand(manager, opts, new SubCommandOptions(args))); case "mark": return((new Mark()).RunSubCommand(manager, opts, new SubCommandOptions(args))); } } catch (NoGameInstanceKraken) { return(printMissingInstanceError(new ConsoleUser(false))); } finally { log.Info("CKAN exiting."); } Options cmdline; try { cmdline = new Options(args); } catch (BadCommandKraken) { return(AfterHelp()); } finally { log.Info("CKAN exiting."); } // Process commandline options. CommonOptions options = (CommonOptions)cmdline.options; options.Merge(opts); IUser user = new ConsoleUser(options.Headless); if (manager == null) { manager = new KSPManager(user); } else { manager.User = user; } try { int exitCode = options.Handle(manager, user); if (exitCode != Exit.OK) { return(exitCode); } // Don't bother with instances or registries yet because some commands don't need them. return(RunSimpleAction(cmdline, options, args, user, manager)); } finally { log.Info("CKAN exiting."); } }
// This is required by ISubCommand public int RunSubCommand(SubCommandOptions unparsed) { string[] args = unparsed.options.ToArray(); #region Aliases for (int i = 0; i < args.Length; i++) { switch (args[i]) { case "use": args[i] = "default"; break; default: break; } } #endregion int exitCode = Exit.OK; // Parse and process our sub-verbs Parser.Default.ParseArgumentsStrict(args, new KSPSubOptions(), (string option, object suboptions) => { // ParseArgumentsStrict calls us unconditionally, even with bad arguments if (!string.IsNullOrEmpty(option) && suboptions != null) { CommonOptions options = (CommonOptions)suboptions; User = new ConsoleUser(options.Headless); Manager = new KSPManager(User); exitCode = options.Handle(Manager, User); if (exitCode != Exit.OK) { return; } switch (option) { case "list": exitCode = ListInstalls(); break; case "add": exitCode = AddInstall((AddOptions)suboptions); break; case "rename": exitCode = RenameInstall((RenameOptions)suboptions); break; case "forget": exitCode = ForgetInstall((ForgetOptions)suboptions); break; case "use": case "default": exitCode = SetDefaultInstall((DefaultOptions)suboptions); break; default: User.RaiseMessage("Unknown command: ksp {0}", option); exitCode = Exit.BADOPT; break; } } }, () => { exitCode = MainClass.AfterHelp(); }); RegistryManager.DisposeAll(); return(exitCode); }
public static int Main(string[] args) { BasicConfigurator.Configure(); LogManager.GetRepository().Threshold = Level.Warn; log.Debug("CKAN started"); // If we're starting with no options then invoke the GUI instead. if (args.Length == 0) { return Gui(); } IUser user = new ConsoleUser(); Options cmdline; try { cmdline = new Options(args); } catch (BadCommandKraken) { // Our help screen will already be shown. Let's add some extra data. user.RaiseMessage("You are using CKAN version {0}", Meta.Version()); return Exit.BADOPT; } // Process commandline options. var options = (CommonOptions) cmdline.options; if (options.Debug) { LogManager.GetRepository().Threshold = Level.Debug; log.Info("Debug logging enabled"); } else if (options.Verbose) { LogManager.GetRepository().Threshold = Level.Info; log.Info("Verbose logging enabled"); } // TODO: Allow the user to specify just a directory. // User provided KSP instance if (options.KSPdir != null && options.KSP != null) { user.RaiseMessage("--ksp and --kspdir can't be specified at the same time"); return Exit.BADOPT; } KSPManager manager= new KSPManager(user); if (options.KSP != null) { // Set a KSP directory by its alias. try { manager.SetCurrentInstance(options.KSP); } catch (InvalidKSPInstanceKraken) { user.RaiseMessage("Invalid KSP installation specified \"{0}\", use '--kspdir' to specify by path, or 'list-installs' to see known KSP installations", options.KSP); return Exit.BADOPT; } } else if (options.KSPdir != null) { // Set a KSP directory by its path manager.SetCurrentInstanceByPath(options.KSPdir); } else if (! (cmdline.action == "ksp" || cmdline.action == "version")) { // Find whatever our preferred instance is. // We don't do this on `ksp/version` commands, they don't need it. CKAN.KSP ksp = manager.GetPreferredInstance(); if (ksp == null) { user.RaiseMessage("I don't know where KSP is installed."); user.RaiseMessage("Use 'ckan ksp help' for assistance on setting this."); return Exit.ERROR; } else { log.InfoFormat("Using KSP install at {0}",ksp.GameDir()); } } #region Aliases switch (cmdline.action) { case "add": cmdline.action = "install"; break; case "uninstall": cmdline.action = "remove"; break; default: break; } #endregion switch (cmdline.action) { case "gui": return Gui(); case "version": return Version(user); case "update": return Update((UpdateOptions)options, RegistryManager.Instance(manager.CurrentInstance), manager.CurrentInstance, user); case "available": return Available(manager.CurrentInstance, user); case "install": return Install((InstallOptions)cmdline.options, manager.CurrentInstance, user); case "scan": return Scan(manager.CurrentInstance); case "list": return List(user, manager.CurrentInstance); case "show": return Show((ShowOptions)cmdline.options, manager.CurrentInstance, user); case "remove": return Remove((RemoveOptions)cmdline.options, manager.CurrentInstance, user); case "upgrade": var upgrade = new Upgrade(user); return upgrade.RunCommand(manager.CurrentInstance, cmdline.options); case "clean": return Clean(manager.CurrentInstance); case "repair": var repair = new Repair(manager.CurrentInstance,user); return repair.RunSubCommand((SubCommandOptions) cmdline.options); case "ksp": var ksp = new KSP(manager, user); return ksp.RunSubCommand((SubCommandOptions) cmdline.options); default: user.RaiseMessage("Unknown command, try --help"); return Exit.BADOPT; } }
public static int RunCommandLine(string[] args, Func <string[], GuiOptions, int> showGuiFunc = null) { // Launch debugger if the "--debugger" flag is present in the command line arguments. // We want to do this as early as possible so just check the flag manually, rather than doing the // more robust argument parsing. if (args.Any(i => i == "--debugger")) { Debugger.Launch(); } if (args.Length == 1 && args.Any(i => i == "--verbose" || i == "--debug")) { // Start the gui with logging enabled #437 List <string> guiCommand = args.ToList(); guiCommand.Insert(0, "gui"); guiCommand.Add("--show-console"); args = guiCommand.ToArray(); } BasicConfigurator.Configure(); LogManager.GetRepository().Threshold = Level.Warn; log.Debug("CFAN started"); Options cmdline; // If we're starting with no options then invoke the GUI instead (if compiled with GUI) if (args.Length == 0) { if (showGuiFunc != null) { return(showGuiFunc(args, null)); } args = new[] { "--help" }; } IUser user; try { cmdline = new Options(args); } catch (BadCommandKraken) { // Our help screen will already be shown. Let's add some extra data. user = new ConsoleUser(false); user.RaiseMessage("You are using CFAN version {0}", Meta.Version()); return(Exit.BADOPT); } // Process commandline options. var options = (CommonOptions)cmdline.options; user = new ConsoleUser(options.Headless); CheckMonoVersion(user, 3, 1, 0); if ((Platform.IsUnix || Platform.IsMac) && CmdLineUtil.GetUID() == 0) { if (!options.AsRoot) { user.RaiseError(@"You are trying to run CFAN as root. This is a bad idea and there is absolutely no good reason to do it. Please run CFAN from a user account (or use --asroot if you are feeling brave)."); return(Exit.ERROR); } user.RaiseMessage("Warning: Running CFAN as root!"); } if (options.Debug) { LogManager.GetRepository().Threshold = Level.Debug; log.Info("Debug logging enabled"); } else if (options.Verbose) { LogManager.GetRepository().Threshold = Level.Info; log.Info("Verbose logging enabled"); } // Assign user-agent string if user has given us one if (options.NetUserAgent != null) { Net.UserAgentString = options.NetUserAgent; } // User provided KSP instance if (options.FactorioDirectory != null && options.FactorioInstallName != null) { user.RaiseMessage("--factorio and --factorio-dir can't be specified at the same time"); return(Exit.BADOPT); } KSPManager manager = new KSPManager(user); if (options.FactorioInstallName != null) { // Set a KSP directory by its alias. try { manager.SetCurrentInstance(options.FactorioInstallName); } catch (InvalidKSPInstanceKraken) { user.RaiseMessage("Invalid Factorio installation specified \"{0}\", use '--factorio-dir' to specify by path, or 'list-installs' to see known Factorio installations", options.FactorioInstallName); return(Exit.BADOPT); } } else if (options.FactorioDirectory != null) { // Set a KSP directory by its path manager.SetCurrentInstanceByPath(options.FactorioDirectory); } else if (cmdline.action != "factorio" && cmdline.action != "version" && cmdline.action != "gui") { // Find whatever our preferred instance is. // We don't do this on `ksp/version` commands, they don't need it. CKAN.KSP ksp = manager.GetPreferredInstance(); if (ksp == null) { user.RaiseMessage("I don't know where Factorio is installed."); user.RaiseMessage("Use 'cfan factorio help' for assistance on setting this."); return(Exit.ERROR); } log.InfoFormat("Using Factorio install at {0} with data dir set to {1}", ksp.GameDir(), ksp.GameData()); if (ksp.lacksFactorioAuthData()) { user.RaiseError( "Your config file located in {0} does not contain Factorio authorization data. Mods from official factorio.com mod portal will not be shown.\n\rYou can fix it by using in-game mod portal once. For headless you can copy values of service-username and service-token from your regular Factorio install.", new object[] { ksp.getFactorioAuthDataPath() } ); } } switch (cmdline.action) { case "gui": return(ShowGui(args, user, (GuiOptions)options, showGuiFunc)); case "version": return(Version(user)); case "update": return((new Update(user)).RunCommand(manager.CurrentInstance, (UpdateOptions)cmdline.options)); case "available": return(Available(manager.CurrentInstance, user)); case "install": Scan(manager.CurrentInstance, user, cmdline.action); return((new Install(user)).RunCommand(manager.CurrentInstance, (InstallOptions)cmdline.options)); case "scan": return(Scan(manager.CurrentInstance, user)); case "list": return((new List(user)).RunCommand(manager.CurrentInstance, (ListOptions)cmdline.options)); case "show": return((new Show(user)).RunCommand(manager.CurrentInstance, (ShowOptions)cmdline.options)); case "search": return((new Search(user)).RunCommand(manager.CurrentInstance, options)); case "remove": return((new Remove(user)).RunCommand(manager.CurrentInstance, cmdline.options)); case "upgrade": Scan(manager.CurrentInstance, user, cmdline.action); return((new Upgrade(user)).RunCommand(manager.CurrentInstance, cmdline.options)); case "clean": return(Clean(manager.CurrentInstance)); case "repair": var repair = new Repair(manager.CurrentInstance, user); return(repair.RunSubCommand((SubCommandOptions)cmdline.options)); case "factorio": var ksp = new KSP(manager, user); return(ksp.RunSubCommand((SubCommandOptions)cmdline.options)); case "repo": var repo = new Repo(manager, user); return(repo.RunSubCommand((SubCommandOptions)cmdline.options)); case "compare": return((new Compare(user)).RunCommand(manager.CurrentInstance, cmdline.options)); default: user.RaiseMessage("Unknown command, try --help"); return(Exit.BADOPT); } }
public static int Main(string[] args) { // Launch debugger if the "--debugger" flag is present in the command line arguments. // We want to do this as early as possible so just check the flag manually, rather than doing the // more robust argument parsing. if (args.Any(i => i == "--debugger")) { Debugger.Launch(); } BasicConfigurator.Configure(); LogManager.GetRepository().Threshold = Level.Warn; log.Debug("CKAN started"); Options cmdline; // If we're starting with no options then invoke the GUI instead. if (args.Length == 0) { return(Gui(new GuiOptions(), args)); } IUser user; try { cmdline = new Options(args); } catch (BadCommandKraken) { // Our help screen will already be shown. Let's add some extra data. user = new ConsoleUser(false); user.RaiseMessage("You are using CKAN version {0}", Meta.Version()); return(Exit.BADOPT); } // Process commandline options. var options = (CommonOptions)cmdline.options; user = new ConsoleUser(options.Headless); CheckMonoVersion(user, 3, 1, 0); if ((Platform.IsUnix || Platform.IsMac) && CmdLineUtil.GetUID() == 0) { if (!options.AsRoot) { user.RaiseError(@"You are trying to run CKAN as root. This is a bad idea and there is absolutely no good reason to do it. Please run CKAN from a user account (or use --asroot if you are feeling brave)."); return(Exit.ERROR); } else { user.RaiseMessage("Warning: Running CKAN as root!"); } } if (options.Debug) { LogManager.GetRepository().Threshold = Level.Debug; log.Info("Debug logging enabled"); } else if (options.Verbose) { LogManager.GetRepository().Threshold = Level.Info; log.Info("Verbose logging enabled"); } // Assign user-agent string if user has given us one if (options.NetUserAgent != null) { Net.UserAgentString = options.NetUserAgent; } // User provided KSP instance if (options.KSPdir != null && options.KSP != null) { user.RaiseMessage("--ksp and --kspdir can't be specified at the same time"); return(Exit.BADOPT); } KSPManager manager = new KSPManager(user); if (options.KSP != null) { // Set a KSP directory by its alias. try { manager.SetCurrentInstance(options.KSP); } catch (InvalidKSPInstanceKraken) { user.RaiseMessage("Invalid KSP installation specified \"{0}\", use '--kspdir' to specify by path, or 'list-installs' to see known KSP installations", options.KSP); return(Exit.BADOPT); } } else if (options.KSPdir != null) { // Set a KSP directory by its path manager.SetCurrentInstanceByPath(options.KSPdir); } else if (!(cmdline.action == "ksp" || cmdline.action == "version")) { // Find whatever our preferred instance is. // We don't do this on `ksp/version` commands, they don't need it. CKAN.KSP ksp = manager.GetPreferredInstance(); if (ksp == null) { user.RaiseMessage("I don't know where KSP is installed."); user.RaiseMessage("Use 'ckan ksp help' for assistance on setting this."); return(Exit.ERROR); } else { log.InfoFormat("Using KSP install at {0}", ksp.GameDir()); } } #region Aliases switch (cmdline.action) { case "add": cmdline.action = "install"; break; case "uninstall": cmdline.action = "remove"; break; } #endregion switch (cmdline.action) { case "gui": return(Gui((GuiOptions)options, args)); case "version": return(Version(user)); case "update": return((new Update(user)).RunCommand(manager.CurrentInstance, (UpdateOptions)cmdline.options)); case "available": return(Available(manager.CurrentInstance, user)); case "install": Scan(manager.CurrentInstance, user, cmdline.action); return((new Install(user)).RunCommand(manager.CurrentInstance, (InstallOptions)cmdline.options)); case "scan": return(Scan(manager.CurrentInstance, user)); case "list": return((new List(user)).RunCommand(manager.CurrentInstance, (ListOptions)cmdline.options)); case "show": return((new Show(user)).RunCommand(manager.CurrentInstance, (ShowOptions)cmdline.options)); case "search": return((new Search(user)).RunCommand(manager.CurrentInstance, options)); case "remove": return((new Remove(user)).RunCommand(manager.CurrentInstance, cmdline.options)); case "upgrade": Scan(manager.CurrentInstance, user, cmdline.action); return((new Upgrade(user)).RunCommand(manager.CurrentInstance, cmdline.options)); case "clean": return(Clean(manager.CurrentInstance)); case "repair": var repair = new Repair(manager.CurrentInstance, user); return(repair.RunSubCommand((SubCommandOptions)cmdline.options)); case "ksp": var ksp = new KSP(manager, user); return(ksp.RunSubCommand((SubCommandOptions)cmdline.options)); case "repo": var repo = new Repo(manager, user); return(repo.RunSubCommand((SubCommandOptions)cmdline.options)); case "compare": return((new Compare(user)).RunCommand(manager.CurrentInstance, cmdline.options)); default: user.RaiseMessage("Unknown command, try --help"); return(Exit.BADOPT); } }
public static int Main(string[] args) { // Launch debugger if the "--debugger" flag is present in the command line arguments. // We want to do this as early as possible so just check the flag manually, rather than doing the // more robust argument parsing. if (args.Any(i => i == "--debugger")) { Debugger.Launch(); } if (args.Length == 1 && args.Any(i => i == "--verbose" || i == "--debug")) { // Start the gui with logging enabled #437 var guiCommand = args.ToList(); guiCommand.Insert(0, "gui"); args = guiCommand.ToArray(); } Logging.Initialize(); log.Info("CKAN started."); // If we're starting with no options then invoke the GUI instead. if (args.Length == 0) { return(Gui(new GuiOptions(), args)); } // We shouldn't instantiate Options if it's a subcommand. // It breaks command-specific help, for starters. try { switch (args[0]) { case "repair": var repair = new Repair(); return(repair.RunSubCommand(new SubCommandOptions(args))); case "ksp": var ksp = new KSP(); return(ksp.RunSubCommand(new SubCommandOptions(args))); case "compat": var compat = new CompatSubCommand(); return(compat.RunSubCommand(new SubCommandOptions(args))); case "repo": var repo = new Repo(); return(repo.RunSubCommand(new SubCommandOptions(args))); } } catch (NoGameInstanceKraken) { return(printMissingInstanceError(new ConsoleUser(false))); } finally { log.Info("CKAN exiting."); } Options cmdline; try { cmdline = new Options(args); } catch (BadCommandKraken) { return(AfterHelp()); } finally { log.Info("CKAN exiting."); } // Process commandline options. CommonOptions options = (CommonOptions)cmdline.options; IUser user = new ConsoleUser(options.Headless); KSPManager manager = new KSPManager(user); try { int exitCode = options.Handle(manager, user); if (exitCode != Exit.OK) { return(exitCode); } // Don't bother with instances or registries yet because some commands don't need them. return(RunSimpleAction(cmdline, options, args, user, manager)); } finally { log.Info("CKAN exiting."); } }
public static int Main(string[] args) { // Launch debugger if the "--debugger" flag is present in the command line arguments. // We want to do this as early as possible so just check the flag manually, rather than doing the // more robust argument parsing. if (args.Any(i => i == "--debugger")) { Debugger.Launch(); } if (args.Length == 1 && args.Any(i => i == "--verbose" || i == "--debug")) { // Start the gui with logging enabled #437 var guiCommand = args.ToList(); guiCommand.Insert(0, "gui"); args = guiCommand.ToArray(); } Logging.Initialize(); log.Debug("CKAN started"); Options cmdline; // If we're starting with no options then invoke the GUI instead. if (args.Length == 0) { return(Gui(new GuiOptions(), args)); } IUser user; try { cmdline = new Options(args); } catch (BadCommandKraken) { // Our help screen will already be shown. Let's add some extra data. user = new ConsoleUser(false); user.RaiseMessage("You are using CKAN version {0}", Meta.GetVersion(VersionFormat.Full)); return(Exit.BADOPT); } // Process commandline options. var options = (CommonOptions)cmdline.options; user = new ConsoleUser(options.Headless); CheckMonoVersion(user, 3, 1, 0); // Processes in Docker containers normally run as root. // If we are running in a Docker container, do not require --asroot. // Docker creates a .dockerenv file in the root of each container. if ((Platform.IsUnix || Platform.IsMac) && CmdLineUtil.GetUID() == 0 && !File.Exists("/.dockerenv")) { if (!options.AsRoot) { user.RaiseError(@"You are trying to run CKAN as root. This is a bad idea and there is absolutely no good reason to do it. Please run CKAN from a user account (or use --asroot if you are feeling brave)."); return(Exit.ERROR); } else { user.RaiseMessage("Warning: Running CKAN as root!"); } } if (options.Debug) { LogManager.GetRepository().Threshold = Level.Debug; log.Info("Debug logging enabled"); } else if (options.Verbose) { LogManager.GetRepository().Threshold = Level.Info; log.Info("Verbose logging enabled"); } // Assign user-agent string if user has given us one if (options.NetUserAgent != null) { Net.UserAgentString = options.NetUserAgent; } // User provided KSP instance if (options.KSPdir != null && options.KSP != null) { user.RaiseMessage("--ksp and --kspdir can't be specified at the same time"); return(Exit.BADOPT); } var manager = new KSPManager(user); if (options.KSP != null) { // Set a KSP directory by its alias. try { manager.SetCurrentInstance(options.KSP); } catch (InvalidKSPInstanceKraken) { user.RaiseMessage("Invalid KSP installation specified \"{0}\", use '--kspdir' to specify by path, or 'list-installs' to see known KSP installations", options.KSP); return(Exit.BADOPT); } } else if (options.KSPdir != null) { // Set a KSP directory by its path manager.SetCurrentInstanceByPath(options.KSPdir); } else if (!(cmdline.action == "ksp" || cmdline.action == "version" || cmdline.action == "gui")) { // Find whatever our preferred instance is. // We don't do this on `ksp/version/gui` commands, they don't need it. CKAN.KSP ksp = manager.GetPreferredInstance(); if (ksp == null) { user.RaiseMessage("I don't know where KSP is installed."); user.RaiseMessage("Use 'ckan ksp help' for assistance on setting this."); return(Exit.ERROR); } else { log.InfoFormat("Using KSP install at {0}", ksp.GameDir()); } } #region Aliases switch (cmdline.action) { case "add": cmdline.action = "install"; break; case "uninstall": cmdline.action = "remove"; break; } #endregion //If we have found a preferred KSP instance, try to lock the registry if (manager.CurrentInstance != null) { try { using (var registry = RegistryManager.Instance(manager.CurrentInstance)) { log.InfoFormat("About to run action {0}", cmdline.action); return(RunAction(cmdline, options, args, user, manager)); } } catch (RegistryInUseKraken kraken) { log.Info("Registry in use detected"); user.RaiseMessage(kraken.ToString()); return(Exit.ERROR); } } else // we have no preferred KSP instance, so no need to lock the registry { return(RunAction(cmdline, options, args, user, manager)); } }
// This is required by ISubCommand public int RunSubCommand(KSPManager manager, CommonOptions opts, SubCommandOptions unparsed) { string[] args = unparsed.options.ToArray(); #region Aliases for (int i = 0; i < args.Length; i++) { switch (args[i]) { case "remove": args[i] = "forget"; break; } } #endregion int exitCode = Exit.OK; // Parse and process our sub-verbs Parser.Default.ParseArgumentsStrict(args, new RepoSubOptions(), (string option, object suboptions) => { // ParseArgumentsStrict calls us unconditionally, even with bad arguments if (!string.IsNullOrEmpty(option) && suboptions != null) { CommonOptions options = (CommonOptions)suboptions; options.Merge(opts); User = new ConsoleUser(options.Headless); Manager = manager ?? new KSPManager(User); exitCode = options.Handle(Manager, User); if (exitCode != Exit.OK) { return; } switch (option) { case "available": exitCode = AvailableRepositories(); break; case "list": exitCode = ListRepositories(); break; case "add": exitCode = AddRepository((AddOptions)suboptions); break; case "remove": case "forget": exitCode = ForgetRepository((ForgetOptions)suboptions); break; case "default": exitCode = DefaultRepository((DefaultOptions)suboptions); break; default: User.RaiseMessage("Unknown command: repo {0}", option); exitCode = Exit.BADOPT; break; } } }, () => { exitCode = MainClass.AfterHelp(); }); return(exitCode); }
public static int Main(string[] args) { // Launch debugger if the "--debugger" flag is present in the command line arguments. // We want to do this as early as possible so just check the flag manually, rather than doing the // more robust argument parsing. if (args.Any(i => i == "--debugger")) { Debugger.Launch(); } if (args.Length == 1 && args.Any(i => i == "--verbose" || i == "--debug")) { // Start the gui with logging enabled #437 List<string> guiCommand = args.ToList(); guiCommand.Insert(0, "gui"); args = guiCommand.ToArray(); } BasicConfigurator.Configure(); LogManager.GetRepository().Threshold = Level.Warn; log.Debug("CKAN started"); Options cmdline; // If we're starting with no options then invoke the GUI instead. if (args.Length == 0) { return Gui(new GuiOptions(), args); } IUser user; try { cmdline = new Options(args); } catch (BadCommandKraken) { // Our help screen will already be shown. Let's add some extra data. user = new ConsoleUser(false); user.RaiseMessage("You are using CKAN version {0}", Meta.Version()); return Exit.BADOPT; } // Process commandline options. var options = (CommonOptions)cmdline.options; user = new ConsoleUser(options.Headless); CheckMonoVersion(user, 3, 1, 0); if ((Platform.IsUnix || Platform.IsMac) && CmdLineUtil.GetUID() == 0) { if (!options.AsRoot) { user.RaiseError(@"You are trying to run CKAN as root. This is a bad idea and there is absolutely no good reason to do it. Please run CKAN from a user account (or use --asroot if you are feeling brave)."); return Exit.ERROR; } else { user.RaiseMessage("Warning: Running CKAN as root!"); } } if (options.Debug) { LogManager.GetRepository().Threshold = Level.Debug; log.Info("Debug logging enabled"); } else if (options.Verbose) { LogManager.GetRepository().Threshold = Level.Info; log.Info("Verbose logging enabled"); } // Assign user-agent string if user has given us one if (options.NetUserAgent != null) { Net.UserAgentString = options.NetUserAgent; } // User provided KSP instance if (options.KSPdir != null && options.KSP != null) { user.RaiseMessage("--ksp and --kspdir can't be specified at the same time"); return Exit.BADOPT; } KSPManager manager= new KSPManager(user); if (options.KSP != null) { // Set a KSP directory by its alias. try { manager.SetCurrentInstance(options.KSP); } catch (InvalidKSPInstanceKraken) { user.RaiseMessage("Invalid KSP installation specified \"{0}\", use '--kspdir' to specify by path, or 'list-installs' to see known KSP installations", options.KSP); return Exit.BADOPT; } } else if (options.KSPdir != null) { // Set a KSP directory by its path manager.SetCurrentInstanceByPath(options.KSPdir); } else if (! (cmdline.action == "ksp" || cmdline.action == "version")) { // Find whatever our preferred instance is. // We don't do this on `ksp/version` commands, they don't need it. CKAN.KSP ksp = manager.GetPreferredInstance(); if (ksp == null) { user.RaiseMessage("I don't know where KSP is installed."); user.RaiseMessage("Use 'ckan ksp help' for assistance on setting this."); return Exit.ERROR; } else { log.InfoFormat("Using KSP install at {0}",ksp.GameDir()); } } #region Aliases switch (cmdline.action) { case "add": cmdline.action = "install"; break; case "uninstall": cmdline.action = "remove"; break; } #endregion switch (cmdline.action) { case "gui": return Gui((GuiOptions)options, args); case "version": return Version(user); case "update": return (new Update(user)).RunCommand(manager.CurrentInstance, (UpdateOptions)cmdline.options); case "available": return Available(manager.CurrentInstance, user); case "install": Scan(manager.CurrentInstance, user, cmdline.action); return (new Install(user)).RunCommand(manager.CurrentInstance, (InstallOptions)cmdline.options); case "scan": return Scan(manager.CurrentInstance,user); case "list": return (new List(user)).RunCommand(manager.CurrentInstance, (ListOptions)cmdline.options); case "show": return (new Show(user)).RunCommand(manager.CurrentInstance, (ShowOptions)cmdline.options); case "search": return (new Search(user)).RunCommand(manager.CurrentInstance, options); case "remove": return (new Remove(user)).RunCommand(manager.CurrentInstance, cmdline.options); case "upgrade": Scan(manager.CurrentInstance, user, cmdline.action); return (new Upgrade(user)).RunCommand(manager.CurrentInstance, cmdline.options); case "clean": return Clean(manager.CurrentInstance); case "repair": var repair = new Repair(manager.CurrentInstance,user); return repair.RunSubCommand((SubCommandOptions) cmdline.options); case "ksp": var ksp = new KSP(manager, user); return ksp.RunSubCommand((SubCommandOptions) cmdline.options); case "repo": var repo = new Repo (manager, user); return repo.RunSubCommand((SubCommandOptions) cmdline.options); case "compare": return (new Compare(user)).RunCommand(manager.CurrentInstance, cmdline.options); default: user.RaiseMessage("Unknown command, try --help"); return Exit.BADOPT; } }