unzip.h
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:18k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. /*---------------------------------------------------------------------------
  2.   unzip.h (new)
  3.   This header file contains the public macros and typedefs required by
  4.   both the UnZip sources and by any application using the UnZip API.  If
  5.   UNZIP_INTERNAL is defined, it includes unzpriv.h (containing includes,
  6.   prototypes and extern variables used by the actual UnZip sources).
  7.   ---------------------------------------------------------------------------*/
  8. #ifndef __unzip_h   /* prevent multiple inclusions */
  9. #define __unzip_h
  10. /*---------------------------------------------------------------------------
  11.     Predefined, machine-specific macros.
  12.   ---------------------------------------------------------------------------*/
  13. #ifdef __GO32__                 /* MS-DOS extender:  NOT Unix */
  14. #  ifdef unix
  15. #    undef unix
  16. #  endif
  17. #  ifdef __unix
  18. #    undef __unix
  19. #  endif
  20. #  ifdef __unix__
  21. #    undef __unix__
  22. #  endif
  23. #endif
  24. #if ((defined(__convex__) || defined(__convexc__)) && !defined(CONVEX))
  25. #  define CONVEX
  26. #endif
  27. #if (defined(unix) || defined(__unix) || defined(__unix__))
  28. #  ifndef UNIX
  29. #    define UNIX
  30. #  endif
  31. #endif /* unix || __unix || __unix__ */
  32. #if (defined(M_XENIX) || defined(COHERENT) || defined(__hpux))
  33. #  ifndef UNIX
  34. #    define UNIX
  35. #  endif
  36. #endif /* M_XENIX || COHERENT || __hpux */
  37. #if (defined(CONVEX) || defined(MINIX) || defined(_AIX) || defined(__QNX__))
  38. #  ifndef UNIX
  39. #    define UNIX
  40. #  endif
  41. #endif /* CONVEX || MINIX || _AIX || __QNX__ */
  42. #if (defined(VM_CMS) || defined(MVS))
  43. #  define CMS_MVS
  44. #endif
  45. #if (defined(__OS2__) && !defined(OS2))
  46. #  define OS2
  47. #endif
  48. #if (defined(__TANDEM) && !defined(TANDEM))
  49. #  define TANDEM
  50. #endif
  51. #if (defined(__VMS) && !defined(VMS))
  52. #  define VMS
  53. #endif
  54. #if ((defined(__WIN32__) || defined(_WIN32)) && !defined(WIN32))
  55. #  define WIN32
  56. #endif
  57. #if ((defined(__WINNT__) || defined(__WINNT)) && !defined(WIN32))
  58. #  define WIN32
  59. #endif
  60. #ifdef __COMPILER_KCC__
  61. #  include <c-env.h>
  62. #  ifdef SYS_T20
  63. #    define TOPS20
  64. #  endif
  65. #endif /* __COMPILER_KCC__ */
  66. /* Borland C does not define __TURBOC__ if compiling for a 32-bit platform */
  67. #ifdef __BORLANDC__
  68. #  ifndef __TURBOC__
  69. #    define __TURBOC__
  70. #  endif
  71. #  if (!defined(__MSDOS__) && !defined(OS2) && !defined(WIN32))
  72. #    define __MSDOS__
  73. #  endif
  74. #endif
  75. /* define MSDOS for Turbo C (unless OS/2) and Power C as well as Microsoft C */
  76. #ifdef __POWERC
  77. #  define __TURBOC__
  78. #  define MSDOS
  79. #endif /* __POWERC */
  80. #if (defined(__MSDOS__) && !defined(MSDOS))   /* just to make sure */
  81. #  define MSDOS
  82. #endif
  83. /* RSXNTDJ (at least up to v1.3) compiles for WIN32 (RSXNT) using a derivate
  84.    of the EMX environment, but defines MSDOS and __GO32__. ARG !!! */
  85. #if (defined(MSDOS) && defined(WIN32))
  86. #  undef MSDOS                  /* WIN32 is >>>not<<< MSDOS */
  87. #endif
  88. #if (defined(__GO32__) && defined(__EMX__) && defined(__RSXNT__))
  89. #  undef __GO32__
  90. #endif
  91. #if (defined(linux) && !defined(LINUX))
  92. #  define LINUX
  93. #endif
  94. #ifdef __riscos
  95. #  define RISCOS
  96. #endif
  97. #if (defined(THINK_C) || defined(MPW))
  98. #  define MACOS
  99. #endif
  100. #if (defined(__MWERKS__) && defined(macintosh))
  101. #  define MACOS
  102. #endif
  103. /* use prototypes and ANSI libraries if __STDC__, or Microsoft or Borland C, or
  104.  * Silicon Graphics, or Convex?, or IBM C Set/2, or GNU gcc/emx, or Watcom C,
  105.  * or Macintosh, or Windows NT, or Sequent, or Atari or IBM RS/6000.
  106.  */
  107. #if (defined(__STDC__) || defined(MSDOS) || defined(WIN32) || defined(__EMX__))
  108. #  ifndef PROTO
  109. #    define PROTO
  110. #  endif
  111. #  ifndef MODERN
  112. #    define MODERN
  113. #  endif
  114. #endif
  115. #if (defined(__IBMC__) || defined(__BORLANDC__) || defined(__WATCOMC__))
  116. #  ifndef PROTO
  117. #    define PROTO
  118. #  endif
  119. #  ifndef MODERN
  120. #    define MODERN
  121. #  endif
  122. #endif
  123. #if (defined(MACOS) || defined(ATARI_ST) || defined(RISCOS))
  124. #  ifndef PROTO
  125. #    define PROTO
  126. #  endif
  127. #  ifndef MODERN
  128. #    define MODERN
  129. #  endif
  130. #endif
  131. /* Sequent running Dynix/ptx:  non-modern compiler */
  132. #if (defined(_AIX) || defined(sgi) || (defined(_SEQUENT_) && !defined(PTX)))
  133. #  ifndef PROTO
  134. #    define PROTO
  135. #  endif
  136. #  ifndef MODERN
  137. #    define MODERN
  138. #  endif
  139. #endif
  140. #if (defined(CMS_MVS) || defined(__BEOS__))  /* || defined(CONVEX) */
  141. #  ifndef PROTO
  142. #    define PROTO
  143. #  endif
  144. #  ifndef MODERN
  145. #    define MODERN
  146. #  endif
  147. #endif
  148. /* turn off prototypes if requested */
  149. #if (defined(NOPROTO) && defined(PROTO))
  150. #  undef PROTO
  151. #endif
  152. /* used to remove arguments in function prototypes for non-ANSI C */
  153. #ifdef PROTO
  154. #  define OF(a) a
  155. #else
  156. #  define OF(a) ()
  157. #endif
  158. /* enable the "const" keyword only if MODERN and if not otherwise instructed */
  159. #ifdef MODERN
  160. #  if (!defined(ZCONST) && (defined(USE_CONST) || !defined(NO_CONST)))
  161. #    define ZCONST const
  162. #  endif
  163. #endif
  164. #ifndef ZCONST
  165. #  define ZCONST
  166. #endif
  167. /*---------------------------------------------------------------------------
  168.     Grab system-specific public include headers.
  169.   ---------------------------------------------------------------------------*/
  170. #ifdef POCKET_UNZIP             /* WinCE port */
  171. #  include "wince/punzip.h"     /* must appear before windows.h */
  172. #endif
  173. #ifdef WINDLL
  174. #  include <windows.h>
  175. #  include "windll/structs.h"
  176. #endif
  177. /*---------------------------------------------------------------------------
  178.     Grab system-dependent definition of EXPENTRY for prototypes below.
  179.   ---------------------------------------------------------------------------*/
  180. #if 0
  181. #if (defined(OS2) && !defined(FUNZIP))
  182. #  ifdef UNZIP_INTERNAL
  183. #    define INCL_NOPM
  184. #    define INCL_DOSNLS
  185. #    define INCL_DOSPROCESS
  186. #    define INCL_DOSDEVICES
  187. #    define INCL_DOSDEVIOCTL
  188. #    define INCL_DOSERRORS
  189. #    define INCL_DOSMISC
  190. #    ifdef OS2DLL
  191. #      define INCL_REXXSAA
  192. #      include <rexxsaa.h>
  193. #    endif
  194. #  endif /* UNZIP_INTERNAL */
  195. #  include <os2.h>
  196. #  define UZ_EXP EXPENTRY
  197. #endif /* OS2 && !FUNZIP */
  198. #endif /* 0 */
  199. #if (defined(OS2) && !defined(FUNZIP))
  200. #  if (defined(__IBMC__) || defined(__WATCOMC__))
  201. #    define UZ_EXP  _System    /* compiler keyword */
  202. #  else
  203. #    define UZ_EXP
  204. #  endif
  205. #endif /* OS2 && !FUNZIP */
  206. #if (defined(WINDLL) || defined(USE_UNZIP_LIB))
  207. #  ifndef EXPENTRY
  208. #    define UZ_EXP WINAPI
  209. #  else
  210. #    define UZ_EXP EXPENTRY
  211. #  endif
  212. #endif
  213. #ifndef UZ_EXP
  214. #  define UZ_EXP
  215. #endif
  216. /*---------------------------------------------------------------------------
  217.     Public typedefs.
  218.   ---------------------------------------------------------------------------*/
  219. #ifndef _IZ_TYPES_DEFINED
  220. #ifdef MODERN
  221.    typedef void zvoid;
  222. #else /* !MODERN */
  223. #  ifndef AOS_VS         /* mostly modern? */
  224. #    ifndef VAXC         /* not fully modern, but has knows 'void' */
  225. #      define void int
  226. #    endif /* !VAXC */
  227. #  endif /* !AOS_VS */
  228.    typedef char zvoid;
  229. #endif /* ?MODERN */
  230. typedef unsigned char   uch;    /* code assumes unsigned bytes; these type-  */
  231. typedef unsigned short  ush;    /*  defs replace byte/UWORD/ULONG (which are */
  232. typedef unsigned long   ulg;    /*  predefined on some systems) & match zip  */
  233. #define _IZ_TYPES_DEFINED
  234. #endif /* !_IZ_TYPES_DEFINED */
  235. /* InputFn is not yet used and is likely to change: */
  236. #ifdef PROTO
  237.    typedef int   (UZ_EXP MsgFn)     (zvoid *pG, uch *buf, ulg size, int flag);
  238.    typedef int   (UZ_EXP InputFn)   (zvoid *pG, uch *buf, int *size, int flag);
  239.    typedef void  (UZ_EXP PauseFn)   (zvoid *pG, ZCONST char *prompt, int flag);
  240.    typedef int   (UZ_EXP PasswdFn)  (zvoid *pG, int *rcnt, char *pwbuf,
  241.                                      int size, ZCONST char *zfn,
  242.                                      ZCONST char *efn);
  243.    typedef int   (UZ_EXP StatCBFn)  (zvoid *pG, int fnflag, ZCONST char *zfn,
  244.                                      ZCONST char *efn, ZCONST zvoid *details);
  245.    typedef void  (UZ_EXP UsrIniFn)  (void);
  246. #else /* !PROTO */
  247.    typedef int   (UZ_EXP MsgFn)     ();
  248.    typedef int   (UZ_EXP InputFn)   ();
  249.    typedef void  (UZ_EXP PauseFn)   ();
  250.    typedef int   (UZ_EXP PasswdFn)  ();
  251.    typedef int   (UZ_EXP StatCBFn)  ();
  252.    typedef void  (UZ_EXP UsrIniFn)  ();
  253. #endif /* ?PROTO */
  254. typedef struct _UzpBuffer {    /* rxstr */
  255.     ulg   strlength;           /* length of string */
  256.     char  *strptr;             /* pointer to string */
  257. } UzpBuffer;
  258. typedef struct _UzpInit {
  259.     ulg structlen;             /* length of the struct being passed */
  260.     /* GRR: can we assume that each of these is a 32-bit pointer?  if not,
  261.      * does it matter? add "far" keyword to make sure? */
  262.     MsgFn *msgfn;
  263.     InputFn *inputfn;
  264.     PauseFn *pausefn;
  265.     UsrIniFn *userfn;          /* user init function to be called after */
  266.                                /*  globals constructed and initialized */
  267.     /* pointer to program's environment area or something? */
  268.     /* hooks for performance testing? */
  269.     /* hooks for extra unzip -v output? (detect CPU or other hardware?) */
  270.     /* anything else?  let me (Greg) know... */
  271. } UzpInit;
  272. typedef struct _UzpCB {
  273.     ulg structlen;             /* length of the struct being passed */
  274.     /* GRR: can we assume that each of these is a 32-bit pointer?  if not,
  275.      * does it matter? add "far" keyword to make sure? */
  276.     MsgFn *msgfn;
  277.     InputFn *inputfn;
  278.     PauseFn *pausefn;
  279.     PasswdFn *passwdfn;
  280.     StatCBFn *statrepfn;
  281. } UzpCB;
  282. /* the collection of general UnZip option flags and option arguments */
  283. typedef struct _UzpOpts {
  284. #ifndef FUNZIP
  285.     char *exdir;        /* pointer to extraction root directory (-d option) */
  286.     char *pwdarg;       /* pointer to command-line password (-P option) */
  287.     int zipinfo_mode;   /* behave like ZipInfo or like normal UnZip? */
  288.     int aflag;          /* -a: do ASCII-EBCDIC and/or end-of-line translation */
  289. #ifdef VMS
  290.     int bflag;          /* -b: force fixed record format for binary files */
  291. #endif
  292. #ifdef UNIXBACKUP
  293.     int B_flag;         /* -B: back up existing files by renaming to *~ first */
  294. #endif
  295.     int cflag;          /* -c: output to stdout */
  296.     int C_flag;         /* -C: match filenames case-insensitively */
  297. #ifdef MACOS
  298.     int E_flag;         /* -E: [MacOS] show Mac extra field during restoring */
  299. #endif
  300.     int fflag;          /* -f: "freshen" (extract only newer files) */
  301. #if (defined(RISCOS) || defined(ACORN_FTYPE_NFS))
  302.     int acorn_nfs_ext;  /* -F: RISC OS types & NFS filetype extensions */
  303. #endif
  304.     int hflag;          /* -h: header line (zipinfo) */
  305. #ifdef MACOS
  306.     int i_flag;         /* -i: [MacOS] ignore filenames stored in Mac e.f. */
  307. #endif
  308. #ifdef RISCOS
  309.     int scanimage;      /* -I: scan image files */
  310. #endif
  311.     int jflag;          /* -j: junk pathnames (unzip) */
  312. #if (defined(__BEOS__) || defined(MACOS))
  313.     int J_flag;         /* -J: ignore BeOS/MacOS extra field info (unzip) */
  314. #endif
  315.     int lflag;          /* -12slmv: listing format (zipinfo) */
  316.     int L_flag;         /* -L: convert filenames from some OSes to lowercase */
  317.     int overwrite_none; /* -n: never overwrite files (no prompting) */
  318. #ifdef AMIGA
  319.     int N_flag;         /* -N: restore comments as AmigaDOS filenotes */
  320. #endif
  321.     int overwrite_all;  /* -o: OK to overwrite files without prompting */
  322. #endif /* !FUNZIP */
  323.     int qflag;          /* -q: produce a lot less output */
  324. #ifndef FUNZIP
  325. #if (defined(MSDOS) || defined(FLEXOS) || defined(OS2) || defined(WIN32))
  326.     int sflag;          /* -s: convert spaces in filenames to underscores */
  327. #endif
  328. #if (defined(MSDOS) || defined(OS2) || defined(WIN32))
  329.     int volflag;        /* -$: extract volume labels */
  330. #endif
  331.     int tflag;          /* -t: test (unzip) or totals line (zipinfo) */
  332.     int T_flag;         /* -T: timestamps (unzip) or dec. time fmt (zipinfo) */
  333.     int uflag;          /* -u: "update" (extract only newer/brand-new files) */
  334.     int vflag;          /* -v: (verbosely) list directory */
  335.     int V_flag;         /* -V: don't strip VMS version numbers */
  336. #if (defined(TANDEM) || defined(UNIX) || defined(VMS) || defined(__BEOS__))
  337.     int X_flag;         /* -X: restore owner/protection or UID/GID or ACLs */
  338. #endif
  339. #if (defined(OS2) || defined(WIN32))
  340.     int X_flag;         /* -X: restore owner/protection or UID/GID or ACLs */
  341. #endif
  342.     int zflag;          /* -z: display the zipfile comment (only, for unzip) */
  343. #endif /* !FUNZIP */
  344. } UzpOpts;
  345. /* intended to be a private struct: */
  346. typedef struct _ver {
  347.     uch major;              /* e.g., integer 5 */
  348.     uch minor;              /* e.g., 2 */
  349.     uch patchlevel;         /* e.g., 0 */
  350.     uch not_used;
  351. } _version_type;
  352. typedef struct _UzpVer {
  353.     ulg structlen;          /* length of the struct being passed */
  354.     ulg flag;               /* bit 0: is_beta   bit 1: uses_zlib */
  355.     char *betalevel;        /* e.g., "g BETA" or "" */
  356.     char *date;             /* e.g., "4 Sep 95" (beta) or "4 September 1995" */
  357.     char *zlib_version;     /* e.g., "0.95" or NULL */
  358.     _version_type unzip;
  359.     _version_type zipinfo;
  360.     _version_type os2dll;
  361.     _version_type windll;
  362. } UzpVer;
  363. /* for Visual BASIC access to Windows DLLs: */
  364. typedef struct _UzpVer2 {
  365.     ulg structlen;          /* length of the struct being passed */
  366.     ulg flag;               /* bit 0: is_beta   bit 1: uses_zlib */
  367.     char betalevel[10];     /* e.g., "g BETA" or "" */
  368.     char date[20];          /* e.g., "4 Sep 95" (beta) or "4 September 1995" */
  369.     char zlib_version[10];  /* e.g., "0.95" or NULL */
  370.     _version_type unzip;
  371.     _version_type zipinfo;
  372.     _version_type os2dll;
  373.     _version_type windll;
  374. } UzpVer2;
  375. typedef struct central_directory_file_header { /* CENTRAL */
  376.     uch version_made_by[2];
  377.     uch version_needed_to_extract[2];
  378.     ush general_purpose_bit_flag;
  379.     ush compression_method;
  380.     ulg last_mod_dos_datetime;
  381.     ulg crc32;
  382.     ulg csize;
  383.     ulg ucsize;
  384.     ush filename_length;
  385.     ush extra_field_length;
  386.     ush file_comment_length;
  387.     ush disk_number_start;
  388.     ush internal_file_attributes;
  389.     ulg external_file_attributes;
  390.     ulg relative_offset_local_header;
  391. } cdir_file_hdr;
  392. #define UZPINIT_LEN   sizeof(UzpInit)
  393. #define UZPVER_LEN    sizeof(UzpVer)
  394. #define cbList(func)  int (* UZ_EXP func)(char *filename, cdir_file_hdr *crec)
  395. /*---------------------------------------------------------------------------
  396.     Return (and exit) values of the public UnZip API functions.
  397.   ---------------------------------------------------------------------------*/
  398. /* external return codes */
  399. #define PK_OK              0   /* no error */
  400. #define PK_COOL            0   /* no error */
  401. #define PK_GNARLY          0   /* no error */
  402. #define PK_WARN            1   /* warning error */
  403. #define PK_ERR             2   /* error in zipfile */
  404. #define PK_BADERR          3   /* severe error in zipfile */
  405. #define PK_MEM             4   /* insufficient memory (during initialization) */
  406. #define PK_MEM2            5   /* insufficient memory (password failure) */
  407. #define PK_MEM3            6   /* insufficient memory (file decompression) */
  408. #define PK_MEM4            7   /* insufficient memory (memory decompression) */
  409. #define PK_MEM5            8   /* insufficient memory (not yet used) */
  410. #define PK_NOZIP           9   /* zipfile not found */
  411. #define PK_PARAM          10   /* bad or illegal parameters specified */
  412. #define PK_FIND           11   /* no files found */
  413. #define PK_DISK           50   /* disk full */
  414. #define PK_EOF            51   /* unexpected EOF */
  415. #define IZ_CTRLC          80   /* user hit ^C to terminate */
  416. #define IZ_UNSUP          81   /* no files found: all unsup. compr/encrypt. */
  417. #define IZ_BADPWD         82   /* no files found: all had bad password */
  418. /* internal and DLL-only return codes */
  419. #define IZ_DIR            76   /* potential zipfile is a directory */
  420. #define IZ_CREATED_DIR    77   /* directory created: set time and permissions */
  421. #define IZ_VOL_LABEL      78   /* volume label, but can't set on hard disk */
  422. #define IZ_EF_TRUNC       79   /* local extra field truncated (PKZIP'd) */
  423. /* return codes of password fetches (negative = user abort; positive = error) */
  424. #define IZ_PW_ENTERED      0   /* got some password string; use/try it */
  425. #define IZ_PW_CANCEL      -1   /* no password available (for this entry) */
  426. #define IZ_PW_CANCELALL   -2   /* no password, skip any further pwd. request */
  427. #define IZ_PW_ERROR        5   /* = PK_MEM2 : failure (no mem, no tty, ...) */
  428. /* flag values for status callback function */
  429. #define UZ_ST_START_EXTRACT     1
  430. #define UZ_ST_IN_PROGRESS       2
  431. #define UZ_ST_FINISH_MEMBER     3
  432. /* return values of status callback function */
  433. #define UZ_ST_CONTINUE          0
  434. #define UZ_ST_BREAK             1
  435. /*---------------------------------------------------------------------------
  436.     Prototypes for public UnZip API (DLL) functions.
  437.   ---------------------------------------------------------------------------*/
  438. #define  UzpMatch match
  439. int      UZ_EXP UzpMain            OF((int argc, char **argv));
  440. int      UZ_EXP UzpAltMain         OF((int argc, char **argv, UzpInit *init));
  441. UzpVer * UZ_EXP UzpVersion         OF((void));
  442. void     UZ_EXP UzpFreeMemBuffer   OF((UzpBuffer *retstr));
  443. #ifndef WINDLL
  444. int      UZ_EXP UzpUnzipToMemory   OF((char *zip, char *file, UzpOpts *optflgs,
  445.                                        UzpCB *UsrFunc, UzpBuffer *retstr));
  446. #endif
  447. #ifndef WINDLL
  448.    int   UZ_EXP UzpGrep            OF((char *archive, char *file,
  449.                                        char *pattern, int cmd, int SkipBin,
  450.                                        UzpCB *UsrFunc));
  451. #endif
  452. #ifdef OS2
  453. int      UZ_EXP UzpFileTree        OF((char *name, cbList(callBack),
  454.                                        char *cpInclude[], char *cpExclude[]));
  455. #endif
  456. void     UZ_EXP UzpVersion2        OF((UzpVer2 *version));
  457. int      UZ_EXP UzpValidate        OF((char *archive, int AllCodes));
  458. /* default I/O functions (can be swapped out via UzpAltMain() entry point): */
  459. int      UZ_EXP UzpMessagePrnt   OF((zvoid *pG, uch *buf, ulg size, int flag));
  460. int      UZ_EXP UzpMessageNull   OF((zvoid *pG, uch *buf, ulg size, int flag));
  461. int      UZ_EXP UzpInput         OF((zvoid *pG, uch *buf, int *size, int flag));
  462. void     UZ_EXP UzpMorePause     OF((zvoid *pG, ZCONST char *prompt, int flag));
  463. int      UZ_EXP UzpPassword      OF((zvoid *pG, int *rcnt, char *pwbuf,
  464.                                      int size, ZCONST char *zfn,
  465.                                      ZCONST char *efn));
  466. /*---------------------------------------------------------------------------
  467.     Remaining private stuff for UnZip compilation.
  468.   ---------------------------------------------------------------------------*/
  469. #ifdef UNZIP_INTERNAL
  470. #  include "unzpriv.h"
  471. #endif
  472. #endif /* !__unzip_h */