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

压缩解压

开发平台:

MultiPlatform

  1. /*---------------------------------------------------------------------------
  2.   list.c
  3.   This file contains the non-ZipInfo-specific listing routines for UnZip.
  4.   Contains:  list_files()
  5.              get_time_stamp()   [optional feature]
  6.              ratio()
  7.              fnprint()
  8.   ---------------------------------------------------------------------------*/
  9. #define UNZIP_INTERNAL
  10. #include "unzip.h"
  11. #ifdef WINDLL
  12. #  ifdef POCKET_UNZIP
  13. #    include "wince/intrface.h"
  14. #  else
  15. #    include "windll/windll.h"
  16. #  endif
  17. #endif
  18. #ifdef TIMESTAMP
  19.    static int  fn_is_dir   OF((__GPRO));
  20. #endif
  21. #ifndef WINDLL
  22.    static ZCONST char Far CompFactorStr[] = "%c%d%%";
  23.    static ZCONST char Far CompFactor100[] = "100%%";
  24. #ifdef OS2_EAS
  25.    static ZCONST char Far HeadersS[]  =
  26.      "  Length     EAs   ACLs    Date   Time    Name";
  27.    static ZCONST char Far HeadersS1[] =
  28.      " --------    ---   ----    ----   ----    ----";
  29. #else
  30.    static ZCONST char Far HeadersS[]  = "  Length     Date   Time    Name";
  31.    static ZCONST char Far HeadersS1[] = " --------    ----   ----    ----";
  32. #endif
  33.    static ZCONST char Far HeadersL[]  =
  34.      " Length   Method    Size  Ratio   Date   Time   CRC-32    Name";
  35.    static ZCONST char Far HeadersL1[] =
  36.      "--------  ------  ------- -----   ----   ----   ------    ----";
  37.    static ZCONST char Far *Headers[][2] =
  38.      { {HeadersS, HeadersS1}, {HeadersL, HeadersL1} };
  39.    static ZCONST char Far CaseConversion[] =
  40.      "%s ("^" ==> casen%s   conversion)n";
  41.    static ZCONST char Far LongHdrStats[] =
  42.      "%8lu  %-7s%8lu %4s  %02u-%02u-%02u %02u:%02u  %08lx %c";
  43.    static ZCONST char Far LongFileTrailer[] =
  44.      "--------          -------  ---                       
  45.      -------n%8lu         %8lu %4s                            %u file%sn";
  46. #ifdef OS2_EAS
  47.    static ZCONST char Far ShortHdrStats[] =
  48.      "%9lu %6lu %6lu  %02u-%02u-%02u %02u:%02u  %c";
  49.    static ZCONST char Far ShortFileTrailer[] = " --------  -----  -----       
  50.             -------n%9lu %6lu %6lu                   %u file%sn";
  51.    static ZCONST char Far OS2ExtAttrTrailer[] =
  52.      "%ld file%s %ld bytes of OS/2 extended attributes attached.n";
  53.    static ZCONST char Far OS2ACLTrailer[] =
  54.      "%ld file%s %ld bytes of access control lists attached.n";
  55. #else
  56.    static ZCONST char Far ShortHdrStats[] =
  57.      "%9lu  %02u-%02u-%02u %02u:%02u  %c";
  58.    static ZCONST char Far ShortFileTrailer[] =
  59.      " --------                   -------n%9lu                   %u file%sn";
  60. #endif /* ?OS2_EAS */
  61. #endif /* !WINDLL */
  62. /*************************/
  63. /* Function list_files() */
  64. /*************************/
  65. int list_files(__G)    /* return PK-type error code */
  66.     __GDEF
  67. {
  68.     int do_this_file=FALSE, cfactor, error, error_in_archive=PK_COOL;
  69. #ifndef WINDLL
  70.     char sgn, cfactorstr[10];
  71.     int longhdr=(uO.vflag>1);
  72. #endif
  73.     int date_format;
  74.     unsigned j, methnum, members=0;
  75. #ifdef USE_EF_UT_TIME
  76.     iztimes z_utime;
  77.     struct tm *t;
  78. #endif
  79.     unsigned yr, mo, dy, hh, mm;
  80.     ulg csiz, tot_csize=0L, tot_ucsize=0L;
  81. #ifdef OS2_EAS
  82.     ulg ea_size, tot_easize=0L, tot_eafiles=0L;
  83.     ulg acl_size, tot_aclsize=0L, tot_aclfiles=0L;
  84. #endif
  85.     min_info info;
  86.     char methbuf[8];
  87.     static ZCONST char dtype[]="NXFS";  /* see zi_short() */
  88.     static ZCONST char Far method[NUM_METHODS+1][8] =
  89.         {"Stored", "Shrunk", "Reduce1", "Reduce2", "Reduce3", "Reduce4",
  90.          "Implode", "Token", "Defl:#", "EnhDefl", "ImplDCL", "Unk:###"};
  91. /*---------------------------------------------------------------------------
  92.     Unlike extract_or_test_files(), this routine confines itself to the cen-
  93.     tral directory.  Thus its structure is somewhat simpler, since we can do
  94.     just a single loop through the entire directory, listing files as we go.
  95.     So to start off, print the heading line and then begin main loop through
  96.     the central directory.  The results will look vaguely like the following:
  97.  Length   Method    Size  Ratio   Date   Time   CRC-32    Name ("^" ==> case
  98. --------  ------  ------- -----   ----   ----   ------    ----   conversion)
  99.    44004  Implode   13041  71%  11-02-89 19:34  8b4207f7  Makefile.UNIX
  100.     3438  Shrunk     2209  36%  09-15-90 14:07  a2394fd8 ^dos-file.ext
  101.    16717  Defl:X     5252  69%  11-03-97 06:40  1ce0f189  WHERE
  102. --------          -------  ---                            -------
  103.    64159            20502  68%                            3 files
  104.   ---------------------------------------------------------------------------*/
  105.     G.pInfo = &info;
  106.     date_format = DATE_FORMAT;
  107. #ifndef WINDLL
  108.     if (uO.qflag < 2) {
  109.         if (uO.L_flag)
  110.             Info(slide, 0, ((char *)slide, LoadFarString(CaseConversion),
  111.               LoadFarStringSmall(Headers[longhdr][0]),
  112.               LoadFarStringSmall2(Headers[longhdr][1])));
  113.         else
  114.             Info(slide, 0, ((char *)slide, "%sn%sn",
  115.                LoadFarString(Headers[longhdr][0]),
  116.                LoadFarStringSmall(Headers[longhdr][1])));
  117.     }
  118. #endif /* !WINDLL */
  119.     for (j = 0; j++ < (unsigned)G.ecrec.total_entries_central_dir;) {
  120.         if (readbuf(__G__ G.sig, 4) == 0)
  121.             return PK_EOF;
  122.         if (strncmp(G.sig, central_hdr_sig, 4)) {  /* just to make sure */
  123.             Info(slide, 0x401, ((char *)slide, LoadFarString(CentSigMsg), j));
  124.             Info(slide, 0x401, ((char *)slide, LoadFarString(ReportMsg)));
  125.             return PK_BADERR;   /* sig not found */
  126.         }
  127.         /* process_cdir_file_hdr() sets pInfo->hostnum, pInfo->lcflag, ...: */
  128.         if ((error = process_cdir_file_hdr(__G)) != PK_COOL)
  129.             return error;       /* only PK_EOF defined */
  130.         /*
  131.          * We could DISPLAY the filename instead of storing (and possibly trun-
  132.          * cating, in the case of a very long name) and printing it, but that
  133.          * has the disadvantage of not allowing case conversion--and it's nice
  134.          * to be able to see in the listing precisely how you have to type each
  135.          * filename in order for unzip to consider it a match.  Speaking of
  136.          * which, if member names were specified on the command line, check in
  137.          * with match() to see if the current file is one of them, and make a
  138.          * note of it if it is.
  139.          */
  140.         if ((error = do_string(__G__ G.crec.filename_length, DS_FN)) !=
  141.              PK_COOL)   /*  ^--(uses pInfo->lcflag) */
  142.         {
  143.             error_in_archive = error;
  144.             if (error > PK_WARN)   /* fatal:  can't continue */
  145.                 return error;
  146.         }
  147.         if (G.extra_field != (uch *)NULL) {
  148.             free(G.extra_field);
  149.             G.extra_field = (uch *)NULL;
  150.         }
  151.         if ((error = do_string(__G__ G.crec.extra_field_length, EXTRA_FIELD))
  152.             != 0)
  153.         {
  154.             error_in_archive = error;
  155.             if (error > PK_WARN)      /* fatal */
  156.                 return error;
  157.         }
  158.         if (!G.process_all_files) {   /* check if specified on command line */
  159.             unsigned i;
  160.             do_this_file = FALSE;
  161.             for (i = 0; i < G.filespecs; i++)
  162.                 if (match(G.filename, G.pfnames[i], uO.C_flag)) {
  163.                     do_this_file = TRUE;
  164.                     break;       /* found match, so stop looping */
  165.                 }
  166.             if (do_this_file) {  /* check if this is an excluded file */
  167.                 for (i = 0; i < G.xfilespecs; i++)
  168.                     if (match(G.filename, G.pxnames[i], uO.C_flag)) {
  169.                         do_this_file = FALSE;  /* ^-- ignore case in match */
  170.                         break;
  171.                     }
  172.             }
  173.         }
  174.         /*
  175.          * If current file was specified on command line, or if no names were
  176.          * specified, do the listing for this file.  Otherwise, get rid of the
  177.          * file comment and go back for the next file.
  178.          */
  179.         if (G.process_all_files || do_this_file) {
  180. #ifdef OS2DLL
  181.             /* this is used by UzpFileTree() to allow easy processing of lists
  182.              * of zip directory contents */
  183.             if (G.processExternally) {
  184.                 if ((G.processExternally)(G.filename, &G.crec))
  185.                     break;
  186.                 ++members;
  187.             } else {
  188. #endif
  189. #ifdef OS2_EAS
  190.             {
  191.                 uch *ef_ptr = G.extra_field;
  192.                 int ef_size, ef_len = G.crec.extra_field_length;
  193.                 ea_size = acl_size = 0;
  194.                 while (ef_len >= EB_HEADSIZE) {
  195.                     ef_size = makeword(&ef_ptr[EB_LEN]);
  196.                     switch (makeword(&ef_ptr[EB_ID])) {
  197.                         case EF_OS2:
  198.                             ea_size = makelong(&ef_ptr[EB_HEADSIZE]);
  199.                             break;
  200.                         case EF_ACL:
  201.                             acl_size = makelong(&ef_ptr[EB_HEADSIZE]);
  202.                             break;
  203.                     }
  204.                     ef_ptr += (ef_size + EB_HEADSIZE);
  205.                     ef_len -= (ef_size + EB_HEADSIZE);
  206.                 }
  207.             }
  208. #endif
  209. #ifdef USE_EF_UT_TIME
  210.             if (G.extra_field &&
  211. #ifdef IZ_CHECK_TZ
  212.                 G.tz_is_valid &&
  213. #endif
  214.                 (ef_scan_for_izux(G.extra_field, G.crec.extra_field_length, 1,
  215.                                   G.crec.last_mod_dos_datetime, &z_utime, NULL)
  216.                  & EB_UT_FL_MTIME))
  217.             {
  218.                 TIMET_TO_NATIVE(z_utime.mtime)   /* NOP unless MSC 7.0, Mac */
  219.                 t = localtime(&(z_utime.mtime));
  220.             } else
  221.                 t = (struct tm *)NULL;
  222.             if (t != (struct tm *)NULL) {
  223.                 mo = (unsigned)(t->tm_mon + 1);
  224.                 dy = (unsigned)(t->tm_mday);
  225.                 yr = (unsigned)(t->tm_year % 100);
  226.                 hh = (unsigned)(t->tm_hour);
  227.                 mm = (unsigned)(t->tm_min);
  228.             } else
  229. #endif /* USE_EF_UT_TIME */
  230.             {
  231.                 yr = ((((unsigned)(G.crec.last_mod_dos_datetime >> 25) & 0x7f)
  232.                        + 80) % (unsigned)100);
  233.                 mo = ((unsigned)(G.crec.last_mod_dos_datetime >> 21) & 0x0f);
  234.                 dy = ((unsigned)(G.crec.last_mod_dos_datetime >> 16) & 0x1f);
  235.                 hh = (((unsigned)G.crec.last_mod_dos_datetime >> 11) & 0x1f);
  236.                 mm = (((unsigned)G.crec.last_mod_dos_datetime >> 5) & 0x3f);
  237.             }
  238.             /* permute date so it displays according to nat'l convention
  239.              * ('methnum' is not yet set, it is used as temporary buffer) */
  240.             switch (date_format) {
  241.                 case DF_YMD:
  242.                     methnum = (unsigned)mo;
  243.                     mo = yr; yr = dy; dy = (ush)methnum;
  244.                     break;
  245.                 case DF_DMY:
  246.                     methnum = (unsigned)mo;
  247.                     mo = dy; dy = (ush)methnum;
  248.             }
  249.             csiz = G.crec.csize;
  250.             if (G.crec.general_purpose_bit_flag & 1)
  251.                 csiz -= 12;   /* if encrypted, don't count encryption header */
  252.             if ((cfactor = ratio(G.crec.ucsize, csiz)) < 0) {
  253. #ifndef WINDLL
  254.                 sgn = '-';
  255. #endif
  256.                 cfactor = (-cfactor + 5) / 10;
  257.             } else {
  258. #ifndef WINDLL
  259.                 sgn = ' ';
  260. #endif
  261.                 cfactor = (cfactor + 5) / 10;
  262.             }
  263.             methnum = MIN(G.crec.compression_method, NUM_METHODS);
  264.             zfstrcpy(methbuf, method[methnum]);
  265.             if (methnum == DEFLATED) {
  266.                 methbuf[5] = dtype[(G.crec.general_purpose_bit_flag>>1) & 3];
  267.             } else if (methnum >= NUM_METHODS) {
  268.                 sprintf(&methbuf[4], "%03u", G.crec.compression_method);
  269.             }
  270. #if 0       /* GRR/Euro:  add this? */
  271. #if defined(DOS_FLX_OS2_W32) || defined(UNIX)
  272.             for (p = G.filename;  *p;  ++p)
  273.                 if (!isprint(*p))
  274.                     *p = '?';  /* change non-printable chars to '?' */
  275. #endif /* DOS_FLX_OS2_W32 || UNIX */
  276. #endif /* 0 */
  277. #ifdef WINDLL
  278.             /* send data to application for formatting and printing */
  279.             (*G.lpUserFunctions->SendApplicationMessage)(G.crec.ucsize, csiz,
  280.               (ush)cfactor, mo, dy, yr, hh, mm,
  281.               (char)(G.pInfo->lcflag ? '^' : ' '),
  282.               (LPSTR)fnfilter(G.filename, slide), (LPSTR)methbuf, G.crec.crc32,
  283.               (char)((G.crec.general_purpose_bit_flag & 1) ? 'E' : ' '));
  284. #else /* !WINDLL */
  285.             if (cfactor == 100)
  286.                 sprintf(cfactorstr, LoadFarString(CompFactor100));
  287.             else
  288.                 sprintf(cfactorstr, LoadFarString(CompFactorStr), sgn, cfactor);
  289.             if (longhdr)
  290.                 Info(slide, 0, ((char *)slide, LoadFarString(LongHdrStats),
  291.                   G.crec.ucsize, methbuf, csiz, cfactorstr, mo, dy,
  292.                   yr, hh, mm, G.crec.crc32, (G.pInfo->lcflag? '^':' ')));
  293.             else
  294. #ifdef OS2_EAS
  295.                 Info(slide, 0, ((char *)slide, LoadFarString(ShortHdrStats),
  296.                   G.crec.ucsize, ea_size, acl_size,
  297.                   mo, dy, yr, hh, mm, (G.pInfo->lcflag? '^':' ')));
  298. #else
  299.                 Info(slide, 0, ((char *)slide, LoadFarString(ShortHdrStats),
  300.                   G.crec.ucsize,
  301.                   mo, dy, yr, hh, mm, (G.pInfo->lcflag? '^':' ')));
  302. #endif
  303.             fnprint(__G);
  304. #endif /* ?WINDLL */
  305.             if ((error = do_string(__G__ G.crec.file_comment_length,
  306.                                    QCOND? DISPL_8 : SKIP)) != 0)
  307.             {
  308.                 error_in_archive = error;  /* might be just warning */
  309.                 if (error > PK_WARN)       /* fatal */
  310.                     return error;
  311.             }
  312.             tot_ucsize += G.crec.ucsize;
  313.             tot_csize += csiz;
  314.             ++members;
  315. #ifdef OS2_EAS
  316.             if (ea_size) {
  317.                 tot_easize += ea_size;
  318.                 ++tot_eafiles;
  319.             }
  320.             if (acl_size) {
  321.                 tot_aclsize += acl_size;
  322.                 ++tot_aclfiles;
  323.             }
  324. #endif
  325. #ifdef OS2DLL
  326.             } /* end of "if (G.processExternally) {...} else {..." */
  327. #endif
  328.         } else {        /* not listing this file */
  329.             SKIP_(G.crec.file_comment_length)
  330.         }
  331.     } /* end for-loop (j: files in central directory) */
  332. /*---------------------------------------------------------------------------
  333.     Print footer line and totals (compressed size, uncompressed size, number
  334.     of members in zipfile).
  335.   ---------------------------------------------------------------------------*/
  336.     if (uO.qflag < 2
  337. #ifdef OS2DLL
  338.                      && !G.processExternally
  339. #endif
  340.                                             ) {
  341.         if ((cfactor = ratio(tot_ucsize, tot_csize)) < 0) {
  342. #ifndef WINDLL
  343.             sgn = '-';
  344. #endif
  345.             cfactor = (-cfactor + 5) / 10;
  346.         } else {
  347. #ifndef WINDLL
  348.             sgn = ' ';
  349. #endif
  350.             cfactor = (cfactor + 5) / 10;
  351.         }
  352. #ifdef WINDLL
  353.         /* pass the totals back to the calling application */
  354.         G.lpUserFunctions->TotalSizeComp = tot_csize;
  355.         G.lpUserFunctions->TotalSize = tot_ucsize;
  356.         G.lpUserFunctions->CompFactor = cfactor;
  357.         G.lpUserFunctions->NumMembers = members;
  358. #else /* !WINDLL */
  359.         if (cfactor == 100)
  360.             sprintf(cfactorstr, LoadFarString(CompFactor100));
  361.         else
  362.             sprintf(cfactorstr, LoadFarString(CompFactorStr), sgn, cfactor);
  363.         if (longhdr) {
  364.             Info(slide, 0, ((char *)slide, LoadFarString(LongFileTrailer),
  365.               tot_ucsize, tot_csize, cfactorstr, members, members==1? "":"s"));
  366. #ifdef OS2_EAS
  367.             if (tot_easize || tot_aclsize)
  368.                 Info(slide, 0, ((char *)slide, "n"));
  369.             if (tot_eafiles && tot_easize)
  370.                 Info(slide, 0, ((char *)slide, LoadFarString(OS2ExtAttrTrailer),
  371.                   tot_eafiles, tot_eafiles == 1? " has" : "s have a total of",
  372.                   tot_easize));
  373.             if (tot_aclfiles && tot_aclsize)
  374.                 Info(slide, 0, ((char *)slide, LoadFarString(OS2ACLTrailer),
  375.                   tot_aclfiles, tot_aclfiles == 1? " has" : "s have a total of",
  376.                   tot_aclsize));
  377. #endif /* OS2_EAS */
  378.         } else
  379. #ifdef OS2_EAS
  380.             Info(slide, 0, ((char *)slide, LoadFarString(ShortFileTrailer),
  381.               tot_ucsize, tot_easize, tot_aclsize, members, members == 1?
  382.               "" : "s"));
  383. #else
  384.             Info(slide, 0, ((char *)slide, LoadFarString(ShortFileTrailer),
  385.               tot_ucsize, members, members == 1? "" : "s"));
  386. #endif /* OS2_EAS */
  387. #endif /* ?WINDLL */
  388.     }
  389. /*---------------------------------------------------------------------------
  390.     Double check that we're back at the end-of-central-directory record.
  391.   ---------------------------------------------------------------------------*/
  392.     if (readbuf(__G__ G.sig, 4) == 0)  /* disk error? */
  393.         return PK_EOF;
  394.     if (strncmp(G.sig, end_central_sig, 4)) {   /* just to make sure again */
  395.         Info(slide, 0x401, ((char *)slide, LoadFarString(EndSigMsg)));
  396.         error_in_archive = PK_WARN;   /* didn't find sig */
  397.     }
  398.     if (members == 0 && error_in_archive <= PK_WARN)
  399.         error_in_archive = PK_FIND;
  400.     return error_in_archive;
  401. } /* end function list_files() */
  402. #ifdef TIMESTAMP
  403. /************************/
  404. /* Function fn_is_dir() */
  405. /************************/
  406. static int fn_is_dir(__G)    /* returns TRUE if G.filename is directory */
  407.     __GDEF
  408. {
  409.     extent fn_len = strlen(G.filename);
  410.     register char   endc;
  411.     return  fn_len > 0 &&
  412.             ((endc = G.filename[fn_len-1]) == '/' ||
  413.              (G.pInfo->hostnum == FS_FAT_ && !strchr(G.filename, '/') &&
  414.               endc == '\'));
  415. }
  416. /*****************************/
  417. /* Function get_time_stamp() */
  418. /*****************************/
  419. int get_time_stamp(__G__ last_modtime, nmember)  /* return PK-type error code */
  420.     __GDEF
  421.     time_t *last_modtime;
  422.     unsigned *nmember;
  423. {
  424.     int do_this_file=FALSE, error, error_in_archive=PK_COOL;
  425.     unsigned j;
  426. #ifdef USE_EF_UT_TIME
  427.     iztimes z_utime;
  428. #endif
  429.     min_info info;
  430. /*---------------------------------------------------------------------------
  431.     Unlike extract_or_test_files() but like list_files(), this function works
  432.     on information in the central directory alone.  Thus we have a single,
  433.     large loop through the entire directory, searching for the latest time
  434.     stamp.
  435.   ---------------------------------------------------------------------------*/
  436.     *last_modtime = 0L;         /* assuming no zipfile data older than 1970 */
  437.     *nmember = 0;
  438.     G.pInfo = &info;
  439.     for (j = 0; j++ < (unsigned)G.ecrec.total_entries_central_dir;) {
  440.         if (readbuf(__G__ G.sig, 4) == 0)
  441.             return PK_EOF;
  442.         if (strncmp(G.sig, central_hdr_sig, 4)) {  /* just to make sure */
  443.             Info(slide, 0x401, ((char *)slide, LoadFarString(CentSigMsg), j));
  444.             Info(slide, 0x401, ((char *)slide, LoadFarString(ReportMsg)));
  445.             return PK_BADERR;
  446.         }
  447.         /* process_cdir_file_hdr() sets pInfo->lcflag: */
  448.         if ((error = process_cdir_file_hdr(__G)) != PK_COOL)
  449.             return error;       /* only PK_EOF defined */
  450.         if ((error = do_string(__G__ G.crec.filename_length, DS_FN)) != PK_OK)
  451.         {        /*  ^-- (uses pInfo->lcflag) */
  452.             error_in_archive = error;
  453.             if (error > PK_WARN)   /* fatal:  can't continue */
  454.                 return error;
  455.         }
  456.         if (G.extra_field != (uch *)NULL) {
  457.             free(G.extra_field);
  458.             G.extra_field = (uch *)NULL;
  459.         }
  460.         if ((error = do_string(__G__ G.crec.extra_field_length, EXTRA_FIELD))
  461.             != 0)
  462.         {
  463.             error_in_archive = error;
  464.             if (error > PK_WARN)      /* fatal */
  465.                 return error;
  466.         }
  467.         if (!G.process_all_files) {   /* check if specified on command line */
  468.             unsigned i;
  469.             do_this_file = FALSE;
  470.             for (i = 0; i < G.filespecs; i++)
  471.                 if (match(G.filename, G.pfnames[i], uO.C_flag)) {
  472.                     do_this_file = TRUE;
  473.                     break;       /* found match, so stop looping */
  474.                 }
  475.             if (do_this_file) {  /* check if this is an excluded file */
  476.                 for (i = 0; i < G.xfilespecs; i++)
  477.                     if (match(G.filename, G.pxnames[i], uO.C_flag)) {
  478.                         do_this_file = FALSE;  /* ^-- ignore case in match */
  479.                         break;
  480.                     }
  481.             }
  482.         }
  483.         /* If current file was specified on command line, or if no names were
  484.          * specified, check the time for this file.  Either way, get rid of the
  485.          * file comment and go back for the next file.
  486.          * Directory entries are always ignored, to stay compatible with both
  487.          * Zip and PKZIP.
  488.          */
  489.         if ((G.process_all_files || do_this_file) && !fn_is_dir(__G)) {
  490. #ifdef USE_EF_UT_TIME
  491.             if (G.extra_field &&
  492. #ifdef IZ_CHECK_TZ
  493.                 G.tz_is_valid &&
  494. #endif
  495.                 (ef_scan_for_izux(G.extra_field, G.crec.extra_field_length, 1,
  496.                                   G.crec.last_mod_dos_datetime, &z_utime, NULL)
  497.                  & EB_UT_FL_MTIME))
  498.             {
  499.                 if (*last_modtime < z_utime.mtime)
  500.                     *last_modtime = z_utime.mtime;
  501.             } else
  502. #endif /* USE_EF_UT_TIME */
  503.             {
  504.                 time_t modtime = dos_to_unix_time(G.crec.last_mod_dos_datetime);
  505.                 if (*last_modtime < modtime)
  506.                     *last_modtime = modtime;
  507.             }
  508.             ++*nmember;
  509.         }
  510.         SKIP_(G.crec.file_comment_length)
  511.     } /* end for-loop (j: files in central directory) */
  512. /*---------------------------------------------------------------------------
  513.     Double check that we're back at the end-of-central-directory record.
  514.   ---------------------------------------------------------------------------*/
  515.     if (readbuf(__G__ G.sig, 4) == 0)
  516.         return PK_EOF;
  517.     if (strncmp(G.sig, end_central_sig, 4)) {   /* just to make sure again */
  518.         Info(slide, 0x401, ((char *)slide, LoadFarString(EndSigMsg)));
  519.         error_in_archive = PK_WARN;
  520.     }
  521.     if (*nmember == 0 && error_in_archive <= PK_WARN)
  522.         error_in_archive = PK_FIND;
  523.     return error_in_archive;
  524. } /* end function get_time_stamp() */
  525. #endif /* TIMESTAMP */
  526. /********************/
  527. /* Function ratio() */    /* also used by ZipInfo routines */
  528. /********************/
  529. int ratio(uc, c)
  530.     ulg uc, c;
  531. {
  532.     ulg denom;
  533.     if (uc == 0)
  534.         return 0;
  535.     if (uc > 2000000L) {    /* risk signed overflow if multiply numerator */
  536.         denom = uc / 1000L;
  537.         return ((uc >= c) ?
  538.             (int) ((uc-c + (denom>>1)) / denom) :
  539.           -((int) ((c-uc + (denom>>1)) / denom)));
  540.     } else {             /* ^^^^^^^^ rounding */
  541.         denom = uc;
  542.         return ((uc >= c) ?
  543.             (int) ((1000L*(uc-c) + (denom>>1)) / denom) :
  544.           -((int) ((1000L*(c-uc) + (denom>>1)) / denom)));
  545.     }                            /* ^^^^^^^^ rounding */
  546. }
  547. /************************/
  548. /*  Function fnprint()  */    /* also used by ZipInfo routines */
  549. /************************/
  550. void fnprint(__G)    /* print filename (after filtering) and newline */
  551.     __GDEF
  552. {
  553.     char *name = fnfilter(G.filename, slide);
  554.     (*G.message)((zvoid *)&G, (uch *)name, (ulg)strlen(name), 0);
  555.     (*G.message)((zvoid *)&G, (uch *)"n", 1L, 0);
  556. } /* end function fnprint() */