using System;
using System.IO;
using ICSharpCode.SharpZipLib.Checksum;
using ICSharpCode.SharpZipLib.Encryption;
using ICSharpCode.SharpZipLib.Zip.Compression;
using ICSharpCode.SharpZipLib.Zip.Compression.Streams;
namespace ICSharpCode.SharpZipLib.Zip
{
	/// 
	/// This is an InflaterInputStream that reads the files baseInputStream an zip archive
	/// one after another.  It has a special method to get the zip entry of
	/// the next file.  The zip entry contains information about the file name
	/// size, compressed size, Crc, etc.
	/// It includes support for Stored and Deflated entries.
	/// 
	/// 
Author of the original java version : Jochen Hoenicke
	/// 
	///
	///  This sample shows how to read a zip file
	/// 
	/// using System;
	/// using System.Text;
	/// using System.IO;
	///
	/// using ICSharpCode.SharpZipLib.Zip;
	///
	/// class MainClass
	/// {
	/// 	public static void Main(string[] args)
	/// 	{
	/// 		using ( ZipInputStream s = new ZipInputStream(File.OpenRead(args[0]))) {
	///
	/// 			ZipEntry theEntry;
	/// 			const int size = 2048;
	/// 			byte[] data = new byte[2048];
	///
	/// 			while ((theEntry = s.GetNextEntry()) != null) {
	///                 if ( entry.IsFile ) {
	/// 				    Console.Write("Show contents (y/n) ?");
	/// 				    if (Console.ReadLine() == "y") {
	/// 				    	while (true) {
	/// 				    		size = s.Read(data, 0, data.Length);
	/// 				    		if (size > 0) {
	/// 				    			Console.Write(new ASCIIEncoding().GetString(data, 0, size));
	/// 				    		} else {
	/// 				    			break;
	/// 				    		}
	/// 				    	}
	/// 				    }
	/// 				}
	/// 			}
	/// 		}
	/// 	}
	/// }
	/// 
	/// 
	public class ZipInputStream : InflaterInputStream
	{
		#region Instance Fields
		/// 
		/// Delegate for reading bytes from a stream.
		/// 
		delegate int ReadDataHandler(byte[] b, int offset, int length);
		/// 
		/// The current reader this instance.
		/// 
		ReadDataHandler internalReader;
		Crc32 crc = new Crc32();
		ZipEntry entry;
		long size;
		int method;
		int flags;
		string password;
		#endregion
		#region Constructors
		/// 
		/// Creates a new Zip input stream, for reading a zip archive.
		/// 
		/// The underlying  providing data.
		public ZipInputStream(Stream baseInputStream)
			: base(baseInputStream, new Inflater(true))
		{
			internalReader = new ReadDataHandler(ReadingNotAvailable);
		}
		/// 
		/// Creates a new Zip input stream, for reading a zip archive.
		/// 
		/// The underlying  providing data.
		/// Size of the buffer.
		public ZipInputStream(Stream baseInputStream, int bufferSize)
			: base(baseInputStream, new Inflater(true), bufferSize)
		{
			internalReader = new ReadDataHandler(ReadingNotAvailable);
		}
		#endregion
		/// 
		/// Optional password used for encryption when non-null
		/// 
		/// A password for all encrypted entries  in this 
		public string Password {
			get {
				return password;
			}
			set {
				password = value;
			}
		}
		/// 
		/// Gets a value indicating if there is a current entry and it can be decompressed
		/// 
		/// 
		/// The entry can only be decompressed if the library supports the zip features required to extract it.
		/// See the ZipEntry Version property for more details.
		/// 
		public bool CanDecompressEntry {
			get {
				return (entry != null) && entry.CanDecompress;
			}
		}
		/// 
		/// Advances to the next entry in the archive
		/// 
		/// 
		/// The next entry in the archive or null if there are no more entries.
		/// 
		/// 
		/// If the previous entry is still open CloseEntry is called.
		/// 
		/// 
		/// Input stream is closed
		/// 
		/// 
		/// Password is not set, password is invalid, compression method is invalid,
		/// version required to extract is not supported
		/// 
		public ZipEntry GetNextEntry()
		{
			if (crc == null) {
				throw new InvalidOperationException("Closed.");
			}
			if (entry != null) {
				CloseEntry();
			}
			int header = inputBuffer.ReadLeInt();
			if (header == ZipConstants.CentralHeaderSignature ||
				header == ZipConstants.EndOfCentralDirectorySignature ||
				header == ZipConstants.CentralHeaderDigitalSignature ||
				header == ZipConstants.ArchiveExtraDataSignature ||
				header == ZipConstants.Zip64CentralFileHeaderSignature) {
				// No more individual entries exist
				Dispose();
				return null;
			}
			// -jr- 07-Dec-2003 Ignore spanning temporary signatures if found
			// Spanning signature is same as descriptor signature and is untested as yet.
			if ((header == ZipConstants.SpanningTempSignature) || (header == ZipConstants.SpanningSignature)) {
				header = inputBuffer.ReadLeInt();
			}
			if (header != ZipConstants.LocalHeaderSignature) {
				throw new ZipException("Wrong Local header signature: 0x" + String.Format("{0:X}", header));
			}
			var versionRequiredToExtract = (short)inputBuffer.ReadLeShort();
			flags = inputBuffer.ReadLeShort();
			method = inputBuffer.ReadLeShort();
			var dostime = (uint)inputBuffer.ReadLeInt();
			int crc2 = inputBuffer.ReadLeInt();
			csize = inputBuffer.ReadLeInt();
			size = inputBuffer.ReadLeInt();
			int nameLen = inputBuffer.ReadLeShort();
			int extraLen = inputBuffer.ReadLeShort();
			bool isCrypted = (flags & 1) == 1;
			byte[] buffer = new byte[nameLen];
			inputBuffer.ReadRawBuffer(buffer);
			string name = ZipConstants.ConvertToStringExt(flags, buffer);
			entry = new ZipEntry(name, versionRequiredToExtract);
			entry.Flags = flags;
			entry.CompressionMethod = (CompressionMethod)method;
			if ((flags & 8) == 0) {
				entry.Crc = crc2 & 0xFFFFFFFFL;
				entry.Size = size & 0xFFFFFFFFL;
				entry.CompressedSize = csize & 0xFFFFFFFFL;
				entry.CryptoCheckValue = (byte)((crc2 >> 24) & 0xff);
			} else {
				// This allows for GNU, WinZip and possibly other archives, the PKZIP spec
				// says these values are zero under these circumstances.
				if (crc2 != 0) {
					entry.Crc = crc2 & 0xFFFFFFFFL;
				}
				if (size != 0) {
					entry.Size = size & 0xFFFFFFFFL;
				}
				if (csize != 0) {
					entry.CompressedSize = csize & 0xFFFFFFFFL;
				}
				entry.CryptoCheckValue = (byte)((dostime >> 8) & 0xff);
			}
			entry.DosTime = dostime;
			// If local header requires Zip64 is true then the extended header should contain
			// both values.
			// Handle extra data if present.  This can set/alter some fields of the entry.
			if (extraLen > 0) {
				byte[] extra = new byte[extraLen];
				inputBuffer.ReadRawBuffer(extra);
				entry.ExtraData = extra;
			}
			entry.ProcessExtraData(true);
			if (entry.CompressedSize >= 0) {
				csize = entry.CompressedSize;
			}
			if (entry.Size >= 0) {
				size = entry.Size;
			}
			if (method == (int)CompressionMethod.Stored && (!isCrypted && csize != size || (isCrypted && csize - ZipConstants.CryptoHeaderSize != size))) {
				throw new ZipException("Stored, but compressed != uncompressed");
			}
			// Determine how to handle reading of data if this is attempted.
			if (entry.IsCompressionMethodSupported()) {
				internalReader = new ReadDataHandler(InitialRead);
			} else {
				internalReader = new ReadDataHandler(ReadingNotSupported);
			}
			return entry;
		}
		/// 
		/// Read data descriptor at the end of compressed data.
		/// 
		void ReadDataDescriptor()
		{
			if (inputBuffer.ReadLeInt() != ZipConstants.DataDescriptorSignature) {
				throw new ZipException("Data descriptor signature not found");
			}
			entry.Crc = inputBuffer.ReadLeInt() & 0xFFFFFFFFL;
			if (entry.LocalHeaderRequiresZip64) {
				csize = inputBuffer.ReadLeLong();
				size = inputBuffer.ReadLeLong();
			} else {
				csize = inputBuffer.ReadLeInt();
				size = inputBuffer.ReadLeInt();
			}
			entry.CompressedSize = csize;
			entry.Size = size;
		}
		/// 
		/// Complete cleanup as the final part of closing.
		/// 
		/// True if the crc value should be tested
		void CompleteCloseEntry(bool testCrc)
		{
			StopDecrypting();
			if ((flags & 8) != 0) {
				ReadDataDescriptor();
			}
			size = 0;
			if (testCrc &&
				((crc.Value & 0xFFFFFFFFL) != entry.Crc) && (entry.Crc != -1)) {
				throw new ZipException("CRC mismatch");
			}
			crc.Reset();
			if (method == (int)CompressionMethod.Deflated) {
				inf.Reset();
			}
			entry = null;
		}
		/// 
		/// Closes the current zip entry and moves to the next one.
		/// 
		/// 
		/// The stream is closed
		/// 
		/// 
		/// The Zip stream ends early
		/// 
		public void CloseEntry()
		{
			if (crc == null) {
				throw new InvalidOperationException("Closed");
			}
			if (entry == null) {
				return;
			}
			if (method == (int)CompressionMethod.Deflated) {
				if ((flags & 8) != 0) {
					// We don't know how much we must skip, read until end.
					byte[] tmp = new byte[4096];
					// Read will close this entry
					while (Read(tmp, 0, tmp.Length) > 0) {
					}
					return;
				}
				csize -= inf.TotalIn;
				inputBuffer.Available += inf.RemainingInput;
			}
			if ((inputBuffer.Available > csize) && (csize >= 0)) {
				inputBuffer.Available = (int)((long)inputBuffer.Available - csize);
			} else {
				csize -= inputBuffer.Available;
				inputBuffer.Available = 0;
				while (csize != 0) {
					long skipped = Skip(csize);
					if (skipped <= 0) {
						throw new ZipException("Zip archive ends early.");
					}
					csize -= skipped;
				}
			}
			CompleteCloseEntry(false);
		}
		/// 
		/// Returns 1 if there is an entry available
		/// Otherwise returns 0.
		/// 
		public override int Available {
			get {
				return entry != null ? 1 : 0;
			}
		}
		/// 
		/// Returns the current size that can be read from the current entry if available
		/// 
		/// Thrown if the entry size is not known.
		/// Thrown if no entry is currently available.
		public override long Length {
			get {
				if (entry != null) {
					if (entry.Size >= 0) {
						return entry.Size;
					} else {
						throw new ZipException("Length not available for the current entry");
					}
				} else {
					throw new InvalidOperationException("No current entry");
				}
			}
		}
		/// 
		/// Reads a byte from the current zip entry.
		/// 
		/// 
		/// The byte or -1 if end of stream is reached.
		/// 
		public override int ReadByte()
		{
			byte[] b = new byte[1];
			if (Read(b, 0, 1) <= 0) {
				return -1;
			}
			return b[0] & 0xff;
		}
		/// 
		/// Handle attempts to read by throwing an .
		/// 
		/// The destination array to store data in.
		/// The offset at which data read should be stored.
		/// The maximum number of bytes to read.
		/// Returns the number of bytes actually read.
		int ReadingNotAvailable(byte[] destination, int offset, int count)
		{
			throw new InvalidOperationException("Unable to read from this stream");
		}
		/// 
		/// Handle attempts to read from this entry by throwing an exception
		/// 
		int ReadingNotSupported(byte[] destination, int offset, int count)
		{
			throw new ZipException("The compression method for this entry is not supported");
		}
		/// 
		/// Perform the initial read on an entry which may include
		/// reading encryption headers and setting up inflation.
		/// 
		/// The destination to fill with data read.
		/// The offset to start reading at.
		/// The maximum number of bytes to read.
		/// The actual number of bytes read.
		int InitialRead(byte[] destination, int offset, int count)
		{
			if (!CanDecompressEntry) {
				throw new ZipException("Library cannot extract this entry. Version required is (" + entry.Version + ")");
			}
			// Handle encryption if required.
			if (entry.IsCrypted) {
				if (password == null) {
					throw new ZipException("No password set.");
				}
				// Generate and set crypto transform...
				var managed = new PkzipClassicManaged();
				byte[] key = PkzipClassic.GenerateKeys(ZipConstants.ConvertToArray(password));
				inputBuffer.CryptoTransform = managed.CreateDecryptor(key, null);
				byte[] cryptbuffer = new byte[ZipConstants.CryptoHeaderSize];
				inputBuffer.ReadClearTextBuffer(cryptbuffer, 0, ZipConstants.CryptoHeaderSize);
				if (cryptbuffer[ZipConstants.CryptoHeaderSize - 1] != entry.CryptoCheckValue) {
					throw new ZipException("Invalid password");
				}
				if (csize >= ZipConstants.CryptoHeaderSize) {
					csize -= ZipConstants.CryptoHeaderSize;
				} else if ((entry.Flags & (int)GeneralBitFlags.Descriptor) == 0) {
					throw new ZipException(string.Format("Entry compressed size {0} too small for encryption", csize));
				}
			} else {
				inputBuffer.CryptoTransform = null;
			}
			if ((csize > 0) || ((flags & (int)GeneralBitFlags.Descriptor) != 0)) {
				if ((method == (int)CompressionMethod.Deflated) && (inputBuffer.Available > 0)) {
					inputBuffer.SetInflaterInput(inf);
				}
				internalReader = new ReadDataHandler(BodyRead);
				return BodyRead(destination, offset, count);
			} else {
				internalReader = new ReadDataHandler(ReadingNotAvailable);
				return 0;
			}
		}
		/// 
		/// Read a block of bytes from the stream.
		/// 
		/// The destination for the bytes.
		/// The index to start storing data.
		/// The number of bytes to attempt to read.
		/// Returns the number of bytes read.
		/// Zero bytes read means end of stream.
		public override int Read(byte[] buffer, int offset, int count)
		{
			if (buffer == null) {
				throw new ArgumentNullException("nameof(buffer)");
			}
			if (offset < 0) {
				throw new ArgumentOutOfRangeException("nameof(offset)", "Cannot be negative");
			}
			if (count < 0) {
				throw new ArgumentOutOfRangeException("nameof(count)", "Cannot be negative");
			}
			if ((buffer.Length - offset) < count) {
				throw new ArgumentException("Invalid offset/count combination");
			}
			return internalReader(buffer, offset, count);
		}
		/// 
		/// Reads a block of bytes from the current zip entry.
		/// 
		/// 
		/// The number of bytes read (this may be less than the length requested, even before the end of stream), or 0 on end of stream.
		/// 
		/// 
		/// An i/o error occured.
		/// 
		/// 
		/// The deflated stream is corrupted.
		/// 
		/// 
		/// The stream is not open.
		/// 
		int BodyRead(byte[] buffer, int offset, int count)
		{
			if (crc == null) {
				throw new InvalidOperationException("Closed");
			}
			if ((entry == null) || (count <= 0)) {
				return 0;
			}
			if (offset + count > buffer.Length) {
				throw new ArgumentException("Offset + count exceeds buffer size");
			}
			bool finished = false;
			switch (method) {
				case (int)CompressionMethod.Deflated:
					count = base.Read(buffer, offset, count);
					if (count <= 0) {
						if (!inf.IsFinished) {
							throw new ZipException("Inflater not finished!");
						}
						inputBuffer.Available = inf.RemainingInput;
						// A csize of -1 is from an unpatched local header
						if ((flags & 8) == 0 &&
							(inf.TotalIn != csize && csize != 0xFFFFFFFF && csize != -1 || inf.TotalOut != size)) {
							throw new ZipException("Size mismatch: " + csize + ";" + size + " <-> " + inf.TotalIn + ";" + inf.TotalOut);
						}
						inf.Reset();
						finished = true;
					}
					break;
				case (int)CompressionMethod.Stored:
					if ((count > csize) && (csize >= 0)) {
						count = (int)csize;
					}
					if (count > 0) {
						count = inputBuffer.ReadClearTextBuffer(buffer, offset, count);
						if (count > 0) {
							csize -= count;
							size -= count;
						}
					}
					if (csize == 0) {
						finished = true;
					} else {
						if (count < 0) {
							throw new ZipException("EOF in stored block");
						}
					}
					break;
			}
			if (count > 0) {
				crc.Update(buffer, offset, count);
			}
			if (finished) {
				CompleteCloseEntry(true);
			}
			return count;
		}
		/// 
		/// Closes the zip input stream
		/// 
		protected override void Dispose(bool disposing)
		{
			internalReader = new ReadDataHandler(ReadingNotAvailable);
			crc = null;
			entry = null;
			base.Dispose(disposing);
		}
	}
}