Salome HOME
3fb087871c8b0cb48f78c150285fa6bf0e8bccef
[modules/geom.git] / src / GEOM_I / GEOM_DumpPython.cc
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/ or email : webmaster.salome@opencascade.com
19 //
20 #ifdef WNT
21 #pragma warning( disable:4786 )
22 #endif
23
24 #include <Standard_Stream.hxx>
25
26 #include "GEOM_Gen_i.hh"
27 #include <TCollection_AsciiString.hxx>
28 #include <TCollection_ExtendedString.hxx>
29 #include <TColStd_HSequenceOfAsciiString.hxx>
30 #include <Resource_DataMapOfAsciiStringAsciiString.hxx>
31
32 //=======================================================================
33 //function : DumpPython
34 //purpose  : 
35 //=======================================================================
36
37 Engines::TMPFile* GEOM_Gen_i::DumpPython(CORBA::Object_ptr theStudy, 
38                                          CORBA::Boolean isPublished, 
39                                          CORBA::Boolean& isValidScript)
40 {
41   SALOMEDS::Study_var aStudy = SALOMEDS::Study::_narrow(theStudy);
42   if(CORBA::is_nil(aStudy))
43     return new Engines::TMPFile(0);   
44
45   SALOMEDS::SObject_var aSO = aStudy->FindComponent(ComponentDataType());
46   if(CORBA::is_nil(aSO))
47     return new Engines::TMPFile(0);  
48
49   Resource_DataMapOfAsciiStringAsciiString aMap;
50
51   SALOMEDS::ChildIterator_var Itr = aStudy->NewChildIterator(aSO);
52   for(Itr->InitEx(true); Itr->More(); Itr->Next()) {
53     SALOMEDS::SObject_var aValue = Itr->Value();
54     CORBA::String_var IOR = aValue->GetIOR();
55     if(strlen(IOR.in()) > 0) {
56       CORBA::Object_var obj = _orb->string_to_object(IOR);
57       GEOM::GEOM_Object_var GO = GEOM::GEOM_Object::_narrow(obj);
58       if(!CORBA::is_nil(GO)) {
59         CORBA::String_var aName = aValue->GetName();
60         CORBA::String_var anEntry = GO->GetEntry();
61         aMap.Bind( (char*)anEntry.in(), (char*)aName.in() );
62       }
63     }
64   }
65
66   TCollection_AsciiString aScript =
67     "### This file is generated by SALOME automatically by dump python functionality\n"
68       "### of GEOM component\n\n";
69   aScript += _impl->DumpPython(aStudy->StudyId(), aMap, isPublished, isValidScript);
70
71   int aLen = aScript.Length(); 
72   unsigned char* aBuffer = new unsigned char[aLen+1];
73   strcpy((char*)aBuffer, aScript.ToCString());
74
75   CORBA::Octet* anOctetBuf =  (CORBA::Octet*)aBuffer;
76   Engines::TMPFile_var aStreamFile = new Engines::TMPFile(aLen+1, aLen+1, anOctetBuf, 1); 
77
78   return aStreamFile._retn(); 
79 }
80
81 //=======================================================================
82 //function : GetDumpName
83 //purpose  : 
84 //=======================================================================
85
86 char* GEOM_Gen_i::GetDumpName (const char* theStudyEntry)
87 {
88   const char* name = _impl->GetDumpName( theStudyEntry );
89   if ( name && strlen( name ) > 0 )
90     return strdup( name );
91
92   return NULL;
93 }
94
95 //=======================================================================
96 //function : GetAllDumpNames
97 //purpose  : 
98 //=======================================================================
99
100 GEOM::string_array* GEOM_Gen_i::GetAllDumpNames()
101 {
102   Handle(TColStd_HSequenceOfAsciiString) aHSeq = _impl->GetAllDumpNames();
103   int i = 0, aLen = aHSeq->Length();
104
105   GEOM::string_array_var seq = new GEOM::string_array();
106   seq->length(aLen);
107
108   for (; i < aLen; i++) {
109     seq[i] = CORBA::string_dup(aHSeq->Value(i + 1).ToCString());
110   }
111
112   return seq._retn();
113 }