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
|
|
|
|
2017-05-18 09:51:31 +02:00
|
|
|
use Amp\ByteStream\InputStream;
|
|
|
|
use Amp\ByteStream\OutputStream;
|
|
|
|
use Amp\ByteStream\StreamException;
|
|
|
|
use Amp\Coroutine;
|
|
|
|
use Amp\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 {
|
2017-05-10 09:05:35 +02:00
|
|
|
/** @var \Amp\ByteStream\InputStream */
|
2015-12-05 06:50:32 +01:00
|
|
|
private $read;
|
|
|
|
|
2017-05-10 09:05:35 +02:00
|
|
|
/** @var \Amp\ByteStream\OutputStream */
|
2015-12-05 06:50:32 +01:00
|
|
|
private $write;
|
|
|
|
|
2017-04-16 17:12:42 +02:00
|
|
|
/** @var \SplQueue */
|
|
|
|
private $received;
|
|
|
|
|
2017-06-08 06:33:13 +02:00
|
|
|
/** @var \Amp\Parser\Parser */
|
2017-04-16 17:12:42 +02:00
|
|
|
private $parser;
|
2015-12-05 06:50:32 +01:00
|
|
|
|
|
|
|
/**
|
2017-03-25 07:19:46 +01:00
|
|
|
* Creates a new channel from the given stream objects. Note that $read and $write can be the same object.
|
2015-12-05 06:50:32 +01:00
|
|
|
*
|
2017-05-10 09:05:35 +02:00
|
|
|
* @param \Amp\ByteStream\InputStream $read
|
|
|
|
* @param \Amp\ByteStream\OutputStream $write
|
2015-12-05 06:50:32 +01:00
|
|
|
*/
|
2017-05-10 09:05:35 +02:00
|
|
|
public function __construct(InputStream $read, OutputStream $write) {
|
2015-12-05 06:50:32 +01:00
|
|
|
$this->read = $read;
|
2017-03-25 07:19:46 +01:00
|
|
|
$this->write = $write;
|
2017-04-16 17:12:42 +02:00
|
|
|
$this->received = new \SplQueue;
|
2017-06-08 06:33:13 +02:00
|
|
|
$this->parser = new ChannelParser([$this->received, 'push']);
|
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));
|
|
|
|
}
|
2017-05-10 09:05:35 +02:00
|
|
|
|
2016-11-15 00:43:44 +01:00
|
|
|
private function doSend($data): \Generator {
|
2015-12-05 06:50:32 +01:00
|
|
|
try {
|
2017-06-08 06:33:13 +02:00
|
|
|
return yield $this->write->write($this->parser->encode($data));
|
2017-04-16 17:12:42 +02:00
|
|
|
} catch (StreamException $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());
|
|
|
|
}
|
2017-05-10 09:05:35 +02:00
|
|
|
|
2016-11-15 00:43:44 +01:00
|
|
|
private function doReceive(): \Generator {
|
2017-04-16 17:12:42 +02:00
|
|
|
while ($this->received->isEmpty()) {
|
2017-05-10 09:05:35 +02:00
|
|
|
if (($chunk = yield $this->read->read()) === null) {
|
2017-04-16 17:12:42 +02:00
|
|
|
throw new ChannelException("The channel closed. Did the context die?");
|
2015-12-05 07:54:15 +01:00
|
|
|
}
|
2015-12-05 06:50:32 +01:00
|
|
|
|
2017-04-16 17:12:42 +02:00
|
|
|
try {
|
2017-06-08 06:33:13 +02:00
|
|
|
$this->parser->push($chunk);
|
2017-04-16 17:12:42 +02:00
|
|
|
} catch (StreamException $exception) {
|
|
|
|
throw new ChannelException("Reading from the channel failed. Did the context die?", $exception);
|
|
|
|
}
|
2015-12-05 06:50:32 +01:00
|
|
|
}
|
|
|
|
|
2017-04-16 17:12:42 +02:00
|
|
|
return $this->received->shift();
|
2015-12-05 06:50:32 +01:00
|
|
|
}
|
|
|
|
}
|