// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Dtf.Compression.Cab
{
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
///
/// Object representing a cabinet file on disk; provides access to
/// file-based operations on the cabinet file.
///
///
/// Generally, the methods on this class are much easier to use than the
/// stream-based interfaces provided by the class.
///
[Serializable]
public class CabInfo : ArchiveInfo
{
///
/// Creates a new CabinetInfo object representing a cabinet file in a specified path.
///
/// The path to the cabinet file. When creating a cabinet file, this file does not
/// necessarily exist yet.
public CabInfo(string path)
: base(path)
{
}
///
/// Initializes a new instance of the CabinetInfo class with serialized data.
///
/// The SerializationInfo that holds the serialized object data about the exception being thrown.
/// The StreamingContext that contains contextual information about the source or destination.
protected CabInfo(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
///
/// Creates a compression engine that does the low-level work for
/// this object.
///
/// A new instance.
///
/// Each instance will be d
/// immediately after use.
///
protected override CompressionEngine CreateCompressionEngine()
{
return new CabEngine();
}
///
/// Gets information about the files contained in the archive.
///
/// A list of objects, each
/// containing information about a file in the archive.
public new IList GetFiles()
{
IList files = base.GetFiles();
List cabFiles = new List(files.Count);
foreach (CabFileInfo cabFile in files) cabFiles.Add(cabFile);
return cabFiles.AsReadOnly();
}
///
/// Gets information about the certain files contained in the archive file.
///
/// The search string, such as
/// "*.txt".
/// A list of objects, each containing
/// information about a file in the archive.
public new IList GetFiles(string searchPattern)
{
IList files = base.GetFiles(searchPattern);
List cabFiles = new List(files.Count);
foreach (CabFileInfo cabFile in files) cabFiles.Add(cabFile);
return cabFiles.AsReadOnly();
}
}
}