EventArgs.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  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.IO;
  15. namespace SevenZip
  16. {
  17. /// <summary>
  18. /// EventArgs for storing PercentDone property.
  19. /// </summary>
  20. public class PercentDoneEventArgs : EventArgs
  21. {
  22. private readonly byte _percentDone;
  23. /// <summary>
  24. /// Initializes a new instance of the PercentDoneEventArgs class.
  25. /// </summary>
  26. /// <param name="percentDone">The percent of finished work.</param>
  27. /// <exception cref="System.ArgumentOutOfRangeException"/>
  28. public PercentDoneEventArgs(byte percentDone)
  29. {
  30. if (percentDone > 100 || percentDone < 0)
  31. {
  32. throw new ArgumentOutOfRangeException("percentDone",
  33. "The percent of finished work must be between 0 and 100.");
  34. }
  35. _percentDone = percentDone;
  36. }
  37. /// <summary>
  38. /// 获取完成工作的百分比。
  39. /// Gets the percent of finished work.
  40. /// </summary>
  41. public byte PercentDone
  42. {
  43. get
  44. {
  45. return _percentDone;
  46. }
  47. }
  48. /// <summary>
  49. /// 获取或设置是否停止当前的归档操作。
  50. /// Gets or sets whether to stop the current archive operation.
  51. /// </summary>
  52. public bool Cancel { get; set; }
  53. /// <summary>
  54. /// Converts a [0, 1] rate to its percent equivalent.
  55. /// </summary>
  56. /// <param name="doneRate">The rate of the done work.</param>
  57. /// <returns>Percent integer equivalent.</returns>
  58. /// <exception cref="System.ArgumentException"/>
  59. internal static byte ProducePercentDone(float doneRate)
  60. {
  61. #if !WINCE
  62. return (byte) Math.Round(Math.Min(100*doneRate, 100), MidpointRounding.AwayFromZero);
  63. #else
  64. return (byte) Math.Round(Math.Min(100*doneRate, 100));
  65. #endif
  66. }
  67. }
  68. /// <summary>
  69. /// The EventArgs class for accurate progress handling.
  70. /// </summary>
  71. public sealed class ProgressEventArgs : PercentDoneEventArgs
  72. {
  73. private readonly byte _delta;
  74. /// <summary>
  75. /// Initializes a new instance of the ProgressEventArgs class.
  76. /// </summary>
  77. /// <param name="percentDone">The percent of finished work.</param>
  78. /// <param name="percentDelta">The percent of work done after the previous event.</param>
  79. public ProgressEventArgs(byte percentDone, byte percentDelta)
  80. : base(percentDone)
  81. {
  82. _delta = percentDelta;
  83. }
  84. /// <summary>
  85. /// 获取中完成工作的百分比变化。
  86. /// Gets the change in done work percentage.
  87. /// </summary>
  88. public byte PercentDelta
  89. {
  90. get
  91. {
  92. return _delta;
  93. }
  94. }
  95. }
  96. #if UNMANAGED
  97. /// <summary>
  98. /// EventArgs used to report the file information which is going to be packed.
  99. /// </summary>
  100. public sealed class FileInfoEventArgs : PercentDoneEventArgs
  101. {
  102. private readonly ArchiveFileInfo _fileInfo;
  103. /// <summary>
  104. /// Initializes a new instance of the FileInfoEventArgs class.
  105. /// </summary>
  106. /// <param name="fileInfo">The current ArchiveFileInfo.</param>
  107. /// <param name="percentDone">The percent of finished work.</param>
  108. public FileInfoEventArgs(ArchiveFileInfo fileInfo, byte percentDone)
  109. : base(percentDone)
  110. {
  111. _fileInfo = fileInfo;
  112. }
  113. /// <summary>
  114. /// Gets the corresponding FileInfo to the event.
  115. /// </summary>
  116. public ArchiveFileInfo FileInfo
  117. {
  118. get
  119. {
  120. return _fileInfo;
  121. }
  122. }
  123. }
  124. /// <summary>
  125. /// EventArgs used to report the size of unpacked archive data
  126. /// </summary>
  127. public sealed class OpenEventArgs : EventArgs
  128. {
  129. private readonly ulong _totalSize;
  130. /// <summary>
  131. /// Initializes a new instance of the OpenEventArgs class
  132. /// </summary>
  133. /// <param name="totalSize">Size of unpacked archive data</param>
  134. [CLSCompliant(false)]
  135. public OpenEventArgs(ulong totalSize)
  136. {
  137. _totalSize = totalSize;
  138. }
  139. /// <summary>
  140. /// Gets the size of unpacked archive data
  141. /// </summary>
  142. [CLSCompliant(false)]
  143. public ulong TotalSize
  144. {
  145. get
  146. {
  147. return _totalSize;
  148. }
  149. }
  150. }
  151. /// <summary>
  152. /// Stores an int number
  153. /// </summary>
  154. public sealed class IntEventArgs : EventArgs
  155. {
  156. private readonly int _value;
  157. /// <summary>
  158. /// Initializes a new instance of the IntEventArgs class
  159. /// </summary>
  160. /// <param name="value">Useful data carried by the IntEventArgs class</param>
  161. public IntEventArgs(int value)
  162. {
  163. _value = value;
  164. }
  165. /// <summary>
  166. /// Gets the value of the IntEventArgs class
  167. /// </summary>
  168. public int Value
  169. {
  170. get
  171. {
  172. return _value;
  173. }
  174. }
  175. }
  176. /// <summary>
  177. /// EventArgs class which stores the file name.
  178. /// </summary>
  179. public sealed class FileNameEventArgs : PercentDoneEventArgs
  180. {
  181. private readonly string _fileName;
  182. /// <summary>
  183. /// Initializes a new instance of the FileNameEventArgs class.
  184. /// </summary>
  185. /// <param name="fileName">The file name.</param>
  186. /// <param name="percentDone">The percent of finished work</param>
  187. public FileNameEventArgs(string fileName, byte percentDone) :
  188. base(percentDone)
  189. {
  190. _fileName = fileName;
  191. }
  192. /// <summary>
  193. /// Gets the file name.
  194. /// </summary>
  195. public string FileName
  196. {
  197. get
  198. {
  199. return _fileName;
  200. }
  201. }
  202. }
  203. /// <summary>
  204. /// EventArgs for FileExists event, stores the file name and asks whether to overwrite it in case it already exists.
  205. /// </summary>
  206. public sealed class FileOverwriteEventArgs : EventArgs
  207. {
  208. /// <summary>
  209. /// Initializes a new instance of the FileOverwriteEventArgs class
  210. /// </summary>
  211. /// <param name="fileName">The file name.</param>
  212. public FileOverwriteEventArgs(string fileName)
  213. {
  214. FileName = fileName;
  215. }
  216. /// <summary>
  217. /// Gets or sets the value indicating whether to cancel the extraction.
  218. /// </summary>
  219. public bool Cancel { get; set; }
  220. /// <summary>
  221. /// Gets or sets the file name to extract to. Null means skip.
  222. /// </summary>
  223. public string FileName { get; set; }
  224. }
  225. /// <summary>
  226. /// The reason for calling <see cref="ExtractFileCallback"/>.
  227. /// </summary>
  228. public enum ExtractFileCallbackReason
  229. {
  230. /// <summary>
  231. /// <see cref="ExtractFileCallback"/> is called the first time for a file.
  232. /// </summary>
  233. Start,
  234. /// <summary>
  235. /// All data has been written to the target without any exceptions.
  236. /// </summary>
  237. Done,
  238. /// <summary>
  239. /// An exception occured during extraction of the file.
  240. /// </summary>
  241. Failure
  242. }
  243. /// <summary>
  244. /// The arguments passed to <see cref="ExtractFileCallback"/>.
  245. /// </summary>
  246. /// <remarks>
  247. /// For each file, <see cref="ExtractFileCallback"/> is first called with <see cref="Reason"/>
  248. /// set to <see cref="ExtractFileCallbackReason.Start"/>. If the callback chooses to extract the
  249. /// file data by setting <see cref="ExtractToFile"/> or <see cref="ExtractToStream"/>, the callback
  250. /// will be called a second time with <see cref="Reason"/> set to
  251. /// <see cref="ExtractFileCallbackReason.Done"/> or <see cref="ExtractFileCallbackReason.Failure"/>
  252. /// to allow for any cleanup task like closing the stream.
  253. /// </remarks>
  254. public class ExtractFileCallbackArgs : EventArgs
  255. {
  256. private readonly ArchiveFileInfo _archiveFileInfo;
  257. private Stream _extractToStream;
  258. /// <summary>
  259. /// Initializes a new instance of the <see cref="ExtractFileCallbackArgs"/> class.
  260. /// </summary>
  261. /// <param name="archiveFileInfo">The information about file in the archive.</param>
  262. public ExtractFileCallbackArgs(ArchiveFileInfo archiveFileInfo)
  263. {
  264. Reason = ExtractFileCallbackReason.Start;
  265. _archiveFileInfo = archiveFileInfo;
  266. }
  267. /// <summary>
  268. /// Information about file in the archive.
  269. /// </summary>
  270. /// <value>Information about file in the archive.</value>
  271. public ArchiveFileInfo ArchiveFileInfo
  272. {
  273. get
  274. {
  275. return _archiveFileInfo;
  276. }
  277. }
  278. /// <summary>
  279. /// The reason for calling <see cref="ExtractFileCallback"/>.
  280. /// </summary>
  281. /// <remarks>
  282. /// If neither <see cref="ExtractToFile"/> nor <see cref="ExtractToStream"/> is set,
  283. /// <see cref="ExtractFileCallback"/> will not be called after <see cref="ExtractFileCallbackReason.Start"/>.
  284. /// </remarks>
  285. /// <value>The reason.</value>
  286. public ExtractFileCallbackReason Reason { get; internal set; }
  287. /// <summary>
  288. /// The exception that occurred during extraction.
  289. /// </summary>
  290. /// <value>The _Exception.</value>
  291. /// <remarks>
  292. /// If the callback is called with <see cref="Reason"/> set to <see cref="ExtractFileCallbackReason.Failure"/>,
  293. /// this member contains the _Exception that occurred.
  294. /// The default behavior is to rethrow the _Exception after return of the callback.
  295. /// However the callback can set <see cref="Exception"/> to <c>null</c> to swallow the _Exception
  296. /// and continue extraction with the next file.
  297. /// </remarks>
  298. public Exception Exception { get; set; }
  299. /// <summary>
  300. /// Gets or sets a value indicating whether to cancel the extraction.
  301. /// </summary>
  302. /// <value><c>true</c> to cancel the extraction; <c>false</c> to continue. The default is <c>false</c>.</value>
  303. public bool CancelExtraction { get; set; }
  304. /// <summary>
  305. /// Gets or sets whether and where to extract the file.
  306. /// </summary>
  307. /// <value>The path where to extract the file to.</value>
  308. /// <remarks>
  309. /// If <see cref="ExtractToStream"/> is set, this mmember will be ignored.
  310. /// </remarks>
  311. public string ExtractToFile { get; set; }
  312. /// <summary>
  313. /// Gets or sets whether and where to extract the file.
  314. /// </summary>
  315. /// <value>The the extracted data is written to.</value>
  316. /// <remarks>
  317. /// If both this member and <see cref="ExtractToFile"/> are <c>null</c> (the defualt), the file
  318. /// will not be extracted and the callback will be be executed a second time with the <see cref="Reason"/>
  319. /// set to <see cref="ExtractFileCallbackReason.Done"/> or <see cref="ExtractFileCallbackReason.Failure"/>.
  320. /// </remarks>
  321. public Stream ExtractToStream
  322. {
  323. get
  324. {
  325. return _extractToStream;
  326. }
  327. set
  328. {
  329. if (_extractToStream != null && !_extractToStream.CanWrite)
  330. {
  331. throw new ExtractionFailedException("The specified stream is not writable!");
  332. }
  333. _extractToStream = value;
  334. }
  335. }
  336. /// <summary>
  337. /// Gets or sets any data that will be preserved between the <see cref="ExtractFileCallbackReason.Start"/> callback call
  338. /// and the <see cref="ExtractFileCallbackReason.Done"/> or <see cref="ExtractFileCallbackReason.Failure"/> calls.
  339. /// </summary>
  340. /// <value>The data.</value>
  341. public object ObjectData { get; set; }
  342. }
  343. /// <summary>
  344. /// Callback delegate for <see cref="SevenZipExtractor.ExtractFiles(SevenZip.ExtractFileCallback)"/>.
  345. /// </summary>
  346. public delegate void ExtractFileCallback(ExtractFileCallbackArgs extractFileCallbackArgs);
  347. #endif
  348. }