Common.cs 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838
  1. /* This file is part of SevenZipSharp.
  2. SevenZipSharp is free software: you can redistribute it and/or modify
  3. it under the terms of the GNU Lesser General Public License as published by
  4. the Free Software Foundation, either version 3 of the License, or
  5. (at your option) any later version.
  6. SevenZipSharp is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU Lesser General Public License for more details.
  10. You should have received a copy of the GNU Lesser General Public License
  11. along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
  12. */
  13. using System;
  14. using System.Collections.Generic;
  15. using System.Collections.ObjectModel;
  16. using System.Globalization;
  17. #if !WINCE
  18. using System.Runtime.Remoting.Messaging;
  19. #endif
  20. #if DOTNET20
  21. using System.Threading;
  22. #else
  23. using System.Windows.Threading;
  24. #endif
  25. #if MONO
  26. using SevenZip.Mono.COM;
  27. #endif
  28. namespace SevenZip
  29. {
  30. #if UNMANAGED
  31. /// <summary>
  32. /// The way of the event synchronization.
  33. /// </summary>
  34. public enum EventSynchronizationStrategy
  35. {
  36. /// <summary>
  37. /// Events are called synchronously if user can do some action; that is, cancel the execution process for example.
  38. /// </summary>
  39. Default,
  40. /// <summary>
  41. /// Always call events asynchronously.
  42. /// </summary>
  43. AlwaysAsynchronous,
  44. /// <summary>
  45. /// Always call events synchronously.
  46. /// </summary>
  47. AlwaysSynchronous
  48. }
  49. /// <summary>
  50. /// SevenZip Extractor/Compressor base class. Implements Password string, ReportErrors flag.
  51. /// </summary>
  52. public class SevenZipBase : MarshalByRefObject
  53. {
  54. private readonly string _password;
  55. private readonly bool _reportErrors;
  56. private readonly int _uniqueID;
  57. private static readonly List<int> Identificators = new List<int>();
  58. #if !WINCE
  59. internal static readonly AsyncCallback AsyncCallbackImplementation = AsyncCallbackMethod;
  60. /// <summary>
  61. /// True if the instance of the class needs to be recreated in new thread context; otherwise, false.
  62. /// </summary>
  63. protected internal bool NeedsToBeRecreated;
  64. /// <summary>
  65. /// AsyncCallback implementation used in asynchronous invocations.
  66. /// </summary>
  67. /// <param name="ar">IAsyncResult instance.</param>
  68. internal static void AsyncCallbackMethod(IAsyncResult ar)
  69. {
  70. var result = (AsyncResult) ar;
  71. result.AsyncDelegate.GetType().GetMethod("EndInvoke").Invoke(result.AsyncDelegate, new[] { ar });
  72. ((SevenZipBase)ar.AsyncState).ReleaseContext();
  73. }
  74. virtual internal void SaveContext(
  75. #if !DOTNET20
  76. DispatcherPriority priority = DispatcherPriority.Normal
  77. #endif
  78. )
  79. {
  80. #if !DOTNET20
  81. Dispatcher = Dispatcher.CurrentDispatcher;
  82. Priority = priority;
  83. #else
  84. Context = SynchronizationContext.Current;
  85. #endif
  86. NeedsToBeRecreated = true;
  87. }
  88. internal void ReleaseContext()
  89. {
  90. #if !DOTNET20
  91. Dispatcher = null;
  92. #else
  93. Context = null;
  94. #endif
  95. NeedsToBeRecreated = true;
  96. }
  97. private delegate void EventHandlerDelegate<T>(EventHandler<T> handler, T e) where T : EventArgs;
  98. internal void OnEvent<T>(EventHandler<T> handler, T e, bool synchronous) where T: EventArgs
  99. {
  100. try
  101. {
  102. if (handler != null)
  103. {
  104. switch (EventSynchronization)
  105. {
  106. case EventSynchronizationStrategy.AlwaysAsynchronous:
  107. synchronous = false;
  108. break;
  109. case EventSynchronizationStrategy.AlwaysSynchronous:
  110. synchronous = true;
  111. break;
  112. }
  113. if (
  114. #if !DOTNET20
  115. Dispatcher == null
  116. #else
  117. Context == null
  118. #endif
  119. )
  120. {
  121. // Usual synchronous call
  122. handler(this, e);
  123. }
  124. else
  125. {
  126. #if !DOTNET20
  127. var eventHandlerDelegate = new EventHandlerDelegate<T>((h, ee) => h(this, ee));
  128. if (synchronous)
  129. {
  130. // Could be just handler(this, e);
  131. Dispatcher.Invoke(eventHandlerDelegate, Priority, handler, e);
  132. }
  133. else
  134. {
  135. Dispatcher.BeginInvoke(eventHandlerDelegate, Priority, handler, e);
  136. }
  137. #else
  138. var callback = new SendOrPostCallback((obj) =>
  139. {
  140. var array = (object[])obj;
  141. ((EventHandler<T>)array[0])(array[1], (T)array[2]);
  142. });
  143. if (synchronous)
  144. {
  145. // Could be just handler(this, e);
  146. this.Context.Send(callback, new object[] { handler, this, e });
  147. }
  148. else
  149. {
  150. this.Context.Post(callback, new object[] { handler, this, e });
  151. }
  152. #endif
  153. }
  154. }
  155. }
  156. catch (Exception ex)
  157. {
  158. AddException(ex);
  159. }
  160. }
  161. #if !DOTNET20
  162. /// <summary>
  163. /// Gets or sets the Dispatcher object for this instance.
  164. /// It will be used to fire events in the user context.
  165. /// </summary>
  166. internal Dispatcher Dispatcher { get; set; }
  167. /// <summary>
  168. /// Gets or sets the Dispatcher priority of calling user events.
  169. /// </summary>
  170. internal DispatcherPriority Priority { get; set; }
  171. #else
  172. internal SynchronizationContext Context { get; set; }
  173. #endif
  174. /// <summary>
  175. /// Gets or sets the event synchronization strategy.
  176. /// </summary>
  177. public EventSynchronizationStrategy EventSynchronization { get; set; }
  178. #else // WINCE
  179. internal void OnEvent<T>(EventHandler<T> handler, T e, bool synchronous) where T : System.EventArgs
  180. {
  181. try
  182. {
  183. handler(this, e);
  184. }
  185. catch (Exception ex)
  186. {
  187. AddException(ex);
  188. }
  189. }
  190. #endif
  191. /// <summary>
  192. /// Gets the unique identificator of this SevenZipBase instance.
  193. /// </summary>
  194. public int UniqueID
  195. {
  196. get
  197. {
  198. return _uniqueID;
  199. }
  200. }
  201. /// <summary>
  202. /// User exceptions thrown during the requested operations, for example, in events.
  203. /// </summary>
  204. private readonly List<Exception> _exceptions = new List<Exception>();
  205. private static int GetUniqueID()
  206. {
  207. int id;
  208. var rnd = new Random(DateTime.Now.Millisecond);
  209. do
  210. {
  211. id = rnd.Next(Int32.MaxValue);
  212. }
  213. while (Identificators.Contains(id));
  214. Identificators.Add(id);
  215. return id;
  216. }
  217. #region Constructors
  218. /// <summary>
  219. /// Initializes a new instance of the SevenZipBase class.
  220. /// </summary>
  221. protected SevenZipBase()
  222. {
  223. _password = "";
  224. _reportErrors = true;
  225. _uniqueID = GetUniqueID();
  226. }
  227. /// <summary>
  228. /// Initializes a new instance of the SevenZipBase class
  229. /// </summary>
  230. /// <param name="password">The archive password.</param>
  231. protected SevenZipBase(string password)
  232. {
  233. if (String.IsNullOrEmpty(password))
  234. {
  235. throw new SevenZipException("Empty password was specified.");
  236. }
  237. _password = password;
  238. _reportErrors = true;
  239. _uniqueID = GetUniqueID();
  240. }
  241. #endregion
  242. /// <summary>
  243. /// Removes the UniqueID from the list.
  244. /// </summary>
  245. ~SevenZipBase()
  246. {
  247. Identificators.Remove(_uniqueID);
  248. }
  249. /// <summary>
  250. /// Gets or sets the archive password
  251. /// </summary>
  252. public string Password
  253. {
  254. get
  255. {
  256. return _password;
  257. }
  258. }
  259. /// <summary>
  260. /// Gets or sets throw exceptions on archive errors flag
  261. /// </summary>
  262. internal bool ReportErrors
  263. {
  264. get
  265. {
  266. return _reportErrors;
  267. }
  268. }
  269. /// <summary>
  270. /// Gets the user exceptions thrown during the requested operations, for example, in events.
  271. /// </summary>
  272. internal ReadOnlyCollection<Exception> Exceptions
  273. {
  274. get
  275. {
  276. return new ReadOnlyCollection<Exception>(_exceptions);
  277. }
  278. }
  279. internal void AddException(Exception e)
  280. {
  281. _exceptions.Add(e);
  282. }
  283. internal void ClearExceptions()
  284. {
  285. _exceptions.Clear();
  286. }
  287. internal bool HasExceptions
  288. {
  289. get
  290. {
  291. return _exceptions.Count > 0;
  292. }
  293. }
  294. /// <summary>
  295. /// Throws the specified exception when is able to.
  296. /// </summary>
  297. /// <param name="e">The exception to throw.</param>
  298. /// <param name="handler">The handler responsible for the exception.</param>
  299. internal bool ThrowException(CallbackBase handler, params Exception[] e)
  300. {
  301. if (_reportErrors && (handler == null || !handler.Canceled))
  302. {
  303. throw e[0];
  304. }
  305. return false;
  306. }
  307. internal void ThrowUserException()
  308. {
  309. if (HasExceptions)
  310. {
  311. throw new SevenZipException(SevenZipException.USER_EXCEPTION_MESSAGE);
  312. }
  313. }
  314. /// <summary>
  315. /// Throws exception if HRESULT != 0.
  316. /// </summary>
  317. /// <param name="hresult">Result code to check.</param>
  318. /// <param name="message">Exception message.</param>
  319. /// <param name="handler">The class responsible for the callback.</param>
  320. internal void CheckedExecute(int hresult, string message, CallbackBase handler)
  321. {
  322. if (hresult != (int) OperationResult.Ok || handler.HasExceptions)
  323. {
  324. if (!handler.HasExceptions)
  325. {
  326. if (hresult < -2000000000)
  327. {
  328. ThrowException(handler,
  329. new SevenZipException(
  330. "执行已经在SevenZipSharp失败,原因是该bug.\n" +
  331. "关于它请举报 http://sevenzipsharp.codeplex.com/WorkItem/List.aspx, 发布版本号并附加档案."));
  332. }
  333. else
  334. {
  335. ThrowException(handler,
  336. new SevenZipException(message + hresult.ToString(CultureInfo.InvariantCulture) +
  337. '.'));
  338. }
  339. }
  340. else
  341. {
  342. ThrowException(handler, handler.Exceptions[0]);
  343. }
  344. }
  345. }
  346. #if !WINCE && !MONO
  347. /// <summary>
  348. ///更改路径7-ZIP本地库
  349. /// </summary>
  350. /// <param name="libraryPath">7-ZIP本地库的路径。</param>
  351. public static void SetLibraryPath(string libraryPath)
  352. {
  353. SevenZipLibraryManager.SetLibraryPath(libraryPath);
  354. }
  355. #endif
  356. /// <summary>
  357. /// Gets the current library features.
  358. /// </summary>
  359. [CLSCompliant(false)]
  360. public static LibraryFeature CurrentLibraryFeatures
  361. {
  362. get
  363. {
  364. return SevenZipLibraryManager.CurrentLibraryFeatures;
  365. }
  366. }
  367. /// <summary>
  368. /// Determines whether the specified System.Object is equal to the current SevenZipBase.
  369. /// </summary>
  370. /// <param name="obj">The System.Object to compare with the current SevenZipBase.</param>
  371. /// <returns>true if the specified System.Object is equal to the current SevenZipBase; otherwise, false.</returns>
  372. public override bool Equals(object obj)
  373. {
  374. var inst = obj as SevenZipBase;
  375. if (inst == null)
  376. {
  377. return false;
  378. }
  379. return _uniqueID == inst._uniqueID;
  380. }
  381. /// <summary>
  382. /// Serves as a hash function for a particular type.
  383. /// </summary>
  384. /// <returns> A hash code for the current SevenZipBase.</returns>
  385. public override int GetHashCode()
  386. {
  387. return _uniqueID;
  388. }
  389. /// <summary>
  390. /// Returns a System.String that represents the current SevenZipBase.
  391. /// </summary>
  392. /// <returns>A System.String that represents the current SevenZipBase.</returns>
  393. public override string ToString()
  394. {
  395. var type = "SevenZipBase";
  396. if (this is SevenZipExtractor)
  397. {
  398. type = "SevenZipExtractor";
  399. }
  400. if (this is SevenZipCompressor)
  401. {
  402. type = "SevenZipCompressor";
  403. }
  404. return string.Format("{0} [{1}]", type, _uniqueID);
  405. }
  406. }
  407. internal class CallbackBase : MarshalByRefObject
  408. {
  409. private readonly string _password;
  410. private readonly bool _reportErrors;
  411. /// <summary>
  412. /// User exceptions thrown during the requested operations, for example, in events.
  413. /// </summary>
  414. private readonly List<Exception> _exceptions = new List<Exception>();
  415. #region Constructors
  416. /// <summary>
  417. /// Initializes a new instance of the CallbackBase class.
  418. /// </summary>
  419. protected CallbackBase()
  420. {
  421. _password = "";
  422. _reportErrors = true;
  423. }
  424. /// <summary>
  425. /// Initializes a new instance of the CallbackBase class.
  426. /// </summary>
  427. /// <param name="password">The archive password.</param>
  428. protected CallbackBase(string password)
  429. {
  430. if (String.IsNullOrEmpty(password))
  431. {
  432. throw new SevenZipException("Empty password was specified.");
  433. }
  434. _password = password;
  435. _reportErrors = true;
  436. }
  437. #endregion
  438. /// <summary>
  439. /// Gets or sets the archive password
  440. /// </summary>
  441. public string Password
  442. {
  443. get
  444. {
  445. return _password;
  446. }
  447. }
  448. /// <summary>
  449. /// Gets or sets the value indicating whether the current procedure was cancelled.
  450. /// </summary>
  451. public bool Canceled { get; set; }
  452. /// <summary>
  453. /// Gets or sets throw exceptions on archive errors flag
  454. /// </summary>
  455. public bool ReportErrors
  456. {
  457. get
  458. {
  459. return _reportErrors;
  460. }
  461. }
  462. /// <summary>
  463. /// Gets the user exceptions thrown during the requested operations, for example, in events.
  464. /// </summary>
  465. public ReadOnlyCollection<Exception> Exceptions
  466. {
  467. get
  468. {
  469. return new ReadOnlyCollection<Exception>(_exceptions);
  470. }
  471. }
  472. public void AddException(Exception e)
  473. {
  474. _exceptions.Add(e);
  475. }
  476. public void ClearExceptions()
  477. {
  478. _exceptions.Clear();
  479. }
  480. public bool HasExceptions
  481. {
  482. get
  483. {
  484. return _exceptions.Count > 0;
  485. }
  486. }
  487. /// <summary>
  488. /// Throws the specified exception when is able to.
  489. /// </summary>
  490. /// <param name="e">The exception to throw.</param>
  491. /// <param name="handler">The handler responsible for the exception.</param>
  492. public bool ThrowException(CallbackBase handler, params Exception[] e)
  493. {
  494. if (_reportErrors && (handler == null || !handler.Canceled))
  495. {
  496. throw e[0];
  497. }
  498. return false;
  499. }
  500. /// <summary>
  501. /// Throws the first exception in the list if any exists.
  502. /// </summary>
  503. /// <returns>True means no exceptions.</returns>
  504. public bool ThrowException()
  505. {
  506. if (HasExceptions && _reportErrors)
  507. {
  508. throw _exceptions[0];
  509. }
  510. return true;
  511. }
  512. public void ThrowUserException()
  513. {
  514. if (HasExceptions)
  515. {
  516. throw new SevenZipException(SevenZipException.USER_EXCEPTION_MESSAGE);
  517. }
  518. }
  519. }
  520. /// <summary>
  521. /// Struct for storing information about files in the 7-zip archive.
  522. /// </summary>
  523. public struct ArchiveFileInfo
  524. {
  525. /// <summary>
  526. /// Gets or sets index of the file in the archive file table.
  527. /// </summary>
  528. [CLSCompliant(false)]
  529. public int Index { get; set; }
  530. /// <summary>
  531. /// Gets or sets file name
  532. /// </summary>
  533. public string FileName { get; set; }
  534. /// <summary>
  535. /// Gets or sets the file last write time.
  536. /// </summary>
  537. public DateTime LastWriteTime { get; set; }
  538. /// <summary>
  539. /// Gets or sets the file creation time.
  540. /// </summary>
  541. public DateTime CreationTime { get; set; }
  542. /// <summary>
  543. /// Gets or sets the file creation time.
  544. /// </summary>
  545. public DateTime LastAccessTime { get; set; }
  546. /// <summary>
  547. /// Gets or sets size of the file (unpacked).
  548. /// </summary>
  549. [CLSCompliant(false)]
  550. public ulong Size { get; set; }
  551. /// <summary>
  552. /// Gets or sets CRC checksum of the file.
  553. /// </summary>
  554. [CLSCompliant(false)]
  555. public uint Crc { get; set; }
  556. /// <summary>
  557. /// Gets or sets file attributes.
  558. /// </summary>
  559. [CLSCompliant(false)]
  560. public uint Attributes { get; set; }
  561. /// <summary>
  562. /// Gets or sets being a directory.
  563. /// </summary>
  564. public bool IsDirectory { get; set; }
  565. /// <summary>
  566. /// Gets or sets being encrypted.
  567. /// </summary>
  568. public bool Encrypted { get; set; }
  569. /// <summary>
  570. /// Gets or sets comment for the file.
  571. /// </summary>
  572. public string Comment { get; set; }
  573. /// <summary>
  574. /// Determines whether the specified System.Object is equal to the current ArchiveFileInfo.
  575. /// </summary>
  576. /// <param name="obj">The System.Object to compare with the current ArchiveFileInfo.</param>
  577. /// <returns>true if the specified System.Object is equal to the current ArchiveFileInfo; otherwise, false.</returns>
  578. public override bool Equals(object obj)
  579. {
  580. return (obj is ArchiveFileInfo) ? Equals((ArchiveFileInfo) obj) : false;
  581. }
  582. /// <summary>
  583. /// Determines whether the specified ArchiveFileInfo is equal to the current ArchiveFileInfo.
  584. /// </summary>
  585. /// <param name="afi">The ArchiveFileInfo to compare with the current ArchiveFileInfo.</param>
  586. /// <returns>true if the specified ArchiveFileInfo is equal to the current ArchiveFileInfo; otherwise, false.</returns>
  587. public bool Equals(ArchiveFileInfo afi)
  588. {
  589. return afi.Index == Index && afi.FileName == FileName;
  590. }
  591. /// <summary>
  592. /// Serves as a hash function for a particular type.
  593. /// </summary>
  594. /// <returns> A hash code for the current ArchiveFileInfo.</returns>
  595. public override int GetHashCode()
  596. {
  597. return FileName.GetHashCode() ^ Index;
  598. }
  599. /// <summary>
  600. /// Returns a System.String that represents the current ArchiveFileInfo.
  601. /// </summary>
  602. /// <returns>A System.String that represents the current ArchiveFileInfo.</returns>
  603. public override string ToString()
  604. {
  605. return "[" + Index.ToString(CultureInfo.CurrentCulture) + "] " + FileName;
  606. }
  607. /// <summary>
  608. /// Determines whether the specified ArchiveFileInfo instances are considered equal.
  609. /// </summary>
  610. /// <param name="afi1">The first ArchiveFileInfo to compare.</param>
  611. /// <param name="afi2">The second ArchiveFileInfo to compare.</param>
  612. /// <returns>true if the specified ArchiveFileInfo instances are considered equal; otherwise, false.</returns>
  613. public static bool operator ==(ArchiveFileInfo afi1, ArchiveFileInfo afi2)
  614. {
  615. return afi1.Equals(afi2);
  616. }
  617. /// <summary>
  618. /// Determines whether the specified ArchiveFileInfo instances are not considered equal.
  619. /// </summary>
  620. /// <param name="afi1">The first ArchiveFileInfo to compare.</param>
  621. /// <param name="afi2">The second ArchiveFileInfo to compare.</param>
  622. /// <returns>true if the specified ArchiveFileInfo instances are not considered equal; otherwise, false.</returns>
  623. public static bool operator !=(ArchiveFileInfo afi1, ArchiveFileInfo afi2)
  624. {
  625. return !afi1.Equals(afi2);
  626. }
  627. }
  628. /// <summary>
  629. /// Archive property struct.
  630. /// </summary>
  631. public struct ArchiveProperty
  632. {
  633. /// <summary>
  634. /// Gets the name of the archive property.
  635. /// </summary>
  636. public string Name { get; internal set; }
  637. /// <summary>
  638. /// Gets the value of the archive property.
  639. /// </summary>
  640. public object Value { get; internal set; }
  641. /// <summary>
  642. /// Determines whether the specified System.Object is equal to the current ArchiveProperty.
  643. /// </summary>
  644. /// <param name="obj">The System.Object to compare with the current ArchiveProperty.</param>
  645. /// <returns>true if the specified System.Object is equal to the current ArchiveProperty; otherwise, false.</returns>
  646. public override bool Equals(object obj)
  647. {
  648. return (obj is ArchiveProperty) ? Equals((ArchiveProperty) obj) : false;
  649. }
  650. /// <summary>
  651. /// Determines whether the specified ArchiveProperty is equal to the current ArchiveProperty.
  652. /// </summary>
  653. /// <param name="afi">The ArchiveProperty to compare with the current ArchiveProperty.</param>
  654. /// <returns>true if the specified ArchiveProperty is equal to the current ArchiveProperty; otherwise, false.</returns>
  655. public bool Equals(ArchiveProperty afi)
  656. {
  657. return afi.Name == Name && afi.Value == Value;
  658. }
  659. /// <summary>
  660. /// Serves as a hash function for a particular type.
  661. /// </summary>
  662. /// <returns> A hash code for the current ArchiveProperty.</returns>
  663. public override int GetHashCode()
  664. {
  665. return Name.GetHashCode() ^ Value.GetHashCode();
  666. }
  667. /// <summary>
  668. /// Returns a System.String that represents the current ArchiveProperty.
  669. /// </summary>
  670. /// <returns>A System.String that represents the current ArchiveProperty.</returns>
  671. public override string ToString()
  672. {
  673. return Name + " = " + Value;
  674. }
  675. /// <summary>
  676. /// Determines whether the specified ArchiveProperty instances are considered equal.
  677. /// </summary>
  678. /// <param name="afi1">The first ArchiveProperty to compare.</param>
  679. /// <param name="afi2">The second ArchiveProperty to compare.</param>
  680. /// <returns>true if the specified ArchiveProperty instances are considered equal; otherwise, false.</returns>
  681. public static bool operator ==(ArchiveProperty afi1, ArchiveProperty afi2)
  682. {
  683. return afi1.Equals(afi2);
  684. }
  685. /// <summary>
  686. /// Determines whether the specified ArchiveProperty instances are not considered equal.
  687. /// </summary>
  688. /// <param name="afi1">The first ArchiveProperty to compare.</param>
  689. /// <param name="afi2">The second ArchiveProperty to compare.</param>
  690. /// <returns>true if the specified ArchiveProperty instances are not considered equal; otherwise, false.</returns>
  691. public static bool operator !=(ArchiveProperty afi1, ArchiveProperty afi2)
  692. {
  693. return !afi1.Equals(afi2);
  694. }
  695. }
  696. #if COMPRESS
  697. /// <summary>
  698. /// Archive compression mode.
  699. /// </summary>
  700. public enum CompressionMode
  701. {
  702. /// <summary>
  703. /// Create a new archive; overwrite the existing one.
  704. /// </summary>
  705. Create,
  706. /// <summary>
  707. /// Add data to the archive.
  708. /// </summary>
  709. Append,
  710. }
  711. internal enum InternalCompressionMode
  712. {
  713. /// <summary>
  714. /// Create a new archive; overwrite the existing one.
  715. /// </summary>
  716. Create,
  717. /// <summary>
  718. /// Add data to the archive.
  719. /// </summary>
  720. Append,
  721. /// <summary>
  722. /// Modify archive data.
  723. /// </summary>
  724. Modify
  725. }
  726. /// <summary>
  727. /// Zip encryption method enum.
  728. /// </summary>
  729. public enum ZipEncryptionMethod
  730. {
  731. /// <summary>
  732. /// ZipCrypto encryption method.
  733. /// </summary>
  734. ZipCrypto,
  735. /// <summary>
  736. /// AES 128 bit encryption method.
  737. /// </summary>
  738. Aes128,
  739. /// <summary>
  740. /// AES 192 bit encryption method.
  741. /// </summary>
  742. Aes192,
  743. /// <summary>
  744. /// AES 256 bit encryption method.
  745. /// </summary>
  746. Aes256
  747. }
  748. /// <summary>
  749. /// Archive update data for UpdateCallback.
  750. /// </summary>
  751. internal struct UpdateData
  752. {
  753. public uint FilesCount;
  754. public InternalCompressionMode Mode;
  755. public Dictionary<int, string> FileNamesToModify { get; set; }
  756. public List<ArchiveFileInfo> ArchiveFileData { get; set; }
  757. }
  758. #endif
  759. #endif
  760. }