PageRenderTime 41ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 1ms

/WabbitStudio/Source/Wabbitemu/utilities/unzip.h

#
C++ Header | 437 lines | 175 code | 68 blank | 194 comment | 1 complexity | dbc95ecf47d1e74aa5298e577f4cabc6 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. /* unzip.h -- IO for uncompress .zip files using zlib
  2. Version 1.1, February 14h, 2010
  3. part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html )
  4. Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html )
  5. Modifications of Unzip for Zip64
  6. Copyright (C) 2007-2008 Even Rouault
  7. Modifications for Zip64 support on both zip and unzip
  8. Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com )
  9. For more info read MiniZip_info.txt
  10. ---------------------------------------------------------------------------------
  11. Condition of use and distribution are the same than zlib :
  12. This software is provided 'as-is', without any express or implied
  13. warranty. In no event will the authors be held liable for any damages
  14. arising from the use of this software.
  15. Permission is granted to anyone to use this software for any purpose,
  16. including commercial applications, and to alter it and redistribute it
  17. freely, subject to the following restrictions:
  18. 1. The origin of this software must not be misrepresented; you must not
  19. claim that you wrote the original software. If you use this software
  20. in a product, an acknowledgment in the product documentation would be
  21. appreciated but is not required.
  22. 2. Altered source versions must be plainly marked as such, and must not be
  23. misrepresented as being the original software.
  24. 3. This notice may not be removed or altered from any source distribution.
  25. ---------------------------------------------------------------------------------
  26. Changes
  27. See header of unzip64.c
  28. */
  29. #ifndef _unz64_H
  30. #define _unz64_H
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34. #ifndef _ZLIB_H
  35. #include "zlib.h"
  36. #endif
  37. #ifndef _ZLIBIOAPI_H
  38. #include "ioapi.h"
  39. #endif
  40. #ifdef HAVE_BZIP2
  41. #include "bzlib.h"
  42. #endif
  43. #define Z_BZIP2ED 12
  44. #if defined(STRICTUNZIP) || defined(STRICTZIPUNZIP)
  45. /* like the STRICT of WIN32, we define a pointer that cannot be converted
  46. from (void*) without cast */
  47. typedef struct TagunzFile__ { int unused; } unzFile__;
  48. typedef unzFile__ *unzFile;
  49. #else
  50. typedef voidp unzFile;
  51. #endif
  52. #define UNZ_OK (0)
  53. #define UNZ_END_OF_LIST_OF_FILE (-100)
  54. #define UNZ_ERRNO (Z_ERRNO)
  55. #define UNZ_EOF (0)
  56. #define UNZ_PARAMERROR (-102)
  57. #define UNZ_BADZIPFILE (-103)
  58. #define UNZ_INTERNALERROR (-104)
  59. #define UNZ_CRCERROR (-105)
  60. /* tm_unz contain date/time info */
  61. typedef struct tm_unz_s
  62. {
  63. uInt tm_sec; /* seconds after the minute - [0,59] */
  64. uInt tm_min; /* minutes after the hour - [0,59] */
  65. uInt tm_hour; /* hours since midnight - [0,23] */
  66. uInt tm_mday; /* day of the month - [1,31] */
  67. uInt tm_mon; /* months since January - [0,11] */
  68. uInt tm_year; /* years - [1980..2044] */
  69. } tm_unz;
  70. /* unz_global_info structure contain global data about the ZIPfile
  71. These data comes from the end of central dir */
  72. typedef struct unz_global_info64_s
  73. {
  74. ZPOS64_T number_entry; /* total number of entries in
  75. the central dir on this disk */
  76. uLong size_comment; /* size of the global comment of the zipfile */
  77. } unz_global_info64;
  78. typedef struct unz_global_info_s
  79. {
  80. uLong number_entry; /* total number of entries in
  81. the central dir on this disk */
  82. uLong size_comment; /* size of the global comment of the zipfile */
  83. } unz_global_info;
  84. /* unz_file_info contain information about a file in the zipfile */
  85. typedef struct unz_file_info64_s
  86. {
  87. uLong version; /* version made by 2 bytes */
  88. uLong version_needed; /* version needed to extract 2 bytes */
  89. uLong flag; /* general purpose bit flag 2 bytes */
  90. uLong compression_method; /* compression method 2 bytes */
  91. uLong dosDate; /* last mod file date in Dos fmt 4 bytes */
  92. uLong crc; /* crc-32 4 bytes */
  93. ZPOS64_T compressed_size; /* compressed size 8 bytes */
  94. ZPOS64_T uncompressed_size; /* uncompressed size 8 bytes */
  95. uLong size_filename; /* filename length 2 bytes */
  96. uLong size_file_extra; /* extra field length 2 bytes */
  97. uLong size_file_comment; /* file comment length 2 bytes */
  98. uLong disk_num_start; /* disk number start 2 bytes */
  99. uLong internal_fa; /* internal file attributes 2 bytes */
  100. uLong external_fa; /* external file attributes 4 bytes */
  101. tm_unz tmu_date;
  102. } unz_file_info64;
  103. typedef struct unz_file_info_s
  104. {
  105. uLong version; /* version made by 2 bytes */
  106. uLong version_needed; /* version needed to extract 2 bytes */
  107. uLong flag; /* general purpose bit flag 2 bytes */
  108. uLong compression_method; /* compression method 2 bytes */
  109. uLong dosDate; /* last mod file date in Dos fmt 4 bytes */
  110. uLong crc; /* crc-32 4 bytes */
  111. uLong compressed_size; /* compressed size 4 bytes */
  112. uLong uncompressed_size; /* uncompressed size 4 bytes */
  113. uLong size_filename; /* filename length 2 bytes */
  114. uLong size_file_extra; /* extra field length 2 bytes */
  115. uLong size_file_comment; /* file comment length 2 bytes */
  116. uLong disk_num_start; /* disk number start 2 bytes */
  117. uLong internal_fa; /* internal file attributes 2 bytes */
  118. uLong external_fa; /* external file attributes 4 bytes */
  119. tm_unz tmu_date;
  120. } unz_file_info;
  121. extern int ZEXPORT unzStringFileNameCompare OF ((const TCHAR* fileName1,
  122. const TCHAR* fileName2,
  123. int iCaseSensitivity));
  124. /*
  125. Compare two filename (fileName1,fileName2).
  126. If iCaseSenisivity = 1, comparision is case sensitivity (like strcmp)
  127. If iCaseSenisivity = 2, comparision is not case sensitivity (like strcmpi
  128. or strcasecmp)
  129. If iCaseSenisivity = 0, case sensitivity is defaut of your operating system
  130. (like 1 on Unix, 2 on Windows)
  131. */
  132. extern unzFile ZEXPORT unzOpen OF((const TCHAR *path));
  133. extern unzFile ZEXPORT unzOpen64 OF((const void *path));
  134. /*
  135. Open a Zip file. path contain the full pathname (by example,
  136. on a Windows XP computer "c:\\zlib\\zlib113.zip" or on an Unix computer
  137. "zlib/zlib113.zip".
  138. If the zipfile cannot be opened (file don't exist or in not valid), the
  139. return value is NULL.
  140. Else, the return value is a unzFile Handle, usable with other function
  141. of this unzip package.
  142. the "64" function take a const void* pointer, because the path is just the
  143. value passed to the open64_file_func callback.
  144. Under Windows, if UNICODE is defined, using fill_fopen64_filefunc, the path
  145. is a pointer to a wide unicode string (LPCTSTR is LPCWSTR), so const char*
  146. does not describe the reality
  147. */
  148. extern unzFile ZEXPORT unzOpen2 OF((const TCHAR *path,
  149. zlib_filefunc_def* pzlib_filefunc_def));
  150. /*
  151. Open a Zip file, like unzOpen, but provide a set of file low level API
  152. for read/write the zip file (see ioapi.h)
  153. */
  154. extern unzFile ZEXPORT unzOpen2_64 OF((const void *path,
  155. zlib_filefunc64_def* pzlib_filefunc_def));
  156. /*
  157. Open a Zip file, like unz64Open, but provide a set of file low level API
  158. for read/write the zip file (see ioapi.h)
  159. */
  160. extern int ZEXPORT unzClose OF((unzFile file));
  161. /*
  162. Close a ZipFile opened with unzipOpen.
  163. If there is files inside the .Zip opened with unzOpenCurrentFile (see later),
  164. these files MUST be closed with unzipCloseCurrentFile before call unzipClose.
  165. return UNZ_OK if there is no problem. */
  166. extern int ZEXPORT unzGetGlobalInfo OF((unzFile file,
  167. unz_global_info *pglobal_info));
  168. extern int ZEXPORT unzGetGlobalInfo64 OF((unzFile file,
  169. unz_global_info64 *pglobal_info));
  170. /*
  171. Write info about the ZipFile in the *pglobal_info structure.
  172. No preparation of the structure is needed
  173. return UNZ_OK if there is no problem. */
  174. extern int ZEXPORT unzGetGlobalComment OF((unzFile file,
  175. TCHAR *szComment,
  176. uLong uSizeBuf));
  177. /*
  178. Get the global comment string of the ZipFile, in the szComment buffer.
  179. uSizeBuf is the size of the szComment buffer.
  180. return the number of byte copied or an error code <0
  181. */
  182. /***************************************************************************/
  183. /* Unzip package allow you browse the directory of the zipfile */
  184. extern int ZEXPORT unzGoToFirstFile OF((unzFile file));
  185. /*
  186. Set the current file of the zipfile to the first file.
  187. return UNZ_OK if there is no problem
  188. */
  189. extern int ZEXPORT unzGoToNextFile OF((unzFile file));
  190. /*
  191. Set the current file of the zipfile to the next file.
  192. return UNZ_OK if there is no problem
  193. return UNZ_END_OF_LIST_OF_FILE if the actual file was the latest.
  194. */
  195. extern int ZEXPORT unzLocateFile OF((unzFile file,
  196. const TCHAR *szFileName,
  197. int iCaseSensitivity));
  198. /*
  199. Try locate the file szFileName in the zipfile.
  200. For the iCaseSensitivity signification, see unzStringFileNameCompare
  201. return value :
  202. UNZ_OK if the file is found. It becomes the current file.
  203. UNZ_END_OF_LIST_OF_FILE if the file is not found
  204. */
  205. /* ****************************************** */
  206. /* Ryan supplied functions */
  207. /* unz_file_info contain information about a file in the zipfile */
  208. typedef struct unz_file_pos_s
  209. {
  210. uLong pos_in_zip_directory; /* offset in zip file directory */
  211. uLong num_of_file; /* # of file */
  212. } unz_file_pos;
  213. extern int ZEXPORT unzGetFilePos(
  214. unzFile file,
  215. unz_file_pos* file_pos);
  216. extern int ZEXPORT unzGoToFilePos(
  217. unzFile file,
  218. unz_file_pos* file_pos);
  219. typedef struct unz64_file_pos_s
  220. {
  221. ZPOS64_T pos_in_zip_directory; /* offset in zip file directory */
  222. ZPOS64_T num_of_file; /* # of file */
  223. } unz64_file_pos;
  224. extern int ZEXPORT unzGetFilePos64(
  225. unzFile file,
  226. unz64_file_pos* file_pos);
  227. extern int ZEXPORT unzGoToFilePos64(
  228. unzFile file,
  229. const unz64_file_pos* file_pos);
  230. /* ****************************************** */
  231. extern int ZEXPORT unzGetCurrentFileInfo64 OF((unzFile file,
  232. unz_file_info64 *pfile_info,
  233. TCHAR *szFileName,
  234. uLong fileNameBufferSize,
  235. void *extraField,
  236. uLong extraFieldBufferSize,
  237. TCHAR *szComment,
  238. uLong commentBufferSize));
  239. extern int ZEXPORT unzGetCurrentFileInfo OF((unzFile file,
  240. unz_file_info *pfile_info,
  241. TCHAR *szFileName,
  242. uLong fileNameBufferSize,
  243. void *extraField,
  244. uLong extraFieldBufferSize,
  245. TCHAR *szComment,
  246. uLong commentBufferSize));
  247. /*
  248. Get Info about the current file
  249. if pfile_info!=NULL, the *pfile_info structure will contain somes info about
  250. the current file
  251. if szFileName!=NULL, the filemane string will be copied in szFileName
  252. (fileNameBufferSize is the size of the buffer)
  253. if extraField!=NULL, the extra field information will be copied in extraField
  254. (extraFieldBufferSize is the size of the buffer).
  255. This is the Central-header version of the extra field
  256. if szComment!=NULL, the comment string of the file will be copied in szComment
  257. (commentBufferSize is the size of the buffer)
  258. */
  259. /** Addition for GDAL : START */
  260. extern ZPOS64_T ZEXPORT unzGetCurrentFileZStreamPos64 OF((unzFile file));
  261. /** Addition for GDAL : END */
  262. /***************************************************************************/
  263. /* for reading the content of the current zipfile, you can open it, read data
  264. from it, and close it (you can close it before reading all the file)
  265. */
  266. extern int ZEXPORT unzOpenCurrentFile OF((unzFile file));
  267. /*
  268. Open for reading data the current file in the zipfile.
  269. If there is no error, the return value is UNZ_OK.
  270. */
  271. extern int ZEXPORT unzOpenCurrentFilePassword OF((unzFile file,
  272. const char* password));
  273. /*
  274. Open for reading data the current file in the zipfile.
  275. password is a crypting password
  276. If there is no error, the return value is UNZ_OK.
  277. */
  278. extern int ZEXPORT unzOpenCurrentFile2 OF((unzFile file,
  279. int* method,
  280. int* level,
  281. int raw));
  282. /*
  283. Same than unzOpenCurrentFile, but open for read raw the file (not uncompress)
  284. if raw==1
  285. *method will receive method of compression, *level will receive level of
  286. compression
  287. note : you can set level parameter as NULL (if you did not want known level,
  288. but you CANNOT set method parameter as NULL
  289. */
  290. extern int ZEXPORT unzOpenCurrentFile3 OF((unzFile file,
  291. int* method,
  292. int* level,
  293. int raw,
  294. const char* password));
  295. /*
  296. Same than unzOpenCurrentFile, but open for read raw the file (not uncompress)
  297. if raw==1
  298. *method will receive method of compression, *level will receive level of
  299. compression
  300. note : you can set level parameter as NULL (if you did not want known level,
  301. but you CANNOT set method parameter as NULL
  302. */
  303. extern int ZEXPORT unzCloseCurrentFile OF((unzFile file));
  304. /*
  305. Close the file in zip opened with unzOpenCurrentFile
  306. Return UNZ_CRCERROR if all the file was read but the CRC is not good
  307. */
  308. extern int ZEXPORT unzReadCurrentFile OF((unzFile file,
  309. voidp buf,
  310. unsigned len));
  311. /*
  312. Read bytes from the current file (opened by unzOpenCurrentFile)
  313. buf contain buffer where data must be copied
  314. len the size of buf.
  315. return the number of byte copied if somes bytes are copied
  316. return 0 if the end of file was reached
  317. return <0 with error code if there is an error
  318. (UNZ_ERRNO for IO error, or zLib error for uncompress error)
  319. */
  320. extern z_off_t ZEXPORT unztell OF((unzFile file));
  321. extern ZPOS64_T ZEXPORT unztell64 OF((unzFile file));
  322. /*
  323. Give the current position in uncompressed data
  324. */
  325. extern int ZEXPORT unzeof OF((unzFile file));
  326. /*
  327. return 1 if the end of file was reached, 0 elsewhere
  328. */
  329. extern int ZEXPORT unzGetLocalExtrafield OF((unzFile file,
  330. voidp buf,
  331. unsigned len));
  332. /*
  333. Read extra field from the current file (opened by unzOpenCurrentFile)
  334. This is the local-header version of the extra field (sometimes, there is
  335. more info in the local-header version than in the central-header)
  336. if buf==NULL, it return the size of the local extra field
  337. if buf!=NULL, len is the size of the buffer, the extra header is copied in
  338. buf.
  339. the return value is the number of bytes copied in buf, or (if <0)
  340. the error code
  341. */
  342. /***************************************************************************/
  343. /* Get the current file offset */
  344. extern ZPOS64_T ZEXPORT unzGetOffset64 (unzFile file);
  345. extern uLong ZEXPORT unzGetOffset (unzFile file);
  346. /* Set the current file offset */
  347. extern int ZEXPORT unzSetOffset64 (unzFile file, ZPOS64_T pos);
  348. extern int ZEXPORT unzSetOffset (unzFile file, uLong pos);
  349. #ifdef __cplusplus
  350. }
  351. #endif
  352. #endif /* _unz64_H */