| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- //
- // System.IO.BufferedStream
- //
- // Author:
- // Matt Kimball ([email protected])
- // Ville Palo <[email protected]>
- //
- // Copyright (C) 2004 Novell (http://www.novell.com)
- //
- //
- // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System.Globalization;
- using System.Runtime.InteropServices;
- namespace System.IO {
- [ComVisible (true)]
- public sealed class BufferedStream : Stream {
- Stream m_stream;
- byte[] m_buffer;
- int m_buffer_pos;
- int m_buffer_read_ahead;
- bool m_buffer_reading;
- private bool disposed = false;
- public BufferedStream (Stream stream) : this (stream, 4096)
- {
- }
- public BufferedStream (Stream stream, int bufferSize)
- {
- if (stream == null)
- throw new ArgumentNullException ("stream");
- // LAMESPEC: documented as < 0
- if (bufferSize <= 0)
- throw new ArgumentOutOfRangeException ("bufferSize", "<= 0");
- if (!stream.CanRead && !stream.CanWrite) {
- throw new ObjectDisposedException (
- Locale.GetText ("Cannot access a closed Stream."));
- }
- m_stream = stream;
- m_buffer = new byte [bufferSize];
- }
- public override bool CanRead {
- get {
- return m_stream.CanRead;
- }
- }
- public override bool CanWrite {
- get {
- return m_stream.CanWrite;
- }
- }
- public override bool CanSeek {
- get {
- return m_stream.CanSeek;
- }
- }
- public override long Length {
- get {
- Flush ();
- return m_stream.Length;
- }
- }
-
- public override long Position {
- get {
- CheckObjectDisposedException ();
- return m_stream.Position - m_buffer_read_ahead + m_buffer_pos;
- }
- set {
- if (value < Position && (Position - value <= m_buffer_pos) && m_buffer_reading) {
- m_buffer_pos -= (int) (Position - value);
- }
- else if (value > Position && (value - Position < m_buffer_read_ahead - m_buffer_pos) && m_buffer_reading) {
- m_buffer_pos += (int) (value - Position);
- }
- else {
- Flush();
- m_stream.Position = value;
- }
- }
- }
- protected override void Dispose (bool disposing)
- {
- if (disposed)
- return;
- if (m_buffer != null)
- Flush();
- m_stream.Close();
- m_buffer = null;
- disposed = true;
- }
- public override void Flush ()
- {
- CheckObjectDisposedException ();
- if (m_buffer_reading) {
- if (CanSeek)
- m_stream.Position = Position;
- } else if (m_buffer_pos > 0) {
- m_stream.Write(m_buffer, 0, m_buffer_pos);
- }
- m_buffer_read_ahead = 0;
- m_buffer_pos = 0;
- }
- public override long Seek (long offset, SeekOrigin origin)
- {
- CheckObjectDisposedException ();
- if (!CanSeek) {
- throw new NotSupportedException (
- Locale.GetText ("Non seekable stream."));
- }
- Flush ();
- return m_stream.Seek (offset, origin);
- }
- public override void SetLength (long value)
- {
- CheckObjectDisposedException ();
- if (value < 0)
- throw new ArgumentOutOfRangeException ("value must be positive");
- if (!m_stream.CanWrite && !m_stream.CanSeek)
- throw new NotSupportedException ("the stream cannot seek nor write.");
- if ((m_stream == null) || (!m_stream.CanRead && !m_stream.CanWrite))
- throw new IOException ("the stream is not open");
-
- m_stream.SetLength(value);
- if (Position > value)
- Position = value;
- }
- public override int ReadByte ()
- {
- CheckObjectDisposedException ();
-
- byte[] b = new byte[1];
- if (Read(b, 0, 1) == 1) {
- return b[0];
- } else {
- return -1;
- }
- }
- public override void WriteByte (byte value)
- {
- CheckObjectDisposedException ();
- byte[] b = new byte[1];
- b[0] = value;
- Write(b, 0, 1);
- }
- public override int Read ([In,Out] byte[] array, int offset, int count)
- {
- if (array == null)
- throw new ArgumentNullException ("array");
- CheckObjectDisposedException ();
- if (!m_stream.CanRead) {
- throw new NotSupportedException (
- Locale.GetText ("Cannot read from stream"));
- }
- if (offset < 0)
- throw new ArgumentOutOfRangeException ("offset", "< 0");
- if (count < 0)
- throw new ArgumentOutOfRangeException ("count", "< 0");
- // re-ordered to avoid possible integer overflow
- if (array.Length - offset < count)
- throw new ArgumentException ("array.Length - offset < count");
- if (!m_buffer_reading) {
- Flush();
- m_buffer_reading = true;
- }
- if (count <= m_buffer_read_ahead - m_buffer_pos) {
- Buffer.BlockCopyInternal (m_buffer, m_buffer_pos, array, offset, count);
- m_buffer_pos += count;
- if (m_buffer_pos == m_buffer_read_ahead) {
- m_buffer_pos = 0;
- m_buffer_read_ahead = 0;
- }
- return count;
- }
- int ret = m_buffer_read_ahead - m_buffer_pos;
- Buffer.BlockCopyInternal (m_buffer, m_buffer_pos, array, offset, ret);
- m_buffer_pos = 0;
- m_buffer_read_ahead = 0;
- offset += ret;
- count -= ret;
- if (count >= m_buffer.Length) {
- ret += m_stream.Read(array, offset, count);
- } else {
- m_buffer_read_ahead = m_stream.Read(m_buffer, 0, m_buffer.Length);
-
- if (count < m_buffer_read_ahead) {
- Buffer.BlockCopyInternal (m_buffer, 0, array, offset, count);
- m_buffer_pos = count;
- ret += count;
- } else {
- Buffer.BlockCopyInternal (m_buffer, 0, array, offset, m_buffer_read_ahead);
- ret += m_buffer_read_ahead;
- m_buffer_read_ahead = 0;
- }
- }
- return ret;
- }
- public override void Write (byte[] array, int offset, int count)
- {
- if (array == null)
- throw new ArgumentNullException ("array");
- CheckObjectDisposedException ();
- if (!m_stream.CanWrite) {
- throw new NotSupportedException (
- Locale.GetText ("Cannot write to stream"));
- }
- if (offset < 0)
- throw new ArgumentOutOfRangeException ("offset", "< 0");
- if (count < 0)
- throw new ArgumentOutOfRangeException ("count", "< 0");
- // avoid possible integer overflow
- if (array.Length - offset < count)
- throw new ArgumentException ("array.Length - offset < count");
- if (m_buffer_reading) {
- Flush();
- m_buffer_reading = false;
- }
- // reordered to avoid possible integer overflow
- if (m_buffer_pos >= m_buffer.Length - count) {
- Flush ();
- m_stream.Write (array, offset, count);
- }
- else {
- Buffer.BlockCopyInternal (array, offset, m_buffer, m_buffer_pos, count);
- m_buffer_pos += count;
- }
- }
- private void CheckObjectDisposedException ()
- {
- if (disposed) {
- throw new ObjectDisposedException ("BufferedStream",
- Locale.GetText ("Stream is closed"));
- }
- }
- }
- }
|