blob: 8326ff5017cb39e59ac78eeb76af7459c912b078 (
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
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
|
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Mapping\Builder;
use function constant;
/**
* Field Builder
*
* @link www.doctrine-project.com
*/
class FieldBuilder
{
private bool $version = false;
private string|null $generatedValue = null;
/** @var mixed[]|null */
private array|null $sequenceDef = null;
private string|null $customIdGenerator = null;
/** @param mixed[] $mapping */
public function __construct(
private readonly ClassMetadataBuilder $builder,
private array $mapping,
) {
}
/**
* Sets length.
*
* @return $this
*/
public function length(int $length): static
{
$this->mapping['length'] = $length;
return $this;
}
/**
* Sets nullable.
*
* @return $this
*/
public function nullable(bool $flag = true): static
{
$this->mapping['nullable'] = $flag;
return $this;
}
/**
* Sets Unique.
*
* @return $this
*/
public function unique(bool $flag = true): static
{
$this->mapping['unique'] = $flag;
return $this;
}
/**
* Sets column name.
*
* @return $this
*/
public function columnName(string $name): static
{
$this->mapping['columnName'] = $name;
return $this;
}
/**
* Sets Precision.
*
* @return $this
*/
public function precision(int $p): static
{
$this->mapping['precision'] = $p;
return $this;
}
/**
* Sets insertable.
*
* @return $this
*/
public function insertable(bool $flag = true): self
{
if (! $flag) {
$this->mapping['notInsertable'] = true;
}
return $this;
}
/**
* Sets updatable.
*
* @return $this
*/
public function updatable(bool $flag = true): self
{
if (! $flag) {
$this->mapping['notUpdatable'] = true;
}
return $this;
}
/**
* Sets scale.
*
* @return $this
*/
public function scale(int $s): static
{
$this->mapping['scale'] = $s;
return $this;
}
/**
* Sets field as primary key.
*
* @return $this
*/
public function makePrimaryKey(): static
{
$this->mapping['id'] = true;
return $this;
}
/**
* Sets an option.
*
* @return $this
*/
public function option(string $name, mixed $value): static
{
$this->mapping['options'][$name] = $value;
return $this;
}
/** @return $this */
public function generatedValue(string $strategy = 'AUTO'): static
{
$this->generatedValue = $strategy;
return $this;
}
/**
* Sets field versioned.
*
* @return $this
*/
public function isVersionField(): static
{
$this->version = true;
return $this;
}
/**
* Sets Sequence Generator.
*
* @return $this
*/
public function setSequenceGenerator(string $sequenceName, int $allocationSize = 1, int $initialValue = 1): static
{
$this->sequenceDef = [
'sequenceName' => $sequenceName,
'allocationSize' => $allocationSize,
'initialValue' => $initialValue,
];
return $this;
}
/**
* Sets column definition.
*
* @return $this
*/
public function columnDefinition(string $def): static
{
$this->mapping['columnDefinition'] = $def;
return $this;
}
/**
* Set the FQCN of the custom ID generator.
* This class must extend \Doctrine\ORM\Id\AbstractIdGenerator.
*
* @return $this
*/
public function setCustomIdGenerator(string $customIdGenerator): static
{
$this->customIdGenerator = $customIdGenerator;
return $this;
}
/**
* Finalizes this field and attach it to the ClassMetadata.
*
* Without this call a FieldBuilder has no effect on the ClassMetadata.
*/
public function build(): ClassMetadataBuilder
{
$cm = $this->builder->getClassMetadata();
if ($this->generatedValue) {
$cm->setIdGeneratorType(constant('Doctrine\ORM\Mapping\ClassMetadata::GENERATOR_TYPE_' . $this->generatedValue));
}
if ($this->version) {
$cm->setVersionMapping($this->mapping);
}
$cm->mapField($this->mapping);
if ($this->sequenceDef) {
$cm->setSequenceGeneratorDefinition($this->sequenceDef);
}
if ($this->customIdGenerator) {
$cm->setCustomGeneratorDefinition(['class' => $this->customIdGenerator]);
}
return $this->builder;
}
}
|