-
Notifications
You must be signed in to change notification settings - Fork 0
/
FileLink.php
143 lines (127 loc) · 3.19 KB
/
FileLink.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?php
namespace Aternos\IO\System\Link;
use Aternos\IO\Exception\DeleteException;
use Aternos\IO\Exception\GetTargetException;
use Aternos\IO\Exception\SetTargetException;
use Aternos\IO\Interfaces\Features\GetPathInterface;
use Aternos\IO\Interfaces\Types\FileInterface;
use Aternos\IO\Interfaces\Types\Link\FileLinkInterface;
use Aternos\IO\System\File\File;
/**
* Class FileLink
*
* Filesystem link to a file
*
* @package Aternos\IO\System\Link
*/
class FileLink extends Link implements FileLinkInterface
{
/**
* @inheritDoc
* @throws GetTargetException
*/
public function close(): static
{
$this->getTarget()->close();
return $this;
}
/**
* @inheritDoc
* @throws GetTargetException
*/
public function getTarget(): FileInterface
{
if ($this->target) {
return $this->target;
}
$targetPath = $this->getTargetPath();
if (!$this->targetExists()) {
return $this->target = new File($targetPath);
}
$target = static::getIOElementFromPath($targetPath);
if (!$target instanceof FileInterface) {
throw new GetTargetException("Could not get file link target because link target is not a file (" . $this->path . ")", $this);
}
return $this->target = $target;
}
/**
* @inheritDoc
* @throws SetTargetException
* @throws DeleteException
*/
public function setTarget(GetPathInterface $target): static
{
if (!$target instanceof FileInterface) {
throw new SetTargetException("Could not set file link target because target is not a file (" . $this->path . " -> " . $target->getPath() . ")", $this);
}
return parent::setTarget($target);
}
/**
* @inheritDoc
* @throws GetTargetException
*/
public function create(): static
{
$this->getTarget()->create();
return $this;
}
/**
* @inheritDoc
* @throws GetTargetException
*/
public function getPosition(): int
{
return $this->getTarget()->getPosition();
}
/**
* @inheritDoc
* @throws GetTargetException
*/
public function getSize(): int
{
return $this->getTarget()->getSize();
}
/**
* @inheritDoc
* @throws GetTargetException
*/
public function read(int $length): string
{
return $this->getTarget()->read($length);
}
/**
* @inheritDoc
* @throws GetTargetException
*/
public function setPosition(int $position): static
{
$this->getTarget()->setPosition($position);
return $this;
}
/**
* @inheritDoc
* @throws GetTargetException
*/
public function truncate(int $size = 0): static
{
$this->getTarget()->truncate($size);
return $this;
}
/**
* @inheritDoc
* @throws GetTargetException
*/
public function write(string $buffer): static
{
$this->getTarget()->write($buffer);
return $this;
}
/**
* @inheritDoc
* @throws GetTargetException
*/
public function isEndOfFile(): bool
{
return $this->getTarget()->isEndOfFile();
}
}