-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathSQLiteColumn.php
More file actions
263 lines (220 loc) · 7.37 KB
/
SQLiteColumn.php
File metadata and controls
263 lines (220 loc) · 7.37 KB
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
262
263
<?php
/**
* This file is part of Cycle ORM package.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cycle\Database\Driver\SQLite\Schema;
use Cycle\Database\Driver\DriverInterface;
use Cycle\Database\Schema\AbstractColumn;
use Cycle\Database\Schema\Attribute\ColumnAttribute;
class SQLiteColumn extends AbstractColumn
{
/**
* Default timestamp expression (driver specific).
*/
public const DATETIME_NOW = 'CURRENT_TIMESTAMP';
/**
* Private state related values.
*/
public const EXCLUDE_FROM_COMPARE = [
'userType',
'timezone',
'size',
'attributes',
];
protected array $mapping = [
//Primary sequences
'primary' => [
'type' => 'integer',
'primaryKey' => true,
'nullable' => false,
],
'bigPrimary' => [
'type' => 'integer',
'primaryKey' => true,
'nullable' => false,
],
//Enum type (mapped via method)
'enum' => 'enum',
//Logical types
'boolean' => ['type' => 'tinyint', 'size' => 1],
//Integer types (size can always be changed with size method), longInteger has method alias
//bigInteger
'integer' => 'integer',
'tinyInteger' => 'tinyint',
'smallInteger' => 'smallint',
'bigInteger' => 'bigint',
//String with specified length (mapped via method)
'string' => ['type' => 'text', 'size' => 255],
//Generic types
'text' => 'text',
'tinyText' => 'text',
'mediumText' => 'text',
'longText' => 'text',
//Real types
'double' => 'double',
'float' => 'real',
//Decimal type (mapped via method)
'decimal' => 'numeric',
//Date and Time types
'datetime' => 'datetime',
'date' => 'date',
'time' => 'time',
'timestamp' => 'timestamp',
//Binary types
'binary' => 'blob',
'tinyBinary' => 'blob',
'longBinary' => 'blob',
//Additional types
'json' => 'text',
'snowflake' => 'bigint',
'ulid' => ['type' => 'varchar', 'size' => 26],
'uuid' => ['type' => 'varchar', 'size' => 36],
];
protected array $reverseMapping = [
'primary' => [['type' => 'integer', 'primaryKey' => true]],
'enum' => ['enum'],
'boolean' => ['boolean', ['type' => 'tinyint', 'size' => 1]],
'integer' => ['int', 'integer', 'mediumint'],
'tinyInteger' => ['tinyint'],
'smallInteger' => ['smallint'],
'bigInteger' => ['bigint'],
'text' => ['text', 'string'],
'double' => ['double'],
'float' => ['real'],
'decimal' => ['numeric'],
'datetime' => ['datetime'],
'date' => ['date'],
'time' => ['time'],
'timestamp' => ['timestamp'],
'binary' => ['blob'],
'string' => ['varchar'],
];
/**
* Indication that column is primary key.
*/
protected bool $primaryKey = false;
#[ColumnAttribute(['numeric'])]
protected int $precision = 0;
#[ColumnAttribute(['numeric'])]
protected int $scale = 0;
/**
* @psalm-param non-empty-string $table
*/
public static function createInstance(
string $table,
array $schema,
?\DateTimeZone $timezone = null,
): self {
$column = new self($table, $schema['name'], $timezone);
$column->nullable = !$schema['notnull'];
$column->type = \strtolower($schema['type']);
if ((bool) $schema['pk'] && $column->type === 'integer') {
$column->primaryKey = true;
}
/*
* Normalizing default value.
*/
$column->defaultValue = $schema['dflt_value'];
if (
\is_string($column->defaultValue)
&& \preg_match('/^[\'""].*?[\'"]$/', $column->defaultValue)
) {
$column->defaultValue = \substr($column->defaultValue, 1, -1);
}
if (
!\preg_match(
'/^(?P<type>[a-z]+) *(?:\((?P<options>[^\)]+)\))?/',
$schema['type'],
$matches,
)
) {
//No type definition included
return $column;
}
// reformatted type value
$column->type = $matches['type'];
//Fetching size options
if (!empty($matches['options'])) {
$options = \explode(',', $matches['options']);
if (\count($options) > 1) {
$column->precision = (int) $options[0];
$column->scale = (int) $options[1];
} else {
$column->size = (int) $options[0];
}
}
if ($column->type === 'enum') {
//Quoted column name
$quoted = $schema['identifier'];
foreach ($schema['table'] as $columnSchema) {
//Looking for enum values in column definition code
if (
\preg_match(
"/{$quoted} +enum.*?CHECK *\\({$quoted} in \\((.*?)\\)\\)/i",
\trim($columnSchema),
$matches,
)
) {
$enumValues = \explode(',', $matches[1]);
foreach ($enumValues as &$value) {
//Trimming values
if (\preg_match("/^'?(.*?)'?$/", \trim($value), $matches)) {
//In database: 'value'
$value = $matches[1];
}
unset($value);
}
unset($value);
$column->enumValues = $enumValues;
}
}
}
return $column;
}
/**
* DBMS specific reverse mapping must map database specific type into limited set of abstract
* types.
*
* @psalm-return non-empty-string
*/
public function getAbstractType(): string
{
if ($this->primaryKey && $this->type === 'integer') {
return 'primary';
}
return parent::getAbstractType();
}
/**
* @psalm-return non-empty-string
*/
public function sqlStatement(DriverInterface $driver): string
{
$statement = parent::sqlStatement($driver);
if ($this->getAbstractType() !== 'enum') {
return $statement;
}
$enumValues = [];
foreach ($this->enumValues as $value) {
$enumValues[] = $driver->quote($value);
}
$quoted = $driver->identifier($this->name);
return "$statement CHECK ({$quoted} IN (" . \implode(', ', $enumValues) . '))';
}
protected static function isEnum(AbstractColumn $column): bool
{
return false;
}
protected static function isJson(AbstractColumn $column): ?bool
{
// In SQLite, we cannot determine if a column has a JSON type.
return $column->getAbstractType() === 'text' ? null : false;
}
protected function quoteEnum(DriverInterface $driver): string
{
return '';
}
}