X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FBasics%2FBasics_DirUtils.cxx;h=e3f224c3b644ed3a156849fa1f71582bcd427c4f;hb=1bbffef73eeeb5b2a14d8fc7bdf91affdafae664;hp=daa4b8f55567d6ed3cb697e7a232b363b17baedd;hpb=2c3b0cf16d5069414bb63f3829a8ab0a2b7072db;p=modules%2Fkernel.git diff --git a/src/Basics/Basics_DirUtils.cxx b/src/Basics/Basics_DirUtils.cxx index daa4b8f55..e3f224c3b 100644 --- a/src/Basics/Basics_DirUtils.cxx +++ b/src/Basics/Basics_DirUtils.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2019 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2023 CEA, EDF, OPEN CASCADE // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -27,16 +27,19 @@ #include #include +#include + #ifndef WIN32 -# include -# include -# include +#include +#include +#include #else #include #define F_OK 0 #define access _access -# include -# include +#include +#include +#include #endif #ifdef WIN32 @@ -52,22 +55,22 @@ namespace Kernel_Utils std::string GetBaseName( const std::string& file_path, const bool with_extension ) { std::string tmp_str = file_path; - int pos = file_path.rfind( _separator_ ); - if ( pos >= 0 ) - tmp_str = pos < (int)file_path.size()-1 ? file_path.substr( pos+1 ) : ""; + auto pos = file_path.rfind( _separator_ ); + if ( pos != std::string::npos ) + tmp_str = pos < file_path.size()-1 ? file_path.substr( pos+1 ) : ""; pos = tmp_str.rfind( _extension_ ); - if( !with_extension && pos >= 0 ) - tmp_str = pos < (int)tmp_str.size()-1 ? tmp_str.substr( 0, pos ) : ""; + if( !with_extension && pos != std::string::npos ) + tmp_str = pos < tmp_str.size()-1 ? tmp_str.substr( 0, pos ) : ""; return tmp_str; } std::string GetDirName( const std::string& file_path ) { - int pos = file_path.rfind( _separator_ ); - if ( pos >= 0 ) - return pos < (int)file_path.size()-1 ? file_path.substr(0, pos ) : ""; + auto pos = file_path.rfind( _separator_ ); + if ( pos != std::string::npos ) + return pos < file_path.size()-1 ? file_path.substr(0, pos ) : ""; return std::string("."); } @@ -77,7 +80,7 @@ namespace Kernel_Utils std::wstring w_tmp_path_env = utf8_decode_s( tmp_path_env ); wchar_t* val = _wgetenv( w_tmp_path_env.c_str() ); std::string dir = val ? utf8_encode_s(val) : ""; -#else +#else char* val = getenv( tmp_path_env.c_str() ); std::string dir = val ? val : ""; #endif @@ -128,7 +131,13 @@ namespace Kernel_Utils aTmpDir += aSubDir; //Get RND sub directory - std::string aDir = aTmpDir; +#ifdef WIN32 + int pid = _getpid(); +#else + int pid = getpid(); +#endif + + std::string aDir = aTmpDir + std::to_string(pid) + "_"; for ( aRND = 0; IsExists( aDir ); aRND++ ) { @@ -138,7 +147,7 @@ namespace Kernel_Utils if ( aDir.back() != _separator_ ) aDir += _separator_; -#ifdef WIN32 +#ifdef WIN32 #ifdef UNICODE std::wstring aDirToCreate = utf8_decode_s(aDir); #else @@ -163,7 +172,7 @@ namespace Kernel_Utils //============================================================================ // function : GetTempFileName // purpose : Returns the unique temporary file name without any extension /tmp/something/file for Unix or c:\something\file for WIN32 - //============================================================================ + //============================================================================ std::string GetTmpFileName() { std::string tmpDir = GetTmpDir(); @@ -175,7 +184,7 @@ namespace Kernel_Utils sprintf(buffer, "%d", aRND); std::string aSubDir(buffer); if(aSubDir.size() <= 1) aSubDir = std::string("123409876"); - + aFilePath = tmpDir; for(aRND = 0; IsExists(aFilePath); aRND++) { sprintf(buffer, "%d", aRND); @@ -184,12 +193,12 @@ namespace Kernel_Utils } return aFilePath; } - + std::string AddExtension( const std::string& name ) { std::string tmp_str = name; - int pos = tmp_str.rfind( _extension_ ); - if( pos < 0 ) + auto pos = tmp_str.rfind( _extension_ ); + if( pos == std::string::npos ) return tmp_str.append( _extension_ ); return tmp_str; } @@ -197,13 +206,13 @@ namespace Kernel_Utils //============================================================================ // function : IsExists // purpose : Returns True(False) if the path (not)exists - //============================================================================ - bool IsExists(const std::string& thePath) + //============================================================================ + bool IsExists(const std::string& thePath) { #if defined WIN32 && defined UNICODE int status = _waccess( utf8_decode_s( thePath).c_str(), F_OK ); #else - int status = access ( thePath.c_str() , F_OK ); + int status = access ( thePath.c_str() , F_OK ); #endif if (status != 0) return false; return true; @@ -212,7 +221,7 @@ namespace Kernel_Utils //============================================================================ // function : IsWritable // purpose : Returns True(False) if the path is (not) writable - //============================================================================ + //============================================================================ bool IsWritable(const std::string& thePath) { #ifdef WIN32 @@ -226,8 +235,8 @@ namespace Kernel_Utils return false; } } -#else - int status = access(thePath.c_str(),W_OK); +#else + int status = access(thePath.c_str(),W_OK); if (status != 0) return false; #endif return true; @@ -237,7 +246,7 @@ namespace Kernel_Utils //============================================================================ // function : GetDirByPath // purpose : Returns directory by path and converts it to native system format - //============================================================================ + //============================================================================ std::string GetDirByPath(const std::string& thePath) { if (thePath.empty()) @@ -291,8 +300,8 @@ namespace Kernel_Utils // function : IsEmptyDir // purpose : Returns True(False) if the path (not) empty // Also returns False if the path is not valid - //============================================================================ - bool IsEmptyDir(const std::string& thePath) + //============================================================================ + bool IsEmptyDir(const std::string& thePath) { if ( thePath.empty() || !IsExists(thePath)) return false; @@ -339,4 +348,28 @@ namespace Kernel_Utils #endif return result; } + + //============================================================================ + // function : BackSlashToSlash + // purpose : Convert back slash to slash + //============================================================================ + std::string BackSlashToSlash(const std::string& path) { + std::string res = path; + std::replace(res.begin(), res.end(), '\\', '/'); + return res; + } + + + //============================================================================ + // function : BackSlashToSlash + // purpose : Convert back slash to slash + //============================================================================ + std::string HomePath() { +#ifdef WIN32 + std::string homedir = getenv("USERPROFILE"); +#else + std::string homedir = getenv("HOME"); +#endif + return homedir; + } }