-
Notifications
You must be signed in to change notification settings - Fork 1.3k
File-level directives: allow quoting and additional properties #55592
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
Open
jjonescz
wants to merge
20
commits into
dotnet:main
Choose a base branch
from
jjonescz:52399-sprint-directive-properties
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
2222f39
File-level directives: allow quoting and additional properties
jjonescz 7e135a6
Simplify
jjonescz 34578d2
Merge branch 'main' into 52399-sprint-directive-properties
jjonescz 341b944
Support `#:ref`
jjonescz 7366b31
Allow legacy unquoted forms
jjonescz e1b1c1f
Analyze non-entry-point files too
jjonescz d468556
Revert unnecessary changes
jjonescz d24bb6a
Use roslyn lexer
jjonescz 4a410fe
Add metadata name to the error message
jjonescz 264b0ee
Propagate roslyn errors
jjonescz 3cfff2b
Clarify raw string literal error
jjonescz f54f08f
Encapsulate name verification
jjonescz 41afd00
Improve code
jjonescz 7d17d59
Share logic
jjonescz ccf2f4a
Turn it into a warning
jjonescz 7b3e283
Handle empty metadata name
jjonescz 65c983f
Remove unnecessary test
jjonescz c957743
Test directives that don't support metadata
jjonescz bd8a5b0
Merge branch 'main' into 52399-sprint-directive-properties
jjonescz a7d2d57
Improve code
jjonescz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
96 changes: 96 additions & 0 deletions
96
src/Cli/Microsoft.DotNet.FileBasedPrograms/FileBasedProgramDirectiveValueHelpers.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,96 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
|
|
||
| #nullable enable | ||
|
|
||
| using System.Collections.Generic; | ||
| using System.Text.RegularExpressions; | ||
| using System.Xml; | ||
| using Microsoft.CodeAnalysis.CSharp; | ||
|
|
||
| namespace Microsoft.DotNet.FileBasedPrograms; | ||
|
|
||
| /// <summary> | ||
| /// Low-level primitives for parsing and formatting the values of file-based program <c>#:</c> | ||
| /// directives. These are source-shared between the CLI directive parser | ||
| /// (<c>FileLevelDirectiveHelpers</c>) and the analyzer that flags the deprecated unquoted form | ||
| /// (<c>FileBasedProgramDirectiveQuoting</c>), so both agree on quoting, name validity, and metadata | ||
| /// detection instead of each duplicating the logic. | ||
| /// </summary> | ||
| internal static class FileBasedProgramDirectiveValueHelpers | ||
| { | ||
| // Characters that are not allowed in a directive or metadata name because they would be confused | ||
| // with a separator: whitespace, '@', '=', '/'. | ||
| private static readonly Regex s_disallowedNameCharacters = new("""[\s@=/]"""); | ||
|
|
||
| /// <summary> | ||
| /// Returns whether <paramref name="name"/> contains a character that is not allowed in a directive | ||
| /// or metadata name (whitespace or one of the separator characters <c>@</c>, <c>=</c>, <c>/</c>). | ||
| /// </summary> | ||
| public static bool ContainsDisallowedNameCharacter(string name) => s_disallowedNameCharacters.IsMatch(name); | ||
|
|
||
| /// <summary> | ||
| /// Validates that <paramref name="name"/> is a valid XML NCName, the constraint MSBuild applies to | ||
| /// property and item-metadata names (an NCName additionally disallows the ':' that a plain XML name | ||
| /// permits). Returns <see langword="true"/> when valid; otherwise returns <see langword="false"/> and | ||
| /// sets <paramref name="errorMessage"/> to the underlying validation-failure message. | ||
| /// </summary> | ||
| public static bool IsValidMSBuildName(string name, out string? errorMessage) | ||
| { | ||
| try | ||
| { | ||
| XmlConvert.VerifyNCName(name); | ||
| errorMessage = null; | ||
| return true; | ||
| } | ||
| catch (XmlException ex) | ||
| { | ||
| errorMessage = ex.Message; | ||
| return false; | ||
| } | ||
| } | ||
|
|
||
| /// <summary> | ||
| /// Returns whether every token from <paramref name="start"/> onwards is a valid <c>Name=Value</c> | ||
| /// item-metadata pair (a valid MSBuild name, then <c>'='</c>, then any value). | ||
| /// </summary> | ||
| public static bool AllValidMetadata(IReadOnlyList<string> tokens, int start) | ||
| { | ||
| for (var i = start; i < tokens.Count; i++) | ||
| { | ||
| var token = tokens[i]; | ||
| var separatorIndex = token.IndexOf('='); | ||
| if (separatorIndex <= 0) | ||
| { | ||
| return false; | ||
| } | ||
|
|
||
| if (!IsValidMSBuildName(token.Substring(0, separatorIndex), out _)) | ||
| { | ||
| return false; | ||
| } | ||
| } | ||
|
|
||
| return true; | ||
| } | ||
|
|
||
| /// <summary> | ||
| /// Wraps <paramref name="value"/> in a C# string literal when it contains a character (whitespace or | ||
| /// a double quote) that cannot appear in a bare directive token, so it round-trips through the parser | ||
| /// (which lexes a quoted value as a regular C# string literal). Otherwise returns it unchanged. | ||
| /// </summary> | ||
| public static string QuoteIfNeeded(string value) | ||
| { | ||
| foreach (var c in value) | ||
| { | ||
| if (char.IsWhiteSpace(c) || c == '"') | ||
| { | ||
| // FormatLiteral produces a properly escaped C# string literal (e.g. "a\"b", "a\tb") that | ||
| // the parser decodes back to the original value. | ||
| return SymbolDisplay.FormatLiteral(value, quote: true); | ||
| } | ||
| } | ||
|
|
||
| return value; | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.