-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathProcessExecutorTask.php
More file actions
74 lines (63 loc) · 2.27 KB
/
Copy pathProcessExecutorTask.php
File metadata and controls
74 lines (63 loc) · 2.27 KB
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
<?php
declare(strict_types=1);
/*
* This file is part of the CleverAge/ProcessBundle package.
*
* Copyright (c) Clever-Age
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace CleverAge\ProcessBundle\Task\Process;
use CleverAge\ProcessBundle\Manager\ProcessManager;
use CleverAge\ProcessBundle\Model\AbstractConfigurableTask;
use CleverAge\ProcessBundle\Model\ProcessState;
use CleverAge\ProcessBundle\Registry\ProcessConfigurationRegistry;
use Psr\Log\LoggerInterface;
use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException;
use Symfony\Component\OptionsResolver\Options;
use Symfony\Component\OptionsResolver\OptionsResolver;
/**
* Execute one or many processes while chaining inputs in a iterable way.
*/
class ProcessExecutorTask extends AbstractConfigurableTask
{
protected ?string $process = null;
public function __construct(
protected ProcessManager $processManager,
protected ProcessConfigurationRegistry $processRegistry,
protected LoggerInterface $logger,
) {
}
public function execute(ProcessState $state): void
{
$input = $state->getInput();
$process = $this->getOption($state, 'process');
$output = $this->processManager->execute($process, $input, $this->getOption($state, 'context'));
$state->setOutput($output);
}
#[\Override]
public function initialize(ProcessState $state): void
{
parent::initialize($state);
$this->process = $this->getOption($state, 'process');
}
protected function configureOptions(OptionsResolver $resolver): void
{
$resolver->setRequired('process');
$resolver->setDefaults([
'context' => [],
]);
$resolver->addAllowedTypes('process', 'string');
$resolver->setAllowedTypes('context', ['array']);
$resolver->setNormalizer(
'process',
function (Options $options, $processCode) {
if (!$this->processRegistry->hasProcessConfiguration($processCode)) {
throw new InvalidConfigurationException("Unknown process {$processCode}");
}
return $processCode;
}
);
}
}