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 pathCFStream.cs
235 lines (217 loc) · 9.55 KB
/
CFStream.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
/* 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
{
/// <summary>
/// OLE structured storage <see cref="T:OpenMcdf.CFStream">stream</see> Object
/// It is contained inside a Storage object in a file-directory
/// relationship and indexed by its name.
/// </summary>
public class CFStream : CFItem
{
internal CFStream(CompoundFile compoundFile, IDirectoryEntry dirEntry)
: base(compoundFile)
{
if (dirEntry == null || dirEntry.SID < 0)
throw new CFException("Attempting to add a CFStream using an uninitialized directory");
DirEntry = dirEntry;
}
/// <summary>
/// Set the data associated with the stream object.
/// </summary>
/// <example>
/// <code>
/// byte[] b = new byte[]{0x0,0x1,0x2,0x3};
/// CompoundFile cf = new CompoundFile();
/// CFStream myStream = cf.RootStorage.AddStream("MyStream");
/// myStream.SetData(b);
/// </code>
/// </example>
/// <param name="data">Data bytes to write to this stream</param>
/// <remarks>Existing associated data will be lost after method invocation</remarks>
public void SetData(byte[] data)
{
CheckDisposed();
CompoundFile.FreeData(this);
CompoundFile.WriteData(this, data);
}
/// <summary>
/// Write a data buffer to a specific position into current CFStream object
/// </summary>
/// <param name="data">Data buffer to Write</param>
/// <param name="position">Position into the stream object to start writing from</param>
/// <remarks>Current stream will be extended to receive data buffer over
/// its current size</remarks>
public void Write(byte[] data, long position)
{
Write(data, position, 0, data.Length);
}
/// <summary>
/// Write <paramref name="count">count</paramref> bytes of a data buffer to a specific position into
/// the current CFStream object starting from the specified position.
/// </summary>
/// <param name="data">Data buffer to copy bytes from</param>
/// <param name="position">Position into the stream object to start writing from</param>
/// <param name="offset">The zero-based byte offset in buffer at which to
/// begin copying bytes to the current <see cref="T:OpenMcdf.CFStream">CFStream</see>. </param>
/// <param name="count">The number of bytes to be written to the current <see cref="T:OpenMcdf.CFStream">CFStream</see> </param>
/// <remarks>Current stream will be extended to receive data buffer over
/// its current size.</remarks>
internal void Write(byte[] data, long position, int offset, int count)
{
CheckDisposed();
CompoundFile.WriteData(this, data, position, offset, count);
}
/// <summary>
/// Append the provided data to stream data.
/// </summary>
/// <example>
/// <code>
/// byte[] b = new byte[]{0x0,0x1,0x2,0x3};
/// byte[] b2 = new byte[]{0x4,0x5,0x6,0x7};
/// CompoundFile cf = new CompoundFile();
/// CFStream myStream = cf.RootStorage.AddStream("MyStream");
/// myStream.SetData(b); // here we could also have invoked .AppendData
/// myStream.AppendData(b2);
/// cf.Save("MyLargeStreamsFile.cfs);
/// cf.Close();
/// </code>
/// </example>
/// <param name="data">Data bytes to append to this stream</param>
/// <remarks>
/// This method allows user to create stream with more than 2GB of data,
/// appending data to the end of existing ones.
/// Large streams (>2GB) are only supported by CFS version 4.
/// Append data can also be invoked on streams with no data in order
/// to simplify its use inside loops.
/// </remarks>
public void Append(byte[] data)
{
CheckDisposed();
if (Size > 0)
{
CompoundFile.AppendData(this, data);
}
else
{
CompoundFile.WriteData(this, data);
}
}
/// <summary>
/// Get all the data associated with the stream object.
/// </summary>
/// <example>
/// <code>
/// CompoundFile cf2 = new CompoundFile("AFileName.cfs");
/// CFStream st = cf2.RootStorage.GetStream("MyStream");
/// byte[] buffer = st.ReadAll();
/// </code>
/// </example>
/// <returns>Array of byte containing stream data</returns>
/// <exception cref="T:OpenMcdf.CFDisposedException">
/// Raised when the owner compound file has been closed.
/// </exception>
public byte[] GetData()
{
CheckDisposed();
return CompoundFile.GetData(this);
}
/// <summary>
/// Read <paramref name="count"/> bytes associated with the stream object, starting from
/// read.
/// </summary>
/// <param name="buffer">Array of bytes that will contain stream data</param>
/// <param name="position">The zero-based byte position in the stream at which to begin reading
/// the data from.</param>
/// <param name="count">The maximum number of bytes to be read from the current stream.</param>
/// <returns>The count of bytes effectively read</returns>
/// <remarks>Method may read a number of bytes lesser then the requested one.</remarks>
/// <code>
/// CompoundFile cf = null;
/// byte[] b = Helpers.GetBuffer(1024 * 2, 0xAA); //2MB buffer
/// CFStream item = cf.RootStorage.GetStream("AStream");
///
/// cf = new CompoundFile("$AFILENAME.cfs", CFSUpdateMode.ReadOnly, CFSConfiguration.Default);
/// item = cf.RootStorage.GetStream("AStream");
///
/// byte[] buffer = new byte[2048];
/// item.Read(buffer, 0, 2048);
/// Assert.IsTrue(Helpers.CompareBuffer(b, buffer));
/// </code>
///
/// <exception cref="T:OpenMcdf.CFDisposedException">
/// Raised when the owner compound file has been closed.
/// </exception>
public int Read(byte[] buffer, long position, int count)
{
CheckDisposed();
return CompoundFile.ReadData(this, position, buffer, 0, count);
}
/// <summary>
/// Read <paramref name="count"/> bytes associated with the stream object, starting from
/// a provided <paramref name="position"/>. Method returns the effective count of bytes
/// read.
/// </summary>
/// <param name="buffer">Array of bytes that will contain stream data</param>
/// <param name="position">The zero-based byte position in the stream at which to begin reading
/// the data from.</param>
/// <param name="offset">The zero-based byte offset in buffer at which to begin storing the data read from the current stream. </param>
/// <param name="count">The maximum number of bytes to be read from the current stream.</param>
/// <returns>The count of bytes effectively read</returns>
/// <remarks>Method may read a number of bytes lesser then the requested one.</remarks>
/// <code>
/// CompoundFile cf = null;
/// byte[] b = Helpers.GetBuffer(1024 * 2, 0xAA); //2MB buffer
/// CFStream item = cf.RootStorage.GetStream("AStream");
///
/// cf = new CompoundFile("$AFILENAME.cfs", CFSUpdateMode.ReadOnly, CFSConfiguration.Default);
/// item = cf.RootStorage.GetStream("AStream");
///
/// byte[] buffer = new byte[2048];
/// item.Read(buffer, 0, 2048);
/// Assert.IsTrue(Helpers.CompareBuffer(b, buffer));
/// </code>
///
/// <exception cref="T:OpenMcdf.CFDisposedException">
/// Raised when the owner compound file has been closed.
/// </exception>
internal int Read(byte[] buffer, long position, int offset, int count)
{
CheckDisposed();
return CompoundFile.ReadData(this, position, buffer, offset, count);
}
/// <summary>
/// Copy data from an existing stream.
/// </summary>
/// <param name="input">A stream to read from</param>
/// <remarks>
/// Input stream will NOT be closed after method invocation.
/// Existing associated data will be deleted.
/// </remarks>
public void CopyFrom(Stream input)
{
CheckDisposed();
var buffer = new byte[input.Length];
if (input.CanSeek)
{
input.Seek(0, SeekOrigin.Begin);
}
input.Read(buffer, 0, (int) input.Length);
SetData(buffer);
}
/// <summary>
/// Resize stream padding with zero if enlarging, trimming data if reducing size.
/// </summary>
/// <param name="length">New length to assign to this stream</param>
public void Resize(long length)
{
CompoundFile.SetStreamLength(this, length);
}
}
}