grammar.php 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. <?php namespace Laravel\Database\Grammars; use Laravel\Arr, Laravel\Database\Query;
  2. class Grammar {
  3. /**
  4. * The keyword identifier for the database system.
  5. *
  6. * @var string
  7. */
  8. protected $wrapper = '"';
  9. /**
  10. * All of the query componenets in the order they should be built.
  11. *
  12. * @var array
  13. */
  14. protected $components = array('aggregate', 'selects', 'from', 'joins', 'wheres', 'orderings', 'limit', 'offset');
  15. /**
  16. * Compile a SQL SELECT statement from a Query instance.
  17. *
  18. * The query will be compiled according to the order of the elements specified
  19. * in the "components" property. The entire query is pased into each component
  20. * compiler for convenience.
  21. *
  22. * @param Query $query
  23. * @return string
  24. */
  25. final public function select(Query $query)
  26. {
  27. $sql = array();
  28. // Iterate through each query component, calling the compiler for that
  29. // component, and passing the query instance into the compiler.
  30. foreach ($this->components as $component)
  31. {
  32. if ( ! is_null($query->$component)) $sql[] = call_user_func(array($this, $component), $query);
  33. }
  34. return implode(' ', Arr::without($sql, array(null, '')));
  35. }
  36. /**
  37. * Compile the SELECT clause for a query.
  38. *
  39. * @param Query $query
  40. * @return string
  41. */
  42. protected function selects(Query $query)
  43. {
  44. return (($query->distinct) ? 'SELECT DISTINCT ' : 'SELECT ').$this->columnize($query->selects);
  45. }
  46. /**
  47. * Compile an aggregating SELECT clause for a query.
  48. *
  49. * @param Query $query
  50. * @return string
  51. */
  52. protected function aggregate(Query $query)
  53. {
  54. list($aggregator, $column) = array($query->aggregate['aggregator'], $query->aggregate['column']);
  55. return 'SELECT '.$aggregator.'('.$this->wrap($column).')';
  56. }
  57. /**
  58. * Compile the FROM clause for a query.
  59. *
  60. * @param Query $query
  61. * @return string
  62. */
  63. protected function from(Query $query)
  64. {
  65. return 'FROM '.$this->wrap($query->from);
  66. }
  67. /**
  68. * Compile the JOIN clauses for a query.
  69. *
  70. * @param Query $query
  71. * @return string
  72. */
  73. protected function joins(Query $query)
  74. {
  75. // Since creating a JOIN clause using string concatenation is a little cumbersome,
  76. // we will create a format we can pass to "sprintf" to make things cleaner.
  77. $format = '%s JOIN %s ON %s %s %s';
  78. foreach ($query->joins as $join)
  79. {
  80. extract($join);
  81. list($column1, $column2) = array($this->wrap($column1), $this->wrap($column2));
  82. $sql[] = sprintf($format, $type, $this->wrap($table), $column1, $operator, $column2);
  83. }
  84. return implode(' ', $sql);
  85. }
  86. /**
  87. * Compile the WHERE clause for a query.
  88. *
  89. * @param Query $query
  90. * @return string
  91. */
  92. final protected function wheres(Query $query)
  93. {
  94. // Each WHERE clause array has a "type" that is assigned by the query builder, and
  95. // each type has its own compiler function. For example, "where in" queries are
  96. // compiled by the "where_in" function.
  97. //
  98. // The only exception to this rule are "raw" where clauses, which are simply
  99. // appended to the query as-is, without any further compiling.
  100. foreach ($wheres as $where)
  101. {
  102. $sql[] = ($where['type'] == 'raw') ? $where['sql'] : $where['connector'].' '.$this->{$where['type']}($where);
  103. }
  104. if (isset($sql)) return implode(' ', array_merge(array('WHERE 1 = 1'), $sql));
  105. }
  106. /**
  107. * Compile a simple WHERE clause.
  108. *
  109. * @param array $where
  110. * @return string
  111. */
  112. protected function where($where)
  113. {
  114. return $this->wrap($where['column']).' '.$where['operator'].' ?';
  115. }
  116. /**
  117. * Compile a WHERE IN clause.
  118. *
  119. * @param array $where
  120. * @return string
  121. */
  122. protected function where_in($where)
  123. {
  124. $operator = ($where['not']) ? 'NOT IN' : 'IN';
  125. return $this->wrap($where['column']).' '.$operator.' ('.$this->parameterize($where['values']).')';
  126. }
  127. /**
  128. * Compile a WHERE NULL clause.
  129. *
  130. * @param array $where
  131. * @return string
  132. */
  133. protected function where_null($where)
  134. {
  135. $operator = ($where['not']) ? 'NOT NULL' : 'NULL';
  136. return $this->wrap($where['column']).' IS '.$operator;
  137. }
  138. /**
  139. * Compile ORDER BY clause for a query.
  140. *
  141. * @param Query $query
  142. * @return string
  143. */
  144. protected function orderings(Query $query)
  145. {
  146. foreach ($query->orderings as $ordering)
  147. {
  148. $sql[] = $this->wrap($ordering['column']).' '.strtoupper($ordering['direction']);
  149. }
  150. return 'ORDER BY '.implode(', ', $sql);
  151. }
  152. /**
  153. * Compile the LIMIT clause for a query.
  154. *
  155. * @param Query $query
  156. * @return string
  157. */
  158. protected function limit(Query $query)
  159. {
  160. return 'LIMIT '.$query->limit;
  161. }
  162. /**
  163. * Compile the OFFSET clause for a query.
  164. *
  165. * @param Query $query
  166. * @return string
  167. */
  168. protected function offset(Query $query)
  169. {
  170. return 'OFFSET '.$query->offset;
  171. }
  172. /**
  173. * Compile a SQL INSERT statment from a Query instance.
  174. *
  175. * Note: This method handles the compilation of single row inserts and batch inserts.
  176. *
  177. * @param Query $query
  178. * @param array $values
  179. * @return string
  180. */
  181. public function insert(Query $query, $values)
  182. {
  183. // Force every insert to be treated like a batch insert. This simply makes creating
  184. // the SQL syntax a little easier on us since we can always treat the values as if
  185. // is an array containing multiple inserts.
  186. if ( ! is_array(reset($values))) $values = array($values);
  187. // Since we only care about the column names, we can pass any of the insert arrays
  188. // into the "columnize" method. The names should be the same for every insert.
  189. $columns = $this->columnize(array_keys(reset($values)));
  190. // We need to create a string of comma-delimited insert segments. Each segment contains
  191. // PDO place-holders for each value being inserted into the table. So, if we are inserting
  192. // into three columns, the string should look like this:
  193. //
  194. // (?, ?, ?), (?, ?, ?), (?, ?, ?)
  195. $parameters = implode(', ', array_fill(0, count($values), '('.$this->parameterize(reset($values)).')'));
  196. return 'INSERT INTO '.$this->wrap($query->from).' ('.$columns.') VALUES '.$parameters;
  197. }
  198. /**
  199. * Compile a SQL UPDATE statment from a Query instance.
  200. *
  201. * Note: Since UPDATE statements can be limited by a WHERE clause, this method will
  202. * use the same WHERE clause compilation functions as the "select" method.
  203. *
  204. * @param Query $query
  205. * @param array $values
  206. * @return string
  207. */
  208. public function update(Query $query, $values)
  209. {
  210. $columns = $this->columnize(array_keys($values), ' = ?');
  211. return trim('UPDATE '.$this->wrap($query->from).' SET '.$columns.' '.$this->wheres($query));
  212. }
  213. /**
  214. * Compile a SQL DELETE statment from a Query instance.
  215. *
  216. * @param Query $query
  217. * @return string
  218. */
  219. public function delete(Query $query)
  220. {
  221. return trim('DELETE FROM '.$this->wrap($query->from).' '.$this->wheres($query));
  222. }
  223. /**
  224. * The following functions primarily serve as utility functions for the grammar.
  225. * They perform tasks such as wrapping values in keyword identifiers or creating
  226. * variable lists of bindings. Most likely, they will not need to change across
  227. * various database systems.
  228. */
  229. /**
  230. * Create a comma-delimited list of wrapped column names.
  231. *
  232. * Optionally, an "append" value may be passed to the method. This value will be
  233. * appended to every wrapped column name.
  234. *
  235. * @param array $columns
  236. * @param string $append
  237. * @return string
  238. */
  239. protected function columnize($columns, $append = '')
  240. {
  241. foreach ($columns as $column) { $sql[] = $this->wrap($column).$append; }
  242. return implode(', ', $sql);
  243. }
  244. /**
  245. * Wrap a value in keyword identifiers.
  246. *
  247. * They keyword identifier used by the method is specified as a property on
  248. * the grammar class so it can be conveniently overriden without changing
  249. * the wrapping logic itself.
  250. *
  251. * @param string $value
  252. * @return string
  253. */
  254. protected function wrap($value)
  255. {
  256. if (strpos(strtolower($value), ' as ') !== false) return $this->alias($value);
  257. foreach (explode('.', $value) as $segment)
  258. {
  259. $wrapped[] = ($segment !== '*') ? $this->wrapper.$segment.$this->wrapper : $segment;
  260. }
  261. return implode('.', $wrapped);
  262. }
  263. /**
  264. * Wrap an alias in keyword identifiers.
  265. *
  266. * @param string $value
  267. * @return string
  268. */
  269. protected function alias($value)
  270. {
  271. $segments = explode(' ', $value);
  272. return $this->wrap($segments[0]).' AS '.$this->wrap($segments[2]);
  273. }
  274. /**
  275. * Create query parameters from an array of values.
  276. *
  277. * @param array $values
  278. * @return string
  279. */
  280. protected function parameterize($values)
  281. {
  282. return implode(', ', array_fill(0, count($values), '?'));
  283. }
  284. }