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 pathStreamView.cs
319 lines (247 loc) · 8.48 KB
/
StreamView.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
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
/* 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;
using System.Collections.Generic;
using System.IO;
namespace OpenMcdf
{
/// <inheritdoc />
/// <summary>
/// Stream decorator for a Sector or miniSector chain
/// </summary>
internal class StreamView : Stream
{
private readonly int _sectorSize;
private long _position;
private readonly Stream _stream;
private readonly bool _isFatStream;
public StreamView(IList<Sector> sectorChain, int sectorSize, Stream stream)
{
if (sectorSize <= 0)
throw new CFException("Sector size must be greater than zero");
BaseSectorChain = sectorChain ?? throw new CFException("Sector Chain cannot be null");
_sectorSize = sectorSize;
_stream = stream;
}
public StreamView(IList<Sector> sectorChain, int sectorSize, long length, Queue<Sector> availableSectors,
Stream stream, bool isFatStream = false)
: this(sectorChain, sectorSize, stream)
{
_isFatStream = isFatStream;
AdjustLength(length, availableSectors);
}
public IEnumerable<Sector> FreeSectors { get; } = new List<Sector>();
public IList<Sector> BaseSectorChain { get; }
public override bool CanRead => true;
public override bool CanSeek => true;
public override bool CanWrite => true;
public override void Flush()
{
}
private long _length;
public override long Length => _length;
public override long Position
{
get => _position;
set
{
if (_position > _length - 1)
throw new ArgumentOutOfRangeException(nameof(value));
_position = value;
}
}
#if !NETSTANDARD1_6 && !NETSTANDARD2_0
public override void Close()
{
base.Close();
}
#endif
private byte[] _buf = new byte[4];
public int ReadInt32()
{
Read(_buf, 0, 4);
return (((_buf[0] | (_buf[1] << 8)) | (_buf[2] << 16)) | (_buf[3] << 24));
}
public override int Read(byte[] buffer, int offset, int count)
{
var nRead = 0;
int nToRead;
if (BaseSectorChain == null || BaseSectorChain.Count <= 0)
return 0;
// First sector
var secIndex = (int) (_position / _sectorSize);
// Bytes to read count is the min between request count
// and sector border
nToRead = Math.Min(
BaseSectorChain[0].Size - ((int) _position % _sectorSize),
count);
if (secIndex < BaseSectorChain.Count)
{
Buffer.BlockCopy(
BaseSectorChain[secIndex].GetData(),
(int) (_position % _sectorSize),
buffer,
offset,
nToRead
);
}
nRead += nToRead;
secIndex++;
// Central sectors
while (nRead < (count - _sectorSize))
{
nToRead = _sectorSize;
Buffer.BlockCopy(
BaseSectorChain[secIndex].GetData(),
0,
buffer,
offset + nRead,
nToRead
);
nRead += nToRead;
secIndex++;
}
// Last sector
nToRead = count - nRead;
if (nToRead != 0)
{
Buffer.BlockCopy(
BaseSectorChain[secIndex].GetData(),
0,
buffer,
offset + nRead,
nToRead
);
nRead += nToRead;
}
_position += nRead;
return nRead;
}
public override long Seek(long offset, SeekOrigin origin)
{
switch (origin)
{
case SeekOrigin.Begin:
_position = offset;
break;
case SeekOrigin.Current:
_position += offset;
break;
case SeekOrigin.End:
_position = Length - offset;
break;
default:
throw new ArgumentOutOfRangeException(nameof(origin), origin, null);
}
AdjustLength(_position);
return _position;
}
private void AdjustLength(long value, Queue<Sector> availableSectors = null)
{
_length = value;
var delta = value - (BaseSectorChain.Count * (long) _sectorSize);
if (delta <= 0)
return;
// enlargement required
var nSec = (int) Math.Ceiling(((double) delta / _sectorSize));
while (nSec > 0)
{
Sector t;
if (availableSectors == null || availableSectors.Count == 0)
{
t = new Sector(_sectorSize, _stream);
if (_sectorSize == Sector.MINISECTOR_SIZE)
t.Type = SectorType.Mini;
}
else
{
t = availableSectors.Dequeue();
}
if (_isFatStream)
{
t.InitFATData();
}
BaseSectorChain.Add(t);
nSec--;
}
}
public override void SetLength(long value)
{
AdjustLength(value);
}
public void WriteInt32(int val)
{
var buffer = new byte[4];
buffer[0] = (byte) val;
buffer[1] = (byte) (val << 8);
buffer[2] = (byte) (val << 16);
buffer[3] = (byte) (val << 32);
Write(buffer, 0, 4);
}
public override void Write(byte[] buffer, int offset, int count)
{
var byteWritten = 0;
int roundByteWritten;
// Assure length
if ((_position + count) > _length)
AdjustLength((_position + count));
if (BaseSectorChain == null)
return;
// First sector
var secOffset = (int) (_position / _sectorSize);
var secShift = (int) _position % _sectorSize;
roundByteWritten = Math.Min(_sectorSize - (int) (_position % _sectorSize), count);
if (secOffset < BaseSectorChain.Count)
{
Buffer.BlockCopy(
buffer,
offset,
BaseSectorChain[secOffset].GetData(),
secShift,
roundByteWritten
);
BaseSectorChain[secOffset].DirtyFlag = true;
}
byteWritten += roundByteWritten;
offset += roundByteWritten;
secOffset++;
// Central sectors
while (byteWritten < (count - _sectorSize))
{
roundByteWritten = _sectorSize;
Buffer.BlockCopy(
buffer,
offset,
BaseSectorChain[secOffset].GetData(),
0,
roundByteWritten
);
BaseSectorChain[secOffset].DirtyFlag = true;
byteWritten += roundByteWritten;
offset += roundByteWritten;
secOffset++;
}
// Last sector
roundByteWritten = count - byteWritten;
if (roundByteWritten != 0)
{
Buffer.BlockCopy(
buffer,
offset,
BaseSectorChain[secOffset].GetData(),
0,
roundByteWritten
);
BaseSectorChain[secOffset].DirtyFlag = true;
offset += roundByteWritten;
byteWritten += roundByteWritten;
}
_position += count;
}
}
}