1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 20:04:51 +01:00
file/lib/ParallelHandle.php
2017-07-06 16:51:20 -05:00

246 lines
6.3 KiB
PHP

<?php
namespace Amp\File;
use Amp\ByteStream\ClosedException;
use Amp\ByteStream\StreamException;
use Amp\Coroutine;
use Amp\Parallel\Worker\TaskException;
use Amp\Parallel\Worker\Worker;
use Amp\Parallel\Worker\WorkerException;
use Amp\Promise;
use Amp\Success;
use function Amp\call;
class ParallelHandle implements Handle {
/** @var \Amp\Parallel\Worker\Worker */
private $worker;
/** @var int|null */
private $id;
/** @var string */
private $path;
/** @var int */
private $position;
/** @var int */
private $size;
/** @var string */
private $mode;
/** @var bool True if an operation is pending. */
private $busy = false;
/** @var int Number of pending write operations. */
private $pendingWrites = 0;
/** @var bool */
private $writable = true;
/** @var \Amp\Promise|null */
private $closing;
/**
* @param \Amp\Parallel\Worker\Worker $worker
* @param int $id
* @param string $path
* @param int $size
* @param string $mode
*/
public function __construct(Worker $worker, int $id, string $path, int $size, string $mode) {
$this->worker = $worker;
$this->id = $id;
$this->path = $path;
$this->size = $size;
$this->mode = $mode;
$this->position = $this->mode[0] === 'a' ? $this->size : 0;
}
public function __destruct() {
if ($this->id !== null) {
$this->close();
}
}
/**
* {@inheritdoc}
*/
public function path(): string {
return $this->path;
}
/**
* {@inheritdoc}
*/
public function close(): Promise {
if ($this->closing) {
return $this->closing;
}
$this->writable = false;
if ($this->worker->isRunning()) {
$this->closing = $this->worker->enqueue(new Internal\FileTask('fclose', [], $this->id));
$this->id = null;
} else {
$this->closing = new Success;
}
return $this->closing;
}
/**
* {@inheritdoc}
*/
public function eof(): bool {
return $this->pendingWrites === 0 && $this->size <= $this->position;
}
public function read(int $length = self::DEFAULT_READ_LENGTH): Promise {
if ($this->id === null) {
throw new ClosedException("The file has been closed");
}
if ($this->busy) {
throw new PendingOperationError;
}
return new Coroutine($this->doRead($length));
}
private function doRead(int $length): \Generator {
$this->busy = true;
try {
$data = yield $this->worker->enqueue(new Internal\FileTask('fread', [$length], $this->id));
$this->position += \strlen($data);
return $data;
} catch (TaskException $exception) {
throw new StreamException("Reading from the file failed", 0, $exception);
} catch (WorkerException $exception) {
throw new StreamException("Sending the task to the worker failed", 0, $exception);
} finally {
$this->busy = false;
}
}
/**
* {@inheritdoc}
*/
public function write(string $data): Promise {
if ($this->id === null) {
throw new ClosedException("The file has been closed");
}
if ($this->busy && $this->pendingWrites === 0) {
throw new PendingOperationError;
}
if (!$this->writable) {
throw new ClosedException("The file is no longer writable");
}
return new Coroutine($this->doWrite($data));
}
/**
* {@inheritdoc}
*/
public function end(string $data = ""): Promise {
return call(function () use ($data) {
$promise = $this->write($data);
$this->writable = false;
// ignore any errors
yield Promise\any([$this->close()]);
return $promise;
});
}
private function doWrite(string $data): \Generator {
++$this->pendingWrites;
$this->busy = true;
try {
$length = yield $this->worker->enqueue(new Internal\FileTask('fwrite', [$data], $this->id));
} catch (TaskException $exception) {
throw new StreamException("Writing to the file failed", 0, $exception);
} catch (WorkerException $exception) {
throw new StreamException("Sending the task to the worker failed", 0, $exception);
} finally {
if (--$this->pendingWrites === 0) {
$this->busy = false;
}
}
$this->position += $length;
return $length;
}
/**
* {@inheritdoc}
*/
public function seek(int $offset, int $whence = SEEK_SET): Promise {
if ($this->id === null) {
throw new ClosedException("The file has been closed");
}
if ($this->busy) {
throw new PendingOperationError;
}
return new Coroutine($this->doSeek($offset, $whence));
}
private function doSeek(int $offset, int $whence) {
switch ($whence) {
case \SEEK_SET:
case \SEEK_CUR:
case \SEEK_END:
try {
$this->position = yield $this->worker->enqueue(
new Internal\FileTask('fseek', [$offset, $whence], $this->id)
);
if ($this->position > $this->size) {
$this->size = $this->position;
}
return $this->position;
} catch (TaskException $exception) {
throw new StreamException('Seeking in the file failed.', 0, $exception);
} catch (WorkerException $exception) {
throw new StreamException("Sending the task to the worker failed", 0, $exception);
}
default:
throw new \Error('Invalid whence value. Use SEEK_SET, SEEK_CUR, or SEEK_END.');
}
}
/**
* {@inheritdoc}
*/
public function tell(): int {
return $this->position;
}
/**
* {@inheritdoc}
*/
public function size(): int {
return $this->size;
}
/**
* {@inheritdoc}
*/
public function mode(): string {
return $this->mode;
}
}