grammar.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <?php namespace Laravel\Database;
  2. abstract class Grammar {
  3. /**
  4. * The keyword identifier for the database system.
  5. *
  6. * @var string
  7. */
  8. protected $wrapper = '"%s"';
  9. /**
  10. * The database connection instance for the grammar.
  11. *
  12. * @var Connection
  13. */
  14. protected $connection;
  15. /**
  16. * Create a new database grammar instance.
  17. *
  18. * @param Connection $connection
  19. * @return void
  20. */
  21. public function __construct(Connection $connection)
  22. {
  23. $this->connection = $connection;
  24. }
  25. /**
  26. * Wrap a table in keyword identifiers.
  27. *
  28. * @param string $table
  29. * @return string
  30. */
  31. public function wrap_table($table)
  32. {
  33. // Expressions should be injected into the query as raw strings so
  34. // so we do not want to wrap them in any way. We will just return
  35. // the string value from the expression to be included.
  36. if ($table instanceof Expression)
  37. {
  38. return $this->wrap($table);
  39. }
  40. $prefix = '';
  41. // Tables may be prefixed with a string. This allows developers to
  42. // prefix tables by application on the same database which may be
  43. // required in some brown-field situations.
  44. if (isset($this->connection->config['prefix']))
  45. {
  46. $prefix = $this->connection->config['prefix'];
  47. }
  48. return $this->wrap($prefix.$table);
  49. }
  50. /**
  51. * Wrap a value in keyword identifiers.
  52. *
  53. * @param string $value
  54. * @return string
  55. */
  56. public function wrap($value)
  57. {
  58. // Expressions should be injected into the query as raw strings so
  59. // so we do not want to wrap them in any way. We will just return
  60. // the string value from the expression to be included.
  61. if ($value instanceof Expression)
  62. {
  63. return $value->get();
  64. }
  65. // If the value being wrapped contains a column alias, we need to
  66. // wrap it a little differently as each segment must be wrapped
  67. // and not the entire string.
  68. if (strpos(strtolower($value), ' as ') !== false)
  69. {
  70. $segments = explode(' ', $value);
  71. return sprintf(
  72. '%s AS %s',
  73. $this->wrap($segments[0]),
  74. $this->wrap($segments[2])
  75. );
  76. }
  77. // Since columns may be prefixed with their corresponding table
  78. // name so as to not make them ambiguous, we will need to wrap
  79. // the table and the column in keyword identifiers.
  80. foreach (explode('.', $value) as $segment)
  81. {
  82. if ($segment == '*')
  83. {
  84. $wrapped[] = $segment;
  85. }
  86. else
  87. {
  88. $wrapped[] = sprintf($this->wrapper, $segment);
  89. }
  90. }
  91. return implode('.', $wrapped);
  92. }
  93. /**
  94. * Create query parameters from an array of values.
  95. *
  96. * <code>
  97. * Returns "?, ?, ?", which may be used as PDO place-holders
  98. * $parameters = $grammar->parameterize(array(1, 2, 3));
  99. *
  100. * // Returns "?, "Taylor"" since an expression is used
  101. * $parameters = $grammar->parameterize(array(1, DB::raw('Taylor')));
  102. * </code>
  103. *
  104. * @param array $values
  105. * @return string
  106. */
  107. final public function parameterize($values)
  108. {
  109. return implode(', ', array_map(array($this, 'parameter'), $values));
  110. }
  111. /**
  112. * Get the appropriate query parameter string for a value.
  113. *
  114. * <code>
  115. * // Returns a "?" PDO place-holder
  116. * $value = $grammar->parameter('Taylor Otwell');
  117. *
  118. * // Returns "Taylor Otwell" as the raw value of the expression
  119. * $value = $grammar->parameter(DB::raw('Taylor Otwell'));
  120. * </code>
  121. *
  122. * @param mixed $value
  123. * @return string
  124. */
  125. final public function parameter($value)
  126. {
  127. return ($value instanceof Expression) ? $value->get() : '?';
  128. }
  129. /**
  130. * Create a comma-delimited list of wrapped column names.
  131. *
  132. * <code>
  133. * // Returns ""Taylor", "Otwell"" when the identifier is quotes
  134. * $columns = $grammar->columnize(array('Taylor', 'Otwell'));
  135. * </code>
  136. *
  137. * @param array $columns
  138. * @return string
  139. */
  140. final public function columnize($columns)
  141. {
  142. return implode(', ', array_map(array($this, 'wrap'), $columns));
  143. }
  144. }