-
Notifications
You must be signed in to change notification settings - Fork 12
/
TypeFactory.php
164 lines (150 loc) · 5.26 KB
/
TypeFactory.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
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 4.0.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Database;
use InvalidArgumentException;
/**
* Factory for building database type classes.
*/
class TypeFactory
{
/**
* List of supported database types. A human readable
* identifier is used as key and a complete namespaced class name as value
* representing the class that will do actual type conversions.
*
* @var array<string, string>
* @psalm-var array<string, class-string<\Cake\Database\TypeInterface>>
*/
protected static $_types = [
'tinyinteger' => Type\IntegerType::class,
'smallinteger' => Type\IntegerType::class,
'integer' => Type\IntegerType::class,
'biginteger' => Type\IntegerType::class,
'binary' => Type\BinaryType::class,
'binaryuuid' => Type\BinaryUuidType::class,
'boolean' => Type\BoolType::class,
'date' => Type\DateType::class,
'datetime' => Type\DateTimeType::class,
'datetimefractional' => Type\DateTimeFractionalType::class,
'decimal' => Type\DecimalType::class,
'float' => Type\FloatType::class,
'json' => Type\JsonType::class,
'string' => Type\StringType::class,
'char' => Type\StringType::class,
'text' => Type\StringType::class,
'time' => Type\TimeType::class,
'timestamp' => Type\DateTimeType::class,
'timestampfractional' => Type\DateTimeFractionalType::class,
'timestamptimezone' => Type\DateTimeTimezoneType::class,
'uuid' => Type\UuidType::class,
];
/**
* Contains a map of type object instances to be reused if needed.
*
* @var \Cake\Database\TypeInterface[]
*/
protected static $_builtTypes = [];
/**
* Returns a Type object capable of converting a type identified by name.
*
* @param string $name type identifier
* @throws \InvalidArgumentException If type identifier is unknown
* @return \Cake\Database\TypeInterface
*/
public static function build(string $name): TypeInterface
{
if (isset(static::$_builtTypes[$name])) {
return static::$_builtTypes[$name];
}
if (!isset(static::$_types[$name])) {
throw new InvalidArgumentException(sprintf('Unknown type "%s"', $name));
}
return static::$_builtTypes[$name] = new static::$_types[$name]($name);
}
/**
* Returns an arrays with all the mapped type objects, indexed by name.
*
* @return \Cake\Database\TypeInterface[]
*/
public static function buildAll(): array
{
$result = [];
foreach (static::$_types as $name => $type) {
$result[$name] = static::$_builtTypes[$name] ?? static::build($name);
}
return $result;
}
/**
* Set TypeInterface instance capable of converting a type identified by $name
*
* @param string $name The type identifier you want to set.
* @param \Cake\Database\TypeInterface $instance The type instance you want to set.
* @return void
*/
public static function set(string $name, TypeInterface $instance): void
{
static::$_builtTypes[$name] = $instance;
static::$_types[$name] = get_class($instance);
}
/**
* Registers a new type identifier and maps it to a fully namespaced classname.
*
* @param string $type Name of type to map.
* @param string $className The classname to register.
* @return void
* @psalm-param class-string<\Cake\Database\TypeInterface> $className
*/
public static function map(string $type, string $className): void
{
static::$_types[$type] = $className;
unset(static::$_builtTypes[$type]);
}
/**
* Set type to classname mapping.
*
* @param string[] $map List of types to be mapped.
* @return void
* @psalm-param array<string, class-string<\Cake\Database\TypeInterface>> $map
*/
public static function setMap(array $map): void
{
static::$_types = $map;
static::$_builtTypes = [];
}
/**
* Get mapped class name for given type or map array.
*
* @param string|null $type Type name to get mapped class for or null to get map array.
* @return string[]|string|null Configured class name for given $type or map array.
*/
public static function getMap(?string $type = null)
{
if ($type === null) {
return static::$_types;
}
return static::$_types[$type] ?? null;
}
/**
* Clears out all created instances and mapped types classes, useful for testing
*
* @return void
*/
public static function clear(): void
{
static::$_types = [];
static::$_builtTypes = [];
}
}