-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathServer.php
261 lines (215 loc) · 6.68 KB
/
Server.php
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
<?php
namespace Vimeo\MysqlEngine;
final class Server
{
/**
* @var string
*/
public $name;
/**
* @var ?ServerConfig
*/
public $config = null;
/**
* @var array<string, Server>
*/
private static $instances = [];
/**
* @var array<string, true>
*/
private static $snapshot_names = [];
/**
* @var array<string, array<string, TableData>>
*/
public $databases = [];
/**
* @var array<string, array<string, array<string, TableData>>>
*/
private $snapshots = [];
/**
* @var array<string, array<string, Schema\TableDefinition>>
*/
private $tableDefinitions = [];
/**
* @param ?ServerConfig|null $config
*/
public function __construct(string $name, ?ServerConfig $config = null)
{
$this->name = $name;
$this->config = $config;
}
/**
* @return array<string, self>
*/
public static function getAll() : array
{
return static::$instances;
}
public static function get(string $name) : ?self
{
return static::$instances[$name] ?? null;
}
/**
* @param ServerConfig $config
*/
public function setConfig(ServerConfig $config) : void
{
$this->config = $config;
}
public static function getOrCreate(string $name) : self
{
$server = static::$instances[$name] ?? null;
if ($server === null) {
$server = new static($name);
static::$instances[$name] = $server;
}
return $server;
}
public static function reset() : void
{
foreach (static::getAll() as $server) {
$server->doReset();
}
}
public static function snapshot(string $name) : void
{
foreach (static::getAll() as $server) {
$server->doSnapshot($name);
}
static::$snapshot_names[$name] = true;
}
public static function restoreSnapshot(string $name) : void
{
if (!static::hasSnapshot($name)) {
throw new Processor\ProcessorException("Snapshot {$name} not found, unable to restore");
}
foreach (static::getAll() as $server) {
$server->doRestoreSnapshot($name);
}
unset(static::$snapshot_names[$name]);
}
public static function deleteSnapshot(string $name) : bool
{
if (!static::hasSnapshot($name)) {
return false;
}
foreach (static::getAll() as $server) {
$server->doDeleteSnapshot($name);
}
unset(static::$snapshot_names[$name]);
return true;
}
public static function hasSnapshot(string $name) : bool
{
return \array_key_exists($name, static::$snapshot_names);
}
protected function doSnapshot(string $name) : void
{
$this->snapshots[$name] = array_map(
function ($database) {
return array_map(
function ($table) {
return clone $table;
},
$database
);
},
$this->databases
);
}
protected function doDeleteSnapshot(string $name) : void
{
unset($this->snapshots[$name]);
}
protected function doRestoreSnapshot(string $name) : void
{
$this->databases = $this->snapshots[$name] ?? [];
unset($this->snapshots[$name]);
}
protected function doReset() : void
{
$this->databases = [];
}
public function addTableDefinition(
string $database,
string $table,
Schema\TableDefinition $table_definition
) : void {
$this->tableDefinitions[$database][$table] = $table_definition;
}
public function getTableDefinition(string $database, string $table) : ?Schema\TableDefinition
{
return $this->tableDefinitions[$database][$table] ?? null;
}
/**
* @return array<int, array<string, mixed>>|null
*/
public function getTable(string $database_name, string $name) : ?array
{
return $this->databases[$database_name][$name]->table ?? null;
}
/**
* @param array<int, array<string, mixed>> $rows
*/
public function saveTable(string $database_name, string $name, array $rows) : void
{
if (!isset($this->databases[$database_name][$name])) {
$this->databases[$database_name][$name] = new TableData();
}
$this->databases[$database_name][$name]->table = $rows;
}
public function resetTable(string $database_name, string $name) : void
{
static::$snapshot_names = [];
$this->snapshots = [];
$this->databases[$database_name][$name] = new TableData();
$this->databases[$database_name][$name]->was_truncated = true;
}
public function dropTable(string $database_name, string $name) : void
{
static::$snapshot_names = [];
$this->snapshots = [];
unset($this->databases[$database_name][$name]);
}
public function getNextAutoIncrementValue(
string $database_name,
string $table_name,
string $column_name
) : int {
$table_definition = $this->getTableDefinition($database_name, $table_name);
$table = $this->databases[$database_name][$table_name] ?? null;
if (!$table_definition) {
throw new \UnexpectedValueException('table doesn’t exist');
}
if (!$table) {
$table = $this->databases[$database_name][$table_name] = new TableData();
}
if (!isset($table->autoIncrementCursors[$column_name])) {
if (isset($table_definition->autoIncrementOffsets[$column_name]) && !$table->was_truncated) {
$table->autoIncrementCursors[$column_name] = $table_definition->autoIncrementOffsets[$column_name] - 1;
} else {
$table->autoIncrementCursors[$column_name] = 0;
}
}
return $table->autoIncrementCursors[$column_name] + 1;
}
public function addAutoIncrementMinValue(
string $database_name,
string $table_name,
string $column_name,
int $value
) : int {
$table_definition = $this->getTableDefinition($database_name, $table_name);
$table = $this->databases[$database_name][$table_name] ?? null;
if (!$table_definition) {
throw new \UnexpectedValueException('table doesn’t exist');
}
if (!$table) {
$table = $this->databases[$database_name][$table_name] = new TableData();
}
return $table->autoIncrementCursors[$column_name] = max(
$table->autoIncrementCursors[$column_name] ?? 0,
$value
);
}
}