首页 > 开发 > 综合 > 正文

C# AOP微型框架实现(二)

2024-07-21 02:17:55
字体:
来源:转载
供稿:网友
 

3. aopproxyattribute  aop代理特性

/****************************** aopproxyattribute   ************************************

using system;
using system.runtime.remoting ;
using system.runtime.remoting.proxies ;


namespace enterpriseserverbase.aop
{
 /// <summary>
 /// aopproxyattribute
 /// aop代理特性,如果一个类想实现具体的aop,只要实现aopproxybase和iaopproxyfactory,然后加上该特性即可。
 /// 2005.04.11
 /// </summary>
 
 [attributeusage(attributetargets.class ,allowmultiple = false)]
 public class aopproxyattribute : proxyattribute
 {
  private iaopproxyfactory proxyfactory = null ;

  public aopproxyattribute(type factorytype)
  {
   this.proxyfactory = (iaopproxyfactory)activator.createinstance(factorytype) ;   
  }

  #region createinstance
  /// <summary>
  /// 获得目标对象的自定义透明代理
  /// </summary>
  public override marshalbyrefobject createinstance(type servertype)//servertype是被aopproxyattribute修饰的类
  {
   //未初始化的实例的默认透明代理
   marshalbyrefobject target =  base.createinstance (servertype); //得到位初始化的实例(ctor未执行)
   object[] args = {target ,servertype} ;
   //aopproxybase rp = (aopproxybase)activator.createinstance(this.realproxytype ,args) ; //activator.createinstance在调用ctor时通过了代理,所以此处将会失败
   
   //得到自定义的真实代理
   aopproxybase rp = this.proxyfactory.createaopproxyinstance(target ,servertype) ;//new aopcontrolproxy(target ,servertype) ;
   return (marshalbyrefobject)rp.gettransparentproxy() ;
  }
  #endregion
 }
}

4 .methodaopswitcherattribute.cs

/**************************** methodaopswitcherattribute.cs *************************

using system;

namespace enterpriseserverbase.aop
{
 /// <summary>
 /// methodaopswitcherattribute 用于决定一个被aopproxyattribute修饰的class的某个特定方法是否启用截获 。
 /// 创建原因:绝大多数时候我们只希望对某个类的一部分method而不是所有method使用截获。
 /// 使用方法:如果一个方法没有使用methodaopswitcherattribute特性或使用methodaopswitcherattribute(false)修饰,
 ///       都不会对其进行截获。只对使用了methodaopswitcherattribute(true)启用截获。
 /// 2005.05.11
 /// </summary>
 [attributeusage(attributetargets.method ,allowmultiple = false )]
 public class methodaopswitcherattribute : attribute
 {
  private bool useaspect = false ;

  public methodaopswitcherattribute(bool useaop)
  {   
   this.useaspect = useaop ;
  }

  public bool useaspect
  {
   get
   {
    return this.useaspect ;
   }
  }
 }
}



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表