Salome HOME
updated copyright message
[modules/kernel.git] / src / TOOLSDS / SALOMEDS_Tool.hxx
1 // Copyright (C) 2007-2023  CEA, EDF, 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      : SALOMEDS_Tool.hxx
24 //  Created   : Mon Oct 21 16:24:50 2002
25 //  Author    : Sergey RUIN
26 //  Project   : SALOME
27 //  Module    : SALOMEDS
28 //
29 #ifndef __SALOMEDS_Tool_H__
30 #define __SALOMEDS_Tool_H__
31
32 #include <string>
33 #include <list> 
34 #include <vector>
35 #include <stdlib.h>
36
37
38 // IDL headers
39 #include "SALOMEconfig.h"
40 #include CORBA_SERVER_HEADER(SALOMEDS)
41
42 #ifdef WIN32
43 # if defined TOOLSDS_EXPORTS
44 #  define TOOLSDS_EXPORT __declspec( dllexport )
45 # else
46 #  define TOOLSDS_EXPORT __declspec( dllimport )
47 # endif
48 #else
49 # define TOOLSDS_EXPORT
50 #endif
51
52 class TOOLSDS_EXPORT SALOMEDS_Tool                                
53 {
54 public:
55
56   typedef std::vector<std::string> ListOfFiles;
57  
58   // Returns the unique temporary directory, that is defined in SALOME_TMP_DIR if this variable is set
59   // otherwise return /tmp/something/ for Unix or c:\something\ for WIN32
60   static std::string GetTmpDir();
61
62  
63   // Removes files which are in <theDirectory>, the files for deletion are listed in <theFiles>
64   // if <IsDirDeleted> is true <theDirectory> is also deleted if it is empty
65   static void RemoveTemporaryFiles(const std::string& theDirectory,
66                                    const ListOfFiles& theFiles,
67                                    const bool IsDirDeleted);
68
69   // Converts files listed in <theFiles> which are in <theFromDirectory> into a byte sequence TMPFile
70   static SALOMEDS::TMPFile* PutFilesToStream(const std::string& theFromDirectory, 
71                                              const ListOfFiles& theFiles,
72                                              const int theNamesOnly = 0);
73
74   // Converts files listed in <theFiles> which will be named as pointed in the <theFileNames> into a byte sequence TMPFile
75   static SALOMEDS::TMPFile* PutFilesToStream(const ListOfFiles& theFiles,
76                                              const ListOfFiles& theFileNames);
77
78   // Converts a byte sequence <theStream> to files and places them in <theToDirectory>
79   static ListOfFiles 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