C#实现AOP微型框架基础分析

开发 后端
这里介绍C#实现AOP微型框架,AOP的最基本功能就是实现特定的预处理和后处理,我通过代理让C#实现AOP微型框架。先来看看构成此微型框架的.cs文件。

在向大家详细介绍C#实现AOP微型框架之前,首先让大家了解下微型框架的.cs文件,然后全面介绍C#实现AOP微型框架。

在前面的系列文章中,我介绍了消息、代理与AOP的关系,这次将我自己用C#实现AOP微型框架拿出来和大家交流一下。

AOP的最基本功能就是实现特定的预处理和后处理,我通过代理让C#实现AOP微型框架。先来看看构成此微型框架的.cs文件。

1. AopProxyAttribute AOP代理特性

  1. using System;  
  2. using System.Runtime.Remoting ;  
  3. using System.Runtime.Remoting.Proxies ;  
  4.  
  5.  
  6. namespace EnterpriseServerBase.Aop  
  7. {  
  8. /// <summary> 
  9. /// AopProxyAttribute  
  10. /// AOP代理特性,如果一个类想实现具体的AOP,
    只要实现AopProxyBase和IAopProxyFactory,然后加上该特性即可。  
  11. /// 2005.04.11  
  12. /// </summary> 
  13.  
  14. [AttributeUsage(AttributeTargets.Class ,AllowMultiple = false)]  
  15. public class AopProxyAttribute : ProxyAttribute  
  16. {  
  17. private IAopProxyFactory proxyFactory = null ;  
  18.  
  19. public AopProxyAttribute(Type factoryType)  
  20. {  
  21. this.proxyFactory = (IAopProxyFactory)Activator.CreateInstance(factoryType) ;  
  22. }  
  23.  
  24. #region CreateInstance  
  25. /// <summary> 
  26. /// 获得目标对象的自定义透明代理  
  27. /// </summary> 
  28. public override MarshalByRefObject CreateInstance(Type serverType)
  29. //serverType是被AopProxyAttribute修饰的类  
  30. {  
  31. //未初始化的实例的默认透明代理  
  32. MarshalByRefObject target = base.CreateInstance (serverType);
  33. //得到位初始化的实例(ctor未执行)  
  34. object[] args = {target ,serverType} ;  
  35. //AopProxyBase rp = (AopProxyBase)Activator.CreateInstance(this.realProxyType ,args) ; 
  36. //Activator.CreateInstance在调用ctor时通过了代理,所以此处将会失败  
  37.  
  38. //得到自定义的真实代理  
  39. AopProxyBase rp = this.proxyFactory.CreateAopProxyInstance(target ,serverType) ;
  40. //new AopControlProxy(target ,serverType) ;  
  41. return (MarshalByRefObject)rp.GetTransparentProxy() ;  
  42. }  
  43. #endregion  
  44. }  

2 .MethodAopSwitcherAttribute.cs

  1. using System;  
  2.  
  3. namespace EnterpriseServerBase.Aop  
  4. {  
  5. /// <summary> 
  6. /// MethodAopSwitcherAttribute 
    用于决定一个被AopProxyAttribute修饰的class的某个特定方法是否启用截获 。  
  7. /// 创建原因:绝大多数时候我们只希望对某个类的一部分Method而不是所有Method使用截获。  
  8. /// 使用方法:如果一个方法没有使用MethodAopSwitcherAttribute
    特性或使用MethodAopSwitcherAttribute(false)修饰,  
  9. ///  都不会对其进行截获。只对使用了MethodAopSwitcherAttribute(true)启用截获。  
  10. /// 2005.05.11  
  11. /// </summary> 
  12. [AttributeUsage(AttributeTargets.Method ,AllowMultiple = false )]  
  13. public class MethodAopSwitcherAttribute : Attribute  
  14. {  
  15. private bool useAspect = false ;  
  16.  
  17. public MethodAopSwitcherAttribute(bool useAop)  
  18. {  
  19. this.useAspect = useAop ;  
  20. }  
  21.  
  22. public bool UseAspect  
  23. {  
  24. get  
  25. {  
  26. return this.useAspect ;  
  27. }  
  28. }  
  29. }  

【编辑推荐】

  1. C#创建表单简单介绍
  2. C#修改DataReader默认行为
  3. C#设置CooperativeLevel概述
  4. C#表单增加控件简单描述
  5. C# EmployeePlug类概述
责任编辑:佚名 来源: 博客园
相关推荐

2009-09-03 15:03:27

C#实现AOP微型框架

2011-09-15 10:15:30

Spring

2009-09-03 16:17:12

C#操纵系统菜单

2024-06-20 09:58:19

C#Attribute元数据机制

2009-08-28 15:19:17

C#实现缩略图

2009-09-02 18:03:19

C#实现泛型类

2009-08-27 11:43:31

C#语法

2009-08-13 18:02:50

C#基础概念

2020-08-17 08:20:16

iOSAOP框架

2009-08-26 10:34:59

C# Hashtabl

2009-08-27 13:27:50

C# this保留字

2009-09-01 09:16:57

C#使用SharpZi

2009-08-26 16:46:06

C# ThreadSt

2009-08-19 11:21:02

C# ListBox控

2011-04-22 09:14:26

C#委托

2009-08-13 12:50:45

C#基础知识

2009-08-13 16:13:03

C#基础知识

2009-09-17 17:44:51

C#动态数组

2009-09-03 17:21:51

C# VSProjec

2009-09-03 16:51:27

C#类属性
点赞
收藏

51CTO技术栈公众号