Salome HOME
Dump Python extension.
[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
28 //#include <GEOM_Engine.hxx>
29 #include <TCollection_AsciiString.hxx>
30 #include <TCollection_ExtendedString.hxx>
31 #include <TColStd_HSequenceOfAsciiString.hxx>
32 #include <Resource_DataMapOfAsciiStringAsciiString.hxx>
33
34 #include <vector>
35 #include <string>
36
37 //=======================================================================
38 //function : DumpPython
39 //purpose  : 
40 //=======================================================================
41
42 Engines::TMPFile* GEOM_Gen_i::DumpPython(CORBA::Object_ptr theStudy, 
43                                          CORBA::Boolean isPublished, 
44                                          CORBA::Boolean& isValidScript)
45 {
46   SALOMEDS::Study_var aStudy = SALOMEDS::Study::_narrow(theStudy);
47   if(CORBA::is_nil(aStudy))
48     return new Engines::TMPFile(0);   
49
50   SALOMEDS::SObject_var aSO = aStudy->FindComponent(ComponentDataType());
51   if(CORBA::is_nil(aSO))
52     return new Engines::TMPFile(0);  
53
54   Resource_DataMapOfAsciiStringAsciiString aMap;
55
56   TVariablesList aVariableMap;
57
58   SALOMEDS::ChildIterator_var Itr = aStudy->NewChildIterator(aSO);
59   for(Itr->InitEx(true); Itr->More(); Itr->Next()) {
60     SALOMEDS::SObject_var aValue = Itr->Value();
61     CORBA::String_var IOR = aValue->GetIOR();
62     if(strlen(IOR.in()) > 0) {
63       CORBA::Object_var obj = _orb->string_to_object(IOR);
64       GEOM::GEOM_Object_var GO = GEOM::GEOM_Object::_narrow(obj);
65       if(!CORBA::is_nil(GO)) {
66         CORBA::String_var aName = aValue->GetName();
67         CORBA::String_var anEntry = GO->GetEntry();
68         aMap.Bind( (char*)anEntry.in(), (char*)aName.in() );
69
70         //Find attribute with list of used notebook variables
71         SALOMEDS::GenericAttribute_var anAttr;
72         SALOMEDS::AttributeString_var anAttrStr;
73         vector<TVariable> aVariables;
74         if(aValue->FindAttribute(anAttr,"AttributeString")){
75           anAttrStr = SALOMEDS::AttributeString::_narrow(anAttr);
76           SALOMEDS::ListOfStrings_var aListOfVars = aStudy->ParseVariables(anAttrStr->Value());
77           for(int i = 0;i < aListOfVars->length();i++) {
78             bool isVar = aStudy->IsVariable(aListOfVars[i].in());
79             TVariable aVar = TVariable( (char*)aListOfVars[i].in(), isVar );
80             aVariables.push_back(aVar);
81           }
82         }
83         aVariableMap.insert(pair<TCollection_AsciiString,vector<TVariable> >((char*)anEntry,aVariables));
84       }
85     }
86   }
87   
88   TCollection_AsciiString aScript =
89     "### This file is generated by SALOME automatically by dump python functionality\n"
90       "### of GEOM component\n\n";
91   aScript += _impl->DumpPython(aStudy->StudyId(), aMap, aVariableMap, isPublished, isValidScript);
92
93   if (isPublished)
94   {
95     //Output the script that sets up the visual parameters.
96     char* script = aStudy->GetDefaultScript(ComponentDataType(), "\t");
97     if (script && strlen(script) > 0) {
98       aScript += "\n\t### Store presentation parameters of displayed objects\n";
99       aScript += script;
100       CORBA::string_free(script);
101     }
102   }
103
104   aScript += "\n\tpass\n";
105
106   int aLen = aScript.Length(); 
107   unsigned char* aBuffer = new unsigned char[aLen+1];
108   strcpy((char*)aBuffer, aScript.ToCString());
109
110   CORBA::Octet* anOctetBuf =  (CORBA::Octet*)aBuffer;
111   Engines::TMPFile_var aStreamFile = new Engines::TMPFile(aLen+1, aLen+1, anOctetBuf, 1); 
112
113   return aStreamFile._retn(); 
114 }
115
116 //=======================================================================
117 //function : GetDumpName
118 //purpose  : 
119 //=======================================================================
120
121 char* GEOM_Gen_i::GetDumpName (const char* theStudyEntry)
122 {
123   const char* name = _impl->GetDumpName( theStudyEntry );
124   if ( name && strlen( name ) > 0 )
125     return strdup( name );
126
127   return NULL;
128 }
129
130 //=======================================================================
131 //function : GetAllDumpNames
132 //purpose  : 
133 //=======================================================================
134
135 GEOM::string_array* GEOM_Gen_i::GetAllDumpNames()
136 {
137   Handle(TColStd_HSequenceOfAsciiString) aHSeq = _impl->GetAllDumpNames();
138   int i = 0, aLen = aHSeq->Length();
139
140   GEOM::string_array_var seq = new GEOM::string_array();
141   seq->length(aLen);
142
143   for (; i < aLen; i++) {
144     seq[i] = CORBA::string_dup(aHSeq->Value(i + 1).ToCString());
145   }
146
147   return seq._retn();
148 }