Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
6 / 6 |
CRAP | |
100.00% |
21 / 21 |
| SmalldbDefinitionBagReader | |
100.00% |
1 / 1 |
|
100.00% |
6 / 6 |
10 | |
100.00% |
21 / 21 |
| __construct | |
100.00% |
1 / 1 |
1 | |
100.00% |
4 / 4 |
|||
| addPreprocessor | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
|||
| getDefinitionBag | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
|||
| addFromAnnotatedClass | |
100.00% |
1 / 1 |
3 | |
100.00% |
8 / 8 |
|||
| addFromAnnotatedClasses | |
100.00% |
1 / 1 |
3 | |
100.00% |
5 / 5 |
|||
| addFromClassLocator | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
|||
| <?php declare(strict_types = 1); | |
| /* | |
| * Copyright (c) 2019, Josef Kufner <josef@kufner.cz> | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software | |
| * distributed under the License is distributed on an "AS IS" BASIS, | |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| * See the License for the specific language governing permissions and | |
| * limitations under the License. | |
| * | |
| */ | |
| namespace Smalldb\StateMachine; | |
| use Closure; | |
| use ReflectionClass; | |
| use Smalldb\StateMachine\Definition\AnnotationReader\AnnotationReader; | |
| use Smalldb\StateMachine\Definition\AnnotationReader\MissingStateMachineAnnotationException; | |
| use Smalldb\StateMachine\Definition\Builder\Preprocessor; | |
| use Smalldb\StateMachine\Definition\Builder\StateMachineDefinitionBuilderFactory; | |
| use Smalldb\StateMachine\Definition\StateMachineDefinition; | |
| use Smalldb\ClassLocator\ClassLocator; | |
| class SmalldbDefinitionBagReader | |
| { | |
| private SmalldbDefinitionBag $definitionBag; | |
| private StateMachineDefinitionBuilderFactory $definitionBuilderFactory; | |
| private AnnotationReader $annotationReader; | |
| public function __construct() | |
| { | |
| $this->definitionBag = new SmalldbDefinitionBag(); | |
| $this->definitionBuilderFactory = StateMachineDefinitionBuilderFactory::createDefaultFactory(); | |
| $this->annotationReader = new AnnotationReader($this->definitionBuilderFactory); | |
| } | |
| public function addPreprocessor(Preprocessor $preprocessor): void | |
| { | |
| $this->definitionBuilderFactory->addPreprocessor($preprocessor); | |
| } | |
| public function getDefinitionBag(): SmalldbDefinitionBag | |
| { | |
| return $this->definitionBag; | |
| } | |
| public function addFromAnnotatedClass(string $className): StateMachineDefinition | |
| { | |
| $reflectionClass = new ReflectionClass($className); | |
| $definition = $this->annotationReader->getStateMachineDefinition($reflectionClass); | |
| try { | |
| $machineType = $this->definitionBag->addDefinition($definition); | |
| if ($machineType !== $className) { | |
| $this->definitionBag->addAlias($className, $machineType); | |
| } | |
| } | |
| catch(InvalidArgumentException $ex) { | |
| throw new InvalidArgumentException($className . ": " . $ex->getMessage(), $ex->getCode(), $ex); | |
| } | |
| return $definition; | |
| } | |
| /** | |
| * @return StateMachineDefinition[] | |
| */ | |
| public function addFromAnnotatedClasses(iterable $classNames): array | |
| { | |
| $foundDefinitions = []; | |
| foreach ($classNames as $className) { | |
| try { | |
| $foundDefinitions[$className] = $this->addFromAnnotatedClass($className); | |
| } | |
| catch (MissingStateMachineAnnotationException $ex) { | |
| // Ignore classes without @StateMachine annotation. | |
| } | |
| } | |
| return $foundDefinitions; | |
| } | |
| /** | |
| * @return StateMachineDefinition[] | |
| */ | |
| public function addFromClassLocator(ClassLocator $classLocator): array | |
| { | |
| return $this->addFromAnnotatedClasses($classLocator->getClasses()); | |
| } | |
| } |