注解解析器(Annotations Parser)

Phalcon\Annotations <../api/Phalcon_Annotations&gt; 是一个通用组件,这是第一个为PHP用C语言写的注释解析器,为应用中的PHP类提供易于解析和缓存注释的功能。

注释内容是读自类,方法和属性的注释区域。一个注释单元可以放在注释区域的任何位置。

  1. <?php
  2.  
  3. /**
  4. * This is the class description
  5. *
  6. * @AmazingClass(true)
  7. */
  8. class Example
  9. {
  10. /**
  11. * This a property with a special feature
  12. *
  13. * @SpecialFeature
  14. */
  15. protected $someProperty;
  16.  
  17. /**
  18. * This is a method
  19. *
  20. * @SpecialFeature
  21. */
  22. public function someMethod()
  23. {
  24. // ...
  25. }
  26. }

在上面的例子中,我们发现注释块中除了注释单元,还可以有注释内容,一个注释单元语法如下:

  1. /**
  2. * @Annotation-Name
  3. * @Annotation-Name(param1, param2, ...)
  4. */

当然,一个注释单元可以放在注释内容里的任意位置:

  1. <?php
  2.  
  3. /**
  4. * This a property with a special feature
  5. *
  6. * @SpecialFeature
  7. *
  8. * More comments
  9. *
  10. * @AnotherSpecialFeature(true)
  11. */

这个解析器是高度灵活的,下面这样的注释单元是合法可解析的:

  1. <?php
  2.  
  3. /**
  4. * This a property with a special feature @SpecialFeature({
  5. someParameter="the value", false
  6.  
  7. }) More comments @AnotherSpecialFeature(true) @MoreAnnotations
  8. **/

然而,为了使代码更容易维护和理解,我们推荐把注释单元放在注释块的最后:

  1. <?php
  2.  
  3. /**
  4. * This a property with a special feature
  5. * More comments
  6. *
  7. * @SpecialFeature({someParameter="the value", false})
  8. * @AnotherSpecialFeature(true)
  9. */

读取注释(Reading Annotations)

实现反射器(Reflector)可以轻松获取被定义在类中的注释,使用一个面向对象的接口即可:

  1. <?php
  2.  
  3. use Phalcon\Annotations\Adapter\Memory as MemoryAdapter;
  4.  
  5. $reader = new MemoryAdapter();
  6.  
  7. // 反射在Example类的注释
  8. $reflector = $reader->get('Example');
  9.  
  10. // 读取类中注释块中的注释
  11. $annotations = $reflector->getClassAnnotations();
  12.  
  13. // 遍历注释
  14. foreach ($annotations as $annotation) {
  15.  
  16. // 打印注释名称
  17. echo $annotation->getName(), PHP_EOL;
  18.  
  19. // 打印注释参数个数
  20. echo $annotation->numberArguments(), PHP_EOL;
  21.  
  22. // 打印注释参数
  23. print_r($annotation->getArguments());
  24. }

虽然这个注释的读取过程是非常快速的,然而,出于性能原因,我们建议使用一个适配器储存解析后的注释内容。适配器把处理后的注释内容缓存起来,避免每次读取都需要解析一遍注释。

Phalcon\Annotations\Adapter\Memory 被用在上面的例子中。这个适配器只在请求过程中缓存注释(译者注:请求完成后缓存将被清空),因为这个原因,这个适配器非常适合用于开发环境中。当应用跑在生产环境中还有其他适配器可以替换。

注释类型(Types of Annotations)

注释单元可以有参数也可以没有。参数可以为简单的文字(strings, number, boolean, null),数组,哈希列表或者其他注释单元:

  1. <?php
  2.  
  3. /**
  4. * 简单的注释单元
  5. *
  6. * @SomeAnnotation
  7. */
  8.  
  9. /**
  10. * 带参数的注释单元
  11. *
  12. * @SomeAnnotation("hello", "world", 1, 2, 3, false, true)
  13. */
  14.  
  15. /**
  16. * 带名称限定参数的注释单元
  17. *
  18. * @SomeAnnotation(first="hello", second="world", third=1)
  19. * @SomeAnnotation(first: "hello", second: "world", third: 1)
  20. */
  21.  
  22. /**
  23. * 数组参数
  24. *
  25. * @SomeAnnotation([1, 2, 3, 4])
  26. * @SomeAnnotation({1, 2, 3, 4})
  27. */
  28.  
  29. /**
  30. * 哈希列表参数
  31. *
  32. * @SomeAnnotation({first=1, second=2, third=3})
  33. * @SomeAnnotation({'first'=1, 'second'=2, 'third'=3})
  34. * @SomeAnnotation({'first': 1, 'second': 2, 'third': 3})
  35. * @SomeAnnotation(['first': 1, 'second': 2, 'third': 3])
  36. */
  37.  
  38. /**
  39. * 嵌套数组/哈希列表
  40. *
  41. * @SomeAnnotation({"name"="SomeName", "other"={
  42. * "foo1": "bar1", "foo2": "bar2", {1, 2, 3},
  43. * }})
  44. */
  45.  
  46. /**
  47. * 嵌套注释单元
  48. *
  49. * @SomeAnnotation(first=@AnotherAnnotation(1, 2, 3))
  50. */

实际使用(Practical Usage)

接下来我们将解释PHP应用程序中的注释的一些实际的例子:

注释开启缓存(Cache Enabler with Annotations)

我们假设一下,假设我们接下来的控制器和开发者想要建一个插件,如果被执行的方法被标记为可缓存的话,这个插件可以自动开启缓存。首先,我们先注册这个插件到Dispatcher服务中,这样这个插件将被通知当控制器的路由被执行的时候:

  1. <?php
  2.  
  3. use Phalcon\Mvc\Dispatcher as MvcDispatcher;
  4. use Phalcon\Events\Manager as EventsManager;
  5.  
  6. $di['dispatcher'] = function () {
  7.  
  8. $eventsManager = new EventsManager();
  9.  
  10. // 添加插件到dispatch事件中
  11. $eventsManager->attach('dispatch', new CacheEnablerPlugin());
  12.  
  13. $dispatcher = new MvcDispatcher();
  14.  
  15. $dispatcher->setEventsManager($eventsManager);
  16.  
  17. return $dispatcher;
  18. };

CacheEnablerPlugin 这个插件拦截每一个被dispatcher执行的action,检查如果需要则启动缓存:

  1. <?php
  2.  
  3. use Phalcon\Events\Event;
  4. use Phalcon\Mvc\Dispatcher;
  5. use Phalcon\Mvc\User\Plugin;
  6.  
  7. /**
  8. * 为视图启动缓存,如果被执行的action带有@Cache 注释单元。
  9. */
  10. class CacheEnablerPlugin extends Plugin
  11. {
  12. /**
  13. * 这个事件在dispatcher中的每个路由被执行前执行
  14. */
  15. public function beforeExecuteRoute(Event $event, Dispatcher $dispatcher)
  16. {
  17. // 解析目前访问的控制的方法的注释
  18. $annotations = $this->annotations->getMethod(
  19. $dispatcher->getControllerClass(),
  20. $dispatcher->getActiveMethod()
  21. );
  22.  
  23. // 检查是否方法中带有注释名称‘Cache’的注释单元
  24. if ($annotations->has('Cache')) {
  25.  
  26. // 这个方法带有‘Cache’注释单元
  27. $annotation = $annotations->get('Cache');
  28.  
  29. // 获取注释单元的‘lifetime’参数
  30. $lifetime = $annotation->getNamedParameter('lifetime');
  31.  
  32. $options = array('lifetime' => $lifetime);
  33.  
  34. // 检查注释单元中是否有用户定义的‘key’参数
  35. if ($annotation->hasNamedParameter('key')) {
  36. $options['key'] = $annotation->getNamedParameter('key');
  37. }
  38.  
  39. // 为当前dispatcher访问的方法开启cache
  40. $this->view->cache($options);
  41. }
  42. }
  43. }

现在,我们可以使用注释单元在控制器中:

  1. <?php
  2.  
  3. use Phalcon\Mvc\Controller;
  4.  
  5. class NewsController extends Controller
  6. {
  7. public function indexAction()
  8. {
  9.  
  10. }
  11.  
  12. /**
  13. * This is a comment
  14. *
  15. * @Cache(lifetime=86400)
  16. */
  17. public function showAllAction()
  18. {
  19. $this->view->article = Articles::find();
  20. }
  21.  
  22. /**
  23. * This is a comment
  24. *
  25. * @Cache(key="my-key", lifetime=86400)
  26. */
  27. public function showAction($slug)
  28. {
  29. $this->view->article = Articles::findFirstByTitle($slug);
  30. }
  31. }

使用注解区分访问权限(Private/Public areas with Annotations)

You can use annotations to tell the ACL which controllers belong to the administrative areas:

  1. <?php
  2.  
  3. use Phalcon\Acl;
  4. use Phalcon\Acl\Role;
  5. use Phalcon\Acl\Resource;
  6. use Phalcon\Events\Event;
  7. use Phalcon\Mvc\User\Plugin;
  8. use Phalcon\Mvc\Dispatcher;
  9. use Phalcon\Acl\Adapter\Memory as AclList;
  10.  
  11. /**
  12. * SecurityAnnotationsPlugin
  13. *
  14. * This is the security plugin which controls that users only have access to the modules they're assigned to
  15. */
  16. class SecurityAnnotationsPlugin extends Plugin
  17. {
  18. /**
  19. * This action is executed before execute any action in the application
  20. *
  21. * @param Event $event
  22. * @param Dispatcher $dispatcher
  23. */
  24. public function beforeDispatch(Event $event, Dispatcher $dispatcher)
  25. {
  26. // Possible controller class name
  27. $controllerName = $dispatcher->getControllerClass();
  28.  
  29. // Possible method name
  30. $actionName = $dispatcher->getActiveMethod();
  31.  
  32. // Get annotations in the controller class
  33. $annotations = $this->annotations->get($controllerName);
  34.  
  35. // The controller is private?
  36. if ($annotations->getClassAnnotations()->has('Private')) {
  37.  
  38. // Check if the session variable is active?
  39. if (!$this->session->get('auth')) {
  40.  
  41. // The user is no logged redirect to login
  42. $dispatcher->forward(
  43. array(
  44. 'controller' => 'session',
  45. 'action' => 'login'
  46. )
  47. );
  48.  
  49. return false;
  50. }
  51. }
  52.  
  53. // Continue normally
  54. return true;
  55. }
  56. }

选择渲染模版(Choose the template to render)

在这个例子中,当方法被执行的时候,我们将使用注释单元去告诉:doc:Phalcon\Mvc\View <Phalcon_Mvc_View>,哪一个模板文件需要渲染:

  1. <?php
  2.  
  3. use Phalcon\Events\Event;
  4. use Phalcon\Mvc\User\Plugin;
  5. use Phalcon\Mvc\Dispatcher;
  6.  
  7. class ViewAnnotationsPlugin extends Plugin
  8. {
  9. /**
  10. * This action is executed before execute any action in the application
  11. *
  12. * @param Event $event
  13. * @param Dispatcher $dispatcher
  14. */
  15. public function beforeDispatch(Event $event, Dispatcher $dispatcher)
  16. {
  17. $controllerName = $dispatcher->getControllerClass();
  18. $actionName = $dispatcher->getActiveMethod();
  19. $annotations = $this->annotations->get($controllerName);
  20.  
  21. if ($annotations->getClassAnnotations()->has('View')) {
  22. $annotation = $annotations->get('View');
  23. $pick = $annotation->getNamedParameter('pick');
  24. if ($pick) {
  25. $this->view->pick($pick);
  26. }
  27. }
  28.  
  29. return true;
  30. }
  31. }

注释适配器(Annotations Adapters)

这些组件利用了适配器去缓存或者不缓存已经解析和处理过的注释内容,从而提升了性能或者为开发环境提供了开发/测试的适配器:

Name Description API
Memory 这个注释只缓存在内存中。当请求结束时缓存将被清空,每次请求都重新解析注释内容. 这个适配器适合用于开发环境中 Phalcon\Annotations\Adapter\Memory
Files 已解析和已处理的注释将被永久保存在PHP文件中提高性能。这个适配器必须和字节码缓存一起使用。 Phalcon\Annotations\Adapter\Files
APC 已解析和已处理的注释将永久保存在APC缓存中提升性能。 这是一个速度非常快的适配器。 Phalcon\Annotations\Adapter\Apc
XCache 已解析和已处理的注释将永久保存在XCache缓存中提升性能。这也是一个速度非常快的适配器。 Phalcon\Annotations\Adapter\Xcache
Cache 已解析和已处理的注释缓存在缓存组件中提升性能。 Phalcon\Annotations\Adapter\Cache

自定义适配器(Implementing your own adapters)

为了建立自己的注释适配器或者继承一个已存在的适配器,这个 Phalcon\Annotations\AdapterInterface 接口都必须实现。

外部资源(External Resources)

原文: http://www.myleftstudio.com/reference/annotations.html