1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 20:04:51 +01:00
file/lib/ParallelHandle.php
Aaron Piotrowski 9e7c1c1488
Forbid simultaneous conflicting ops
Signficantly refactored EioHandle and UvHandle.
2017-06-20 00:17:07 -05:00

234 lines
6.0 KiB
PHP

<?php
namespace Amp\File;
use Amp\Coroutine;
use Amp\Parallel\Worker\TaskException;
use Amp\Parallel\Worker\Worker;
use Amp\Parallel\Worker\WorkerException;
use Amp\Promise;
use Amp\Success;
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;
/**
* @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 {
$this->open = false;
if ($this->worker->isRunning()) {
$promise = $this->worker->enqueue(new Internal\FileTask('fclose', [], $this->id));
$this->id = null;
return $promise;
}
return new Success;
}
/**
* {@inheritdoc}
*/
public function eof(): bool {
return ($this->pendingWrites > 0) ? false : ($this->size <= $this->position);
}
public function read(int $length = self::DEFAULT_READ_LENGTH): Promise {
if ($this->id === null) {
throw new FilesystemException("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 FilesystemException("Reading from the file failed", $exception);
} catch (WorkerException $exception) {
throw new FilesystemException("Sending the task to the worker failed", $exception);
} finally {
$this->busy = false;
}
}
/**
* {@inheritdoc}
*/
public function write(string $data): Promise {
if ($this->id === null) {
throw new FilesystemException("The file has been closed");
}
if ($this->busy && $this->pendingWrites === 0) {
throw new PendingOperationError;
}
if (!$this->writable) {
throw new \Error("The file is no longer writable");
}
return new Coroutine($this->doWrite($data));
}
/**
* {@inheritdoc}
*/
public function end(string $data = ""): Promise {
$promise = $this->write($data);
$this->writable = false;
$promise->onResolve([$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 FilesystemException("Writing to the file failed", $exception);
} catch (WorkerException $exception) {
throw new FilesystemException("Sending the task to the worker failed", $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 FilesystemException("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) {
$this->busy = true;
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 FilesystemException('Seeking in the file failed.', $exception);
} catch (WorkerException $exception) {
throw new FilesystemException("Sending the task to the worker failed", $exception);
} finally {
$this->busy = false;
}
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;
}
}