-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Guard DAM code fix locations by compilation #131910
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
agocke
wants to merge
2
commits into
dotnet:main
Choose a base branch
from
agocke:fix-dam-bug
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 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
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
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 |
|---|---|---|
|
|
@@ -216,22 +216,22 @@ private static void VerifyDamOnMethodsMatch(SymbolAnalysisContext context, IMeth | |
| var baseMethodReturnAnnotation = FlowAnnotations.GetMethodReturnValueAnnotation(baseMethod); | ||
| if (overrideMethodReturnAnnotation != baseMethodReturnAnnotation) | ||
| { | ||
| Location[]? additionalLocations = null; | ||
| ImmutableDictionary<string, string?>? properties = null; | ||
| if (overrideMethodReturnAnnotation == DynamicallyAccessedMemberTypes.None | ||
| && !overrideMethod.TryGetReturnAttribute(DynamicallyAccessedMembersAttribute, out _)) | ||
| { | ||
| (additionalLocations, properties) = CreateCodeFixArguments( | ||
| context.Compilation, | ||
| GetPrimaryLocation(overrideMethod.Locations), | ||
| baseMethodReturnAnnotation); | ||
| } | ||
|
|
||
| (IMethodSymbol attributableMethod, DynamicallyAccessedMemberTypes missingAttribute) = GetTargetAndRequirements(overrideMethod, | ||
| baseMethod, overrideMethodReturnAnnotation, baseMethodReturnAnnotation); | ||
|
|
||
| Location attributableSymbolLocation = GetPrimaryLocation(attributableMethod.Locations); | ||
|
|
||
| // code fix does not support merging multiple attributes. If an attribute is present or the method is not in source, do not provide args for code fix. | ||
| (Location[]? sourceLocation, Dictionary<string, string?>? DAMArgs) = (!attributableSymbolLocation.IsInSource | ||
| || (overrideMethod.TryGetReturnAttribute(DynamicallyAccessedMembersAnalyzer.DynamicallyAccessedMembersAttribute, out var _) | ||
| && baseMethod.TryGetReturnAttribute(DynamicallyAccessedMembersAnalyzer.DynamicallyAccessedMembersAttribute, out var _)) | ||
| ) ? (null, null) : CreateArguments(attributableSymbolLocation, missingAttribute); | ||
|
|
||
| var returnOrigin = origin ??= overrideMethod; | ||
| var returnOrigin = origin ?? overrideMethod; | ||
| context.ReportDiagnostic(Diagnostic.Create( | ||
| DiagnosticDescriptors.GetDiagnosticDescriptor(DiagnosticId.DynamicallyAccessedMembersMismatchOnMethodReturnValueBetweenOverrides), | ||
| GetPrimaryLocation(returnOrigin.Locations), sourceLocation, DAMArgs?.ToImmutableDictionary(), overrideMethod.GetDisplayName(), baseMethod.GetDisplayName())); | ||
| GetPrimaryLocation(returnOrigin.Locations), additionalLocations, properties, | ||
| overrideMethod.GetDisplayName(), baseMethod.GetDisplayName())); | ||
| } | ||
|
|
||
| foreach (var overrideParam in overrideMethod.GetMetadataParameters()) | ||
|
|
@@ -241,21 +241,21 @@ private static void VerifyDamOnMethodsMatch(SymbolAnalysisContext context, IMeth | |
| var overrideParameterAnnotation = FlowAnnotations.GetMethodParameterAnnotation(overrideParam); | ||
| if (overrideParameterAnnotation != baseParameterAnnotation) | ||
| { | ||
| (IMethodSymbol attributableMethod, DynamicallyAccessedMemberTypes missingAttribute) = GetTargetAndRequirements(overrideMethod, | ||
| baseMethod, overrideParameterAnnotation, baseParameterAnnotation); | ||
|
|
||
| Location attributableSymbolLocation = attributableMethod.GetParameter(overrideParam.Index).Location!; | ||
|
|
||
| // code fix does not support merging multiple attributes. If an attribute is present or the method is not in source, do not provide args for code fix. | ||
| (Location[]? sourceLocation, Dictionary<string, string?>? DAMArgs) = (!attributableSymbolLocation.IsInSource | ||
| || (overrideParam.ParameterSymbol!.TryGetAttribute(DynamicallyAccessedMembersAnalyzer.DynamicallyAccessedMembersAttribute, out var _) | ||
| && baseParam.ParameterSymbol!.TryGetAttribute(DynamicallyAccessedMembersAnalyzer.DynamicallyAccessedMembersAttribute, out var _)) | ||
| ) ? (null, null) : CreateArguments(attributableSymbolLocation, missingAttribute); | ||
| Location[]? additionalLocations = null; | ||
| ImmutableDictionary<string, string?>? properties = null; | ||
| if (overrideParameterAnnotation == DynamicallyAccessedMemberTypes.None | ||
| && !overrideParam.ParameterSymbol!.TryGetAttribute(DynamicallyAccessedMembersAttribute, out _)) | ||
| { | ||
| (additionalLocations, properties) = CreateCodeFixArguments( | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can this still offer a code fix on a base method when the base method implements an interface? Might be worth adding a test like this: interface I
{
void M(
[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods)]
Type type);
}
class Base
{
public void M(Type type) { }
}
class Derived : Base, I
{
} |
||
| context.Compilation, | ||
| overrideParam.Location!, | ||
| baseParameterAnnotation); | ||
| } | ||
|
|
||
| var parameterOrigin = origin ?? overrideParam.ParameterSymbol; | ||
| context.ReportDiagnostic(Diagnostic.Create( | ||
| DiagnosticDescriptors.GetDiagnosticDescriptor(DiagnosticId.DynamicallyAccessedMembersMismatchOnMethodParameterBetweenOverrides), | ||
| GetPrimaryLocation(parameterOrigin?.Locations), sourceLocation, DAMArgs?.ToImmutableDictionary(), | ||
| GetPrimaryLocation(parameterOrigin?.Locations), additionalLocations, properties, | ||
| overrideParam.GetDisplayName(), overrideMethod.GetDisplayName(), baseParam.GetDisplayName(), baseMethod.GetDisplayName())); | ||
| } | ||
| } | ||
|
|
@@ -266,22 +266,10 @@ private static void VerifyDamOnMethodsMatch(SymbolAnalysisContext context, IMeth | |
| var overriddenMethodTypeParameterAnnotation = baseMethod.TypeParameters[i].GetDynamicallyAccessedMemberTypes(); | ||
| if (methodTypeParameterAnnotation != overriddenMethodTypeParameterAnnotation) | ||
| { | ||
|
|
||
| (IMethodSymbol attributableMethod, DynamicallyAccessedMemberTypes missingAttribute) = GetTargetAndRequirements(overrideMethod, baseMethod, methodTypeParameterAnnotation, overriddenMethodTypeParameterAnnotation); | ||
|
|
||
| var attributableSymbol = attributableMethod.TypeParameters[i]; | ||
| Location attributableSymbolLocation = GetPrimaryLocation(attributableSymbol.Locations); | ||
|
|
||
| // code fix does not support merging multiple attributes. If an attribute is present or the method is not in source, do not provide args for code fix. | ||
| (Location[]? sourceLocation, Dictionary<string, string?>? DAMArgs) = (!attributableSymbolLocation.IsInSource | ||
| || (overrideMethod.TypeParameters[i].TryGetAttribute(DynamicallyAccessedMembersAnalyzer.DynamicallyAccessedMembersAttribute, out var _) | ||
| && baseMethod.TypeParameters[i].TryGetAttribute(DynamicallyAccessedMembersAnalyzer.DynamicallyAccessedMembersAttribute, out var _)) | ||
| ) ? (null, null) : CreateArguments(attributableSymbolLocation, missingAttribute); | ||
|
|
||
| var typeParameterOrigin = origin ?? overrideMethod.TypeParameters[i]; | ||
| context.ReportDiagnostic(Diagnostic.Create( | ||
| DiagnosticDescriptors.GetDiagnosticDescriptor(DiagnosticId.DynamicallyAccessedMembersMismatchOnGenericParameterBetweenOverrides), | ||
| GetPrimaryLocation(typeParameterOrigin.Locations), sourceLocation, DAMArgs?.ToImmutableDictionary(), | ||
| GetPrimaryLocation(typeParameterOrigin.Locations), | ||
| overrideMethod.TypeParameters[i].GetDisplayName(), overrideMethod.GetDisplayName(), | ||
| baseMethod.TypeParameters[i].GetDisplayName(), baseMethod.GetDisplayName())); | ||
| } | ||
|
|
@@ -308,7 +296,7 @@ private static void VerifyDamOnInterfaceAndImplementationMethodsMatch(SymbolAnal | |
| { | ||
| if (implementationMember is IMethodSymbol implementationMethod && interfaceMember is IMethodSymbol interfaceMethod) | ||
| { | ||
| ISymbol origin = implementationMethod; | ||
| ISymbol? origin = null; | ||
| INamedTypeSymbol implementationType = implementationMethod.ContainingType; | ||
|
|
||
| // If this type implements an interface method through a base class, the origin of the warning is this type, | ||
|
|
@@ -351,29 +339,24 @@ private static void VerifyDamOnPropertyAndAccessorMatch(SymbolAnalysisContext co | |
| } | ||
| } | ||
|
|
||
| private static (IMethodSymbol Method, DynamicallyAccessedMemberTypes Requirements) GetTargetAndRequirements(IMethodSymbol method, IMethodSymbol overriddenMethod, DynamicallyAccessedMemberTypes methodAnnotation, DynamicallyAccessedMemberTypes overriddenMethodAnnotation) | ||
| private static (Location[]?, ImmutableDictionary<string, string?>?) CreateCodeFixArguments( | ||
| Compilation compilation, | ||
| Location targetLocation, | ||
| DynamicallyAccessedMemberTypes annotation) | ||
| { | ||
| DynamicallyAccessedMemberTypes mismatchedArgument; | ||
| IMethodSymbol paramNeedsAttributes; | ||
| if (methodAnnotation == DynamicallyAccessedMemberTypes.None) | ||
| { | ||
| mismatchedArgument = overriddenMethodAnnotation; | ||
| paramNeedsAttributes = method; | ||
| } | ||
| else | ||
| if (targetLocation.SourceTree is not { } syntaxTree | ||
| || !compilation.ContainsSyntaxTree(syntaxTree)) | ||
| { | ||
| mismatchedArgument = methodAnnotation; | ||
| paramNeedsAttributes = overriddenMethod; | ||
| return default; | ||
| } | ||
| return (paramNeedsAttributes, mismatchedArgument); | ||
| } | ||
|
|
||
| private static (Location[]?, Dictionary<string, string?>?) CreateArguments(Location attributableSymbolLocation, DynamicallyAccessedMemberTypes mismatchedArgument) | ||
| { | ||
| Dictionary<string, string?>? DAMArgument = new(); | ||
| Location[]? sourceLocation = new Location[] { attributableSymbolLocation }; | ||
| DAMArgument.Add(DynamicallyAccessedMembersAnalyzer.attributeArgument, mismatchedArgument.ToString()); | ||
| return (sourceLocation, DAMArgument); | ||
| return ( | ||
| [targetLocation], | ||
| new Dictionary<string, string?> | ||
| { | ||
| [attributeArgument] = annotation.ToString() | ||
| }.ToImmutableDictionary()); | ||
|
Comment on lines
+354
to
+358
|
||
| } | ||
|
|
||
| } | ||
| } | ||
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.
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.
This means the target document could be a different file right? Do we have test coverage for that case?