本文整理汇总了C++中VSIFilesystemHandler类的典型用法代码示例。如果您正苦于以下问题:C++ VSIFilesystemHandler类的具体用法?C++ VSIFilesystemHandler怎么用?C++ VSIFilesystemHandler使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了VSIFilesystemHandler类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: VSIIsCaseSensitiveFS
/**
* \brief Returns if the filenames of the filesystem are case sensitive.
*
* This method retrieves to which filesystem belongs the passed filename
* and return TRUE if the filenames of that filesystem are case sensitive.
*
* Currently, this will return FALSE only for Windows real filenames. Other
* VSI virtual filesystems are case sensitive.
*
* This methods avoid ugly #ifndef WIN32 / #endif code, that is wrong when
* dealing with virtual filenames.
*
* @param pszFilename the path of the filesystem object to be tested. UTF-8 encoded.
*
* @return TRUE if the filenames of the filesystem are case sensitive.
*
* @since GDAL 1.8.0
*/
int VSIIsCaseSensitiveFS( const char * pszFilename )
{
VSIFilesystemHandler *poFSHandler =
VSIFileManager::GetHandler( pszFilename );
return poFSHandler->IsCaseSensitive( pszFilename );
}
开发者ID:drownedout,项目名称:datamap,代码行数:25,代码来源:cpl_vsil.cpp
示例2: VSIGetDiskFreeSpace
GIntBig VSIGetDiskFreeSpace(const char *pszDirname)
{
VSIFilesystemHandler *poFSHandler =
VSIFileManager::GetHandler( pszDirname );
return poFSHandler->GetDiskFreeSpace( pszDirname );
}
开发者ID:Wedjaa,项目名称:node-gdal,代码行数:7,代码来源:cpl_vsil.cpp
示例3: VSIRmdir
int VSIRmdir( const char * pszDirname )
{
VSIFilesystemHandler *poFSHandler =
VSIFileManager::GetHandler( pszDirname );
return poFSHandler->Rmdir( pszDirname );
}
开发者ID:drownedout,项目名称:datamap,代码行数:8,代码来源:cpl_vsil.cpp
示例4: VSIRename
int VSIRename( const char * oldpath, const char * newpath )
{
VSIFilesystemHandler *poFSHandler =
VSIFileManager::GetHandler( oldpath );
return poFSHandler->Rename( oldpath, newpath );
}
开发者ID:drownedout,项目名称:datamap,代码行数:8,代码来源:cpl_vsil.cpp
示例5: VSIUnlink
int VSIUnlink( const char * pszFilename )
{
VSIFilesystemHandler *poFSHandler =
VSIFileManager::GetHandler( pszFilename );
return poFSHandler->Unlink( pszFilename );
}
开发者ID:drownedout,项目名称:datamap,代码行数:8,代码来源:cpl_vsil.cpp
示例6: VSIMkdir
int VSIMkdir( const char *pszPathname, long mode )
{
VSIFilesystemHandler *poFSHandler =
VSIFileManager::GetHandler( pszPathname );
return poFSHandler->Mkdir( pszPathname, mode );
}
开发者ID:drownedout,项目名称:datamap,代码行数:8,代码来源:cpl_vsil.cpp
示例7: return
FILE *VSIFOpenL( const char * pszFilename, const char * pszAccess )
{
VSIFilesystemHandler *poFSHandler =
VSIFileManager::GetHandler( pszFilename );
return (FILE *) poFSHandler->Open( pszFilename, pszAccess );
}
开发者ID:AbdelghaniDr,项目名称:mirror,代码行数:8,代码来源:cpl_vsil.cpp
示例8: VSIStatL
int VSIStatL( const char * pszFilename, VSIStatBufL *psStatBuf )
{
VSIFilesystemHandler *poFSHandler =
VSIFileManager::GetHandler( pszFilename );
return poFSHandler->Stat( pszFilename, psStatBuf );
}
开发者ID:AbdelghaniDr,项目名称:mirror,代码行数:8,代码来源:cpl_vsil.cpp
示例9:
VSILFILE *VSIFOpenL( const char * pszFilename, const char * pszAccess )
{
VSIFilesystemHandler *poFSHandler =
VSIFileManager::GetHandler( pszFilename );
VSILFILE* fp = (VSILFILE *) poFSHandler->Open( pszFilename, pszAccess );
VSIDebug3( "VSIFOpenL(%s,%s) = %p", pszFilename, pszAccess, fp );
return fp;
}
开发者ID:drownedout,项目名称:datamap,代码行数:12,代码来源:cpl_vsil.cpp
示例10:
VSILFILE *VSIFOpenExL( const char * pszFilename, const char * pszAccess, int bSetError )
{
VSIFilesystemHandler *poFSHandler =
VSIFileManager::GetHandler( pszFilename );
VSILFILE* fp = reinterpret_cast<VSILFILE *>(
poFSHandler->Open( pszFilename, pszAccess, CPL_TO_BOOL(bSetError) ) );
VSIDebug4( "VSIFOpenExL(%s,%s,%d) = %p", pszFilename, pszAccess, bSetError, fp );
return fp;
}
开发者ID:Wedjaa,项目名称:node-gdal,代码行数:13,代码来源:cpl_vsil.cpp
示例11: VSIStatL
int VSIStatL( const char * pszFilename, VSIStatBufL *psStatBuf )
{
char szAltPath[4];
/* enable to work on "C:" as if it were "C:\" */
if( strlen(pszFilename) == 2 && pszFilename[1] == ':' )
{
szAltPath[0] = pszFilename[0];
szAltPath[1] = pszFilename[1];
szAltPath[2] = '\\';
szAltPath[3] = '\0';
pszFilename = szAltPath;
}
VSIFilesystemHandler *poFSHandler =
VSIFileManager::GetHandler( pszFilename );
return poFSHandler->Stat( pszFilename, psStatBuf );
}
开发者ID:brunosimoes,项目名称:WorldWind,代码行数:20,代码来源:cpl_vsil.cpp
示例12: VSIStatExL
int VSIStatExL( const char * pszFilename, VSIStatBufL *psStatBuf, int nFlags )
{
char szAltPath[4];
/* enable to work on "C:" as if it were "C:\" */
if( strlen(pszFilename) == 2 && pszFilename[1] == ':' )
{
szAltPath[0] = pszFilename[0];
szAltPath[1] = pszFilename[1];
szAltPath[2] = '\\';
szAltPath[3] = '\0';
pszFilename = szAltPath;
}
VSIFilesystemHandler *poFSHandler =
VSIFileManager::GetHandler( pszFilename );
if (nFlags == 0)
nFlags = VSI_STAT_EXISTS_FLAG | VSI_STAT_NATURE_FLAG | VSI_STAT_SIZE_FLAG;
return poFSHandler->Stat( pszFilename, psStatBuf, nFlags );
}
开发者ID:drownedout,项目名称:datamap,代码行数:23,代码来源:cpl_vsil.cpp
示例13: osDoubleVsi
char* VSIArchiveFilesystemHandler::SplitFilename(const char *pszFilename,
CPLString &osFileInArchive,
int bCheckMainFileExists)
{
int i = 0;
if (strcmp(pszFilename, GetPrefix()) == 0)
return NULL;
/* Allow natural chaining of VSI drivers without requiring double slash */
CPLString osDoubleVsi(GetPrefix());
osDoubleVsi += "/vsi";
if (strncmp(pszFilename, osDoubleVsi.c_str(), osDoubleVsi.size()) == 0)
pszFilename += strlen(GetPrefix());
else
pszFilename += strlen(GetPrefix()) + 1;
while(pszFilename[i])
{
std::vector<CPLString> oExtensions = GetExtensions();
std::vector<CPLString>::const_iterator iter;
int nToSkip = 0;
for( iter = oExtensions.begin(); iter != oExtensions.end(); ++iter )
{
const CPLString& osExtension = *iter;
if (EQUALN(pszFilename + i, osExtension.c_str(), strlen(osExtension.c_str())))
{
nToSkip = strlen(osExtension.c_str());
break;
}
}
if (nToSkip != 0)
{
VSIStatBufL statBuf;
char* archiveFilename = CPLStrdup(pszFilename);
int bArchiveFileExists = FALSE;
if (archiveFilename[i + nToSkip] == '/' ||
archiveFilename[i + nToSkip] == '\\')
{
archiveFilename[i + nToSkip] = 0;
}
if (!bCheckMainFileExists)
{
bArchiveFileExists = TRUE;
}
else
{
CPLMutexHolder oHolder( &hMutex );
if (oFileList.find(archiveFilename) != oFileList.end() )
{
bArchiveFileExists = TRUE;
}
}
if (!bArchiveFileExists)
{
VSIFilesystemHandler *poFSHandler =
VSIFileManager::GetHandler( archiveFilename );
if (poFSHandler->Stat(archiveFilename, &statBuf,
VSI_STAT_EXISTS_FLAG | VSI_STAT_NATURE_FLAG) == 0 &&
!VSI_ISDIR(statBuf.st_mode))
{
bArchiveFileExists = TRUE;
}
}
if (bArchiveFileExists)
{
if (pszFilename[i + nToSkip] == '/' ||
pszFilename[i + nToSkip] == '\\')
{
char* pszArchiveInFileName = CPLStrdup(pszFilename + i + nToSkip + 1);
/* Replace a/../b by b and foo/a/../b by foo/b */
while(TRUE)
{
char* pszPrevDir = strstr(pszArchiveInFileName, "/../");
if (pszPrevDir == NULL || pszPrevDir == pszArchiveInFileName)
break;
char* pszPrevSlash = pszPrevDir - 1;
while(pszPrevSlash != pszArchiveInFileName &&
*pszPrevSlash != '/')
pszPrevSlash --;
if (pszPrevSlash == pszArchiveInFileName)
memmove(pszArchiveInFileName, pszPrevDir + nToSkip, strlen(pszPrevDir + nToSkip) + 1);
else
memmove(pszPrevSlash + 1, pszPrevDir + nToSkip, strlen(pszPrevDir + nToSkip) + 1);
}
osFileInArchive = pszArchiveInFileName;
CPLFree(pszArchiveInFileName);
}
//.........这里部分代码省略.........
开发者ID:drownedout,项目名称:datamap,代码行数:101,代码来源:cpl_vsil_abstract_archive.cpp
注:本文中的VSIFilesystemHandler类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论