File: NativeZip.cs

package info (click to toggle)
mono 6.14.1%2Bds2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,282,732 kB
  • sloc: cs: 11,182,461; xml: 2,850,281; ansic: 699,123; cpp: 122,919; perl: 58,604; javascript: 30,841; asm: 21,845; makefile: 19,602; sh: 10,973; python: 4,772; pascal: 925; sql: 859; sed: 16; php: 1
file content (127 lines) | stat: -rw-r--r-- 4,879 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// Native.cs created with MonoDevelop
// User: alan at 12:18 13/10/2008
//
// To change standard headers go to Edit->Preferences->Coding->Standard Headers
//


using System;
using System.Runtime.InteropServices;

namespace zipsharp
{
	static class NativeZip
	{
		const int DEFAULT_COMPRESSION = 0;
		const int Z_DEFLATED = 8;

		public static void CloseArchive (ZipHandle handle)
		{
			CloseArchive (handle, null);
		}

		public static void CloseArchive (ZipHandle handle, string comment)
		{
			zipClose (handle, comment);
			handle.SetHandleAsInvalid ();
		}

		public static void CloseFile (ZipHandle handle)
		{
			zipCloseFileInZip (handle);
		}

		public static ZipHandle OpenArchive32 (ZlibFileFuncDef32 funcDef, Append append)
		{
			ZipHandle h = zipOpen2_32 ("", (int) append, IntPtr.Zero, ref funcDef);
			if (h.IsInvalid)
				throw new Exception ("Could not open the zip archive");
			return h;
		}

		public static ZipHandle OpenArchive64 (ZlibFileFuncDef64 funcDef, Append append)
		{
			ZipHandle h = zipOpen2_64 ("", (int) append, IntPtr.Zero, ref funcDef);
			if (h.IsInvalid)
				throw new Exception ("Could not open the zip archive");
			return h;
		}

		public static int OpenFile32 (ZipHandle handle, string filename)
		{
			return OpenFile32 (handle, filename, DEFAULT_COMPRESSION);
		}

		public static int OpenFile32 (ZipHandle handle, string filename, int compressionLevel)
		{
			ZipFileInfo32 fileInfo = new ZipFileInfo32 (DateTime.Now);
			int method = compressionLevel == 0 ? 0 : Z_DEFLATED;
			return zipOpenNewFileInZip_32 (handle, filename, ref fileInfo, IntPtr.Zero, 0, IntPtr.Zero, 0, "", method, compressionLevel);
		}

		public static int OpenFile64 (ZipHandle handle, string filename)
		{
			return OpenFile64 (handle, filename, DEFAULT_COMPRESSION);
		}

		public static int OpenFile64 (ZipHandle handle, string filename, int compressionLevel)
		{
			ZipFileInfo64 fileInfo = new ZipFileInfo64 (DateTime.Now);
			int method = compressionLevel == 0 ? 0 : Z_DEFLATED;
			return zipOpenNewFileInZip_64 (handle, filename, ref fileInfo, IntPtr.Zero, 0, IntPtr.Zero, 0, "", method, compressionLevel);
		}

		public static unsafe void Write (ZipHandle handle, byte[] buffer, int offset, uint count)
		{
			fixed (byte* b = &buffer[offset])
				zipWriteInFileInZip (handle, b, count);
		}

		[DllImport ("MonoPosixHelper")]
		static extern unsafe int zipWriteInFileInZip (ZipHandle handle,
		                                               byte* buffer,
		                                               uint len);

		[DllImport ("MonoPosixHelper")]
		static extern int zipCloseFileInZip (ZipHandle handle);

		[DllImport ("MonoPosixHelper", EntryPoint = "zipOpen2")]
		static extern ZipHandle zipOpen2_32 (string pathname,
		                                     int append,
		                                     IntPtr globalcomment, // zipcharpc*
		                                     ref ZlibFileFuncDef32 pzlib_filefunc_def); // zlib_filefunc_def*

		[DllImport ("MonoPosixHelper", EntryPoint = "zipOpen2")]
		static extern ZipHandle zipOpen2_64 (string pathname,
		                                     int append,
		                                     IntPtr globalcomment, // zipcharpc*
		                                     ref ZlibFileFuncDef64 pzlib_filefunc_def); // zlib_filefunc_def*

		[DllImport ("MonoPosixHelper")]
		static extern int zipClose (ZipHandle handle, string globalComment);

		[DllImport ("MonoPosixHelper", EntryPoint = "zipOpenNewFileInZip")]
		static extern int zipOpenNewFileInZip_32 (ZipHandle handle,
		                                          string filename,
		                                          ref ZipFileInfo32 zipfi,
		                                          IntPtr extrafield_local,
		                                          uint size_extrafield_local,
		                                          IntPtr extrafield_global,
		                                          uint size_extrafield_global,
		                                          string comment,
		                                          int method,
		                                          int level);

		[DllImport ("MonoPosixHelper", EntryPoint = "zipOpenNewFileInZip")]
		static extern int zipOpenNewFileInZip_64 (ZipHandle handle,
		                                          string filename,
		                                          ref ZipFileInfo64 zipfi,
		                                          IntPtr extrafield_local,
		                                          uint size_extrafield_local,
		                                          IntPtr extrafield_global,
		                                          uint size_extrafield_global,
		                                          string comment,
		                                          int method,
		                                          int level);
	}
}