unzip.c
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:35k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* unzip.c -- IO on .zip files using zlib 
  2.    Version 0.15 beta, Mar 19th, 1998,
  3.    Read unzip.h for more info
  4. */
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. #include <string.h>
  8. #include "zlib.h"
  9. #include "unzip.h"
  10. #ifdef STDC
  11. #  include <stddef.h>
  12. #  include <string.h>
  13. #  include <stdlib.h>
  14. #endif
  15. #ifdef NO_ERRNO_H
  16.     extern int errno;
  17. #else
  18. #   include <errno.h>
  19. #endif
  20. #ifndef local
  21. #  define local static
  22. #endif
  23. /* compile with -Dlocal if your debugger can't find static symbols */
  24. #if !defined(unix) && !defined(CASESENSITIVITYDEFAULT_YES) && 
  25.                       !defined(CASESENSITIVITYDEFAULT_NO)
  26. #define CASESENSITIVITYDEFAULT_NO
  27. #endif
  28. #ifndef UNZ_BUFSIZE
  29. #define UNZ_BUFSIZE (16384)
  30. #endif
  31. #ifndef UNZ_MAXFILENAMEINZIP
  32. #define UNZ_MAXFILENAMEINZIP (256)
  33. #endif
  34. #ifndef ALLOC
  35. # define ALLOC(size) (malloc(size))
  36. #endif
  37. #ifndef TRYFREE
  38. # define TRYFREE(p) {if (p) free(p);}
  39. #endif
  40. #define SIZECENTRALDIRITEM (0x2e)
  41. #define SIZEZIPLOCALHEADER (0x1e)
  42. /* I've found an old Unix (a SunOS 4.1.3_U1) without all SEEK_* defined.... */
  43. #ifndef SEEK_CUR
  44. #define SEEK_CUR    1
  45. #endif
  46. #ifndef SEEK_END
  47. #define SEEK_END    2
  48. #endif
  49. #ifndef SEEK_SET
  50. #define SEEK_SET    0
  51. #endif
  52. const char unz_copyright[] =
  53.    " unzip 0.15 Copyright 1998 Gilles Vollant ";
  54. /* unz_file_info_interntal contain internal info about a file in zipfile*/
  55. typedef struct unz_file_info_internal_s
  56. {
  57.     uLong offset_curfile;/* relative offset of local header 4 bytes */
  58. } unz_file_info_internal;
  59. /* file_in_zip_read_info_s contain internal information about a file in zipfile,
  60.     when reading and decompress it */
  61. typedef struct
  62. {
  63. char  *read_buffer;         /* internal buffer for compressed data */
  64. z_stream stream;            /* zLib stream structure for inflate */
  65. uLong pos_in_zipfile;       /* position in byte on the zipfile, for fseek*/
  66. uLong stream_initialised;   /* flag set if stream structure is initialised*/
  67. uLong offset_local_extrafield;/* offset of the local extra field */
  68. uInt  size_local_extrafield;/* size of the local extra field */
  69. uLong pos_local_extrafield;   /* position in the local extra field in read*/
  70. uLong crc32;                /* crc32 of all data uncompressed */
  71. uLong crc32_wait;           /* crc32 we must obtain after decompress all */
  72. uLong rest_read_compressed; /* number of byte to be decompressed */
  73. uLong rest_read_uncompressed;/*number of byte to be obtained after decomp*/
  74. FILE* file;                 /* io structore of the zipfile */
  75. uLong compression_method;   /* compression method (0==store) */
  76. uLong byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/
  77. } file_in_zip_read_info_s;
  78. /* unz_s contain internal information about the zipfile
  79. */
  80. typedef struct
  81. {
  82. FILE* file;                 /* io structore of the zipfile */
  83. unz_global_info gi;       /* public global information */
  84. uLong byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/
  85. uLong num_file;             /* number of the current file in the zipfile*/
  86. uLong pos_in_central_dir;   /* pos of the current file in the central dir*/
  87. uLong current_file_ok;      /* flag about the usability of the current file*/
  88. uLong central_pos;          /* position of the beginning of the central dir*/
  89. uLong size_central_dir;     /* size of the central directory  */
  90. uLong offset_central_dir;   /* offset of start of central directory with
  91.    respect to the starting disk number */
  92. unz_file_info cur_file_info; /* public info about the current file in zip*/
  93. unz_file_info_internal cur_file_info_internal; /* private info about it*/
  94.     file_in_zip_read_info_s* pfile_in_zip_read; /* structure about the current
  95.                                     file if we are decompressing it */
  96. } unz_s;
  97. /* ===========================================================================
  98.      Read a byte from a gz_stream; update next_in and avail_in. Return EOF
  99.    for end of file.
  100.    IN assertion: the stream s has been sucessfully opened for reading.
  101. */
  102. local int unzlocal_getByte(fin,pi)
  103. FILE *fin;
  104. int *pi;
  105. {
  106.     unsigned char c;
  107. int err = fread(&c, 1, 1, fin);
  108.     if (err==1)
  109.     {
  110.         *pi = (int)c;
  111.         return UNZ_OK;
  112.     }
  113.     else
  114.     {
  115.         if (ferror(fin)) 
  116.             return UNZ_ERRNO;
  117.         else
  118.             return UNZ_EOF;
  119.     }
  120. }
  121. /* ===========================================================================
  122.    Reads a long in LSB order from the given gz_stream. Sets 
  123. */
  124. local int unzlocal_getShort (fin,pX)
  125. FILE* fin;
  126.     uLong *pX;
  127. {
  128.     uLong x ;
  129.     int i;
  130.     int err;
  131.     err = unzlocal_getByte(fin,&i);
  132.     x = (uLong)i;
  133.     
  134.     if (err==UNZ_OK)
  135.         err = unzlocal_getByte(fin,&i);
  136.     x += ((uLong)i)<<8;
  137.    
  138.     if (err==UNZ_OK)
  139.         *pX = x;
  140.     else
  141.         *pX = 0;
  142.     return err;
  143. }
  144. local int unzlocal_getLong (fin,pX)
  145. FILE* fin;
  146.     uLong *pX;
  147. {
  148.     uLong x ;
  149.     int i;
  150.     int err;
  151.     err = unzlocal_getByte(fin,&i);
  152.     x = (uLong)i;
  153.     
  154.     if (err==UNZ_OK)
  155.         err = unzlocal_getByte(fin,&i);
  156.     x += ((uLong)i)<<8;
  157.     if (err==UNZ_OK)
  158.         err = unzlocal_getByte(fin,&i);
  159.     x += ((uLong)i)<<16;
  160.     if (err==UNZ_OK)
  161.         err = unzlocal_getByte(fin,&i);
  162.     x += ((uLong)i)<<24;
  163.    
  164.     if (err==UNZ_OK)
  165.         *pX = x;
  166.     else
  167.         *pX = 0;
  168.     return err;
  169. }
  170. /* My own strcmpi / strcasecmp */
  171. local int strcmpcasenosensitive_internal (fileName1,fileName2)
  172. const char* fileName1;
  173. const char* fileName2;
  174. {
  175. for (;;)
  176. {
  177. char c1=*(fileName1++);
  178. char c2=*(fileName2++);
  179. if ((c1>='a') && (c1<='z'))
  180. c1 -= 0x20;
  181. if ((c2>='a') && (c2<='z'))
  182. c2 -= 0x20;
  183. if (c1=='')
  184. return ((c2=='') ? 0 : -1);
  185. if (c2=='')
  186. return 1;
  187. if (c1<c2)
  188. return -1;
  189. if (c1>c2)
  190. return 1;
  191. }
  192. }
  193. #ifdef  CASESENSITIVITYDEFAULT_NO
  194. #define CASESENSITIVITYDEFAULTVALUE 2
  195. #else
  196. #define CASESENSITIVITYDEFAULTVALUE 1
  197. #endif
  198. #ifndef STRCMPCASENOSENTIVEFUNCTION
  199. #define STRCMPCASENOSENTIVEFUNCTION strcmpcasenosensitive_internal
  200. #endif
  201. /* 
  202.    Compare two filename (fileName1,fileName2).
  203.    If iCaseSenisivity = 1, comparision is case sensitivity (like strcmp)
  204.    If iCaseSenisivity = 2, comparision is not case sensitivity (like strcmpi
  205.                                                                 or strcasecmp)
  206.    If iCaseSenisivity = 0, case sensitivity is defaut of your operating system
  207.         (like 1 on Unix, 2 on Windows)
  208. */
  209. extern int ZEXPORT unzStringFileNameCompare (fileName1,fileName2,iCaseSensitivity)
  210. const char* fileName1;
  211. const char* fileName2;
  212. int iCaseSensitivity;
  213. {
  214. if (iCaseSensitivity==0)
  215. iCaseSensitivity=CASESENSITIVITYDEFAULTVALUE;
  216. if (iCaseSensitivity==1)
  217. return strcmp(fileName1,fileName2);
  218. return STRCMPCASENOSENTIVEFUNCTION(fileName1,fileName2);
  219. #define BUFREADCOMMENT (0x400)
  220. /*
  221.   Locate the Central directory of a zipfile (at the end, just before
  222.     the global comment)
  223. */
  224. local uLong unzlocal_SearchCentralDir(fin)
  225. FILE *fin;
  226. {
  227. unsigned char* buf;
  228. uLong uSizeFile;
  229. uLong uBackRead;
  230. uLong uMaxBack=0xffff; /* maximum size of global comment */
  231. uLong uPosFound=0;
  232. if (fseek(fin,0,SEEK_END) != 0)
  233. return 0;
  234. uSizeFile = ftell( fin );
  235. if (uMaxBack>uSizeFile)
  236. uMaxBack = uSizeFile;
  237. buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
  238. if (buf==NULL)
  239. return 0;
  240. uBackRead = 4;
  241. while (uBackRead<uMaxBack)
  242. {
  243. uLong uReadSize,uReadPos ;
  244. int i;
  245. if (uBackRead+BUFREADCOMMENT>uMaxBack) 
  246. uBackRead = uMaxBack;
  247. else
  248. uBackRead+=BUFREADCOMMENT;
  249. uReadPos = uSizeFile-uBackRead ;
  250. uReadSize = ((BUFREADCOMMENT+4) < (uSizeFile-uReadPos)) ? 
  251.                      (BUFREADCOMMENT+4) : (uSizeFile-uReadPos);
  252. if (fseek(fin,uReadPos,SEEK_SET)!=0)
  253. break;
  254. if (fread(buf,(uInt)uReadSize,1,fin)!=1)
  255. break;
  256.                 for (i=(int)uReadSize-3; (i--)>0;)
  257. if (((*(buf+i))==0x50) && ((*(buf+i+1))==0x4b) && 
  258. ((*(buf+i+2))==0x05) && ((*(buf+i+3))==0x06))
  259. {
  260. uPosFound = uReadPos+i;
  261. break;
  262. }
  263. if (uPosFound!=0)
  264. break;
  265. }
  266. TRYFREE(buf);
  267. return uPosFound;
  268. }
  269. /*
  270.   Open a Zip file. path contain the full pathname (by example,
  271.      on a Windows NT computer "c:\test\zlib109.zip" or on an Unix computer
  272.  "zlib/zlib109.zip".
  273.  If the zipfile cannot be opened (file don't exist or in not valid), the
  274.    return value is NULL.
  275.      Else, the return value is a unzFile Handle, usable with other function
  276.    of this unzip package.
  277. */
  278. extern unzFile ZEXPORT unzOpen (path)
  279. const char *path;
  280. {
  281. unz_s us;
  282. unz_s *s;
  283. uLong central_pos,uL;
  284. FILE * fin ;
  285. uLong number_disk;          /* number of the current dist, used for 
  286.    spaning ZIP, unsupported, always 0*/
  287. uLong number_disk_with_CD;  /* number the the disk with central dir, used
  288.    for spaning ZIP, unsupported, always 0*/
  289. uLong number_entry_CD;      /* total number of entries in
  290.                                the central dir 
  291.                                (same than number_entry on nospan) */
  292. int err=UNZ_OK;
  293.     if (unz_copyright[0]!=' ')
  294.         return NULL;
  295.     fin=fopen(path,"rb");
  296. if (fin==NULL)
  297. return NULL;
  298. central_pos = unzlocal_SearchCentralDir(fin);
  299. if (central_pos==0)
  300. err=UNZ_ERRNO;
  301. if (fseek(fin,central_pos,SEEK_SET)!=0)
  302. err=UNZ_ERRNO;
  303. /* the signature, already checked */
  304. if (unzlocal_getLong(fin,&uL)!=UNZ_OK)
  305. err=UNZ_ERRNO;
  306. /* number of this disk */
  307. if (unzlocal_getShort(fin,&number_disk)!=UNZ_OK)
  308. err=UNZ_ERRNO;
  309. /* number of the disk with the start of the central directory */
  310. if (unzlocal_getShort(fin,&number_disk_with_CD)!=UNZ_OK)
  311. err=UNZ_ERRNO;
  312. /* total number of entries in the central dir on this disk */
  313. if (unzlocal_getShort(fin,&us.gi.number_entry)!=UNZ_OK)
  314. err=UNZ_ERRNO;
  315. /* total number of entries in the central dir */
  316. if (unzlocal_getShort(fin,&number_entry_CD)!=UNZ_OK)
  317. err=UNZ_ERRNO;
  318. if ((number_entry_CD!=us.gi.number_entry) ||
  319. (number_disk_with_CD!=0) ||
  320. (number_disk!=0))
  321. err=UNZ_BADZIPFILE;
  322. /* size of the central directory */
  323. if (unzlocal_getLong(fin,&us.size_central_dir)!=UNZ_OK)
  324. err=UNZ_ERRNO;
  325. /* offset of start of central directory with respect to the 
  326.       starting disk number */
  327. if (unzlocal_getLong(fin,&us.offset_central_dir)!=UNZ_OK)
  328. err=UNZ_ERRNO;
  329. /* zipfile comment length */
  330. if (unzlocal_getShort(fin,&us.gi.size_comment)!=UNZ_OK)
  331. err=UNZ_ERRNO;
  332. if ((central_pos<us.offset_central_dir+us.size_central_dir) && 
  333. (err==UNZ_OK))
  334. err=UNZ_BADZIPFILE;
  335. if (err!=UNZ_OK)
  336. {
  337. fclose(fin);
  338. return NULL;
  339. }
  340. us.file=fin;
  341. us.byte_before_the_zipfile = central_pos -
  342.                     (us.offset_central_dir+us.size_central_dir);
  343. us.central_pos = central_pos;
  344.     us.pfile_in_zip_read = NULL;
  345. s=(unz_s*)ALLOC(sizeof(unz_s));
  346. *s=us;
  347. unzGoToFirstFile((unzFile)s);
  348. return (unzFile)s;
  349. }
  350. /*
  351.   Close a ZipFile opened with unzipOpen.
  352.   If there is files inside the .Zip opened with unzipOpenCurrentFile (see later),
  353.     these files MUST be closed with unzipCloseCurrentFile before call unzipClose.
  354.   return UNZ_OK if there is no problem. */
  355. extern int ZEXPORT unzClose (file)
  356. unzFile file;
  357. {
  358. unz_s* s;
  359. if (file==NULL)
  360. return UNZ_PARAMERROR;
  361. s=(unz_s*)file;
  362.     if (s->pfile_in_zip_read!=NULL)
  363.         unzCloseCurrentFile(file);
  364. fclose(s->file);
  365. TRYFREE(s);
  366. return UNZ_OK;
  367. }
  368. /*
  369.   Write info about the ZipFile in the *pglobal_info structure.
  370.   No preparation of the structure is needed
  371.   return UNZ_OK if there is no problem. */
  372. extern int ZEXPORT unzGetGlobalInfo (file,pglobal_info)
  373. unzFile file;
  374. unz_global_info *pglobal_info;
  375. {
  376. unz_s* s;
  377. if (file==NULL)
  378. return UNZ_PARAMERROR;
  379. s=(unz_s*)file;
  380. *pglobal_info=s->gi;
  381. return UNZ_OK;
  382. }
  383. /*
  384.    Translate date/time from Dos format to tm_unz (readable more easilty)
  385. */
  386. local void unzlocal_DosDateToTmuDate (ulDosDate, ptm)
  387.     uLong ulDosDate;
  388.     tm_unz* ptm;
  389. {
  390.     uLong uDate;
  391.     uDate = (uLong)(ulDosDate>>16);
  392.     ptm->tm_mday = (uInt)(uDate&0x1f) ;
  393.     ptm->tm_mon =  (uInt)((((uDate)&0x1E0)/0x20)-1) ;
  394.     ptm->tm_year = (uInt)(((uDate&0x0FE00)/0x0200)+1980) ;
  395.     ptm->tm_hour = (uInt) ((ulDosDate &0xF800)/0x800);
  396.     ptm->tm_min =  (uInt) ((ulDosDate&0x7E0)/0x20) ;
  397.     ptm->tm_sec =  (uInt) (2*(ulDosDate&0x1f)) ;
  398. }
  399. /*
  400.   Get Info about the current file in the zipfile, with internal only info
  401. */
  402. local int unzlocal_GetCurrentFileInfoInternal OF((unzFile file,
  403.                                                   unz_file_info *pfile_info,
  404.                                                   unz_file_info_internal 
  405.                                                   *pfile_info_internal,
  406.                                                   char *szFileName,
  407.   uLong fileNameBufferSize,
  408.                                                   void *extraField,
  409.   uLong extraFieldBufferSize,
  410.                                                   char *szComment,
  411.   uLong commentBufferSize));
  412. local int unzlocal_GetCurrentFileInfoInternal (file,
  413.                                               pfile_info,
  414.                                               pfile_info_internal,
  415.                                               szFileName, fileNameBufferSize,
  416.                                               extraField, extraFieldBufferSize,
  417.                                               szComment,  commentBufferSize)
  418. unzFile file;
  419. unz_file_info *pfile_info;
  420. unz_file_info_internal *pfile_info_internal;
  421. char *szFileName;
  422. uLong fileNameBufferSize;
  423. void *extraField;
  424. uLong extraFieldBufferSize;
  425. char *szComment;
  426. uLong commentBufferSize;
  427. {
  428. unz_s* s;
  429. unz_file_info file_info;
  430. unz_file_info_internal file_info_internal;
  431. int err=UNZ_OK;
  432. uLong uMagic;
  433. long lSeek=0;
  434. if (file==NULL)
  435. return UNZ_PARAMERROR;
  436. s=(unz_s*)file;
  437. if (fseek(s->file,s->pos_in_central_dir+s->byte_before_the_zipfile,SEEK_SET)!=0)
  438. err=UNZ_ERRNO;
  439. /* we check the magic */
  440. if (err==UNZ_OK)
  441. if (unzlocal_getLong(s->file,&uMagic) != UNZ_OK)
  442. err=UNZ_ERRNO;
  443. else if (uMagic!=0x02014b50)
  444. err=UNZ_BADZIPFILE;
  445. if (unzlocal_getShort(s->file,&file_info.version) != UNZ_OK)
  446. err=UNZ_ERRNO;
  447. if (unzlocal_getShort(s->file,&file_info.version_needed) != UNZ_OK)
  448. err=UNZ_ERRNO;
  449. if (unzlocal_getShort(s->file,&file_info.flag) != UNZ_OK)
  450. err=UNZ_ERRNO;
  451. if (unzlocal_getShort(s->file,&file_info.compression_method) != UNZ_OK)
  452. err=UNZ_ERRNO;
  453. if (unzlocal_getLong(s->file,&file_info.dosDate) != UNZ_OK)
  454. err=UNZ_ERRNO;
  455.     unzlocal_DosDateToTmuDate(file_info.dosDate,&file_info.tmu_date);
  456. if (unzlocal_getLong(s->file,&file_info.crc) != UNZ_OK)
  457. err=UNZ_ERRNO;
  458. if (unzlocal_getLong(s->file,&file_info.compressed_size) != UNZ_OK)
  459. err=UNZ_ERRNO;
  460. if (unzlocal_getLong(s->file,&file_info.uncompressed_size) != UNZ_OK)
  461. err=UNZ_ERRNO;
  462. if (unzlocal_getShort(s->file,&file_info.size_filename) != UNZ_OK)
  463. err=UNZ_ERRNO;
  464. if (unzlocal_getShort(s->file,&file_info.size_file_extra) != UNZ_OK)
  465. err=UNZ_ERRNO;
  466. if (unzlocal_getShort(s->file,&file_info.size_file_comment) != UNZ_OK)
  467. err=UNZ_ERRNO;
  468. if (unzlocal_getShort(s->file,&file_info.disk_num_start) != UNZ_OK)
  469. err=UNZ_ERRNO;
  470. if (unzlocal_getShort(s->file,&file_info.internal_fa) != UNZ_OK)
  471. err=UNZ_ERRNO;
  472. if (unzlocal_getLong(s->file,&file_info.external_fa) != UNZ_OK)
  473. err=UNZ_ERRNO;
  474. if (unzlocal_getLong(s->file,&file_info_internal.offset_curfile) != UNZ_OK)
  475. err=UNZ_ERRNO;
  476. lSeek+=file_info.size_filename;
  477. if ((err==UNZ_OK) && (szFileName!=NULL))
  478. {
  479. uLong uSizeRead ;
  480. if (file_info.size_filename<fileNameBufferSize)
  481. {
  482. *(szFileName+file_info.size_filename)='';
  483. uSizeRead = file_info.size_filename;
  484. }
  485. else
  486. uSizeRead = fileNameBufferSize;
  487. if ((file_info.size_filename>0) && (fileNameBufferSize>0))
  488. if (fread(szFileName,(uInt)uSizeRead,1,s->file)!=1)
  489. err=UNZ_ERRNO;
  490. lSeek -= uSizeRead;
  491. }
  492. if ((err==UNZ_OK) && (extraField!=NULL))
  493. {
  494. uLong uSizeRead ;
  495. if (file_info.size_file_extra<extraFieldBufferSize)
  496. uSizeRead = file_info.size_file_extra;
  497. else
  498. uSizeRead = extraFieldBufferSize;
  499. if (lSeek!=0)
  500. if (fseek(s->file,lSeek,SEEK_CUR)==0)
  501. lSeek=0;
  502. else
  503. err=UNZ_ERRNO;
  504. if ((file_info.size_file_extra>0) && (extraFieldBufferSize>0))
  505. if (fread(extraField,(uInt)uSizeRead,1,s->file)!=1)
  506. err=UNZ_ERRNO;
  507. lSeek += file_info.size_file_extra - uSizeRead;
  508. }
  509. else
  510. lSeek+=file_info.size_file_extra; 
  511. if ((err==UNZ_OK) && (szComment!=NULL))
  512. {
  513. uLong uSizeRead ;
  514. if (file_info.size_file_comment<commentBufferSize)
  515. {
  516. *(szComment+file_info.size_file_comment)='';
  517. uSizeRead = file_info.size_file_comment;
  518. }
  519. else
  520. uSizeRead = commentBufferSize;
  521. if (lSeek!=0)
  522. if (fseek(s->file,lSeek,SEEK_CUR)==0)
  523. lSeek=0;
  524. else
  525. err=UNZ_ERRNO;
  526. if ((file_info.size_file_comment>0) && (commentBufferSize>0))
  527. if (fread(szComment,(uInt)uSizeRead,1,s->file)!=1)
  528. err=UNZ_ERRNO;
  529. lSeek+=file_info.size_file_comment - uSizeRead;
  530. }
  531. else
  532. lSeek+=file_info.size_file_comment;
  533. if ((err==UNZ_OK) && (pfile_info!=NULL))
  534. *pfile_info=file_info;
  535. if ((err==UNZ_OK) && (pfile_info_internal!=NULL))
  536. *pfile_info_internal=file_info_internal;
  537. return err;
  538. }
  539. /*
  540.   Write info about the ZipFile in the *pglobal_info structure.
  541.   No preparation of the structure is needed
  542.   return UNZ_OK if there is no problem.
  543. */
  544. extern int ZEXPORT unzGetCurrentFileInfo (file,
  545.                                                   pfile_info,
  546.                                                   szFileName, fileNameBufferSize,
  547.                                                   extraField, extraFieldBufferSize,
  548.                                                   szComment,  commentBufferSize)
  549. unzFile file;
  550. unz_file_info *pfile_info;
  551. char *szFileName;
  552. uLong fileNameBufferSize;
  553. void *extraField;
  554. uLong extraFieldBufferSize;
  555. char *szComment;
  556. uLong commentBufferSize;
  557. {
  558. return unzlocal_GetCurrentFileInfoInternal(file,pfile_info,NULL,
  559. szFileName,fileNameBufferSize,
  560. extraField,extraFieldBufferSize,
  561. szComment,commentBufferSize);
  562. }
  563. /*
  564.   Set the current file of the zipfile to the first file.
  565.   return UNZ_OK if there is no problem
  566. */
  567. extern int ZEXPORT unzGoToFirstFile (file)
  568. unzFile file;
  569. {
  570. int err=UNZ_OK;
  571. unz_s* s;
  572. if (file==NULL)
  573. return UNZ_PARAMERROR;
  574. s=(unz_s*)file;
  575. s->pos_in_central_dir=s->offset_central_dir;
  576. s->num_file=0;
  577. err=unzlocal_GetCurrentFileInfoInternal(file,&s->cur_file_info,
  578.  &s->cur_file_info_internal,
  579.  NULL,0,NULL,0,NULL,0);
  580. s->current_file_ok = (err == UNZ_OK);
  581. return err;
  582. }
  583. /*
  584.   Set the current file of the zipfile to the next file.
  585.   return UNZ_OK if there is no problem
  586.   return UNZ_END_OF_LIST_OF_FILE if the actual file was the latest.
  587. */
  588. extern int ZEXPORT unzGoToNextFile (file)
  589. unzFile file;
  590. {
  591. unz_s* s;
  592. int err;
  593. if (file==NULL)
  594. return UNZ_PARAMERROR;
  595. s=(unz_s*)file;
  596. if (!s->current_file_ok)
  597. return UNZ_END_OF_LIST_OF_FILE;
  598. if (s->num_file+1==s->gi.number_entry)
  599. return UNZ_END_OF_LIST_OF_FILE;
  600. s->pos_in_central_dir += SIZECENTRALDIRITEM + s->cur_file_info.size_filename +
  601. s->cur_file_info.size_file_extra + s->cur_file_info.size_file_comment ;
  602. s->num_file++;
  603. err = unzlocal_GetCurrentFileInfoInternal(file,&s->cur_file_info,
  604.    &s->cur_file_info_internal,
  605.    NULL,0,NULL,0,NULL,0);
  606. s->current_file_ok = (err == UNZ_OK);
  607. return err;
  608. }
  609. /*
  610.   Try locate the file szFileName in the zipfile.
  611.   For the iCaseSensitivity signification, see unzipStringFileNameCompare
  612.   return value :
  613.   UNZ_OK if the file is found. It becomes the current file.
  614.   UNZ_END_OF_LIST_OF_FILE if the file is not found
  615. */
  616. extern int ZEXPORT unzLocateFile (file, szFileName, iCaseSensitivity)
  617. unzFile file;
  618. const char *szFileName;
  619. int iCaseSensitivity;
  620. {
  621. unz_s* s;
  622. int err;
  623. uLong num_fileSaved;
  624. uLong pos_in_central_dirSaved;
  625. if (file==NULL)
  626. return UNZ_PARAMERROR;
  627.     if (strlen(szFileName)>=UNZ_MAXFILENAMEINZIP)
  628.         return UNZ_PARAMERROR;
  629. s=(unz_s*)file;
  630. if (!s->current_file_ok)
  631. return UNZ_END_OF_LIST_OF_FILE;
  632. num_fileSaved = s->num_file;
  633. pos_in_central_dirSaved = s->pos_in_central_dir;
  634. err = unzGoToFirstFile(file);
  635. while (err == UNZ_OK)
  636. {
  637. char szCurrentFileName[UNZ_MAXFILENAMEINZIP+1];
  638. unzGetCurrentFileInfo(file,NULL,
  639. szCurrentFileName,sizeof(szCurrentFileName)-1,
  640. NULL,0,NULL,0);
  641. if (unzStringFileNameCompare(szCurrentFileName,
  642. szFileName,iCaseSensitivity)==0)
  643. return UNZ_OK;
  644. err = unzGoToNextFile(file);
  645. }
  646. s->num_file = num_fileSaved ;
  647. s->pos_in_central_dir = pos_in_central_dirSaved ;
  648. return err;
  649. }
  650. /*
  651.   Read the local header of the current zipfile
  652.   Check the coherency of the local header and info in the end of central
  653.         directory about this file
  654.   store in *piSizeVar the size of extra info in local header
  655.         (filename and size of extra field data)
  656. */
  657. local int unzlocal_CheckCurrentFileCoherencyHeader (s,piSizeVar,
  658. poffset_local_extrafield,
  659. psize_local_extrafield)
  660. unz_s* s;
  661. uInt* piSizeVar;
  662. uLong *poffset_local_extrafield;
  663. uInt  *psize_local_extrafield;
  664. {
  665. uLong uMagic,uData,uFlags;
  666. uLong size_filename;
  667. uLong size_extra_field;
  668. int err=UNZ_OK;
  669. *piSizeVar = 0;
  670. *poffset_local_extrafield = 0;
  671. *psize_local_extrafield = 0;
  672. if (fseek(s->file,s->cur_file_info_internal.offset_curfile +
  673. s->byte_before_the_zipfile,SEEK_SET)!=0)
  674. return UNZ_ERRNO;
  675. if (err==UNZ_OK)
  676. if (unzlocal_getLong(s->file,&uMagic) != UNZ_OK)
  677. err=UNZ_ERRNO;
  678. else if (uMagic!=0x04034b50)
  679. err=UNZ_BADZIPFILE;
  680. if (unzlocal_getShort(s->file,&uData) != UNZ_OK)
  681. err=UNZ_ERRNO;
  682. /*
  683. else if ((err==UNZ_OK) && (uData!=s->cur_file_info.wVersion))
  684. err=UNZ_BADZIPFILE;
  685. */
  686. if (unzlocal_getShort(s->file,&uFlags) != UNZ_OK)
  687. err=UNZ_ERRNO;
  688. if (unzlocal_getShort(s->file,&uData) != UNZ_OK)
  689. err=UNZ_ERRNO;
  690. else if ((err==UNZ_OK) && (uData!=s->cur_file_info.compression_method))
  691. err=UNZ_BADZIPFILE;
  692.     if ((err==UNZ_OK) && (s->cur_file_info.compression_method!=0) &&
  693.                          (s->cur_file_info.compression_method!=Z_DEFLATED))
  694.         err=UNZ_BADZIPFILE;
  695. if (unzlocal_getLong(s->file,&uData) != UNZ_OK) /* date/time */
  696. err=UNZ_ERRNO;
  697. if (unzlocal_getLong(s->file,&uData) != UNZ_OK) /* crc */
  698. err=UNZ_ERRNO;
  699. else if ((err==UNZ_OK) && (uData!=s->cur_file_info.crc) &&
  700.                       ((uFlags & 8)==0))
  701. err=UNZ_BADZIPFILE;
  702. if (unzlocal_getLong(s->file,&uData) != UNZ_OK) /* size compr */
  703. err=UNZ_ERRNO;
  704. else if ((err==UNZ_OK) && (uData!=s->cur_file_info.compressed_size) &&
  705.   ((uFlags & 8)==0))
  706. err=UNZ_BADZIPFILE;
  707. if (unzlocal_getLong(s->file,&uData) != UNZ_OK) /* size uncompr */
  708. err=UNZ_ERRNO;
  709. else if ((err==UNZ_OK) && (uData!=s->cur_file_info.uncompressed_size) && 
  710.   ((uFlags & 8)==0))
  711. err=UNZ_BADZIPFILE;
  712. if (unzlocal_getShort(s->file,&size_filename) != UNZ_OK)
  713. err=UNZ_ERRNO;
  714. else if ((err==UNZ_OK) && (size_filename!=s->cur_file_info.size_filename))
  715. err=UNZ_BADZIPFILE;
  716. *piSizeVar += (uInt)size_filename;
  717. if (unzlocal_getShort(s->file,&size_extra_field) != UNZ_OK)
  718. err=UNZ_ERRNO;
  719. *poffset_local_extrafield= s->cur_file_info_internal.offset_curfile +
  720. SIZEZIPLOCALHEADER + size_filename;
  721. *psize_local_extrafield = (uInt)size_extra_field;
  722. *piSizeVar += (uInt)size_extra_field;
  723. return err;
  724. }
  725. /*
  726.   Open for reading data the current file in the zipfile.
  727.   If there is no error and the file is opened, the return value is UNZ_OK.
  728. */
  729. extern int ZEXPORT unzOpenCurrentFile (file)
  730. unzFile file;
  731. {
  732. int err=UNZ_OK;
  733. int Store;
  734. uInt iSizeVar;
  735. unz_s* s;
  736. file_in_zip_read_info_s* pfile_in_zip_read_info;
  737. uLong offset_local_extrafield;  /* offset of the local extra field */
  738. uInt  size_local_extrafield;    /* size of the local extra field */
  739. if (file==NULL)
  740. return UNZ_PARAMERROR;
  741. s=(unz_s*)file;
  742. if (!s->current_file_ok)
  743. return UNZ_PARAMERROR;
  744.     if (s->pfile_in_zip_read != NULL)
  745.         unzCloseCurrentFile(file);
  746. if (unzlocal_CheckCurrentFileCoherencyHeader(s,&iSizeVar,
  747. &offset_local_extrafield,&size_local_extrafield)!=UNZ_OK)
  748. return UNZ_BADZIPFILE;
  749. pfile_in_zip_read_info = (file_in_zip_read_info_s*)
  750.     ALLOC(sizeof(file_in_zip_read_info_s));
  751. if (pfile_in_zip_read_info==NULL)
  752. return UNZ_INTERNALERROR;
  753. pfile_in_zip_read_info->read_buffer=(char*)ALLOC(UNZ_BUFSIZE);
  754. pfile_in_zip_read_info->offset_local_extrafield = offset_local_extrafield;
  755. pfile_in_zip_read_info->size_local_extrafield = size_local_extrafield;
  756. pfile_in_zip_read_info->pos_local_extrafield=0;
  757. if (pfile_in_zip_read_info->read_buffer==NULL)
  758. {
  759. TRYFREE(pfile_in_zip_read_info);
  760. return UNZ_INTERNALERROR;
  761. }
  762. pfile_in_zip_read_info->stream_initialised=0;
  763. if ((s->cur_file_info.compression_method!=0) &&
  764.         (s->cur_file_info.compression_method!=Z_DEFLATED))
  765. err=UNZ_BADZIPFILE;
  766. Store = s->cur_file_info.compression_method==0;
  767. pfile_in_zip_read_info->crc32_wait=s->cur_file_info.crc;
  768. pfile_in_zip_read_info->crc32=0;
  769. pfile_in_zip_read_info->compression_method =
  770.             s->cur_file_info.compression_method;
  771. pfile_in_zip_read_info->file=s->file;
  772. pfile_in_zip_read_info->byte_before_the_zipfile=s->byte_before_the_zipfile;
  773.     pfile_in_zip_read_info->stream.total_out = 0;
  774. if (!Store)
  775. {
  776.   pfile_in_zip_read_info->stream.zalloc = (alloc_func)0;
  777.   pfile_in_zip_read_info->stream.zfree = (free_func)0;
  778.   pfile_in_zip_read_info->stream.opaque = (voidpf)0; 
  779.       
  780.   err=inflateInit2(&pfile_in_zip_read_info->stream, -MAX_WBITS);
  781.   if (err == Z_OK)
  782.     pfile_in_zip_read_info->stream_initialised=1;
  783.         /* windowBits is passed < 0 to tell that there is no zlib header.
  784.          * Note that in this case inflate *requires* an extra "dummy" byte
  785.          * after the compressed stream in order to complete decompression and
  786.          * return Z_STREAM_END. 
  787.          * In unzip, i don't wait absolutely Z_STREAM_END because I known the 
  788.          * size of both compressed and uncompressed data
  789.          */
  790. }
  791. pfile_in_zip_read_info->rest_read_compressed = 
  792.             s->cur_file_info.compressed_size ;
  793. pfile_in_zip_read_info->rest_read_uncompressed = 
  794.             s->cur_file_info.uncompressed_size ;
  795. pfile_in_zip_read_info->pos_in_zipfile = 
  796.             s->cur_file_info_internal.offset_curfile + SIZEZIPLOCALHEADER + 
  797.   iSizeVar;
  798. pfile_in_zip_read_info->stream.avail_in = (uInt)0;
  799. s->pfile_in_zip_read = pfile_in_zip_read_info;
  800.     return UNZ_OK;
  801. }
  802. /*
  803.   Read bytes from the current file.
  804.   buf contain buffer where data must be copied
  805.   len the size of buf.
  806.   return the number of byte copied if somes bytes are copied
  807.   return 0 if the end of file was reached
  808.   return <0 with error code if there is an error
  809.     (UNZ_ERRNO for IO error, or zLib error for uncompress error)
  810. */
  811. extern int ZEXPORT unzReadCurrentFile  (file, buf, len)
  812. unzFile file;
  813. voidp buf;
  814. unsigned len;
  815. {
  816. int err=UNZ_OK;
  817. uInt iRead = 0;
  818. unz_s* s;
  819. file_in_zip_read_info_s* pfile_in_zip_read_info;
  820. if (file==NULL)
  821. return UNZ_PARAMERROR;
  822. s=(unz_s*)file;
  823.     pfile_in_zip_read_info=s->pfile_in_zip_read;
  824. if (pfile_in_zip_read_info==NULL)
  825. return UNZ_PARAMERROR;
  826. if ((pfile_in_zip_read_info->read_buffer == NULL))
  827. return UNZ_END_OF_LIST_OF_FILE;
  828. if (len==0)
  829. return 0;
  830. pfile_in_zip_read_info->stream.next_out = (Bytef*)buf;
  831. pfile_in_zip_read_info->stream.avail_out = (uInt)len;
  832. if (len>pfile_in_zip_read_info->rest_read_uncompressed)
  833. pfile_in_zip_read_info->stream.avail_out = 
  834.   (uInt)pfile_in_zip_read_info->rest_read_uncompressed;
  835. while (pfile_in_zip_read_info->stream.avail_out>0)
  836. {
  837. if ((pfile_in_zip_read_info->stream.avail_in==0) &&
  838.             (pfile_in_zip_read_info->rest_read_compressed>0))
  839. {
  840. uInt uReadThis = UNZ_BUFSIZE;
  841. if (pfile_in_zip_read_info->rest_read_compressed<uReadThis)
  842. uReadThis = (uInt)pfile_in_zip_read_info->rest_read_compressed;
  843. if (uReadThis == 0)
  844. return UNZ_EOF;
  845. if (fseek(pfile_in_zip_read_info->file,
  846.                       pfile_in_zip_read_info->pos_in_zipfile + 
  847.                          pfile_in_zip_read_info->byte_before_the_zipfile,SEEK_SET)!=0)
  848. return UNZ_ERRNO;
  849. if (fread(pfile_in_zip_read_info->read_buffer,uReadThis,1,
  850.                          pfile_in_zip_read_info->file)!=1)
  851. return UNZ_ERRNO;
  852. pfile_in_zip_read_info->pos_in_zipfile += uReadThis;
  853. pfile_in_zip_read_info->rest_read_compressed-=uReadThis;
  854. pfile_in_zip_read_info->stream.next_in = 
  855.                 (Bytef*)pfile_in_zip_read_info->read_buffer;
  856. pfile_in_zip_read_info->stream.avail_in = (uInt)uReadThis;
  857. }
  858. if (pfile_in_zip_read_info->compression_method==0)
  859. {
  860. uInt uDoCopy,i ;
  861. if (pfile_in_zip_read_info->stream.avail_out < 
  862.                             pfile_in_zip_read_info->stream.avail_in)
  863. uDoCopy = pfile_in_zip_read_info->stream.avail_out ;
  864. else
  865. uDoCopy = pfile_in_zip_read_info->stream.avail_in ;
  866. for (i=0;i<uDoCopy;i++)
  867. *(pfile_in_zip_read_info->stream.next_out+i) =
  868.                         *(pfile_in_zip_read_info->stream.next_in+i);
  869. pfile_in_zip_read_info->crc32 = crc32(pfile_in_zip_read_info->crc32,
  870. pfile_in_zip_read_info->stream.next_out,
  871. uDoCopy);
  872. pfile_in_zip_read_info->rest_read_uncompressed-=uDoCopy;
  873. pfile_in_zip_read_info->stream.avail_in -= uDoCopy;
  874. pfile_in_zip_read_info->stream.avail_out -= uDoCopy;
  875. pfile_in_zip_read_info->stream.next_out += uDoCopy;
  876. pfile_in_zip_read_info->stream.next_in += uDoCopy;
  877.             pfile_in_zip_read_info->stream.total_out += uDoCopy;
  878. iRead += uDoCopy;
  879. }
  880. else
  881. {
  882. uLong uTotalOutBefore,uTotalOutAfter;
  883. const Bytef *bufBefore;
  884. uLong uOutThis;
  885. int flush=Z_SYNC_FLUSH;
  886. uTotalOutBefore = pfile_in_zip_read_info->stream.total_out;
  887. bufBefore = pfile_in_zip_read_info->stream.next_out;
  888. /*
  889. if ((pfile_in_zip_read_info->rest_read_uncompressed ==
  890.          pfile_in_zip_read_info->stream.avail_out) &&
  891. (pfile_in_zip_read_info->rest_read_compressed == 0))
  892. flush = Z_FINISH;
  893. */
  894. err=inflate(&pfile_in_zip_read_info->stream,flush);
  895. uTotalOutAfter = pfile_in_zip_read_info->stream.total_out;
  896. uOutThis = uTotalOutAfter-uTotalOutBefore;
  897. pfile_in_zip_read_info->crc32 = 
  898.                 crc32(pfile_in_zip_read_info->crc32,bufBefore,
  899.                         (uInt)(uOutThis));
  900. pfile_in_zip_read_info->rest_read_uncompressed -=
  901.                 uOutThis;
  902. iRead += (uInt)(uTotalOutAfter - uTotalOutBefore);
  903.             
  904. if (err==Z_STREAM_END)
  905. return (iRead==0) ? UNZ_EOF : iRead;
  906. if (err!=Z_OK) 
  907. break;
  908. }
  909. }
  910. if (err==Z_OK)
  911. return iRead;
  912. return err;
  913. }
  914. /*
  915.   Give the current position in uncompressed data
  916. */
  917. extern z_off_t ZEXPORT unztell (file)
  918. unzFile file;
  919. {
  920. unz_s* s;
  921. file_in_zip_read_info_s* pfile_in_zip_read_info;
  922. if (file==NULL)
  923. return UNZ_PARAMERROR;
  924. s=(unz_s*)file;
  925.     pfile_in_zip_read_info=s->pfile_in_zip_read;
  926. if (pfile_in_zip_read_info==NULL)
  927. return UNZ_PARAMERROR;
  928. return (z_off_t)pfile_in_zip_read_info->stream.total_out;
  929. }
  930. /*
  931.   return 1 if the end of file was reached, 0 elsewhere 
  932. */
  933. extern int ZEXPORT unzeof (file)
  934. unzFile file;
  935. {
  936. unz_s* s;
  937. file_in_zip_read_info_s* pfile_in_zip_read_info;
  938. if (file==NULL)
  939. return UNZ_PARAMERROR;
  940. s=(unz_s*)file;
  941.     pfile_in_zip_read_info=s->pfile_in_zip_read;
  942. if (pfile_in_zip_read_info==NULL)
  943. return UNZ_PARAMERROR;
  944. if (pfile_in_zip_read_info->rest_read_uncompressed == 0)
  945. return 1;
  946. else
  947. return 0;
  948. }
  949. /*
  950.   Read extra field from the current file (opened by unzOpenCurrentFile)
  951.   This is the local-header version of the extra field (sometimes, there is
  952.     more info in the local-header version than in the central-header)
  953.   if buf==NULL, it return the size of the local extra field that can be read
  954.   if buf!=NULL, len is the size of the buffer, the extra header is copied in
  955. buf.
  956.   the return value is the number of bytes copied in buf, or (if <0) 
  957. the error code
  958. */
  959. extern int ZEXPORT unzGetLocalExtrafield (file,buf,len)
  960. unzFile file;
  961. voidp buf;
  962. unsigned len;
  963. {
  964. unz_s* s;
  965. file_in_zip_read_info_s* pfile_in_zip_read_info;
  966. uInt read_now;
  967. uLong size_to_read;
  968. if (file==NULL)
  969. return UNZ_PARAMERROR;
  970. s=(unz_s*)file;
  971.     pfile_in_zip_read_info=s->pfile_in_zip_read;
  972. if (pfile_in_zip_read_info==NULL)
  973. return UNZ_PARAMERROR;
  974. size_to_read = (pfile_in_zip_read_info->size_local_extrafield - 
  975. pfile_in_zip_read_info->pos_local_extrafield);
  976. if (buf==NULL)
  977. return (int)size_to_read;
  978. if (len>size_to_read)
  979. read_now = (uInt)size_to_read;
  980. else
  981. read_now = (uInt)len ;
  982. if (read_now==0)
  983. return 0;
  984. if (fseek(pfile_in_zip_read_info->file,
  985.               pfile_in_zip_read_info->offset_local_extrafield + 
  986.   pfile_in_zip_read_info->pos_local_extrafield,SEEK_SET)!=0)
  987. return UNZ_ERRNO;
  988. if (fread(buf,(uInt)size_to_read,1,pfile_in_zip_read_info->file)!=1)
  989. return UNZ_ERRNO;
  990. return (int)read_now;
  991. }
  992. /*
  993.   Close the file in zip opened with unzipOpenCurrentFile
  994.   Return UNZ_CRCERROR if all the file was read but the CRC is not good
  995. */
  996. extern int ZEXPORT unzCloseCurrentFile (file)
  997. unzFile file;
  998. {
  999. int err=UNZ_OK;
  1000. unz_s* s;
  1001. file_in_zip_read_info_s* pfile_in_zip_read_info;
  1002. if (file==NULL)
  1003. return UNZ_PARAMERROR;
  1004. s=(unz_s*)file;
  1005.     pfile_in_zip_read_info=s->pfile_in_zip_read;
  1006. if (pfile_in_zip_read_info==NULL)
  1007. return UNZ_PARAMERROR;
  1008. if (pfile_in_zip_read_info->rest_read_uncompressed == 0)
  1009. {
  1010. if (pfile_in_zip_read_info->crc32 != pfile_in_zip_read_info->crc32_wait)
  1011. err=UNZ_CRCERROR;
  1012. }
  1013. TRYFREE(pfile_in_zip_read_info->read_buffer);
  1014. pfile_in_zip_read_info->read_buffer = NULL;
  1015. if (pfile_in_zip_read_info->stream_initialised)
  1016. inflateEnd(&pfile_in_zip_read_info->stream);
  1017. pfile_in_zip_read_info->stream_initialised = 0;
  1018. TRYFREE(pfile_in_zip_read_info);
  1019.     s->pfile_in_zip_read=NULL;
  1020. return err;
  1021. }
  1022. /*
  1023.   Get the global comment string of the ZipFile, in the szComment buffer.
  1024.   uSizeBuf is the size of the szComment buffer.
  1025.   return the number of byte copied or an error code <0
  1026. */
  1027. extern int ZEXPORT unzGetGlobalComment (file, szComment, uSizeBuf)
  1028. unzFile file;
  1029. char *szComment;
  1030. uLong uSizeBuf;
  1031. {
  1032. int err=UNZ_OK;
  1033. unz_s* s;
  1034. uLong uReadThis ;
  1035. if (file==NULL)
  1036. return UNZ_PARAMERROR;
  1037. s=(unz_s*)file;
  1038. uReadThis = uSizeBuf;
  1039. if (uReadThis>s->gi.size_comment)
  1040. uReadThis = s->gi.size_comment;
  1041. if (fseek(s->file,s->central_pos+22,SEEK_SET)!=0)
  1042. return UNZ_ERRNO;
  1043. if (uReadThis>0)
  1044.     {
  1045.       *szComment='';
  1046.   if (fread(szComment,(uInt)uReadThis,1,s->file)!=1)
  1047. return UNZ_ERRNO;
  1048.     }
  1049. if ((szComment != NULL) && (uSizeBuf > s->gi.size_comment))
  1050. *(szComment+s->gi.size_comment)='';
  1051. return (int)uReadThis;
  1052. }