examples: fix build on AIX6
[Samba/gebeck_regimport.git] / lib / zlib / contrib / minizip / miniunz.c
blobcf9a03b050ea430d19ad1868b3f392453609ca0a
1 /*
2 miniunz.c
3 Version 1.01e, February 12th, 2005
5 Copyright (C) 1998-2005 Gilles Vollant
6 */
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <string.h>
12 #include <time.h>
13 #include <errno.h>
14 #include <fcntl.h>
16 #ifdef unix
17 # include <unistd.h>
18 # include <utime.h>
19 #else
20 # include <direct.h>
21 # include <io.h>
22 #endif
24 #include "unzip.h"
26 #define CASESENSITIVITY (0)
27 #define WRITEBUFFERSIZE (8192)
28 #define MAXFILENAME (256)
30 #ifdef WIN32
31 #define USEWIN32IOAPI
32 #include "iowin32.h"
33 #endif
35 mini unzip, demo of unzip package
37 usage :
38 Usage : miniunz [-exvlo] file.zip [file_to_extract] [-d extractdir]
40 list the file in the zipfile, and print the content of FILE_ID.ZIP or README.TXT
41 if it exists
45 /* change_file_date : change the date/time of a file
46 filename : the filename of the file where date/time must be modified
47 dosdate : the new date at the MSDos format (4 bytes)
48 tmu_date : the SAME new date at the tm_unz format */
49 void change_file_date(filename,dosdate,tmu_date)
50 const char *filename;
51 uLong dosdate;
52 tm_unz tmu_date;
54 #ifdef WIN32
55 HANDLE hFile;
56 FILETIME ftm,ftLocal,ftCreate,ftLastAcc,ftLastWrite;
58 hFile = CreateFile(filename,GENERIC_READ | GENERIC_WRITE,
59 0,NULL,OPEN_EXISTING,0,NULL);
60 GetFileTime(hFile,&ftCreate,&ftLastAcc,&ftLastWrite);
61 DosDateTimeToFileTime((WORD)(dosdate>>16),(WORD)dosdate,&ftLocal);
62 LocalFileTimeToFileTime(&ftLocal,&ftm);
63 SetFileTime(hFile,&ftm,&ftLastAcc,&ftm);
64 CloseHandle(hFile);
65 #else
66 #ifdef unix
67 struct utimbuf ut;
68 struct tm newdate;
69 newdate.tm_sec = tmu_date.tm_sec;
70 newdate.tm_min=tmu_date.tm_min;
71 newdate.tm_hour=tmu_date.tm_hour;
72 newdate.tm_mday=tmu_date.tm_mday;
73 newdate.tm_mon=tmu_date.tm_mon;
74 if (tmu_date.tm_year > 1900)
75 newdate.tm_year=tmu_date.tm_year - 1900;
76 else
77 newdate.tm_year=tmu_date.tm_year ;
78 newdate.tm_isdst=-1;
80 ut.actime=ut.modtime=mktime(&newdate);
81 utime(filename,&ut);
82 #endif
83 #endif
87 /* mymkdir and change_file_date are not 100 % portable
88 As I don't know well Unix, I wait feedback for the unix portion */
90 int mymkdir(dirname)
91 const char* dirname;
93 int ret=0;
94 #ifdef WIN32
95 ret = mkdir(dirname);
96 #else
97 #ifdef unix
98 ret = mkdir (dirname,0775);
99 #endif
100 #endif
101 return ret;
104 int makedir (newdir)
105 char *newdir;
107 char *buffer ;
108 char *p;
109 int len = (int)strlen(newdir);
111 if (len <= 0)
112 return 0;
114 buffer = (char*)malloc(len+1);
115 strcpy(buffer,newdir);
117 if (buffer[len-1] == '/') {
118 buffer[len-1] = '\0';
120 if (mymkdir(buffer) == 0)
122 free(buffer);
123 return 1;
126 p = buffer+1;
127 while (1)
129 char hold;
131 while(*p && *p != '\\' && *p != '/')
132 p++;
133 hold = *p;
134 *p = 0;
135 if ((mymkdir(buffer) == -1) && (errno == ENOENT))
137 printf("couldn't create directory %s\n",buffer);
138 free(buffer);
139 return 0;
141 if (hold == 0)
142 break;
143 *p++ = hold;
145 free(buffer);
146 return 1;
149 void do_banner()
151 printf("MiniUnz 1.01b, demo of zLib + Unz package written by Gilles Vollant\n");
152 printf("more info at http://www.winimage.com/zLibDll/unzip.html\n\n");
155 void do_help()
157 printf("Usage : miniunz [-e] [-x] [-v] [-l] [-o] [-p password] file.zip [file_to_extr.] [-d extractdir]\n\n" \
158 " -e Extract without pathname (junk paths)\n" \
159 " -x Extract with pathname\n" \
160 " -v list files\n" \
161 " -l list files\n" \
162 " -d directory to extract into\n" \
163 " -o overwrite files without prompting\n" \
164 " -p extract crypted file using password\n\n");
168 int do_list(uf)
169 unzFile uf;
171 uLong i;
172 unz_global_info gi;
173 int err;
175 err = unzGetGlobalInfo (uf,&gi);
176 if (err!=UNZ_OK)
177 printf("error %d with zipfile in unzGetGlobalInfo \n",err);
178 printf(" Length Method Size Ratio Date Time CRC-32 Name\n");
179 printf(" ------ ------ ---- ----- ---- ---- ------ ----\n");
180 for (i=0;i<gi.number_entry;i++)
182 char filename_inzip[256];
183 unz_file_info file_info;
184 uLong ratio=0;
185 const char *string_method;
186 char charCrypt=' ';
187 err = unzGetCurrentFileInfo(uf,&file_info,filename_inzip,sizeof(filename_inzip),NULL,0,NULL,0);
188 if (err!=UNZ_OK)
190 printf("error %d with zipfile in unzGetCurrentFileInfo\n",err);
191 break;
193 if (file_info.uncompressed_size>0)
194 ratio = (file_info.compressed_size*100)/file_info.uncompressed_size;
196 /* display a '*' if the file is crypted */
197 if ((file_info.flag & 1) != 0)
198 charCrypt='*';
200 if (file_info.compression_method==0)
201 string_method="Stored";
202 else
203 if (file_info.compression_method==Z_DEFLATED)
205 uInt iLevel=(uInt)((file_info.flag & 0x6)/2);
206 if (iLevel==0)
207 string_method="Defl:N";
208 else if (iLevel==1)
209 string_method="Defl:X";
210 else if ((iLevel==2) || (iLevel==3))
211 string_method="Defl:F"; /* 2:fast , 3 : extra fast*/
213 else
214 string_method="Unkn. ";
216 printf("%7lu %6s%c%7lu %3lu%% %2.2lu-%2.2lu-%2.2lu %2.2lu:%2.2lu %8.8lx %s\n",
217 file_info.uncompressed_size,string_method,
218 charCrypt,
219 file_info.compressed_size,
220 ratio,
221 (uLong)file_info.tmu_date.tm_mon + 1,
222 (uLong)file_info.tmu_date.tm_mday,
223 (uLong)file_info.tmu_date.tm_year % 100,
224 (uLong)file_info.tmu_date.tm_hour,(uLong)file_info.tmu_date.tm_min,
225 (uLong)file_info.crc,filename_inzip);
226 if ((i+1)<gi.number_entry)
228 err = unzGoToNextFile(uf);
229 if (err!=UNZ_OK)
231 printf("error %d with zipfile in unzGoToNextFile\n",err);
232 break;
237 return 0;
241 int do_extract_currentfile(uf,popt_extract_without_path,popt_overwrite,password)
242 unzFile uf;
243 const int* popt_extract_without_path;
244 int* popt_overwrite;
245 const char* password;
247 char filename_inzip[256];
248 char* filename_withoutpath;
249 char* p;
250 int err=UNZ_OK;
251 FILE *fout=NULL;
252 void* buf;
253 uInt size_buf;
255 unz_file_info file_info;
256 uLong ratio=0;
257 err = unzGetCurrentFileInfo(uf,&file_info,filename_inzip,sizeof(filename_inzip),NULL,0,NULL,0);
259 if (err!=UNZ_OK)
261 printf("error %d with zipfile in unzGetCurrentFileInfo\n",err);
262 return err;
265 size_buf = WRITEBUFFERSIZE;
266 buf = (void*)malloc(size_buf);
267 if (buf==NULL)
269 printf("Error allocating memory\n");
270 return UNZ_INTERNALERROR;
273 p = filename_withoutpath = filename_inzip;
274 while ((*p) != '\0')
276 if (((*p)=='/') || ((*p)=='\\'))
277 filename_withoutpath = p+1;
278 p++;
281 if ((*filename_withoutpath)=='\0')
283 if ((*popt_extract_without_path)==0)
285 printf("creating directory: %s\n",filename_inzip);
286 mymkdir(filename_inzip);
289 else
291 const char* write_filename;
292 int skip=0;
294 if ((*popt_extract_without_path)==0)
295 write_filename = filename_inzip;
296 else
297 write_filename = filename_withoutpath;
299 err = unzOpenCurrentFilePassword(uf,password);
300 if (err!=UNZ_OK)
302 printf("error %d with zipfile in unzOpenCurrentFilePassword\n",err);
305 if (((*popt_overwrite)==0) && (err==UNZ_OK))
307 char rep=0;
308 FILE* ftestexist;
309 ftestexist = fopen(write_filename,"rb");
310 if (ftestexist!=NULL)
312 fclose(ftestexist);
315 char answer[128];
316 int ret;
318 printf("The file %s exists. Overwrite ? [y]es, [n]o, [A]ll: ",write_filename);
319 ret = scanf("%1s",answer);
320 if (ret != 1)
322 exit(EXIT_FAILURE);
324 rep = answer[0] ;
325 if ((rep>='a') && (rep<='z'))
326 rep -= 0x20;
328 while ((rep!='Y') && (rep!='N') && (rep!='A'));
331 if (rep == 'N')
332 skip = 1;
334 if (rep == 'A')
335 *popt_overwrite=1;
338 if ((skip==0) && (err==UNZ_OK))
340 fout=fopen(write_filename,"wb");
342 /* some zipfile don't contain directory alone before file */
343 if ((fout==NULL) && ((*popt_extract_without_path)==0) &&
344 (filename_withoutpath!=(char*)filename_inzip))
346 char c=*(filename_withoutpath-1);
347 *(filename_withoutpath-1)='\0';
348 makedir(write_filename);
349 *(filename_withoutpath-1)=c;
350 fout=fopen(write_filename,"wb");
353 if (fout==NULL)
355 printf("error opening %s\n",write_filename);
359 if (fout!=NULL)
361 printf(" extracting: %s\n",write_filename);
365 err = unzReadCurrentFile(uf,buf,size_buf);
366 if (err<0)
368 printf("error %d with zipfile in unzReadCurrentFile\n",err);
369 break;
371 if (err>0)
372 if (fwrite(buf,err,1,fout)!=1)
374 printf("error in writing extracted file\n");
375 err=UNZ_ERRNO;
376 break;
379 while (err>0);
380 if (fout)
381 fclose(fout);
383 if (err==0)
384 change_file_date(write_filename,file_info.dosDate,
385 file_info.tmu_date);
388 if (err==UNZ_OK)
390 err = unzCloseCurrentFile (uf);
391 if (err!=UNZ_OK)
393 printf("error %d with zipfile in unzCloseCurrentFile\n",err);
396 else
397 unzCloseCurrentFile(uf); /* don't lose the error */
400 free(buf);
401 return err;
405 int do_extract(uf,opt_extract_without_path,opt_overwrite,password)
406 unzFile uf;
407 int opt_extract_without_path;
408 int opt_overwrite;
409 const char* password;
411 uLong i;
412 unz_global_info gi;
413 int err;
414 FILE* fout=NULL;
416 err = unzGetGlobalInfo (uf,&gi);
417 if (err!=UNZ_OK)
418 printf("error %d with zipfile in unzGetGlobalInfo \n",err);
420 for (i=0;i<gi.number_entry;i++)
422 if (do_extract_currentfile(uf,&opt_extract_without_path,
423 &opt_overwrite,
424 password) != UNZ_OK)
425 break;
427 if ((i+1)<gi.number_entry)
429 err = unzGoToNextFile(uf);
430 if (err!=UNZ_OK)
432 printf("error %d with zipfile in unzGoToNextFile\n",err);
433 break;
438 return 0;
441 int do_extract_onefile(uf,filename,opt_extract_without_path,opt_overwrite,password)
442 unzFile uf;
443 const char* filename;
444 int opt_extract_without_path;
445 int opt_overwrite;
446 const char* password;
448 int err = UNZ_OK;
449 if (unzLocateFile(uf,filename,CASESENSITIVITY)!=UNZ_OK)
451 printf("file %s not found in the zipfile\n",filename);
452 return 2;
455 if (do_extract_currentfile(uf,&opt_extract_without_path,
456 &opt_overwrite,
457 password) == UNZ_OK)
458 return 0;
459 else
460 return 1;
464 int main(argc,argv)
465 int argc;
466 char *argv[];
468 const char *zipfilename=NULL;
469 const char *filename_to_extract=NULL;
470 const char *password=NULL;
471 char filename_try[MAXFILENAME+16] = "";
472 int i;
473 int opt_do_list=0;
474 int opt_do_extract=1;
475 int opt_do_extract_withoutpath=0;
476 int opt_overwrite=0;
477 int opt_extractdir=0;
478 const char *dirname=NULL;
479 unzFile uf=NULL;
481 do_banner();
482 if (argc==1)
484 do_help();
485 return 0;
487 else
489 for (i=1;i<argc;i++)
491 if ((*argv[i])=='-')
493 const char *p=argv[i]+1;
495 while ((*p)!='\0')
497 char c=*(p++);;
498 if ((c=='l') || (c=='L'))
499 opt_do_list = 1;
500 if ((c=='v') || (c=='V'))
501 opt_do_list = 1;
502 if ((c=='x') || (c=='X'))
503 opt_do_extract = 1;
504 if ((c=='e') || (c=='E'))
505 opt_do_extract = opt_do_extract_withoutpath = 1;
506 if ((c=='o') || (c=='O'))
507 opt_overwrite=1;
508 if ((c=='d') || (c=='D'))
510 opt_extractdir=1;
511 dirname=argv[i+1];
514 if (((c=='p') || (c=='P')) && (i+1<argc))
516 password=argv[i+1];
517 i++;
521 else
523 if (zipfilename == NULL)
524 zipfilename = argv[i];
525 else if ((filename_to_extract==NULL) && (!opt_extractdir))
526 filename_to_extract = argv[i] ;
531 if (zipfilename!=NULL)
534 # ifdef USEWIN32IOAPI
535 zlib_filefunc_def ffunc;
536 # endif
538 strncpy(filename_try, zipfilename,MAXFILENAME-1);
539 /* strncpy doesn't append the trailing NULL, if the string is too long. */
540 filename_try[ MAXFILENAME ] = '\0';
542 # ifdef USEWIN32IOAPI
543 fill_win32_filefunc(&ffunc);
544 uf = unzOpen2(zipfilename,&ffunc);
545 # else
546 uf = unzOpen(zipfilename);
547 # endif
548 if (uf==NULL)
550 strcat(filename_try,".zip");
551 # ifdef USEWIN32IOAPI
552 uf = unzOpen2(filename_try,&ffunc);
553 # else
554 uf = unzOpen(filename_try);
555 # endif
559 if (uf==NULL)
561 printf("Cannot open %s or %s.zip\n",zipfilename,zipfilename);
562 return 1;
564 printf("%s opened\n",filename_try);
566 if (opt_do_list==1)
567 return do_list(uf);
568 else if (opt_do_extract==1)
570 if (opt_extractdir && chdir(dirname))
572 printf("Error changing into %s, aborting\n", dirname);
573 exit(-1);
576 if (filename_to_extract == NULL)
577 return do_extract(uf,opt_do_extract_withoutpath,opt_overwrite,password);
578 else
579 return do_extract_onefile(uf,filename_to_extract,
580 opt_do_extract_withoutpath,opt_overwrite,password);
582 unzCloseCurrentFile(uf);
584 return 0;