This repository was archived by the owner on Apr 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathStreamRW.cs
140 lines (117 loc) · 3.91 KB
/
StreamRW.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
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* The Original Code is OpenMCDF - Compound Document Format library.
*
* The Initial Developer of the Original Code is Federico Blaseotto.*/
using System.IO;
namespace OpenMcdf
{
internal class StreamRW
{
private readonly byte[] _buffer;
private readonly Stream _stream;
public StreamRW(Stream stream)
{
_stream = stream;
_buffer = new byte[8];
}
public long Seek(long offset)
{
return _stream.Seek(offset, SeekOrigin.Begin);
}
public byte ReadByte()
{
_stream.Read(_buffer, 0, 1);
return _buffer[0];
}
public ushort ReadUInt16()
{
_stream.Read(_buffer, 0, 2);
return (ushort) (_buffer[0] | (_buffer[1] << 8));
}
public int ReadInt32()
{
_stream.Read(_buffer, 0, 4);
return _buffer[0] | (_buffer[1] << 8) | (_buffer[2] << 16) | (_buffer[3] << 24);
}
public uint ReadUInt32()
{
_stream.Read(_buffer, 0, 4);
return (uint) (_buffer[0] | (_buffer[1] << 8) | (_buffer[2] << 16) | (_buffer[3] << 24));
}
public long ReadInt64()
{
_stream.Read(_buffer, 0, 8);
var ls = (uint) (_buffer[0] | (_buffer[1] << 8) | (_buffer[2] << 16) | (_buffer[3] << 24));
var ms = (uint) ((_buffer[4]) | (_buffer[5] << 8) | (_buffer[6] << 16) | (_buffer[7] << 24));
return (long) (((ulong) ms << 32) | ls);
}
public ulong ReadUInt64()
{
_stream.Read(_buffer, 0, 8);
return (ulong) (_buffer[0] | (_buffer[1] << 8) | (_buffer[2] << 16) | (_buffer[3] << 24) | (_buffer[4] << 32) |
(_buffer[5] << 40) | (_buffer[6] << 48) | (_buffer[7] << 56));
}
public byte[] ReadBytes(int count)
{
var result = new byte[count];
_stream.Read(result, 0, count);
return result;
}
public byte[] ReadBytes(int count, out int rCount)
{
var result = new byte[count];
rCount = _stream.Read(result, 0, count);
return result;
}
public void Write(byte b)
{
_buffer[0] = b;
_stream.Write(_buffer, 0, 1);
}
public void Write(ushort value)
{
_buffer[0] = (byte) value;
_buffer[1] = (byte) (value >> 8);
_stream.Write(_buffer, 0, 2);
}
public void Write(int value)
{
_buffer[0] = (byte) value;
_buffer[1] = (byte) (value >> 8);
_buffer[2] = (byte) (value >> 16);
_buffer[3] = (byte) (value >> 24);
_stream.Write(_buffer, 0, 4);
}
public void Write(long value)
{
_buffer[0] = (byte) value;
_buffer[1] = (byte) (value >> 8);
_buffer[2] = (byte) (value >> 16);
_buffer[3] = (byte) (value >> 24);
_buffer[4] = (byte) (value >> 32);
_buffer[5] = (byte) (value >> 40);
_buffer[6] = (byte) (value >> 48);
_buffer[7] = (byte) (value >> 56);
_stream.Write(_buffer, 0, 8);
}
public void Write(uint value)
{
_buffer[0] = (byte) value;
_buffer[1] = (byte) (value >> 8);
_buffer[2] = (byte) (value >> 16);
_buffer[3] = (byte) (value >> 24);
_stream.Write(_buffer, 0, 4);
}
public void Write(byte[] value)
{
_stream.Write(value, 0, value.Length);
}
public void Close()
{
//Nothing to do ;-)
}
}
}