【问题标题】:Replacing a method node using Roslyn使用 Roslyn 替换方法节点
【发布时间】:2013-11-23 08:58:08
【问题描述】:

在探索 Roslyn 时,我整理了一个小应用程序,该应用程序应包含一个跟踪语句,作为 Visual Studio 解决方案中每个方法的第一个语句。我的代码有问题,只更新第一种方法。

未按预期工作的行用“TODO”注释标记。请指教。

我也欢迎可以创建更精简/可读解决方案的样式建议。

提前致谢。

...

    private void TraceBtn_Click(object sender, RoutedEventArgs e) {
        var myWorkSpace = new MyWorkspace("...Visual Studio 2012\Projects\Tests.sln"); 
        myWorkSpace.InjectTrace();
        myWorkSpace.ApplyChanges();
    }

...

using System;
using System.Linq;
using Roslyn.Compilers;
using Roslyn.Compilers.CSharp;
using Roslyn.Services;

namespace InjectTrace
{
    public class MyWorkspace
    {
    private string solutionFile;
    public string SolutionFile {
        get { return solutionFile; }
        set { 
            if (string.IsNullOrEmpty(value)) throw new Exception("Invalid Solution File");
            solutionFile = value;
        }
    }

    private IWorkspace loadedWorkSpace;
    public IWorkspace LoadedWorkSpace { get { return loadedWorkSpace; } }

    public ISolution CurrentSolution { get; private set; }
    public IProject CurrentProject { get; private set; }
    public IDocument CurrentDocument { get; private set; }
    public ISolution NewSolution { get; private set; }


    public MyWorkspace(string solutionFile) {
        this.SolutionFile = solutionFile;
        this.loadedWorkSpace = Workspace.LoadSolution(SolutionFile);
    }

    public void InjectTrace()
    {

        int projectCtr = 0;
        int documentsCtr = 0;
        int transformedMembers = 0;
        int transformedClasses = 0;
        this.CurrentSolution = this.LoadedWorkSpace.CurrentSolution;
        this.NewSolution = this.CurrentSolution;

        //For Each Project...
        foreach (var projectId in LoadedWorkSpace.CurrentSolution.ProjectIds)
        {
            CurrentProject = NewSolution.GetProject(projectId);

            //..for each Document in the Project..
            foreach (var docId in CurrentProject.DocumentIds)
            {
                CurrentDocument = NewSolution.GetDocument(docId);
                var docRoot = CurrentDocument.GetSyntaxRoot();
                var newDocRoot = docRoot;
                var classes = docRoot.DescendantNodes().OfType<ClassDeclarationSyntax>();
                IDocument newDocument = null;

                //..for each Class in the Document..
                foreach (var @class in classes) {
                    var methods = @class.Members.OfType<MethodDeclarationSyntax>();

                    //..for each Member in the Class..
                    foreach (var currMethod in methods) {
                        //..insert a Trace Statement
                        var newMethod = InsertTrace(currMethod);
                        transformedMembers++;
                        //TODO: PROBLEM IS HERE
                        newDocRoot = newDocRoot.ReplaceNode(currMethod, newMethod);                             
                    }
                    if (transformedMembers != 0) {
                        newDocument = CurrentDocument.UpdateSyntaxRoot(newDocRoot);
                        transformedMembers = 0;
                        transformedClasses++;
                    }
                }

                if (transformedClasses != 0) {
                    NewSolution = NewSolution.UpdateDocument(newDocument);
                    transformedClasses = 0;
                }

                documentsCtr++;

            }
            projectCtr++;
            if (projectCtr > 2) return;
        }
    }

    public MethodDeclarationSyntax InsertTrace(MethodDeclarationSyntax currMethod) {
        var traceText =
        @"System.Diagnostics.Trace.WriteLine(""Tracing: '" + currMethod.Ancestors().OfType<NamespaceDeclarationSyntax>().Single().Name + "." + currMethod.Identifier.ValueText + "'\");";
        var traceStatement = Syntax.ParseStatement(traceText);
        var bodyStatementsWithTrace = currMethod.Body.Statements.Insert(0, traceStatement);
        var newBody = currMethod.Body.Update(Syntax.Token(SyntaxKind.OpenBraceToken), bodyStatementsWithTrace,
                                            Syntax.Token(SyntaxKind.CloseBraceToken));
        var newMethod = currMethod.ReplaceNode(currMethod.Body, newBody);
        return newMethod;

    }

    public void ApplyChanges() {
        LoadedWorkSpace.ApplyChanges(CurrentSolution, NewSolution);
    }


}

}

【问题讨论】:

    标签: c# roslyn


    【解决方案1】:

    您的代码的根本问题是newDocRoot = newDocRoot.ReplaceNode(currMethod, newMethod); 以某种方式重建了代码的newDocRoot 内部表示,因此在其中找不到下一个currMethod 元素并且下一个ReplaceNode 调用将无济于事。这种情况类似于在其 foreach 循环中修改集合。

    解决方案是收集所有必要的更改并使用ReplaceNodes 方法立即应用它们。这实际上自然会导致代码的简化,因为我们不需要跟踪所有这些计数器。我们只需存储所有需要的转换并立即将它们应用于整个文档。

    更改后的工作代码:

    public void InjectTrace()
    {
        this.CurrentSolution = this.LoadedWorkSpace.CurrentSolution;
        this.NewSolution = this.CurrentSolution;
    
        //For Each Project...
        foreach (var projectId in LoadedWorkSpace.CurrentSolution.ProjectIds)
        {
            CurrentProject = NewSolution.GetProject(projectId);
            //..for each Document in the Project..
            foreach (var docId in CurrentProject.DocumentIds)
            {
                var dict = new Dictionary<CommonSyntaxNode, CommonSyntaxNode>();
                CurrentDocument = NewSolution.GetDocument(docId);
                var docRoot = CurrentDocument.GetSyntaxRoot();
                var classes = docRoot.DescendantNodes().OfType<ClassDeclarationSyntax>();
    
                //..for each Class in the Document..
                foreach (var @class in classes)
                {
                    var methods = @class.Members.OfType<MethodDeclarationSyntax>();
    
                    //..for each Member in the Class..
                    foreach (var currMethod in methods)
                    {
                        //..insert a Trace Statement
                        dict.Add(currMethod, InsertTrace(currMethod));
                    }
                }
    
                if (dict.Any())
                {
                    var newDocRoot = docRoot.ReplaceNodes(dict.Keys, (n1, n2) => dict[n1]);
                    var newDocument = CurrentDocument.UpdateSyntaxRoot(newDocRoot);
                    NewSolution = NewSolution.UpdateDocument(newDocument);
                }
            }
        }
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2017-04-23
      • 2015-09-27
      • 2021-11-08
      • 2019-03-05
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多