]> SALOME platform Git repositories - modules/kernel.git/blob - src/TOOLSDS/SALOMEDS_Tool.hxx
Salome HOME
Updated environment and import/export directives
[modules/kernel.git] / src / TOOLSDS / SALOMEDS_Tool.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/
19 //
20 //  File      : SALOMEDS_Tool.hxx
21 //  Created   : Mon Oct 21 16:24:50 2002
22 //  Author    : Sergey RUIN
23
24 //  Project   : SALOME
25 //  Module    : SALOMEDS
26 //  Copyright : Open CASCADE
27
28
29 #ifndef __SALOMEDS_Tool_H__
30 #define __SALOMEDS_Tool_H__
31
32 #include <string>
33 #include <list> 
34
35
36 // IDL headers
37 #include "SALOMEconfig.h"
38 #include CORBA_SERVER_HEADER(SALOMEDS)
39
40 #ifdef WNT
41  #if defined TOOLSDS_EXPORTS
42   #if defined WIN32
43    #define TOOLSDS_EXPORT __declspec( dllexport )
44   #else
45    #define TOOLSDS_EXPORT
46   #endif
47  #else
48   #if defined WIN32
49    #define TOOLSDS_EXPORT __declspec( dllimport )
50   #else
51    #define TOOLSDS_EXPORT
52   #endif
53  #endif
54 #else
55  #define TOOLSDS_EXPORT
56 #endif
57
58 class TOOLSDS_EXPORT SALOMEDS_Tool                                
59 {
60 public:
61  
62   // Returns the unique temporary directory, that is defined in SALOME_TMP_DIR if this variable is set
63   // otherwise return /tmp/something/ for Unix or c:\something\ for WNT
64   static std::string GetTmpDir();
65
66  
67   // Removes files which are in <theDirectory>, the files for deletion are listed in <theFiles>
68   // if <IsDirDeleted> is true <theDirectory> is also deleted if it is empty
69   static void RemoveTemporaryFiles(const std::string& theDirectory,
70                                    const SALOMEDS::ListOfFileNames& theFiles,
71                                    const bool IsDirDeleted);
72
73   // Converts files listed in <theFiles> which are in <theFromDirectory> into a byte sequence TMPFile
74   static SALOMEDS::TMPFile* PutFilesToStream(const std::string& theFromDirectory, 
75                                              const SALOMEDS::ListOfFileNames& theFiles,
76                                              const int theNamesOnly = 0);
77
78   // Converts a byte sequence <theStream> to files and places them in <theToDirectory>
79   static SALOMEDS::ListOfFileNames_var PutStreamToFiles(const SALOMEDS::TMPFile& theStream,
80                                                         const std::string& theToDirectory,
81                                                         const int theNamesOnly = 0);
82
83   // Returns the name by the path
84   // for an example: if thePath = "/tmp/aaa/doc1.hdf" the function returns "doc1"
85   static std::string GetNameFromPath(const std::string& thePath);
86
87   // Returns the directory by the path
88   // for an example: if thePath = "/tmp/aaa/doc1.hdf" the function returns "/tmp/aaa"
89   static std::string GetDirFromPath(const std::string& thePath);
90
91   // Retrieves specified flaf from "AttributeFlags" attribute
92   static bool GetFlag( const int             theFlag,
93                        SALOMEDS::Study_var   theStudy,
94                        SALOMEDS::SObject_var theObj );
95
96   // Sets/Unsets specified flaf from "AttributeFlags" attribute
97   static bool SetFlag( const int           theFlag,
98                        SALOMEDS::Study_var theStudy,
99                        const std::string&  theEntry,
100                        const bool          theValue );
101
102   // Get all children of object. If theObj is null all objects of study are returned
103   static void GetAllChildren( SALOMEDS::Study_var               theStudy,
104                               SALOMEDS::SObject_var             theObj,
105                               std::list<SALOMEDS::SObject_var>& theList );
106
107 };
108 #endif
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128