LzmaDecodeStream.cs 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  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. using SevenZip.Sdk.Compression.Lzma;
  16. namespace SevenZip
  17. {
  18. #if LZMA_STREAM
  19. /// <summary>
  20. /// The stream which decompresses data with LZMA on the fly.
  21. /// </summary>
  22. public class LzmaDecodeStream : Stream
  23. {
  24. private readonly MemoryStream _buffer = new MemoryStream();
  25. private readonly Decoder _decoder = new Decoder();
  26. private readonly Stream _input;
  27. private byte[] _commonProperties;
  28. private bool _error;
  29. private bool _firstChunkRead;
  30. /// <summary>
  31. /// Initializes a new instance of the LzmaDecodeStream class.
  32. /// </summary>
  33. /// <param name="encodedStream">A compressed stream.</param>
  34. public LzmaDecodeStream(Stream encodedStream)
  35. {
  36. if (!encodedStream.CanRead)
  37. {
  38. throw new ArgumentException("The specified stream can not read.", "encodedStream");
  39. }
  40. _input = encodedStream;
  41. }
  42. /// <summary>
  43. /// Gets the chunk size.
  44. /// </summary>
  45. public int ChunkSize
  46. {
  47. get
  48. {
  49. return (int) _buffer.Length;
  50. }
  51. }
  52. /// <summary>
  53. /// Gets a value indicating whether the current stream supports reading.
  54. /// </summary>
  55. public override bool CanRead
  56. {
  57. get
  58. {
  59. return true;
  60. }
  61. }
  62. /// <summary>
  63. /// Gets a value indicating whether the current stream supports seeking.
  64. /// </summary>
  65. public override bool CanSeek
  66. {
  67. get
  68. {
  69. return false;
  70. }
  71. }
  72. /// <summary>
  73. /// Gets a value indicating whether the current stream supports writing.
  74. /// </summary>
  75. public override bool CanWrite
  76. {
  77. get
  78. {
  79. return false;
  80. }
  81. }
  82. /// <summary>
  83. /// Gets the length in bytes of the output stream.
  84. /// </summary>
  85. public override long Length
  86. {
  87. get
  88. {
  89. if (_input.CanSeek)
  90. {
  91. return _input.Length;
  92. }
  93. return _buffer.Length;
  94. }
  95. }
  96. /// <summary>
  97. /// Gets or sets the position within the output stream.
  98. /// </summary>
  99. public override long Position
  100. {
  101. get
  102. {
  103. if (_input.CanSeek)
  104. {
  105. return _input.Position;
  106. }
  107. return _buffer.Position;
  108. }
  109. set
  110. {
  111. throw new NotSupportedException();
  112. }
  113. }
  114. private void ReadChunk()
  115. {
  116. long size;
  117. byte[] properties;
  118. try
  119. {
  120. properties = SevenZipExtractor.GetLzmaProperties(_input, out size);
  121. }
  122. catch (LzmaException)
  123. {
  124. _error = true;
  125. return;
  126. }
  127. if (!_firstChunkRead)
  128. {
  129. _commonProperties = properties;
  130. }
  131. if (_commonProperties[0] != properties[0] ||
  132. _commonProperties[1] != properties[1] ||
  133. _commonProperties[2] != properties[2] ||
  134. _commonProperties[3] != properties[3] ||
  135. _commonProperties[4] != properties[4])
  136. {
  137. _error = true;
  138. return;
  139. }
  140. if (_buffer.Capacity < (int) size)
  141. {
  142. _buffer.Capacity = (int) size;
  143. }
  144. _buffer.SetLength(size);
  145. _decoder.SetDecoderProperties(properties);
  146. _buffer.Position = 0;
  147. _decoder.Code(
  148. _input, _buffer, 0, size, null);
  149. _buffer.Position = 0;
  150. }
  151. /// <summary>
  152. /// Does nothing.
  153. /// </summary>
  154. public override void Flush() {}
  155. /// <summary>
  156. /// Reads a sequence of bytes from the current stream and decompresses data if necessary.
  157. /// </summary>
  158. /// <param name="buffer">An array of bytes.</param>
  159. /// <param name="offset">The zero-based byte offset in buffer at which to begin storing the data read from the current stream.</param>
  160. /// <param name="count">The maximum number of bytes to be read from the current stream.</param>
  161. /// <returns>The total number of bytes read into the buffer.</returns>
  162. public override int Read(byte[] buffer, int offset, int count)
  163. {
  164. if (_error)
  165. {
  166. return 0;
  167. }
  168. if (!_firstChunkRead)
  169. {
  170. ReadChunk();
  171. _firstChunkRead = true;
  172. }
  173. int readCount = 0;
  174. while (count > _buffer.Length - _buffer.Position && !_error)
  175. {
  176. var buf = new byte[_buffer.Length - _buffer.Position];
  177. _buffer.Read(buf, 0, buf.Length);
  178. buf.CopyTo(buffer, offset);
  179. offset += buf.Length;
  180. count -= buf.Length;
  181. readCount += buf.Length;
  182. ReadChunk();
  183. }
  184. if (!_error)
  185. {
  186. _buffer.Read(buffer, offset, count);
  187. readCount += count;
  188. }
  189. return readCount;
  190. }
  191. /// <summary>
  192. /// Sets the position within the current stream.
  193. /// </summary>
  194. /// <param name="offset">A byte offset relative to the origin parameter.</param>
  195. /// <param name="origin">A value of type System.IO.SeekOrigin indicating the reference point used to obtain the new position.</param>
  196. /// <returns>The new position within the current stream.</returns>
  197. public override long Seek(long offset, SeekOrigin origin)
  198. {
  199. throw new NotSupportedException();
  200. }
  201. /// <summary>
  202. /// Sets the length of the current stream.
  203. /// </summary>
  204. /// <param name="value">The desired length of the current stream in bytes.</param>
  205. public override void SetLength(long value)
  206. {
  207. throw new NotSupportedException();
  208. }
  209. /// <summary>
  210. /// Writes a sequence of bytes to the current stream.
  211. /// </summary>
  212. /// <param name="buffer">An array of bytes.</param>
  213. /// <param name="offset">The zero-based byte offset in buffer at which to begin storing the data read from the current stream.</param>
  214. /// <param name="count">The maximum number of bytes to be read from the current stream.</param>
  215. public override void Write(byte[] buffer, int offset, int count)
  216. {
  217. throw new NotSupportedException();
  218. }
  219. }
  220. #endif
  221. }