2 // System.IO.MemoryStream.cs
4 // Authors: Marcin Szczepanski (marcins@zipworld.com.au)
6 // Gonzalo Paniagua Javier (gonzalo@ximian.com)
8 // (c) 2001,2002 Marcin Szczepanski, Patrik Torstensson
9 // (c) 2003 Ximian, Inc. (http://www.ximian.com)
10 // Copyright (C) 2004 Novell (http://www.novell.com)
14 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
16 // Permission is hereby granted, free of charge, to any person obtaining
17 // a copy of this software and associated documentation files (the
18 // "Software"), to deal in the Software without restriction, including
19 // without limitation the rights to use, copy, modify, merge, publish,
20 // distribute, sublicense, and/or sell copies of the Software, and to
21 // permit persons to whom the Software is furnished to do so, subject to
22 // the following conditions:
24 // The above copyright notice and this permission notice shall be
25 // included in all copies or substantial portions of the Software.
27 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
28 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
30 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
31 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
32 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
33 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36 using System
.Globalization
;
37 using System
.Runtime
.InteropServices
;
43 [MonoLimitation ("Serialization format not compatible with .NET")]
44 public class MemoryStream
: Stream
50 byte [] internalBuffer
;
57 public MemoryStream () : this (0)
61 public MemoryStream (int capacity
)
64 throw new ArgumentOutOfRangeException ("capacity");
68 this.capacity
= capacity
;
69 internalBuffer
= new byte [capacity
];
72 allowGetBuffer
= true;
75 public MemoryStream (byte [] buffer
)
78 throw new ArgumentNullException ("buffer");
80 InternalConstructor (buffer
, 0, buffer
.Length
, true, false);
83 public MemoryStream (byte [] buffer
, bool writable
)
86 throw new ArgumentNullException ("buffer");
88 InternalConstructor (buffer
, 0, buffer
.Length
, writable
, false);
91 public MemoryStream (byte [] buffer
, int index
, int count
)
93 InternalConstructor (buffer
, index
, count
, true, false);
96 public MemoryStream (byte [] buffer
, int index
, int count
, bool writable
)
98 InternalConstructor (buffer
, index
, count
, writable
, false);
101 public MemoryStream (byte [] buffer
, int index
, int count
, bool writable
, bool publiclyVisible
)
103 InternalConstructor (buffer
, index
, count
, writable
, publiclyVisible
);
106 void InternalConstructor (byte [] buffer
, int index
, int count
, bool writable
, bool publicallyVisible
)
109 throw new ArgumentNullException ("buffer");
111 if (index
< 0 || count
< 0)
112 throw new ArgumentOutOfRangeException ("index or count is less than 0.");
114 if (buffer
.Length
- index
< count
)
115 throw new ArgumentException ("index+count",
116 "The size of the buffer is less than index + count.");
120 internalBuffer
= buffer
;
121 capacity
= count
+ index
;
124 initialIndex
= index
;
126 allowGetBuffer
= publicallyVisible
;
130 void CheckIfClosedThrowDisposed ()
133 throw new ObjectDisposedException ("MemoryStream");
136 public override bool CanRead
{
137 get { return !streamClosed; }
140 public override bool CanSeek
{
141 get { return !streamClosed; }
144 public override bool CanWrite
{
145 get { return (!streamClosed && canWrite); }
148 public virtual int Capacity
{
150 CheckIfClosedThrowDisposed ();
151 return capacity
- initialIndex
;
155 CheckIfClosedThrowDisposed ();
156 if (value == capacity
)
157 return; // LAMENESS: see MemoryStreamTest.ConstructorFive
160 throw new NotSupportedException ("Cannot expand this MemoryStream");
162 if (value < 0 || value < length
)
163 throw new ArgumentOutOfRangeException ("value",
164 "New capacity cannot be negative or less than the current capacity " + value + " " + capacity
);
166 if (value == internalBuffer
.Length
)
169 byte [] newBuffer
= null;
171 newBuffer
= new byte [value];
172 Buffer
.BlockCopy (internalBuffer
, 0, newBuffer
, 0, length
);
175 dirty_bytes
= 0; // discard any dirty area beyond previous length
176 internalBuffer
= newBuffer
; // It's null when capacity is set to 0
181 public override long Length
{
183 // LAMESPEC: The spec says to throw an IOException if the
184 // stream is closed and an ObjectDisposedException if
185 // "methods were called after the stream was closed". What
186 // is the difference?
188 CheckIfClosedThrowDisposed ();
190 // This is ok for MemoryStreamTest.ConstructorFive
191 return length
- initialIndex
;
195 public override long Position
{
197 CheckIfClosedThrowDisposed ();
198 return position
- initialIndex
;
202 CheckIfClosedThrowDisposed ();
204 throw new ArgumentOutOfRangeException ("value",
205 "Position cannot be negative" );
207 if (value > Int32
.MaxValue
)
208 throw new ArgumentOutOfRangeException ("value",
209 "Position must be non-negative and less than 2^31 - 1 - origin");
211 position
= initialIndex
+ (int) value;
215 protected override void Dispose (bool disposing
)
221 public override void Flush ()
226 public virtual byte [] GetBuffer ()
229 throw new UnauthorizedAccessException ();
231 return internalBuffer
;
234 public override int Read ([In
,Out
] byte [] buffer
, int offset
, int count
)
236 CheckIfClosedThrowDisposed ();
239 throw new ArgumentNullException ("buffer");
241 if (offset
< 0 || count
< 0)
242 throw new ArgumentOutOfRangeException ("offset or count less than zero.");
244 if (buffer
.Length
- offset
< count
)
245 throw new ArgumentException ("offset+count",
246 "The size of the buffer is less than offset + count.");
248 if (position
>= length
|| count
== 0)
251 if (position
> length
- count
)
252 count
= length
- position
;
254 Buffer
.BlockCopy (internalBuffer
, position
, buffer
, offset
, count
);
259 public override int ReadByte ()
261 CheckIfClosedThrowDisposed ();
262 if (position
>= length
)
265 return internalBuffer
[position
++];
268 public override long Seek (long offset
, SeekOrigin loc
)
270 CheckIfClosedThrowDisposed ();
272 // It's funny that they don't throw this exception for < Int32.MinValue
273 if (offset
> (long) Int32
.MaxValue
)
274 throw new ArgumentOutOfRangeException ("Offset out of range. " + offset
);
278 case SeekOrigin
.Begin
:
280 throw new IOException ("Attempted to seek before start of MemoryStream.");
281 refPoint
= initialIndex
;
283 case SeekOrigin
.Current
:
290 throw new ArgumentException ("loc", "Invalid SeekOrigin");
293 // LAMESPEC: My goodness, how may LAMESPECs are there in this
294 // class! :) In the spec for the Position property it's stated
295 // "The position must not be more than one byte beyond the end of the stream."
296 // In the spec for seek it says "Seeking to any location beyond the length of the
297 // stream is supported." That's a contradiction i'd say.
298 // I guess seek can go anywhere but if you use position it may get moved back.
300 refPoint
+= (int) offset
;
301 if (refPoint
< initialIndex
)
302 throw new IOException ("Attempted to seek before start of MemoryStream.");
308 int CalculateNewCapacity (int minimum
)
311 minimum
= 256; // See GetBufferTwo test
313 if (minimum
< capacity
* 2)
314 minimum
= capacity
* 2;
319 void Expand (int newSize
)
321 // We don't need to take into account the dirty bytes when incrementing the
322 // Capacity, as changing it will only preserve the valid clear region.
323 if (newSize
> capacity
)
324 Capacity
= CalculateNewCapacity (newSize
);
325 else if (dirty_bytes
> 0) {
326 Array
.Clear (internalBuffer
, length
, dirty_bytes
);
331 public override void SetLength (long value)
333 if (!expandable
&& value > capacity
)
334 throw new NotSupportedException ("Expanding this MemoryStream is not supported");
336 CheckIfClosedThrowDisposed ();
339 throw new NotSupportedException (Locale
.GetText
340 ("Cannot write to this MemoryStream"));
343 // LAMESPEC: AGAIN! It says to throw this exception if value is
344 // greater than "the maximum length of the MemoryStream". I haven't
345 // seen anywhere mention what the maximum length of a MemoryStream is and
346 // since we're this far this memory stream is expandable.
347 if (value < 0 || (value + initialIndex
) > (long) Int32
.MaxValue
)
348 throw new ArgumentOutOfRangeException ();
350 int newSize
= (int) value + initialIndex
;
352 if (newSize
> length
)
354 else if (newSize
< length
) // Postpone the call to Array.Clear till expand time
355 dirty_bytes
+= length
- newSize
;
358 if (position
> length
)
362 public virtual byte [] ToArray ()
364 int l
= length
- initialIndex
;
365 byte[] outBuffer
= new byte [l
];
367 if (internalBuffer
!= null)
368 Buffer
.BlockCopy (internalBuffer
, initialIndex
, outBuffer
, 0, l
);
372 public override void Write (byte [] buffer
, int offset
, int count
)
374 CheckIfClosedThrowDisposed ();
377 throw new NotSupportedException ("Cannot write to this stream.");
380 throw new ArgumentNullException ("buffer");
382 if (offset
< 0 || count
< 0)
383 throw new ArgumentOutOfRangeException ();
385 if (buffer
.Length
- offset
< count
)
386 throw new ArgumentException ("offset+count",
387 "The size of the buffer is less than offset + count.");
389 // reordered to avoid possible integer overflow
390 if (position
> length
- count
)
391 Expand (position
+ count
);
393 Buffer
.BlockCopy (buffer
, offset
, internalBuffer
, position
, count
);
395 if (position
>= length
)
399 public override void WriteByte (byte value)
401 CheckIfClosedThrowDisposed ();
403 throw new NotSupportedException ("Cannot write to this stream.");
405 if (position
>= length
) {
406 Expand (position
+ 1);
407 length
= position
+ 1;
410 internalBuffer
[position
++] = value;
413 public virtual void WriteTo (Stream stream
)
415 CheckIfClosedThrowDisposed ();
418 throw new ArgumentNullException ("stream");
420 stream
.Write (internalBuffer
, initialIndex
, length
- initialIndex
);
424 protected override void ObjectInvariant ()