-
-
Couldn't load subscription status.
- Fork 1k
Add support for response files #2320
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,6 +3,7 @@ | |
| using System.Diagnostics.CodeAnalysis; | ||
| using System.IO; | ||
| using System.Linq; | ||
| using System.Text; | ||
| using BenchmarkDotNet.Columns; | ||
| using BenchmarkDotNet.Configs; | ||
| using BenchmarkDotNet.Diagnosers; | ||
|
|
@@ -75,6 +76,7 @@ public static (bool isSuccess, IConfig config, CommandLineOptions options) Parse | |
| { | ||
| (bool isSuccess, IConfig config, CommandLineOptions options) result = default; | ||
|
|
||
| args = ExpandResponseFile(args).ToArray(); | ||
| using (var parser = CreateParser(logger)) | ||
| { | ||
| parser | ||
|
|
@@ -86,6 +88,100 @@ public static (bool isSuccess, IConfig config, CommandLineOptions options) Parse | |
| return result; | ||
| } | ||
|
|
||
| private static IEnumerable<string> ExpandResponseFile(string[] args) | ||
| { | ||
| foreach (var arg in args) | ||
| { | ||
| if (arg.StartsWith("@")) | ||
| { | ||
| var fileName = arg.Substring(1); | ||
| if (File.Exists(fileName)) | ||
| { | ||
| var lines = File.ReadAllLines(fileName); | ||
|
||
| foreach (var line in lines) | ||
| { | ||
| foreach (var token in ConsumeTokens(line)) | ||
| yield return token; | ||
| } | ||
| } | ||
| } | ||
| else | ||
| { | ||
| if (arg.Contains(' ')) | ||
| { | ||
| // Workaround for CommandLine library issue with parsing these kind of args. | ||
| yield return " " + arg; | ||
| } | ||
| else | ||
| { | ||
| yield return arg; | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
| private static IEnumerable<string> ConsumeTokens(string line) | ||
| { | ||
| bool insideQuotes = false; | ||
| var token = new StringBuilder(); | ||
| for (int i = 0; i < line.Length; i++) | ||
| { | ||
| char currentChar = line[i]; | ||
| if (currentChar == ' ' && !insideQuotes) | ||
| { | ||
| if (token.Length > 0) | ||
| { | ||
| yield return GetToken(); | ||
| token = new StringBuilder(); | ||
| } | ||
|
|
||
| continue; | ||
| } | ||
|
|
||
| if (currentChar == '"') | ||
| { | ||
| insideQuotes = !insideQuotes; | ||
| continue; | ||
| } | ||
|
|
||
| if (currentChar == '\\' && insideQuotes) | ||
| { | ||
| if (line[i + 1] == '"') | ||
| { | ||
| insideQuotes = false; | ||
| i++; | ||
| continue; | ||
| } | ||
|
|
||
| if (line[i + 1] == '\\') | ||
| { | ||
| token.Append('\\'); | ||
| i++; | ||
| continue; | ||
| } | ||
| } | ||
|
|
||
| token.Append(currentChar); | ||
| } | ||
|
|
||
| if (token.Length > 0) | ||
| { | ||
| yield return GetToken(); | ||
| } | ||
|
|
||
| string GetToken() | ||
| { | ||
| var result = token.ToString(); | ||
| if (result.Contains(' ')) | ||
| { | ||
| // Workaround for CommandLine library issue with parsing these kind of args. | ||
| return " " + result; | ||
| } | ||
|
|
||
| return result; | ||
| } | ||
| } | ||
|
|
||
| internal static bool TryUpdateArgs(string[] args, out string[]? updatedArgs, Action<CommandLineOptions> updater) | ||
| { | ||
| (bool isSuccess, CommandLineOptions options) result = default; | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What if the given file doesn't exist? I believe we should warn the user about that rather than just silently ignore such an argument.