ConsumingAnnotations.rst 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. Working with the Annotation Manager
  2. ===================================
  3. .. note:: Some programmers learn best by seeing a practical example - if you belong to those who learn best by seeing
  4. things applied, you should start by taking a look at the :doc:`demo script <DemoScript>`, which provides
  5. a minimal, yet practical, real-world example of applying and consuming source code annotations.
  6. The annotation framework lives in the ``mindplay\annotations`` namespace, and the library
  7. of :doc:`standard annotations <AnnotationLibrary>` lives in the `mindplay\\annotations\\standard`_ namespace.
  8. The heart of the annotation framework is the `AnnotationManager`_ class, which provides the following functionality:
  9. * Inspecting (and filtering) annotations
  10. * Annotation registry and name-resolution
  11. * Caching annotations in the local filesystem (underneath the hood)
  12. Behind the scenes, the ``AnnotationManager`` relies on the `AnnotationParser`_ to perform the parsing and compilation
  13. of annotations into cacheable scripts.
  14. For convenience, a static (singleton) wrapper-class for the annotation manager is also available.
  15. This class is named `Annotations`_ - we will use it in the following examples.
  16. Loading and Importing
  17. ^^^^^^^^^^^^^^^^^^^^^
  18. Going into details about `autoloading`_ and `importing`_ the annotation classes is beyond the scope of this article.
  19. I will assume you are familiar with these language features, and in the following examples, it is implied that
  20. the static wrapper-class has been imported, e.g.:
  21. .. code-block:: php
  22. use mindplay\annotations\Annotations;
  23. Configuring the Annotation Manager
  24. ----------------------------------
  25. For convenience, the static ``Annotations`` class provides a public ``$config`` array - the keys in this array are
  26. applied the singleton ``AnnotationManager`` instance on first use, for example:
  27. .. code-block:: php
  28. Annotations::$config = array(
  29. 'cachePath' => sys_get_temp_dir()
  30. );
  31. In this example, when the ``AnnotationManager`` is initialized, the public ``$cachePath`` property is set to point
  32. to the local temp-dir on your system.
  33. Other configurable properties include:
  34. +------------------+----------+---------------+
  35. | Property | Type | Description |
  36. +==================+==========+===============+
  37. | ``$fileMode`` | int | … |
  38. +------------------+----------+---------------+
  39. | ``$autoload`` | bool | … |
  40. +------------------+----------+---------------+
  41. | ``$cachePath`` | string | … |
  42. +------------------+----------+---------------+
  43. | ``$cacheSeed`` | string | … |
  44. +------------------+----------+---------------+
  45. | ``$suffix`` | string | … |
  46. +------------------+----------+---------------+
  47. | ``$namespace`` | string | … |
  48. +------------------+----------+---------------+
  49. | ``$registry`` | array | … |
  50. +------------------+----------+---------------+
  51. The Annotation Registry
  52. -----------------------
  53. ...
  54. Inspecting Annotations
  55. ^^^^^^^^^^^^^^^^^^^^^^
  56. ...
  57. Annotation Name Resolution
  58. --------------------------
  59. ...
  60. Filtering Annotations
  61. ---------------------
  62. ...
  63. .. _mindplay\\annotations\\standard: https://github.com/php-annotations/php-annotations/tree/master/src/annotations/standard
  64. .. _AnnotationManager: https://github.com/php-annotations/php-annotations/blob/master/src/annotations/AnnotationManager.php
  65. .. _AnnotationParser: https://github.com/php-annotations/php-annotations/blob/master/src/annotations/AnnotationParser.php
  66. .. _Annotations: https://github.com/php-annotations/php-annotations/blob/master/src/annotations/Annotations.php
  67. .. _autoloading: http://php.net/manual/en/language.oop5.autoload.php
  68. .. _importing: http://php.net/manual/en/language.namespaces.importing.php