1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 17:52:14 +01:00
parallel/lib/Sync/ChannelledStream.php

116 lines
3.2 KiB
PHP
Raw Normal View History

2016-12-30 02:16:04 +01:00
<?php
2015-12-05 06:50:32 +01:00
2016-08-23 23:47:40 +02:00
namespace Amp\Parallel\Sync;
2016-08-18 18:04:48 +02:00
use Amp\Coroutine;
2016-08-23 23:47:40 +02:00
use Amp\Parallel\{ ChannelException, SerializationException };
2016-08-18 18:04:48 +02:00
use Amp\Stream\Stream;
2016-11-15 00:43:44 +01:00
use Interop\Async\Promise;
2015-12-05 06:50:32 +01:00
/**
* An asynchronous channel for sending data between threads and processes.
*
* Supports full duplex read and write.
*/
2016-08-18 18:04:48 +02:00
class ChannelledStream implements Channel {
const HEADER_LENGTH = 5;
2015-12-05 06:50:32 +01:00
2016-08-26 17:10:03 +02:00
/** @var \Amp\Stream\Stream */
2015-12-05 06:50:32 +01:00
private $read;
2016-08-26 17:10:03 +02:00
/** @var \Amp\Stream\Stream */
2015-12-05 06:50:32 +01:00
private $write;
2016-08-26 17:10:03 +02:00
/** @var \Closure */
2015-12-05 06:50:32 +01:00
private $errorHandler;
/**
* Creates a new channel instance.
*
2016-08-18 18:04:48 +02:00
* @param \Amp\Stream\Stream $read
* @param \Amp\Stream\Stream|null $write
2015-12-05 06:50:32 +01:00
*/
2016-08-18 18:04:48 +02:00
public function __construct(Stream $read, Stream $write = null) {
2016-08-23 01:25:19 +02:00
if ($write === null) {
2015-12-05 06:50:32 +01:00
$this->write = $read;
} else {
$this->write = $write;
}
$this->read = $read;
2016-09-02 01:10:52 +02:00
$this->errorHandler = 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
));
}
2015-12-05 06:50:32 +01:00
};
}
/**
* {@inheritdoc}
*/
2016-11-15 00:43:44 +01:00
public function send($data): Promise {
2016-08-18 18:04:48 +02:00
return new Coroutine($this->doSend($data));
}
2016-11-15 00:43:44 +01:00
private function doSend($data): \Generator {
2015-12-05 06:50:32 +01:00
// Serialize the data to send into the channel.
try {
2016-09-02 01:10:52 +02:00
$data = \serialize($data);
2016-01-23 07:00:56 +01:00
} catch (\Throwable $exception) {
2016-01-23 18:20:58 +01:00
throw new SerializationException(
2016-08-18 18:04:48 +02:00
"The given data cannot be sent because it is not serializable.", $exception
2015-12-05 06:50:32 +01:00
);
}
try {
2016-09-02 01:10:52 +02:00
return yield $this->write->write(\pack("CL", 0, \strlen($data)) . $data);
2016-01-23 18:29:22 +01:00
} catch (\Throwable $exception) {
2016-08-18 18:04:48 +02:00
throw new ChannelException("Sending on the channel failed. Did the context die?", $exception);
2015-12-05 06:50:32 +01:00
}
}
/**
* {@inheritdoc}
*/
2016-11-15 00:43:44 +01:00
public function receive(): Promise {
2016-08-18 18:04:48 +02:00
return new Coroutine($this->doReceive());
}
2016-11-15 00:43:44 +01:00
private function doReceive(): \Generator {
2015-12-05 06:50:32 +01:00
try {
2016-08-18 18:04:48 +02:00
// Read the message length first to determine how much needs to be read from the stream.
$buffer = yield $this->read->read(self::HEADER_LENGTH);
$data = \unpack("Cprefix/Llength", $buffer);
2015-12-05 07:54:15 +01:00
2016-08-18 18:04:48 +02:00
if ($data["prefix"] !== 0) {
throw new ChannelException("Invalid header received");
2015-12-05 07:54:15 +01:00
}
2016-08-18 18:04:48 +02:00
$buffer = yield $this->read->read($data["length"]);
2016-01-23 18:29:22 +01:00
} catch (\Throwable $exception) {
2016-08-18 18:04:48 +02:00
throw new ChannelException("Reading from the channel failed. Did the context die?", $exception);
2015-12-05 06:50:32 +01:00
}
2016-08-18 18:04:48 +02:00
\set_error_handler($this->errorHandler);
2015-12-05 06:50:32 +01:00
// Attempt to unserialize the received data.
try {
2016-08-18 18:04:48 +02:00
$data = \unserialize($buffer);
2016-01-23 07:00:56 +01:00
} catch (\Throwable $exception) {
2016-08-18 18:04:48 +02:00
throw new SerializationException("Exception thrown when unserializing data", $exception);
2015-12-05 06:50:32 +01:00
} finally {
2016-08-18 18:04:48 +02:00
\restore_error_handler();
2015-12-05 06:50:32 +01:00
}
2016-01-23 07:00:56 +01:00
return $data;
2015-12-05 06:50:32 +01:00
}
}