-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathDataInputStream.cs
More file actions
409 lines (370 loc) · 11.4 KB
/
DataInputStream.cs
File metadata and controls
409 lines (370 loc) · 11.4 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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
namespace Loon.Java
{
using System;
using System.IO;
using System.Text;
public interface DataInput
{
bool ReadBoolean();
sbyte ReadByte();
char ReadChar();
double ReadDouble();
float ReadFloat();
void ReadFully(byte[] buffer);
void ReadFully(byte[] buffer, int offset, int count);
int Read();
int ReadInt();
string ReadLine();
long ReadLong();
short ReadShort();
int ReadUnsignedByte();
int ReadUnsignedShort();
string ReadUTF();
int SkipBytes(int count);
long Skip(long cnt);
}
public class DataInputStream : DataInput
{
private byte[] buff;
private int limit = -1;
private long marked = -1L;
private Stream stream;
public DataInputStream(Stream stream)
{
this.stream = stream;
this.buff = new byte[8];
}
public int Available()
{
return (int)(this.stream.Length - this.stream.Position);
}
public static string ConvertUTF8WithBuf(byte[] buf, char[] outb, int offset, int utfSize)
{
int num = 0;
int index = 0;
while (num < utfSize)
{
if ((outb[index] = (char)buf[offset + num++]) < '\x0080')
{
index++;
}
else
{
int num3;
if (((num3 = outb[index]) & '\x00e0') == 0xc0)
{
if (num >= utfSize)
{
throw new Exception("K0062");
}
int num4 = buf[num++];
if ((num4 & 0xc0) != 0x80)
{
throw new Exception("K0062");
}
outb[index++] = (char)(((num3 & 0x1f) << 6) | (num4 & 0x3f));
}
else
{
if ((num3 & 240) != 0xe0)
{
throw new Exception("K0065");
}
if ((num + 1) >= utfSize)
{
throw new Exception("K0063");
}
int num5 = buf[num++];
int num6 = buf[num++];
if (((num5 & 0xc0) != 0x80) || ((num6 & 0xc0) != 0x80))
{
throw new Exception("K0064");
}
outb[index++] = (char)((((num3 & 15) << 12) | ((num5 & 0x3f) << 6)) | (num6 & 0x3f));
}
continue;
}
}
return new string(outb, 0, index);
}
private string DecodeUTF(int utfSize)
{
return DecodeUTF(utfSize, this);
}
private static string DecodeUTF(int utfSize, DataInput stream)
{
byte[] buffer = new byte[utfSize];
char[] outb = new char[utfSize];
stream.ReadFully(buffer, 0, utfSize);
return ConvertUTF8WithBuf(buffer, outb, 0, utfSize);
}
public void Mark(int limit)
{
this.marked = this.stream.Position;
this.limit = limit;
}
public int Read()
{
return stream.ReadByte();
}
public int Read(byte[] buffer)
{
return this.stream.Read(buffer, 0, buffer.Length);
}
public int Read(byte[] buffer, int offset, int length)
{
return this.stream.Read(buffer, offset, length);
}
public int Limit(){
return this.limit;
}
public bool ReadBoolean()
{
int num = this.stream.ReadByte();
if (num < 0)
{
throw new EndOfStreamException();
}
return (num != 0);
}
public sbyte ReadByte()
{
int num = this.stream.ReadByte();
if (num < 0)
{
throw new EndOfStreamException();
}
return (sbyte)num;
}
public char ReadChar()
{
if (this.ReadToBuff(2) < 0)
{
throw new EndOfStreamException();
}
return (char)(((this.buff[0] & 0xff) << 8) | (this.buff[1] & 0xff));
}
public double ReadDouble()
{
return BitConverter.Int64BitsToDouble(this.ReadLong());
}
public float ReadFloat()
{
return (float)BitConverter.DoubleToInt64Bits((double)this.ReadInt());
}
public void ReadFully(byte[] buffer)
{
this.ReadFully(buffer, 0, buffer.Length);
}
public void ReadFully(sbyte[] buffer)
{
this.ReadFully(buffer, 0, buffer.Length);
}
public void ReadFully(byte[] buffer, int offset, int length)
{
if (length < 0)
{
throw new IndexOutOfRangeException();
}
if (length != 0)
{
if (this.stream == null)
{
throw new NullReferenceException("Stream is null");
}
if (buffer == null)
{
throw new NullReferenceException("buffer is null");
}
if ((offset < 0) || (offset > (buffer.Length - length)))
{
throw new IndexOutOfRangeException();
}
while (length > 0)
{
int num = this.stream.Read(buffer, offset, length);
if (num == 0)
{
throw new EndOfStreamException();
}
offset += num;
length -= num;
}
}
}
public void ReadFully(sbyte[] buffer, int offset, int length)
{
int num = offset;
if (length < 0)
{
throw new IndexOutOfRangeException();
}
if (length != 0)
{
if (this.stream == null)
{
throw new NullReferenceException("Stream is null");
}
if (buffer == null)
{
throw new NullReferenceException("buffer is null");
}
if ((offset < 0) || (offset > (buffer.Length - length)))
{
throw new IndexOutOfRangeException();
}
byte[] buffer2 = new byte[buffer.Length];
while (length > 0)
{
int num2 = this.stream.Read(buffer2, offset, length);
if (num2 == 0)
{
throw new EndOfStreamException();
}
offset += num2;
length -= num2;
}
for (int i = num; i < buffer.Length; i++)
{
buffer[i] = (sbyte)buffer2[i];
}
}
}
public int ReadInt()
{
if (this.ReadToBuff(4) < 0)
{
throw new EndOfStreamException();
}
return (((((this.buff[0] & 0xff) << 0x18) | ((this.buff[1] & 0xff) << 0x10)) | ((this.buff[2] & 0xff) << 8)) | (this.buff[3] & 0xff));
}
public string ReadLine()
{
int num=0;
int num2=0;
StringBuilder builder = new StringBuilder(80);
bool flag = false;
while (true)
{
do
{
num = this.stream.ReadByte();
switch (num)
{
case -1:
if ((builder.Length == 0) && !flag)
{
return null;
}
return builder.ToString();
case 10:
return builder.ToString();
}
}
while (num2 == 13);
builder.Append((char)num);
}
}
public long ReadLong()
{
if (this.ReadToBuff(8) < 0)
{
throw new EndOfStreamException();
}
int num = ((((this.buff[0] & 0xff) << 0x18) | ((this.buff[1] & 0xff) << 0x10)) | ((this.buff[2] & 0xff) << 8)) | (this.buff[3] & 0xff);
int num2 = ((((this.buff[4] & 0xff) << 0x18) | ((this.buff[5] & 0xff) << 0x10)) | ((this.buff[6] & 0xff) << 8)) | (this.buff[7] & 0xff);
return (long)(((num & 0xffffffffL) << 0x20) | (num2 & 0xffffffffL));
}
public short ReadShort()
{
if (this.ReadToBuff(2) < 0)
{
throw new EndOfStreamException();
}
return (short)(((this.buff[0] & 0xff) << 8) | (this.buff[1] & 0xff));
}
private int ReadToBuff(int count)
{
int offset = 0;
while (offset < count)
{
int num2 = this.stream.Read(this.buff, offset, count - offset);
if (num2 == 0)
{
return num2;
}
offset += num2;
}
return offset;
}
public int ReadUnsignedByte()
{
int num = this.stream.ReadByte();
if (num < 0)
{
throw new EndOfStreamException();
}
return num;
}
public int ReadUnsignedShort()
{
if (this.ReadToBuff(2) < 0)
{
throw new EndOfStreamException();
}
return (ushort)(((this.buff[0] & 0xff) << 8) | (this.buff[1] & 0xff));
}
public string ReadUTF()
{
return this.DecodeUTF(this.ReadUnsignedShort());
}
public static string ReadUTF(DataInput stream)
{
return DecodeUTF(stream.ReadUnsignedShort(), stream);
}
public void Reset()
{
if (this.marked > -1L)
{
this.stream.Position = this.marked;
}
else
{
this.stream.Position = 0L;
}
}
public long Skip(long cnt)
{
long n = cnt;
while (n > 0)
{
if (Read() == -1)
return cnt - n;
n--;
}
return cnt - n;
}
public int SkipBytes(int count)
{
int num = 0;
while (num < count)
{
this.stream.ReadByte();
num++;
}
if (num < 0)
{
throw new EndOfStreamException();
}
return num;
}
public void Close()
{
if (stream != null)
{
stream.Close();
stream = null;
}
}
}
}