Roslyn 的 SyntaxReceiver - 获取 类 实现接口

Roslyn's SyntaxReceiver - Get Classes Implementing Interface

我正在尝试开发一个源代码生成器,以使用该接口在部分 classes 上自动实现一个接口。

我相信这一定是 Microsoft's new Source Generators, and is even listed as a use case in the Roslyn Source Generator Cookbook 的常见用例,但没有示例实现。

我进行了搜索,但一直难以在 Roslyn Analyzers 中找到针对此场景的问题。

在食谱中,他们使用 SyntaxReceiver class 来过滤 Execute 调用应处理的语法节点:

        class SluggableSyntaxReceiver : ISyntaxReceiver
        {
            public List<ClassDeclarationSyntax> ClassesToAugment { get; } = new List<ClassDeclarationSyntax>();

            public void OnVisitSyntaxNode(SyntaxNode syntaxNode)
            {
                // Business logic to decide what we're interested in goes here
                if(syntaxNode is ClassDeclarationSyntax cds && cds.HasInterface("IChangeTracked"))
                    ClassesToAugment.Add(cds)
            }

        }

查看说明书以了解生成器的实现细节。

我想要确定的是如何在 ClassDeclarationSyntax 节点上实现我的 HasInterface 扩展。

        public static bool HasInterface(this ClassDeclarationSyntax source, string interfaceName)
        {
            IEnumerable<TypeSyntax> baseTypes = source.BaseList.Types.Select(baseType=>baseType.Type);
            // Ideally some call to do something like...
            return baseTypes.Any(baseType=>baseType.Name==interfaceName);
        }

我如何:

  1. 从 ClassDeclarationSyntax 中获取 BaseList 属性,
  2. 确定 class 是否部分
  3. 访问接口
  4. 确定是否有任何接口属于特定类型。

我不得不相信有比我所做的更好的方法来做到这一点,但就其价值而言,这是一个确定特定 ClassDeclarationSyntax 是否显式实现接口的工作实现:

        /// <summary>Indicates whether or not the class has a specific interface.</summary>
        /// <returns>Whether or not the SyntaxList contains the attribute.</returns>
        public static bool HasInterface(this ClassDeclarationSyntax source, string interfaceName)
        {
            IEnumerable<BaseTypeSyntax> baseTypes = source.BaseList.Types.Select(baseType => baseType);

            // To Do - cleaner interface finding.
            return baseTypes.Any(baseType => baseType.ToString() ==interfaceName);
        }