mirror of
https://github.com/danog/parallel.git
synced 2024-12-02 17:52:14 +01:00
84 lines
2.0 KiB
PHP
84 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace Amp\Parallel\Worker\Internal;
|
|
|
|
use Amp\Failure;
|
|
use Amp\Parallel\Worker\TaskError;
|
|
use Amp\Parallel\Worker\TaskException;
|
|
use Amp\Promise;
|
|
|
|
/** @internal */
|
|
final class TaskFailure extends TaskResult
|
|
{
|
|
const PARENT_EXCEPTION = 0;
|
|
const PARENT_ERROR = 1;
|
|
|
|
/** @var string */
|
|
private $type;
|
|
|
|
/** @var int */
|
|
private $parent;
|
|
|
|
/** @var string */
|
|
private $message;
|
|
|
|
/** @var int|string */
|
|
private $code;
|
|
|
|
/** @var array */
|
|
private $trace;
|
|
|
|
/** @var self|null */
|
|
private $previous;
|
|
|
|
public function __construct(string $id, \Throwable $exception)
|
|
{
|
|
parent::__construct($id);
|
|
$this->type = \get_class($exception);
|
|
$this->parent = $exception instanceof \Error ? self::PARENT_ERROR : self::PARENT_EXCEPTION;
|
|
$this->message = $exception->getMessage();
|
|
$this->code = $exception->getCode();
|
|
$this->trace = $exception->getTraceAsString();
|
|
|
|
if ($previous = $exception->getPrevious()) {
|
|
$this->previous = new self($id, $previous);
|
|
}
|
|
}
|
|
|
|
public function promise(): Promise
|
|
{
|
|
return new Failure($this->createException());
|
|
}
|
|
|
|
private function createException(): \Throwable
|
|
{
|
|
$previous = $this->previous ? $this->previous->createException() : null;
|
|
|
|
if ($this->parent === self::PARENT_ERROR) {
|
|
return new TaskError(
|
|
$this->type,
|
|
\sprintf(
|
|
'Uncaught %s in worker with message "%s" and code "%s"',
|
|
$this->type,
|
|
$this->message,
|
|
$this->code
|
|
),
|
|
$this->trace,
|
|
$previous
|
|
);
|
|
}
|
|
|
|
return new TaskException(
|
|
$this->type,
|
|
\sprintf(
|
|
'Uncaught %s in worker with message "%s" and code "%s"',
|
|
$this->type,
|
|
$this->message,
|
|
$this->code
|
|
),
|
|
$this->trace,
|
|
$previous
|
|
);
|
|
}
|
|
}
|