AOP

定义:在软件业,AOP为Aspect Oriented Programming的缩写,意为:面向切面编程,通过预编译方式和运行期间动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。

我的认为就是,在不更改原本核心业务的情况下,对原有的业务添加一些通用功能,这种形式的实现就是AOP。

实现

在C#中,实现AOP的方式有很多种,而在学习的时候,我们重点了解用装饰器模式、代理模式、.net内置的与第三方的AOP实现形式。接下来就一一观察他们的不同,并分析优缺点,最终选择更好扩展的、更通用的一个封装AOP的形式,在工作中熟练掌握。

在所有的实现中都会用到user实体类:

  1. namespace _13_AOP
  2. {
  3. /// <summary>
  4. /// 实体类
  5. /// </summary>
  6. public class User
  7. {
  8. public int Id { get; set; }
  9. public string Name { get; set; }
  10. }
  11. }

装饰器模式实现AOP

装饰器模式的本质就是在不修改原有功能的情况下,为原有的功能动态的添加一些扩展功能。而用装饰模式来实现AOP是适合的。

代码实现

  1. namespace _13_AOP.DecoratorForAOP
  2. {
  3. /// <summary>
  4. /// IUserProcessor接口,提供核心功能规约
  5. /// </summary>
  6. interface IUserProcessor
  7. {
  8. void Register(User user);
  9. }
  10. }
  1. namespace _13_AOP.DecoratorForAOP
  2. {
  3. /// <summary>
  4. /// 实现IUserProcessor接口
  5. /// </summary>
  6. class UserProcessor : IUserProcessor
  7. {
  8. public void Register(User user)
  9. {
  10. Console.WriteLine("完成对用户的注册!!!");
  11. }
  12. }
  13. }
  1. namespace _13_AOP.DecoratorForAOP
  2. {
  3. /// <summary>
  4. /// 对UserProcessor的装饰类
  5. /// </summary>
  6. class UserProcessorDecorator : IUserProcessor
  7. {
  8. public IUserProcessor IUser { get; set; }
  9. // 装饰器模式不提供被装饰类的构造,需要在使用的时候动态传递
  10. public UserProcessorDecorator(IUserProcessor userprocessor)
  11. {
  12. this.IUser = userprocessor;
  13. }
  14. /// <summary>
  15. /// 为方法中调用被装饰的类方法,并完成在方法之前与之后的扩展
  16. /// </summary>
  17. /// <param name="user"></param>
  18. public void Register(User user)
  19. {
  20. BeforMethord();
  21. this.IUser.Register(user);
  22. AfterMethord();
  23. }
  24. public void BeforMethord()
  25. {
  26. Console.WriteLine("方法之前的公共逻辑");
  27. }
  28. public void AfterMethord()
  29. {
  30. Console.WriteLine("方法之后的公共逻辑");
  31. }
  32. }
  33. }
  1. namespace _13_AOP
  2. {
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. User user = new User();
  8. user.Id = 5;
  9. Console.WriteLine("---------------代理模式静态AOP-----------------");
  10. {
  11. // 静态AOP,实则是装饰器模式
  12. DecoratorForAOP.IUserProcessor userProcessor = new UserProcessorDecorator(new DecoratorForAOP.UserProcessor());
  13. userProcessor.Register(user);
  14. }
  15. }
  16. }
  17. }
  1. ---------------代理模式静态AOP-----------------
  2. 方法之前的公共逻辑
  3. 完成对用户的注册!!!
  4. 方法之后的公共逻辑

介绍

用装饰器模式来实现AOP无疑是可行的,但是不是可用的。在业务功能繁多的情况下,用装饰器模式实现AOP会产生很多子类。这也是装饰器模式的缺点。如果过度使用,会使系统变的很复杂。

.net框架内置代理模式实现AOP

代理模式和装饰器模式很像,为了对原有业务扩展功能,用代理模式完全可以,甚至更好。因为他屏蔽了原本的核心业务功能的创建过程。

代码实现

  1. namespace _13_AOP.ProxyForAOP
  2. {
  3. // 真实业务类,因为使用了框架,所以被代理的类必须继承MarshalByRefObject
  4. class UserProcessor : MarshalByRefObject
  5. {
  6. public void Register(User user)
  7. {
  8. Console.WriteLine("完成对用户的注册!!!");
  9. }
  10. }
  11. }
  1. namespace _13_AOP.ProxyForAOP
  2. {
  3. /// <summary>
  4. /// 要实现动态代理,这里需要是泛型,且需要继承框架提供的RealProxy类,这个类提供了代理的基本功能
  5. /// </summary>
  6. /// <typeparam name="T"></typeparam>
  7. class MyRealProxy<T> : RealProxy
  8. {
  9. private T tTarget;
  10. public MyRealProxy(T target) : base(typeof(T))
  11. {
  12. this.tTarget = target;
  13. }
  14. public override IMessage Invoke(IMessage msg)
  15. {
  16. // 前置方法
  17. BeforeMethod(msg);
  18. IMethodCallMessage message = (IMethodCallMessage)msg;
  19. object returnValue = message.MethodBase.Invoke(this.tTarget, message.Args);
  20. // 后置方法
  21. AfterMethod(msg);
  22. return new ReturnMessage(returnValue, new object[0], 0, null, message);
  23. }
  24. public void BeforeMethod(IMessage message)
  25. {
  26. Console.WriteLine("调用前");
  27. }
  28. public void AfterMethod(IMessage message)
  29. {
  30. Console.WriteLine("调用后");
  31. }
  32. }
  33. }
  1. namespace _13_AOP.ProxyForAOP
  2. {
  3. /// <summary>
  4. /// 透明代理,对代理的创建
  5. /// </summary>
  6. public static class TransparentProxy
  7. {
  8. public static T Create<T>()
  9. {
  10. T instance = Activator.CreateInstance<T>();
  11. MyRealProxy<T> realProxy = new MyRealProxy<T>(instance);
  12. T t = (T)realProxy.GetTransparentProxy();
  13. return t;
  14. }
  15. }
  16. }
  1. namespace _13_AOP
  2. {
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. User user = new User();
  8. user.Id = 5;
  9. Console.WriteLine("---------------动态代理AOP-----------------");
  10. {
  11. ProxyForAOP.UserProcessor userProcessor = TransparentProxy.Create<ProxyForAOP.UserProcessor>();
  12. userProcessor.Register(user);
  13. }
  14. }
  15. }
  16. }
  1. ---------------动态代理AOP-----------------
  2. 调用前
  3. 完成对用户的注册!!!
  4. 调用后

介绍

这里用代理模式升级扩展的动态代理实现了AOP,用泛型+代理模式实现了对代理模式的扩展。这种可以针对所有的业务添加某种特定的公共功能。可以在工作中使用(但是需要手动调用,不是很方便,有更好的)。

第三方Castle代理实现AOP

需要引用第三方包:Castle.Core

代码实现

  1. namespace _13_AOP.CastleForAOP
  2. {
  3. /// <summary>
  4. /// 核心业务类,用castle来代理的类必须是公开可访问的
  5. /// </summary>
  6. public class UserProcessor
  7. {
  8. /// <summary>
  9. /// 被代理的业务方法必须是virtual修饰的,否则无法完成扩展功能
  10. /// </summary>
  11. /// <param name="user"></param>
  12. public virtual void Register(User user)
  13. {
  14. Console.WriteLine("完成对用户的注册!!!");
  15. }
  16. }
  17. }
  1. namespace _13_AOP.CastleForAOP
  2. {
  3. class MyCastleAOP : IInterceptor
  4. {
  5. public void Intercept(IInvocation invocation)
  6. {
  7. BeforeMethod(invocation);
  8. invocation.Proceed();
  9. AfterMethod(invocation);
  10. }
  11. public void BeforeMethod(IInvocation invocation)
  12. {
  13. Console.WriteLine("调用前");
  14. }
  15. public void AfterMethod(IInvocation invocation)
  16. {
  17. Console.WriteLine("调用后");
  18. }
  19. }
  20. }
  1. namespace _13_AOP
  2. {
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. User user = new User();
  8. user.Id = 5;
  9. Console.WriteLine("---------------Castle代理AOP-----------------");
  10. {
  11. // 框架的类,必须实现依赖。
  12. ProxyGenerator proxyGenerator = new ProxyGenerator();
  13. MyCastleAOP myCastleAOP = new MyCastleAOP();
  14. CastleForAOP.UserProcessor userProcessor = proxyGenerator.CreateClassProxy<CastleForAOP.UserProcessor>(myCastleAOP);
  15. userProcessor.Register(user);
  16. }
  17. }
  18. }
  19. }
  1. ---------------Castle代理AOP-----------------
  2. 调用前
  3. 完成对用户的注册!!!
  4. 调用后

介绍

实现起来很简单,调用起来复杂。但是可以使用,比较方便。

第三方Unity容器代理实现AOP

需要引用第三方包:Unity

代码实现

  1. namespace _13_AOP.UnityForAOP
  2. {
  3. /// <summary>
  4. /// 提供user接口,提供核心功能规约,接口必须是public的
  5. /// </summary>
  6. [UserHandler(Order = 1)]
  7. public interface IUserBusiness
  8. {
  9. void Register(User user);
  10. }
  11. }
  1. namespace _13_AOP.UnityForAOP
  2. {
  3. /// <summary>
  4. /// 实现核心业务,完成对业务的实现
  5. /// </summary>
  6. public class UserBusiness : IUserBusiness
  7. {
  8. public void Register(User user)
  9. {
  10. Console.WriteLine("完成对用户的注册!!!");
  11. }
  12. }
  13. }
  1. namespace _13_AOP.UnityForAOP.Properties
  2. {
  3. public class UserHandler : ICallHandler
  4. {
  5. public int Order { get; set; }
  6. public IMethodReturn Invoke(IMethodInvocation input, GetNextHandlerDelegate getNext)
  7. {
  8. _13_AOP.User user = input.Inputs[0] as _13_AOP.User;
  9. if (user.Id<5)
  10. {
  11. return input.CreateExceptionMethodReturn(new System.Exception("Id不能小于5!!!"));
  12. }
  13. System.Console.WriteLine("参数检查无误");
  14. // 委托的调用方式
  15. IMethodReturn methodReturn = getNext()(input, getNext);
  16. return methodReturn;
  17. }
  18. }
  19. }
  1. namespace _13_AOP.UnityForAOP.Properties
  2. {
  3. public class UserHandlerAttribute : HandlerAttribute
  4. {
  5. public override ICallHandler CreateHandler(IUnityContainer container)
  6. {
  7. ICallHandler callHandler = new UserHandler()
  8. {
  9. Order = this.Order
  10. };
  11. return callHandler;
  12. }
  13. }
  14. }
  1. namespace _13_AOP
  2. {
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. User user = new User();
  8. user.Id = 5;
  9. Console.WriteLine("---------------Unity代理AOP-----------------");
  10. {
  11. // 声明一个容器并注册服务
  12. IUnityContainer container = new UnityContainer();
  13. container.RegisterType<IUserBusiness, UserBusiness>();
  14. IUserBusiness userProcessor = container.Resolve<IUserBusiness>();
  15. // 服务调用
  16. userProcessor.Register(user);
  17. // 为容器添加代理扩展
  18. container.AddNewExtension<Interception>();
  19. // 注册代理服务
  20. container.RegisterType<IUserBusiness, UserBusiness>().Configure<Interception>().SetInterceptorFor<IUserBusiness>(new InterfaceInterceptor());
  21. IUserBusiness Processor = container.Resolve<IUserBusiness>();
  22. Processor.Register(user);
  23. }
  24. }
  25. }
  26. }
  1. ---------------Unity代理AOP-----------------
  2. 完成对用户的注册!!!
  3. 参数检查无误
  4. 完成对用户的注册!!!

介绍

这是最经常使用的,通过特性的方式为业务动态的添加一些通用功能。

ASP.NET MVC中过滤器实现AOP

在MVC中重点讲解,主要是通过特性+反射+统一入口来实现的。不多做介绍。