]> SALOME platform Git repositories - modules/kernel.git/blob - src/TOOLSDS/SALOMEDS_Tool.cxx
Salome HOME
d36e8740509213c58adb9debf65630dc2ce24772
[modules/kernel.git] / src / TOOLSDS / SALOMEDS_Tool.cxx
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.cxx
21 //  Created   : Mon Oct 21 16:24:34 2002
22 //  Author    : Sergey RUIN
23
24 //  Project   : SALOME
25 //  Module    : SALOMEDS
26 //  Copyright : Open CASCADE
27
28 #include "SALOMEDS_Tool.hxx"
29
30 #include "utilities.h"
31
32 #include <TCollection_AsciiString.hxx> 
33
34 #include <OSD_Path.hxx>
35 #include <OSD_File.hxx>
36 #include <OSD_Directory.hxx>
37 #include <OSD_Process.hxx>
38 #include <OSD_Directory.hxx>
39 #include <OSD_Protection.hxx>
40 #include <OSD_SingleProtection.hxx>
41 #include <OSD_FileIterator.hxx>
42
43 #ifndef WNT
44 #include <stdio.h>
45 #include <iostream.h> 
46 #include <fstream.h>
47 #include <sys/time.h>
48 #else
49 #endif
50 #include <stdlib.h>
51
52 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
53
54 using namespace std;
55
56 //============================================================================
57 // function : GetTempDir
58 // purpose  : Return a temp directory to store created files like "/tmp/sub_dir/" 
59 //============================================================================ 
60 std::string SALOMEDS_Tool::GetTmpDir()
61 {
62   //Find a temporary directory to store a file
63
64   TCollection_AsciiString aTmpDir;
65
66   char *Tmp_dir = getenv("SALOME_TMP_DIR");
67   if(Tmp_dir != NULL) {
68     aTmpDir = TCollection_AsciiString(Tmp_dir);
69 #ifdef WIN32
70     if(aTmpDir.Value(aTmpDir.Length()) != '\\') aTmpDir+='\\';
71 #else
72     if(aTmpDir.Value(aTmpDir.Length()) != '/') aTmpDir+='/';
73 #endif      
74   }
75   else {
76 #ifdef WIN32
77     aTmpDir = TCollection_AsciiString("C:\\");
78 #else
79     aTmpDir = TCollection_AsciiString("/tmp/");
80 #endif
81   }
82
83   srand((unsigned int)time(NULL));
84   int aRND = 999 + (int)(100000.0*rand()/(RAND_MAX+1.0)); //Get a random number to present a name of a sub directory
85   TCollection_AsciiString aSubDir(aRND);
86   if(aSubDir.Length() <= 1) aSubDir = TCollection_AsciiString("123409876");
87
88   aTmpDir += aSubDir; //Get RND sub directory
89
90 #ifdef WIN32
91   if(aTmpDir.Value(aTmpDir.Length()) != '\\') aTmpDir+='\\';
92 #else
93   if(aTmpDir.Value(aTmpDir.Length()) != '/') aTmpDir+='/';
94 #endif
95
96   OSD_Path aPath(aTmpDir);
97   OSD_Directory aDir(aPath);
98
99   for(aRND = 0; aDir.Exists(); aRND++) {
100     aTmpDir.Insert((aTmpDir.Length() - 1), TCollection_AsciiString(aRND));  //Build a unique directory name
101     aPath = OSD_Path(aTmpDir);
102     aDir = OSD_Directory(aPath);
103   }
104
105   MESSAGE("#### TMP" << aTmpDir.ToCString());
106
107   OSD_Protection aProtection(OSD_RW, OSD_RWX, OSD_RX, OSD_RX);
108   aDir.Build(aProtection);
109
110   return aTmpDir.ToCString();
111 }
112
113 //============================================================================
114 // function : RemoveTemporaryFiles
115 // purpose  : Removes files listed in theFileList
116 //============================================================================
117 void SALOMEDS_Tool::RemoveTemporaryFiles(const std::string& theDirectory, 
118                                          const SALOMEDS::ListOfFileNames& theFiles,
119                                          const bool IsDirDeleted)
120 {
121   TCollection_AsciiString aDirName(const_cast<char*>(theDirectory.c_str()));
122
123   int i, aLength = theFiles.length();
124   for(i=0; i<aLength; i++) {
125     TCollection_AsciiString aFile(aDirName);
126 //     aFile += (char*)theFiles[i];
127     aFile += (char*)theFiles[i].in();
128     OSD_Path anOSDPath(aFile);
129     OSD_File anOSDFile(anOSDPath);
130     if(!anOSDFile.Exists()) continue;
131
132     OSD_Protection aProtection = anOSDFile.Protection();
133     aProtection.SetUser(OSD_RW);
134     anOSDFile.SetProtection(aProtection);
135
136     anOSDFile.Remove();
137   }
138
139   if(IsDirDeleted) {
140     OSD_Path aPath(aDirName);
141     OSD_Directory aDir(aPath);
142     OSD_FileIterator anIterator(aPath, '*');
143
144     if(aDir.Exists() && !anIterator.More()) aDir.Remove();
145   }
146
147 }
148
149 //============================================================================
150 // function : PutFilesToStream
151 // purpose  : converts the files from a list 'theFiles' to the stream
152 //============================================================================
153 SALOMEDS::TMPFile* 
154 SALOMEDS_Tool::PutFilesToStream(const std::string& theFromDirectory,
155                                 const SALOMEDS::ListOfFileNames& theFiles,
156                                 const int theNamesOnly)
157 {
158   int i, aLength = theFiles.length();
159   if(aLength == 0)
160 //    return NULL;
161     return (new SALOMEDS::TMPFile);
162
163   //Get a temporary directory for saved a file
164   TCollection_AsciiString aTmpDir(const_cast<char*>(theFromDirectory.c_str()));
165
166   long aBufferSize = 0;
167   long aCurrentPos;
168
169   int aNbFiles = 0;
170   int* aFileNameSize= new int[aLength];
171   long* aFileSize= new long[aLength];
172
173   //Determine the required size of the buffer
174
175   for(i=0; i<aLength; i++) {
176
177     //Check if the file exists
178     
179     if (!theNamesOnly) { // mpv 15.01.2003: if only file names must be stroed, then size of files is zero
180       TCollection_AsciiString aFullPath = aTmpDir + CORBA::string_dup(theFiles[i]);   
181       OSD_Path anOSDPath(aFullPath);
182       OSD_File anOSDFile(anOSDPath);
183       if(!anOSDFile.Exists()) continue;
184 #ifdef WNT
185       ifstream aFile(aFullPath.ToCString(), ios::binary);
186 #else
187       ifstream aFile(aFullPath.ToCString());
188 #endif
189       aFile.seekg(0, ios::end);
190       aFileSize[i] = aFile.tellg();
191       aBufferSize += aFileSize[i];              //Add a space to store the file
192     }
193     aFileNameSize[i] = strlen(theFiles[i])+1;
194     aBufferSize += aFileNameSize[i];          //Add a space to store the file name
195     aBufferSize += (theNamesOnly)?4:12;       //Add 4 bytes: a length of the file name,
196                                               //    8 bytes: length of the file itself
197     aNbFiles++;
198   } 
199
200   aBufferSize += 4;      //4 bytes for a number of the files that will be written to the stream;
201   unsigned char* aBuffer = new unsigned char[aBufferSize];  
202   if(aBuffer == NULL)
203 //    return NULL; 
204     return (new SALOMEDS::TMPFile);
205
206   //Initialize 4 bytes of the buffer by 0
207   memset(aBuffer, 0, 4); 
208   //Copy the number of files that will be written to the stream
209   memcpy(aBuffer, &aNbFiles, ((sizeof(int) > 4) ? 4 : sizeof(int))); 
210
211
212   aCurrentPos = 4;
213
214   for(i=0; i<aLength; i++) {
215     ifstream *aFile;
216     if (!theNamesOnly) { // mpv 15.01.2003: we don't open any file if theNamesOnly = true
217       TCollection_AsciiString aFullPath = aTmpDir + CORBA::string_dup(theFiles[i]);
218       OSD_Path anOSDPath(aFullPath);
219       OSD_File anOSDFile(anOSDPath);
220       if(!anOSDFile.Exists()) continue;
221 #ifdef WNT
222       aFile = new ifstream(aFullPath.ToCString(), ios::binary);
223 #else
224       aFile = new ifstream(aFullPath.ToCString());
225 #endif  
226     }
227     //Initialize 4 bytes of the buffer by 0
228     memset((aBuffer + aCurrentPos), 0, 4); 
229     //Copy the length of the file name to the buffer
230     memcpy((aBuffer + aCurrentPos), (aFileNameSize + i), ((sizeof(int) > 4) ? 4 : sizeof(int))); 
231     aCurrentPos += 4;
232
233     //Copy the file name to the buffer
234     memcpy((aBuffer + aCurrentPos), theFiles[i], aFileNameSize[i]);
235     aCurrentPos += aFileNameSize[i];
236     
237     if (!theNamesOnly) { // mpv 15.01.2003: we don't copy file content to the buffer if !theNamesOnly
238       //Initialize 8 bytes of the buffer by 0
239       memset((aBuffer + aCurrentPos), 0, 8); 
240       //Copy the length of the file to the buffer
241       memcpy((aBuffer + aCurrentPos), (aFileSize + i), ((sizeof(long) > 8) ? 8 : sizeof(long)));
242       aCurrentPos += 8;
243       
244       aFile->seekg(0, ios::beg);
245       aFile->read((char *)(aBuffer + aCurrentPos), aFileSize[i]);
246       aFile->close();
247       delete(aFile);
248       aCurrentPos += aFileSize[i];
249     }
250   }
251
252   delete[] aFileNameSize;
253   delete[] aFileSize;
254   
255   
256   CORBA::Octet* anOctetBuf =  (CORBA::Octet*)aBuffer;
257   
258   return (new SALOMEDS::TMPFile(aBufferSize, aBufferSize, anOctetBuf, 1));
259 }
260
261 //============================================================================
262 // function : PutStreamToFile
263 // purpose  : converts the stream "theStream" to the files
264 //============================================================================
265 SALOMEDS::ListOfFileNames_var 
266 SALOMEDS_Tool::PutStreamToFiles(const SALOMEDS::TMPFile& theStream,
267                                 const std::string& theToDirectory,
268                                 const int theNamesOnly)
269 {
270   if(theStream.length() == 0) 
271     return NULL;
272
273   //Get a temporary directory for saving a file
274   TCollection_AsciiString aTmpDir(const_cast<char*>(theToDirectory.c_str()));
275
276   unsigned char *aBuffer = (unsigned char*)theStream.NP_data();
277
278   if(aBuffer == NULL) return NULL;
279
280   long aFileSize, aCurrentPos = 4;
281   int i, aFileNameSize, aNbFiles = 0;
282
283   //Copy the number of files in the stream
284   memcpy(&aNbFiles, aBuffer, sizeof(int)); 
285
286   SALOMEDS::ListOfFileNames_var aFiles = new SALOMEDS::ListOfFileNames;
287   aFiles->length(aNbFiles);
288
289   for(i=0; i<aNbFiles; i++) {
290
291     //Put a length of the file name to aFileNameSize
292     memcpy(&aFileNameSize, (aBuffer + aCurrentPos), ((sizeof(int) > 4) ? 4 : sizeof(int))); 
293     aCurrentPos += 4;
294
295     char *aFileName = new char[aFileNameSize];
296     //Put a file name to aFileName
297     memcpy(aFileName, (aBuffer + aCurrentPos), aFileNameSize); 
298     aCurrentPos += aFileNameSize;
299  
300     //Put a length of the file to aFileSize
301     if (!theNamesOnly) {
302       memcpy(&aFileSize, (aBuffer + aCurrentPos), ((sizeof(long) > 8) ? 8 : sizeof(long)));
303       aCurrentPos += 8;    
304       
305       TCollection_AsciiString aFullPath = aTmpDir + aFileName;
306       ofstream aFile(aFullPath.ToCString());
307       aFile.write((char *)(aBuffer+aCurrentPos), aFileSize); 
308       aFile.close();  
309       aCurrentPos += aFileSize;
310     }
311     aFiles[i] = CORBA::string_dup(aFileName);
312     delete[] aFileName;
313   }
314
315   return aFiles;
316 }
317
318 //============================================================================
319 // function : GetNameFromPath
320 // purpose  : Returns the name by the path
321 //============================================================================
322 std::string SALOMEDS_Tool::GetNameFromPath(const std::string& thePath) {
323   if(thePath == "") 
324     return "";
325   OSD_Path aPath = OSD_Path(TCollection_AsciiString(const_cast<char*>(thePath.c_str())));
326   TCollection_AsciiString aNameString(aPath.Name());
327   return aNameString.ToCString();
328 }
329
330 //============================================================================
331 // function : GetDirFromPath
332 // purpose  : Returns the dir by the path
333 //============================================================================
334 std::string SALOMEDS_Tool::GetDirFromPath(const std::string& thePath) {
335   if(thePath == "") 
336     return "";
337   OSD_Path aPath = OSD_Path(TCollection_AsciiString(const_cast<char*>(thePath.c_str())));
338   TCollection_AsciiString aDirString(aPath.Trek());
339   aDirString.ChangeAll('|','/');
340   return aDirString.ToCString();
341 }
342
343 //=======================================================================
344 // name    : GetFlag
345 // Purpose : Retrieve specified flaf from "AttributeFlags" attribute
346 //=======================================================================
347 bool SALOMEDS_Tool::GetFlag( const int             theFlag,
348                              SALOMEDS::Study_var   theStudy,
349                              SALOMEDS::SObject_var theObj )
350 {
351   SALOMEDS::GenericAttribute_var anAttr;
352   if ( !theObj->_is_nil() && theObj->FindAttribute( anAttr, "AttributeFlags" ) )
353   {
354     SALOMEDS::AttributeFlags_var aFlags = SALOMEDS::AttributeFlags::_narrow( anAttr );
355     return aFlags->Get( theFlag );
356   }
357
358   return false;
359 }
360
361 //=======================================================================
362 // name    : SetFlag
363 // Purpose : Set/Unset specified flaf from "AttributeFlags" attribute
364 //=======================================================================
365 bool SALOMEDS_Tool::SetFlag( const int           theFlag,
366                              SALOMEDS::Study_var theStudy,
367                              const std::string&  theEntry,
368                              const bool          theValue )
369 {
370   SALOMEDS::SObject_var anObj = theStudy->FindObjectID(theEntry.c_str());
371
372   if ( !anObj->_is_nil() )
373   {
374     SALOMEDS::GenericAttribute_var aGAttr;
375     if ( anObj->FindAttribute( aGAttr, "AttributeFlags" ) )
376     {
377       SALOMEDS::AttributeFlags_var anAttr = SALOMEDS::AttributeFlags::_narrow( aGAttr );
378       anAttr->Set( theFlag, theValue );
379     }
380     else if ( theValue )
381     {
382       SALOMEDS::StudyBuilder_var aBuilder = theStudy->NewBuilder();
383       SALOMEDS::AttributeFlags_var anAttr = SALOMEDS::AttributeFlags::_narrow(
384         aBuilder->FindOrCreateAttribute( anObj, "AttributeFlags" ) );
385       anAttr->Set( theFlag, theValue );
386     }
387     return true;
388   }
389
390   return false;
391 }
392
393 //=======================================================================
394 // name    : getAllChildren
395 // Purpose : Get all children of object.
396 //           If theObj is null all objects of study are returned
397 //=======================================================================
398 void SALOMEDS_Tool::GetAllChildren( SALOMEDS::Study_var               theStudy,
399                                     SALOMEDS::SObject_var             theObj,
400                                     std::list<SALOMEDS::SObject_var>& theList )
401 {
402   if ( theObj->_is_nil() )
403   {
404     SALOMEDS::SComponentIterator_var anIter = theStudy->NewComponentIterator();
405     for ( ; anIter->More(); anIter->Next() )
406     {
407       SALOMEDS::SObject_var anObj = SALOMEDS::SObject::_narrow( anIter->Value() );
408       if ( !anObj->_is_nil() )
409       {
410         theList.push_back( anObj );
411         GetAllChildren( theStudy, anObj, theList );
412       }
413     }
414   }
415   else
416   {
417     SALOMEDS::ChildIterator_var anIter = theStudy->NewChildIterator( theObj );
418     for ( ; anIter->More(); anIter->Next() )
419     {
420       SALOMEDS::SObject_var anObj = anIter->Value();
421       SALOMEDS::SObject_var aRef;
422       if ( !anObj->ReferencedObject( aRef ) )
423       {
424         theList.push_back( anObj );
425         GetAllChildren( theStudy, anObj, theList );
426       }
427     }
428   }
429 }
430
431
432