gpt4 book ai didi

c# - 使用 Roslyn 在 Visual Studio 解决方案中查找所有引用

转载 作者:行者123 更新时间:2023-11-30 17:32:44 25 4
gpt4 key购买 nike

TLDR;

如何在我的 Visual Studio 解决方案中找到对索引属性 Microsoft.Extensions.Localization.IStringLocalizer.Item[String] 的引用的所有常量字符串参数?所有源代码都是用 C# 编写的。该解决方案还必须支持 MVC razor View 。

附加信息

我相信 Roslyn 是问题的答案。但是,我还没有找到通过 API 实现此目的的方法。我也不确定是使用语法树、编译还是语义模型。以下是基于stackoverflow上其他Q&A的尝试。非常感谢任何帮助使其工作的帮助 :-) 如果您好奇,可以阅读此需求的原因 here .

namespace AspNetCoreLocalizationKeysExtractor
{
using System;
using System.Linq;
using Microsoft.CodeAnalysis.FindSymbols;
using Microsoft.CodeAnalysis.MSBuild;

class Program
{
static void Main(string[] args)
{
string solutionPath = @"..\source\MySolution.sln";
var msWorkspace = MSBuildWorkspace.Create();

var solution = msWorkspace.OpenSolutionAsync(solutionPath).Result;

foreach (var project in solution.Projects.Where(p => p.AssemblyName.StartsWith("MyCompanyNamespace.")))
{
var compilation = project.GetCompilationAsync().Result;
var interfaceType = compilation.GetTypeByMetadataName("Microsoft.Extensions.Localization.IStringLocalizer");

// TODO: Find the indexer based on the name ("Item"/"this"?) and/or on the parameter and return type
var indexer = interfaceType.GetMembers().First();

var indexReferences = SymbolFinder.FindReferencesAsync(indexer, solution).Result.ToList();

foreach (var symbol in indexReferences)
{
// TODO: How to get output comprised by "a location" like e.g. a namespace qualified name and the parameter of the index call. E.g:
//
// MyCompanyNamespace.MyLib.SomeClass: "Please try again"
// MyCompanyNamespace.MyWebApp.Views.Shared._Layout: "Welcome to our cool website"
Console.WriteLine(symbol.Definition.ToDisplayString());
}
}
}
}
}

更新:解决方法

尽管@Oxoron 提供了巨大帮助,但我还是选择求助于一个简单的解决方法。目前 Roslyn 未使用 SymbolFinder.FindReferencesAsync 找到任何引用。它似乎是根据“无声”的 msbuild 失败。这些错误是这样的:

msWorkspace.WorkspaceFailed += (sender, eventArgs) =>
{
Console.Error.WriteLine($"{eventArgs.Diagnostic.Kind}: {eventArgs.Diagnostic.Message}");
Console.Error.WriteLine();
};

var compilation = project.GetCompilationAsync().Result;
foreach (var diagnostic in compilation.GetDiagnostics())
Console.Error.WriteLine(diagnostic);

我的解决方法大致是这样的:

public void ParseSource()
{
var sourceFiles = from f in Directory.GetFiles(SourceDir, "*.cs*", SearchOption.AllDirectories)
where f.EndsWith(".cs") || f.EndsWith(".cshtml")
where !f.Contains(@"\obj\") && !f.Contains(@"\packages\")
select f;
// _["Hello, World!"]
// _[@"Hello, World!"]
// _localizer["Hello, World!"]
var regex = new Regex(@"_(localizer)?\[""(.*?)""\]");
foreach (var sourceFile in sourceFiles)
{
foreach (var line in File.ReadLines(sourceFile))
{
var matches = regex.Matches(line);
foreach (Match match in matches)
{
var resourceKey = GetResourceKeyFromFileName(sourceFile);
var key = match.Groups[2].Value;
Console.WriteLine($"{resourceKey}: {key}");
}
}
}
}

当然,该解决方案并非万无一失,它依赖于命名约定,并且不处理多行逐字字符串。但它可能会为我们完成这项工作:-)

最佳答案

看看thisthis问题,他们将帮助索引器。

确定 namespace - 这有点困难。您可以使用如下代码确定它

int spanStart = symbol.Locations[0].Location.SourceSpan.Start;
Document doc = symbol.Locations[0].Location.Document;
var indexerInvokation = doc.GetSyntaxRootAsync().Result.DescendantNodes()
.FirstOrDefault(node => node.GetLocation().SourceSpan.Start == spanStart );

之后只需找到 indexerInvokation 父节点,直到 MethodDeclarationSyntax、ClassDeclarationSyntax 等。

Upd1.测试项目代码:

namespace TestApp
{
class Program
{
static void Main(string[] args)
{
int test0 = new A().GetInt();
int test1 = new IndexedUno()[2];
int test2 = new IndexedDo()[2];
}
}

public interface IIndexed
{
int this[int i] { get; }
}


public class IndexedUno : IIndexed
{
public int this[int i] => i;
}

public class IndexedDo : IIndexed
{
public int this[int i] => i;
}

public class A
{
public int GetInt() { return new IndexedUno()[1]; }
}

public class B
{
public int GetInt() { return new IndexedDo()[4]; }
}
}

搜索代码:

using System;
using System.Linq;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.FindSymbols;
using Microsoft.CodeAnalysis.MSBuild;

namespace AnalyzeIndexers
{
class Program
{
static void Main(string[] args)
{
string solutionPath = @"PathToSolution.sln";
var msWorkspace = MSBuildWorkspace.Create();
var solution = msWorkspace.OpenSolutionAsync(solutionPath).Result;

foreach (var project in solution.Projects.Where(p => p.AssemblyName.StartsWith("TestApp")))
{
var compilation = project.GetCompilationAsync().Result;
var interfaceType = compilation.GetTypeByMetadataName("TestApp.IIndexed");
var indexer = interfaceType
.GetMembers()
.OfType<IPropertySymbol>()
.First(member => member.IsIndexer);

var indexReferences = SymbolFinder.FindReferencesAsync(indexer, solution).Result.ToList();

foreach (var indexReference in indexReferences)
{
foreach (ReferenceLocation indexReferenceLocation in indexReference.Locations)
{
int spanStart = indexReferenceLocation.Location.SourceSpan.Start;
var doc = indexReferenceLocation.Document;

var indexerInvokation = doc.GetSyntaxRootAsync().Result
.DescendantNodes()
.FirstOrDefault(node => node.GetLocation().SourceSpan.Start == spanStart);

var className = indexerInvokation.Ancestors()
.OfType<ClassDeclarationSyntax>()
.FirstOrDefault()
?.Identifier.Text ?? String.Empty;

var @namespace = indexerInvokation.Ancestors()
.OfType<NamespaceDeclarationSyntax>()
.FirstOrDefault()
?.Name.ToString() ?? String.Empty;


Console.WriteLine($"{@namespace}.{className} : {indexerInvokation.GetText()}");
}
}
}

Console.WriteLine();
Console.ReadKey();

}
}
}

看看 var indexer = ... 代码——它从类型中提取索引器。也许您需要使用 getter\setter。

其他兴趣点:indexerInvokation 计算。我们经常获取 SyntaxRoot,也许您需要某种缓存。

下一步:类和命名空间搜索。我没有找到方法,但建议不要找到它:可以有属性、其他索引器、匿名方法使用你的索引器。如果您真的不关心这个 - 只需找到 MethodDeclarationSyntax 类型的祖先即可。

关于c# - 使用 Roslyn 在 Visual Studio 解决方案中查找所有引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46032472/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com