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

压缩解压

开发平台:

MultiPlatform

  1. #include <windows.h>
  2. #include <stdio.h>
  3. #ifdef WIN32
  4.    #include <shlobj.h>
  5. #else
  6.    #include <mem.h>
  7.    #include <stdlib.h>
  8.    #include <dir.h>
  9.    #include <dlgs.h>
  10.    #include <ctype.h>
  11.    #include <commdlg.h>
  12.    #include <string.h>
  13. #endif
  14. #include "dialog.h"
  15. #ifndef UzpMatch
  16. #define UzpMatch match
  17. #endif
  18. #include "../structs.h"
  19. #include "../decs.h"
  20. LPUSERFUNCTIONS lpUserFunctions;
  21. HANDLE hUF       = (HANDLE)NULL;
  22. LPDCL lpDCL      = NULL;
  23. HANDLE hZUF      = (HANDLE)NULL;
  24. HANDLE hDCL      = (HANDLE)NULL;
  25. BOOL fDoAll = FALSE;
  26. char ** argv;
  27. HINSTANCE hInst;
  28. HWND hWnd;
  29. #ifndef TCHAR
  30. #define TCHAR char
  31. #endif
  32. #ifndef _MAX_PATH
  33. #define _MAX_PATH PATH_MAX
  34. #endif
  35. int WINAPI password(LPSTR p, int n, LPCSTR m, LPCSTR name);
  36. int WINAPI DisplayBuf(TCHAR far *buf, unsigned long size);
  37. int WINAPI GetReplaceDlgRetVal(TCHAR *filename);
  38. void WINAPI ReceiveDllMessage(unsigned long ucsize, unsigned long csiz,
  39.    unsigned cfactor, unsigned mo, unsigned dy, unsigned yr, unsigned hh,
  40.    unsigned mm, TCHAR c, LPSTR filename, LPSTR methbuf, unsigned long crc,
  41.    TCHAR fCrypt);
  42. char szAppName[_MAX_PATH];
  43. char szTarget[_MAX_PATH];
  44. char szThisApp[_MAX_PATH];
  45. int iReturn;
  46. DLGPROC fpProc;
  47. #ifndef MAX_PATH
  48.    #define MAX_PATH    _MAX_PATH            // maximum path =length
  49. #endif
  50. #define TRUE        1                       // true value
  51. #define FALSE       0                       // false value
  52. TCHAR   zfn[MAX_PATH],                      // zip filename and path
  53.         szHomeDir[MAX_PATH];                // Original directory
  54. /****************************************************************************
  55.     FUNCTION: Replace(HWND, WORD, WPARAM, LPARAM)
  56.     PURPOSE:  Processes messages for "Replace" dialog box
  57.     MESSAGES:
  58.     WM_INITDIALOG - initialize dialog box
  59.     WM_COMMAND    - Input received
  60. ****************************************************************************/
  61. BOOL WINAPI ReplaceProc(HWND hReplaceDlg, WORD wMessage,
  62.                         WPARAM wParam, LPARAM lParam)
  63. {
  64.     static char __far *lpsz;
  65.     TCHAR szTemp[MAX_PATH];
  66.     switch (wMessage)
  67.     {
  68.     case WM_INITDIALOG:
  69.         lpsz = (char __far *)lParam;
  70.         wsprintf(szTemp, "Replace %s ?", (LPSTR)lpsz);
  71.         SetDlgItemText(hReplaceDlg, IDM_REPLACE_TEXT, szTemp);
  72.         return TRUE;
  73.     case WM_COMMAND:
  74.         switch (LOWORD(wParam))
  75.         {
  76.         case IDCANCEL:              /* ESC key      */
  77.         case IDOK:                  /* Enter key    */
  78.             EndDialog(hReplaceDlg, IDM_REPLACE_NO);
  79.             break;
  80.         case IDM_REPLACE_ALL:
  81.             fDoAll = TRUE;
  82.         case IDM_REPLACE_NONE:
  83.         case IDM_REPLACE_YES:
  84.         case IDM_REPLACE_NO:
  85.             EndDialog(hReplaceDlg, wParam);
  86.             break;
  87.         }
  88.         return TRUE;
  89.     }
  90.     return FALSE;
  91. }
  92. /****************************************************************************
  93.     FUNCTION: GetDirProc(HWND, unsigned, WPARAM, LPARAM)
  94.     PURPOSE:  Processes messages for "Set Reference Dir Procedure for
  95.               Update Archive" dialog box
  96.     MESSAGES:
  97.     WM_INITDIALOG - initialize dialog box
  98.     WM_COMMAND    - Input received
  99. ****************************************************************************/
  100. #ifdef WIN32
  101. BOOL WINAPI
  102. GetDirProc(HWND hDlg, WORD wMessage, WPARAM wParam, LPARAM lParam)
  103. {
  104.    switch (wMessage) {
  105.    case WM_INITDIALOG:
  106. /*
  107. Common control identifiers for GetOpenFileName and GetSaveFileName
  108. Control identifier   Control Description
  109. cmb2                 Drop-down combo box that displays the current drive
  110.                      or folder, and that allows the user to select a
  111.                      drive or folder to open
  112. stc4                 Label for the cmb2 combo box
  113. lst1                 List box that displays the contents of the current drive or folder
  114. stc1                 Label for the lst1 list box
  115. edt1                 Edit control that displays the name of the current file, or in which the user can type the name of the file to open
  116. stc3                 Label for the edt1 edit control
  117. cmb1                 Drop-down combo box that displays the list of file type filters
  118. stc2                 Label for the cmb1 combo box
  119. chx1                 The read-only check box
  120. IDOK                 The OK command button (push button)
  121. IDCANCEL             The Cancel command button (push button)
  122. pshHelp              The Help command button (push button)
  123. */
  124.       CommDlg_OpenSave_HideControl(GetParent(hDlg), cmb1);
  125.       CommDlg_OpenSave_HideControl(GetParent(hDlg), stc2);
  126.       CommDlg_OpenSave_HideControl(GetParent(hDlg), edt1);
  127.       CommDlg_OpenSave_HideControl(GetParent(hDlg), stc3);
  128.       CommDlg_OpenSave_SetControlText(GetParent(hDlg),
  129.             IDOK, "Set");
  130.       break;
  131.    default:
  132.          break;
  133.    }
  134. return DefWindowProc(hDlg, wMessage, wParam, lParam);
  135. }
  136. #else
  137. #ifdef __BORLANDC__
  138. #pragma argsused
  139. #endif
  140. BOOL WINAPI
  141. GetDirProc(HWND hwndDlg, WORD wMessage, WPARAM wParam, LPARAM lParam)
  142. {
  143. HWND hTemp;
  144.    switch (wMessage) {
  145.    case WM_INITDIALOG:
  146.       hTemp = GetDlgItem(hwndDlg, lst1);
  147.       EnableWindow(hTemp, FALSE);
  148.       ShowWindow(hTemp, SW_HIDE);
  149.       hTemp = GetDlgItem(hwndDlg, edt1);
  150.       EnableWindow(hTemp, FALSE);
  151.       ShowWindow(hTemp, SW_HIDE);
  152.       hTemp = GetDlgItem(hwndDlg, stc2);
  153.       EnableWindow(hTemp, FALSE);
  154.       ShowWindow(hTemp, SW_HIDE);
  155.       hTemp = GetDlgItem(hwndDlg, stc3);
  156.       EnableWindow(hTemp, FALSE);
  157.       ShowWindow(hTemp, SW_HIDE);
  158.       hTemp = GetDlgItem(hwndDlg, cmb1);
  159.       EnableWindow(hTemp, FALSE);
  160.       ShowWindow(hTemp, SW_HIDE);
  161.       break;
  162.    case WM_COMMAND:
  163.       switch (LOWORD(wParam)) {
  164.          case IDCANCEL:
  165.             EndDialog(hwndDlg, FALSE);
  166.             break;
  167.          case IDOK:
  168.             getcwd(szTarget, PATH_MAX);
  169.             EndDialog(hwndDlg, TRUE);
  170.             break;
  171.          }
  172.       default:
  173.          break;
  174.    }
  175.    return FALSE;
  176. }
  177. #endif /* !WIN32 */
  178. #ifdef __BORLANDC__
  179. #pragma argsused
  180. #endif
  181. BOOL FAR PASCAL InitDialogProc (HWND hDlg, WORD wMsg, WORD wParam, LONG lParam) {
  182.    BOOL fProcessed = TRUE;
  183.    TCHAR szMessage[256];
  184.    RECT rc;
  185.    switch (wMsg) {
  186.       case WM_INITDIALOG:
  187.          hWnd = hDlg;
  188.          SetWindowText(hDlg,(LPSTR) szAppName);
  189.          SetDlgItemText(hDlg,ID_TARGET,(LPSTR)szTarget);
  190. #ifdef WIN32
  191.          GetCurrentDirectory(PATH_MAX, szHomeDir);
  192.          SetCurrentDirectory(szTarget);
  193. #else
  194.          getcwd(szHomeDir, PATH_MAX);
  195.          chdir(szTarget);
  196.          setdisk(toupper(szTarget[0]) - 'A');
  197. #endif
  198.          GetWindowRect(hDlg, &rc);
  199.          SetWindowPos(hDlg, NULL,
  200.             (GetSystemMetrics(SM_CXSCREEN) - (rc.right - rc.left)) / 2,
  201.             (GetSystemMetrics(SM_CYSCREEN) - (rc.bottom - rc.top)) / 3,
  202.             0, 0, SWP_NOSIZE | SWP_NOZORDER);
  203.          break;
  204.       case WM_COMMAND:
  205.          switch (wParam) {
  206.             case ID_BROWSE :
  207.                 {
  208. #ifndef WIN32
  209.                 FARPROC lpGetDirProc;
  210. #endif
  211.                 char szTemp[MAX_PATH]="mike_~@~*";
  212.                 OPENFILENAME ofn;
  213.                 memset(&ofn, '', sizeof(OPENFILENAME)); /* init struct */
  214.                 ofn.lStructSize = sizeof(OPENFILENAME);
  215.                 ofn.hwndOwner = hWnd;
  216.                 ofn.hInstance = hInst;
  217.                 ofn.lpstrFilter = NULL;
  218.                 ofn.nFilterIndex = 1;
  219.                 ofn.lpstrFile = szTemp;
  220.                 ofn.nMaxFile = PATH_MAX;
  221.                 ofn.lpstrFileTitle = NULL;
  222.                 ofn.nMaxFileTitle = PATH_MAX; /* ignored ! */
  223.                 ofn.lpstrTitle = (LPSTR)"Set Extraction Directory";
  224.                 ofn.lpstrInitialDir = NULL;
  225.                 ofn.Flags = OFN_ENABLEHOOK |
  226. #ifdef WIN32
  227.                             OFN_EXPLORER|
  228. #endif
  229.                             OFN_HIDEREADONLY|OFN_NOVALIDATE;
  230. #ifndef WIN32
  231.                 lpGetDirProc = MakeProcInstance((FARPROC)GetDirProc, hInst);
  232.    #ifndef MSC
  233.                 (UINT CALLBACK *)ofn.lpfnHook = (UINT CALLBACK *)lpGetDirProc;
  234.    #else
  235.                 ofn.lpfnHook = lpGetDirProc;
  236.    #endif
  237. #else
  238.                 ofn.lpfnHook = (LPOFNHOOKPROC)GetDirProc;
  239. #endif
  240.                 ofn.lpTemplateName = "GETDIR";   /* see getfiles.dlg   */
  241.                 if (!GetOpenFileName(&ofn))
  242.                    {
  243.                    break;
  244.                    }
  245.                 ofn.lpstrFile[ofn.nFileOffset-1] = '';
  246. #ifdef WIN32
  247.                 SetCurrentDirectory(ofn.lpstrFile);
  248. #else
  249.                 getcwd(szTemp, MAX_PATH);
  250.                 chdir(ofn.lpstrFile);
  251.                 setdisk(toupper(ofn.lpstrFile[0]) - 'A');
  252. #endif
  253.                 lstrcpy(szTarget,ofn.lpstrFile);
  254.                 SetDlgItemText(hDlg,ID_TARGET,(LPSTR)szTarget);
  255.                 }
  256.                break;
  257.             case IDOK:
  258. #ifdef WIN32
  259.                GetCurrentDirectory(_MAX_PATH,szTarget);
  260. #else
  261.                getcwd(szTarget, _MAX_PATH);
  262. #endif
  263.                lpDCL->ncflag = 0;
  264.                lpDCL->fQuiet = 0; // If not zero, no status messages will come through
  265.                lpDCL->ntflag = 0;
  266.                lpDCL->nvflag = 0;
  267.                lpDCL->nUflag = 0;
  268.                lpDCL->nzflag = 0;
  269.                lpDCL->ndflag = 1;
  270.                lpDCL->noflag = 0;
  271.                lpDCL->naflag = 0;
  272.                lpDCL->PromptToOverwrite = 1;
  273.                lpDCL->lpszZipFN = zfn;
  274.                lpDCL->lpszExtractDir = NULL;
  275.                iReturn = Wiz_SingleEntryUnzip(0, NULL, 0, NULL, lpDCL, lpUserFunctions);
  276. /* external return codes for unzip library */
  277. //#define PK_OK              0   /* no error */
  278. //#define PK_COOL            0   /* no error */
  279. //#define PK_GNARLY          0   /* no error */
  280. //#define PK_WARN            1   /* warning error */
  281. //#define PK_ERR             2   /* error in zipfile */
  282. //#define PK_BADERR          3   /* severe error in zipfile */
  283. //#define PK_MEM             4   /* insufficient memory (during initialization) */
  284. //#define PK_MEM2            5   /* insufficient memory (password failure) */
  285. //#define PK_MEM3            6   /* insufficient memory (file decompression) */
  286. //#define PK_MEM4            7   /* insufficient memory (memory decompression) */
  287. //#define PK_MEM5            8   /* insufficient memory (not yet used) */
  288. //#define PK_NOZIP           9   /* zipfile not found */
  289. //#define PK_PARAM          10   /* bad or illegal parameters specified */
  290. //#define PK_FIND           11   /* no files found */
  291. //#define PK_DISK           50   /* disk full */
  292. //#define PK_EOF            51   /* unexpected EOF */
  293. //#define IZ_CTRLC          80   /* user hit ^C to terminate */
  294. //#define IZ_UNSUP          81   /* no files found: all unsup. compr/encrypt. */
  295. //#define IZ_BADPWD         82   /* no files found: all had bad password */
  296. /* internal and DLL-only return codes */
  297. //#define IZ_DIR            76   /* potential zipfile is a directory */
  298. //#define IZ_CREATED_DIR    77   /* directory created: set time and permissions */
  299. //#define IZ_VOL_LABEL      78   /* volume label, but can't set on hard disk */
  300. //#define IZ_EF_TRUNC       79   /* local extra field truncated (PKZIP'd) */
  301. /* return codes of password fetches (negative = user abort; positive = error) */
  302. //#define IZ_PW_ENTERED      0   /* got some password string; use/try it */
  303. //#define IZ_PW_CANCEL      -1   /* no password available (for this entry) */
  304. //#define IZ_PW_CANCELALL   -2   /* no password, skip any further pwd. request */
  305. //#define IZ_PW_ERROR        5   /* = PK_MEM2 : failure (no mem, no tty, ...) */
  306.                switch (iReturn) {
  307.                 case PK_OK:
  308.                      wsprintf(szMessage, "%s", "All files extracted OK");
  309.                      break;
  310.                 case PK_ERR:
  311.                      wsprintf(szMessage, "%s", "Warning occurred on one or more files");
  312.                      break;
  313.                 case PK_BADERR:
  314.                      wsprintf(szMessage, "%s", "Error in archive");
  315.                      break;
  316.                 case PK_MEM:
  317.                 case PK_MEM2:
  318.                 case PK_MEM3:
  319.                 case PK_MEM4:
  320.                 case PK_MEM5:
  321.                      wsprintf(szMessage, "%s", "Insufficient memory");
  322.                      break;
  323.                 case PK_NOZIP:
  324.                      wsprintf(szMessage, "%s", "Archive not found");
  325.                      break;
  326.                 case PK_FIND:
  327.                      wsprintf(szMessage, "%s", "No files found");
  328.                      break;
  329.                 case PK_DISK:
  330.                      wsprintf(szMessage, "%s", "Disk full");
  331.                      break;
  332.                 case PK_EOF:
  333.                      wsprintf(szMessage, "%s", "Unexpected end of file");
  334.                      break;
  335.                 case IZ_UNSUP:
  336.                      wsprintf(szMessage, "%s", "No files found: All unsupported");
  337.                      break;
  338.                 case IZ_BADPWD:
  339.                      wsprintf(szMessage, "%s", "No files found: Bad password");
  340.                      break;
  341.                 default:
  342.                      wsprintf(szMessage, "%s", "Unknown error");
  343.                      break;
  344.                 }
  345.                MessageBox(hDlg, szMessage, szAppName, MB_OK);
  346. /* Uncomment line below to have SFXWix terminate automatically
  347.    when done.
  348.  */
  349. //              EndDialog(hDlg, wParam);
  350.                break;
  351.                case IDCANCEL:
  352.                     EndDialog(hDlg, wParam);
  353.                     PostQuitMessage(0);
  354.                     exit(0); // ..and then quit
  355.                     break;
  356.          }
  357.          break;
  358.       default:
  359.          fProcessed = FALSE;
  360.          break;
  361.    }
  362.    return(fProcessed);
  363. }
  364. #define WasCancelled(hDlg) (!IsWindowEnabled(GetDlgItem(hDlg,IDCANCEL)))
  365. #ifdef __BORLANDC__
  366. #pragma argsused
  367. #endif
  368. int WINAPI password(LPSTR p, int n, LPCSTR m, LPCSTR name)
  369. {
  370. TCHAR sz[MAX_PATH];
  371. sprintf(sz, "%s is encrypted", name);
  372. MessageBox(hWnd, sz, "Encryption not supported", MB_OK);
  373. return IZ_PW_CANCELALL;
  374. }
  375. int WINAPI DisplayBuf(TCHAR far *buf, unsigned long size)
  376. {
  377. if ((buf[0] != 'n') && (buf[0] != 'r'))
  378.    SetDlgItemText(hWnd, ID_STATUS, buf);
  379. return (unsigned int) size;
  380. }
  381. int WINAPI GetReplaceDlgRetVal(TCHAR *filename)
  382. {
  383. #ifndef WIN32
  384. FARPROC lpfnprocReplace;
  385. #endif
  386. int ReplaceDlgRetVal;   /* replace dialog return value */
  387. #ifdef WIN32
  388. ReplaceDlgRetVal = DialogBoxParam(hInst, "Replace",
  389.    hWnd, (DLGPROC)ReplaceProc, (DWORD)(LPSTR)filename);
  390. #else
  391. lpfnprocReplace = MakeProcInstance(ReplaceProc, hInst);
  392. ReplaceDlgRetVal = DialogBoxParam(hInst, "Replace",
  393.    hWnd, lpfnprocReplace, (DWORD)(LPSTR)filename);
  394. FreeProcInstance(lpfnprocReplace);
  395. #endif
  396. return ReplaceDlgRetVal;
  397. }
  398. #ifdef __BORLANDC__
  399. #pragma argsused
  400. #endif
  401. void WINAPI ReceiveDllMessage(unsigned long ucsize, unsigned long csiz,
  402.    unsigned cfactor, unsigned mo, unsigned dy, unsigned yr, unsigned hh,
  403.    unsigned mm, TCHAR c, LPSTR filename, LPSTR methbuf, unsigned long crc,
  404.    TCHAR fCrypt)
  405. {
  406. }
  407. #ifdef __BORLANDC__
  408. #pragma argsused
  409. #endif
  410. int PASCAL WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
  411.                     LPSTR lpszCmdLine, int nCmdShow)
  412. {
  413. TCHAR *ptr = NULL;
  414. hInst = hInstance;
  415. hDCL = GlobalAlloc( GPTR, (DWORD)sizeof(DCL));
  416. if (!hDCL)
  417.    {
  418.    return 0;
  419.    }
  420. lpDCL = (LPDCL)GlobalLock(hDCL);
  421. if (!lpDCL)
  422.    {
  423.    return 0;
  424.    }
  425. hUF = GlobalAlloc( GPTR, (DWORD)sizeof(USERFUNCTIONS));
  426. if (!hUF)
  427.    {
  428.    return 0;
  429.    }
  430. lpUserFunctions = (LPUSERFUNCTIONS)GlobalLock(hUF);
  431. if (!lpUserFunctions)
  432.    {
  433.    return 0;
  434.    }
  435. lpUserFunctions->password = password;
  436. lpUserFunctions->print = DisplayBuf;
  437. lpUserFunctions->sound = NULL;
  438. lpUserFunctions->replace = GetReplaceDlgRetVal;
  439. lpUserFunctions->SendApplicationMessage = ReceiveDllMessage;
  440. lpUserFunctions->ServCallBk = NULL;
  441. GetModuleFileName(hInstance,(LPSTR)szThisApp,sizeof(szThisApp));
  442. lstrcpy(zfn, szThisApp);
  443. ptr = strrchr(szThisApp, '\');
  444. //if (SearchPath(
  445. //    NULL,               /* address of search path               */
  446. //    szThisApp,          /* address of filename                  */
  447. //    NULL,               /* address of extension                 */
  448. //    PATH_MAX,           /* size, in characters, of buffer       */
  449. //    szThisApp,          /* address of buffer for found filename */
  450. //    &ptr                /* address of pointer to file component */
  451. //   ) != 0)
  452. if (ptr != NULL)
  453.    {
  454.    lstrcpy(szAppName, ptr);
  455.    ptr[0] = '';
  456.    lstrcpy(szTarget, szThisApp);
  457.    iReturn = DialogBox(hInstance, MAKEINTRESOURCE(INITDIALOG),
  458.          (HWND)NULL, (DLGPROC)InitDialogProc);
  459.    DestroyWindow((HWND) INITDIALOG);
  460. #ifdef WIN32
  461.    SetCurrentDirectory(szHomeDir);
  462. #else
  463.    getcwd(szTarget, MAX_PATH);
  464.    chdir(szHomeDir);
  465.    setdisk(toupper(szHomeDir[0]) - 'A');
  466. #endif
  467.    }
  468. PostQuitMessage(0);
  469. return (0);
  470. }