Merge branch 'master' of ssh://git.samba.org/data/git/samba into selftest
[kai/samba.git] / lib / zlib / contrib / dotzlib / DotZLib / Inflater.cs
1 //\r
2 // © Copyright Henrik Ravn 2004\r
3 //\r
4 // Use, modification and distribution are subject to the Boost Software License, Version 1.0. \r
5 // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\r
6 //\r
7 \r
8 using System;\r
9 using System.Diagnostics;\r
10 using System.Runtime.InteropServices;\r
11 \r
12 namespace DotZLib\r
13 {\r
14     \r
15     /// <summary>\r
16     /// Implements a data decompressor, using the inflate algorithm in the ZLib dll\r
17     /// </summary>\r
18     public class Inflater : CodecBase\r
19         {\r
20         #region Dll imports\r
21         [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl, CharSet=CharSet.Ansi)]\r
22         private static extern int inflateInit_(ref ZStream sz, string vs, int size);\r
23 \r
24         [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]\r
25         private static extern int inflate(ref ZStream sz, int flush);\r
26 \r
27         [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]\r
28         private static extern int inflateReset(ref ZStream sz);\r
29 \r
30         [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]\r
31         private static extern int inflateEnd(ref ZStream sz);\r
32         #endregion\r
33 \r
34         /// <summary>\r
35         /// Constructs an new instance of the <c>Inflater</c>\r
36         /// </summary>\r
37         public Inflater() : base()\r
38                 {\r
39             int retval = inflateInit_(ref _ztream, Info.Version, Marshal.SizeOf(_ztream));\r
40             if (retval != 0)\r
41                 throw new ZLibException(retval, "Could not initialize inflater");\r
42 \r
43             resetOutput();\r
44         }\r
45 \r
46 \r
47         /// <summary>\r
48         /// Adds more data to the codec to be processed.\r
49         /// </summary>\r
50         /// <param name="data">Byte array containing the data to be added to the codec</param>\r
51         /// <param name="offset">The index of the first byte to add from <c>data</c></param>\r
52         /// <param name="count">The number of bytes to add</param>\r
53         /// <remarks>Adding data may, or may not, raise the <c>DataAvailable</c> event</remarks>\r
54         public override void Add(byte[] data, int offset, int count)\r
55         {\r
56             if (data == null) throw new ArgumentNullException();\r
57             if (offset < 0 || count < 0) throw new ArgumentOutOfRangeException();\r
58             if ((offset+count) > data.Length) throw new ArgumentException();\r
59 \r
60             int total = count;\r
61             int inputIndex = offset;\r
62             int err = 0;\r
63 \r
64             while (err >= 0 && inputIndex < total)\r
65             {\r
66                 copyInput(data, inputIndex, Math.Min(total - inputIndex, kBufferSize));\r
67                 err = inflate(ref _ztream, (int)FlushTypes.None);\r
68                 if (err == 0)\r
69                     while (_ztream.avail_out == 0)\r
70                     {\r
71                         OnDataAvailable();\r
72                         err = inflate(ref _ztream, (int)FlushTypes.None);\r
73                     }\r
74 \r
75                 inputIndex += (int)_ztream.total_in;\r
76             }\r
77             setChecksum( _ztream.adler );\r
78         }\r
79 \r
80 \r
81         /// <summary>\r
82         /// Finishes up any pending data that needs to be processed and handled.\r
83         /// </summary>\r
84         public override void Finish()\r
85         {\r
86             int err;\r
87             do \r
88             {\r
89                 err = inflate(ref _ztream, (int)FlushTypes.Finish);\r
90                 OnDataAvailable();\r
91             }\r
92             while (err == 0);\r
93             setChecksum( _ztream.adler );\r
94             inflateReset(ref _ztream);\r
95             resetOutput();\r
96         }\r
97 \r
98         /// <summary>\r
99         /// Closes the internal zlib inflate stream\r
100         /// </summary>\r
101         protected override void CleanUp() { inflateEnd(ref _ztream); }\r
102 \r
103 \r
104         }\r
105 }\r