File: TrimAnalysis\DiagnosticContext.cs
Web Access
Project: src\src\tools\illink\src\ILLink.RoslynAnalyzer\ILLink.RoslynAnalyzer.csproj (ILLink.RoslynAnalyzer)
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
 
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Diagnostics;
using ILLink.RoslynAnalyzer;
using Microsoft.CodeAnalysis;
 
namespace ILLink.Shared.TrimAnalysis
{
    public readonly partial struct DiagnosticContext
    {
        public readonly Location Location { get; }
 
        private readonly Action<Diagnostic>? _reportDiagnostic;
 
        public DiagnosticContext(Location location, Action<Diagnostic>? reportDiagnostic)
        {
            Location = location;
            _reportDiagnostic = reportDiagnostic;
        }
 
        private Diagnostic CreateDiagnostic(DiagnosticId id, params string[] args)
        {
            return Diagnostic.Create(DiagnosticDescriptors.GetDiagnosticDescriptor(id), Location, args);
        }
 
        public partial void AddDiagnostic(DiagnosticId id, params string[] args)
        {
            if (_reportDiagnostic is null)
                return;
 
            _reportDiagnostic(CreateDiagnostic(id, args));
        }
 
        public partial void AddDiagnostic(DiagnosticId id, ValueWithDynamicallyAccessedMembers actualValue, ValueWithDynamicallyAccessedMembers expectedAnnotationsValue, params string[] args)
        {
            if (_reportDiagnostic is null)
                return;
 
            _reportDiagnostic(CreateDiagnostic(id, actualValue, expectedAnnotationsValue, args));
        }
 
        private Diagnostic CreateDiagnostic(DiagnosticId id, ValueWithDynamicallyAccessedMembers actualValue, ValueWithDynamicallyAccessedMembers expectedAnnotationsValue, params string[] args)
        {
            Debug.Assert(Location != null);
 
            if (actualValue is NullableValueWithDynamicallyAccessedMembers nv)
                actualValue = nv.UnderlyingTypeValue;
 
            ISymbol symbol = actualValue switch
            {
                FieldValue field => field.FieldSymbol,
                MethodParameterValue maybeThisParameter when maybeThisParameter.Parameter.IsImplicitThis => maybeThisParameter.MethodSymbol,
                MethodParameterValue methodParameter => methodParameter.Parameter.ParameterSymbol!,
                MethodReturnValue mrv => mrv.MethodSymbol,
                GenericParameterValue gpv => gpv.GenericParameter.TypeParameterSymbol,
                _ => throw new InvalidOperationException()
            };
 
            Location[]? sourceLocation;
            Dictionary<string, string?>? DAMArgument = new Dictionary<string, string?>();
 
            // not supporting merging differing attributes, check to make sure symbol has no other attributes
            if (symbol.DeclaringSyntaxReferences.Length == 0
                    || (actualValue is not MethodReturnValue
                        && symbol.TryGetAttribute(DynamicallyAccessedMembersAnalyzer.DynamicallyAccessedMembersAttribute, out var _))
                    || (actualValue is MethodReturnValue
                        && symbol is IMethodSymbol method
                        && method.TryGetReturnAttribute(DynamicallyAccessedMembersAnalyzer.DynamicallyAccessedMembersAttribute, out var _)))
            {
                sourceLocation = null;
                DAMArgument = null;
            }
            else
            {
                Location symbolLocation;
                symbolLocation = symbol.DeclaringSyntaxReferences[0].GetSyntax().GetLocation();
                DAMArgument.Add("attributeArgument", expectedAnnotationsValue.DynamicallyAccessedMemberTypes.ToString());
                sourceLocation = new Location[] { symbolLocation };
            }
 
            return Diagnostic.Create(DiagnosticDescriptors.GetDiagnosticDescriptor(id), Location, sourceLocation, DAMArgument?.ToImmutableDictionary(), args);
        }
    }
}