-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBEncoding.cs
241 lines (217 loc) · 6.69 KB
/
BEncoding.cs
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
using System;
using System.Collections.Generic;
using System.IO;
using System.Collections;
using System.Diagnostics;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
namespace CSL
{
static class BEncoding
{
#region Decode
private static int decode_int(byte[] x, ref int f)
{
string s = "";
while (x[f] != 'e')
{
s += (char)x[f];
f++;
}
f++;
Regex r = new Regex("^(0|-?[1-9][0-9]*)$", RegexOptions.Compiled);
//if (!r.IsMatch(s))
//throw new BitTorrentException("Integer value is invalid");
return int.Parse(s);
}
// Hack to cater for sha hashes
private static byte[] decode_bytes(byte[] x, ref int f)
{
string s = "";
while (x[f] != ':')
{
s += (char)x[f];
f++;
}
f++;
Regex r = new Regex("^(0|[1-9][0-9]*)$", RegexOptions.Compiled);
//if (!r.IsMatch(s))
//throw new BitTorrentException("Integer value is invalid");
int l = int.Parse(s);
if (l > 0)
{
byte[] rv = new byte[l];
Buffer.BlockCopy(x, f, rv, 0, l);
f += l;
return rv;
}
return null;
}
public static string decode_string(byte[] x, ref int f)
{
string s = "";
while (x[f] != ':')
{
s += (char)x[f];
f++;
}
f++;
Regex r = new Regex("^(0|[1-9][0-9]*)$", RegexOptions.Compiled);
//if (!r.IsMatch(s))
//throw new BitTorrentException("Integer value is invalid");
int l = int.Parse(s);
string temp = "";
if (l > 0)
{
StringBuilder sb = new StringBuilder(l);
int i = f;
f += l;
while (i < f)
sb.Append((char)x[i++]);
return sb.ToString();
}
return temp;
}
public static object decode_list(byte[] x, ref int f)
{
ArrayList r = new ArrayList();
while (x[f] != 'e')
{
object v = bdecode_rec(x, ref f);
r.Add(v);
}
f += 1;
return r;
}
public static ListDictionary decode_dict(byte[] x, ref int f)
{
ListDictionary r = new ListDictionary();
string lastkey = null;
while (x[f] != 'e')
{
string k = decode_string(x, ref f);
if (lastkey != null && lastkey.CompareTo(k) >= 0)
//throw new BitTorrentException("Dictionary contains duplicate key or is incorrectly sorted");
lastkey = k;
object v;
// Hack - certain keys are read as byte[]
if ((k != "pieces") && (k != "peer id"))
{
v = bdecode_rec(x, ref f);
}
else
{
v = decode_bytes(x, ref f);
}
r.Add(k, v);
}
f += 1;
return r;
}
public static object bdecode_rec(byte[] x, ref int f)
{
byte t = x[f];
if (t == 'i')
{
f += 1;
return decode_int(x, ref f);
}
else if (t == 'l')
{
f += 1;
return decode_list(x, ref f);
}
else if (t == 'd')
{
f += 1;
return decode_dict(x, ref f);
}
else
return decode_string(x, ref f);
}
public static object Decode(string message)
{
return Decode(System.Text.Encoding.ASCII.GetBytes(message));
}
public static object Decode(FileInfo fi)
{
byte[] barray = File.ReadAllBytes(fi.FullName);
return Decode(barray);
}
public static object Decode(byte[] message)
{
object r = null;
int l = 0;
try
{
r = bdecode_rec(message, ref l);
}
//TODO: Work out what type of expection is thrown when the bencoded file is too short
catch // IndexError
{
throw new Exception("ValueError");
}
if (l != message.Length)
{
//throw new BitTorrentException("BEncoded message is too long");
}
return r;
}
#endregion
#region Encode
public static void bencode_rec(object x, MemoryStream sw)
{
if (x is int || x is long || x is ulong || x is uint)
{
byte[] op = Encoding.UTF8.GetBytes(string.Format("i{0:d}e", x));
sw.Write(op, 0, op.Length);
}
else if (x is string)
{
byte[] op = Encoding.UTF8.GetBytes(string.Format("{0:d}:{1}", ((string)x).Length, x));
sw.Write(op, 0, op.Length);
}
else if (x is byte[])
{
byte[] op = Encoding.UTF8.GetBytes(string.Format("{0:d}:", ((byte[])x).Length));
sw.Write(op, 0, op.Length);
op = (byte[])x;
sw.Write(op, 0, op.Length);
}
else if (x is ArrayList)
{
sw.WriteByte((byte)'l');
ArrayList a = (ArrayList)x;
for (int i = 0; i < a.Count; i++)
{
bencode_rec(a[i], sw);
}
sw.WriteByte((byte)'e');
}
else if (x is ListDictionary)
{
sw.WriteByte((byte)'d');
ListDictionary a = (ListDictionary)x;
ArrayList b = new ArrayList(a.Keys);
b.Sort();
foreach (string k in b)
{
bencode_rec(k, sw);
bencode_rec(a[k], sw);
}
sw.WriteByte((byte)'e');
}
else
Debug.Fail("Unknown Type");
}
//TODO: Should encode as string
public static byte[] Encode(object x)
{
MemoryStream ms = new MemoryStream();
bencode_rec(x, ms);
return ms.ToArray();
}
#endregion
}
}