30

我有一个现有的项目,我想找出所有正在拨打的电话,并可能转储到日志文件中。

我看了一下这个线程,但没有太大帮助。我试过 PostSharp,这个例子展示了如何实现它。但是我需要为每个该死的方法添加一个属性。作为一个现有的项目,有很多方法,这不是一个可行的选择。

是否有任何其他方法可以让我快速追踪所有拨打的电话?

4

3 回答 3

10

您可以使用Unity 拦截来做到这一点

有关示例,请参阅本文。本文使用属性,但我下面的代码示例使用依赖注入系统(编码到接口)来设置拦截。

如果你想登录MyClass,它是这样的:

  1. 创建一个包含MyClass=>中所有方法的接口IMyClass
  2. 您设置 InterfaceInterception (就像我在下面所做的那样)或者您可以通过其他一些方式来设置它。请参阅此处了解所有选项
  3. 您将设置一个策略来拦截所有匹配的方法IMatchingRule
  4. 现在,所有调用都将被您的ICallHandler实现拦截。

代码:

//You  will use the code like this:
MyContainer container = new MyContainer();
//setup interception for this type..
container.SetupForInteception(typeof(IMyClass));
 //what happens here is you get a proxy class 
 //that intercepts every method call.
IMyClass cls = container.Resolve<IMyClass>();

 //You need the following for it to work:   
public class MyContainer: UnityContainer
{
    public MyContainer()
    {
        this.AddNewExtension<Interception>();
        this.RegisterType(typeof(ICallHandler), 
                    typeof(LogCallHandler), "MyCallHandler");
        this.RegisterType(typeof(IMatchingRule), 
                       typeof(AnyMatchingRule), "AnyMatchingRule");

        this.RegisterType<IMyClass, MyClass>();
    }
    //apparently there is a new way to do this part
    // http://msdn.microsoft.com/en-us/library/ff660911%28PandP.20%29.aspx

    public void SetupForInteception(Type t)
    {
        this.Configure<Interception>()
        .SetInterceptorFor(t, new InterfaceInterceptor())
        .AddPolicy("LoggingPolicy")
        .AddMatchingRule("AnyMatchingRule")
        .AddCallHandler("MyCallHandler");

    }
}
//THIS will match which methods to log.
public class AnyMatchingRule : IMatchingRule
{
    public bool Matches(MethodBase member)
    {
        return true;//this ends up loggin ALL methods.
    }
}
public class LogCallHandler : ICallHandler
{
    public IMethodReturn 
             Invoke(IMethodInvocation input, GetNextHandlerDelegate getNext)
    {
      //All method calls will result in a call here FIRST.
      //IMethodInvocation has an exception property which will let you know
      //if an exception occurred during the method call.
    }
 }
于 2013-02-13T20:40:03.570 回答
6

在跟踪模式下使用 Profiler。然后你会看到一切是如何相互调用的,以及时间都花在了哪里。除了商业分析器,还有免费的。对于托管代码,NP Profiler非常好。

如果您想更深入地了解,可以使用Windows Performance Toolkit,它为您提供所有线程的完整信息,以及如果您想知道它们之间的交互方式。唯一的区别是您获得了从内核到托管帧的堆栈。

如果这还不够,您可以使用跟踪库(自动使用 PostSharp,...)或手动或使用每个源文件的宏来检测您的代码。我制作了一个非常快速且高度可配置的小型跟踪库。见这里。作为独特的功能,它可以自动跟踪任何抛出的异常。

private void SomeOtherMethod()
{
  using (Tracer t = new Tracer(myType, "SomeOtherMethod"))
  {
      FaultyMethod();
  }
}

private void FaultyMethod()
{
   throw new NotImplementedException("Hi this a fault");
}

输出如下:

    18:57:46.665  03064/05180 <{{         > ApiChange.IntegrationTests.Diagnostics.TracingTests.SomeMethod  
    18:57:46.668  03064/05180 <{{         > ApiChange.IntegrationTests.Diagnostics.TracingTests.SomeOtherMethod  
    18:57:46.670  03064/05180 <         }}< ApiChange.IntegrationTests.Diagnostics.TracingTests.SomeOtherMethod Exception thrown: System.NotImplementedException: Hi this a fault    
at ApiChange.IntegrationTests.Diagnostics.TracingTests.FaultyMethod()  
at ApiChange.IntegrationTests.Diagnostics.TracingTests.SomeOtherMethod()  
at ApiChange.IntegrationTests.Diagnostics.TracingTests.SomeMethod()    
at ApiChange.IntegrationTests.Diagnostics.TracingTests.Demo_Show_Leaving_Trace_With_Exception() 

18:57:46.670  03064/05180 <         }}< ApiChange.IntegrationTests.Diagnostics.TracingTests.SomeOtherMethod Duration 2ms 18:57:46.689  03064/05180 <         }}< ApiChange.IntegrationTests.Diagnostics.TracingTests.SomeMethod Duration 24ms
于 2013-02-13T21:06:45.723 回答
5

PostSharp 确实提供了一种将方面应用于多个目标的方法,而无需显式地用属性装饰它们。请参阅多播属性

在开发(多播)方面时,您必须指定其用法:

[MulticastAttributeUsage(MulticastTargets.Method, TargetMemberAttributes = MulticastAttributes.Instance)]
[AttributeUsage(AttributeTargets.Assembly|AttributeTargets.Class|AttributeTargets.Method, AllowMultiple = true)]
[Serializable]
public class TraceAttribute : MethodInterceptionAspect
{
// Details skipped.
}

然后以涵盖您的用例的方式应用方面(例如 AdventureWorks.BusinessLayer 命名空间中的所有公共成员):

[assembly: Trace( AttributeTargetTypes="AdventureWorks.BusinessLayer.*", AttributeTargetMemberAttributes = MulticastAttributes.Public )]
于 2013-02-13T21:33:03.813 回答