123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838 |
- /* This file is part of SevenZipSharp.
- SevenZipSharp is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- SevenZipSharp is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public License
- along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
- */
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Globalization;
- #if !WINCE
- using System.Runtime.Remoting.Messaging;
- #endif
- #if DOTNET20
- using System.Threading;
- #else
- using System.Windows.Threading;
- #endif
- #if MONO
- using SevenZip.Mono.COM;
- #endif
- namespace SevenZip
- {
- #if UNMANAGED
- /// <summary>
- /// The way of the event synchronization.
- /// </summary>
- public enum EventSynchronizationStrategy
- {
- /// <summary>
- /// Events are called synchronously if user can do some action; that is, cancel the execution process for example.
- /// </summary>
- Default,
- /// <summary>
- /// Always call events asynchronously.
- /// </summary>
- AlwaysAsynchronous,
- /// <summary>
- /// Always call events synchronously.
- /// </summary>
- AlwaysSynchronous
- }
- /// <summary>
- /// SevenZip Extractor/Compressor base class. Implements Password string, ReportErrors flag.
- /// </summary>
- public class SevenZipBase : MarshalByRefObject
- {
- private readonly string _password;
- private readonly bool _reportErrors;
- private readonly int _uniqueID;
- private static readonly List<int> Identificators = new List<int>();
- #if !WINCE
- internal static readonly AsyncCallback AsyncCallbackImplementation = AsyncCallbackMethod;
- /// <summary>
- /// True if the instance of the class needs to be recreated in new thread context; otherwise, false.
- /// </summary>
- protected internal bool NeedsToBeRecreated;
- /// <summary>
- /// AsyncCallback implementation used in asynchronous invocations.
- /// </summary>
- /// <param name="ar">IAsyncResult instance.</param>
- internal static void AsyncCallbackMethod(IAsyncResult ar)
- {
- var result = (AsyncResult) ar;
- result.AsyncDelegate.GetType().GetMethod("EndInvoke").Invoke(result.AsyncDelegate, new[] { ar });
- ((SevenZipBase)ar.AsyncState).ReleaseContext();
- }
- virtual internal void SaveContext(
- #if !DOTNET20
- DispatcherPriority priority = DispatcherPriority.Normal
- #endif
- )
- {
- #if !DOTNET20
- Dispatcher = Dispatcher.CurrentDispatcher;
- Priority = priority;
- #else
- Context = SynchronizationContext.Current;
- #endif
- NeedsToBeRecreated = true;
- }
- internal void ReleaseContext()
- {
- #if !DOTNET20
- Dispatcher = null;
- #else
- Context = null;
- #endif
- NeedsToBeRecreated = true;
- }
- private delegate void EventHandlerDelegate<T>(EventHandler<T> handler, T e) where T : EventArgs;
- internal void OnEvent<T>(EventHandler<T> handler, T e, bool synchronous) where T: EventArgs
- {
- try
- {
- if (handler != null)
- {
- switch (EventSynchronization)
- {
- case EventSynchronizationStrategy.AlwaysAsynchronous:
- synchronous = false;
- break;
- case EventSynchronizationStrategy.AlwaysSynchronous:
- synchronous = true;
- break;
- }
- if (
- #if !DOTNET20
- Dispatcher == null
- #else
- Context == null
- #endif
- )
- {
- // Usual synchronous call
- handler(this, e);
- }
- else
- {
- #if !DOTNET20
- var eventHandlerDelegate = new EventHandlerDelegate<T>((h, ee) => h(this, ee));
- if (synchronous)
- {
- // Could be just handler(this, e);
- Dispatcher.Invoke(eventHandlerDelegate, Priority, handler, e);
- }
- else
- {
- Dispatcher.BeginInvoke(eventHandlerDelegate, Priority, handler, e);
- }
- #else
- var callback = new SendOrPostCallback((obj) =>
- {
- var array = (object[])obj;
- ((EventHandler<T>)array[0])(array[1], (T)array[2]);
- });
- if (synchronous)
- {
- // Could be just handler(this, e);
- this.Context.Send(callback, new object[] { handler, this, e });
- }
- else
- {
- this.Context.Post(callback, new object[] { handler, this, e });
- }
- #endif
- }
- }
- }
- catch (Exception ex)
- {
- AddException(ex);
- }
- }
- #if !DOTNET20
- /// <summary>
- /// Gets or sets the Dispatcher object for this instance.
- /// It will be used to fire events in the user context.
- /// </summary>
- internal Dispatcher Dispatcher { get; set; }
- /// <summary>
- /// Gets or sets the Dispatcher priority of calling user events.
- /// </summary>
- internal DispatcherPriority Priority { get; set; }
- #else
- internal SynchronizationContext Context { get; set; }
- #endif
- /// <summary>
- /// Gets or sets the event synchronization strategy.
- /// </summary>
- public EventSynchronizationStrategy EventSynchronization { get; set; }
- #else // WINCE
- internal void OnEvent<T>(EventHandler<T> handler, T e, bool synchronous) where T : System.EventArgs
- {
- try
- {
- handler(this, e);
- }
- catch (Exception ex)
- {
- AddException(ex);
- }
- }
- #endif
- /// <summary>
- /// Gets the unique identificator of this SevenZipBase instance.
- /// </summary>
- public int UniqueID
- {
- get
- {
- return _uniqueID;
- }
- }
- /// <summary>
- /// User exceptions thrown during the requested operations, for example, in events.
- /// </summary>
- private readonly List<Exception> _exceptions = new List<Exception>();
- private static int GetUniqueID()
- {
- int id;
- var rnd = new Random(DateTime.Now.Millisecond);
- do
- {
- id = rnd.Next(Int32.MaxValue);
- }
- while (Identificators.Contains(id));
- Identificators.Add(id);
- return id;
- }
- #region Constructors
- /// <summary>
- /// Initializes a new instance of the SevenZipBase class.
- /// </summary>
- protected SevenZipBase()
- {
- _password = "";
- _reportErrors = true;
- _uniqueID = GetUniqueID();
- }
- /// <summary>
- /// Initializes a new instance of the SevenZipBase class
- /// </summary>
- /// <param name="password">The archive password.</param>
- protected SevenZipBase(string password)
- {
- if (String.IsNullOrEmpty(password))
- {
- throw new SevenZipException("Empty password was specified.");
- }
- _password = password;
- _reportErrors = true;
- _uniqueID = GetUniqueID();
- }
- #endregion
- /// <summary>
- /// Removes the UniqueID from the list.
- /// </summary>
- ~SevenZipBase()
- {
- Identificators.Remove(_uniqueID);
- }
- /// <summary>
- /// Gets or sets the archive password
- /// </summary>
- public string Password
- {
- get
- {
- return _password;
- }
- }
- /// <summary>
- /// Gets or sets throw exceptions on archive errors flag
- /// </summary>
- internal bool ReportErrors
- {
- get
- {
- return _reportErrors;
- }
- }
- /// <summary>
- /// Gets the user exceptions thrown during the requested operations, for example, in events.
- /// </summary>
- internal ReadOnlyCollection<Exception> Exceptions
- {
- get
- {
- return new ReadOnlyCollection<Exception>(_exceptions);
- }
- }
- internal void AddException(Exception e)
- {
- _exceptions.Add(e);
- }
- internal void ClearExceptions()
- {
- _exceptions.Clear();
- }
- internal bool HasExceptions
- {
- get
- {
- return _exceptions.Count > 0;
- }
- }
- /// <summary>
- /// Throws the specified exception when is able to.
- /// </summary>
- /// <param name="e">The exception to throw.</param>
- /// <param name="handler">The handler responsible for the exception.</param>
- internal bool ThrowException(CallbackBase handler, params Exception[] e)
- {
- if (_reportErrors && (handler == null || !handler.Canceled))
- {
- throw e[0];
- }
- return false;
- }
- internal void ThrowUserException()
- {
- if (HasExceptions)
- {
- throw new SevenZipException(SevenZipException.USER_EXCEPTION_MESSAGE);
- }
- }
- /// <summary>
- /// Throws exception if HRESULT != 0.
- /// </summary>
- /// <param name="hresult">Result code to check.</param>
- /// <param name="message">Exception message.</param>
- /// <param name="handler">The class responsible for the callback.</param>
- internal void CheckedExecute(int hresult, string message, CallbackBase handler)
- {
- if (hresult != (int) OperationResult.Ok || handler.HasExceptions)
- {
- if (!handler.HasExceptions)
- {
- if (hresult < -2000000000)
- {
- ThrowException(handler,
- new SevenZipException(
- "执行已经在SevenZipSharp失败,原因是该bug.\n" +
- "关于它请举报 http://sevenzipsharp.codeplex.com/WorkItem/List.aspx, 发布版本号并附加档案."));
- }
- else
- {
- ThrowException(handler,
- new SevenZipException(message + hresult.ToString(CultureInfo.InvariantCulture) +
- '.'));
- }
- }
- else
- {
- ThrowException(handler, handler.Exceptions[0]);
- }
- }
- }
- #if !WINCE && !MONO
- /// <summary>
- ///更改路径7-ZIP本地库
- /// </summary>
- /// <param name="libraryPath">7-ZIP本地库的路径。</param>
- public static void SetLibraryPath(string libraryPath)
- {
- SevenZipLibraryManager.SetLibraryPath(libraryPath);
- }
- #endif
- /// <summary>
- /// Gets the current library features.
- /// </summary>
- [CLSCompliant(false)]
- public static LibraryFeature CurrentLibraryFeatures
- {
- get
- {
- return SevenZipLibraryManager.CurrentLibraryFeatures;
- }
- }
- /// <summary>
- /// Determines whether the specified System.Object is equal to the current SevenZipBase.
- /// </summary>
- /// <param name="obj">The System.Object to compare with the current SevenZipBase.</param>
- /// <returns>true if the specified System.Object is equal to the current SevenZipBase; otherwise, false.</returns>
- public override bool Equals(object obj)
- {
- var inst = obj as SevenZipBase;
- if (inst == null)
- {
- return false;
- }
- return _uniqueID == inst._uniqueID;
- }
- /// <summary>
- /// Serves as a hash function for a particular type.
- /// </summary>
- /// <returns> A hash code for the current SevenZipBase.</returns>
- public override int GetHashCode()
- {
- return _uniqueID;
- }
- /// <summary>
- /// Returns a System.String that represents the current SevenZipBase.
- /// </summary>
- /// <returns>A System.String that represents the current SevenZipBase.</returns>
- public override string ToString()
- {
- var type = "SevenZipBase";
- if (this is SevenZipExtractor)
- {
- type = "SevenZipExtractor";
- }
- if (this is SevenZipCompressor)
- {
- type = "SevenZipCompressor";
- }
- return string.Format("{0} [{1}]", type, _uniqueID);
- }
- }
- internal class CallbackBase : MarshalByRefObject
- {
- private readonly string _password;
- private readonly bool _reportErrors;
- /// <summary>
- /// User exceptions thrown during the requested operations, for example, in events.
- /// </summary>
- private readonly List<Exception> _exceptions = new List<Exception>();
- #region Constructors
- /// <summary>
- /// Initializes a new instance of the CallbackBase class.
- /// </summary>
- protected CallbackBase()
- {
- _password = "";
- _reportErrors = true;
- }
- /// <summary>
- /// Initializes a new instance of the CallbackBase class.
- /// </summary>
- /// <param name="password">The archive password.</param>
- protected CallbackBase(string password)
- {
- if (String.IsNullOrEmpty(password))
- {
- throw new SevenZipException("Empty password was specified.");
- }
- _password = password;
- _reportErrors = true;
- }
- #endregion
- /// <summary>
- /// Gets or sets the archive password
- /// </summary>
- public string Password
- {
- get
- {
- return _password;
- }
- }
- /// <summary>
- /// Gets or sets the value indicating whether the current procedure was cancelled.
- /// </summary>
- public bool Canceled { get; set; }
- /// <summary>
- /// Gets or sets throw exceptions on archive errors flag
- /// </summary>
- public bool ReportErrors
- {
- get
- {
- return _reportErrors;
- }
- }
- /// <summary>
- /// Gets the user exceptions thrown during the requested operations, for example, in events.
- /// </summary>
- public ReadOnlyCollection<Exception> Exceptions
- {
- get
- {
- return new ReadOnlyCollection<Exception>(_exceptions);
- }
- }
- public void AddException(Exception e)
- {
- _exceptions.Add(e);
- }
- public void ClearExceptions()
- {
- _exceptions.Clear();
- }
- public bool HasExceptions
- {
- get
- {
- return _exceptions.Count > 0;
- }
- }
- /// <summary>
- /// Throws the specified exception when is able to.
- /// </summary>
- /// <param name="e">The exception to throw.</param>
- /// <param name="handler">The handler responsible for the exception.</param>
- public bool ThrowException(CallbackBase handler, params Exception[] e)
- {
- if (_reportErrors && (handler == null || !handler.Canceled))
- {
- throw e[0];
- }
- return false;
- }
- /// <summary>
- /// Throws the first exception in the list if any exists.
- /// </summary>
- /// <returns>True means no exceptions.</returns>
- public bool ThrowException()
- {
- if (HasExceptions && _reportErrors)
- {
- throw _exceptions[0];
- }
- return true;
- }
- public void ThrowUserException()
- {
- if (HasExceptions)
- {
- throw new SevenZipException(SevenZipException.USER_EXCEPTION_MESSAGE);
- }
- }
- }
- /// <summary>
- /// Struct for storing information about files in the 7-zip archive.
- /// </summary>
- public struct ArchiveFileInfo
- {
- /// <summary>
- /// Gets or sets index of the file in the archive file table.
- /// </summary>
- [CLSCompliant(false)]
- public int Index { get; set; }
- /// <summary>
- /// Gets or sets file name
- /// </summary>
- public string FileName { get; set; }
- /// <summary>
- /// Gets or sets the file last write time.
- /// </summary>
- public DateTime LastWriteTime { get; set; }
- /// <summary>
- /// Gets or sets the file creation time.
- /// </summary>
- public DateTime CreationTime { get; set; }
- /// <summary>
- /// Gets or sets the file creation time.
- /// </summary>
- public DateTime LastAccessTime { get; set; }
- /// <summary>
- /// Gets or sets size of the file (unpacked).
- /// </summary>
- [CLSCompliant(false)]
- public ulong Size { get; set; }
- /// <summary>
- /// Gets or sets CRC checksum of the file.
- /// </summary>
- [CLSCompliant(false)]
- public uint Crc { get; set; }
- /// <summary>
- /// Gets or sets file attributes.
- /// </summary>
- [CLSCompliant(false)]
- public uint Attributes { get; set; }
- /// <summary>
- /// Gets or sets being a directory.
- /// </summary>
- public bool IsDirectory { get; set; }
- /// <summary>
- /// Gets or sets being encrypted.
- /// </summary>
- public bool Encrypted { get; set; }
- /// <summary>
- /// Gets or sets comment for the file.
- /// </summary>
- public string Comment { get; set; }
- /// <summary>
- /// Determines whether the specified System.Object is equal to the current ArchiveFileInfo.
- /// </summary>
- /// <param name="obj">The System.Object to compare with the current ArchiveFileInfo.</param>
- /// <returns>true if the specified System.Object is equal to the current ArchiveFileInfo; otherwise, false.</returns>
- public override bool Equals(object obj)
- {
- return (obj is ArchiveFileInfo) ? Equals((ArchiveFileInfo) obj) : false;
- }
- /// <summary>
- /// Determines whether the specified ArchiveFileInfo is equal to the current ArchiveFileInfo.
- /// </summary>
- /// <param name="afi">The ArchiveFileInfo to compare with the current ArchiveFileInfo.</param>
- /// <returns>true if the specified ArchiveFileInfo is equal to the current ArchiveFileInfo; otherwise, false.</returns>
- public bool Equals(ArchiveFileInfo afi)
- {
- return afi.Index == Index && afi.FileName == FileName;
- }
- /// <summary>
- /// Serves as a hash function for a particular type.
- /// </summary>
- /// <returns> A hash code for the current ArchiveFileInfo.</returns>
- public override int GetHashCode()
- {
- return FileName.GetHashCode() ^ Index;
- }
- /// <summary>
- /// Returns a System.String that represents the current ArchiveFileInfo.
- /// </summary>
- /// <returns>A System.String that represents the current ArchiveFileInfo.</returns>
- public override string ToString()
- {
- return "[" + Index.ToString(CultureInfo.CurrentCulture) + "] " + FileName;
- }
- /// <summary>
- /// Determines whether the specified ArchiveFileInfo instances are considered equal.
- /// </summary>
- /// <param name="afi1">The first ArchiveFileInfo to compare.</param>
- /// <param name="afi2">The second ArchiveFileInfo to compare.</param>
- /// <returns>true if the specified ArchiveFileInfo instances are considered equal; otherwise, false.</returns>
- public static bool operator ==(ArchiveFileInfo afi1, ArchiveFileInfo afi2)
- {
- return afi1.Equals(afi2);
- }
- /// <summary>
- /// Determines whether the specified ArchiveFileInfo instances are not considered equal.
- /// </summary>
- /// <param name="afi1">The first ArchiveFileInfo to compare.</param>
- /// <param name="afi2">The second ArchiveFileInfo to compare.</param>
- /// <returns>true if the specified ArchiveFileInfo instances are not considered equal; otherwise, false.</returns>
- public static bool operator !=(ArchiveFileInfo afi1, ArchiveFileInfo afi2)
- {
- return !afi1.Equals(afi2);
- }
- }
- /// <summary>
- /// Archive property struct.
- /// </summary>
- public struct ArchiveProperty
- {
- /// <summary>
- /// Gets the name of the archive property.
- /// </summary>
- public string Name { get; internal set; }
- /// <summary>
- /// Gets the value of the archive property.
- /// </summary>
- public object Value { get; internal set; }
- /// <summary>
- /// Determines whether the specified System.Object is equal to the current ArchiveProperty.
- /// </summary>
- /// <param name="obj">The System.Object to compare with the current ArchiveProperty.</param>
- /// <returns>true if the specified System.Object is equal to the current ArchiveProperty; otherwise, false.</returns>
- public override bool Equals(object obj)
- {
- return (obj is ArchiveProperty) ? Equals((ArchiveProperty) obj) : false;
- }
- /// <summary>
- /// Determines whether the specified ArchiveProperty is equal to the current ArchiveProperty.
- /// </summary>
- /// <param name="afi">The ArchiveProperty to compare with the current ArchiveProperty.</param>
- /// <returns>true if the specified ArchiveProperty is equal to the current ArchiveProperty; otherwise, false.</returns>
- public bool Equals(ArchiveProperty afi)
- {
- return afi.Name == Name && afi.Value == Value;
- }
- /// <summary>
- /// Serves as a hash function for a particular type.
- /// </summary>
- /// <returns> A hash code for the current ArchiveProperty.</returns>
- public override int GetHashCode()
- {
- return Name.GetHashCode() ^ Value.GetHashCode();
- }
- /// <summary>
- /// Returns a System.String that represents the current ArchiveProperty.
- /// </summary>
- /// <returns>A System.String that represents the current ArchiveProperty.</returns>
- public override string ToString()
- {
- return Name + " = " + Value;
- }
- /// <summary>
- /// Determines whether the specified ArchiveProperty instances are considered equal.
- /// </summary>
- /// <param name="afi1">The first ArchiveProperty to compare.</param>
- /// <param name="afi2">The second ArchiveProperty to compare.</param>
- /// <returns>true if the specified ArchiveProperty instances are considered equal; otherwise, false.</returns>
- public static bool operator ==(ArchiveProperty afi1, ArchiveProperty afi2)
- {
- return afi1.Equals(afi2);
- }
- /// <summary>
- /// Determines whether the specified ArchiveProperty instances are not considered equal.
- /// </summary>
- /// <param name="afi1">The first ArchiveProperty to compare.</param>
- /// <param name="afi2">The second ArchiveProperty to compare.</param>
- /// <returns>true if the specified ArchiveProperty instances are not considered equal; otherwise, false.</returns>
- public static bool operator !=(ArchiveProperty afi1, ArchiveProperty afi2)
- {
- return !afi1.Equals(afi2);
- }
- }
- #if COMPRESS
- /// <summary>
- /// Archive compression mode.
- /// </summary>
- public enum CompressionMode
- {
- /// <summary>
- /// Create a new archive; overwrite the existing one.
- /// </summary>
- Create,
- /// <summary>
- /// Add data to the archive.
- /// </summary>
- Append,
- }
- internal enum InternalCompressionMode
- {
- /// <summary>
- /// Create a new archive; overwrite the existing one.
- /// </summary>
- Create,
- /// <summary>
- /// Add data to the archive.
- /// </summary>
- Append,
- /// <summary>
- /// Modify archive data.
- /// </summary>
- Modify
- }
- /// <summary>
- /// Zip encryption method enum.
- /// </summary>
- public enum ZipEncryptionMethod
- {
- /// <summary>
- /// ZipCrypto encryption method.
- /// </summary>
- ZipCrypto,
- /// <summary>
- /// AES 128 bit encryption method.
- /// </summary>
- Aes128,
- /// <summary>
- /// AES 192 bit encryption method.
- /// </summary>
- Aes192,
- /// <summary>
- /// AES 256 bit encryption method.
- /// </summary>
- Aes256
- }
- /// <summary>
- /// Archive update data for UpdateCallback.
- /// </summary>
- internal struct UpdateData
- {
- public uint FilesCount;
- public InternalCompressionMode Mode;
- public Dictionary<int, string> FileNamesToModify { get; set; }
- public List<ArchiveFileInfo> ArchiveFileData { get; set; }
- }
- #endif
- #endif
- }
|