mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-25 16:34:45 +00:00
34 lines
1000 B
C#
34 lines
1000 B
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using SharpCompress.Common;
|
|
using SharpCompress.Common.GZip;
|
|
|
|
namespace SharpCompress.Readers.GZip;
|
|
|
|
public class GZipReader : AbstractReader<GZipEntry, GZipVolume>
|
|
{
|
|
private GZipReader(Stream stream, ReaderOptions options)
|
|
: base(options, ArchiveType.GZip) => Volume = new GZipVolume(stream, options, 0);
|
|
|
|
public override GZipVolume Volume { get; }
|
|
|
|
#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, ReaderOptions? options = null)
|
|
{
|
|
stream.NotNull(nameof(stream));
|
|
return new GZipReader(stream, options ?? new ReaderOptions());
|
|
}
|
|
|
|
#endregion Open
|
|
|
|
protected override IEnumerable<GZipEntry> GetEntries(Stream stream) =>
|
|
GZipEntry.GetEntries(stream, Options);
|
|
}
|