blob: 568512190590b76a8375629f39b66b31c16c731e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
<?php
namespace Icinga\Module\Director\Db;
use Exception;
use Icinga\Module\Director\Data\Db\DbConnection;
use RuntimeException;
class Migration
{
/**
* @var string
*/
protected $sql;
/**
* @var int
*/
protected $version;
public function __construct($version, $sql)
{
$this->version = $version;
$this->sql = $sql;
}
/**
* @param DbConnection $connection
* @return $this
*/
public function apply(DbConnection $connection)
{
/** @var \Zend_Db_Adapter_Pdo_Abstract $db */
$db = $connection->getDbAdapter();
// TODO: this is fragile and depends on accordingly written schema files:
$queries = preg_split(
'/[\n\s\t]*\;[\n\s\t]+/s',
$this->sql,
-1,
PREG_SPLIT_NO_EMPTY
);
if (empty($queries)) {
throw new RuntimeException(sprintf(
'Migration %d has no queries',
$this->version
));
}
try {
foreach ($queries as $query) {
if (preg_match('/^(?:OPTIMIZE|EXECUTE) /i', $query)) {
$db->query($query);
} else {
$db->exec($query);
}
}
} catch (Exception $e) {
throw new RuntimeException(sprintf(
'Migration %d failed (%s) while running %s',
$this->version,
$e->getMessage(),
$query
));
}
return $this;
}
}
|