v0.51
This commit is contained in:
parent
e5cd2e91e8
commit
ef9d9aaeeb
4 changed files with 126 additions and 43 deletions
46
UnAlz.cpp
46
UnAlz.cpp
|
@ -109,7 +109,9 @@ static time_t dosTime2TimeT(UINT32 dostime) // from INFO-ZIP src
|
|||
static const char* errorstrtable[]=
|
||||
{
|
||||
"no error", // ERR_NOERR
|
||||
"can't open file", // ERR_CANT_OPEN_FILE
|
||||
"can't open archive file", // ERR_CANT_OPEN_FILE
|
||||
"can't open dest file or path", // ERR_CANT_OPEN_DEST_FILE
|
||||
// "can't create dest path", // ERR_CANT_CREATE_DEST_PATH
|
||||
"corrupted file", // ERR_CORRUPTED_FILE
|
||||
"not alz file", // ERR_NOT_ALZ_FILE
|
||||
"can't read signature", // ERR_CANT_READ_SIG
|
||||
|
@ -161,6 +163,7 @@ CUnAlz::CUnAlz()
|
|||
m_bIsEOF = FALSE;
|
||||
m_bIsEncrypted = FALSE;
|
||||
m_bIsDataDescr = FALSE;
|
||||
m_bPipeMode = FALSE;
|
||||
|
||||
#ifdef _UNALZ_ICONV
|
||||
|
||||
|
@ -692,27 +695,46 @@ BOOL CUnAlz::ExtractCurrentFile(const char* szDestPathName, const char* szDestFi
|
|||
|
||||
// ¾ÐÃàÇ® ´ë»ó ( ÆÄÀÏ )
|
||||
dest.nType = ET_FILE;
|
||||
|
||||
if(m_bPipeMode)
|
||||
dest.fp = stdout; // pipe mode 일 경우 stdout 출력
|
||||
else
|
||||
dest.fp = fopen(szDestPathFileName, "wb");
|
||||
|
||||
// 타입이 폴더일 경우..
|
||||
if(m_bPipeMode==FALSE && (m_posCur->head.fileAttribute) & ALZ_FILEATTR_DIRECTORY )
|
||||
{
|
||||
//printf("digpath:%s\n", szDestPathFileName);
|
||||
// 경로파기
|
||||
DigPath(szDestPathFileName);
|
||||
return TRUE;
|
||||
// m_nErr = ERR_CANT_CREATE_DEST_PATH;
|
||||
// return FALSE;
|
||||
}
|
||||
|
||||
// 파일 열기 실패시 - 경로를 파본다
|
||||
if(dest.fp==NULL)
|
||||
{
|
||||
DigPath(szDestPathFileName); // 경로명에 / 가 있을 경우..
|
||||
DigPath(szDestPathFileName);
|
||||
dest.fp = fopen(szDestPathFileName, "wb");
|
||||
}
|
||||
|
||||
#ifdef _WIN32
|
||||
// 그래도 파일열기 실패시.
|
||||
if(dest.fp==NULL)
|
||||
{
|
||||
ASSERT(0);
|
||||
// 대상 파일 열기 실패
|
||||
m_nErr = ERR_CANT_OPEN_DEST_FILE;
|
||||
//printf("dest pathfilename:%s\n",szDestPathFileName);
|
||||
if(m_pFuncCallBack)
|
||||
{
|
||||
CHAR buf[1024];
|
||||
sprintf(buf, "파일 열기 실패 : %s", szDestPathFileName);
|
||||
m_pFuncCallBack(buf, 0,0,m_pCallbackParam, NULL);
|
||||
// CHAR buf[1024];
|
||||
// sprintf(buf, "파일 열기 실패 : %s", szDestPathFileName);
|
||||
// m_pFuncCallBack(buf, 0,0,m_pCallbackParam, NULL);
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
#endif
|
||||
//#endif
|
||||
|
||||
// CALLBACK ¼¼ÆÃ
|
||||
if(m_pFuncCallBack) m_pFuncCallBack(m_posCur->fileName, 0,m_posCur->uncompressedSize,m_pCallbackParam, NULL);
|
||||
|
||||
|
@ -882,11 +904,16 @@ BOOL CUnAlz::DigPath(const char* szPathName)
|
|||
last --;
|
||||
}
|
||||
|
||||
|
||||
token = strtok( dup, seps );
|
||||
while( token != NULL )
|
||||
{
|
||||
if(strlen(path)==0)
|
||||
strcpy(path, token);
|
||||
{
|
||||
if(szPathName[0]=='/') // is absolute path ?
|
||||
strcpy(path,"/");
|
||||
strcat(path, token);
|
||||
}
|
||||
else
|
||||
{
|
||||
strcat(path, PATHSEP);
|
||||
|
@ -899,6 +926,7 @@ BOOL CUnAlz::DigPath(const char* szPathName)
|
|||
#else
|
||||
mkdir(path, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
|
||||
#endif
|
||||
//printf("path:%s\n", path);
|
||||
token = strtok( NULL, seps );
|
||||
}
|
||||
|
||||
|
|
13
UnAlz.h
13
UnAlz.h
|
@ -63,6 +63,11 @@
|
|||
2005/07/02 - unalz 커맨드 라인 방식 변경, 압축풀 대상 파일 지정 기능 추가..
|
||||
- 압축 해제된 파일시간을 원래 시간으로 세팅하는 코드 추가 - from unalz_wcx_01i.zip
|
||||
2005/07/09 - unalz 0.5
|
||||
2005/07/25 - -d 로 대상 경로를 "/" 로 시작되는 절대경로로 지정하면 프로그램이 죽던 버그 수정(Pavel Roskin)
|
||||
- pipemode 추가 - 메시지없이 파이프로 출력한다(Pavel Roskin)
|
||||
- 리스트 모드에서 파일 날자/시간을 시스템 로케일 설정에 따라서 표시(Pavel Roskin)
|
||||
- 커맨드라인에서 -pwd 옵션으로 암호 지정기능 추가
|
||||
- unalz 0.51
|
||||
|
||||
기능 :
|
||||
- alz 파일의 압축 해제 (deflate/변형 bzip2/raw)
|
||||
|
@ -169,7 +174,7 @@ namespace UNALZ
|
|||
# pragma pack(1)
|
||||
#endif
|
||||
|
||||
static const char UNALZ_VERSION[] = "CUnAlz0.5";
|
||||
static const char UNALZ_VERSION[] = "CUnAlz0.51";
|
||||
static const char UNALZ_COPYRIGHT[] = "Copyright(C) 2004-2005 by hardkoder ( http://www.kipple.pe.kr ) ";
|
||||
|
||||
enum {ENCR_HEADER_LEN=12}; // xf86
|
||||
|
@ -363,6 +368,7 @@ public:
|
|||
BOOL ExtractCurrentFileToBuf(BYTE* pDestBuf, int nBufSize); // pDestBuf=NULL 일 경우 테스트만 수행한다.
|
||||
BOOL ExtractAll(const char* szDestPathName);
|
||||
void SetCallback(_UnAlzCallback* pFunc, void* param=NULL);
|
||||
void SetPipeMode(BOOL bPipeMode) {m_bPipeMode=bPipeMode;}
|
||||
|
||||
void setPassword(char *passwd) { if(strlen(passwd) == 0) return; strcpy(m_szPasswd, passwd); }; // xf86
|
||||
BOOL chkValidPassword(); // xf86
|
||||
|
@ -395,7 +401,9 @@ public :
|
|||
enum ERR ///< 에러 코드 - 정리 필요..
|
||||
{
|
||||
ERR_NOERR,
|
||||
ERR_CANT_OPEN_FILE, ///< 파일 열기 실패
|
||||
ERR_CANT_OPEN_FILE, ///< 소스 파일 열기 실패
|
||||
ERR_CANT_OPEN_DEST_FILE, ///< 대상 파일 열기 실패
|
||||
// ERR_CANT_CREATE_DEST_PATH, ///< 대상 경로 만들기 실패
|
||||
ERR_CORRUPTED_FILE, ///< 깨진 파일?
|
||||
ERR_NOT_ALZ_FILE, ///< ALZ 파일이 아니다.
|
||||
ERR_CANT_READ_SIG, ///< signature 읽기 실패
|
||||
|
@ -519,6 +527,7 @@ private : //
|
|||
BOOL m_bIsEncrypted; // xf86
|
||||
BOOL m_bIsDataDescr;
|
||||
char m_szPasswd[512];
|
||||
BOOL m_bPipeMode; ///< pipemode - 메시지 출력없이 stdout 으로만 출력
|
||||
|
||||
private :
|
||||
/* from CZipArchive
|
||||
|
|
|
@ -66,11 +66,11 @@ int ListAlz(CUnAlz* pUnAlz, const char* src)
|
|||
list = pUnAlz->GetFileList();
|
||||
|
||||
printf("\nListing archive: %s\n"
|
||||
"\n Date Time Attr Size Compressed Name\n",
|
||||
"\n Date & Time Attr Size Compressed Name\n",
|
||||
src);
|
||||
printf("------------------- ----- ------------ ------------ ------------\n");
|
||||
|
||||
char szDate[64];
|
||||
// char szDate[64];
|
||||
char szTime[64];
|
||||
char szAttr[6];
|
||||
UINT64 totalUnCompressedSize = 0;
|
||||
|
@ -83,13 +83,14 @@ int ListAlz(CUnAlz* pUnAlz, const char* src)
|
|||
// time
|
||||
time = dosTime2TimeT(i->head.fileTimeDate);
|
||||
filetm = localtime(&time);
|
||||
strftime(szTime, 64, "%H:%M:%S", filetm);
|
||||
strftime(szDate, 64, "%Y:%m:%d", filetm);
|
||||
// strftime(szTime, 64, "%H:%M:%S", filetm);
|
||||
// strftime(szDate, 64, "%Y-%m-%d", filetm);
|
||||
strftime(szTime, 64, "%x %X", filetm); // use system locale
|
||||
// attributes
|
||||
FileAttr2Str(szAttr, i->head.fileAttribute);
|
||||
|
||||
printf("%s %s %s " I64FORM(12) " " I64FORM(12) " %s%s\n",
|
||||
szDate, szTime, szAttr, i->uncompressedSize,
|
||||
printf("%19s %s " I64FORM(12) " " I64FORM(12) " %s%s\n",
|
||||
szTime, szAttr, i->uncompressedSize,
|
||||
i->compressedSize, i->fileName,
|
||||
i->head.fileDescriptor & ALZ_FILE_DESCRIPTOR_ENCRYPTED ? "*" : "" );
|
||||
|
||||
|
|
61
main.cpp
61
main.cpp
|
@ -10,9 +10,28 @@
|
|||
#include "UnAlz.h"
|
||||
#include "UnAlzUtils.h"
|
||||
|
||||
#include <sys/timeb.h>
|
||||
|
||||
|
||||
BOOL g_bPipeMode=FALSE;
|
||||
|
||||
void Copyright()
|
||||
{
|
||||
// printf("unalz v0.20 (2004/10/22) \n");
|
||||
// printf("unalz v0.22 (2004/10/27) \n");
|
||||
// printf("unalz v0.23 (2004/10/30) \n");
|
||||
// printf("unalz v0.31 (2004/11/27) \n");
|
||||
// printf("unalz v0.4 (2005/06/18) \n");
|
||||
// printf("unalz v0.5 (2005/07/09) \n");
|
||||
printf("unalz v0.51 (2005/07/24) \n");
|
||||
printf("Copyright(C) 2004-2005 by hardkoder (http://www.kipple.pe.kr) \n");
|
||||
}
|
||||
|
||||
|
||||
void Usage()
|
||||
{
|
||||
Copyright();
|
||||
|
||||
printf("\n");
|
||||
/*
|
||||
#ifdef _UNALZ_ICONV
|
||||
|
@ -48,6 +67,8 @@ void Usage()
|
|||
#endif // _UNALZ_ICONV
|
||||
printf(" -l : list contents of archive\n");
|
||||
printf(" -d directory : set output directory\n");
|
||||
printf(" -p : extract files to pipe, no messages\n");
|
||||
printf(" -pwd <pwd> : set password\n");
|
||||
|
||||
}
|
||||
|
||||
|
@ -57,6 +78,8 @@ void Usage()
|
|||
|
||||
void UnAlzCallback(const char* szMessage, INT64 nCurrent, INT64 nRange, void* param, BOOL* bHalt)
|
||||
{
|
||||
if(g_bPipeMode) return; // slient
|
||||
|
||||
// progress
|
||||
static char szFileName[1024]={0};
|
||||
INT64 percent;
|
||||
|
@ -101,14 +124,6 @@ void UnAlzCallback(const char* szMessage, INT64 nCurrent, INT64 nRange, void* pa
|
|||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
// printf("unalz v0.20 (2004/10/22) \n");
|
||||
// printf("unalz v0.22 (2004/10/27) \n");
|
||||
// printf("unalz v0.23 (2004/10/30) \n");
|
||||
// printf("unalz v0.31 (2004/11/27) \n");
|
||||
// printf("unalz v0.4 (2005/06/18) \n");
|
||||
printf("unalz v0.5 (2005/07/09) \n");
|
||||
printf("Copyright(C) 2004-2005 by hardkoder (http://www.kipple.pe.kr) \n");
|
||||
|
||||
if(argc<2)
|
||||
{
|
||||
Usage();
|
||||
|
@ -119,6 +134,7 @@ int main(int argc, char* argv[])
|
|||
char* source=NULL;
|
||||
char* destpath=".";
|
||||
char* destcodepage=NULL;
|
||||
char* password=NULL;
|
||||
int count;
|
||||
BOOL listMode = FALSE;
|
||||
vector<string> filelist;
|
||||
|
@ -187,12 +203,22 @@ int main(int argc, char* argv[])
|
|||
{
|
||||
listMode = TRUE;
|
||||
}
|
||||
else if(strcmp(argv[count], "-p")==0)
|
||||
{
|
||||
g_bPipeMode = TRUE;
|
||||
}
|
||||
else if(strcmp(argv[count], "-d")==0) // dest dir
|
||||
{
|
||||
count++;
|
||||
if(count>=argc) {Usage();return 0;} // dest dir 이 정상 지정되지 않았다..
|
||||
destpath = argv[count];
|
||||
}
|
||||
else if(strcmp(argv[count], "-pwd")==0) // pwd
|
||||
{
|
||||
count++;
|
||||
if(count>=argc) {Usage();return 0;} // dest dir 이 정상 지정되지 않았다..
|
||||
password = argv[count];
|
||||
}
|
||||
else // 옵션이 아닌 경우
|
||||
{
|
||||
if(source==NULL) // 소스 파일 경로
|
||||
|
@ -213,6 +239,12 @@ int main(int argc, char* argv[])
|
|||
#endif
|
||||
|
||||
|
||||
if(g_bPipeMode==FALSE)
|
||||
Copyright(); // copyright 표시
|
||||
|
||||
// pipe mode setting
|
||||
unalz.SetPipeMode(g_bPipeMode);
|
||||
|
||||
// 파일 열기
|
||||
if(unalz.Open(source)==FALSE)
|
||||
{
|
||||
|
@ -235,13 +267,21 @@ int main(int argc, char* argv[])
|
|||
else
|
||||
{
|
||||
if(unalz.IsEncrypted())
|
||||
{
|
||||
if(password) // command line 으로 암호가 지정되었을 경우.
|
||||
{
|
||||
unalz.setPassword(password);
|
||||
}
|
||||
else
|
||||
{
|
||||
char pwd[256];
|
||||
printf("Enter Password : ");
|
||||
fgets(pwd,256,stdin);
|
||||
unalz.setPassword(pwd);
|
||||
}
|
||||
}
|
||||
|
||||
if(g_bPipeMode==FALSE)
|
||||
printf("\nExtract %s to %s\n", source, destpath);
|
||||
|
||||
// callback 함수 세팅
|
||||
|
@ -254,6 +294,7 @@ int main(int argc, char* argv[])
|
|||
{
|
||||
if(unalz.SetCurrentFile(i->c_str())==FALSE)
|
||||
{
|
||||
if(g_bPipeMode==FALSE)
|
||||
printf("filename not matched : %s\n", i->c_str());
|
||||
}
|
||||
else
|
||||
|
@ -263,6 +304,8 @@ int main(int argc, char* argv[])
|
|||
else // 모든 파일 다풀기.
|
||||
{
|
||||
if(unalz.ExtractAll(destpath)==FALSE)
|
||||
{
|
||||
if(g_bPipeMode==FALSE)
|
||||
{
|
||||
printf("\n");
|
||||
printf("extract %s to %s failed.\n", source, destpath);
|
||||
|
@ -270,6 +313,8 @@ int main(int argc, char* argv[])
|
|||
unalz.GetLastErrStr());
|
||||
}
|
||||
}
|
||||
}
|
||||
if(g_bPipeMode==FALSE)
|
||||
printf("\ndone..\n");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue