chovy-sign/CHOVY-JUAN/WrappingMappedStream.cs

165 lines
4.9 KiB
C#

//
// 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
{
/// <summary>
/// Base class for streams that wrap another stream.
/// </summary>
/// <typeparam name="T">The type of stream to wrap.</typeparam>
/// <remarks>
/// Provides the default implementation of methods &amp; properties, so
/// wrapping streams need only override the methods they need to intercept.
/// </remarks>
public class WrappingMappedStream<T> : MappedStream
where T : Stream
{
private readonly List<StreamExtent> _extents;
private readonly Ownership _ownership;
public WrappingMappedStream(T toWrap, Ownership ownership, IEnumerable<StreamExtent> extents)
{
WrappedStream = toWrap;
_ownership = ownership;
if (extents != null)
{
_extents = new List<StreamExtent>(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<StreamExtent> 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<StreamExtent> 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);
}
}
}
}