-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathProcessLauncherTask.php
More file actions
301 lines (260 loc) · 9.57 KB
/
Copy pathProcessLauncherTask.php
File metadata and controls
301 lines (260 loc) · 9.57 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
<?php declare(strict_types=1);
/*
* This file is part of the CleverAge/ProcessBundle package.
*
* Copyright (C) 2017-2021 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\Model\AbstractConfigurableTask;
use CleverAge\ProcessBundle\Model\FlushableTaskInterface;
use CleverAge\ProcessBundle\Model\IterableTaskInterface;
use CleverAge\ProcessBundle\Model\ProcessState;
use CleverAge\ProcessBundle\Model\SubprocessInstance;
use CleverAge\ProcessBundle\Registry\ProcessConfigurationRegistry;
use Psr\Log\LoggerInterface;
use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException;
use Symfony\Component\HttpKernel\KernelInterface;
use Symfony\Component\OptionsResolver\Exception\AccessException;
use Symfony\Component\OptionsResolver\Exception\ExceptionInterface;
use Symfony\Component\OptionsResolver\Exception\UndefinedOptionsException;
use Symfony\Component\OptionsResolver\Options;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Process\Exception\RuntimeException;
/**
* Launch a new process for each input received, input must be a scalar, a resource or a \Traversable
*
* @author Valentin Clavreul <vclavreul@clever-age.com>
* @author Vincent Chalnot <vchalnot@clever-age.com>
*/
class ProcessLauncherTask extends AbstractConfigurableTask implements FlushableTaskInterface, IterableTaskInterface
{
/** @var LoggerInterface */
protected $logger;
/** @var ProcessConfigurationRegistry */
protected $processRegistry;
/** @var KernelInterface */
protected $kernel;
/** @var SubprocessInstance[] */
protected $launchedProcesses = [];
/** @var \SplQueue */
protected $finishedBuffers;
/** @var bool */
protected $flushMode = false;
/**
* @param LoggerInterface $logger
* @param ProcessConfigurationRegistry $processRegistry
* @param KernelInterface $kernel
*/
public function __construct(
LoggerInterface $logger,
ProcessConfigurationRegistry $processRegistry,
KernelInterface $kernel
) {
$this->logger = $logger;
$this->processRegistry = $processRegistry;
$this->kernel = $kernel;
$this->finishedBuffers = new \SplQueue();
}
/**
* @param ProcessState $state
*
* @throws ExceptionInterface
*/
public function execute(ProcessState $state)
{
// TODO still not perfect, optimize and secure it
$this->handleProcesses($state); // Handler processes first
if (!$this->flushMode) {
$this->handleInput($state);
$state->setSkipped(true);
} elseif (!$this->finishedBuffers->isEmpty()) {
$state->setOutput($this->finishedBuffers->dequeue());
// After dequeue, stop flush
if ($this->finishedBuffers->isEmpty()) {
$this->flushMode = false;
}
} else {
$state->setSkipped(true);
}
}
/**
* @param ProcessState $state
*/
public function flush(ProcessState $state)
{
$this->flushMode = true;
if (!$this->finishedBuffers->isEmpty()) {
$state->setOutput($this->finishedBuffers->dequeue());
} else {
$state->setSkipped(true);
}
// After dequeue, stop flush
if ($this->finishedBuffers->isEmpty() && !count($this->launchedProcesses)) {
$this->flushMode = false;
}
}
/**
* @param ProcessState $state
*
* @throws ExceptionInterface
* @return bool
*/
public function next(ProcessState $state)
{
$this->handleProcesses($state);
// if there is some data waiting, handle it in priority
if ($this->finishedBuffers->count() > 0) {
$this->flushMode = true;
return true;
}
// if we are in flush mode, we should wait for process to finish
if ($this->flushMode) {
return count($this->launchedProcesses) > 0;
}
usleep($this->getOption($state, 'sleep_on_finalize_interval'));
return false;
}
/**
* @param ProcessState $state
*
* @throws ExceptionInterface
*/
protected function handleInput(ProcessState $state)
{
$options = $this->getOptions($state);
while (\count($this->launchedProcesses) >= $options['max_processes']) {
$this->handleProcesses($state);
usleep($options['sleep_interval']);
}
$process = $this->launchProcess($state);
$this->launchedProcesses[] = $process;
$logContext = [
'input' => $process->getProcess()->getInput(),
];
$this->logger->debug("Running command: {$process->getProcess()->getCommandLine()}", $logContext);
usleep($options['sleep_interval_after_launch']);
}
/**
* @param ProcessState $state
*
* @throws ExceptionInterface
* @return SubprocessInstance
*/
protected function launchProcess(ProcessState $state)
{
$input = null !== $state->getInput() ? (string) $state->getInput() : null;
$subprocess = new SubprocessInstance(
$this->kernel,
$this->getOption($state, 'process'),
$input,
$this->getOption($state, 'context'),
[
SubprocessInstance::OPTION_JSON_BUFFERING => $this->getOption($state, 'json_buffering'),
]
);
return $subprocess->buildProcess()->start();
}
/**
* @param ProcessState $state
*
* @throws RuntimeException
*/
protected function handleProcesses(ProcessState $state)
{
foreach ($this->launchedProcesses as $key => $process) {
if (!$process->getProcess()->isTerminated()) {
// @todo handle incremental error output properly, specially for terminal where logs are lost
echo $process->getProcess()->getIncrementalErrorOutput();
continue;
}
$logContext = [
'cmd' => $process->getProcess()->getCommandLine(),
'input' => $process->getProcess()->getInput(),
'exit_code' => $process->getProcess()->getExitCode(),
'exit_code_text' => $process->getProcess()->getExitCodeText(),
];
$this->logger->debug('Command terminated', $logContext);
unset($this->launchedProcesses[$key]);
if (0 !== $process->getProcess()->getExitCode()) {
$this->logger->critical($process->getProcess()->getErrorOutput(), $logContext);
$this->killProcesses();
throw new \RuntimeException("Sub-process has failed: {$process->getProcess()->getExitCodeText()}");
}
$result = $process->getResult();
if (isset($result)) {
$this->finishedBuffers->enqueue($result);
}
}
}
/**
* @param OptionsResolver $resolver
*
* @throws AccessException
* @throws UndefinedOptionsException
* @throws InvalidConfigurationException
*/
protected function configureOptions(OptionsResolver $resolver)
{
$resolver->setRequired(
[
'process',
]
);
/** @noinspection PhpUnusedParameterInspection */
$resolver->setNormalizer(
'process',
function (Options $options, $value) {
if (!$this->processRegistry->hasProcessConfiguration($value)) {
throw new InvalidConfigurationException("Unknown process {$value}");
}
return $value;
}
);
$resolver->setDefaults(
[
'max_processes' => 3,
'sleep_interval' => 1,
'sleep_interval_after_launch' => 1,
'sleep_on_finalize_interval' => 1,
'process_options' => [],
'context' => [],
'json_buffering' => false,
]
);
$resolver->setAllowedTypes('max_processes', ['integer']);
$resolver->setAllowedTypes('sleep_interval', ['integer', 'double']);
$resolver->setAllowedTypes('sleep_interval_after_launch', ['integer', 'double']);
$resolver->setAllowedTypes('sleep_on_finalize_interval', ['integer', 'double']);
$microsecondNormalizer = function (Options $options, $value) {
return (int)($value * 1000000);
};
$resolver->setNormalizer('sleep_interval', $microsecondNormalizer);
$resolver->setNormalizer('sleep_interval_after_launch', $microsecondNormalizer);
$resolver->setNormalizer('sleep_on_finalize_interval', $microsecondNormalizer);
$resolver->setAllowedTypes('context', ['array']);
$resolver->setAllowedTypes('json_buffering', ['boolean']);
$resolver->setAllowedTypes('process_options', ['array']);
$resolver->setNormalizer(
'process_options',
static function (Options $options, $value) {
if (!empty($value)) {
// Todo deprecation trigger
throw new \InvalidArgumentException('Deprecated option, please contact support for help');
}
return $value;
}
);
}
/**
* Kill all running processes
*/
protected function killProcesses()
{
foreach ($this->launchedProcesses as $process) {
$process->stop(5);
}
}
}