-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBencode.php
More file actions
251 lines (210 loc) · 4.46 KB
/
Bencode.php
File metadata and controls
251 lines (210 loc) · 4.46 KB
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<?php
namespace FloFaber\Bencode;
use Exception;
// Starting with PHP 8.1 this is a built-in function
if(!function_exists("array_is_list")){
function array_is_list(array $array) : bool {
$i = 0;
foreach ($array as $k => $v) {
if ($k !== $i++) {
return false;
}
}
return true;
}
}
class Decoder
{
private int $len = 0;
private int $offset = 0;
private string $data = "";
/**
* @throws Exception
*/
public function decode($data)
{
$this->data = $data;
$this->len = strlen($this->data);
$ret = [];
while ($this->offset < $this->len - 1) {
array_push($ret, $this->decode_next());
}
if (count($ret) === 1) {
$ret = $ret[0];
}
return $ret;
}
/**
* @throws Exception
*/
private function decode_next()
{
$char = $this->data[$this->offset];
if (is_numeric($char)) {
return $this->decode_string();
} elseif ($char === "d") {
return $this->decode_dict();
} elseif ($char === "i") {
return $this->decode_int();
} elseif ($char === "l") {
return $this->decode_list();
} else {
throw new Exception("Unexpected character at offset $this->offset: $char");
}
}
/**
* @throws Exception
*/
// i1337e
private function decode_int(): int
{
$e = strpos($this->data, "e", $this->offset);
if ($e === false) {
throw new Exception("Unterminated integer at offset $this->offset");
}
$n = "";
$this->offset++;
while ($this->offset < $e) {
$n .= $this->data[$this->offset];
$this->offset++;
}
$this->offset++;
return (int)$n;
}
/**
* @throws Exception
*/
private function decode_string(): string
{
$len = "";
// 4:pear
// first get the length of the upcoming string
while ($this->offset < $this->len) {
if (is_numeric($this->data[$this->offset])) {
$len .= $this->data[$this->offset];
} else {
break;
}
$this->offset++;
}
$len = (int)$len;
// skip ":"
$this->offset++;
// then get read from current offset to offset + len
$stop = $this->offset + $len;
if ($stop > $this->len) {
throw new Exception("String longer than length of data at offset $this->offset");
}
$s = "";
while ($this->offset < $stop) {
$s .= $this->data[$this->offset];
$this->offset++;
}
return $s;
}
/**
* @throws Exception
*/
private function decode_dict(): array
{
$ret = [];
while ($this->offset < $this->len) {
$k = $this->decode_next();
$v = $this->decode_next();
$ret[$k] = $v;
if ($this->data[$this->offset] === "e") {
$this->offset++;
break;
}
}
return $ret;
}
/**
* @throws Exception
*/
private function decode_list(): array
{
$this->offset++;
$ret = [];
while ($this->offset < $this->len) {
array_push($ret, $this->decode_next());
if ($this->data[$this->offset] === "e") {
$this->offset++;
break;
}
}
return $ret;
}
}
class Encoder
{
/**
* @throws Exception
*/
public function encode($x): string
{
switch (gettype($x)) {
case "string":
return $this->encode_string($x);
case "integer":
return $this->encode_int((int)$x);
case "array":
return $this->encode_array((array)$x);
default:
throw new Exception("Unknown type: " . gettype($x));
}
}
private function encode_string(string $str): string
{
return strlen($str) . ":" . $str;
}
private function encode_int(int $num): string
{
return "i" . $num . "e";
}
/**
* @throws Exception
*/
private function encode_array(array $arr): string
{
if (array_is_list($arr)) {
return $this->encode_list($arr);
} else {
$x = "";
foreach ($arr as $key => $value) {
$k = $this->encode($key);
$v = $this->encode($value);
$x .= $k . $v;
}
return "d" . $x . "e";
}
}
/**
* @throws Exception
*/
private function encode_list(array $list): string
{
$x = "";
foreach ($list as $item) {
$x .= $this->encode($item);
}
return "l" . $x . "e";
}
}
class Bencode
{
/**
* @throws Exception
*/
public static function decode($data)
{
return (new Decoder())->decode($data);
}
/**
* @throws Exception
*/
public static function encode($data): string
{
return (new Encoder())->encode($data);
}
}