1
0
mirror of https://github.com/danog/file.git synced 2024-12-03 09:47:54 +01:00
file/lib/BlockingHandle.php

144 lines
3.1 KiB
PHP
Raw Normal View History

<?php
2015-08-13 01:02:41 +02:00
namespace Amp\File;
use Amp\ByteStream\ClosedException;
use Amp\ByteStream\StreamException;
2015-08-13 01:02:41 +02:00
2018-07-27 21:00:26 +02:00
class BlockingHandle implements Handle
{
2015-08-13 01:02:41 +02:00
private $fh;
private $path;
private $mode;
/**
* @param resource $fh An open uv filesystem descriptor
2018-07-27 21:00:26 +02:00
* @param string $path
* @param string $mode
2015-08-13 01:02:41 +02:00
*/
2018-07-27 21:00:26 +02:00
public function __construct($fh, string $path, string $mode)
{
2015-08-13 01:02:41 +02:00
$this->fh = $fh;
$this->path = $path;
$this->mode = $mode;
}
2017-01-11 14:22:06 +01:00
2018-07-27 21:00:26 +02:00
public function __destruct()
{
2016-08-30 21:05:14 +02:00
if ($this->fh !== null) {
\fclose($this->fh);
}
}
2017-01-11 14:22:06 +01:00
2018-07-27 21:00:26 +02:00
/** @inheritdoc */
public function read(int $length = self::DEFAULT_READ_LENGTH): ?string
{
2016-08-30 21:05:14 +02:00
if ($this->fh === null) {
throw new ClosedException("The file has been closed");
2016-08-30 21:05:14 +02:00
}
2017-01-11 14:22:06 +01:00
$data = \fread($this->fh, $length);
2017-06-17 23:41:57 +02:00
2015-08-13 01:02:41 +02:00
if ($data !== false) {
2018-07-27 21:00:26 +02:00
return '' !== $data ? $data : null;
2015-08-13 01:02:41 +02:00
}
2017-06-17 23:41:57 +02:00
2018-07-27 21:00:26 +02:00
throw new StreamException("Failed reading from file handle");
2015-08-13 01:02:41 +02:00
}
2018-07-27 21:00:26 +02:00
/** @inheritdoc */
public function write(string $data): void
{
2016-08-30 21:05:14 +02:00
if ($this->fh === null) {
throw new ClosedException("The file has been closed");
2016-08-30 21:05:14 +02:00
}
2017-01-11 14:22:06 +01:00
2015-08-13 01:02:41 +02:00
$len = \fwrite($this->fh, $data);
2017-06-17 23:41:57 +02:00
2018-07-27 21:00:26 +02:00
if ($len === false) {
throw new StreamException("Failed writing to file handle");
2015-08-13 01:02:41 +02:00
}
}
2018-07-27 21:00:26 +02:00
/** @inheritdoc */
public function end(string $data = ""): void
{
try {
$this->write($data);
} finally {
$this->close();
}
2017-05-12 22:43:23 +02:00
}
2018-07-27 21:00:26 +02:00
/** @inheritdoc */
public function close(): void
{
2016-08-30 21:05:14 +02:00
if ($this->fh === null) {
2018-07-27 21:00:26 +02:00
return;
2016-08-30 21:05:14 +02:00
}
2017-01-11 14:22:06 +01:00
2016-08-30 21:05:14 +02:00
$fh = $this->fh;
$this->fh = null;
2017-01-11 14:22:06 +01:00
if (@\fclose($fh)) {
2018-07-27 21:00:26 +02:00
return;
2015-08-13 01:02:41 +02:00
}
2017-06-17 23:41:57 +02:00
2018-07-27 21:00:26 +02:00
throw new StreamException("Failed closing file handle");
2015-08-13 01:02:41 +02:00
}
2018-07-27 21:00:26 +02:00
/** @inheritdoc */
public function seek(int $position, int $whence = \SEEK_SET): int
{
2016-08-30 21:05:14 +02:00
if ($this->fh === null) {
throw new ClosedException("The file has been closed");
2016-08-30 21:05:14 +02:00
}
2017-01-11 14:22:06 +01:00
2015-08-13 01:02:41 +02:00
switch ($whence) {
case \SEEK_SET:
case \SEEK_CUR:
case \SEEK_END:
2016-08-30 21:05:14 +02:00
if (@\fseek($this->fh, $position, $whence) === -1) {
2018-07-27 21:00:26 +02:00
throw new StreamException("Could not seek in file");
2016-08-30 21:05:14 +02:00
}
2018-07-27 21:00:26 +02:00
return $this->tell();
2015-08-13 01:02:41 +02:00
default:
2016-08-30 21:05:14 +02:00
throw new \Error(
2015-08-13 01:02:41 +02:00
"Invalid whence parameter; SEEK_SET, SEEK_CUR or SEEK_END expected"
);
}
}
2018-07-27 21:00:26 +02:00
/** @inheritdoc */
public function tell(): int
{
2016-08-30 21:05:14 +02:00
if ($this->fh === null) {
throw new ClosedException("The file has been closed");
2016-08-30 21:05:14 +02:00
}
2017-01-11 14:22:06 +01:00
2015-08-13 01:02:41 +02:00
return \ftell($this->fh);
}
2018-07-27 21:00:26 +02:00
/** @inheritdoc */
public function eof(): bool
{
2016-08-30 21:05:14 +02:00
if ($this->fh === null) {
throw new ClosedException("The file has been closed");
2016-08-30 21:05:14 +02:00
}
2017-01-11 14:22:06 +01:00
2015-08-13 01:02:41 +02:00
return \feof($this->fh);
}
2018-07-27 21:00:26 +02:00
/** @inheritdoc */
public function path(): string
{
2015-08-13 01:02:41 +02:00
return $this->path;
}
2018-07-27 21:00:26 +02:00
/** @inheritdoc */
public function mode(): string
{
2015-08-13 01:02:41 +02:00
return $this->mode;
}
}