AOP

介绍

首先,你不要看到 AOP 就感觉好难好复杂,看下去其实也就那样。而且在 IMI 中你也不一定需要用到AOP,这是非必须的。

AOP 的概念通过搜索引擎一定是看烦了,而且看了也没什么大卵用,不贴近实际。

我先举个 AOP 实际应用的简单例子,比如在写一个方法的时候,可能要针对某个方法写前置和后置操作,传统写法如下:

  1. abstract class ParentClass
  2. {
  3. public function test()
  4. {
  5. $this->__beforeTest();
  6. // 做一些事情...
  7. echo 'Parent->test()', PHP_EOL;
  8. $this->__afterTest();
  9. }
  10. public abstract function __beforeTest();
  11. public abstract function __afterTest();
  12. }
  13. class Child extends ParentClass
  14. {
  15. public function __beforeTest()
  16. {
  17. echo 'Child->__beforeTest()', PHP_EOL;
  18. }
  19. public function __afterTest()
  20. {
  21. echo 'Child->__afterTest()', PHP_EOL;
  22. }
  23. }
  24. $child = new Child;
  25. $child->test();

运行结果:

  1. Child->__beforeTest()
  2. Parent->test()
  3. Child->__afterTest()

这种写法你需要事先定义好前置和后置方法,如果需要前后置的方法一多,写起来会非常繁琐。

AOP 可以很好地解决这个问题,不仅可以在编写上不用事先定义这么多方法,还非常有助于解耦。

AOP 名词

切面 Aspect

普通的类,你要切入的类。

切入点 Pointcut

普通类中的方法,你要切入的方法。

连接点 Joinpoint

在这个方法相关的什么时机触发通知,比如:调用的前置后置、抛出异常等。

通知 Advice

在连接点触发的通知,比如在前置操作触发,通知里写前置的具体实现。

IMI 支持的通知点有:

@Before

前置操作

@After

后置操作

@Around

环绕操作。先触发环绕操作,在前置操作前和后置操作后,都可以做一些事情。甚至可以完全不让原方法运行,在环绕中实现该方法功能。

@AfterReturning

在原方法返回后触发,可以修改返回值

@AfterThrowing

在抛出异常后触发,允许设置allowdeny,设置允许和拒绝捕获的异常类

使用方法

注解注入

监听池子的资源获取和释放:

  1. <?php
  2. namespace Test;
  3. use Imi\Aop\JoinPoint;
  4. use Imi\Aop\Annotation\After;
  5. use Imi\Aop\Annotation\Aspect;
  6. use Imi\Aop\Annotation\PointCut;
  7. /**
  8. * @Aspect
  9. */
  10. class Pool
  11. {
  12. /**
  13. * @PointCut(
  14. * allow={
  15. * "Imi\*Pool*::getResource",
  16. * "Imi\*Pool*::release",
  17. * }
  18. * )
  19. * @After
  20. * @param JoinPoint $a
  21. * @return void
  22. */
  23. public function test(JoinPoint $joinPoint)
  24. {
  25. echo $joinPoint->getType() . ' ' . get_parent_class($joinPoint->getTarget()) . '::' . $joinPoint->getMethod() . '(): ' . $joinPoint->getTarget()->getFree() . '/' . $joinPoint->getTarget()->getCount() . PHP_EOL;
  26. }
  27. }

运行效果:

  1. after Imi\Redis\CoroutineRedisPool::getResource(): 0/1
  2. after Imi\Redis\CoroutineRedisPool::release(): 1/1

类名、方法名和命名空间没有要求,只要beanScan里能扫描到即可。

类注释中必须写@Aspect表名是一个切面类

方法中写@PointCut表示指定切入点,支持通配符

@After代表在该方法调用后触发

配置注入

实现代码

  1. namespace Test;
  2. use Imi\Aop\JoinPoint;
  3. class Test
  4. {
  5. /**
  6. * @param JoinPoint $a
  7. * @return void
  8. */
  9. public function test(JoinPoint $joinPoint)
  10. {
  11. echo $joinPoint->getType() . ' ' . get_parent_class($joinPoint->getTarget()) . '::' . $joinPoint->getMethod() . '(): ' . $joinPoint->getTarget()->getFree() . '/' . $joinPoint->getTarget()->getCount() . PHP_EOL;
  12. }
  13. }

对类没有任何要求,方法只需要参数对即可。

配置

  1. <?php
  2. return [
  3. // 类名
  4. \Test\Test::class => [
  5. // 固定写法methods
  6. 'methods' => [
  7. // 方法名
  8. 'test' => [
  9. // 指定切入点
  10. 'pointCut' => [
  11. 'allow' => [
  12. "Imi\*Pool*::getResource",
  13. "Imi\*Pool*::release",
  14. ]
  15. ],
  16. 'after' => [
  17. ]
  18. ]
  19. ]
  20. ],
  21. ];

所有注入演示

  1. <?php
  2. namespace Test;
  3. use Imi\Aop\JoinPoint;
  4. use Imi\Aop\AroundJoinPoint;
  5. use Imi\Aop\Annotation\After;
  6. use Imi\Aop\Annotation\Around;
  7. use Imi\Aop\Annotation\Aspect;
  8. use Imi\Aop\Annotation\Before;
  9. use Imi\Aop\Annotation\PointCut;
  10. use Imi\Aop\AfterThrowingJoinPoint;
  11. use Imi\Aop\AfterReturningJoinPoint;
  12. use Imi\Aop\Annotation\AfterThrowing;
  13. use Imi\Aop\Annotation\AfterReturning;
  14. /**
  15. * @Aspect
  16. */
  17. class Test
  18. {
  19. /**
  20. * 前置操作
  21. * @PointCut(
  22. * allow={
  23. * "ImiDemo\HttpDemo\MainServer\Model\Goods::getScore",
  24. * }
  25. * )
  26. * @Before
  27. * @param JoinPoint $a
  28. * @return void
  29. */
  30. public function before(JoinPoint $joinPoint)
  31. {
  32. echo 'getScore()-before', PHP_EOL;
  33. }
  34. /**
  35. * 后置操作
  36. * @PointCut(
  37. * allow={
  38. * "ImiDemo\HttpDemo\MainServer\Model\Goods::getScore",
  39. * }
  40. * )
  41. * @After
  42. * @param JoinPoint $a
  43. * @return void
  44. */
  45. public function after(JoinPoint $joinPoint)
  46. {
  47. echo 'getScore()-after', PHP_EOL;
  48. }
  49. /**
  50. * 环绕
  51. * @PointCut(
  52. * allow={
  53. * "ImiDemo\HttpDemo\MainServer\Model\Goods::getScore1",
  54. * }
  55. * )
  56. * @Around
  57. * @return mixed
  58. */
  59. public function around(AroundJoinPoint $joinPoint)
  60. {
  61. var_dump('调用前');
  62. // 调用原方法,获取返回值
  63. $result = $joinPoint->proceed();
  64. var_dump('调用后');
  65. return 'value'; // 无视原方法调用后的返回值,强制返回一个其它值
  66. return $result; // 返回原方法返回值
  67. }
  68. /**
  69. * 返回值
  70. * @PointCut(
  71. * allow={
  72. * "ImiDemo\HttpDemo\MainServer\Model\Goods::getScore",
  73. * }
  74. * )
  75. * @AfterReturning
  76. * @param AfterReturningJoinPoint $joinPoint
  77. * @return void
  78. */
  79. public function afterReturning(AfterReturningJoinPoint $joinPoint)
  80. {
  81. $joinPoint->setReturnValue('修改返回值');
  82. }
  83. /**
  84. * 异常捕获
  85. * @PointCut(
  86. * allow={
  87. * "ImiDemo\HttpDemo\MainServer\Model\Goods::getScore",
  88. * }
  89. * )
  90. * @AfterThrowing
  91. * @param AfterThrowingJoinPoint $joinPoint
  92. * @return void
  93. */
  94. public function afterThrowing(AfterThrowingJoinPoint $joinPoint)
  95. {
  96. // 异常不会被继续抛出
  97. $joinPoint->cancelThrow();
  98. var_dump('异常捕获:' . $joinPoint->getThrowable()->getMessage());
  99. }
  100. }

属性注入

如下代码例子,定义一个类,使用@Inject注解来注释属性,在通过getBean()实例化时,会自动给被注释的属性赋值相应的实例对象。

  1. namespace Test;
  2. class TestClass
  3. {
  4. /**
  5. * 某Model对象
  6. * @Inject("XXX\Model\User")
  7. */
  8. protected $model;
  9. public function test()
  10. {
  11. var_dump($model->toArray());
  12. }
  13. }
  14. $testClass = App::getBean('Test\TestClass');
  15. $testClass->test();