AnsiQuoteStrategy.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. /*
  3. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  4. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  5. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  6. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  7. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  8. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  9. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  10. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  11. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  12. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  13. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  14. *
  15. * This software consists of voluntary contributions made by many individuals
  16. * and is licensed under the MIT license. For more information, see
  17. * <http://www.doctrine-project.org>.
  18. */
  19. namespace Doctrine\ORM\Mapping;
  20. use Doctrine\ORM\Mapping\ClassMetadata;
  21. use Doctrine\DBAL\Platforms\AbstractPlatform;
  22. /**
  23. * ANSI compliant quote strategy, this strategy does not apply any quote.
  24. * To use this strategy all mapped tables and columns should be ANSI compliant.
  25. *
  26. * @since 2.5
  27. * @author Fabio B. Silva <fabio.bat.silva@gmail.com>
  28. */
  29. class AnsiQuoteStrategy implements QuoteStrategy
  30. {
  31. /**
  32. * {@inheritdoc}
  33. */
  34. public function getColumnName($fieldName, ClassMetadata $class, AbstractPlatform $platform)
  35. {
  36. return $class->fieldMappings[$fieldName]['columnName'];
  37. }
  38. /**
  39. * {@inheritdoc}
  40. */
  41. public function getTableName(ClassMetadata $class, AbstractPlatform $platform)
  42. {
  43. return $class->table['name'];
  44. }
  45. /**
  46. * {@inheritdoc}
  47. */
  48. public function getSequenceName(array $definition, ClassMetadata $class, AbstractPlatform $platform)
  49. {
  50. return $definition['sequenceName'];
  51. }
  52. /**
  53. * {@inheritdoc}
  54. */
  55. public function getJoinColumnName(array $joinColumn, ClassMetadata $class, AbstractPlatform $platform)
  56. {
  57. return $joinColumn['name'];
  58. }
  59. /**
  60. * {@inheritdoc}
  61. */
  62. public function getReferencedJoinColumnName(array $joinColumn, ClassMetadata $class, AbstractPlatform $platform)
  63. {
  64. return $joinColumn['referencedColumnName'];
  65. }
  66. /**
  67. * {@inheritdoc}
  68. */
  69. public function getJoinTableName(array $association, ClassMetadata $class, AbstractPlatform $platform)
  70. {
  71. return $association['joinTable']['name'];
  72. }
  73. /**
  74. * {@inheritdoc}
  75. */
  76. public function getIdentifierColumnNames(ClassMetadata $class, AbstractPlatform $platform)
  77. {
  78. return $class->identifier;
  79. }
  80. /**
  81. * {@inheritdoc}
  82. */
  83. public function getColumnAlias($columnName, $counter, AbstractPlatform $platform, ClassMetadata $class = null)
  84. {
  85. return $platform->getSQLResultCasing($columnName . $counter);
  86. }
  87. }