-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathParallelExecutorFactory.php
More file actions
375 lines (332 loc) · 11.9 KB
/
ParallelExecutorFactory.php
File metadata and controls
375 lines (332 loc) · 11.9 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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
<?php
/*
* This file is part of the Webmozarts Console Parallelization package.
*
* (c) Webmozarts GmbH <office@webmozarts.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Webmozarts\Console\Parallelization;
use Closure;
use Symfony\Component\Console\Input\InputDefinition;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Webmozart\Assert\Assert;
use Webmozarts\Console\Parallelization\ErrorHandler\ErrorHandler;
use Webmozarts\Console\Parallelization\Input\ChildCommandFactory;
use Webmozarts\Console\Parallelization\Process\PhpExecutableFinder;
use Webmozarts\Console\Parallelization\Process\ProcessLauncherFactory;
use Webmozarts\Console\Parallelization\Process\StandardSymfonyProcessFactory;
use Webmozarts\Console\Parallelization\Process\SymfonyProcessLauncherFactory;
use function chr;
use function is_string;
use function Safe\getcwd;
use function str_starts_with;
use const DIRECTORY_SEPARATOR;
use const STDIN;
final class ParallelExecutorFactory
{
private const int CHILD_POLLING_IN_MICRO_SECONDS = 1000; // 1ms
private bool $useDefaultBatchSize = true;
/**
* @param Closure(InputInterface):iterable<string> $fetchItems
* @param Closure(string, InputInterface, OutputInterface):void $runSingleCommand
* @param Closure(positive-int|0|null):string $getItemName
* @param resource $childSourceStream
* @param positive-int $batchSize
* @param positive-int $segmentSize
* @param Closure(InputInterface, OutputInterface):void $runBeforeFirstCommand
* @param Closure(InputInterface, OutputInterface):void $runAfterLastCommand
* @param Closure(InputInterface, OutputInterface, list<string>):void $runBeforeBatch
* @param Closure(InputInterface, OutputInterface, list<string>):void $runAfterBatch
* @param list<string> $phpExecutable
* @param array<string, string> $extraEnvironmentVariables
* @param Closure(): void $processTick
*/
private function __construct(
private Closure $fetchItems,
private Closure $runSingleCommand,
private Closure $getItemName,
private string $commandName,
private InputDefinition $commandDefinition,
private ErrorHandler $errorHandler,
private $childSourceStream,
private int $batchSize,
private int $segmentSize,
private Closure $runBeforeFirstCommand,
private Closure $runAfterLastCommand,
private Closure $runBeforeBatch,
private Closure $runAfterBatch,
private string $progressSymbol,
private array $phpExecutable,
private string $scriptPath,
private string $workingDirectory,
private ?array $extraEnvironmentVariables,
private ProcessLauncherFactory $processLauncherFactory,
private Closure $processTick
) {
}
/**
* @param Closure(InputInterface):iterable<string> $fetchItems
* @param Closure(string, InputInterface, OutputInterface):void $runSingleCommand
* @param Closure(positive-int|0|null):string $getItemName
*/
public static function create(
Closure $fetchItems,
Closure $runSingleCommand,
Closure $getItemName,
string $commandName,
InputDefinition $commandDefinition,
ErrorHandler $errorHandler
): self {
return new self(
$fetchItems,
$runSingleCommand,
$getItemName,
$commandName,
$commandDefinition,
$errorHandler,
STDIN,
50,
50,
self::getNoopClosure(),
self::getNoopClosure(),
self::getNoopClosure(),
self::getNoopClosure(),
chr(254),
PhpExecutableFinder::find(),
self::getScriptPath(),
getcwd(),
null,
new SymfonyProcessLauncherFactory(
new StandardSymfonyProcessFactory(),
),
static fn () => usleep(self::CHILD_POLLING_IN_MICRO_SECONDS),
);
}
/**
* @param resource $childSourceStream
*/
public function withChildSourceStream($childSourceStream): self
{
$clone = clone $this;
$clone->childSourceStream = $childSourceStream;
return $clone;
}
/**
* The number of items to process in a batch. Multiple batches can be
* executed within the main and child processes. This allows to early fetch
* aggregates or persist aggregates in batches for performance optimizations
* for example.
*
* @param positive-int $batchSize
*/
public function withBatchSize(int $batchSize): self
{
$clone = clone $this;
$clone->batchSize = $batchSize;
$clone->useDefaultBatchSize = false;
return $clone;
}
/**
* The number of items to process per child process. This is done in order
* to circumvent some issues recurring to long living processes such as
* memory leaks.
*
* This value is only relevant when ran with child process(es).
*
* @param positive-int $segmentSize
*/
public function withSegmentSize(int $segmentSize): self
{
$clone = clone $this;
$clone->segmentSize = $segmentSize;
return $clone;
}
/**
* Closure executed at the very beginning of the main process.
*
* @param Closure(InputInterface, OutputInterface):void $runBeforeFirstCommand
*/
public function withRunBeforeFirstCommand(Closure $runBeforeFirstCommand): self
{
$clone = clone $this;
$clone->runBeforeFirstCommand = $runBeforeFirstCommand;
return $clone;
}
/**
* Closure executed at the very end of the main process.
*
* @param Closure(InputInterface, OutputInterface):void $runAfterLastCommand
*/
public function withRunAfterLastCommand(Closure $runAfterLastCommand): self
{
$clone = clone $this;
$clone->runAfterLastCommand = $runAfterLastCommand;
return $clone;
}
/**
* Closure executed before executing all the items of the current batch. It
* is executed in either the main or child process depending on whether
* child processes are spawned.
*
* @param Closure(InputInterface, OutputInterface, list<string>):void $runBeforeBatch
*/
public function withRunBeforeBatch(Closure $runBeforeBatch): self
{
$clone = clone $this;
$clone->runBeforeBatch = $runBeforeBatch;
return $clone;
}
/**
* Closure executed after executing all the items of the current batch. It
* is executed in either the main or child process depending on whether
* child processes are spawned.
*
* @param Closure(InputInterface, OutputInterface, list<string>):void $runAfterBatch
*/
public function withRunAfterBatch(Closure $runAfterBatch): self
{
$clone = clone $this;
$clone->runAfterBatch = $runAfterBatch;
return $clone;
}
/**
* The symbol for communicating progress from the child to the main process
* when displaying the progress bar.
*/
public function withProgressSymbol(string $progressSymbol): self
{
$clone = clone $this;
$clone->progressSymbol = $progressSymbol;
return $clone;
}
/**
* The path of the PHP executable. It is the executable that will be used
* to spawn the child process(es).
*
* It can be a string (the path of the PHP executable), or an array
* to set some PHP settings or others, for example:
*
* ```
* ['/path/to/php', '-dmemory_limit=512M']
* ```
*
* However, beware that those settings will take precedence over the
* inherited settings from the main process. As a result, if you execute:
*
* ```
* $ php -dmemory_limit=1024M bin/console my:command
* ```
*
* Then the memory limit of the main process will be 1024M, but the memory
* limit of the child processes will remain 512M.
*
* @param string|list<string> $phpExecutable
*/
public function withPhpExecutable(string|array $phpExecutable): self
{
$clone = clone $this;
$clone->phpExecutable = is_string($phpExecutable) ? [$phpExecutable] : $phpExecutable;
return $clone;
}
/**
* The path of the executable for the application. For example the path to
* the Symfony bin/console script. It is the script that will be used to
* spawn the child process(es).
*/
public function withScriptPath(string $scriptPath): self
{
$clone = clone $this;
$clone->scriptPath = $scriptPath;
return $clone;
}
/**
* The working directory for the child process(es).
*/
public function withWorkingDirectory(string $workingDirectory): self
{
$clone = clone $this;
$clone->workingDirectory = $workingDirectory;
return $clone;
}
/**
* Configure the extra environment variables that are passed to the child
* processes.
*
* @param array<string, string> $extraEnvironmentVariables
*/
public function withExtraEnvironmentVariables(?array $extraEnvironmentVariables): self
{
$clone = clone $this;
$clone->extraEnvironmentVariables = $extraEnvironmentVariables;
return $clone;
}
public function withProcessLauncherFactory(ProcessLauncherFactory $processLauncherFactory): self
{
$clone = clone $this;
$clone->processLauncherFactory = $processLauncherFactory;
return $clone;
}
/**
* @param Closure(): void $processTick
*/
public function withProcessTick(Closure $processTick): self
{
$clone = clone $this;
$clone->processTick = $processTick;
return $clone;
}
public function build(): ParallelExecutor
{
return new ParallelExecutor(
$this->fetchItems,
$this->runSingleCommand,
$this->getItemName,
$this->errorHandler,
$this->childSourceStream,
$this->useDefaultBatchSize ? $this->segmentSize : $this->batchSize,
$this->segmentSize,
$this->runBeforeFirstCommand,
$this->runAfterLastCommand,
$this->runBeforeBatch,
$this->runAfterBatch,
$this->progressSymbol,
new ChildCommandFactory(
$this->phpExecutable,
$this->scriptPath,
$this->commandName,
$this->commandDefinition,
),
$this->workingDirectory,
$this->extraEnvironmentVariables,
$this->processLauncherFactory,
$this->processTick,
);
}
private static function getNoopClosure(): Closure
{
static $noop;
// @codeCoverageIgnoreStart
if (!isset($noop)) {
$noop = static function (): void {};
}
// @codeCoverageIgnoreEnd
/** @phpstan-ignore return.type */
return $noop;
}
private static function getScriptPath(): string
{
$pwd = $_SERVER['PWD'] ?? getcwd();
$scriptName = $_SERVER['SCRIPT_NAME'];
Assert::string($pwd);
Assert::string($scriptName);
return (str_starts_with($scriptName, $pwd)
|| str_starts_with($scriptName, DIRECTORY_SEPARATOR)
)
? $scriptName
: $pwd.DIRECTORY_SEPARATOR.$scriptName;
}
}