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

压缩解压

开发平台:

MultiPlatform

  1. //******************************************************************************
  2. //
  3. // File:        INTRFACE.CPP
  4. //
  5. // Description: This module acts as the interface between the Info-ZIP code and
  6. //              our Windows code in WINMAIN.CPP.  We expose the needed
  7. //              functions to query a file list, test file(s), extract file(s),
  8. //              and display a zip file comment.  The windows code is never
  9. //              bothered with understanding the Globals structure "Uz_Globs".
  10. //
  11. //              This module also catches all the callbacks from the Info-ZIP
  12. //              code, cleans up the data provided in the callback, and then
  13. //              forwards the information to the appropriate function in the
  14. //              windows code.  These callbacks include status messages, file
  15. //              lists, comments, password prompt, and file overwrite prompts.
  16. //
  17. //              Finally, this module implements the few functions that the
  18. //              Info-ZIP code expects the port to implement. These functions are
  19. //              OS dependent and are mostly related to validating file names and
  20. //              directoies, and setting file attributes and dates of saved files.
  21. //
  22. // Copyright:   All the source files for Pocket UnZip, except for components
  23. //              written by the Info-ZIP group, are copyrighted 1997 by Steve P.
  24. //              Miller.  The product "Pocket UnZip" itself is property of the
  25. //              author and cannot be altered in any way without written consent
  26. //              from Steve P. Miller.
  27. //
  28. // Disclaimer:  All project files are provided "as is" with no guarantee of
  29. //              their correctness.  The authors are not liable for any outcome
  30. //              that is the result of using this source.  The source for Pocket
  31. //              UnZip has been placed in the public domain to help provide an
  32. //              understanding of its implementation.  You are hereby granted
  33. //              full permission to use this source in any way you wish, except
  34. //              to alter Pocket UnZip itself.  For comments, suggestions, and
  35. //              bug reports, please write to stevemil@pobox.com.
  36. //
  37. // Functions:   DoListFiles
  38. //              DoExtractOrTestFiles
  39. //              DoGetComment
  40. //              SetExtractToDirectory
  41. //              InitGlobals
  42. //              FreeGlobals
  43. //              IsFileOrDirectory
  44. //              SmartCreateDirectory
  45. //              ExtractOrTestFilesThread
  46. //              CheckForAbort
  47. //              SetCurrentFile
  48. //              UzpMessagePrnt2
  49. //              UzpInput2
  50. //              UzpMorePause
  51. //              UzpPassword
  52. //              UzpReplace
  53. //              UzpSound
  54. //              SendAppMsg
  55. //              win_fprintf
  56. //              mapattr
  57. //              utimeToFileTime
  58. //              GetFileTimes
  59. //              close_outfile
  60. //              do_wild
  61. //              mapname
  62. //              test_NT
  63. //              checkdir
  64. //              match
  65. //              iswild
  66. //              IsOldFileSystem
  67. //
  68. //
  69. // Date      Name          History
  70. // --------  ------------  -----------------------------------------------------
  71. // 02/01/97  Steve Miller  Created (Version 1.0 using Info-ZIP UnZip 5.30)
  72. //
  73. //******************************************************************************
  74. //******************************************************************************
  75. #if 0 // The following information and structure are here just for reference
  76. //******************************************************************************
  77. //
  78. // The Windows CE version of Unzip builds with the following defines set:
  79. //
  80. //
  81. //    WIN32
  82. //    _WINDOWS
  83. //    UNICODE
  84. //    _UNICODE
  85. //    WIN32_LEAN_AND_MEAN
  86. //    STRICT
  87. //
  88. //    POCKET_UNZIP         (Main define - Always set)
  89. //
  90. //    UNZIP_INTERNAL
  91. //    WINDLL
  92. //    DLL
  93. //    REENTRANT
  94. //    USE_EF_UT_TIME
  95. //    NO_ZIPINFO
  96. //    NO_STDDEF_H
  97. //    NO_NTSD_EAS
  98. //
  99. //    USE_SMITH_CODE       (optional - See COPYING document)
  100. //    USE_UNSHRINK         (optional - See COPYING document)
  101. //
  102. //    DEBUG                (When building for Debug)
  103. //    _DEBUG               (When building for Debug)
  104. //    NDEBUG               (When building for Retail)
  105. //    _NDEBUG              (When building for Retail)
  106. //
  107. //    _WIN32_WCE=100       (When building for Windows CE native)
  108. //
  109. // This causes our Globals structure to look like the following.  The only
  110. // things we care about is this Globals structure, the process_zipfiles()
  111. // function, and a few callback functions.  The Info-ZIP code has not been
  112. // been modified in any way.
  113. //
  114. typedef struct Globals {
  115.    zvoid         *callerglobs;          // points to pass-through global vars
  116.    UzpOpts        UzO;                  // command options structure
  117.    int            prompt_always;        // prompt to overwrite if TRUE
  118.    int            noargs;               // did true command line have *any* arguments?
  119.    unsigned       filespecs;            // number of real file specifications to be matched
  120.    unsigned       xfilespecs;           // number of excluded filespecs to be matched
  121.    int            process_all_files;
  122.    int            create_dirs;          // used by main(), mapname(), checkdir()
  123.    int            extract_flag;
  124.    int            newzip;               // reset in extract.c; used in crypt.c
  125.    LONGINT        real_ecrec_offset;
  126.    LONGINT        expect_ecrec_offset;
  127.    long           csize;                // used by decompr. (NEXTBYTE): must be signed
  128.    long           ucsize;               // used by unReduce(), explode()
  129.    long           used_csize;           // used by extract_or_test_member(), explode()
  130.    int            fValidate;            // true if only validating an archive
  131.    int            filenotfound;
  132.    int            redirect_data;        // redirect data to memory buffer
  133.    int            redirect_text;        // redirect text output to buffer
  134.    int            redirect_slide;       // redirect decompression area to mem buffer
  135.    unsigned       _wsize;
  136.    unsigned       redirect_size;
  137.    uch           *redirect_buffer;
  138.    uch           *redirect_pointer;
  139.    uch           *redirect_sldptr;      // head of decompression slide buffer
  140.    char         **pfnames;
  141.    char         **pxnames;
  142.    char           sig[4];
  143.    char           answerbuf[10];
  144.    min_info       info[DIR_BLKSIZ];
  145.    min_info      *pInfo;
  146.    union work     area;                 // see unzpriv.h for definition of work
  147.    ZCONST ulg near *crc_32_tab;
  148.    ulg            crc32val;             // CRC shift reg. (was static in funzip)
  149.    uch           *inbuf;                // input buffer (any size is OK)
  150.    uch           *inptr;                // pointer into input buffer
  151.    int            incnt;
  152.    ulg            bitbuf;
  153.    int            bits_left;            // unreduce and unshrink only
  154.    int            zipeof;
  155.    char          *argv0;                // used for NT and EXE_EXTENSION
  156.    char          *wildzipfn;
  157.    char          *zipfn;                // GRR:  MSWIN:  must nuke any malloc'd zipfn...
  158.    int            zipfd;                // zipfile file handle
  159.    LONGINT        ziplen;
  160.    LONGINT        cur_zipfile_bufstart; // extract_or_test, readbuf, ReadByte
  161.    LONGINT        extra_bytes;          // used in unzip.c, misc.c
  162.    uch           *extra_field;          // Unix, VMS, Mac, OS/2, Acorn, ...
  163.    uch           *hold;
  164.    local_file_hdr lrec;                 // used in unzip.c, extract.c
  165.    cdir_file_hdr  crec;                 // used in unzip.c, extract.c, misc.c
  166.    ecdir_rec      ecrec;                // used in unzip.c, extract.c
  167.    struct stat    statbuf;              // used by main, mapname, check_for_newer
  168.    int            mem_mode;
  169.    uch           *outbufptr;            // extract.c static
  170.    ulg            outsize;              // extract.c static
  171.    int            reported_backslash;   // extract.c static
  172.    int            disk_full;
  173.    int            newfile;
  174.    int            didCRlast;            // fileio static
  175.    ulg            numlines;             // fileio static: number of lines printed
  176.    int            sol;                  // fileio static: at start of line
  177.    int            no_ecrec;             // process static
  178.    FILE          *outfile;
  179.    uch           *outbuf;
  180.    uch           *realbuf;
  181.    uch           *outbuf2;              //  main() (never changes); else malloc'd
  182.    uch           *outptr;
  183.    ulg            outcnt;               // number of chars stored in outbuf
  184.    char           filename[FILNAMSIZ];
  185.    char          *key;                  // crypt static: decryption password or NULL
  186.    int            nopwd;                // crypt static
  187.    ulg            keys[3];              // crypt static: keys defining pseudo-random sequence
  188.    unsigned       hufts;                // track memory usage
  189.    struct huft   *fixed_tl;             // inflate static
  190.    struct huft   *fixed_td;             // inflate static
  191.    int            fixed_bl
  192.    int            fixed_bd;             // inflate static
  193.    unsigned       wp;                   // inflate static: current position in slide
  194.    ulg            bb;                   // inflate static: bit buffer
  195.    unsigned       bk;                   // inflate static: bits in bit buffer
  196.    MsgFn         *message;
  197.    InputFn       *input;
  198.    PauseFn       *mpause;
  199.    PasswdFn      *decr_passwd;
  200.    StatCBFn      *statreportcb;
  201.    LPUSERFUNCTIONS lpUserFunctions;
  202.    int            incnt_leftover;       // so improved NEXTBYTE does not waste input
  203.    uch           *inptr_leftover;
  204.    // These are defined in PUNZIP.H.
  205.    char           matchname[FILNAMSIZ]; // used by do_wild()
  206.    int            notfirstcall;         // used by do_wild()
  207.    char          *zipfnPtr;
  208.    char          *wildzipfnPtr;
  209. } Uz_Globs;
  210. #endif // #if 0 - This struct is here just for reference
  211. //******************************************************************************
  212. extern "C" {
  213. #define __INTRFACE_CPP__
  214. #define UNZIP_INTERNAL
  215. #include "unzip.h"
  216. #include "crypt.h"     // Needed to pick up CRYPT define
  217. #include <commctrl.h>
  218. #include "intrface.h"
  219. #include "winmain.h"
  220. #ifndef _WIN32_WCE
  221. #include <process.h>   // _beginthreadex() and _endthreadex()
  222. #endif
  223. }
  224. #include <tchar.h> // Must be outside of extern "C" block
  225. //******************************************************************************
  226. //***** "Local" Global Variables
  227. //******************************************************************************
  228. static USERFUNCTIONS  g_uf;
  229. static EXTRACT_INFO  *g_pExtractInfo = NULL;
  230. static FILE_NODE     *g_pFileLast    = NULL;
  231. static CHAR           g_szExtractToDirectory[_MAX_PATH];
  232. static BOOL           g_fOutOfMemory;
  233. //******************************************************************************
  234. //***** Local Function Prototypes
  235. //******************************************************************************
  236. extern "C" {
  237. // Our exposed interface functions to the Info-ZIP core.
  238. BOOL DoListFiles(LPCSTR szZipFile);
  239. BOOL DoExtractOrTestFiles(LPCSTR szZipFile, EXTRACT_INFO *pei);
  240. BOOL DoGetComment(LPCSTR szFile);
  241. BOOL SetExtractToDirectory(LPTSTR szDirectory);
  242. // Internal functions.
  243. Uz_Globs* InitGlobals(LPCSTR szZipFile);
  244. void FreeGlobals(Uz_Globs *pG);
  245. int IsFileOrDirectory(LPCTSTR szPath);
  246. BOOL SmartCreateDirectory(Uz_Globs *pG, LPCSTR szDirectory);
  247. #ifdef _WIN32_WCE
  248. DWORD WINAPI ExtractOrTestFilesThread(LPVOID lpv);
  249. #else
  250. unsigned __stdcall ExtractOrTestFilesThread(void *lpv);
  251. #endif
  252. void CheckForAbort(Uz_Globs *pG);
  253. void SetCurrentFile(Uz_Globs *pG);
  254. // Callbacks from Info-ZIP code.
  255. int UzpMessagePrnt2(zvoid *pG, uch *buffer, ulg size, int flag);
  256. int UzpInput2(zvoid *pG, uch *buffer, int *size, int flag);
  257. void UzpMorePause(zvoid *pG, const char *szPrompt, int flag);
  258. int UzpPassword(zvoid *pG, int *pcRetry, char *szPassword, int nSize,
  259.                 const char *szZipFile, const char *szFile);
  260. int WINAPI UzpReplace(char *szFile);
  261. void WINAPI UzpSound(void);
  262. void WINAPI SendAppMsg(ulg dwSize, ulg dwCompressedSize, int ratio, int month,
  263.                        int day, int year, int hour, int minute, int uppercase,
  264.                        char *szPath, char *szMethod, ulg dwCRC);
  265. int win_fprintf(FILE *file, unsigned int dwCount, char far *buffer);
  266. // Functions that Info-ZIP expects the port to write and export.
  267. void utimeToFileTime(time_t ut, FILETIME *pft, BOOL fOldFileSystem);
  268. int GetFileTimes(Uz_Globs *pG, FILETIME *pftCreated, FILETIME *pftAccessed,
  269.                  FILETIME *pftModified);
  270. int mapattr(Uz_Globs *pG);
  271. void close_outfile(Uz_Globs *pG);
  272. char* do_wild(Uz_Globs *pG, char *wildspec);
  273. int mapname(Uz_Globs *pG, int renamed);
  274. int test_NT(Uz_Globs *pG, uch *eb, unsigned eb_size);
  275. int checkdir(Uz_Globs *pG, char *pathcomp, int flag);
  276. // Check for FAT, VFAT, HPFS, etc.
  277. BOOL IsOldFileSystem(char *szPath);
  278. } // extern "C"
  279. //******************************************************************************
  280. //***** Our exposed interface functions to the Info-ZIP core
  281. //******************************************************************************
  282. int DoListFiles(LPCSTR szZipFile) {
  283.    int result;
  284.    // Create our Globals struct and fill it in whith some default values.
  285.    Uz_Globs *pG = InitGlobals(szZipFile);
  286.    if (!pG) {
  287.       return PK_MEM;
  288.    }
  289.    pG->UzO.vflag = 1; // verbosely: list directory (for WIN32 it is 0 or 1)
  290.    pG->process_all_files = TRUE; // improves speed
  291.    g_pFileLast = NULL;
  292.    g_fOutOfMemory = FALSE;
  293.    // We wrap some exception handling around the entire Info-ZIP engine to be
  294.    // safe.  Since we are running on a device with tight memory configurations,
  295.    // all sorts of problems can arise when we run out of memory.
  296.    __try {
  297.       // Call the unzip routine.  We will catch the file information in a
  298.       // callback to SendAppMsg().
  299.       result = process_zipfiles(pG);
  300.       // Make sure we didn't run out of memory in the process.
  301.       if (g_fOutOfMemory) {
  302.          result = PK_MEM;
  303.       }
  304.    } __except(EXCEPTION_EXECUTE_HANDLER) {
  305.       // Catch any exception here.
  306.       DebugOut(TEXT("Exception 0x%08X occurred in DoListFiles()"),
  307.                GetExceptionCode());
  308.       result = PK_EXCEPTION;
  309.    }
  310.    g_pFileLast = NULL;
  311.    // It is possible that the ZIP engine change the file name a bit (like adding
  312.    // a ".zip" if needed).  If so, we will pick up the new name.
  313.    if ((result != PK_EXCEPTION) && pG->zipfn && *pG->zipfn) {
  314.       strcpy(g_szZipFile, pG->zipfn);
  315.    }
  316.    // Free our globals.
  317.    FreeGlobals(pG);
  318.    return result;
  319. }
  320. //******************************************************************************
  321. BOOL DoExtractOrTestFiles(LPCSTR szZipFile, EXTRACT_INFO *pei) {
  322.    // WARNING!!!  This functions hands the EXTRACT_INFO structure of to a thread
  323.    // to perform the actual extraction/test.  When the thread is done, it will
  324.    // send a message to the progress dialog.  The calling function must not
  325.    // delete the EXTRAT_INFO structure until it receives the message.  Currently,
  326.    // this is not a problem for us since the structure lives on the stack of the
  327.    // calling thread.  The calling thread then displays a dialog that blocks the
  328.    // calling thread from clearing the stack until the dialog is dismissed, which
  329.    // occurs when the dialog receives the message.
  330.    // Create our globals so we can store the file name.
  331.    Uz_Globs *pG = InitGlobals(szZipFile);
  332.    if (!pG) {
  333.       pei->result = PK_MEM;
  334.       SendMessage(g_hDlgProgress, WM_PRIVATE, MSG_OPERATION_COMPLETE, (LPARAM)pei);
  335.       return FALSE;
  336.    }
  337.    // Store a global pointer to the Extract structure so it can be reached from
  338.    // our thread and callback functions.
  339.    g_pExtractInfo = pei;
  340.    // Spawn our thread
  341.    DWORD dwThreadId;
  342.    HANDLE hThread;
  343. #ifdef _WIN32_WCE
  344.    // On CE, we use good old CreateThread() since the WinCE CRT does not
  345.    // allocate per-thread storage.
  346.    hThread = CreateThread(NULL, 0, ExtractOrTestFilesThread, pG, 0, &dwThreadId);
  347. #else
  348.    // On NT, we need use the CRT's thread function so that we don't leak any
  349.    // CRT allocated memory when the thread exits.
  350.    hThread = (HANDLE)_beginthreadex(NULL, 0, ExtractOrTestFilesThread, pG, 0,
  351.                                     (unsigned*)&dwThreadId);
  352. #endif
  353.    // Bail out if our thread failed to create.
  354.    if (!hThread) {
  355.       DebugOut(TEXT("CreateThread() failed [%u]"), GetLastError());
  356.       // Set our error as a memory error.
  357.       g_pExtractInfo->result = PK_MEM;
  358.       // Free our globals.
  359.       FreeGlobals(pG);
  360.       // Tell the progress dialog that we are done.
  361.       SendMessage(g_hDlgProgress, WM_PRIVATE, MSG_OPERATION_COMPLETE, (LPARAM)pei);
  362.       g_pExtractInfo = NULL;
  363.       return FALSE;
  364.    }
  365.    // Close our thread handle since we have no use for it.
  366.    CloseHandle(hThread);
  367.    return TRUE;
  368. }
  369. //******************************************************************************
  370. int DoGetComment(LPCSTR szFile) {
  371.    int result;
  372.    // Create our Globals struct and fill it in whith some default values.
  373.    Uz_Globs *pG = InitGlobals(szFile);
  374.    if (!pG) {
  375.       return PK_MEM;
  376.    }
  377.    pG->UzO.zflag = TRUE; // display the zipfile comment
  378.    // We wrap some exception handling around the entire Info-ZIP engine to be
  379.    // safe.  Since we are running on a device with tight memory configurations,
  380.    // all sorts of problems can arise when we run out of memory.
  381.    __try {
  382.       // Call the unzip routine.  We will catch the comment string in a callback
  383.       // to win_fprintf().
  384.       result = process_zipfiles(pG);
  385.    } __except(EXCEPTION_EXECUTE_HANDLER) {
  386.       // Catch any exception here.
  387.       DebugOut(TEXT("Exception 0x%08X occurred in DoGetComment()"),
  388.                GetExceptionCode());
  389.       result = PK_EXCEPTION;
  390.    }
  391.    // Free our globals.
  392.    FreeGlobals(pG);
  393.    return result;
  394. }
  395. //******************************************************************************
  396. BOOL SetExtractToDirectory(LPTSTR szDirectory) {
  397.    BOOL fNeedToAddWack = FALSE;
  398.    // Remove any trailing wack from the path.
  399.    int length = _tcslen(szDirectory);
  400.    if ((length > 0) && (szDirectory[length - 1] == TEXT('\'))) {
  401.       szDirectory[--length] = TEXT('');
  402.       fNeedToAddWack = TRUE;
  403.    }
  404. #ifndef _WIN32_WCE
  405.    // Check to see if a root directory was specified.
  406.    if ((length == 2) && isalpha(szDirectory[0]) && (szDirectory[1] == ':')) {
  407.       // If just a root is specified, we need to only verify the drive letter.
  408.       if (!(GetLogicalDrives() & (1 << (tolower(szDirectory[0]) - (int)'a')))) {
  409.          // This drive does not exist.  Bail out with a failure.
  410.          return FALSE;
  411.       }
  412.    } else
  413. #endif
  414.    // We only verify path if length is >0 since we know "" is valid.
  415.    if (length > 0) {
  416.       // Verify the the path exists and that it is a directory.
  417.       if (IsFileOrDirectory(szDirectory) != 2) {
  418.          return FALSE;
  419.       }
  420.    }
  421.    // Store the directory for when we do an extract.
  422.    wcstombs(g_szExtractToDirectory, szDirectory, countof(g_szExtractToDirectory));
  423.    // We always want a wack at the end of our path.
  424.    strcat(g_szExtractToDirectory, "\");
  425.    // Add the wack back to the end of the path.
  426.    if (fNeedToAddWack) {
  427.       _tcscat(szDirectory, TEXT("\"));
  428.    }
  429.    return TRUE;
  430. }
  431. //******************************************************************************
  432. //***** Internal functions
  433. //******************************************************************************
  434. Uz_Globs* InitGlobals(LPCSTR szZipFile) {
  435.    // Create our global structure - pG
  436.    CONSTRUCTGLOBALS();
  437.    // Bail out if we failed to allocate our Globals structure.
  438.    if (!pG) {
  439.       return NULL;
  440.    }
  441.    // Store a global pointer to our USERFUNCTIONS structure so that LIST.C,
  442.    // PROCESS.C, and WINMAIN can access it.
  443.    pG->lpUserFunctions = &g_uf;
  444.    // Clear our USERFUNCTIONS structure and assign our SendAppMsg() function.
  445.    ZeroMemory(&g_uf, sizeof(g_uf));
  446.    g_uf.SendApplicationMessage = SendAppMsg;
  447.    // Fill in all our callback functions.
  448.    pG->message     = UzpMessagePrnt2;
  449.    pG->input       = UzpInput2;
  450.    pG->mpause      = UzpMorePause;
  451.    pG->lpUserFunctions->replace     = UzpReplace;
  452.    pG->lpUserFunctions->sound       = UzpSound;
  453. #if CRYPT
  454.    pG->decr_passwd = UzpPassword;
  455. #endif
  456.    // Match filenames case-sensitively.  We can do this since we can guarentee
  457.    // exact case because the user can only select files via our UI.
  458.    pG->UzO.C_flag = FALSE;
  459.    // Allocate and store the ZIP file name in pG->zipfn
  460.    if (!(pG->zipfnPtr = new char[FILNAMSIZ])) {
  461.       FreeGlobals(pG);
  462.       return NULL;
  463.    }
  464.    pG->zipfn = pG->zipfnPtr;
  465.    strcpy(pG->zipfn, szZipFile);
  466.    // Allocate and store the ZIP file name in pG->zipfn.  This needs to done
  467.    // so that do_wild() does not wind up clearing out the zip file name when
  468.    // it returns in process.c
  469.    if (!(pG->wildzipfnPtr = new char[FILNAMSIZ])) {
  470.       FreeGlobals(pG);
  471.       return NULL;
  472.    }
  473.    pG->wildzipfn = pG->wildzipfnPtr;
  474.    strcpy(pG->wildzipfn, szZipFile);
  475.    return pG;
  476. }
  477. //******************************************************************************
  478. void FreeGlobals(Uz_Globs *pG) {
  479.    // Free our ZIP file name
  480.    if (pG->zipfnPtr) {
  481.       delete[] pG->zipfnPtr;
  482.       pG->zipfnPtr = pG->zipfn = NULL;
  483.    }
  484.    // Free our wild name buffer
  485.    if (pG->wildzipfnPtr) {
  486.       delete[] pG->wildzipfnPtr;
  487.       pG->wildzipfnPtr = pG->wildzipfn = NULL;
  488.    }
  489.    // Free everything else.
  490.    DESTROYGLOBALS()
  491. }
  492. //******************************************************************************
  493. int IsFileOrDirectory(LPCTSTR szPath) {
  494.    // Geth the attributes of the item.
  495.    DWORD dwAttribs = GetFileAttributes(szPath);
  496.    // Bail out now if we could not find the path at all.
  497.    if (dwAttribs == 0xFFFFFFFF) {
  498.       return 0;
  499.    }
  500.    // Return 1 for file and 2 for directory.
  501.    return ((dwAttribs & FILE_ATTRIBUTE_DIRECTORY) ? 2 : 1);
  502. }
  503. //******************************************************************************
  504. BOOL SmartCreateDirectory(Uz_Globs *pG, LPCSTR szDirectory) {
  505.    // Copy path to a UNICODE buffer.
  506.    TCHAR szBuffer[_MAX_PATH];
  507.    mbstowcs(szBuffer, szDirectory, countof(szBuffer));
  508.    int x = IsFileOrDirectory(szBuffer);
  509.    // Create the directory if it does not exist.
  510.    if (x == 0) {
  511.       if (!CreateDirectory(szBuffer, NULL)) {
  512.          Info(slide, 1, ((char *)slide, "error creating directory: %sn", szDirectory));
  513.          return FALSE;
  514.       }
  515.    // If there is a file with the same name, then display an error.
  516.    } else if (x == 1) {
  517.       Info(slide, 1, ((char *)slide,
  518.            "cannot create %s as a file with same name already exists.n",
  519.            szDirectory));
  520.       return FALSE;
  521.    }
  522.    // If the directory already exists or was created, then return success.
  523.    return TRUE;
  524. }
  525. //******************************************************************************
  526. #ifdef _WIN32_WCE
  527. // On WinCE, we declare our thread function the way CreateThread() likes it.
  528. DWORD WINAPI ExtractOrTestFilesThread(LPVOID lpv) {
  529. #else
  530. // On WinNT, we declare our thread function the way _beginthreadex likes it.
  531. unsigned __stdcall ExtractOrTestFilesThread(void *lpv) {
  532. #endif
  533.    Uz_Globs *pG = (Uz_Globs*)lpv;
  534.    if (g_pExtractInfo->fExtract) {
  535.       pG->extract_flag = TRUE;
  536.       switch (g_pExtractInfo->overwriteMode) {
  537.          case OM_NEWER:         // Update (extract only newer/brand-new files)
  538.             pG->UzO.uflag = TRUE;
  539.             break;
  540.          case OM_ALWAYS:        // OK to overwrite files without prompting
  541.             pG->UzO.overwrite_all = TRUE;
  542.             break;
  543.          case OM_NEVER:         // Never overwrite files (no prompting)
  544.             pG->UzO.overwrite_none = TRUE;
  545.             break;
  546.          default:               // Force a prompt
  547.             pG->prompt_always = TRUE;
  548.             break;
  549.       }
  550.       // Throw away paths if requested.
  551.       pG->UzO.jflag = !g_pExtractInfo->fRestorePaths;
  552.    } else {
  553.       pG->UzO.tflag = TRUE;
  554.    }
  555.    if (g_pExtractInfo->szFileList) {
  556.       pG->filespecs = g_pExtractInfo->dwFileCount;
  557.       pG->pfnames = g_pExtractInfo->szFileList;
  558.    } else {
  559.       // Improves performance if all files are being extracted.
  560.       pG->process_all_files = TRUE;
  561.    }
  562.    // Invalidate our file offset to show that we are starting a new operation.
  563.    g_pExtractInfo->dwFileOffset = 0xFFFFFFFF;
  564.    // We wrap some exception handling around the entire Info-ZIP engine to be
  565.    // safe.  Since we are running on a device with tight memory configurations,
  566.    // all sorts of problems can arise when we run out of memory.
  567.    __try {
  568.       // Put a jump marker on our stack so the user can abort.
  569.       int error = setjmp(dll_error_return);
  570.       // If setjmp() returns 0, then we just set our jump marker and we can
  571.       // continue with the operation.  If setjmp() returned something else,
  572.       // then we reached this point because the operation was aborted and
  573.       // set our instruction pointer back here.
  574.       if (error > 0) {
  575.          // We already called process_zipfiles() and were thrown back here.
  576.          g_pExtractInfo->result = (error == 1) ? PK_BADERR : error;
  577.       } else {
  578.          // Entering Info-ZIP... close your eyes.
  579.          g_pExtractInfo->result = process_zipfiles(pG);
  580.       }
  581.    } __except(EXCEPTION_EXECUTE_HANDLER) {
  582.       // Catch any exception here.
  583.       DebugOut(TEXT("Exception 0x%08X occurred in ExtractOrTestFilesThread()"),
  584.                GetExceptionCode());
  585.       g_pExtractInfo->result = PK_EXCEPTION;
  586.    }
  587.    // Free our globals.
  588.    FreeGlobals(pG);
  589.    // Tell the progress dialog that we are done.
  590.    SendMessage(g_hDlgProgress, WM_PRIVATE, MSG_OPERATION_COMPLETE,
  591.                (LPARAM)g_pExtractInfo);
  592.    // Clear our global pointer as we are done with it.
  593.    g_pExtractInfo = NULL;
  594. #ifndef _WIN32_WCE
  595.    // On NT, we need to free any CRT allocated memory.
  596.    _endthreadex(0);
  597. #endif
  598.    return 0;
  599. }
  600. //******************************************************************************
  601. void CheckForAbort(Uz_Globs *pG) {
  602.    if (g_pExtractInfo->fAbort) {
  603.       // Add a newline to our log if we are in the middle of a line of text.
  604.       if (!g_pExtractInfo->fNewLineOfText) {
  605.          SendMessage(g_hWndMain, WM_PRIVATE, MSG_ADD_TEXT_TO_EDIT, (LPARAM)"n");
  606.       }
  607.       // Make sure whatever file we are currently processing gets closed.
  608.       if (((int)pG->outfile != 0) && ((int)pG->outfile != -1)) {
  609.          if (g_pExtractInfo->fExtract && *pG->filename) {
  610.             // Make sure the user is aware that this file is screwed.
  611.             SendMessage(g_hWndMain, WM_PRIVATE, MSG_ADD_TEXT_TO_EDIT,
  612.                         (LPARAM)"warning: ");
  613.             SendMessage(g_hWndMain, WM_PRIVATE, MSG_ADD_TEXT_TO_EDIT,
  614.                         (LPARAM)pG->filename);
  615.             SendMessage(g_hWndMain, WM_PRIVATE, MSG_ADD_TEXT_TO_EDIT,
  616.                         (LPARAM)" is probably truncated.n");
  617.          }
  618.          // Close the file.
  619.          close_outfile(pG);
  620.       }
  621.       // Display an aborted message in the log
  622.       SendMessage(g_hWndMain, WM_PRIVATE, MSG_ADD_TEXT_TO_EDIT,
  623.                   (LPARAM)"Operation aborted by user.n");
  624.       // I hate to do this... Take a giant step out of here.
  625.       longjmp(dll_error_return, PK_ABORTED);
  626.    }
  627. }
  628. //******************************************************************************
  629. void SetCurrentFile(Uz_Globs *pG) {
  630.    // Reset all our counters as we about to process a new file.
  631.    g_pExtractInfo->dwFileOffset = (DWORD)pG->pInfo->offset;
  632.    g_pExtractInfo->dwFile++;
  633.    g_pExtractInfo->dwBytesWrittenThisFile = 0;
  634.    g_pExtractInfo->dwBytesWrittenPreviousFiles += g_pExtractInfo->dwBytesTotalThisFile;
  635.    g_pExtractInfo->dwBytesTotalThisFile = pG->ucsize;
  636.    g_pExtractInfo->szFile = pG->filename;
  637.    g_pExtractInfo->fNewLineOfText = TRUE;
  638.    // Pass control to our GUI thread to do a full update our progress dialog.
  639.    SendMessage(g_hWndMain, WM_PRIVATE, MSG_UPDATE_PROGRESS_COMPLETE,
  640.                (LPARAM)g_pExtractInfo);
  641.    // Check our abort flag.
  642.    CheckForAbort(pG);
  643. }
  644. //******************************************************************************
  645. //***** Callbacks from Info-ZIP code.
  646. //******************************************************************************
  647. int UzpMessagePrnt2(zvoid *pG, uch *buffer, ulg size, int flag) {
  648.    // Some ZIP files cause us to get called during DoListFiles(). We only handle
  649.    // messages while processing DoExtractFiles().
  650.    if (!g_pExtractInfo) {
  651.       if (g_hWndEdit) {
  652.          SendMessage(g_hWndMain, WM_PRIVATE, MSG_ADD_TEXT_TO_EDIT,
  653.                      (LPARAM)buffer);
  654.       } else {
  655.          DebugOut(TEXT("Unhandled call to UzpMessagePrnt2("%S")"), buffer);
  656.       }
  657.       return 0;
  658.    }
  659.    // When extracting, mapname() will get called for every file which in turn
  660.    // will call SetCurrentFile().  For testing though, mapname() never gets
  661.    // called so we need to be on the lookout for a new file.
  662.    if (g_pExtractInfo->dwFileOffset != (DWORD)((Uz_Globs*)pG)->pInfo->offset) {
  663.       SetCurrentFile((Uz_Globs*)pG);
  664.    }
  665.    // Make sure this message was inteded for us to display.
  666.    if (!MSG_NO_WGUI(flag) && !MSG_NO_WDLL(flag)) {
  667.       // Insert a leading newline if requested to do so.
  668.       if (MSG_LNEWLN(flag) && !g_pExtractInfo->fNewLineOfText) {
  669.          SendMessage(g_hWndMain, WM_PRIVATE, MSG_ADD_TEXT_TO_EDIT, (LPARAM)"n");
  670.          g_pExtractInfo->fNewLineOfText = TRUE;
  671.       }
  672.       // Since we use a proportional font, we need to do a little cleanup of the
  673.       // text we are passed since it assumes a fixed font and adds padding to try
  674.       // to line things up.  We remove leading whitespace on any new line of text.
  675.       if (g_pExtractInfo->fNewLineOfText) {
  676.          while (*buffer == ' ') {
  677.             buffer++;
  678.          }
  679.       }
  680.       // We always remove trailing whitespace.
  681.       LPSTR psz = (LPSTR)buffer + strlen((LPSTR)buffer) - 1;
  682.       while ((psz >= (LPSTR)buffer) && (*psz == ' ')) {
  683.          *(psz--) = '';
  684.       }
  685.       // Determine if the next line of text will be a new line of text.
  686.       g_pExtractInfo->fNewLineOfText = ((*psz == 'r') || (*psz == 'n'));
  687.       // Change all forward slashes to back slashes in the buffer
  688.       ForwardSlashesToBackSlashesA((LPSTR)buffer);
  689.       // Add the cleaned-up text to our extraction log edit control.
  690.       SendMessage(g_hWndMain, WM_PRIVATE, MSG_ADD_TEXT_TO_EDIT, (LPARAM)buffer);
  691.       // Append a trailing newline if requested to do so.
  692.       if (MSG_TNEWLN(flag) || MSG_MNEWLN(flag) && !g_pExtractInfo->fNewLineOfText) {
  693.          SendMessage(g_hWndMain, WM_PRIVATE, MSG_ADD_TEXT_TO_EDIT, (LPARAM)"n");
  694.          g_pExtractInfo->fNewLineOfText = TRUE;
  695.       }
  696.    }
  697.    return 0;
  698. }
  699. //******************************************************************************
  700. int UzpInput2(zvoid *pG, uch *buffer, int *size, int flag) {
  701.    DebugOut(TEXT("WARNING: UzpInput2(...) called"));
  702.    return 0;
  703. }
  704. //******************************************************************************
  705. void UzpMorePause(zvoid *pG, const char *szPrompt, int flag) {
  706.    DebugOut(TEXT("WARNING: UzpMorePause(...) called"));
  707. }
  708. //******************************************************************************
  709. int UzpPassword(zvoid *pG, int *pcRetry, char *szPassword, int nSize,
  710.                 const char *szZipFile, const char *szFile)
  711. {
  712.    // Return Values:
  713.    //    IZ_PW_ENTERED    got some PWD string, use/try it
  714.    //    IZ_PW_CANCEL     no password available (for this entry)
  715.    //    IZ_PW_CANCELALL  no password, skip any further PWD request
  716.    //    IZ_PW_ERROR      failure (no mem, no tty, ...)
  717. #if CRYPT
  718.    // Build the data structure for our dialog.
  719.    DECRYPT_INFO di;
  720.    di.retry      = *pcRetry;
  721.    di.szPassword = szPassword;
  722.    di.nSize      = nSize;
  723.    di.szFile     = szFile;
  724.    // Clear the password to be safe.
  725.    *di.szPassword = '';
  726.    // On our first call for a file, *pcRetry == 0.  If we would like to allow
  727.    // for retries, then we set the value of *pcRetry to the number of retries we
  728.    // are willing to allow.  We will be recalled as neccessary, each time with
  729.    // *pcRetry being decremented once.  1 is the last retry we will get.
  730.    *pcRetry = (*pcRetry == 0) ? MAX_PASSWORD_RETRIES : (*pcRetry - 1);
  731.    // Pass control to our GUI thread which will prompt the user for a password.
  732.    return SendMessage(g_hWndMain, WM_PRIVATE, MSG_PROMPT_FOR_PASSWORD, (LPARAM)&di);
  733. #else
  734.    return -2;
  735. #endif
  736. }
  737. //******************************************************************************
  738. int WINAPI UzpReplace(char *szFile) {
  739.    // Pass control to our GUI thread which will prompt the user to overwrite.
  740.    return SendMessage(g_hWndMain, WM_PRIVATE, MSG_PROMPT_TO_REPLACE, (LPARAM)szFile);
  741. }
  742. //******************************************************************************
  743. void WINAPI UzpSound(void) {
  744.    // Do nothing.
  745. }
  746. //******************************************************************************
  747. // Called from LIST.C
  748. void WINAPI SendAppMsg(ulg dwSize, ulg dwCompressedSize, int ratio, int month,
  749.                        int day, int year, int hour, int minute, int uppercase,
  750.                        char *szPath, char *szMethod, ulg dwCRC)
  751. {
  752.    // If we are out of memory, then just bail since we will only make things worse.
  753.    if (g_fOutOfMemory) {
  754.       return;
  755.    }
  756.    // We get our Globals structure and then retrieve the real file name.
  757.    GETGLOBALS()
  758.    szPath = pG->filename;
  759.    // Allocate a FILE_NODE large enough to hold this file.
  760.    int length = strlen(szPath) + strlen(szMethod);
  761.    g_pFileLast = (FILE_NODE*)new BYTE[sizeof(FILE_NODE) + (sizeof(TCHAR) * length)];
  762.    // Bail out if we failed to allocate the node.
  763.    if (!g_pFileLast) {
  764.       DebugOut(TEXT("Failed to create a FILE_NODE for "%S"."), szPath);
  765.       g_fOutOfMemory = TRUE;
  766.       return;
  767.    }
  768.    // Fill in our node.
  769.    g_pFileLast->dwSize           = dwSize;
  770.    g_pFileLast->dwCompressedSize = dwCompressedSize;
  771.    g_pFileLast->dwCRC            = dwCRC;
  772.    g_pFileLast->szComment        = NULL;
  773.    g_pFileLast->szType           = NULL;
  774.    // Fix the year value to contain the real year.
  775.    year += 1900;
  776.    // Year:   0 - 4095 (12) 1111 1111 1111 0000 0000 0000 0000 0000 (0xFFF00000)
  777.    // Month:  1 -   12 ( 4) 0000 0000 0000 1111 0000 0000 0000 0000 (0x000F0000)
  778.    // Day:    1 -   31 ( 5) 0000 0000 0000 0000 1111 1000 0000 0000 (0x0000F800)
  779.    // Hour:   0 -   23 ( 5) 0000 0000 0000 0000 0000 0111 1100 0000 (0x000007C0)
  780.    // Minute: 0 -   59 ( 6) 0000 0000 0000 0000 0000 0000 0011 1111 (0x0000003F)
  781.    // Do some bit shifting to make the date and time fit in a DWORD.
  782.    g_pFileLast->dwModified = (((DWORD)(year   & 0x0FFF) << 20) |
  783.                               ((DWORD)(month  & 0x000F) << 16) |
  784.                               ((DWORD)(day    & 0x001F) << 11) |
  785.                               ((DWORD)(hour   & 0x001F) <<  6) |
  786.                               ((DWORD)(minute & 0x003F)));
  787.    // We need to get our globals structure to determine our attributes and
  788.    // encryption information.
  789.    g_pFileLast->dwAttributes = (pG->crec.external_file_attributes & 0xFF);
  790.    if (pG->crec.general_purpose_bit_flag & 1) {
  791.       g_pFileLast->dwAttributes |= FILE_ATTRIBUTE_ENCRYPTED;
  792.    }
  793.    // Store the path and method in our string buffer.
  794.    strcpy(g_pFileLast->szPathAndMethod, szPath);
  795.    strcpy(g_pFileLast->szPathAndMethod + strlen(szPath) + 1, szMethod);
  796.    // Pass the file object to our windows code to have it added to our list.
  797.    AddFileToListView(g_pFileLast);
  798. }
  799. //******************************************************************************
  800. int win_fprintf(FILE *file, unsigned int dwCount, char far *buffer) {
  801.    // win_fprintf() is used within Info-ZIP to write to a file as well as log
  802.    // information.  If the "file" is a real file handle (not stdout or stderr),
  803.    // then we write the data to the file and return.
  804.    if ((file != stdout) && (file != stderr)) {
  805.       DWORD dwBytesWriten = 0;
  806. #ifdef _WIN32_WCE
  807.       // On WinCE all FILEs are really HANDLEs.  See WINCE.CPP for more info.
  808.       WriteFile((HANDLE)file, buffer, dwCount, &dwBytesWriten, NULL);
  809. #else
  810.       dwBytesWriten = fwrite(buffer, 1, dwCount, file);
  811. #endif
  812.       // Update our bytes written count.
  813.       g_pExtractInfo->dwBytesWrittenThisFile += dwBytesWriten;
  814.       // Pass control to our GUI thread to do a partial update our progress dialog.
  815.       SendMessage(g_hWndMain, WM_PRIVATE, MSG_UPDATE_PROGRESS_PARTIAL,
  816.                   (LPARAM)g_pExtractInfo);
  817.       // Check our abort flag.
  818.       GETGLOBALS();
  819.       CheckForAbort(pG);
  820.       return dwBytesWriten;
  821.    }
  822.    // Check to see if we are expecting a extraction progress string
  823.    if (g_pExtractInfo) {
  824.       // Most of our progress strings come to our UzpMessagePrnt2() callback,
  825.       // but we occasionally get one here.  We will just forward it to
  826.       // UzpMessagePrnt2() as if it never came here.  To do this, we need to
  827.       // get a pointer to our Globals struct.  Calling GETGLOBALS() sort of
  828.       // breaks us from be REENTRANT, but we don't support that anyway.
  829.       GETGLOBALS();
  830.       UzpMessagePrnt2(pG, (uch*)buffer, dwCount, 0);
  831.       return dwCount;
  832.    }
  833.    // Check to see if we are expecting a zip file comment string.
  834.    if (g_hWndEdit) {
  835.       // Change all forward slashes to back slashes in the buffer
  836.       ForwardSlashesToBackSlashesA((LPSTR)buffer);
  837.       SendMessage(g_hWndMain, WM_PRIVATE, MSG_ADD_TEXT_TO_EDIT, (LPARAM)buffer);
  838.       return dwCount;
  839.    }
  840.    // Check to see if we are expecting a compressed file comment string.
  841.    if (g_pFileLast) {
  842.       // Calcalute the size of the buffer we will need to store this comment.
  843.       // We are going to convert all ASC values 0 - 31 (excpet tab, new line,
  844.       // and CR) to ^char.
  845.       int size = 1;
  846.       for (char *p2, *p1 = buffer; *p1; p1++) {
  847.          size += ((*p1 >= 32) || (*p1 == 't') || (*p1 == 'r') || (*p1 == 'n')) ? 1 : 2;
  848.       }
  849.       // Allocate a comment buffer and assign it to the last file node we saw.
  850.       if (g_pFileLast->szComment = new CHAR[size]) {
  851.          // Copy while formatting.
  852.          for (p1 = buffer, p2 = (char*)g_pFileLast->szComment; *p1; p1++) {
  853.             if ((*p1 >= 32) || (*p1 == 't') || (*p1 == 'r') || (*p1 == 'n')) {
  854.                *(p2++) = *p1;
  855.             } else {
  856.                *(p2++) = '^';
  857.                *(p2++) = 64 + *p1;
  858.             }
  859.          }
  860.          *p2 = '';
  861.       }
  862.       // Update the attributes of the file node to incldue the comment attribute.
  863.       g_pFileLast->dwAttributes |= FILE_ATTRIBUTE_COMMENT;
  864.       // Clear the file node so we don't try to add another bogus comment to it.
  865.       g_pFileLast = NULL;
  866.       return dwCount;
  867.    }
  868.    if (dwCount >= _MAX_PATH) {
  869.       buffer[_MAX_PATH] = '';
  870.    }
  871.    DebugOut(TEXT("Unhandled call to win_fprintf("%S")"), buffer);
  872.    return dwCount;
  873. }
  874. //******************************************************************************
  875. //***** Functions that Info-ZIP expects the port to write and export.
  876. //***** Some of this code was stolen from the WIN32 port and highly modified.
  877. //******************************************************************************
  878. int mapattr(Uz_Globs *pG) {
  879.    // Check to see if we are extracting this file for viewing.  Currently, we do
  880.    // this by checking the szMappedPath member of our extract info stucture
  881.    // since we know OnActionView() is the only one who sets this member.
  882.    if (g_pExtractInfo && g_pExtractInfo->szMappedPath) {
  883.       // If we are extracting for view only, then we ignore the file's real
  884.       // attributes and force the file to create as read-only.  We make the file
  885.       // read-only to help prevent the user from making changes to the temporary
  886.       // file and then trying to save the changes back to a file that we will
  887.       // eventually delete.
  888.       pG->pInfo->file_attr = FILE_ATTRIBUTE_READONLY;
  889.    } else {
  890.       // Store the attribute exactly as it appears for normal extraction/test.
  891.       pG->pInfo->file_attr = (unsigned)pG->crec.external_file_attributes & 0xff;
  892.    }
  893.    return PK_OK;
  894. }
  895. //******************************************************************************
  896. void utimeToFileTime(time_t ut, FILETIME *pft, BOOL fOldFileSystem) {
  897.    // time_t    is a 32-bit value for the seconds since January 1, 1970
  898.    // FILETIME  is a 64-bit value for the number of 100-nanosecond intervals since
  899.    //           January 1, 1601
  900.    // DWORDLONG is a 64-bit int that we can use to perform large math operations.
  901.    // time_t has minimum of 1/1/1970.  Many file systems, such as FAT, have a
  902.    // minimum date of 1/1/1980.  If extracting to one of those file systems and
  903.    // out time_t is less than 1980, then we make it 1/1/1980.
  904.    // (365 days/yr * 10 yrs + 3 leap yr days) * (60 secs * 60 mins * 24 hrs).
  905.    if (fOldFileSystem && (ut < 0x12CFF780)) {
  906.       ut = 0x12CFF780;
  907.    }
  908.    // Compute the FILETIME for the given time_t.
  909.    DWORDLONG dwl = ((DWORDLONG)116444736000000000 +
  910.                    ((DWORDLONG)ut * (DWORDLONG)10000000));
  911.    // Store the return value.
  912.    *pft = *(FILETIME*)&dwl;
  913.    // Now for the next fix for old file systems.  If we are in Daylight Savings
  914.    // Time (DST) and the file is not in DST, then we need subtract off the DST
  915.    // bias from the filetime.  This is due to a bug in Windows (NT, CE, and 95)
  916.    // that causes the DST bias to be added to all file times when the system
  917.    // is in DST, even if the file is not in DST.  This only effects old file
  918.    // systems since they store local times instead of UTC times.  Newer file
  919.    // systems like NTFS and CEFS store UTC times.
  920.    if (fOldFileSystem) {
  921.       // We use the CRT's localtime() and Win32's FileTimeToLocalTime()
  922.       // functions to compute the DST bias.  This works because localtime()
  923.       // correctly adds the DST bias only if the file time is in DST.
  924.       // FileTimeToLocalTime() always adds the DST bias to the time.
  925.       // Therefore, if the functions return different results, we know we
  926.       // are dealing with a non-DST file during a system DST.
  927.       FILETIME ftCRT, ftWin32;
  928.       // Get the CRT result - result is a "tm" struct.
  929.       struct tm *ptmCRT = localtime(&ut);
  930.       // Convert the "tm" struct to a FILETIME.
  931.       SYSTEMTIME stCRT;
  932.       ZeroMemory(&stCRT, sizeof(stCRT));
  933.       stCRT.wYear   = ptmCRT->tm_year + 1900;
  934.       stCRT.wMonth  = ptmCRT->tm_mon + 1;
  935.       stCRT.wDay    = ptmCRT->tm_mday;
  936.       stCRT.wHour   = ptmCRT->tm_hour;
  937.       stCRT.wMinute = ptmCRT->tm_min;
  938.       stCRT.wSecond = ptmCRT->tm_sec;
  939.       SystemTimeToFileTime(&stCRT, &ftCRT);
  940.       // Get the Win32 result - result is a FILETIME.
  941.       if (FileTimeToLocalFileTime(pft, &ftWin32)) {
  942.          // Subtract the difference from our current filetime.
  943.          *(DWORDLONG*)pft -= *(DWORDLONG*)&ftWin32 - *(DWORDLONG*)&ftCRT;
  944.       }
  945.    }
  946. }
  947. //******************************************************************************
  948. int GetFileTimes(Uz_Globs *pG, FILETIME *pftCreated, FILETIME *pftAccessed,
  949.                  FILETIME *pftModified)
  950. {
  951.    // We need to check to see if this file system is limited.  This includes
  952.    // FAT, VFAT, and HPFS.  It does not include NTFS and CEFS.  The limited
  953.    // file systems can not support dates < 1980 and they store file local times
  954.    // for files as opposed to UTC times.
  955.    BOOL fOldFileSystem = IsOldFileSystem(pG->filename);
  956. #ifdef USE_EF_UT_TIME  // Always true for WinCE build
  957. #ifdef IZ_CHECK_TZ
  958.    if (pG->extra_field && pG->tz_is_valid) {
  959. #else
  960.    if (pG->extra_field) {
  961. #endif
  962.       // Structure for Unix style actime, modtime, creatime
  963.       iztimes z_utime;
  964.       // Get any date/time we can.  This can return 0 to 3 unix time fields.
  965.       unsigned eb_izux_flg = ef_scan_for_izux(pG->extra_field,
  966.                                               pG->lrec.extra_field_length, 0,
  967.                                               pG->lrec.last_mod_file_date,
  968.                                               &z_utime, NULL);
  969.       // We require at least a modified time.
  970.       if (eb_izux_flg & EB_UT_FL_MTIME) {
  971.          // We know we have a modified time, so get it first.
  972.          utimeToFileTime(z_utime.mtime, pftModified, fOldFileSystem);
  973.          // Get the accessed time if we have one.
  974.          if (eb_izux_flg & EB_UT_FL_ATIME) {
  975.             utimeToFileTime(z_utime.atime, pftAccessed, fOldFileSystem);
  976.          }
  977.          // Get the created time if we have one.
  978.          if (eb_izux_flg & EB_UT_FL_CTIME) {
  979.             utimeToFileTime(z_utime.ctime, pftCreated, fOldFileSystem);
  980.          }
  981.          // Return our flags.
  982.          return (int)eb_izux_flg;
  983.       }
  984.    }
  985. #endif // USE_EF_UT_TIME
  986.    // If all else fails, we can resort to using the DOS date and time data.
  987.    time_t ux_modtime = dos_to_unix_time(G.lrec.last_mod_file_date,
  988.                                         G.lrec.last_mod_file_time);
  989.    utimeToFileTime(ux_modtime, pftModified, fOldFileSystem);
  990.    *pftAccessed = *pftModified;
  991.    return (EB_UT_FL_MTIME | EB_UT_FL_ATIME);
  992. }
  993. //******************************************************************************
  994. void close_outfile(Uz_Globs *pG) {
  995.    // Get the 3 time stamps for the file.
  996.    FILETIME ftCreated, ftAccessed, ftModified;
  997.    int timeFlags = GetFileTimes(pG, &ftCreated, &ftAccessed, &ftModified);
  998.    TCHAR szFile[_MAX_PATH];
  999.    mbstowcs(szFile, pG->filename, countof(szFile));
  1000. #ifdef _WIN32_WCE
  1001.    // Cast the outfile to a HANDLE (since that is really what it is), and
  1002.    // flush the file.  We need to flush, because any unsaved data that is
  1003.    // written to the file during CloseHandle() will step on the work done
  1004.    // by SetFileTime().
  1005.    HANDLE hFile = (HANDLE)pG->outfile;
  1006.    FlushFileBuffers(hFile);
  1007. #else
  1008.    // Close the file and then re-open it using the Win32 CreateFile() call.
  1009.    // SetFileTime() requires a Win32 file HANDLE created with GENERIC_WRITE
  1010.    // access.
  1011.    fclose(pG->outfile);
  1012.    HANDLE hFile = CreateFile(szFile, GENERIC_WRITE, FILE_SHARE_WRITE, NULL,
  1013.                              OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
  1014. #endif
  1015.    // Set the file's date and time.
  1016.    if (hFile != INVALID_HANDLE_VALUE) {
  1017.       // Make sure we retrieved some valid time stamp(s)
  1018.       if (timeFlags) {
  1019.          // Set the various date and time fields.
  1020.          if (!SetFileTime(hFile,
  1021.                  (timeFlags & EB_UT_FL_CTIME) ? &ftCreated  : NULL,
  1022.                  (timeFlags & EB_UT_FL_ATIME) ? &ftAccessed : NULL,
  1023.                  (timeFlags & EB_UT_FL_MTIME) ? &ftModified : NULL))
  1024.          {
  1025.             DebugOut(TEXT("SetFileTime() failed [%u]"), GetLastError());
  1026.          }
  1027.       } else {
  1028.          DebugOut(TEXT("GetFileTimes() failed"));
  1029.       }
  1030.       // Close out file.
  1031.       CloseHandle(hFile);
  1032.    } else {
  1033.       DebugOut(TEXT("CreateFile() failed [%u]"), GetLastError());
  1034.    }
  1035.    // If the file was successfully written, then set the attributes.
  1036.    if (!pG->disk_full && !g_pExtractInfo->fAbort) {
  1037.       if (!SetFileAttributes(szFile, G.pInfo->file_attr & 0x7F)) {
  1038.          DebugOut(TEXT("SetFileAttributes() failed [%u]"), GetLastError());
  1039.       }
  1040.    }
  1041.    // Clear outfile so we know it is closed.
  1042.    pG->outfile = 0;
  1043.    return;
  1044. }
  1045. //******************************************************************************
  1046. // Called by PROCESS.C
  1047. char* do_wild(Uz_Globs *pG, char *wildspec) {
  1048.    // This is a very slimmed down version of do_wild() taken from WIN32.C.
  1049.    // Since we don't support wildcards, we basically just return the wildspec
  1050.    // passed in as the filename.
  1051.    // First call - must initialize everything.
  1052.    if (!pG->notfirstcall) {
  1053.       pG->notfirstcall = TRUE;
  1054.       return strcpy(pG->matchname, wildspec);
  1055.    }
  1056.    // Last time through - reset for new wildspec.
  1057.    pG->notfirstcall = FALSE;
  1058.    return (char*)NULL;
  1059. }
  1060. //******************************************************************************
  1061. // Called from EXTRACT.C
  1062. //
  1063. // returns:  1 - (on APPEND_NAME) truncated filename
  1064. //           2 - path doesn't exist, not allowed to create
  1065. //           3 - path doesn't exist, tried to create and failed; or
  1066. //               path exists and is not a directory, but is supposed to be
  1067. //           4 - path is too long
  1068. //          10 - can't allocate memory for filename buffers
  1069. //
  1070. // IZ_VOL_LABEL   - Path was a volume label, skip it.
  1071. // IZ_CREATED_DIR - Created a directory.
  1072. //
  1073. int mapname(Uz_Globs *pG, int renamed) {
  1074.    // mapname() is a great place to reset all our status counters for the next
  1075.    // file to be processed since it is called for every zip file member before
  1076.    // any work is done with that member.
  1077.    SetCurrentFile(pG);
  1078.    // If Volume Label, skip the "extraction" quietly
  1079.    if (pG->pInfo->vollabel) {
  1080.       return IZ_VOL_LABEL;
  1081.    }
  1082.    CHAR szBuffer[countof(pG->filename)] = "", *pIn, *pOut, *pLastSemi = NULL;
  1083.    // Initialize file path buffer with our "extract to" path.
  1084.    strcpy(szBuffer, g_szExtractToDirectory);
  1085.    pOut = szBuffer + strlen(szBuffer);
  1086.    // Point pIn to beginning of our internal pathname.
  1087.    // If we are junking paths, then locate the file portion of the path.
  1088.    pIn = (pG->UzO.jflag) ? (CHAR*)GetFileFromPath(pG->filename) : pG->filename;
  1089.    // Begin main loop through characters in filename.
  1090.    for ( ; *pIn; pIn++) {
  1091.       // Make sure we don't overflow our output buffer.
  1092.       if (pOut >= (szBuffer + countof(szBuffer) - 2)) {
  1093.          Info(slide, 1, ((char*)slide, "path too long: %sn", pG->filename));
  1094.          return 4;
  1095.       }
  1096.       // Examine the next character in our input buffer.
  1097.       switch (*pIn) {
  1098.          // Check for a directory wack.
  1099.          case '/':
  1100.          case '\':
  1101.             *pOut = '';
  1102.             if (!SmartCreateDirectory(pG, szBuffer)) {
  1103.                Info(slide, 1, ((char*)slide, "failure extracting: %sn",
  1104.                     pG->filename));
  1105.                return 3;
  1106.             }
  1107.             *(pOut++) = '\';
  1108.             pLastSemi = NULL;  // Leave any directory semi-colons alone
  1109.             break;
  1110.          // Check for illegal characters and replace with underscore.
  1111.          case ':':
  1112.          case '*':
  1113.          case '?':
  1114.          case '"':
  1115.          case '<':
  1116.          case '>':
  1117.          case '|':
  1118.             *(pOut++) = '_';
  1119.             break;
  1120.          // Check for start of VMS version.
  1121.          case ';':
  1122.             pLastSemi = pOut;  // Make note as to where we are.
  1123.             *(pOut++) = *pIn;  // Leave the semi-colon alone for now.
  1124.             break;
  1125.          default:
  1126.             // Allow European characters and spaces in filenames.
  1127.             *(pOut++) = ((*pIn >= 0x20) ? *pIn : '_');
  1128.       }
  1129.    }
  1130.    // Done with output buffer, terminate it.
  1131.    *pOut = '';
  1132.    // Remove any VMS version numbers if found (appended ";###").
  1133.    if (pLastSemi) {
  1134.       // Walk over all digits following the semi-colon.
  1135.       for (pOut = pLastSemi + 1; (*pOut >= '0') && (*pOut <= '9'); pOut++) {
  1136.       }
  1137.       // If we reached the end, then nuke the semi-colon and digits.
  1138.       if (!*pOut) {
  1139.          *pLastSemi = '';
  1140.       }
  1141.    }
  1142.    // Copy the mapped name back to the internal path buffer
  1143.    strcpy(pG->filename, szBuffer);
  1144.    // Fill in the mapped name buffer if the original caller requested us to.
  1145.    if (g_pExtractInfo->szMappedPath) {
  1146.       strcpy(g_pExtractInfo->szMappedPath, szBuffer);
  1147.    }
  1148.    // If it is a directory, then display the "creating" status text.
  1149.    if ((pOut > szBuffer) && (pOut[-1] == TEXT('\'))) {
  1150.       Info(slide, 0, ((char *)slide, "creating: %sn", pG->filename));
  1151.       return IZ_CREATED_DIR;
  1152.    }
  1153.    return PK_OK;
  1154. }
  1155. //******************************************************************************
  1156. // Called from EXTRACT.C
  1157. int test_NT(Uz_Globs *pG, uch *eb, unsigned eb_size) {
  1158.    // This function is called when an NT security descriptor is found in the
  1159.    // extra field.  We have nothing to do, so we just return success.
  1160.    return PK_OK;
  1161. }
  1162. //******************************************************************************
  1163. // Called from PROCESS.C
  1164. int checkdir(Uz_Globs *pG, char *pathcomp, int flag) {
  1165.    // This function is only called by free_G_buffers() from PROCESS.C with the
  1166.    // flag set to END.  We have nothing to do, so we just return success.
  1167.    return PK_OK;
  1168. }
  1169. //******************************************************************************
  1170. // Called from EXTRACT.C and LIST.C
  1171. int match(char *string, char *pattern, int ignore_case) {
  1172.    // match() for the other ports compares a file in the Zip file with some
  1173.    // command line file pattern.  In our case, we always pass in exact matches,
  1174.    // so we can simply do a string compare to see if we have a match.
  1175.    return (strcmp(string, pattern) == 0);
  1176. }
  1177. //******************************************************************************
  1178. // Called from PROCESS.C
  1179. int iswild(char *pattern) {
  1180.    // Our file patterns never contain wild characters.  They are always exact
  1181.    // matches of file names in our Zip file.
  1182.    return FALSE;
  1183. }
  1184. //******************************************************************************
  1185. //***** Functions to correct time stamp bugs on old file systems.
  1186. //******************************************************************************
  1187. //******************************************************************************
  1188. // Borrowed/Modified from win32.c
  1189. BOOL IsOldFileSystem(char *szPath) {
  1190. #ifdef _WIN32_WCE
  1191.    char szRoot[10];
  1192.    // Get the first nine characters of the path.
  1193.    strncpy(szRoot, szPath, 9);
  1194.    szRoot[9] = '';
  1195.    // Convert to uppercase to help with compare.
  1196.    _strupr(szRoot);
  1197.    // PC Cards are mounted off the root in a directory called "PC Cards".
  1198.    // PC Cards are FAT, no CEOS.  We need to check if the file is being
  1199.    // extracted to the PC card.
  1200.    return !strcmp(szRoot, "\PC CARD\");
  1201. #else
  1202.    char szRoot[_MAX_PATH] = "", szFS[64];
  1203.    // Check to see if our path contains a drive letter.
  1204.    if (isalpha(szPath[0]) && (szPath[1] == ':') && (szPath[2] == '\')) {
  1205.       // If so, then just copy the drive letter, colon, and wack to our root path.
  1206.       strncpy(szRoot, szPath, 3);
  1207.    } else {
  1208.       // Expand the path so we can get a drive letter.
  1209.       GetFullPathNameA(szPath, sizeof(szRoot), szRoot, NULL);
  1210.       // Make sure we actually got a drive letter back in our root path buffer..
  1211.       if (!isalpha(szRoot[0]) || (szRoot[1] != ':') || (szRoot[2] != '\')) {
  1212.          // When in doubt, return TRUE.
  1213.          return TRUE;
  1214.       }
  1215.    }
  1216.    // NULL terminate after the wack to ensure we have just the root path.
  1217.    szRoot[3] = '';
  1218.    // Get the file system type string.
  1219.    GetVolumeInformationA(szRoot, NULL, 0, NULL, NULL, NULL, szFS, sizeof(szFS));
  1220.    // Ensure that the file system type string is uppercase.
  1221.    strupr(szFS);
  1222.    // Return true for (V)FAT and (OS/2) HPFS format.
  1223.    return !strncmp(szFS, "FAT",  3) ||
  1224.           !strncmp(szFS, "VFAT", 4) ||
  1225.           !strncmp(szFS, "HPFS", 4);
  1226. #endif // _WIN32_WCE
  1227. }