DesignConsiderations.rst 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. Design considerations
  2. =====================
  3. This page will attempt to explain some of the design considerations behind this library.
  4. Feature Set
  5. ^^^^^^^^^^^
  6. The feature set was mainly referenced from languages with proven annotation support and established use of
  7. annotations - the primary inspiration was the .NET platform and Java.
  8. Other existing annotation-libraries for PHP were also referenced, for both good and evil:
  9. * The popular `Addendum`_ library brought some good ideas to the table, but adds unnecessary custom syntax and parses
  10. annotations at run-time.
  11. * Doctrine's `Annotations`_ library achieves a number of good things, but also adds unnecessary custom syntax.
  12. * The `Recess`_ framework has good support for annotations and relies on them to solve a number of interesting
  13. challenges in highly original ways, making it a great inspiration.
  14. * A proposed native `Class MetaData`_ extension to the PHP language: follows no existing standards, (incompatible with
  15. existing IDEs, documentation generators, existing practices and codebases); mixes `JSON`_, a data-serialization
  16. format, into PHP - I would welcome JSON support in PHP, but not solely for annotations, and it should not replace
  17. what can already be achieved with existing PHP language features.
  18. When held against the annotation feature-set of the C#/.NET or Java platforms, these implementations have some
  19. weak points:
  20. * These libraries use various custom, data-formats to initialize annotations - neglecting support for common language
  21. features, such as class-constants, static method calls and closures.
  22. * Support for inheritance is lacking, limited or incorrect in various ways - inheriting and overriding annotations is
  23. an absolute requirement.
  24. * Common constraints are unsupported or too simple - applicable member types, `cardinality`_ and inheritance
  25. constraints should be easy to specify, and must be consistently enforced.
  26. The absence of these features is what sparked the inception of this library.
  27. Syntax
  28. ^^^^^^
  29. The syntax is based on `PHP-DOC`_ annotations mixed with PHP standard `array`_ syntax.
  30. The decision to use PHP-DOC syntax was made primarily because PHP-DOC source code annotations are already very
  31. common in the PHP community, and well-established with good design-time support by many popular IDEs. Many types
  32. of useful standard PHP-DOC annotations can be inspected at run-time.
  33. Extending this syntax with standard PHP array syntax is practical for a number of reasons:
  34. * PHP array-syntax is already familiar to PHP developers, and naturally allows you to initialize annotation properties
  35. using PHP language constructs, including constants, anonymous functions (closures), static method-calls, etc.
  36. * It reduces the complexity of parsing, since PHP already knows how to parse arrays.
  37. * There is no compelling reason to introduce new syntax (and more complexity) to achieve something that is already
  38. supported by the language.
  39. Rather than attempting to reinvent (or having to forego) important aspects of existing language features, this library
  40. builds on existing PHP syntax, and existing establish conventions, as much as possible, introducing a minimal amount of
  41. new syntax. This makes it feel like a more natural extension to the language itself.
  42. API
  43. ^^^
  44. The API has two levels of public interfaces - an annotation-manager, which can be extended, if needed, and a simple
  45. static wrapper-class with static methods, mostly for convenience.
  46. Extending the `Reflection`_ API with annotation features might seem like a natural approach, since this is where you
  47. would find it on other platforms such as .NET. There are a couple of reasons why this is not necessary or practical:
  48. * PHP might very well add native support for annotations to the reflection classes someday - if (or when) that happens,
  49. we don't want our API to conflict with (or hide portions of) any eventual extensions to the native reflection API.
  50. * This library minimally relies on reflection itself.
  51. * There is nothing in particular to gain by mixing the annotation APIs with reflection in the first place.
  52. Freedom
  53. -------
  54. This library has no external dependencies on any non-standard PHP modules or third-party libraries.
  55. Annotation-types implement an interface - they do not need to extend a base-class, which enables it to fit into your
  56. existing class-hierarchies without requiring you to refactor your existing codebase.
  57. Performance
  58. ^^^^^^^^^^^
  59. From a performance-oriented perspective, a scripting language may not be a good choice for writing any kind of parser.
  60. Since some form of parsing is inevitable, the following design choices were made early on to minimize the overhead
  61. of using annotations:
  62. * The annotation-parser is only loaded as needed, e.g. after a change (invalidating the cache-file) is made to an
  63. inspected script-file.
  64. * The annotation-manager compiles (`JIT`_) and caches annotation data - the annotations from one PHP script file are
  65. written to one cache-file. This simple strategy results in one additional script being loaded, when a script is
  66. inspected for annotations.
  67. * Since the cache-file itself is a PHP script, the annotation library can take advantage of a `bytecode cache`_ for
  68. additional performance gains.
  69. In general, as much work as possible (or practical) is done at compile-time, minimizing the run-time overhead -
  70. no `tokenization`_ or parsing or is performed at run-time, except the first time a script is inspected.
  71. .. _Addendum: http://code.google.com/p/addendum/
  72. .. _Annotations: http://www.doctrine-project.org/projects/common/2.0/docs/reference/annotations/en
  73. .. _Recess: http://www.recessframework.org
  74. .. _Class MetaData: http://wiki.php.net/rfc/annotations
  75. .. _JSON: http://json.org/
  76. .. _cardinality: http://en.wiktionary.org/wiki/cardinality
  77. .. _PHP-DOC: http://www.phpdoc.org/
  78. .. _array: http://php.net/manual/en/language.types.array.php
  79. .. _Reflection: http://php.net/manual/en/book.reflection.php
  80. .. _JIT: http://en.wikipedia.org/wiki/Just-in-time_compilation
  81. .. _bytecode cache: http://en.wikipedia.org/wiki/PHP_accelerator
  82. .. _tokenization: http://php.net/manual/en/function.token-get-all.php