mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-24 01:43:19 +00:00
46 lines
1.5 KiB
C#
46 lines
1.5 KiB
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using SharpCompress.Common;
|
|
using SharpCompress.Common.Rar;
|
|
using SharpCompress.Common.Rar.Headers;
|
|
using SharpCompress.IO;
|
|
|
|
namespace SharpCompress.Archive.Rar
|
|
{
|
|
/// <summary>
|
|
/// A rar part based on a FileInfo object
|
|
/// </summary>
|
|
internal class FileInfoRarArchiveVolume : RarVolume
|
|
{
|
|
internal FileInfoRarArchiveVolume(FileInfo fileInfo, string password, Options options)
|
|
: base(StreamingMode.Seekable, fileInfo.OpenRead(), password, FixOptions(options))
|
|
{
|
|
FileInfo = fileInfo;
|
|
FileParts = base.GetVolumeFileParts().ToReadOnly();
|
|
}
|
|
|
|
private static Options FixOptions(Options options)
|
|
{
|
|
//make sure we're closing streams with fileinfo
|
|
if (options.HasFlag(Options.KeepStreamsOpen))
|
|
{
|
|
options = (Options) FlagUtility.SetFlag(options, Options.KeepStreamsOpen, false);
|
|
}
|
|
return options;
|
|
}
|
|
|
|
internal ReadOnlyCollection<RarFilePart> FileParts { get; private set; }
|
|
|
|
internal FileInfo FileInfo { get; private set; }
|
|
|
|
internal override RarFilePart CreateFilePart(FileHeader fileHeader, MarkHeader markHeader)
|
|
{
|
|
return new FileInfoRarFilePart(this, markHeader, fileHeader, FileInfo);
|
|
}
|
|
|
|
internal override IEnumerable<RarFilePart> ReadFileParts()
|
|
{
|
|
return FileParts;
|
|
}
|
|
}
|
|
} |