ArchiveOpenCallback.cs 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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.IO;
  16. using System.Runtime.InteropServices;
  17. #if MONO
  18. using SevenZip.Mono;
  19. using SevenZip.Mono.COM;
  20. #endif
  21. namespace SevenZip
  22. {
  23. #if UNMANAGED
  24. /// <summary>
  25. /// Callback to handle the archive opening
  26. /// </summary>
  27. internal sealed class ArchiveOpenCallback : CallbackBase, IArchiveOpenCallback, IArchiveOpenVolumeCallback,
  28. ICryptoGetTextPassword, IDisposable
  29. {
  30. private FileInfo _fileInfo;
  31. private Dictionary<string, InStreamWrapper> _wrappers =
  32. new Dictionary<string, InStreamWrapper>();
  33. public readonly List<string> VolumeFileNames = new List<string>();
  34. /// <summary>
  35. /// Performs the common initialization.
  36. /// </summary>
  37. /// <param name="fileName">Volume file name.</param>
  38. private void Init(string fileName)
  39. {
  40. if (!String.IsNullOrEmpty(fileName))
  41. {
  42. _fileInfo = new FileInfo(fileName);
  43. VolumeFileNames.Add(fileName);
  44. }
  45. }
  46. /// <summary>
  47. /// Initializes a new instance of the ArchiveOpenCallback class.
  48. /// </summary>
  49. /// <param name="fileName">The archive file name.</param>
  50. public ArchiveOpenCallback(string fileName)
  51. {
  52. Init(fileName);
  53. }
  54. /// <summary>
  55. /// Initializes a new instance of the ArchiveOpenCallback class.
  56. /// </summary>
  57. /// <param name="fileName">The archive file name.</param>
  58. /// <param name="password">Password for the archive.</param>
  59. public ArchiveOpenCallback(string fileName, string password) : base(password)
  60. {
  61. Init(fileName);
  62. }
  63. #region IArchiveOpenCallback Members
  64. public void SetTotal(IntPtr files, IntPtr bytes) {}
  65. public void SetCompleted(IntPtr files, IntPtr bytes) {}
  66. #endregion
  67. #region IArchiveOpenVolumeCallback Members
  68. public int GetProperty(ItemPropId propId, ref PropVariant value)
  69. {
  70. switch (propId)
  71. {
  72. case ItemPropId.Name:
  73. value.VarType = VarEnum.VT_BSTR;
  74. value.Value = Marshal.StringToBSTR(_fileInfo.FullName);
  75. break;
  76. case ItemPropId.IsDirectory:
  77. value.VarType = VarEnum.VT_BOOL;
  78. value.UInt64Value = (byte) (_fileInfo.Attributes & FileAttributes.Directory);
  79. break;
  80. case ItemPropId.Size:
  81. value.VarType = VarEnum.VT_UI8;
  82. value.UInt64Value = (UInt64) _fileInfo.Length;
  83. break;
  84. case ItemPropId.Attributes:
  85. value.VarType = VarEnum.VT_UI4;
  86. value.UInt32Value = (uint) _fileInfo.Attributes;
  87. break;
  88. case ItemPropId.CreationTime:
  89. value.VarType = VarEnum.VT_FILETIME;
  90. value.Int64Value = _fileInfo.CreationTime.ToFileTime();
  91. break;
  92. case ItemPropId.LastAccessTime:
  93. value.VarType = VarEnum.VT_FILETIME;
  94. value.Int64Value = _fileInfo.LastAccessTime.ToFileTime();
  95. break;
  96. case ItemPropId.LastWriteTime:
  97. value.VarType = VarEnum.VT_FILETIME;
  98. value.Int64Value = _fileInfo.LastWriteTime.ToFileTime();
  99. break;
  100. }
  101. return 0;
  102. }
  103. public int GetStream(string name, out IInStream inStream)
  104. {
  105. if (!File.Exists(name))
  106. {
  107. name = Path.Combine(Path.GetDirectoryName(_fileInfo.FullName), name);
  108. if (!File.Exists(name))
  109. {
  110. inStream = null;
  111. AddException(new FileNotFoundException("The volume \"" + name + "\" was not found. Extraction can be impossible."));
  112. return 1;
  113. }
  114. }
  115. VolumeFileNames.Add(name);
  116. if (_wrappers.ContainsKey(name))
  117. {
  118. inStream = _wrappers[name];
  119. }
  120. else
  121. {
  122. try
  123. {
  124. var wrapper = new InStreamWrapper(
  125. new FileStream(name, FileMode.Open, FileAccess.Read, FileShare.ReadWrite), true);
  126. _wrappers.Add(name, wrapper);
  127. inStream = wrapper;
  128. }
  129. catch (Exception)
  130. {
  131. AddException(new FileNotFoundException("Failed to open the volume \"" + name + "\". Extraction is impossible."));
  132. inStream = null;
  133. return 1;
  134. }
  135. }
  136. return 0;
  137. }
  138. #endregion
  139. #region ICryptoGetTextPassword Members
  140. /// <summary>
  141. /// Sets password for the archive
  142. /// </summary>
  143. /// <param name="password">Password for the archive</param>
  144. /// <returns>Zero if everything is OK</returns>
  145. public int CryptoGetTextPassword(out string password)
  146. {
  147. password = Password;
  148. return 0;
  149. }
  150. #endregion
  151. #region IDisposable Members
  152. public void Dispose()
  153. {
  154. if (_wrappers != null)
  155. {
  156. foreach (InStreamWrapper wrap in _wrappers.Values)
  157. {
  158. wrap.Dispose();
  159. }
  160. _wrappers = null;
  161. }
  162. #if MONO
  163. libp7zInvokerRaw.FreeObject(Handle);
  164. #endif
  165. GC.SuppressFinalize(this);
  166. }
  167. #endregion
  168. }
  169. #endif
  170. }