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