溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#怎么實現AOP微型框架

發(fā)布時間:2021-07-16 11:05:33 來源:億速云 閱讀:160 作者:chen 欄目:編程語言

本篇內容介紹了“C#怎么實現AOP微型框架”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

在向大家詳細介紹C#實現AOP微型框架之前,首先讓大家了解下微型框架的.cs文件,然后全面介紹C#實現AOP微型框架。

在前面的系列文章中,我介紹了消息、代理與AOP的關系,這次將我自己用C#實現AOP微型框架拿出來和大家交流一下。

AOP的最基本功能就是實現特定的預處理和后處理,我通過代理讓C#實現AOP微型框架。先來看看構成此微型框架的.cs文件。

1.CommonDef.cs 用于定義最基本的AOP接口

  1. using System;  

  2. using System.Runtime.Remoting.Messaging ;  

  3.  

  4. namespace EnterpriseServerBase.Aop  

  5. {  

  6. /// <summary> 

  7. /// IAopOperator AOP操作符接口,包括前處理和后處理  

  8. /// 2005.04.12  

  9. /// </summary> 

  10. public interface IAopOperator  

  11. {  

  12. void PreProcess(IMessage requestMsg ) ;  

  13. void PostProcess(IMessage requestMsg ,IMessage Respond) ;  

  14. }  

  15.  

  16. /// <summary> 

  17. /// IAopProxyFactory 用于創(chuàng)建特定的Aop代理的實例,
    IAopProxyFactory的作用是使AopProxyAttribute獨立于具體的AOP代理類。  

  18. /// </summary> 

  19. public interface IAopProxyFactory  

  20. {  

  21. AopProxyBase CreateAopProxyInstance(MarshalByRefObject obj ,Type type) ;  

  22. }  

  23.  

2. AopProxyBase AOP代理的基類

所有自定義AOP代理類都從此類派生,覆寫IAopOperator接口,實現具體的前/后處理 。

  1. using System;  

  2. using System.Runtime.Remoting ;  

  3. using System.Runtime.Remoting.Proxies ;  

  4. using System.Runtime.Remoting.Messaging ;  

  5. using System.Runtime.Remoting.Services ;  

  6. using System.Runtime.Remoting.Activation ;  

  7.  

  8. namespace EnterpriseServerBase.Aop  

  9. {  

  10. /// <summary> 

  11. /// AopProxyBase 所有自定義AOP代理類都從此類派生,
    覆寫IAopOperator接口,實現具體的前/后處理 。  

  12. /// 2005.04.12  

  13. /// </summary> 

  14. public abstract class AopProxyBase : RealProxy ,IAopOperator  

  15. {  

  16. private readonly MarshalByRefObject target ; //默認透明代理  

  17.  

  18. public AopProxyBase(MarshalByRefObject obj ,Type type) :base(type)  

  19. {  

  20. this.target = obj ;  

  21. }  

  22.  

  23. #region Invoke  

  24. public override IMessage Invoke(IMessage msg)  

  25. {  

  26. bool useAspect = false ;  

  27. IMethodCallMessage call = (IMethodCallMessage)msg ;  

  28.  

  29. //查詢目標方法是否使用了啟用AOP的MethodAopSwitcherAttribute  

  30. foreach(Attribute attr in call.MethodBase.GetCustomAttributes(false))  

  31. {  

  32. MethodAopSwitcherAttribute mehodAopAttr = attr as MethodAopSwitcherAttribute ;  

  33. if(mehodAopAttr != null)  

  34. {  

  35. if(mehodAopAttr.UseAspect)  

  36. {  

  37. useAspect = true ;  

  38. break ;  

  39. }  

  40. }  

  41. }  

  42.  

  43. if(useAspect)  

  44. {  

  45. this.PreProcess(msg) ;  

  46. }  

  47.  

  48. //如果觸發(fā)的是構造函數,此時target的構建還未開始  

  49. IConstructionCallMessage ctor = call as IConstructionCallMessage ;  

  50. if(ctor != null)  

  51. {  

  52. //獲取***層的默認真實代理  

  53. RealProxy default_proxy = RemotingServices.GetRealProxy(this.target) ;  

  54.  

  55. default_proxy.InitializeServerObject(ctor) ;  

  56. MarshalByRefObject tp = (MarshalByRefObject)this.GetTransparentProxy() ; 

  57. //自定義的透明代理 this  

  58.  

  59. return EnterpriseServicesHelper.CreateConstructionReturnMessage(ctor,tp);  

  60. }  

  61.  

  62. IMethodReturnMessage result_msg = RemotingServices.ExecuteMessage(this.target ,call) ; 

  63. //將消息轉化為堆棧,并執(zhí)行目標方法,方法完成后,再將堆棧轉化為消息  

  64.  

  65. if(useAspect)  

  66. {  

  67. this.PostProcess(msg ,result_msg) ;  

  68. }  

  69.  

  70. return result_msg ;  

  71.  

  72. }  

  73. #endregion  

  74.  

  75. #region IAopOperator 成員  

  76.  

  77. public abstract void PreProcess(IMessage requestMsg) ;  

  78. public abstract void PostProcess(IMessage requestMsg, IMessage Respond) ;  

  79. #endregion  

  80. }  

“C#怎么實現AOP微型框架”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI