1 // Copyright (C) 2007-2024 CEA, EDF, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // File : SALOMEDSImpl_Tool.hxx
24 // Created : Mon Oct 21 16:24:50 2002
25 // Author : Sergey RUIN
27 // Module : SALOMEDSImpl
29 #ifndef __SALOMEDSIMPL_TOOL_H__
30 #define __SALOMEDSIMPL_TOOL_H__
32 #include "SALOMEDSImpl_Defines.hxx"
36 #include "DF_Label.hxx"
42 class SALOMEDSIMPL_EXPORT SALOMEDSImpl_Tool
47 // Returns the unique temporary directory, that is defined in SALOME_TMP_DIR if this variable is set
48 // otherwise return /tmp/something/ for Unix or c:\something\ for WIN32
49 static std::string GetTmpDir();
52 // Removes files which are in <theDirectory>, the files for deletion are listed in <theFiles>
53 // if <IsDirDeleted> is true <theDirectory> is also deleted if it is empty
54 static void RemoveTemporaryFiles(const std::string& theDirectory,
55 const std::vector<std::string>& theFiles,
56 const bool IsDirDeleted);
58 // Returns the name by the path
59 // for an example: if thePath = "/tmp/aaa/doc1.hdf" the function returns "doc1"
60 static std::string GetNameFromPath(const std::string& thePath);
62 // Returns the directory by the path
63 // for an example: if thePath = "/tmp/aaa/doc1.hdf" the function returns "/tmp/aaa"
64 static std::string GetDirFromPath(const std::string& thePath);
66 //The functions returns a list of substring of initial string divided by given separator
67 static std::vector<std::string> splitString(const std::string& theValue, char separator);
69 //The functions returns a list of substring of initial string divided by given separator,
70 //include empty strings
71 static std::vector<std::string> splitStringWithEmpty(const std::string& theValue, char separator);
73 //The functions returns a list of substring of initial string divided by given separator,
74 //include empty strings
75 static std::vector< std::vector<std::string> > splitStringWithEmpty(const std::string& theValue,
80 //Returns a system date
81 static void GetSystemDate(int& year, int& month, int& day, int& hours, int& minutes, int& seconds);
83 //Returns a name of the user
84 static std::string GetUserName();