// // Copyright (c) 2008-2012, Kenneth Bell // // 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.Collections.Generic; using System.IO; namespace DiscUtils.Streams { /// /// Base class for streams that wrap another stream. /// /// The type of stream to wrap. /// /// Provides the default implementation of methods & properties, so /// wrapping streams need only override the methods they need to intercept. /// public class WrappingMappedStream : MappedStream where T : Stream { private readonly List _extents; private readonly Ownership _ownership; public WrappingMappedStream(T toWrap, Ownership ownership, IEnumerable extents) { WrappedStream = toWrap; _ownership = ownership; if (extents != null) { _extents = new List(extents); } } public override bool CanRead { get { return WrappedStream.CanRead; } } public override bool CanSeek { get { return WrappedStream.CanSeek; } } public override bool CanWrite { get { return WrappedStream.CanWrite; } } public override IEnumerable Extents { get { if (_extents != null) { return _extents; } SparseStream sparse = WrappedStream as SparseStream; if (sparse != null) { return sparse.Extents; } return new[] { new StreamExtent(0, WrappedStream.Length) }; } } public override long Length { get { return WrappedStream.Length; } } public override long Position { get { return WrappedStream.Position; } set { WrappedStream.Position = value; } } protected T WrappedStream { get; private set; } public override IEnumerable MapContent(long start, long length) { MappedStream mapped = WrappedStream as MappedStream; if (mapped != null) { return mapped.MapContent(start, length); } return new[] { new StreamExtent(start, length) }; } public override void Flush() { WrappedStream.Flush(); } public override int Read(byte[] buffer, int offset, int count) { return WrappedStream.Read(buffer, offset, count); } public override long Seek(long offset, SeekOrigin origin) { return WrappedStream.Seek(offset, origin); } public override void SetLength(long value) { WrappedStream.SetLength(value); } public override void Clear(int count) { SparseStream sparse = WrappedStream as SparseStream; if (sparse != null) { sparse.Clear(count); } else { base.Clear(count); } } public override void Write(byte[] buffer, int offset, int count) { WrappedStream.Write(buffer, offset, count); } protected override void Dispose(bool disposing) { try { if (disposing) { if (WrappedStream != null && _ownership == Ownership.Dispose) { WrappedStream.Dispose(); } WrappedStream = null; } } finally { base.Dispose(disposing); } } } }