3 Version 1.1, February 14h, 2010
4 sample part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html )
6 Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html )
8 Modifications of Unzip for Zip64
9 Copyright (C) 2007-2008 Even Rouault
11 Modifications for Zip64 support on both zip and unzip
12 Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com )
16 #if (!defined(_WIN32)) && (!defined(WIN32)) && (!defined(__APPLE__))
17 #ifndef __USE_FILE_OFFSET64
18 #define __USE_FILE_OFFSET64
20 #ifndef __USE_LARGEFILE64
21 #define __USE_LARGEFILE64
23 #ifndef _LARGEFILE64_SOURCE
24 #define _LARGEFILE64_SOURCE
26 #ifndef _FILE_OFFSET_BIT
27 #define _FILE_OFFSET_BIT 64
32 // In darwin and perhaps other BSD variants off_t is a 64 bit value, hence no need for specific 64 bit functions
33 #define FOPEN_FUNC(filename, mode) fopen(filename, mode)
34 #define FTELLO_FUNC(stream) ftello(stream)
35 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
37 #define FOPEN_FUNC(filename, mode) fopen64(filename, mode)
38 #define FTELLO_FUNC(stream) ftello64(stream)
39 #define FSEEKO_FUNC(stream, offset, origin) fseeko64(stream, offset, origin)
57 # include <sys/types.h>
58 # include <sys/stat.h>
70 #define WRITEBUFFERSIZE (16384)
71 #define MAXFILENAME (256)
74 uLong
filetime(f
, tmzip
, dt
)
75 char *f
; /* name of file to get info on */
76 tm_zip
*tmzip
; /* return value: access, modific. and creation times */
77 uLong
*dt
; /* dostime */
83 WIN32_FIND_DATAA ff32
;
85 hFind
= FindFirstFileA(f
,&ff32
);
86 if (hFind
!= INVALID_HANDLE_VALUE
)
88 FileTimeToLocalFileTime(&(ff32
.ftLastWriteTime
),&ftLocal
);
89 FileTimeToDosDateTime(&ftLocal
,((LPWORD
)dt
)+1,((LPWORD
)dt
)+0);
97 #ifdef unix || __APPLE__
98 uLong
filetime(f
, tmzip
, dt
)
99 char *f
; /* name of file to get info on */
100 tm_zip
*tmzip
; /* return value: access, modific. and creation times */
101 uLong
*dt
; /* dostime */
104 struct stat s
; /* results of stat() */
108 if (strcmp(f
,"-")!=0)
110 char name
[MAXFILENAME
+1];
112 if (len
> MAXFILENAME
)
115 strncpy(name
, f
,MAXFILENAME
-1);
116 /* strncpy doesnt append the trailing NULL, of the string is too long. */
117 name
[ MAXFILENAME
] = '\0';
119 if (name
[len
- 1] == '/')
120 name
[len
- 1] = '\0';
121 /* not all systems allow stat'ing a file with / appended */
122 if (stat(name
,&s
)==0)
128 filedate
= localtime(&tm_t
);
130 tmzip
->tm_sec
= filedate
->tm_sec
;
131 tmzip
->tm_min
= filedate
->tm_min
;
132 tmzip
->tm_hour
= filedate
->tm_hour
;
133 tmzip
->tm_mday
= filedate
->tm_mday
;
134 tmzip
->tm_mon
= filedate
->tm_mon
;
135 tmzip
->tm_year
= filedate
->tm_year
;
140 uLong
filetime(f
, tmzip
, dt
)
141 char *f
; /* name of file to get info on */
142 tm_zip
*tmzip
; /* return value: access, modific. and creation times */
143 uLong
*dt
; /* dostime */
153 int check_exist_file(filename
)
154 const char* filename
;
158 ftestexist
= FOPEN_FUNC(filename
,"rb");
159 if (ftestexist
==NULL
)
168 printf("MiniZip 1.1, demo of zLib + MiniZip64 package, written by Gilles Vollant\n");
169 printf("more info on MiniZip at http://www.winimage.com/zLibDll/minizip.html\n\n");
174 printf("Usage : minizip [-o] [-a] [-0 to -9] [-p password] [-j] file.zip [files_to_add]\n\n" \
175 " -o Overwrite existing file.zip\n" \
176 " -a Append to existing file.zip\n" \
178 " -1 Compress faster\n" \
179 " -9 Compress better\n\n" \
180 " -j exclude path. store only the file name.\n\n");
183 /* calculate the CRC32 of a file,
184 because to encrypt a file, we need known the CRC32 of the file before */
185 int getFileCrc(const char* filenameinzip
,void*buf
,unsigned long size_buf
,unsigned long* result_crc
)
187 unsigned long calculate_crc
=0;
189 FILE * fin
= FOPEN_FUNC(filenameinzip
,"rb");
191 unsigned long size_read
= 0;
192 unsigned long total_read
= 0;
202 size_read
= (int)fread(buf
,1,size_buf
,fin
);
203 if (size_read
< size_buf
)
206 printf("error in reading %s\n",filenameinzip
);
211 calculate_crc
= crc32(calculate_crc
,buf
,size_read
);
212 total_read
+= size_read
;
214 } while ((err
== ZIP_OK
) && (size_read
>0));
219 *result_crc
=calculate_crc
;
220 printf("file %s crc %lx\n", filenameinzip
, calculate_crc
);
224 int isLargeFile(const char* filename
)
228 FILE* pFile
= FOPEN_FUNC(filename
, "rb");
232 int n
= FSEEKO_FUNC(pFile
, 0, SEEK_END
);
233 pos
= FTELLO_FUNC(pFile
);
235 printf("File : %s is %lld bytes\n", filename
, pos
);
237 if(pos
>= 0xffffffff)
252 int opt_compress_level
=Z_DEFAULT_COMPRESSION
;
253 int opt_exclude_path
=0;
254 int zipfilenamearg
= 0;
255 char filename_try
[MAXFILENAME
+16];
260 const char* password
=NULL
;
275 const char *p
=argv
[i
]+1;
280 if ((c
=='o') || (c
=='O'))
282 if ((c
=='a') || (c
=='A'))
284 if ((c
>='0') && (c
<='9'))
285 opt_compress_level
= c
-'0';
286 if ((c
=='j') || (c
=='J'))
287 opt_exclude_path
= 1;
289 if (((c
=='p') || (c
=='P')) && (i
+1<argc
))
298 if (zipfilenamearg
== 0)
306 size_buf
= WRITEBUFFERSIZE
;
307 buf
= (void*)malloc(size_buf
);
310 printf("Error allocating memory\n");
311 return ZIP_INTERNALERROR
;
314 if (zipfilenamearg
==0)
324 strncpy(filename_try
, argv
[zipfilenamearg
],MAXFILENAME
-1);
325 /* strncpy doesnt append the trailing NULL, of the string is too long. */
326 filename_try
[ MAXFILENAME
] = '\0';
328 len
=(int)strlen(filename_try
);
330 if (filename_try
[i
]=='.')
334 strcat(filename_try
,".zip");
336 if (opt_overwrite
==2)
338 /* if the file don't exist, we not append file */
339 if (check_exist_file(filename_try
)==0)
343 if (opt_overwrite
==0)
344 if (check_exist_file(filename_try
)!=0)
351 printf("The file %s exists. Overwrite ? [y]es, [n]o, [a]ppend : ",filename_try
);
352 ret
= scanf("%1s",answer
);
358 if ((rep
>='a') && (rep
<='z'))
361 while ((rep
!='Y') && (rep
!='N') && (rep
!='A'));
373 # ifdef USEWIN32IOAPI
374 zlib_filefunc64_def ffunc
;
375 fill_win32_filefunc64A(&ffunc
);
376 zf
= zipOpen2_64(filename_try
,(opt_overwrite
==2) ? 2 : 0,NULL
,&ffunc
);
378 zf
= zipOpen64(filename_try
,(opt_overwrite
==2) ? 2 : 0);
383 printf("error opening %s\n",filename_try
);
387 printf("creating %s\n",filename_try
);
389 for (i
=zipfilenamearg
+1;(i
<argc
) && (err
==ZIP_OK
);i
++)
391 if (!((((*(argv
[i
]))=='-') || ((*(argv
[i
]))=='/')) &&
392 ((argv
[i
][1]=='o') || (argv
[i
][1]=='O') ||
393 (argv
[i
][1]=='a') || (argv
[i
][1]=='A') ||
394 (argv
[i
][1]=='p') || (argv
[i
][1]=='P') ||
395 ((argv
[i
][1]>='0') || (argv
[i
][1]<='9'))) &&
396 (strlen(argv
[i
]) == 2)))
400 const char* filenameinzip
= argv
[i
];
401 const char *savefilenameinzip
;
403 unsigned long crcFile
=0;
406 zi
.tmz_date
.tm_sec
= zi
.tmz_date
.tm_min
= zi
.tmz_date
.tm_hour
=
407 zi
.tmz_date
.tm_mday
= zi
.tmz_date
.tm_mon
= zi
.tmz_date
.tm_year
= 0;
411 filetime(filenameinzip
,&zi
.tmz_date
,&zi
.dosDate
);
414 err = zipOpenNewFileInZip(zf,filenameinzip,&zi,
415 NULL,0,NULL,0,NULL / * comment * /,
416 (opt_compress_level != 0) ? Z_DEFLATED : 0,
419 if ((password
!= NULL
) && (err
==ZIP_OK
))
420 err
= getFileCrc(filenameinzip
,buf
,size_buf
,&crcFile
);
422 zip64
= isLargeFile(filenameinzip
);
424 /* The path name saved, should not include a leading slash. */
425 /*if it did, windows/xp and dynazip couldn't read the zip file. */
426 savefilenameinzip
= filenameinzip
;
427 while( savefilenameinzip
[0] == '\\' || savefilenameinzip
[0] == '/' )
432 /*should the zip file contain any path at all?*/
433 if( opt_exclude_path
)
436 const char *lastslash
= 0;
437 for( tmpptr
= savefilenameinzip
; *tmpptr
; tmpptr
++)
439 if( *tmpptr
== '\\' || *tmpptr
== '/')
444 if( lastslash
!= NULL
)
446 savefilenameinzip
= lastslash
+1; // base filename follows last slash.
451 err
= zipOpenNewFileInZip3_64(zf
,savefilenameinzip
,&zi
,
452 NULL
,0,NULL
,0,NULL
/* comment*/,
453 (opt_compress_level
!= 0) ? Z_DEFLATED
: 0,
454 opt_compress_level
,0,
455 /* -MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY, */
456 -MAX_WBITS
, DEF_MEM_LEVEL
, Z_DEFAULT_STRATEGY
,
457 password
,crcFile
, zip64
);
460 printf("error in opening %s in zipfile\n",filenameinzip
);
463 fin
= FOPEN_FUNC(filenameinzip
,"rb");
467 printf("error in opening %s for reading\n",filenameinzip
);
475 size_read
= (int)fread(buf
,1,size_buf
,fin
);
476 if (size_read
< size_buf
)
479 printf("error in reading %s\n",filenameinzip
);
485 err
= zipWriteInFileInZip (zf
,buf
,size_read
);
488 printf("error in writing %s in the zipfile\n",
493 } while ((err
== ZIP_OK
) && (size_read
>0));
502 err
= zipCloseFileInZip(zf
);
504 printf("error in closing %s in the zipfile\n",
509 errclose
= zipClose(zf
,NULL
);
510 if (errclose
!= ZIP_OK
)
511 printf("error in closing %s\n",filename_try
);