Salome HOME
cf3999f14bf3a722954325322d77dbd5c7038836
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_Tool.hxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  File      : SALOMEDSImpl_Tool.hxx
24 //  Created   : Mon Oct 21 16:24:50 2002
25 //  Author    : Sergey RUIN
26 //  Project   : SALOME
27 //  Module    : SALOMEDSImpl
28 //
29 #ifndef __SALOMEDSIMPL_TOOL_H__
30 #define __SALOMEDSIMPL_TOOL_H__
31
32 #include "SALOMEDSImpl_Defines.hxx"
33
34 #include <string>
35 #include <vector>
36 #include "DF_Label.hxx"
37
38 class SALOMEDSIMPL_EXPORT SALOMEDSImpl_Tool
39 {
40
41 public:
42  
43   // Returns the unique temporary directory, that is defined in SALOME_TMP_DIR if this variable is set
44   // otherwise return /tmp/something/ for Unix or c:\something\ for WIN32
45   static std::string GetTmpDir();
46
47  
48   // Removes files which are in <theDirectory>, the files for deletion are listed in <theFiles>
49   // if <IsDirDeleted> is true <theDirectory> is also deleted if it is empty
50   static void RemoveTemporaryFiles(const std::string& theDirectory,
51                                    const std::vector<std::string>& theFiles,
52                                    const bool IsDirDeleted);
53
54   // Returns the name by the path
55   // for an example: if thePath = "/tmp/aaa/doc1.hdf" the function returns "doc1"
56   static std::string GetNameFromPath(const std::string& thePath);
57
58   // Returns the directory by the path
59   // for an example: if thePath = "/tmp/aaa/doc1.hdf" the function returns "/tmp/aaa"
60   static std::string GetDirFromPath(const std::string& thePath);
61
62   //The functions returns a list of substring of initial string divided by given separator
63   static std::vector<std::string> splitString(const std::string& theValue, char separator);
64
65   //The functions returns a list of substring of initial string divided by given separator, 
66   //include empty strings
67   static std::vector<std::string> splitStringWithEmpty(const std::string& theValue, char separator);
68   
69   //The functions returns a list of substring of initial string divided by given separator, 
70   //include empty strings
71   static std::vector< std::vector<std::string> > splitStringWithEmpty(const std::string& theValue,
72                                                                       char separator1,
73                                                                       char separator2);
74   
75
76   //Returns a system date  
77   static void GetSystemDate(int& year, int& month, int& day, int& hours, int& minutes, int& seconds);
78
79   //Returns a name of the user
80   static std::string GetUserName();
81
82 };
83 #endif
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103