|
1
|
|
|
<?php |
|
2
|
|
|
namespace Kir\MySQL\Databases; |
|
3
|
|
|
|
|
4
|
|
|
use PDO; |
|
5
|
|
|
use PDOException; |
|
6
|
|
|
use UnexpectedValueException; |
|
7
|
|
|
use Kir\MySQL\Builder\RunnableSelect; |
|
8
|
|
|
use Kir\MySQL\Builder; |
|
9
|
|
|
use Kir\MySQL\Builder\Exception; |
|
10
|
|
|
use Kir\MySQL\Builder\QueryStatement; |
|
11
|
|
|
use Kir\MySQL\Database; |
|
12
|
|
|
use Kir\MySQL\Databases\MySQL\MySQLExceptionInterpreter; |
|
13
|
|
|
use Kir\MySQL\QueryLogger\QueryLoggers; |
|
14
|
|
|
use Kir\MySQL\Tools\AliasRegistry; |
|
15
|
|
|
|
|
16
|
|
|
/** |
|
17
|
|
|
*/ |
|
18
|
|
|
class MySQL implements Database { |
|
19
|
|
|
/** @var array */ |
|
20
|
|
|
private static $tableFields = array(); |
|
21
|
|
|
/** @var PDO */ |
|
22
|
|
|
private $pdo; |
|
23
|
|
|
/** @var bool */ |
|
24
|
|
|
private $outerTransaction = false; |
|
25
|
|
|
/** @var AliasRegistry */ |
|
26
|
|
|
private $aliasRegistry; |
|
27
|
|
|
/** @var int */ |
|
28
|
|
|
private $transactionLevel = 0; |
|
29
|
|
|
/** @var QueryLoggers */ |
|
30
|
|
|
private $queryLoggers = 0; |
|
31
|
|
|
/** @var MySQLExceptionInterpreter */ |
|
32
|
|
|
private $exceptionInterpreter = 0; |
|
33
|
|
|
|
|
34
|
|
|
/** |
|
35
|
|
|
* @param PDO $pdo |
|
36
|
|
|
*/ |
|
37
|
|
|
public function __construct(PDO $pdo) { |
|
38
|
|
|
if($pdo->getAttribute(PDO::ATTR_ERRMODE) === PDO::ERRMODE_SILENT) { |
|
39
|
|
|
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); |
|
40
|
|
|
} |
|
41
|
|
|
$this->pdo = $pdo; |
|
42
|
|
|
$this->aliasRegistry = new AliasRegistry(); |
|
43
|
|
|
$this->queryLoggers = new QueryLoggers(); |
|
44
|
|
|
$this->exceptionInterpreter = new MySQLExceptionInterpreter(); |
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
|
|
/** |
|
48
|
|
|
* @return QueryLoggers |
|
49
|
|
|
*/ |
|
50
|
|
|
public function getQueryLoggers() { |
|
51
|
|
|
return $this->queryLoggers; |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
|
|
/** |
|
55
|
|
|
* @return AliasRegistry |
|
56
|
|
|
*/ |
|
57
|
|
|
public function getAliasRegistry() { |
|
58
|
|
|
return $this->aliasRegistry; |
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
|
|
/** |
|
62
|
|
|
* @param string $query |
|
63
|
|
|
* @throws Exception |
|
64
|
|
|
* @return QueryStatement |
|
65
|
|
|
*/ |
|
66
|
|
|
public function query($query) { |
|
67
|
|
|
return $this->buildQueryStatement($query, function ($query) { |
|
68
|
|
|
$stmt = $this->pdo->query($query); |
|
69
|
|
|
return $stmt; |
|
70
|
|
|
}); |
|
71
|
|
|
} |
|
72
|
|
|
|
|
73
|
|
|
/** |
|
74
|
|
|
* @param string $query |
|
75
|
|
|
* @throws Exception |
|
76
|
|
|
* @return QueryStatement |
|
77
|
|
|
*/ |
|
78
|
|
|
public function prepare($query) { |
|
79
|
|
|
return $this->buildQueryStatement((string) $query, function ($query) { |
|
80
|
|
|
$stmt = $this->pdo->prepare($query); |
|
81
|
|
|
return $stmt; |
|
82
|
|
|
}); |
|
83
|
|
|
} |
|
84
|
|
|
|
|
85
|
|
|
/** |
|
86
|
|
|
* @param string $query |
|
87
|
|
|
* @param array $params |
|
88
|
|
|
* @return int |
|
89
|
|
|
*/ |
|
90
|
|
|
public function exec($query, array $params = array()) { |
|
91
|
|
|
return $this->exceptionHandler(function () use ($query, $params) { |
|
92
|
|
|
$stmt = $this->pdo->prepare($query); |
|
93
|
|
|
$timer = microtime(true); |
|
94
|
|
|
$stmt->execute($params); |
|
95
|
|
|
$this->queryLoggers->log($query, microtime(true) - $timer); |
|
96
|
|
|
$result = $stmt->rowCount(); |
|
97
|
|
|
$stmt->closeCursor(); |
|
98
|
|
|
return $result; |
|
99
|
|
|
}); |
|
100
|
|
|
} |
|
101
|
|
|
|
|
102
|
|
|
/** |
|
103
|
|
|
* @return string |
|
104
|
|
|
*/ |
|
105
|
|
|
public function getLastInsertId() { |
|
106
|
|
|
return $this->pdo->lastInsertId(); |
|
107
|
|
|
} |
|
108
|
|
|
|
|
109
|
|
|
/** |
|
110
|
|
|
* @param string $table |
|
111
|
|
|
* @return array |
|
112
|
|
|
*/ |
|
113
|
|
|
public function getTableFields($table) { |
|
114
|
|
|
$table = $this->select()->aliasReplacer()->replace($table); |
|
115
|
|
|
if(array_key_exists($table, self::$tableFields)) { |
|
116
|
|
|
return self::$tableFields[$table]; |
|
117
|
|
|
} |
|
118
|
|
|
$stmt = $this->pdo->query("DESCRIBE {$table}"); |
|
119
|
|
|
$rows = $stmt->fetchAll(\PDO::FETCH_ASSOC); |
|
120
|
|
|
self::$tableFields[$table] = array_map(function ($row) { return $row['Field']; }, $rows); |
|
121
|
|
|
$stmt->closeCursor(); |
|
122
|
|
|
return self::$tableFields[$table]; |
|
123
|
|
|
} |
|
124
|
|
|
|
|
125
|
|
|
/** |
|
126
|
|
|
* @param mixed $expression |
|
127
|
|
|
* @param array $arguments |
|
128
|
|
|
* @return string |
|
129
|
|
|
*/ |
|
130
|
|
|
public function quoteExpression($expression, array $arguments = array()) { |
|
131
|
|
|
$func = function () use ($arguments) { |
|
132
|
|
|
static $idx = -1; |
|
133
|
|
|
$idx++; |
|
134
|
|
|
$index = $idx; |
|
135
|
|
|
if(array_key_exists($index, $arguments)) { |
|
136
|
|
|
$argument = $arguments[$index]; |
|
137
|
|
|
$value = $this->quote($argument); |
|
138
|
|
|
} else { |
|
139
|
|
|
$value = 'NULL'; |
|
140
|
|
|
} |
|
141
|
|
|
return $value; |
|
142
|
|
|
}; |
|
143
|
|
|
$result = preg_replace_callback('/(\\?)/', $func, $expression); |
|
144
|
|
|
return (string) $result; |
|
145
|
|
|
} |
|
146
|
|
|
|
|
147
|
|
|
/** |
|
148
|
|
|
* @param mixed $value |
|
149
|
|
|
* @return string |
|
150
|
|
|
*/ |
|
151
|
|
|
public function quote($value) { |
|
152
|
|
|
if(is_null($value)) { |
|
153
|
|
|
$result = 'NULL'; |
|
154
|
|
|
} elseif($value instanceof Builder\DBExpr) { |
|
155
|
|
|
$result = $value->getExpression(); |
|
156
|
|
|
} elseif($value instanceof Builder\Select) { |
|
157
|
|
|
$result = sprintf('(%s)', (string) $value); |
|
158
|
|
|
} elseif(is_array($value)) { |
|
159
|
|
|
$result = join(', ', array_map(function ($value) { return $this->quote($value); }, $value)); |
|
160
|
|
|
} else { |
|
161
|
|
|
$result = $this->pdo->quote($value); |
|
162
|
|
|
} |
|
163
|
|
|
return $result; |
|
164
|
|
|
} |
|
165
|
|
|
|
|
166
|
|
|
/** |
|
167
|
|
|
* @param string $field |
|
168
|
|
|
* @return string |
|
169
|
|
|
*/ |
|
170
|
|
|
public function quoteField($field) { |
|
171
|
|
|
if (is_numeric($field) || !is_string($field)) { |
|
172
|
|
|
throw new UnexpectedValueException('Field name is invalid'); |
|
173
|
|
|
} |
|
174
|
|
|
if(strpos($field, '`') !== false) { |
|
175
|
|
|
return (string) $field; |
|
176
|
|
|
} |
|
177
|
|
|
$parts = explode('.', $field); |
|
178
|
|
|
return '`'.join('`.`', $parts).'`'; |
|
179
|
|
|
} |
|
180
|
|
|
|
|
181
|
|
|
/** |
|
182
|
|
|
* @param array $fields |
|
183
|
|
|
* @return RunnableSelect |
|
184
|
|
|
*/ |
|
185
|
|
|
public function select(array $fields = null) { |
|
186
|
|
|
$select = new RunnableSelect($this); |
|
187
|
|
|
if($fields !== null) { |
|
188
|
|
|
$select->fields($fields); |
|
189
|
|
|
} |
|
190
|
|
|
return $select; |
|
191
|
|
|
} |
|
192
|
|
|
|
|
193
|
|
|
/** |
|
194
|
|
|
* @param array $fields |
|
195
|
|
|
* @return Builder\RunnableInsert |
|
196
|
|
|
*/ |
|
197
|
|
|
public function insert(array $fields = null) { |
|
198
|
|
|
$insert = new Builder\RunnableInsert($this); |
|
199
|
|
|
if($fields !== null) { |
|
200
|
|
|
$insert->addAll($fields); |
|
201
|
|
|
} |
|
202
|
|
|
return $insert; |
|
203
|
|
|
} |
|
204
|
|
|
|
|
205
|
|
|
/** |
|
206
|
|
|
* @param array $fields |
|
207
|
|
|
* @return Builder\RunnableUpdate |
|
208
|
|
|
*/ |
|
209
|
|
|
public function update(array $fields = null) { |
|
210
|
|
|
$update = new Builder\RunnableUpdate($this); |
|
211
|
|
|
if($fields !== null) { |
|
212
|
|
|
$update->setAll($fields); |
|
213
|
|
|
} |
|
214
|
|
|
return $update; |
|
215
|
|
|
} |
|
216
|
|
|
|
|
217
|
|
|
/** |
|
218
|
|
|
* @return Builder\RunnableDelete |
|
219
|
|
|
*/ |
|
220
|
|
|
public function delete() { |
|
221
|
|
|
return new Builder\RunnableDelete($this); |
|
222
|
|
|
} |
|
223
|
|
|
|
|
224
|
|
|
/** |
|
225
|
|
|
* @return $this |
|
226
|
|
|
*/ |
|
227
|
|
|
public function transactionStart() { |
|
228
|
|
|
if((int) $this->transactionLevel === 0) { |
|
229
|
|
|
if($this->pdo->inTransaction()) { |
|
230
|
|
|
$this->outerTransaction = true; |
|
231
|
|
|
} else { |
|
232
|
|
|
$this->pdo->beginTransaction(); |
|
233
|
|
|
} |
|
234
|
|
|
} |
|
235
|
|
|
$this->transactionLevel++; |
|
236
|
|
|
return $this; |
|
237
|
|
|
} |
|
238
|
|
|
|
|
239
|
|
|
/** |
|
240
|
|
|
* @return $this |
|
241
|
|
|
* @throws \Exception |
|
242
|
|
|
*/ |
|
243
|
|
|
public function transactionCommit() { |
|
244
|
|
|
return $this->transactionEnd(function () { |
|
245
|
|
|
$this->pdo->commit(); |
|
246
|
|
|
}); |
|
247
|
|
|
} |
|
248
|
|
|
|
|
249
|
|
|
/** |
|
250
|
|
|
* @return $this |
|
251
|
|
|
* @throws \Exception |
|
252
|
|
|
*/ |
|
253
|
|
|
public function transactionRollback() { |
|
254
|
|
|
return $this->transactionEnd(function () { |
|
255
|
|
|
$this->pdo->rollBack(); |
|
256
|
|
|
}); |
|
257
|
|
|
} |
|
258
|
|
|
|
|
259
|
|
|
/** |
|
260
|
|
|
* @param int|callable $tries |
|
261
|
|
|
* @param callable|null $callback |
|
262
|
|
|
* @return mixed |
|
263
|
|
|
* @throws \Exception |
|
264
|
|
|
* @throws null |
|
265
|
|
|
*/ |
|
266
|
|
|
public function transaction($tries = 1, $callback = null) { |
|
267
|
|
|
if(is_callable($tries)) { |
|
268
|
|
|
$callback = $tries; |
|
269
|
|
|
$tries = 1; |
|
270
|
|
|
} elseif(!is_callable($callback)) { |
|
271
|
|
|
throw new \Exception('$callback must be a callable'); |
|
272
|
|
|
} |
|
273
|
|
|
$e = null; |
|
274
|
|
|
for(; $tries--;) { |
|
275
|
|
|
try { |
|
276
|
|
|
$this->transactionStart(); |
|
277
|
|
|
$result = call_user_func($callback, $this); |
|
278
|
|
|
$this->transactionCommit(); |
|
279
|
|
|
return $result; |
|
280
|
|
|
} catch (\Exception $e) { |
|
281
|
|
|
$this->transactionRollback(); |
|
282
|
|
|
} |
|
283
|
|
|
} |
|
284
|
|
|
throw $e; |
|
285
|
|
|
} |
|
286
|
|
|
|
|
287
|
|
|
/** |
|
288
|
|
|
* @param callable $fn |
|
289
|
|
|
* @return $this |
|
290
|
|
|
* @throws \Exception |
|
291
|
|
|
*/ |
|
292
|
|
|
private function transactionEnd($fn) { |
|
293
|
|
|
$this->transactionLevel--; |
|
294
|
|
|
if($this->transactionLevel < 0) { |
|
295
|
|
|
throw new \Exception("Transaction-Nesting-Problem: Trying to invoke commit on a already closed transaction"); |
|
296
|
|
|
} |
|
297
|
|
|
if((int) $this->transactionLevel === 0) { |
|
298
|
|
|
if($this->outerTransaction) { |
|
299
|
|
|
$this->outerTransaction = false; |
|
300
|
|
|
} else { |
|
301
|
|
|
call_user_func($fn); |
|
302
|
|
|
} |
|
303
|
|
|
} |
|
304
|
|
|
return $this; |
|
305
|
|
|
} |
|
306
|
|
|
|
|
307
|
|
|
/** |
|
308
|
|
|
* @param string $query |
|
309
|
|
|
* @param callable $fn |
|
310
|
|
|
* @return QueryStatement |
|
311
|
|
|
* @throws Exception |
|
312
|
|
|
*/ |
|
313
|
|
|
private function buildQueryStatement($query, $fn) { |
|
314
|
|
|
$stmt = call_user_func($fn, $query); |
|
315
|
|
|
if(!$stmt) { |
|
316
|
|
|
throw new Exception("Could not execute statement:\n{$query}"); |
|
317
|
|
|
} |
|
318
|
|
|
$stmtWrapper = new QueryStatement($stmt, $query, $this->exceptionInterpreter, $this->queryLoggers); |
|
319
|
|
|
return $stmtWrapper; |
|
320
|
|
|
} |
|
321
|
|
|
|
|
322
|
|
|
/** |
|
323
|
|
|
* @param callable $fn |
|
324
|
|
|
* @return mixed |
|
325
|
|
|
*/ |
|
326
|
|
|
private function exceptionHandler($fn) { |
|
327
|
|
|
try { |
|
328
|
|
|
return call_user_func($fn); |
|
329
|
|
|
} catch (PDOException $e) { |
|
330
|
|
|
$this->exceptionInterpreter->throwMoreConcreteException($e); |
|
331
|
|
|
} |
|
332
|
|
|
} |
|
333
|
|
|
} |
|
334
|
|
|
|