mirror of
https://github.com/danog/parallel.git
synced 2024-12-02 17:52:14 +01:00
136 lines
4.0 KiB
PHP
136 lines
4.0 KiB
PHP
<?php
|
|
|
|
namespace Amp\Parallel\Sync;
|
|
|
|
use Amp\ByteStream\InputStream;
|
|
use Amp\ByteStream\OutputStream;
|
|
use Amp\ByteStream\Parser;
|
|
use Amp\ByteStream\StreamException;
|
|
use Amp\Coroutine;
|
|
use Amp\Promise;
|
|
|
|
/**
|
|
* An asynchronous channel for sending data between threads and processes.
|
|
*
|
|
* Supports full duplex read and write.
|
|
*/
|
|
class ChannelledStream implements Channel {
|
|
const HEADER_LENGTH = 5;
|
|
|
|
/** @var \Amp\ByteStream\InputStream */
|
|
private $read;
|
|
|
|
/** @var \Amp\ByteStream\OutputStream */
|
|
private $write;
|
|
|
|
/** @var \SplQueue */
|
|
private $received;
|
|
|
|
/** @var \Amp\ByteStream\Parser */
|
|
private $parser;
|
|
|
|
/**
|
|
* Creates a new channel from the given stream objects. Note that $read and $write can be the same object.
|
|
*
|
|
* @param \Amp\ByteStream\InputStream $read
|
|
* @param \Amp\ByteStream\OutputStream $write
|
|
*/
|
|
public function __construct(InputStream $read, OutputStream $write) {
|
|
$this->read = $read;
|
|
$this->write = $write;
|
|
$this->received = new \SplQueue;
|
|
$this->parser = new Parser(self::parser($this->received, static function ($errno, $errstr, $errfile, $errline) {
|
|
if ($errno & \error_reporting()) {
|
|
throw new ChannelException(\sprintf(
|
|
'Received corrupted data. Errno: %d; %s in file %s on line %d',
|
|
$errno,
|
|
$errstr,
|
|
$errfile,
|
|
$errline
|
|
));
|
|
}
|
|
}));
|
|
}
|
|
|
|
/**
|
|
* @param \SplQueue $queue
|
|
* @param callable $errorHandler
|
|
*
|
|
* @return \Generator
|
|
*
|
|
* @throws \Amp\Parallel\Sync\ChannelException
|
|
* @throws \Amp\Parallel\Sync\SerializationException
|
|
*/
|
|
private static function parser(\SplQueue $queue, callable $errorHandler): \Generator {
|
|
while (true) {
|
|
$data = \unpack("Cprefix/Llength", yield self::HEADER_LENGTH);
|
|
|
|
if ($data["prefix"] !== 0) {
|
|
throw new ChannelException("Invalid header received");
|
|
}
|
|
|
|
$data = yield $data["length"];
|
|
|
|
\set_error_handler($errorHandler);
|
|
|
|
// Attempt to unserialize the received data.
|
|
try {
|
|
$data = \unserialize($data);
|
|
} catch (\Throwable $exception) {
|
|
throw new SerializationException("Exception thrown when unserializing data", $exception);
|
|
} finally {
|
|
\restore_error_handler();
|
|
}
|
|
|
|
$queue->push($data);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function send($data): Promise {
|
|
return new Coroutine($this->doSend($data));
|
|
}
|
|
|
|
private function doSend($data): \Generator {
|
|
// Serialize the data to send into the channel.
|
|
try {
|
|
$data = \serialize($data);
|
|
} catch (\Throwable $exception) {
|
|
throw new SerializationException(
|
|
"The given data cannot be sent because it is not serializable.", $exception
|
|
);
|
|
}
|
|
|
|
try {
|
|
return yield $this->write->write(\pack("CL", 0, \strlen($data)) . $data);
|
|
} catch (StreamException $exception) {
|
|
throw new ChannelException("Sending on the channel failed. Did the context die?", $exception);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function receive(): Promise {
|
|
return new Coroutine($this->doReceive());
|
|
}
|
|
|
|
private function doReceive(): \Generator {
|
|
while ($this->received->isEmpty()) {
|
|
if (($chunk = yield $this->read->read()) === null) {
|
|
throw new ChannelException("The channel closed. Did the context die?");
|
|
}
|
|
|
|
try {
|
|
yield $this->parser->write($chunk);
|
|
} catch (StreamException $exception) {
|
|
throw new ChannelException("Reading from the channel failed. Did the context die?", $exception);
|
|
}
|
|
}
|
|
|
|
return $this->received->shift();
|
|
}
|
|
}
|