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

压缩解压

开发平台:

MultiPlatform

  1. /*
  2.    This is a very simplistic example of how to load and make a call into the
  3.    dll. This has been compiled and tested for a 32-bit console version, but
  4.    not under 16-bit windows. However, the #ifdef's have been left in for the
  5.    16-bit code, simply as an example.
  6.  */
  7. #ifndef WIN32   /* this code is currently only tested for 32-bit console */
  8. #  define WIN32
  9. #endif
  10. #if defined(__WIN32__) && !defined(WIN32)
  11. #  define WIN32
  12. #endif
  13. #include <sys/types.h>
  14. #include <sys/stat.h>
  15. #include <time.h>
  16. #include <string.h>
  17. #include "example.h"
  18. #include "unzver.h"
  19. #ifdef WIN32
  20. #  ifdef __RSXNT__
  21. #    include <winversi.h>
  22. #  else
  23. #    include <winver.h>
  24. #  endif
  25. #else
  26. #  include <ver.h>
  27. #endif
  28. #ifdef WIN32
  29. #define UNZ_DLL_NAME "UNZIP32.DLL"
  30. #else
  31. #define UNZ_DLL_NAME "UNZIP16.DLL"
  32. #endif
  33. #define DLL_WARNING "Cannot find %s."
  34.             " The Dll must be in the application directory, the path, "
  35.             "the Windows directory or the Windows System directory."
  36. #define DLL_VERSION_WARNING "%s has the wrong version number."
  37.             " Insure that you have the correct dll's installed, and that "
  38.             "an older dll is not in your path or Windows System directory."
  39. int hFile;              /* file handle */
  40. LPUSERFUNCTIONS lpUserFunctions;
  41. HANDLE hUF = (HANDLE)NULL;
  42. LPDCL lpDCL = NULL;
  43. HANDLE hDCL = (HANDLE)NULL;
  44. HINSTANCE hUnzipDll;
  45. HANDLE hZCL = (HANDLE)NULL;
  46. #ifdef WIN32
  47. DWORD dwPlatformId = 0xFFFFFFFF;
  48. #endif
  49. /* Forward References */
  50. int WINAPI DisplayBuf(LPSTR, unsigned long);
  51. int WINAPI GetReplaceDlgRetVal(char *);
  52. int WINAPI password(char *, int, const char *, const char *);
  53. void WINAPI ReceiveDllMessage(unsigned long, unsigned long, unsigned,
  54.     unsigned, unsigned, unsigned, unsigned, unsigned,
  55.     char, LPSTR, LPSTR, unsigned long, char);
  56. _DLL_UNZIP Wiz_SingleEntryUnzip;
  57. _USER_FUNCTIONS Wiz_Init;
  58. void FreeUpMemory(void);
  59. #ifdef WIN32
  60. BOOL IsNT(VOID);
  61. #endif
  62. int main(int argc, char **argv)
  63. {
  64. int exfc, infc;
  65. char **exfv, **infv;
  66. char *x_opt;
  67. DWORD dwVerInfoSize;
  68. DWORD dwVerHnd;
  69. char szFullPath[PATH_MAX];
  70. int retcode;
  71. #ifdef WIN32
  72. char *ptr;
  73. #else
  74. HFILE hfile;
  75. OFSTRUCT ofs;
  76. #endif
  77. HANDLE  hMem;         /* handle to mem alloc'ed */
  78. if (argc < 2)   /* We must have an archive to unzip */
  79.    {
  80.    printf("usage: %s <zipfile> [entry1 [entry2 [...]]] [-x xentry1 [...]]",
  81.           "example");
  82.    return 0;
  83.    }
  84. hDCL = GlobalAlloc( GPTR, (DWORD)sizeof(DCL));
  85. if (!hDCL)
  86.    {
  87.    return 0;
  88.    }
  89. lpDCL = (LPDCL)GlobalLock(hDCL);
  90. if (!lpDCL)
  91.    {
  92.    GlobalFree(hDCL);
  93.    return 0;
  94.    }
  95. hUF = GlobalAlloc( GPTR, (DWORD)sizeof(USERFUNCTIONS));
  96. if (!hUF)
  97.    {
  98.    GlobalUnlock(hDCL);
  99.    GlobalFree(hDCL);
  100.    return 0;
  101.    }
  102. lpUserFunctions = (LPUSERFUNCTIONS)GlobalLock(hUF);
  103. if (!lpUserFunctions)
  104.    {
  105.    GlobalUnlock(hDCL);
  106.    GlobalFree(hDCL);
  107.    GlobalFree(hUF);
  108.    return 0;
  109.    }
  110. lpUserFunctions->password = password;
  111. lpUserFunctions->print = DisplayBuf;
  112. lpUserFunctions->sound = NULL;
  113. lpUserFunctions->replace = GetReplaceDlgRetVal;
  114. lpUserFunctions->SendApplicationMessage = ReceiveDllMessage;
  115. /* First we go look for the unzip dll */
  116. #ifdef WIN32
  117. if (SearchPath(
  118.     NULL,               /* address of search path               */
  119.     UNZ_DLL_NAME,       /* address of filename                  */
  120.     NULL,               /* address of extension                 */
  121.     PATH_MAX,           /* size, in characters, of buffer       */
  122.     szFullPath,         /* address of buffer for found filename */
  123.     &ptr                /* address of pointer to file component */
  124.    ) == 0)
  125. #else
  126. hfile = OpenFile(UNZ_DLL_NAME,  &ofs, OF_SEARCH);
  127. if (hfile == HFILE_ERROR)
  128. #endif
  129.    {
  130.    char str[256];
  131.    wsprintf (str, DLL_WARNING, UNZ_DLL_NAME);
  132.    printf("%sn", str);
  133.    FreeUpMemory();
  134.    return 0;
  135.    }
  136. #ifndef WIN32
  137. else
  138.    lstrcpy(szFullPath, ofs.szPathName);
  139. _lclose(hfile);
  140. #endif
  141. /* Now we'll check the unzip dll version information. Note that this is
  142.    not the same information as is returned from a call to UzpVersion()
  143.  */
  144. dwVerInfoSize =
  145.     GetFileVersionInfoSize(szFullPath, &dwVerHnd);
  146. if (dwVerInfoSize)
  147.    {
  148.    BOOL  fRet, fRetName;
  149.    char str[256];
  150.    LPSTR   lpstrVffInfo; /* Pointer to block to hold info */
  151.    LPSTR lszVer = NULL;
  152.    LPSTR lszVerName = NULL;
  153. #ifdef __RSXNT__
  154.    ULONG cchVer = 0;
  155. #else
  156.    UINT  cchVer = 0;
  157. #endif
  158.    /* Get a block big enough to hold the version information */
  159.    hMem          = GlobalAlloc(GMEM_MOVEABLE, dwVerInfoSize);
  160.    lpstrVffInfo  = GlobalLock(hMem);
  161.    /* Get the version information */
  162.    if (GetFileVersionInfo(szFullPath, 0L, dwVerInfoSize, lpstrVffInfo))
  163.       {
  164.       fRet = VerQueryValue(lpstrVffInfo,
  165.                TEXT("\StringFileInfo\040904E4\FileVersion"),
  166.               (LPVOID)&lszVer,
  167.               &cchVer);
  168.       fRetName = VerQueryValue(lpstrVffInfo,
  169.                TEXT("\StringFileInfo\040904E4\CompanyName"),
  170.                (LPVOID)&lszVerName,
  171.                &cchVer);
  172.       if (!fRet || !fRetName ||
  173.          (lstrcmpi(lszVer, UNZ_DLL_VERSION) != 0) ||
  174.          (lstrcmpi(lszVerName, COMPANY_NAME) != 0))
  175.          {
  176.          wsprintf (str, DLL_VERSION_WARNING, UNZ_DLL_NAME);
  177.          printf("%sn", str);
  178.          FreeUpMemory();
  179.          GlobalUnlock(hMem);
  180.          GlobalFree(hMem);
  181.          return 0;
  182.          }
  183.       }
  184.       /* free memory */
  185.    GlobalUnlock(hMem);
  186.    GlobalFree(hMem);
  187.    }
  188. else
  189.    {
  190.    char str[256];
  191.    wsprintf (str, DLL_VERSION_WARNING, UNZ_DLL_NAME);
  192.    printf("%sn", str);
  193.    FreeUpMemory();
  194.    return 0;
  195.    }
  196. /* Okay, now we know that the dll exists, and has the proper version
  197.  * information in it. We can go ahead and load it.
  198.  */
  199. hUnzipDll = LoadLibrary(UNZ_DLL_NAME);
  200. #ifndef WIN32
  201. if (hUnzipDll > HINSTANCE_ERROR)
  202. #else
  203. if (hUnzipDll != NULL)
  204. #endif
  205.    {
  206.    (_DLL_UNZIP)Wiz_SingleEntryUnzip =
  207.      (_DLL_UNZIP)GetProcAddress(hUnzipDll, "Wiz_SingleEntryUnzip");
  208.    }
  209. else
  210.    {
  211.    char str[256];
  212.    wsprintf (str, "Could not load %s", UNZ_DLL_NAME);
  213.    printf("%sn", str);
  214.    FreeUpMemory();
  215.    return 0;
  216.    }
  217. /*
  218.    Here is where the actual extraction process begins. First we set up the
  219.    flags to be passed into the dll.
  220.  */
  221. lpDCL->ncflag = 0; /* Write to stdout if true */
  222. lpDCL->fQuiet = 0; /* We want all messages.
  223.                       1 = fewer messages,
  224.                       2 = no messages */
  225. lpDCL->ntflag = 0; /* test zip file if true */
  226. lpDCL->nvflag = 0; /* give a verbose listing if true */
  227. lpDCL->nUflag = 0; /* Do not extract only newer */
  228. lpDCL->nzflag = 0; /* display a zip file comment if true */
  229. lpDCL->ndflag = 1; /* Recreate directories if true */
  230. lpDCL->noflag = 1; /* Over-write all files if true */
  231. lpDCL->naflag = 0; /* Do not convert CR to CRLF */
  232. lpDCL->lpszZipFN = argv[1]; /* The archive name */
  233. lpDCL->lpszExtractDir = NULL; /* The directory to extract to. This is set
  234.                                  to NULL if you are extracting to the
  235.                                  current directory.
  236.                                */
  237. /*
  238.    As this is a quite short example, intended primarily to show how to
  239.    load and call in to the dll, the command-line parameters are only
  240.    parsed in a very simplistic way:
  241.    We assume that the command-line parameters after the zip archive
  242.    make up a list of file patterns:
  243.    " [file_i1] [file_i2] ... [file_iN] [-x file_x1 [file_x2] ...]".
  244.    We scan for an argument "-x"; all arguments in front are
  245.    "include file patterns", all arguments after are "exclude file patterns".
  246.    If no more arguments are given, we extract ALL files.
  247.    In summary, the example program should be run like:
  248.    example <archive.name> [files to include] [-x files to exclude]
  249.    ("<...> denotes mandatory arguments, "[...]" optional arguments)
  250.  */
  251. x_opt = NULL;
  252. if (argc > 2) {
  253.   infv = &argv[2];
  254.   for (infc = 0; infc < argc-2; infc++)
  255.     if (!strcmp("-x", infv[infc])) {
  256.         x_opt = infv[infc];
  257.         infv[infc] = NULL;
  258.         break;
  259.     }
  260.   exfc = argc - infc - 3;
  261.   if (exfc > 0)
  262.     exfv = &argv[infc+3];
  263.   else {
  264.     exfc = 0;
  265.     exfv = NULL;
  266.   }
  267. } else {
  268.   infc = exfc = 0;
  269.   infv = exfv = NULL;
  270. }
  271. retcode = (*Wiz_SingleEntryUnzip)(infc, infv, exfc, exfv, lpDCL,
  272.                                   lpUserFunctions);
  273. if (x_opt) {
  274.   infv[infc] = x_opt;
  275.   x_opt = NULL;
  276. }
  277. if (retcode != 0)
  278.    printf("Error unzipping...n");
  279. FreeUpMemory();
  280. FreeLibrary(hUnzipDll);
  281. return 1;
  282. }
  283. int WINAPI GetReplaceDlgRetVal(char *filename)
  284. {
  285. /* This is where you will decide if you want to replace, rename etc existing
  286.    files.
  287.  */
  288. return 1;
  289. }
  290. void FreeUpMemory(void)
  291. {
  292. if (hDCL)
  293.    {
  294.    GlobalUnlock(hDCL);
  295.    GlobalFree(hDCL);
  296.    }
  297. if (hUF)
  298.    {
  299.    GlobalUnlock(hUF);
  300.    GlobalFree(hUF);
  301.    }
  302. }
  303. /* This simply determines if we are running on NT or Windows 95 */
  304. #ifdef WIN32
  305. BOOL IsNT(VOID)
  306. {
  307. if(dwPlatformId != 0xFFFFFFFF)
  308.    return dwPlatformId;
  309. else
  310. /* note: GetVersionEx() doesn't exist on WinNT 3.1 */
  311.    {
  312.    if(GetVersion() < 0x80000000)
  313.       {
  314.       (BOOL)dwPlatformId = TRUE;
  315.       }
  316.    else
  317.       {
  318.       (BOOL)dwPlatformId = FALSE;
  319.       }
  320.     }
  321. return dwPlatformId;
  322. }
  323. #endif
  324. /* This is a very stripped down version of what is done in Wiz. Essentially
  325.    what this function is for is to do a listing of an archive contents. It
  326.    is actually never called in this example, but a dummy procedure had to
  327.    be put in, so this was used.
  328.  */
  329. void WINAPI ReceiveDllMessage(unsigned long ucsize, unsigned long csiz,
  330.     unsigned cfactor,
  331.     unsigned mo, unsigned dy, unsigned yr, unsigned hh, unsigned mm,
  332.     char c, LPSTR filename, LPSTR methbuf, unsigned long crc, char fCrypt)
  333. {
  334. char psLBEntry[PATH_MAX];
  335. char LongHdrStats[] =
  336.           "%7lu  %7lu %4s  %02u-%02u-%02u  %02u:%02u  %c%s";
  337. char CompFactorStr[] = "%c%d%%";
  338. char CompFactor100[] = "100%%";
  339. char szCompFactor[10];
  340. char sgn;
  341. if (csiz > ucsize)
  342.    sgn = '-';
  343. else
  344.    sgn = ' ';
  345. if (cfactor == 100)
  346.    lstrcpy(szCompFactor, CompFactor100);
  347. else
  348.    sprintf(szCompFactor, CompFactorStr, sgn, cfactor);
  349.    wsprintf(psLBEntry, LongHdrStats,
  350.       ucsize, csiz, szCompFactor, mo, dy, yr, hh, mm, c, filename);
  351. printf("%sn", psLBEntry);
  352. }
  353. /* Password entry routine - see password.c in the wiz directory for how
  354.    this is actually implemented in WiZ. If you have an encrypted file,
  355.    this will probably give you great pain.
  356.  */
  357. int WINAPI password(char *p, int n, const char *m, const char *name)
  358. {
  359. return 1;
  360. }
  361. /* Dummy "print" routine that simply outputs what is sent from the dll */
  362. int WINAPI DisplayBuf(LPSTR buf, unsigned long size)
  363. {
  364. printf("%s", (char *)buf);
  365. return (unsigned int) size;
  366. }