1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of the LaravelYaml package. |
5
|
|
|
* |
6
|
|
|
* (c) Théo FIDRY <[email protected]> |
7
|
|
|
* |
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
9
|
|
|
* file that was distributed with this source code. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
namespace Fidry\LaravelYaml\FileLoader\Parser\Yaml\Util; |
13
|
|
|
|
14
|
|
|
use Fidry\LaravelYaml\DependencyInjection\Builder\ContainerBuilder; |
15
|
|
|
use Fidry\LaravelYaml\DependencyInjection\Definition\Service; |
16
|
|
|
use Fidry\LaravelYaml\Exception\FileLoader\InvalidArgumentException; |
17
|
|
|
use Fidry\LaravelYaml\FileLoader\Parser\Resolver\ResolverInterface; |
18
|
|
|
|
19
|
|
|
/** |
20
|
|
|
* @author Théo FIDRY <[email protected]> |
21
|
|
|
*/ |
22
|
|
|
final class ServiceParser |
23
|
|
|
{ |
24
|
|
|
/** |
25
|
|
|
* @var AliasParser |
26
|
|
|
*/ |
27
|
|
|
private $aliasParser; |
28
|
|
|
|
29
|
|
|
/** |
30
|
|
|
* @var AutowiringTypesParser |
31
|
|
|
*/ |
32
|
|
|
private $autowiringTypesParser; |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* @var ClassParser |
36
|
|
|
*/ |
37
|
|
|
private $classParser; |
38
|
|
|
|
39
|
|
|
/** |
40
|
|
|
* @var DecorationParser |
41
|
|
|
*/ |
42
|
|
|
private $decorationParser; |
43
|
|
|
|
44
|
|
|
/** |
45
|
|
|
* @var FactoryParser |
46
|
|
|
*/ |
47
|
|
|
private $factoryParser; |
48
|
|
|
|
49
|
|
|
/** |
50
|
|
|
* @var ResolverInterface |
51
|
|
|
*/ |
52
|
|
|
private $serviceResolver; |
53
|
|
|
|
54
|
|
|
/** |
55
|
|
|
* @var TagsParser |
56
|
|
|
*/ |
57
|
|
|
private $tagsParser; |
58
|
|
|
|
59
|
44 |
|
public function __construct(ResolverInterface $serviceResolver) |
60
|
|
|
{ |
61
|
44 |
|
$this->serviceResolver = $serviceResolver; |
62
|
|
|
|
63
|
44 |
|
$this->aliasParser = new AliasParser(); |
64
|
44 |
|
$this->classParser = new ClassParser(); |
65
|
44 |
|
$this->tagsParser = new TagsParser(); |
66
|
44 |
|
$this->autowiringTypesParser = new AutowiringTypesParser(); |
67
|
44 |
|
$this->factoryParser = new FactoryParser($serviceResolver); |
68
|
44 |
|
$this->decorationParser = new DecorationParser(); |
69
|
44 |
|
} |
70
|
|
|
|
71
|
|
|
/** |
72
|
|
|
* Parses a service definition and register it to the container. |
73
|
|
|
* |
74
|
|
|
* @param ContainerBuilder $container |
75
|
|
|
* @param string $id |
76
|
|
|
* @param array|string $service |
77
|
|
|
* @param string $fileName file name |
78
|
|
|
* |
79
|
|
|
* @throws InvalidArgumentException |
80
|
|
|
*/ |
81
|
28 |
|
public function parse(ContainerBuilder $container, $id, array $service, $fileName) |
82
|
|
|
{ |
83
|
28 |
|
$alias = $this->aliasParser->parse($id, $service, $fileName); |
84
|
26 |
|
if (null !== $alias) { |
85
|
6 |
|
$container->addAlias($alias); |
86
|
3 |
|
} |
87
|
|
|
|
88
|
26 |
|
$class = $this->classParser->parse($id, $service, $fileName); |
89
|
22 |
|
$arguments = (isset($service['arguments'])) |
90
|
12 |
|
? $this->serviceResolver->resolve($service['arguments']) |
91
|
22 |
|
: [] |
92
|
11 |
|
; |
93
|
22 |
|
$tags = $this->tagsParser->parse($id, $service, $fileName); |
94
|
16 |
|
$autowiringTypes = $this->autowiringTypesParser->parse($id, $service, $fileName); |
95
|
|
|
|
96
|
12 |
|
$serviceDefinition = $this->createService( |
97
|
6 |
|
$id, |
98
|
6 |
|
$class, |
99
|
6 |
|
$arguments, |
100
|
6 |
|
$autowiringTypes, |
101
|
6 |
|
$tags, |
102
|
6 |
|
$service, |
103
|
|
|
$fileName |
104
|
6 |
|
); |
105
|
|
|
|
106
|
12 |
|
$container->addService($serviceDefinition); |
107
|
12 |
|
} |
108
|
|
|
|
109
|
12 |
|
private function createService($id, $class, array $arguments, array $autowiringTypes, array $tags, array $service, $fileName) |
110
|
|
|
{ |
111
|
12 |
|
$serviceDefinition = new Service($id, $class, $arguments, $autowiringTypes, $tags); |
112
|
|
|
|
113
|
12 |
|
if (isset($service['factory'])) { |
114
|
2 |
|
return $this->factoryParser->parse($serviceDefinition, $service['factory'], $fileName); |
115
|
|
|
} |
116
|
|
|
|
117
|
10 |
|
if (isset($service['decorates'])) { |
118
|
2 |
|
return $this->decorationParser->parse($serviceDefinition, $service, $fileName); |
119
|
|
|
} |
120
|
|
|
|
121
|
10 |
|
return $serviceDefinition; |
122
|
|
|
} |
123
|
|
|
} |
124
|
|
|
|