ZipFile.h
Upload User: sfdasf1q
Upload Date: 2021-05-08
Package Size: 99k
Code Size: 7k
Development Platform:

Visual C++

  1. /* zip.h -- IO for compress .zip files using zlib 
  2.    Version 0.15 alpha, Mar 19th, 1998,
  3.    Copyright (C) 1998 Gilles Vollant
  4.    This unzip package allow creates .ZIP file, compatible with PKZip 2.04g
  5.      WinZip, InfoZip tools and compatible.
  6.    Encryption and multi volume ZipFile (span) are not supported.
  7.    Old compressions used by old PKZip 1.x are not supported
  8.   For uncompress .zip file, look at unzip.h
  9.    THIS IS AN ALPHA VERSION. AT THIS STAGE OF DEVELOPPEMENT, SOMES API OR STRUCTURE
  10.    CAN CHANGE IN FUTURE VERSION !!
  11.    I WAIT FEEDBACK at mail info@winimage.com
  12.    Visit also http://www.winimage.com/zLibDll/zip.htm for evolution
  13.    Condition of use and distribution are the same than zlib :
  14.   This software is provided 'as-is', without any express or implied
  15.   warranty.  In no event will the authors be held liable for any damages
  16.   arising from the use of this software.
  17.   Permission is granted to anyone to use this software for any purpose,
  18.   including commercial applications, and to alter it and redistribute it
  19.   freely, subject to the following restrictions:
  20.   1. The origin of this software must not be misrepresented; you must not
  21.      claim that you wrote the original software. If you use this software
  22.      in a product, an acknowledgment in the product documentation would be
  23.      appreciated but is not required.
  24.   2. Altered source versions must be plainly marked as such, and must not be
  25.      misrepresented as being the original software.
  26.   3. This notice may not be removed or altered from any source distribution.
  27. */
  28. /* for more info about .ZIP format, see 
  29.       ftp://ftp.cdrom.com/pub/infozip/doc/appnote-970311-iz.zip
  30.    PkWare has also a specification at :
  31.       ftp://ftp.pkware.com/probdesc.zip
  32. */
  33. // modified by Tadeusz Dracz - 01.2000:
  34. // - added class' wrapers
  35. // - several bugs fixed
  36. // - several enhancements added
  37. // - MFC support added
  38. // - memory leaks eliminated when write error occured
  39. // - automaticaly free used memory on destruction or exception
  40. // - modern error notification using exceptions
  41. // Copyright (C) Tadeusz Dracz  
  42. // This notice may not be removed or altered from any source distribution.
  43. // ZipFile.h: interface for the CZipFile class.
  44. //
  45. //////////////////////////////////////////////////////////////////////
  46. #if !defined(AFX_ZIPFILE_H__7F795F27_D6BD_11D3_B7C7_BBF03FA53147__INCLUDED_)
  47. #define AFX_ZIPFILE_H__7F795F27_D6BD_11D3_B7C7_BBF03FA53147__INCLUDED_
  48. #if _MSC_VER > 1000
  49. #pragma once
  50. #endif // _MSC_VER > 1000
  51. #include "ZUBaseFile.h"
  52. struct zip_fileinfo
  53. {
  54. CTime tmz_date;       /* date in understandable format           */
  55.     uLong dosDate;       /* if dos_date == 0, tmu_date is used      */
  56. /*    uLong       flag;        */   /* general purpose bit flag        2 bytes */
  57.     uLong       internal_fa;    /* internal file attributes        2 bytes */
  58.     uLong       external_fa;    /* external file attributes        4 bytes */
  59. public:
  60. uLong get_dos_date();
  61. zip_fileinfo();
  62. };
  63. struct curfile_info
  64. {
  65. curfile_info();
  66. ~curfile_info();
  67. z_stream stream;            /* zLib stream structure for inflate */
  68.     int  stream_initialised;    /* 1 is stream is initialised */
  69.     UINT pos_in_buffered_data;  /* last written byte in buffered_data */
  70.     DWORD pos_local_header;     /* offset of the local header of the file 
  71.                                      currenty writing */
  72.     char* central_header;       /* central header data for the current file */
  73.     DWORD size_centralheader;   /* size of the central header for cur file */
  74.     uLong flag;                 /* flag of the file currently writing */
  75.     int  method;                /* compression method of file currenty wr.*/
  76.     Byte* buffered_data;/* buffer contain compressed data to be writ*/
  77.     uLong dosDate;
  78.     uLong crc32;
  79. public:
  80. void free_central_header();
  81. void alloc_central_header();
  82. };
  83. class linkedlist_datablock_internal
  84. {
  85. public:
  86.   linkedlist_datablock_internal();
  87.   ~linkedlist_datablock_internal();
  88.   class linkedlist_datablock_internal* next_datablock;
  89.   uLong  avail_in_this_block;
  90.   uLong  filled_in_this_block;
  91.   uLong  unused; /* for future use and alignement */
  92.   unsigned char* data;
  93. };
  94. class linkedlist_data
  95. {
  96. public:
  97. void add_data_in_datablock(char* buf, uLong len);
  98. linkedlist_data();
  99. ~linkedlist_data();
  100. int write_datablock(CFile & f);
  101.     linkedlist_datablock_internal* first_block;
  102.     linkedlist_datablock_internal* last_block;
  103. };
  104. struct zip_internal
  105. {
  106. zip_internal();
  107. ~zip_internal();
  108.     CFile filezip;
  109.     linkedlist_data central_dir;/* datablock with central dir in construction*/
  110.     int  in_opened_file_inzip;  /* 1 if a file in the zip is currently writ.*/
  111.     struct curfile_info ci;            /* info on the file curretly writing */
  112.     DWORD begin_pos;            /* position of the beginning of the zipfile */
  113.     DWORD number_entry;
  114. };
  115. class CZipFile : public CZUBaseFile
  116. {
  117. public:
  118. CZipFile();
  119. void Open(LPCTSTR pathname, bool append);
  120. /*
  121.   Create a zipfile.
  122.  if the file pathname exist and append is true, the zip will be created at the end
  123.    of the file. (useful if the file contain a self extractor code)
  124. */
  125. CZipFile(LPCTSTR pathname, bool append = false);
  126. /*
  127.   Open a file in the ZIP for writing.
  128.   filename : the filename in zip (if NULL, '-' without quote will be used
  129.   *zipfi contain supplemental information
  130.   if extrafield_local!=NULL and size_extrafield_local>0, extrafield_local
  131.     contains the extrafield data the the local header
  132.   if extrafield_global!=NULL and size_extrafield_global>0, extrafield_global
  133.     contains the extrafield data the the local header
  134.   if comment != NULL, comment contain the comment string
  135.   method contain the compression method (0 for store, Z_DEFLATED for deflate)
  136.   level contain the level of compression (can be Z_DEFAULT_COMPRESSION)
  137. */
  138. void OpenNewFileInZip ( CString filename, 
  139. zip_fileinfo& zipfi, 
  140. int level = Z_DEFAULT_COMPRESSION,
  141. CString comment = "", 
  142. const void* extrafield_local = NULL, 
  143. uInt size_extrafield_local = 0, 
  144. const void* extrafield_global = NULL, 
  145. uInt size_extrafield_global = 0, 
  146. int method = Z_DEFLATED);
  147. /*
  148.   Write data in the zipfile
  149. */
  150. void WriteInFileInZip(const void *buf, UINT len);
  151. /*
  152.   Close the current file in the zipfile
  153. */
  154. void CloseFileInZip();
  155. /*
  156.   Close the zipfile and the current file in the zipfile if is opened
  157. */
  158. void Close(CString global_comment = "");
  159. /*
  160. Fill in zip_fileinfo fields (time an attributes) according to CFile data
  161. */
  162. void UpdateZipInfo(zip_fileinfo &zi, CFile &f);
  163. virtual ~CZipFile();
  164. protected:
  165. void ziplocal_putValue_inmemory(Byte dest, uLong x, int nbByte);
  166. void ziplocal_putValue(uLong x, int nbByte);
  167. zip_internal zi;
  168. };
  169. #endif // !defined(AFX_ZIPFILE_H__7F795F27_D6BD_11D3_B7C7_BBF03FA53147__INCLUDED_)