mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
4.8 KiB
119 lines
4.8 KiB
// Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team |
|
// |
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of this |
|
// software and associated documentation files (the "Software"), to deal in the Software |
|
// without restriction, including without limitation the rights to use, copy, modify, merge, |
|
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons |
|
// to whom the Software is furnished to do so, subject to the following conditions: |
|
// |
|
// The above copyright notice and this permission notice shall be included in all copies or |
|
// substantial portions of the Software. |
|
// |
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, |
|
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR |
|
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE |
|
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
|
// DEALINGS IN THE SOFTWARE. |
|
|
|
using McMaster.Extensions.CommandLineUtils; |
|
|
|
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
|
|
namespace ICSharpCode.ILSpy.AppEnv |
|
{ |
|
public sealed class CommandLineArguments |
|
{ |
|
// see /doc/Command Line.txt for details |
|
public List<string> AssembliesToLoad = new List<string>(); |
|
public bool? SingleInstance; |
|
public string NavigateTo; |
|
public string Search; |
|
public string Language; |
|
public bool NoActivate; |
|
public string ConfigFile; |
|
|
|
public CommandLineApplication ArgumentsParser { get; } |
|
|
|
private CommandLineArguments(CommandLineApplication app) |
|
{ |
|
ArgumentsParser = app; |
|
} |
|
|
|
public static CommandLineArguments Create(IEnumerable<string> arguments) |
|
{ |
|
var app = new CommandLineApplication() { |
|
// https://natemcmaster.github.io/CommandLineUtils/docs/response-file-parsing.html?tabs=using-attributes |
|
ResponseFileHandling = ResponseFileHandling.ParseArgsAsLineSeparated, |
|
|
|
// Note: options are case-sensitive (!), and, default behavior would be UnrecognizedArgumentHandling.Throw on Parse() |
|
UnrecognizedArgumentHandling = UnrecognizedArgumentHandling.CollectAndContinue |
|
}; |
|
|
|
app.HelpOption(); |
|
var instance = new CommandLineArguments(app); |
|
|
|
try |
|
{ |
|
var oForceNewInstance = app.Option("--newinstance", |
|
"Start a new instance of ILSpy even if the user configuration is set to single-instance", |
|
CommandOptionType.NoValue); |
|
|
|
var oNavigateTo = app.Option<string>("-n|--navigateto <TYPENAME>", |
|
"Navigates to the member specified by the given ID string.\r\nThe member is searched for only in the assemblies specified on the command line.\r\nExample: 'ILSpy ILSpy.exe --navigateto T:ICSharpCode.ILSpy.CommandLineArguments'", |
|
CommandOptionType.SingleValue); |
|
oNavigateTo.DefaultValue = null; |
|
|
|
var oSearch = app.Option<string>("-s|--search <SEARCHTERM>", |
|
"Search for t:TypeName, m:Member or c:Constant; use exact match (=term), 'should not contain' (-term) or 'must contain' (+term); use /reg(ular)?Ex(pressions)?/ or both - t:/Type(Name)?/...", |
|
CommandOptionType.SingleValue); |
|
oSearch.DefaultValue = null; |
|
|
|
var oLanguage = app.Option<string>("-l|--language <LANGUAGEIDENTIFIER>", |
|
"Selects the specified language.\r\nExample: 'ILSpy --language:C#' or 'ILSpy --language IL'", |
|
CommandOptionType.SingleValue); |
|
oLanguage.DefaultValue = null; |
|
|
|
var oConfig = app.Option<string>("-c|--config <CONFIGFILENAME>", |
|
"Provide a specific configuration file.\r\nExample: 'ILSpy --config myconfig.xml'", |
|
CommandOptionType.SingleValue); |
|
oConfig.DefaultValue = null; |
|
|
|
var oNoActivate = app.Option("--noactivate", |
|
"Do not activate the existing ILSpy instance. This option has no effect if a new ILSpy instance is being started.", |
|
CommandOptionType.NoValue); |
|
|
|
// https://natemcmaster.github.io/CommandLineUtils/docs/arguments.html#variable-numbers-of-arguments |
|
// To enable this, MultipleValues must be set to true, and the argument must be the last one specified. |
|
var files = app.Argument("Assemblies", "Assemblies to load", multipleValues: true); |
|
|
|
app.Parse(arguments.ToArray()); |
|
|
|
if (oForceNewInstance.HasValue()) |
|
instance.SingleInstance = false; |
|
|
|
instance.NavigateTo = oNavigateTo.ParsedValue; |
|
instance.Search = oSearch.ParsedValue; |
|
instance.Language = oLanguage.ParsedValue; |
|
instance.ConfigFile = oConfig.ParsedValue; |
|
|
|
if (oNoActivate.HasValue()) |
|
instance.NoActivate = true; |
|
|
|
foreach (var assembly in files.Values) |
|
{ |
|
if (!string.IsNullOrWhiteSpace(assembly)) |
|
instance.AssembliesToLoad.Add(assembly); |
|
} |
|
} |
|
catch (Exception) |
|
{ |
|
// Intentionally ignore exceptions if any, this is only added to always have an exception-free startup |
|
} |
|
|
|
return instance; |
|
} |
|
} |
|
}
|
|
|