1 | <?php |
||
13 | class FluentDriver implements MappingDriver |
||
14 | { |
||
15 | /** |
||
16 | * @var MapperSet |
||
17 | */ |
||
18 | protected $mappers; |
||
19 | |||
20 | /** |
||
21 | * @var callable |
||
22 | */ |
||
23 | protected $fluentFactory; |
||
24 | |||
25 | /** |
||
26 | * Initializes a new FluentDriver that will load given Mapping classes / objects. |
||
27 | * |
||
28 | * @param string[]|Mapping[] $mappings |
||
29 | */ |
||
30 | public function __construct(array $mappings = []) |
||
31 | { |
||
32 | $this->fluentFactory = function (ClassMetadata $metadata) { |
||
33 | 4 | return new Builder(new ClassMetadataBuilder($metadata)); |
|
34 | 4 | }; |
|
35 | |||
36 | $this->mappers = new MapperSet(); |
||
37 | 92 | $this->addMappings($mappings); |
|
38 | 92 | } |
|
39 | 92 | ||
40 | /** |
||
41 | * Loads the metadata for the specified class into the provided container. |
||
42 | * |
||
43 | * @param string $className |
||
44 | * @param ClassMetadata $metadata |
||
45 | */ |
||
46 | public function loadMetadataForClass($className, ClassMetadata $metadata) |
||
47 | 6 | { |
|
48 | $this->mappers->getMapperFor($className)->map( |
||
49 | 6 | $this->getFluent($metadata) |
|
50 | 5 | ); |
|
51 | 5 | } |
|
52 | 5 | ||
53 | /** |
||
54 | * Gets the names of all mapped classes known to this driver. |
||
55 | * |
||
56 | * @throws MappingException |
||
57 | * |
||
58 | * @return string[] The names of all mapped classes known to this driver. |
||
59 | */ |
||
60 | public function getAllClassNames() |
||
64 | |||
65 | /** |
||
66 | * Returns whether the class with the specified name should have its metadata loaded. |
||
67 | * This is only the case if it is either mapped as an Entity or a MappedSuperclass. |
||
68 | * |
||
69 | * @param string $className |
||
70 | * |
||
71 | * @return bool |
||
72 | */ |
||
73 | public function isTransient($className) |
||
79 | |||
80 | /** |
||
81 | * Adds an array of mapping classes / objects to the driver. |
||
82 | * |
||
83 | * @param string[]|Mapping[] $mappings |
||
84 | 92 | * |
|
85 | * @throws MappingException |
||
86 | 92 | * @throws InvalidArgumentException |
|
87 | 82 | */ |
|
88 | 1 | public function addMappings(array $mappings = []) |
|
94 | 1 | ||
95 | /** |
||
96 | * @param string|Mapping $mapping |
||
97 | 80 | * |
|
98 | 92 | * @throws MappingException |
|
99 | 92 | * @throws InvalidArgumentException |
|
100 | * |
||
101 | * @return void |
||
102 | */ |
||
103 | public function addMapping($mapping) |
||
109 | |||
110 | 87 | /** |
|
111 | 87 | * @return MapperSet |
|
112 | */ |
||
113 | public function getMappers() |
||
117 | |||
118 | 5 | /** |
|
119 | * Override the default Fluent factory method with a custom one. |
||
120 | * Use this to implement your own Fluent builder. |
||
121 | * The method will receive a ClassMetadata object as its only argument. |
||
122 | * |
||
123 | * @param callable $factory |
||
124 | */ |
||
125 | public function setFluentFactory(callable $factory) |
||
129 | |||
130 | 1 | /** |
|
131 | 1 | * @param ClassMetadata $metadata |
|
132 | * |
||
133 | * @return Fluent |
||
134 | */ |
||
135 | protected function getFluent(ClassMetadata $metadata) |
||
139 | |||
140 | 5 | /** |
|
141 | * Create a mapping object from a mapping class, assuming an empty constructor. |
||
142 | * |
||
143 | * @param string $class |
||
144 | * |
||
145 | * @throws InvalidArgumentException |
||
146 | * |
||
147 | * @return Mapping |
||
148 | */ |
||
149 | protected function createMapping($class) |
||
163 | } |
||
164 |