mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-15 05:26:01 +00:00
45 lines
1.2 KiB
C#
45 lines
1.2 KiB
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using SharpCompress.Common;
|
|
using SharpCompress.Common.GZip;
|
|
|
|
namespace SharpCompress.Reader.GZip
|
|
{
|
|
public class GZipReader : AbstractReader<GZipEntry, GZipVolume>
|
|
{
|
|
private readonly GZipVolume volume;
|
|
|
|
internal GZipReader(Stream stream, Options options)
|
|
: base(options, ArchiveType.GZip)
|
|
{
|
|
volume = new GZipVolume(stream, options);
|
|
}
|
|
|
|
public override GZipVolume Volume
|
|
{
|
|
get { return volume; }
|
|
}
|
|
|
|
#region Open
|
|
|
|
/// <summary>
|
|
/// Opens a GZipReader for Non-seeking usage with a single volume
|
|
/// </summary>
|
|
/// <param name="stream"></param>
|
|
/// <param name="options"></param>
|
|
/// <returns></returns>
|
|
public static GZipReader Open(Stream stream,
|
|
Options options = Options.KeepStreamsOpen)
|
|
{
|
|
stream.CheckNotNull("stream");
|
|
return new GZipReader(stream, options);
|
|
}
|
|
|
|
#endregion
|
|
|
|
internal override IEnumerable<GZipEntry> GetEntries(Stream stream)
|
|
{
|
|
return GZipEntry.GetEntries(stream);
|
|
}
|
|
}
|
|
} |