forked from azjezz/psl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReadWriteHandle.php
100 lines (83 loc) · 3.19 KB
/
ReadWriteHandle.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
declare(strict_types=1);
namespace Psl\File;
use Psl\Filesystem;
use Psl\IO;
use Psl\Str;
final class ReadWriteHandle extends Internal\AbstractHandleWrapper implements ReadWriteHandleInterface
{
use IO\ReadHandleConvenienceMethodsTrait;
use IO\WriteHandleConvenienceMethodsTrait;
private ReadWriteHandleInterface $readWriteHandle;
/**
* @param non-empty-string $file
*
* @throws Exception\NotFileException If $file points to a non-file node on the filesystem.
* @throws Exception\AlreadyCreatedException If $file is already created, and $write_mode is {@see WriteMode::MUST_CREATE}.
* @throws Exception\NotFoundException If $file does not exist, and $write_mode is {@see WriteMode::TRUNCATE} or {@see WriteMode::APPEND}.
* @throws Exception\NotWritableException If $file exists, and is non-writable
* @throws Exception\NotReadableException If $file exists, and is non-readable.
* @throws Exception\RuntimeException If unable to create the $file if it does not exist.
*/
public function __construct(string $file, WriteMode $write_mode = WriteMode::OPEN_OR_CREATE)
{
$is_file = Filesystem\is_file($file);
if (!$is_file && Filesystem\exists($file)) {
throw Exception\NotFileException::for($file);
}
$open_or_create = $write_mode === WriteMode::OPEN_OR_CREATE;
$must_create = $write_mode === WriteMode::MUST_CREATE;
if ($must_create && $is_file) {
throw Exception\AlreadyCreatedException::for($file);
}
$creating = $open_or_create || $must_create;
if (!$creating && !$is_file) {
throw Exception\NotFoundException::for($file);
}
if ((!$creating || ($open_or_create && $is_file))) {
if (!Filesystem\is_writable($file)) {
throw Exception\NotWritableException::for($file);
}
if (!Filesystem\is_readable($file)) {
throw Exception\NotReadableException::for($file);
}
}
if ($creating && !$is_file) {
try {
Filesystem\create_file($file);
} catch (Filesystem\Exception\RuntimeException $previous) {
throw new Exception\RuntimeException(Str\format('Failed to create the file "%s".', $file), previous: $previous);
}
}
$this->readWriteHandle = Internal\open($file, 'r' . ($write_mode->value) . '+', read: true, write: true);
parent::__construct($this->readWriteHandle);
}
/**
* {@inheritDoc}
*/
public function tryRead(?int $max_bytes = null): string
{
return $this->readWriteHandle->tryRead($max_bytes);
}
/**
* {@inheritDoc}
*/
public function read(?int $max_bytes = null, ?float $timeout = null): string
{
return $this->readWriteHandle->read($max_bytes, $timeout);
}
/**
* {@inheritDoc}
*/
public function tryWrite(string $bytes): int
{
return $this->readWriteHandle->tryWrite($bytes);
}
/**
* {@inheritDoc}
*/
public function write(string $bytes, ?float $timeout = null): int
{
return $this->readWriteHandle->write($bytes, $timeout);
}
}