SevenZipCompressorAsynchronous.cs 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  1. namespace SevenZip
  2. {
  3. using System.Collections.Generic;
  4. using System.IO;
  5. #if DOTNET20
  6. using System.Threading;
  7. #else
  8. using System.Windows.Threading;
  9. #endif
  10. partial class SevenZipCompressor
  11. {
  12. #region Delegates
  13. private delegate void CompressFiles1Delegate(string archiveName, string[] fileFullNames);
  14. private delegate void CompressFiles2Delegate(Stream archiveStream, string[] fileFullNames);
  15. private delegate void CompressFiles3Delegate(string archiveName, int commonRootLength, string[] fileFullNames);
  16. private delegate void CompressFiles4Delegate(Stream archiveStream, int commonRootLength, string[] fileFullNames);
  17. private delegate void CompressFilesEncrypted1Delegate(string archiveName, string password, string[] fileFullNames);
  18. private delegate void CompressFilesEncrypted2Delegate(Stream archiveStream, string password, string[] fileFullNames);
  19. private delegate void CompressFilesEncrypted3Delegate(string archiveName, int commonRootLength, string password, string[] fileFullNames);
  20. private delegate void CompressFilesEncrypted4Delegate(Stream archiveStream, int commonRootLength, string password, string[] fileFullNames);
  21. private delegate void CompressDirectory1Delegate(string directory, string archiveName);
  22. private delegate void CompressDirectory2Delegate(string directory, Stream archiveStream);
  23. private delegate void CompressDirectory3Delegate(string directory, string archiveName, string password);
  24. private delegate void CompressDirectory4Delegate(string directory, Stream archiveStream, string password);
  25. private delegate void CompressDirectory5Delegate(string directory, string archiveName,
  26. string password, string searchPattern, bool recursion);
  27. private delegate void CompressDirectory6Delegate(string directory, Stream archiveStream,
  28. string password, string searchPattern, bool recursion);
  29. private delegate void CompressStream1Delegate(Stream inStream, Stream outStream);
  30. private delegate void CompressStream2Delegate(Stream inStream, Stream outStream, string password);
  31. private delegate void ModifyArchive1Delegate(string archiveName, Dictionary<int, string> newFileNames);
  32. private delegate void ModifyArchive2Delegate(string archiveName, Dictionary<int, string> newFileNames,
  33. string password);
  34. #endregion
  35. #region CompressFiles overloads
  36. #if !DOTNET20
  37. /// <summary>
  38. /// Packs files into the archive asynchronously.
  39. /// </summary>
  40. /// <param name="fileFullNames">Array of file names to pack.</param>
  41. /// <param name="archiveName">The archive file name.</param>
  42. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  43. #else
  44. /// <summary>
  45. /// Packs files into the archive asynchronously.
  46. /// </summary>
  47. /// <param name="fileFullNames">Array of file names to pack.</param>
  48. /// <param name="archiveName">The archive file name.</param>
  49. #endif
  50. public void BeginCompressFiles(
  51. string archiveName
  52. #if !DOTNET20
  53. , DispatcherPriority eventPriority
  54. #endif
  55. , params string[] fileFullNames
  56. )
  57. {
  58. SaveContext(
  59. #if !DOTNET20
  60. eventPriority
  61. #endif
  62. );
  63. (new CompressFiles1Delegate(CompressFiles)).BeginInvoke(archiveName, fileFullNames,
  64. AsyncCallbackImplementation, this);
  65. }
  66. #if !DOTNET20
  67. /// <summary>
  68. /// Packs files into the archive asynchronously.
  69. /// </summary>
  70. /// <param name="fileFullNames">Array of file names to pack.</param>
  71. /// <param name="archiveStream">The archive output stream.
  72. /// Use CompressFiles(string archiveName ... ) overloads for archiving to disk.</param>
  73. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  74. #else
  75. /// <summary>
  76. /// Packs files into the archive asynchronously.
  77. /// </summary>
  78. /// <param name="fileFullNames">Array of file names to pack.</param>
  79. /// <param name="archiveStream">The archive output stream.
  80. /// Use CompressFiles(string archiveName ... ) overloads for archiving to disk.</param>
  81. #endif
  82. public void BeginCompressFiles(
  83. Stream archiveStream
  84. #if !DOTNET20
  85. , DispatcherPriority eventPriority
  86. #endif
  87. , params string[] fileFullNames
  88. )
  89. {
  90. SaveContext(
  91. #if !DOTNET20
  92. eventPriority
  93. #endif
  94. );
  95. (new CompressFiles2Delegate(CompressFiles)).BeginInvoke(archiveStream, fileFullNames,
  96. AsyncCallbackImplementation, this);
  97. }
  98. #if !DOTNET20
  99. /// <summary>
  100. /// Packs files into the archive asynchronously.
  101. /// </summary>
  102. /// <param name="fileFullNames">Array of file names to pack.</param>
  103. /// <param name="commonRootLength">The length of the common root of the file names.</param>
  104. /// <param name="archiveName">The archive file name.</param>
  105. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  106. #else
  107. /// <summary>
  108. /// Packs files into the archive asynchronously.
  109. /// </summary>
  110. /// <param name="fileFullNames">Array of file names to pack.</param>
  111. /// <param name="commonRootLength">The length of the common root of the file names.</param>
  112. /// <param name="archiveName">The archive file name.</param>
  113. #endif
  114. public void BeginCompressFiles(
  115. string archiveName, int commonRootLength
  116. #if !DOTNET20
  117. , DispatcherPriority eventPriority
  118. #endif
  119. , params string[] fileFullNames
  120. )
  121. {
  122. SaveContext(
  123. #if !DOTNET20
  124. eventPriority
  125. #endif
  126. );
  127. (new CompressFiles3Delegate(CompressFiles)).BeginInvoke(archiveName, commonRootLength, fileFullNames,
  128. AsyncCallbackImplementation, this);
  129. }
  130. #if !DOTNET20
  131. /// <summary>
  132. /// Packs files into the archive asynchronously.
  133. /// </summary>
  134. /// <param name="fileFullNames">Array of file names to pack.</param>
  135. /// <param name="commonRootLength">The length of the common root of the file names.</param>
  136. /// <param name="archiveStream">The archive output stream.
  137. /// Use CompressFiles(string archiveName, ... ) overloads for archiving to disk.</param>
  138. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  139. #else
  140. /// <summary>
  141. /// Packs files into the archive asynchronously.
  142. /// </summary>
  143. /// <param name="fileFullNames">Array of file names to pack.</param>
  144. /// <param name="commonRootLength">The length of the common root of the file names.</param>
  145. /// <param name="archiveStream">The archive output stream.
  146. /// Use CompressFiles(string archiveName, ... ) overloads for archiving to disk.</param>
  147. #endif
  148. public void BeginCompressFiles(
  149. Stream archiveStream, int commonRootLength
  150. #if !DOTNET20
  151. , DispatcherPriority eventPriority
  152. #endif
  153. , params string[] fileFullNames
  154. )
  155. {
  156. SaveContext(
  157. #if !DOTNET20
  158. eventPriority
  159. #endif
  160. );
  161. (new CompressFiles4Delegate(CompressFiles)).BeginInvoke(archiveStream, commonRootLength, fileFullNames,
  162. AsyncCallbackImplementation, this);
  163. }
  164. #if !DOTNET20
  165. /// <summary>
  166. /// Packs files into the archive asynchronously.
  167. /// </summary>
  168. /// <param name="fileFullNames">Array of file names to pack.</param>
  169. /// <param name="archiveName">The archive file name</param>
  170. /// <param name="password">The archive password.</param>
  171. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  172. #else
  173. /// <summary>
  174. /// Packs files into the archive asynchronously.
  175. /// </summary>
  176. /// <param name="fileFullNames">Array of file names to pack.</param>
  177. /// <param name="archiveName">The archive file name</param>
  178. /// <param name="password">The archive password.</param>
  179. #endif
  180. public void BeginCompressFilesEncrypted(
  181. string archiveName, string password
  182. #if !DOTNET20
  183. , DispatcherPriority eventPriority
  184. #endif
  185. , params string[] fileFullNames
  186. )
  187. {
  188. SaveContext(
  189. #if !DOTNET20
  190. eventPriority
  191. #endif
  192. );
  193. (new CompressFilesEncrypted1Delegate(CompressFilesEncrypted)).BeginInvoke(archiveName, password, fileFullNames,
  194. AsyncCallbackImplementation, this);
  195. }
  196. #if !DOTNET20
  197. /// <summary>
  198. /// Packs files into the archive asynchronously.
  199. /// </summary>
  200. /// <param name="fileFullNames">Array of file names to pack.</param>
  201. /// <param name="archiveStream">The archive output stream.
  202. /// Use CompressFiles( ... string archiveName ... ) overloads for archiving to disk.</param>
  203. /// <param name="password">The archive password.</param>
  204. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  205. #else
  206. /// <summary>
  207. /// Packs files into the archive asynchronously.
  208. /// </summary>
  209. /// <param name="fileFullNames">Array of file names to pack.</param>
  210. /// <param name="archiveStream">The archive output stream.
  211. /// Use CompressFiles( ... string archiveName ... ) overloads for archiving to disk.</param>
  212. /// <param name="password">The archive password.</param>
  213. #endif
  214. public void BeginCompressFilesEncrypted(
  215. Stream archiveStream, string password
  216. #if !DOTNET20
  217. , DispatcherPriority eventPriority
  218. #endif
  219. , params string[] fileFullNames
  220. )
  221. {
  222. SaveContext(
  223. #if !DOTNET20
  224. eventPriority
  225. #endif
  226. );
  227. (new CompressFilesEncrypted2Delegate(CompressFilesEncrypted)).BeginInvoke(archiveStream, password, fileFullNames,
  228. AsyncCallbackImplementation, this);
  229. }
  230. #if !DOTNET20
  231. /// <summary>
  232. /// Packs files into the archive asynchronously.
  233. /// </summary>
  234. /// <param name="fileFullNames">Array of file names to pack.</param>
  235. /// <param name="archiveName">The archive file name</param>
  236. /// <param name="password">The archive password.</param>
  237. /// <param name="commonRootLength">The length of the common root of the file names.</param>
  238. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  239. #else
  240. /// <summary>
  241. /// Packs files into the archive asynchronously.
  242. /// </summary>
  243. /// <param name="fileFullNames">Array of file names to pack.</param>
  244. /// <param name="archiveName">The archive file name</param>
  245. /// <param name="password">The archive password.</param>
  246. /// <param name="commonRootLength">The length of the common root of the file names.</param>
  247. #endif
  248. public void BeginCompressFilesEncrypted(
  249. string archiveName, int commonRootLength, string password
  250. #if !DOTNET20
  251. , DispatcherPriority eventPriority
  252. #endif
  253. , params string[] fileFullNames
  254. )
  255. {
  256. SaveContext(
  257. #if !DOTNET20
  258. eventPriority
  259. #endif
  260. );
  261. (new CompressFilesEncrypted3Delegate(CompressFilesEncrypted)).BeginInvoke(archiveName, commonRootLength, password,
  262. fileFullNames, AsyncCallbackImplementation, this);
  263. }
  264. #if !DOTNET20
  265. /// <summary>
  266. /// Packs files into the archive asynchronously.
  267. /// </summary>
  268. /// <param name="fileFullNames">Array of file names to pack.</param>
  269. /// <param name="archiveStream">The archive output stream.
  270. /// Use CompressFiles( ... string archiveName ... ) overloads for archiving to disk.</param>
  271. /// <param name="password">The archive password.</param>
  272. /// <param name="commonRootLength">The length of the common root of the file names.</param>
  273. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  274. #else
  275. /// <summary>
  276. /// Packs files into the archive asynchronously.
  277. /// </summary>
  278. /// <param name="fileFullNames">Array of file names to pack.</param>
  279. /// <param name="archiveStream">The archive output stream.
  280. /// Use CompressFiles( ... string archiveName ... ) overloads for archiving to disk.</param>
  281. /// <param name="password">The archive password.</param>
  282. /// <param name="commonRootLength">The length of the common root of the file names.</param>
  283. #endif
  284. public void BeginCompressFilesEncrypted(
  285. Stream archiveStream, int commonRootLength, string password
  286. #if !DOTNET20
  287. , DispatcherPriority eventPriority
  288. #endif
  289. , params string[] fileFullNames
  290. )
  291. {
  292. SaveContext(
  293. #if !DOTNET20
  294. eventPriority
  295. #endif
  296. );
  297. (new CompressFilesEncrypted4Delegate(CompressFilesEncrypted)).BeginInvoke(archiveStream, commonRootLength, password,
  298. fileFullNames, AsyncCallbackImplementation, this);
  299. }
  300. #endregion
  301. #region BeginCompressDirectory overloads
  302. #if !CS4
  303. #if !DOTNET20
  304. /// <summary>
  305. /// Recursively packs all files in the specified directory.
  306. /// </summary>
  307. /// <param name="directory">The directory to compress.</param>
  308. /// <param name="archiveName">The archive file name.</param>
  309. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  310. #else
  311. /// <summary>
  312. /// Recursively packs all files in the specified directory.
  313. /// </summary>
  314. /// <param name="directory">The directory to compress.</param>
  315. /// <param name="archiveName">The archive file name.</param>
  316. #endif
  317. public void BeginCompressDirectory(
  318. string directory, string archiveName
  319. #if !DOTNET20
  320. , DispatcherPriority eventPriority
  321. #endif
  322. )
  323. {
  324. SaveContext(
  325. #if !DOTNET20
  326. eventPriority
  327. #endif
  328. );
  329. (new CompressDirectory1Delegate(CompressDirectory)).BeginInvoke(directory, archiveName,
  330. AsyncCallbackImplementation, this);
  331. }
  332. #if !DOTNET20
  333. /// <summary>
  334. /// Recursively packs all files in the specified directory.
  335. /// </summary>
  336. /// <param name="directory">The directory to compress.</param>
  337. /// <param name="archiveStream">The archive output stream.
  338. /// Use CompressDirectory( ... string archiveName ... ) overloads for archiving to disk.</param>
  339. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  340. #else
  341. /// <summary>
  342. /// Recursively packs all files in the specified directory.
  343. /// </summary>
  344. /// <param name="directory">The directory to compress.</param>
  345. /// <param name="archiveStream">The archive output stream.
  346. /// Use CompressDirectory( ... string archiveName ... ) overloads for archiving to disk.</param>
  347. #endif
  348. public void BeginCompressDirectory(
  349. string directory, Stream archiveStream
  350. #if !DOTNET20
  351. , DispatcherPriority eventPriority
  352. #endif
  353. )
  354. {
  355. SaveContext(
  356. #if !DOTNET20
  357. eventPriority
  358. #endif
  359. );
  360. (new CompressDirectory2Delegate(CompressDirectory)).BeginInvoke(directory, archiveStream,
  361. AsyncCallbackImplementation, this);
  362. }
  363. #if !DOTNET20
  364. /// <summary>
  365. /// Recursively packs all files in the specified directory.
  366. /// </summary>
  367. /// <param name="directory">The directory to compress.</param>
  368. /// <param name="archiveName">The archive file name.</param>
  369. /// <param name="password">The archive password.</param>
  370. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  371. #else
  372. /// <summary>
  373. /// Recursively packs all files in the specified directory.
  374. /// </summary>
  375. /// <param name="directory">The directory to compress.</param>
  376. /// <param name="archiveName">The archive file name.</param>
  377. /// <param name="password">The archive password.</param>
  378. #endif
  379. public void BeginCompressDirectory(
  380. string directory, string archiveName, string password
  381. #if !DOTNET20
  382. , DispatcherPriority eventPriority
  383. #endif
  384. )
  385. {
  386. SaveContext(
  387. #if !DOTNET20
  388. eventPriority
  389. #endif
  390. );
  391. (new CompressDirectory3Delegate(CompressDirectory)).BeginInvoke(directory, archiveName,
  392. password, AsyncCallbackImplementation, this);
  393. }
  394. #if !DOTNET20
  395. /// <summary>
  396. /// Recursively packs all files in the specified directory.
  397. /// </summary>
  398. /// <param name="directory">The directory to compress.</param>
  399. /// <param name="archiveStream">The archive output stream.
  400. /// Use CompressDirectory( ... string archiveName ... ) overloads for archiving to disk.</param>
  401. /// <param name="password">The archive password.</param>
  402. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  403. #else
  404. /// <summary>
  405. /// Recursively packs all files in the specified directory.
  406. /// </summary>
  407. /// <param name="directory">The directory to compress.</param>
  408. /// <param name="archiveStream">The archive output stream.
  409. /// Use CompressDirectory( ... string archiveName ... ) overloads for archiving to disk.</param>
  410. /// <param name="password">The archive password.</param>
  411. #endif
  412. public void BeginCompressDirectory(
  413. string directory, Stream archiveStream, string password
  414. #if !DOTNET20
  415. , DispatcherPriority eventPriority
  416. #endif
  417. )
  418. {
  419. SaveContext(
  420. #if !DOTNET20
  421. eventPriority
  422. #endif
  423. );
  424. (new CompressDirectory4Delegate(CompressDirectory)).BeginInvoke(directory, archiveStream,
  425. password, AsyncCallbackImplementation, this);
  426. }
  427. #endif
  428. #if !DOTNET20
  429. /// <summary>
  430. /// Packs all files in the specified directory asynchronously.
  431. /// </summary>
  432. /// <param name="directory">The directory to compress.</param>
  433. /// <param name="archiveName">The archive file name.</param>
  434. /// <param name="password">The archive password.</param>
  435. /// <param name="searchPattern">Search string, such as "*.txt".</param>
  436. /// <param name="recursion">If true, files will be searched for recursively; otherwise, not.</param>
  437. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  438. #else
  439. /// <summary>
  440. /// Packs all files in the specified directory asynchronously.
  441. /// </summary>
  442. /// <param name="directory">The directory to compress.</param>
  443. /// <param name="archiveName">The archive file name.</param>
  444. /// <param name="password">The archive password.</param>
  445. /// <param name="searchPattern">Search string, such as "*.txt".</param>
  446. /// <param name="recursion">If true, files will be searched for recursively; otherwise, not.</param>
  447. #endif
  448. public void BeginCompressDirectory(string directory, string archiveName,
  449. string password
  450. #if CS4
  451. = ""
  452. #endif
  453. , string searchPattern
  454. #if CS4
  455. = "*"
  456. #endif
  457. , bool recursion
  458. #if CS4
  459. = true
  460. #endif
  461. #if !DOTNET20
  462. , DispatcherPriority eventPriority
  463. #if CS4
  464. = DispatcherPriority.Normal
  465. #endif
  466. #endif
  467. )
  468. {
  469. SaveContext(
  470. #if !DOTNET20
  471. eventPriority
  472. #endif
  473. );
  474. (new CompressDirectory5Delegate(CompressDirectory)).BeginInvoke(directory, archiveName,
  475. password, searchPattern, recursion, AsyncCallbackImplementation, this);
  476. }
  477. #if !DOTNET20
  478. /// <summary>
  479. /// Packs all files in the specified directory asynchronously.
  480. /// </summary>
  481. /// <param name="directory">The directory to compress.</param>
  482. /// <param name="archiveStream">The archive output stream.
  483. /// Use CompressDirectory( ... string archiveName ... ) overloads for archiving to disk.</param>
  484. /// <param name="password">The archive password.</param>
  485. /// <param name="searchPattern">Search string, such as "*.txt".</param>
  486. /// <param name="recursion">If true, files will be searched for recursively; otherwise, not.</param>
  487. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  488. #else
  489. /// <summary>
  490. /// Packs all files in the specified directory asynchronously.
  491. /// </summary>
  492. /// <param name="directory">The directory to compress.</param>
  493. /// <param name="archiveStream">The archive output stream.
  494. /// Use CompressDirectory( ... string archiveName ... ) overloads for archiving to disk.</param>
  495. /// <param name="password">The archive password.</param>
  496. /// <param name="searchPattern">Search string, such as "*.txt".</param>
  497. /// <param name="recursion">If true, files will be searched for recursively; otherwise, not.</param>
  498. #endif
  499. public void BeginCompressDirectory(string directory, Stream archiveStream,
  500. string password
  501. #if CS4
  502. = ""
  503. #endif
  504. , string searchPattern
  505. #if CS4
  506. = "*"
  507. #endif
  508. , bool recursion
  509. #if CS4
  510. = true
  511. #endif
  512. #if !DOTNET20
  513. , DispatcherPriority eventPriority
  514. #if CS4
  515. = DispatcherPriority.Normal
  516. #endif
  517. #endif
  518. )
  519. {
  520. SaveContext(
  521. #if !DOTNET20
  522. eventPriority
  523. #endif
  524. );
  525. (new CompressDirectory6Delegate(CompressDirectory)).BeginInvoke(directory, archiveStream,
  526. password, searchPattern, recursion, AsyncCallbackImplementation, this);
  527. }
  528. #endregion
  529. #region BeginCompressStream overloads
  530. #if !CS4
  531. #if !DOTNET20
  532. /// <summary>
  533. /// Compresses the specified stream.
  534. /// </summary>
  535. /// <param name="inStream">The source uncompressed stream.</param>
  536. /// <param name="outStream">The destination compressed stream.</param>
  537. /// <exception cref="ArgumentException">ArgumentException: at least one of the specified streams is invalid.</exception>
  538. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  539. #else
  540. /// <summary>
  541. /// Compresses the specified stream.
  542. /// </summary>
  543. /// <param name="inStream">The source uncompressed stream.</param>
  544. /// <param name="outStream">The destination compressed stream.</param>
  545. /// <exception cref="System.ArgumentException">ArgumentException: at least one of the specified streams is invalid.</exception>
  546. #endif
  547. public void BeginCompressStream(Stream inStream, Stream outStream
  548. #if !DOTNET20
  549. , DispatcherPriority eventPriority
  550. #endif
  551. )
  552. {
  553. SaveContext(
  554. #if !DOTNET20
  555. eventPriority
  556. #endif
  557. );
  558. (new CompressStream1Delegate(CompressStream)).BeginInvoke(inStream, outStream, AsyncCallbackImplementation, this);
  559. }
  560. #endif
  561. #if !DOTNET20
  562. /// <summary>
  563. /// Compresses the specified stream.
  564. /// </summary>
  565. /// <param name="inStream">The source uncompressed stream.</param>
  566. /// <param name="outStream">The destination compressed stream.</param>
  567. /// <param name="password">The archive password.</param>
  568. /// <exception cref="System.ArgumentException">ArgumentException: at least one of the specified streams is invalid.</exception>
  569. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  570. #else
  571. /// <summary>
  572. /// Compresses the specified stream.
  573. /// </summary>
  574. /// <param name="inStream">The source uncompressed stream.</param>
  575. /// <param name="outStream">The destination compressed stream.</param>
  576. /// <param name="password">The archive password.</param>
  577. /// <exception cref="System.ArgumentException">ArgumentException: at least one of the specified streams is invalid.</exception>
  578. #endif
  579. public void BeginCompressStream(Stream inStream, Stream outStream, string password
  580. #if !DOTNET20
  581. , DispatcherPriority eventPriority
  582. #if CS4
  583. = DispatcherPriority.Normal
  584. #endif
  585. #endif
  586. )
  587. {
  588. SaveContext(
  589. #if !DOTNET20
  590. eventPriority
  591. #endif
  592. );
  593. (new CompressStream2Delegate(CompressStream)).BeginInvoke(inStream, outStream, password, AsyncCallbackImplementation, this);
  594. }
  595. #endregion
  596. #region BeginModifyArchive overloads
  597. #if !CS4
  598. #if !DOTNET20
  599. /// <summary>
  600. /// Modifies the existing archive asynchronously (renames files or deletes them).
  601. /// </summary>
  602. /// <param name="archiveName">The archive file name.</param>
  603. /// <param name="newFileNames">New file names. Null value to delete the corresponding index.</param>
  604. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  605. #else
  606. /// <summary>
  607. /// Modifies the existing archive asynchronously (renames files or deletes them).
  608. /// </summary>
  609. /// <param name="archiveName">The archive file name.</param>
  610. /// <param name="newFileNames">New file names. Null value to delete the corresponding index.</param>
  611. #endif
  612. public void BeginModifyArchive(string archiveName, Dictionary<int, string> newFileNames
  613. #if !DOTNET20
  614. , DispatcherPriority eventPriority
  615. #endif
  616. )
  617. {
  618. SaveContext(
  619. #if !DOTNET20
  620. eventPriority
  621. #endif
  622. );
  623. (new ModifyArchive1Delegate(ModifyArchive)).BeginInvoke(archiveName, newFileNames, AsyncCallbackImplementation, this);
  624. }
  625. #endif
  626. #if !DOTNET20
  627. /// <summary>
  628. /// Modifies the existing archive asynchronously (renames files or deletes them).
  629. /// </summary>
  630. /// <param name="archiveName">The archive file name.</param>
  631. /// <param name="newFileNames">New file names. Null value to delete the corresponding index.</param>
  632. /// <param name="password">The archive password.</param>
  633. /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
  634. #else
  635. /// <summary>
  636. /// Modifies the existing archive asynchronously (renames files or deletes them).
  637. /// </summary>
  638. /// <param name="archiveName">The archive file name.</param>
  639. /// <param name="newFileNames">New file names. Null value to delete the corresponding index.</param>
  640. /// <param name="password">The archive password.</param>
  641. #endif
  642. public void BeginModifyArchive(string archiveName, Dictionary<int, string> newFileNames,
  643. string password
  644. #if CS4
  645. = ""
  646. #endif
  647. #if !DOTNET20
  648. , DispatcherPriority eventPriority
  649. #if CS4
  650. = DispatcherPriority.Normal
  651. #endif
  652. #endif
  653. )
  654. {
  655. SaveContext(
  656. #if !DOTNET20
  657. eventPriority
  658. #endif
  659. );
  660. (new ModifyArchive2Delegate(ModifyArchive)).BeginInvoke(archiveName, newFileNames, password, AsyncCallbackImplementation, this);
  661. }
  662. #endregion
  663. }
  664. }