我使用.NET编译器API在Roslyn中编写一些代码分析器/代码修复程序。我希望代码修复转换以下代码:
string.Format("{0} {1}", A, B)
要
StringExtensions.SafeJoin(" ", A, B)
到目前为止,我有这段代码:
private async Task<Document> UseJoinAsync(Document document, InvocationExpressionSyntax invocationExpr, CancellationToken cancellationToken)
{
var argumentList = invocationExpr.ArgumentList;
var firstArgument = argumentList.Arguments[1];
var secondArgument = argumentList.Arguments[2];
var statement =
InvocationExpression(
MemberAccessExpression(
SyntaxKind.SimpleMemberAccessExpression,
IdentifierName("StringExtensions"), // requires using Trilogy.Miscellaneous
IdentifierName("SafeJoin")))
.WithArgumentList(
ArgumentList(
SeparatedList<ArgumentSyntax>(
new SyntaxNodeOrToken[]
{
Argument(
LiteralExpression(
SyntaxKind.StringLiteralExpression,
Literal(" "))),
Token(SyntaxKind.CommaToken),
firstArgument,
Token(SyntaxKind.CommaToken),
secondArgument
}))).WithLeadingTrivia(invocationExpr.GetLeadingTrivia()).WithTrailingTrivia(invocationExpr.GetTrailingTrivia())
.WithAdditionalAnnotations(Formatter.Annotation);
var root = await document.GetSyntaxRootAsync(cancellationToken);
var newRoot = root.ReplaceNode(invocationExpr, statement);
var newDocument = document.WithSyntaxRoot(newRoot);
return newDocument;
}
但是,我有两个悬而未决的问题:
1)如何将所需的using Trilogy.Miscellaneous
添加到文件的顶部。
和
2)如何检测我的项目是否引用了所需的程序集。在这种情况下,如果我的程序集Trilogy.Common
未被引用,我将不提供代码修复,或者我会建议string.Join(" ", A, B)
而不是我自己的SafeJoin
实现。
更新
我通过更新我的代码解决了#1 ......
var newRoot = root.ReplaceNode(invocationExpr, statement);
// Iterate through our usings to see if we've got what we need...
if (root?.Usings.Any(u => u.Name.ToString() == "Trilogy.Miscellaneous") == false)
{
// Create and add the using statement...
var usingStatement = UsingDirective(QualifiedName(IdentifierName("Trilogy"), IdentifierName("Miscellaneous")));
newRoot = newRoot.AddUsings(usingStatement);
}
var newDocument = document.WithSyntaxRoot(newRoot);
return newDocument;
仍希望对第2项有所帮助。
答案 0 :(得分:0)
我最终在RegisterCodeFixesAsync方法中添加了一些代码。我觉得我所需组装的测试有点像黑客,所以如果有人发帖,我会接受更好的答案。
public sealed override async Task RegisterCodeFixesAsync(CodeFixContext context)
{
var root = await context.Document.GetSyntaxRootAsync(context.CancellationToken).ConfigureAwait(false);
var diagnostic = context.Diagnostics.First();
var diagnosticSpan = diagnostic.Location.SourceSpan;
// Find the type invocation expression identified by the diagnostic.
var invocationExpr = root.FindToken(
diagnosticSpan.Start).Parent.AncestorsAndSelf()
.OfType<InvocationExpressionSyntax>().First();
// Get the symantec model from the document
var semanticModel = await context.Document.GetSemanticModelAsync(context.CancellationToken).ConfigureAwait(false);
// Check for the assembly we need. I suspect there is a better way...
var hasAssembly = semanticModel.Compilation.ExternalReferences.Any(er => er.Properties.Kind == MetadataImageKind.Assembly && er.Display.EndsWith("Trilogy.Common.dll"));
// Register a code action that will invoke the fix, but only
// if we have the assembly that we need
if (hasAssembly)
context.RegisterCodeFix(
CodeAction.Create(title, c => UseJoinAsync(
context.Document, invocationExpr, c), equivalenceKey: title), diagnostic);
}