+ contrib/hbziparch/readme.txt
+ contrib/hbziparch/zlib
+ contrib/hbziparch/zlib/deflate.h
+ contrib/hbziparch/zlib/zlib.h
* contrib/hbziparch/common.mak
* contrib/hbziparch/hbcomprs.c
* contrib/hbziparch/hbziparc.c
* contrib/hbziparch/hbzipcom.cpp
* contrib/hbziparch/hbzipnew.cpp
* contrib/hbziparch/License.txt
* contrib/hbziparch/make_gcc.sh
* contrib/hbziparch/make_vc.bat
* contrib/hbziparch/Makefile
* contrib/hbziparch/resource.h
* contrib/hbziparch/stdafx.h
* contrib/hbziparch/ZipExport.h
* contrib/hbziparch/ZipPathComponent_lnx.cpp
* contrib/hbziparch/ZipPathComponent_win.cpp
* contrib/hbziparch/ZipPlatform_lnx.cpp
* contrib/hbziparch/ZipPlatform_win.cpp
* contrib/hbziparch/ZipString.cpp
- contrib/hbziparch/stdafx.cpp
- contrib/hbziparch/zipabstractfile.h
- contrib/hbziparch/ziparchive.cpp
- contrib/hbziparch/ziparchive.h
- contrib/hbziparch/zipautobuffer.cpp
- contrib/hbziparch/zipautobuffer.h
- contrib/hbziparch/zipbaseexception.h
- contrib/hbziparch/zipcentraldir.cpp
- contrib/hbziparch/zipcentraldir.h
- contrib/hbziparch/zipcollections.h
- contrib/hbziparch/zipcompatibility.cpp
- contrib/hbziparch/zipcompatibility.h
- contrib/hbziparch/zipexception.cpp
- contrib/hbziparch/zipexception.h
- contrib/hbziparch/zipfile.cpp
- contrib/hbziparch/zipfile.h
- contrib/hbziparch/zipfileheader.cpp
- contrib/hbziparch/zipfileheader.h
- contrib/hbziparch/zipfilemapping.h
- contrib/hbziparch/zipinternalinfo.h
- contrib/hbziparch/zipmemfile.cpp
- contrib/hbziparch/zipmemfile.h
- contrib/hbziparch/zippathcomponent.h
- contrib/hbziparch/zipplatform.h
- contrib/hbziparch/zipplatformcomm.cpp
- contrib/hbziparch/zipstorage.cpp
- contrib/hbziparch/zipstorage.h
- contrib/hbziparch/zipstring.h
* ZipArchive 2.x -> ZipArchive 3.2.0 (latest)
Only one minor modification (reported to author)
Plus integrated ZLIB replaced with hbzlib.
; Pass 1
95 lines
2.4 KiB
C++
95 lines
2.4 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
// This source file is part of the ZipArchive library source distribution and
|
|
// is Copyrighted 2000 - 2007 by Artpol Software - Tadeusz Dracz
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License
|
|
// as published by the Free Software Foundation; either version 2
|
|
// of the License, or (at your option) any later version.
|
|
//
|
|
// For the licensing details refer to the License.txt file.
|
|
//
|
|
// Web Site: http://www.artpol-software.com
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "_platform.h"
|
|
|
|
#ifdef ZIP_ARCHIVE_LNX
|
|
|
|
#include "stdafx.h"
|
|
#include "ZipPathComponent.h"
|
|
|
|
|
|
CZipPathComponent::~CZipPathComponent()
|
|
{
|
|
}
|
|
|
|
void CZipPathComponent::SetFullPath(LPCTSTR lpszFullPath)
|
|
{
|
|
|
|
CZipString szTempPath(lpszFullPath);
|
|
const CZipString szPrefix = _T("\\\\?\\unc\\");
|
|
int i = -1, iLen = szPrefix.GetLength();
|
|
if (iLen > szTempPath.GetLength())
|
|
iLen = szTempPath.GetLength();
|
|
CZipString szPossiblePrefix = szTempPath.Left(iLen);
|
|
szPossiblePrefix.MakeLower(); // must perform case insensitive comparison
|
|
while (++i < iLen && szPossiblePrefix[i] == szPrefix[i]);
|
|
if (i == 2 || i == 4 || i == 8) // unc path, unicode path or unc path meeting windows file name conventions
|
|
{
|
|
m_szPrefix = szTempPath.Left(i);
|
|
szTempPath = szTempPath.Mid(i);
|
|
}
|
|
else
|
|
m_szPrefix.Empty();
|
|
|
|
|
|
m_szDrive.Empty();
|
|
m_szFileTitle.Empty();
|
|
m_szDirectory.Empty();
|
|
m_szFileExt.Empty();
|
|
int p;
|
|
for (p = szTempPath.GetLength() - 1; p >= 0; p--)
|
|
if (szTempPath[p] == m_cSeparator)
|
|
break;
|
|
|
|
if (p != -1)
|
|
{
|
|
m_szDirectory = szTempPath.Left(p);
|
|
if (p == szTempPath.GetLength() - 1 )
|
|
return; // no filename present
|
|
else
|
|
p++;
|
|
}
|
|
else
|
|
p = 0;
|
|
|
|
// p points at the beginning of the filename
|
|
m_szFileTitle = szTempPath.Mid(p);
|
|
for (p = m_szFileTitle.GetLength() - 1; p >= 0; p--)
|
|
if (m_szFileTitle[p] == _T('.'))
|
|
break;
|
|
|
|
if (p != -1)
|
|
{
|
|
m_szFileExt = m_szFileTitle.Mid(p+1);
|
|
m_szFileTitle = m_szFileTitle.Left(p);
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
CZipString CZipPathComponent::GetNoDrive() const
|
|
{
|
|
CZipString szPath = m_szDirectory;
|
|
CZipString szFileName = GetFileName();
|
|
if (!szFileName.IsEmpty() && !szPath.IsEmpty())
|
|
szPath += m_cSeparator;
|
|
|
|
szPath += szFileName;
|
|
return szPath;
|
|
}
|
|
|
|
#endif // ZIP_ARCHIVE_LNX
|