zoukankan      html  css  js  c++  java
  • Teddy's Aspect Weaver Version 0.3 with Great Updating and Fixing, Especially the Implementing of Getting Runtime Method Context Info and Method Arguments in MSIL Level

    [More about Teddy's Aspect Weaver]

    Teddy's Aspect Weaver Version 0.3 [Updated: 2005/09/27]

    Changes:
      - Add the geting context info and getting context arguments ability
      - Fix some internal XPath bugs
      - Fix BeforeConstructorCall/BeforeMethodCall bugs
      - Fix the ILML Library parsing method parameter name bug
      - Add the object instance in aspect local stack ability, which means you can new any object in aspect code only if the type of you object is defined or can be referenced in the base assembly
      - Move assembly AspectWeaver.Attributes code to assembly AspectWeaver.Aspects

    Sample of Getting Runtime Method Context Info and Method Arguments

    Configuration

    <?xml version="1.0" encoding="utf-8" ?> 
    <Configuration logFile="LogWeaving.xml" cleanTempFiles="false">
        
    <BaseAssembly>..\TestLib\bin\Debug\TestLib.dll</BaseAssembly>
        
    <OutputAssembly>..\TestLib\bin\Debug\TestLib_output.dll</OutputAssembly>
        
    <AspectAssemblies>
            
    <AspectAssembly uniqueName="TestAspectLib.dll" path="bin\Debug\TestAspectLib.dll" />
        
    </AspectAssemblies>
        
    <AdviceFiles>
            
    <AdviceFile>Advice-Test.xml</AdviceFile>
        
    </AdviceFiles>
    </Configuration>

    TestClass.cs

    using System;

    namespace TestLib
    {
        
    public class TestClass
        
    {
            
    public void MethodToBeTestedGetContextInfoAndGetArgumments(object p1, string p2, int p3)
            
    {
            }


            
    public void MethodToTestGetContextInfoAndGetArgumments()
            
    {
                MethodToBeTestedGetContextInfoAndGetArgumments(
    "p1""p2", 3);
            }

        }

    }

    TestAspectClass.cs

    using System;
    using System.Reflection;
    using AspectWeaver.Aspects;

    namespace TestAspectLib
    {
        
    public class TestAspectClass : Aspect
        
    {
            [InlineAtStart(
    "//Method[@name='MethodToBeTestedGetContextInfoAndGetArgumments']")]
            
    public void CodeToTestGetContextInfoAndGetArgumments()
            
    {
                MethodBase contextInfo 
    = GetContextInfo();
                Console.Write(contextInfo.ReflectedType.FullName 
    + "::" + contextInfo.Name + "\n\n");
                
    object[] args = GetArguments();
                Console.Write(
    string.Format("Arguments: {0}, {1}, {2}\n\n", args));
            }

        }

    }

    After Weaving Code (decompiled)

      public class TestClass
      
    {
        
    public void MethodToBeTestedGetContextInfoAndGetArgumments(object p1, string p2, int p3)
        
    {
          MethodBase methodBase 
    = base.GetType().GetMethod("MethodToBeTestedGetContextInfoAndGetArgumments");
          Console.Write(String.Concat(methodBase.ReflectedType.FullName, 
    "::", methodBase.Name, "\n\n"));
          
    object[] locals = new object[]{p1, p2, p3};
          Console.Write(String.Format(
    "Arguments: {0}, {1}, {2}\n\n", locals));
        }


        
    public void MethodToTestGetContextInfoAndGetArgumments()
        
    {
          MethodToBeTestedGetContextInfoAndGetArgumments("p1""p2", 3);
        }

      }

    Description

    In the sample, we can see, if you call the GetContextInfo() and GetArguments() from aspect classes which inherited from AspectWeaver.Aspects.Aspect which defined the two methods, the weaved code be translated to local reflection code, no additional dependence. But it is interesting that in fact, there are not any code in the two methods' body at all. Do you know why? :^)

    Download Source Code

    AspectWeaver0.5.zip

     

  • 相关阅读:
    第一次博客作业
    201771010110孔维滢《面向对象程序设计(java)》第二周学习总结
    孔维滢201771010110《面向对象程序设计(java)》第一周学习总结
    2018-2019-1 20165230《信息安全系统设计基础》第二周学习总结
    # 2018-2019-1 20165230 《信息安全系统设计基础》第三周学习总结
    20165230 获奖感想与学习心得
    20165230 2017-2018-2《Java程序设计》课程总结
    20165230 《Java程序设计》实验五《网络编程与安全》实验报告
    20165230 《Java程序设计》实验四 Android程序设计实验报告
    20165230 《Java程序设计》实验三 敏捷开发与XP实践 实验报告
  • 原文地址:https://www.cnblogs.com/teddyma/p/244915.html
Copyright © 2011-2022 走看看