1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
namespace Yiisoft\Db\Pgsql\Composite; |
6
|
|
|
|
7
|
|
|
/** |
8
|
|
|
* Composite type representation to PHP array parser for PostgreSQL Server. |
9
|
|
|
*/ |
10
|
|
|
final class CompositeParser |
11
|
|
|
{ |
12
|
|
|
/** |
13
|
|
|
* Converts composite type value from PostgreSQL to PHP array |
14
|
|
|
* |
15
|
|
|
* @param string $value String to convert. |
16
|
|
|
*/ |
17
|
6 |
|
public function parse(string $value): array|null |
18
|
|
|
{ |
19
|
6 |
|
if ($value[0] !== '(') { |
20
|
1 |
|
return null; |
21
|
|
|
} |
22
|
|
|
|
23
|
6 |
|
return $this->parseComposite($value); |
24
|
|
|
} |
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* Parses PostgreSQL composite type value encoded in string. |
28
|
|
|
* |
29
|
|
|
* @param string $value String to parse. |
30
|
|
|
*/ |
31
|
6 |
|
private function parseComposite(string $value): array |
32
|
|
|
{ |
33
|
6 |
|
for ($result = [], $i = 1;; ++$i) { |
34
|
6 |
|
$result[] = match ($value[$i]) { |
35
|
6 |
|
',', ')' => null, |
36
|
6 |
|
'"' => $this->parseQuotedString($value, $i), |
37
|
6 |
|
default => $this->parseUnquotedString($value, $i), |
38
|
6 |
|
}; |
39
|
|
|
|
40
|
6 |
|
if ($value[$i] === ')') { |
41
|
6 |
|
return $result; |
42
|
|
|
} |
43
|
|
|
} |
|
|
|
|
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
/** |
47
|
|
|
* Parses quoted string. |
48
|
|
|
*/ |
49
|
6 |
|
private function parseQuotedString(string $value, int &$i): string |
50
|
|
|
{ |
51
|
6 |
|
for ($result = '', ++$i;; ++$i) { |
52
|
6 |
|
if ($value[$i] === '\\') { |
53
|
1 |
|
++$i; |
54
|
6 |
|
} elseif ($value[$i] === '"') { |
55
|
6 |
|
++$i; |
56
|
6 |
|
return $result; |
57
|
|
|
} |
58
|
|
|
|
59
|
6 |
|
$result .= $value[$i]; |
60
|
|
|
} |
|
|
|
|
61
|
|
|
} |
62
|
|
|
|
63
|
|
|
/** |
64
|
|
|
* Parses unquoted string. |
65
|
|
|
*/ |
66
|
6 |
|
private function parseUnquotedString(string $value, int &$i): string |
67
|
|
|
{ |
68
|
6 |
|
for ($result = '';; ++$i) { |
69
|
6 |
|
if (in_array($value[$i], [',', ')'], true)) { |
70
|
6 |
|
return $result; |
71
|
|
|
} |
72
|
|
|
|
73
|
6 |
|
$result .= $value[$i]; |
74
|
|
|
} |
|
|
|
|
75
|
|
|
} |
76
|
|
|
} |
77
|
|
|
|
For hinted functions/methods where all return statements with the correct type are only reachable via conditions, ?null? gets implicitly returned which may be incompatible with the hinted type. Let?s take a look at an example: