blob: adcdd7d1a20af67897c86a5db53849796ede53c7 (
plain)
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
|
<?php
declare(strict_types=1);
namespace Nsfisis\TinyPhpHttpd\Http;
use Psr\Http\Message\StreamInterface;
final class Stream implements StreamInterface
{
private string $content;
private int $position = 0;
public function __construct(string $content = '')
{
$this->content = $content;
}
public function __toString(): string
{
return $this->content;
}
public function close(): void
{
$this->content = '';
$this->position = 0;
}
public function detach(): null
{
return null;
}
public function getSize(): int
{
return strlen($this->content);
}
public function tell(): int
{
return $this->position;
}
public function eof(): bool
{
return $this->position >= strlen($this->content);
}
public function isSeekable(): bool
{
return true;
}
public function seek(int $offset, int $whence = SEEK_SET): void
{
switch ($whence) {
case SEEK_SET:
$this->position = $offset;
break;
case SEEK_CUR:
$this->position += $offset;
break;
case SEEK_END:
$this->position = strlen($this->content) + $offset;
break;
}
}
public function rewind(): void
{
$this->position = 0;
}
public function isWritable(): bool
{
return true;
}
public function write(string $string): int
{
$this->content .= $string;
return strlen($string);
}
public function isReadable(): bool
{
return true;
}
public function read(int $length): string
{
$result = substr($this->content, $this->position, $length);
$this->position += strlen($result);
return $result;
}
public function getContents(): string
{
$result = substr($this->content, $this->position);
$this->position = strlen($this->content);
return $result;
}
public function getMetadata(?string $key = null): ?array
{
return $key === null ? [] : null;
}
}
|