Unzip.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. using CommonLang.Concurrent;
  2. using CommonLang.IO;
  3. using MPQ;
  4. using MPQ.Updater;
  5. using System;
  6. using System.IO;
  7. namespace CommonMPQ.SharpZipLib
  8. {
  9. public class SharpZipLibMPQDirver : MPQDirver
  10. {
  11. public override bool RunUnzipSingle(MPQUpdater updater, MPQUpdater.RemoteFileInfo zip, MPQUpdater.RemoteFileInfo mpq, AtomicLong process)
  12. {
  13. return Unzip.SharpZipLib_RunUnzipMPQ(updater, zip, mpq, process);
  14. }
  15. }
  16. public class Unzip
  17. {
  18. public static int BUFF_SIZE = 1024 * 1024 * 16;
  19. public static bool SharpZipLib_DecompressZ(ArraySegment<byte> src, ArraySegment<byte> dst)
  20. {
  21. using (var input = new MemoryStream(src.Array, src.Offset, src.Count))
  22. {
  23. using (var zstream = new Zip.Compression.Streams.InflaterInputStream(input, new Zip.Compression.Inflater(false), Math.Min(dst.Count, BUFF_SIZE)))
  24. {
  25. IOUtil.ReadToEnd(zstream, dst.Array, dst.Offset, dst.Count);
  26. }
  27. }
  28. return true;
  29. }
  30. public static bool SharpZipLib_RunUnzipMPQ(MPQUpdater updater, MPQUpdater.RemoteFileInfo zip_file, MPQUpdater.RemoteFileInfo mpq_file, AtomicLong current_unzip_bytes)
  31. {
  32. using (FileStream fis = new FileStream(zip_file.file.FullName, FileMode.Open, FileAccess.Read))
  33. {
  34. using (FileStream fos = new FileStream(mpq_file.file.FullName, FileMode.Create, FileAccess.Write))
  35. {
  36. try
  37. {
  38. if (MPQUpdater.ZIP_EXT.ToLower().EndsWith(".zip"))
  39. {
  40. using (var zipf = new CommonMPQ.SharpZipLib.Zip.ZipFile(fis))
  41. {
  42. var e = zipf.GetEnumerator();
  43. if (e.MoveNext())
  44. {
  45. var ze = (CommonMPQ.SharpZipLib.Zip.ZipEntry)(e.Current);
  46. Stream zipin = zipf.GetInputStream(ze);
  47. if (IOUtil.ReadTo(zipin, fos, mpq_file.size, (int readed) =>
  48. {
  49. current_unzip_bytes += readed;
  50. return !updater.IsDisposing;
  51. }, 1024 * 1024) == false)
  52. { return false; }
  53. }
  54. zipf.Close();
  55. }
  56. }
  57. else if (MPQUpdater.ZIP_EXT.ToLower().EndsWith(".mgz"))
  58. {
  59. var gstream = new CommonMPQ.SharpZipLib.GZip.GZipInputStream(fis);
  60. if (IOUtil.ReadTo(gstream, fos, mpq_file.size, (int readed) =>
  61. {
  62. current_unzip_bytes += readed;
  63. return !updater.IsDisposing;
  64. }, 1024 * 1024) == false)
  65. { return false; }
  66. gstream.Close();
  67. }
  68. else if (MPQUpdater.ZIP_EXT.ToLower().EndsWith(".z"))
  69. {
  70. var gstream = new CommonMPQ.SharpZipLib.Zip.Compression.Streams.InflaterInputStream(fis);
  71. if (IOUtil.ReadTo(gstream, fos, mpq_file.size, (int readed) =>
  72. {
  73. current_unzip_bytes += readed;
  74. return !updater.IsDisposing;
  75. }, 1024 * 1024) == false)
  76. { return false; }
  77. gstream.Close();
  78. }
  79. return true;
  80. }
  81. finally
  82. {
  83. fos.Close();
  84. fis.Close();
  85. }
  86. }
  87. }
  88. }
  89. }
  90. }