]> SALOME platform Git repositories - modules/smesh.git/blob - src/SMESH_I/SMESH_NoteBook.cxx
Salome HOME
Dump Puthon extension
[modules/smesh.git] / src / SMESH_I / SMESH_NoteBook.cxx
1 // Copyright (C) 2008  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 // File      : SMESH_NoteBook.cxx
21 // Author    : Roman NIKOLAEV
22
23 #include "SMESH_2smeshpy.hxx"
24 #include "SMESH_NoteBook.hxx"
25 #include "SMESH_Gen_i.hxx"
26 #include "SMESH_PythonDump.hxx"
27
28 #include <Resource_DataMapOfAsciiStringAsciiString.hxx>
29 #include <TColStd_SequenceOfAsciiString.hxx>
30 #include <TColStd_HSequenceOfInteger.hxx>
31
32 #include <vector>
33 #include <string>
34
35 #ifdef _DEBUG_
36 static int MYDEBUG = 0;
37 #else
38 static int MYDEBUG = 0;
39 #endif
40
41 using namespace std;
42
43
44 void SetVariable(Handle(_pyCommand) theCommand,const ObjectStates* theStates, int position, int theArgNb);
45
46 //================================================================================
47 /*!
48  * \brief Constructor
49  */
50 //================================================================================
51 ObjectStates::ObjectStates(TCollection_AsciiString theType)
52 {
53   _type = theType;
54   _dumpstate = 0;
55 }
56
57 //================================================================================
58 /*!
59  * \brief Destructor
60  */
61 //================================================================================
62 ObjectStates::~ObjectStates()
63 {
64 }
65
66 //================================================================================
67 /*!
68  * \brief Add new object state 
69  * \param theState - Object state (vector of notebook variable)
70  */
71 //================================================================================
72 void ObjectStates::AddState(const TState &theState)
73 {
74   _states.push_back(theState);
75 }
76
77 //================================================================================
78 /*!
79  * \brief Return current object state
80  * \\retval state - Object state (vector of notebook variable)
81  */
82 //================================================================================
83 TState ObjectStates::GetCurrectState() const
84 {
85   if(_states.size() > _dumpstate)
86     return _states[_dumpstate];
87   TState empty;
88   return empty;
89 }
90
91
92 //================================================================================
93 /*!
94  *
95  */
96 //================================================================================
97 TAllStates ObjectStates::GetAllStates() const
98 {
99   return _states;
100 }
101
102 //================================================================================
103 /*!
104  *
105  */
106 //================================================================================
107 void ObjectStates::IncrementState()
108 {
109   _dumpstate++;
110 }
111
112 //================================================================================
113 /*!
114  *
115  */
116 //================================================================================
117 TCollection_AsciiString ObjectStates::GetObjectType() const{
118   return _type;
119 }
120
121
122 //================================================================================
123 /*!
124  * \brief Constructor
125  */
126 //================================================================================
127 LayerDistributionStates::LayerDistributionStates():
128   ObjectStates("LayerDistribution")
129 {
130 }
131 //================================================================================
132 /*!
133  * \brief Destructor
134  */
135 //================================================================================
136 LayerDistributionStates::~LayerDistributionStates()
137 {
138 }
139
140
141 //================================================================================
142 /*!
143  * \brief AddDistribution
144  */
145 //================================================================================
146 void LayerDistributionStates::AddDistribution(const TCollection_AsciiString& theDistribution)
147 {
148   _distributions.insert(pair<TCollection_AsciiString,TCollection_AsciiString>(theDistribution,""));
149 }
150
151 //================================================================================
152 /*!
153  * \brief HasDistribution
154  */
155 //================================================================================
156 bool LayerDistributionStates::HasDistribution(const TCollection_AsciiString& theDistribution) const
157 {
158   return _distributions.find(theDistribution) != _distributions.end();
159 }
160
161 //================================================================================
162 /*!
163  * \brief SetDistributionType
164  */
165 //================================================================================
166 bool LayerDistributionStates::SetDistributionType(const TCollection_AsciiString& theDistribution,
167                                                   const TCollection_AsciiString& theType)
168 {
169   TDistributionMap::iterator it = _distributions.find(theDistribution);
170   if(it == _distributions.end())
171     return false;
172   (*it).second = theType;
173   return true;
174 }
175
176 //================================================================================
177 /*!
178  * \brief GetDistributionType
179  */
180 //================================================================================
181 TCollection_AsciiString LayerDistributionStates::
182 GetDistributionType(const TCollection_AsciiString& theDistribution) const
183 {
184   TDistributionMap::const_iterator it = _distributions.find(theDistribution);
185   return (it == _distributions.end()) ? TCollection_AsciiString() : (*it).second;
186 }
187
188 //================================================================================
189 /*!
190  * \brief Constructor
191  */
192 //================================================================================
193 SMESH_NoteBook::SMESH_NoteBook()
194 {
195   InitObjectMap();
196 }
197
198 //================================================================================
199 /*!
200  * \brief Destructor
201  */
202 //================================================================================
203 SMESH_NoteBook::~SMESH_NoteBook()
204 {
205   TVariablesMap::const_iterator it = _objectMap.begin();
206   for(;it!=_objectMap.end();it++) {
207     if((*it).second)
208       delete (*it).second;
209   }
210 }
211
212 //================================================================================
213 /*!
214  * \brief Replace parameters of the functions on the Salome NoteBook Variables
215  * \param theString - Input string
216  * \retval TCollection_AsciiString - Convertion result
217  */
218 //================================================================================
219 void SMESH_NoteBook::ReplaceVariables()
220 {
221   for(int i=0;i<_commands.size();i++) {
222     Handle(_pyCommand) aCmd = _commands[i];
223     TCollection_AsciiString aMethod = aCmd->GetMethod();
224     TCollection_AsciiString aObject = aCmd->GetObject();
225     TCollection_AsciiString aResultValue = aCmd->GetResultValue();
226     if(MYDEBUG) {
227       cout<<"Command before : "<< aCmd->GetString()<<endl;
228       cout<<"Method : "<< aMethod<<endl;
229       cout<<"Object : "<< aObject<<endl;
230       cout<<"Result : "<< aResultValue<<endl;
231     }
232     
233     // check if method modifies the object itself
234     TVariablesMap::const_iterator it = _objectMap.find(aObject);
235     if(it == _objectMap.end()) // check if method returns a new object
236       it = _objectMap.find(aResultValue);
237     
238     if(it == _objectMap.end()) { // check if method modifies a mesh using mesh editor
239       TMeshEditorMap::const_iterator meIt = myMeshEditors.find(aObject);
240       if(meIt != myMeshEditors.end()) {
241         TCollection_AsciiString aMesh = (*meIt).second;
242         it = _objectMap.find(aMesh);
243       }
244     }
245     
246     if(it == _objectMap.end()) { // additional check for pattern mapping
247       if(aMethod.IsEqual("ApplyToMeshFaces") ||
248          aMethod.IsEqual("ApplyToHexahedrons"))
249         it = _objectMap.find(aCmd->GetArg(1));
250     }
251     
252     if(it != _objectMap.end()) {
253       if(MYDEBUG)
254         cout << "Found object : " << (*it).first << endl;
255       ObjectStates *aStates = (*it).second;
256       // Case for LocalLength hypothesis
257       if(aStates->GetObjectType().IsEqual("LocalLength") && aStates->GetCurrectState().size() >= 2) {
258         if(aMethod.IsEqual("SetLength")) {
259           if(!aStates->GetCurrectState().at(0).IsEmpty() )
260             aCmd->SetArg(1,aStates->GetCurrectState().at(0));
261           aStates->IncrementState();
262         }
263         else if(aMethod.IsEqual("SetPrecision")) {
264           if(!aStates->GetCurrectState().at(1).IsEmpty() )
265             aCmd->SetArg(1,aStates->GetCurrectState().at(1));
266           aStates->IncrementState();
267         }
268       }
269       
270       // Case for SegmentLengthAroundVertex hypothesis
271       else if(aStates->GetObjectType().IsEqual("SegmentLengthAroundVertex")
272               && aStates->GetCurrectState().size() >= 1) {
273         if(aMethod == "SetLength") {
274           if(!aStates->GetCurrectState().at(0).IsEmpty() )
275             aCmd->SetArg(1,aStates->GetCurrectState().at(0));
276           aStates->IncrementState();
277         }
278       }
279
280       // Case for Arithmetic1D and StartEndLength hypothesis
281       else if(aStates->GetObjectType().IsEqual("Arithmetic1D") || 
282               aStates->GetObjectType().IsEqual("StartEndLength")) {
283         if(aMethod == "SetLength" &&
284            aStates->GetCurrectState().size() >= 2) {
285           if(aCmd->GetArg(2) == "1" && !aStates->GetCurrectState().at(0).IsEmpty())
286             aCmd->SetArg(1,aStates->GetCurrectState().at(0));
287           else if(!aStates->GetCurrectState().at(1).IsEmpty())
288             aCmd->SetArg(1,aStates->GetCurrectState().at(1));
289           aStates->IncrementState();
290         }
291       }
292       
293       //Case for Deflection1D hypothesis
294       else if(aStates->GetObjectType().IsEqual("Deflection1D")){
295         if(aMethod == "SetDeflection" && aStates->GetCurrectState().size() >= 1) {
296           if(!aStates->GetCurrectState().at(0).IsEmpty() )
297             aCmd->SetArg(1,aStates->GetCurrectState().at(0));
298           aStates->IncrementState();
299         }
300       }
301       
302       // Case for LayerDistribution hypothesis (not finished yet)
303       else if(aStates->GetObjectType() == "LayerDistribution") {
304         if(aMethod == "SetLayerDistribution"){
305           LayerDistributionStates* aLDStates = (LayerDistributionStates*)(aStates);
306           aLDStates->AddDistribution(aCmd->GetArg(1));
307           if(MYDEBUG)
308             cout<<"Add Distribution :"<<aCmd->GetArg(1)<<endl;
309         }
310       }
311       
312       // Case for MaxElementArea hypothesis
313       else if(aStates->GetObjectType().IsEqual("MaxElementArea")){
314         if(aMethod == "SetMaxElementArea" && aStates->GetCurrectState().size() >= 1) {
315           if(!aStates->GetCurrectState().at(0).IsEmpty() )
316             aCmd->SetArg(1,aStates->GetCurrectState().at(0));
317           aStates->IncrementState();
318         }
319       }
320
321       // Case for MaxElementVolume hypothesis
322       else if(aStates->GetObjectType().IsEqual("MaxElementVolume")){
323         if(aMethod == "SetMaxElementVolume" && aStates->GetCurrectState().size() >= 1) {
324           if(!aStates->GetCurrectState().at(0).IsEmpty() )
325             aCmd->SetArg(1,aStates->GetCurrectState().at(0));
326           aStates->IncrementState();
327         }
328       }
329
330       // Case for NETGEN_Parameters_2D or NETGEN_Parameters_2D hypothesis
331       else if(aStates->GetObjectType().IsEqual("NETGEN_Parameters_2D") ||
332               aStates->GetObjectType().IsEqual("NETGEN_Parameters")){
333         if(aMethod == "SetMaxSize" && aStates->GetCurrectState().size() >= 1) {
334           if(!aStates->GetCurrectState().at(0).IsEmpty() )
335             aCmd->SetArg(1,aStates->GetCurrectState().at(0));
336           aStates->IncrementState();
337         }
338         else if(aMethod == "SetGrowthRate" && aStates->GetCurrectState().size() >= 2) {
339           if(!aStates->GetCurrectState().at(1).IsEmpty() )
340             aCmd->SetArg(1,aStates->GetCurrectState().at(1));
341           aStates->IncrementState();
342         }
343         else if(aMethod == "SetNbSegPerEdge" && aStates->GetCurrectState().size() >= 3) {
344           if(!aStates->GetCurrectState().at(2).IsEmpty() )
345             aCmd->SetArg(1,aStates->GetCurrectState().at(2));
346           aStates->IncrementState();
347         } 
348         else if(aMethod == "SetNbSegPerRadius" && aStates->GetCurrectState().size() >= 4) {
349           if(!aStates->GetCurrectState().at(3).IsEmpty() )
350             aCmd->SetArg(1,aStates->GetCurrectState().at(3));
351           aStates->IncrementState();
352         } 
353       }
354
355       // Case for NETGEN_SimpleParameters_3D or NETGEN_SimpleParameters_2D hypothesis
356       else if(aStates->GetObjectType().IsEqual("NETGEN_SimpleParameters_3D") ||
357               aStates->GetObjectType().IsEqual("NETGEN_SimpleParameters_2D")){
358
359         if((aMethod == "SetNumberOfSegments" || aMethod == "SetLocalLength") && 
360            aStates->GetCurrectState().size() >= 1) {
361           if(!aStates->GetCurrectState().at(0).IsEmpty() )
362             aCmd->SetArg(1,aStates->GetCurrectState().at(0));
363           aStates->IncrementState();
364         }
365         else if(aMethod == "SetMaxElementArea" && aStates->GetCurrectState().size() >= 2) {
366           if(!aStates->GetCurrectState().at(1).IsEmpty() )
367             aCmd->SetArg(1,aStates->GetCurrectState().at(1));
368           aStates->IncrementState();
369         }
370         else if(aMethod == "SetMaxElementVolume" && aStates->GetCurrectState().size() >= 3) {
371           if(!aStates->GetCurrectState().at(2).IsEmpty() )
372             aCmd->SetArg(1,aStates->GetCurrectState().at(2));
373           aStates->IncrementState();
374         }
375         else if(aMethod == "LengthFromEdges" || aMethod == "LengthFromFaces"){
376           aStates->IncrementState();
377         }
378       }
379       
380       // Case for NumberOfLayers hypothesis
381       else if(aStates->GetObjectType().IsEqual("NumberOfLayers")){
382         if(aMethod == "SetNumberOfLayers" && aStates->GetCurrectState().size() >= 1) {
383           if(!aStates->GetCurrectState().at(0).IsEmpty() )
384             aCmd->SetArg(1,aStates->GetCurrectState().at(0));
385           aStates->IncrementState();
386         }
387       }
388
389       // Case for NumberOfSegments hypothesis
390       else if(aStates->GetObjectType().IsEqual("NumberOfSegments")){
391         if(aMethod == "SetNumberOfSegments" && aStates->GetCurrectState().size() >= 1) {
392           if(!aStates->GetCurrectState().at(0).IsEmpty() )
393             aCmd->SetArg(1,aStates->GetCurrectState().at(0));
394           if(aStates->GetCurrectState().size()==1)
395             aStates->IncrementState();
396         }
397         else if (aMethod == "SetScaleFactor" && aStates->GetCurrectState().size() >= 2) {
398           if(!aStates->GetCurrectState().at(1).IsEmpty() )
399             aCmd->SetArg(1,aStates->GetCurrectState().at(1));
400           aStates->IncrementState();
401         }
402       }
403       
404       else if(aStates->GetObjectType().IsEqual("Mesh")) {
405         TState aCurrentState = aStates->GetCurrectState();
406         int aCurrentStateSize = aCurrentState.size();
407         if(aMethod.IsEqual("Translate")                  ||
408            aMethod.IsEqual("TranslateMakeGroups")        ||
409            aMethod.IsEqual("TranslateMakeMesh")          ||
410            aMethod.IsEqual("TranslateObject")            ||
411            aMethod.IsEqual("TranslateObjectMakeGroups")  ||
412            aMethod.IsEqual("TranslateObjectMakeMesh")) {
413           bool isVariableFound = false;
414           int anArgIndex = 0;
415           for(int i = 1, n = aCmd->GetNbArgs(); i <= n; i++) {
416             if(aCmd->GetArg(i).IsEqual("SMESH.PointStruct")) {
417               anArgIndex = i+1;
418               break;
419             }
420           }
421           if(anArgIndex > 0) {
422             if(aCurrentStateSize == 3) { // translation by dx, dy, dz
423               for(int j = 0; j < aCurrentStateSize; j++) {
424                 if(!aCurrentState.at(j).IsEmpty()) {
425                   isVariableFound = true;
426                   aCmd->SetArg(anArgIndex+j, aCurrentState.at(j));
427                 }
428               }
429             }
430             else if(aCurrentStateSize == 6) { // translation by x1, x2, y1, y2, z1, z2
431               // TODO: limitation until operations on the variables will be introduced
432               /*
433               isVariableFound = true;
434               for(int j = 0; j < 3; j++) {
435                 TCollection_AsciiString anArg = aCmd->GetArg(anArgIndex+j);
436                 TCollection_AsciiString aValue1 = aCurrentState.at(2*j), aValue2 = aCurrentState.at(2*j+1);
437                 bool aV1 = !aValue1.IsEmpty();
438                 bool aV2 = !aValue2.IsEmpty();
439                 double aValue, aCurrentValue = anArg.IsRealValue() ? anArg.RealValue() : 0;
440                 if(aV1 && !aV2) {
441                   if(!GetReal(aValue1, aValue))
442                     aValue = 0;
443                   aValue2 = TCollection_AsciiString( aValue + aCurrentValue );
444                 }
445                 else if(!aV1 && aV2) {
446                   if(!GetReal(aValue2, aValue))
447                     aValue = 0;
448                   aValue1 = TCollection_AsciiString( aValue - aCurrentValue );
449                 }
450                 else if(!aV1 && !aV2) {
451                   aValue1 = TCollection_AsciiString( 0 );
452                   aValue2 = TCollection_AsciiString( aCurrentValue );
453                 }
454                 aCmd->SetArg(anArgIndex+j, aValue1 + ", " + aValue2 );
455               }
456               */
457             }
458           }
459           if(isVariableFound) {
460             TCollection_AsciiString aDim;
461             if(aCurrentStateSize == 6)
462               aDim = "6";
463             aCmd->SetArg(anArgIndex - 1, TCollection_AsciiString(SMESH_2smeshpy::SmeshpyName())+".PointStructStr"+aDim);
464             aCmd->SetArg(anArgIndex - 2, TCollection_AsciiString(SMESH_2smeshpy::SmeshpyName())+".DirStructStr");
465           }
466           aStates->IncrementState();
467         }
468         else if(aMethod.IsEqual("Rotate")                  ||
469                 aMethod.IsEqual("RotateMakeGroups")        ||
470                 aMethod.IsEqual("RotateMakeMesh")          ||
471                 aMethod.IsEqual("RotateObject")            ||
472                 aMethod.IsEqual("RotateObjectMakeGroups")  ||
473                 aMethod.IsEqual("RotateObjectMakeMesh")    ||
474                 aMethod.IsEqual("RotationSweep")           ||
475                 aMethod.IsEqual("RotationSweepMakeGroups") ||
476                 aMethod.IsEqual("Mirror")                  ||
477                 aMethod.IsEqual("MirrorMakeMesh")          ||
478                 aMethod.IsEqual("MirrorMakeGroups")        ||
479                 aMethod.IsEqual("MirrorObject")            || 
480                 aMethod.IsEqual("MirrorObjectMakeMesh")    ||
481                 aMethod.IsEqual("MirrorObjectMakeGroups")) {
482           bool isSubstitute = false;
483           int anArgIndex = 0;
484           for(int i = 1, n = aCmd->GetNbArgs(); i <= n; i++) {
485             if(aCmd->GetArg(i).IsEqual("SMESH.AxisStruct")) {
486               anArgIndex = i+1;
487               break;
488             }
489           }
490           if(anArgIndex > 0) {
491             for(int j = 0; j < aCurrentStateSize; j++) {
492               if(!aCurrentState.at(j).IsEmpty()) {
493                 if(j < 6) // 0-5 - axis struct, 6 - angle (rotation & sweep), 7-8 - nbSteps and tolerance (sweep)
494                   isSubstitute = true;
495                 aCmd->SetArg(anArgIndex+j, aCurrentState.at(j));
496               }
497             }
498           }
499           if(isSubstitute)
500             aCmd->SetArg(anArgIndex - 1, TCollection_AsciiString(SMESH_2smeshpy::SmeshpyName())+".AxisStructStr");
501           aStates->IncrementState();
502         }
503         else if(aMethod.IsEqual("AddNode") ||
504                 aMethod.IsEqual("MoveClosestNodeToPoint")) {
505           for(int j = 0; j < aCurrentStateSize; j++) {
506             if(!aCurrentState.at(j).IsEmpty())
507               aCmd->SetArg(j+1, aCurrentState.at(j));
508           }
509           aStates->IncrementState();
510         }
511         else if(aMethod.IsEqual("MoveNode")) {
512           for(int j = 0; j < aCurrentStateSize; j++) {
513             if(!aCurrentState.at(j).IsEmpty())
514               aCmd->SetArg(j+2, aCurrentState.at(j));
515           }
516           aStates->IncrementState();
517         }
518         else if(aMethod.IsEqual("ExtrusionSweep") ||
519                 aMethod.IsEqual("ExtrusionSweepObject") ||
520                 aMethod.IsEqual("ExtrusionSweepObject1D") ||
521                 aMethod.IsEqual("ExtrusionSweepObject2D") ||
522                 aMethod.IsEqual("ExtrusionSweepMakeGroups") ||
523                 aMethod.IsEqual("ExtrusionSweepObjectMakeGroups") ||
524                 aMethod.IsEqual("ExtrusionSweepObject1DMakeGroups") ||
525                 aMethod.IsEqual("ExtrusionSweepObject2DMakeGroups")) {
526           bool isSubstitute = false;
527           int anArgIndex = 0;
528           for(int i = 1, n = aCmd->GetNbArgs(); i <= n; i++) {
529             if(aCmd->GetArg(i).IsEqual("SMESH.PointStruct")) {
530               anArgIndex = i+1;
531               break;
532             }
533           }
534           if(anArgIndex > 0) {
535             for(int j = 0; j < aCurrentStateSize; j++) {
536               if(!aCurrentState.at(j).IsEmpty()) {
537                 if(j < 3) // 0-2 - dir struct, 3 - number of steps
538                   isSubstitute = true;
539                 aCmd->SetArg(anArgIndex+j, aCurrentState.at(j));
540               }
541             }
542           }
543           if(isSubstitute) {
544             aCmd->SetArg(anArgIndex - 1, TCollection_AsciiString(SMESH_2smeshpy::SmeshpyName())+".PointStructStr");
545             aCmd->SetArg(anArgIndex - 2, TCollection_AsciiString(SMESH_2smeshpy::SmeshpyName())+".DirStructStr");
546           }
547           aStates->IncrementState();
548         }
549         else if(aMethod.IsEqual("ExtrusionAlongPath") ||
550                 aMethod.IsEqual("ExtrusionAlongPathObject") ||
551                 aMethod.IsEqual("ExtrusionAlongPathMakeGroups") ||
552                 aMethod.IsEqual("ExtrusionAlongPathObjectMakeGroups") ||
553                 /* workaround for a bug in the command parsing algorithm */
554                 aCmd->GetString().Search("ExtrusionAlongPathMakeGroups") != -1 ||
555                 aCmd->GetString().Search("ExtrusionAlongPathObjectMakeGroups") != -1 ) {
556           int aNbAngles = aCurrentStateSize-3; // State looks like "Angle1:...:AngleN:X:Y:Z"
557           bool isSubstitute = false;
558           int anArgIndex = 0;
559           for(int i = 1, n = aCmd->GetNbArgs(); i <= n; i++) {
560             if(aCmd->GetArg(i).IsEqual("SMESH.PointStruct")) {
561               anArgIndex = i-1-aNbAngles;
562               break;
563             }
564           }
565           if(anArgIndex > 0) {
566             int j = 0;
567             for(; j < aNbAngles; j++) {
568               if(!aCurrentState.at(j).IsEmpty()) {
569                 aCmd->SetArg(anArgIndex+j-1, aCurrentState.at(j));
570               }
571             }
572             for(; j < aNbAngles+3; j++) {
573               if(!aCurrentState.at(j).IsEmpty()) {
574                 isSubstitute = true;
575                 aCmd->SetArg(anArgIndex+j+2, aCurrentState.at(j));
576               }
577             }
578           }
579           if(isSubstitute)
580             aCmd->SetArg(anArgIndex + aNbAngles + 1,
581                          TCollection_AsciiString(SMESH_2smeshpy::SmeshpyName())+".PointStructStr");
582           aStates->IncrementState();
583         }
584         else if(aMethod.IsEqual("TriToQuad") ||
585                 aMethod.IsEqual("Concatenate") ||
586                 aMethod.IsEqual("ConcatenateWithGroups")) {
587           if(aCurrentStateSize && !aCurrentState.at(0).IsEmpty())
588             aCmd->SetArg(aCmd->GetNbArgs(), aCurrentState.at(0));
589           aStates->IncrementState();
590         }
591         else if(aMethod.IsEqual("Smooth") ||
592                 aMethod.IsEqual("SmoothObject") ||
593                 aMethod.IsEqual("SmoothParametric") ||
594                 aMethod.IsEqual("SmoothParametricObject")) {
595           int anArgIndex = aCmd->GetNbArgs() - 2;
596           for(int j = 0; j < aCurrentStateSize; j++) {
597             if(!aCurrentState.at(j).IsEmpty())
598               aCmd->SetArg(anArgIndex+j, aCurrentState.at(j));
599           }
600           aStates->IncrementState();
601         }
602         else if(aMethod.IsEqual("ApplyToMeshFaces") ||
603                 aMethod.IsEqual("ApplyToHexahedrons")) {
604           int anArgIndex = aCmd->GetNbArgs()-1;
605           for(int j = 0; j < aCurrentStateSize; j++)
606             if(!aCurrentState.at(j).IsEmpty())
607               aCmd->SetArg(anArgIndex+j, aCurrentState.at(j));
608           aStates->IncrementState();
609         }
610       }
611     }
612     else {
613       if(MYDEBUG)
614         cout << "Object not found" << endl;
615     }
616     if(MYDEBUG) {
617       cout<<"Command after: "<< aCmd->GetString()<<endl;
618     }
619   }
620   
621   ProcessLayerDistribution();
622 }
623 //================================================================================
624 /*!
625  * \brief Private method
626  */
627 //================================================================================
628 void SMESH_NoteBook::InitObjectMap()
629 {
630   SMESH_Gen_i *aGen = SMESH_Gen_i::GetSMESHGen();
631   if(!aGen)
632     return;
633   
634   SALOMEDS::Study_ptr aStudy = aGen->GetCurrentStudy();
635   if(aStudy->_is_nil())
636     return;
637   
638   SALOMEDS::SObject_var aSO = aStudy->FindComponent(aGen->ComponentDataType());
639   if(CORBA::is_nil(aSO))
640     return;
641   
642   SALOMEDS::ChildIterator_var Itr = aStudy->NewChildIterator(aSO);
643   char* aParameters;
644   for(Itr->InitEx(true); Itr->More(); Itr->Next()) {
645     SALOMEDS::SObject_var aSObject = Itr->Value();
646     SALOMEDS::GenericAttribute_var anAttr;
647     if ( aSObject->FindAttribute(anAttr, "AttributeString")) {
648       aParameters = SALOMEDS::AttributeString::_narrow(anAttr)->Value();
649       SALOMEDS::ListOfListOfStrings_var aSections = aStudy->ParseVariables(aParameters);
650       if(MYDEBUG) {
651         cout<<"Entry : "<< aSObject->GetID()<<endl;
652         cout<<"aParameters : "<<aParameters<<endl;
653       }      
654       TCollection_AsciiString anObjType;
655       CORBA::Object_var anObject = SMESH_Gen_i::SObjectToObject(aSObject);
656       SMESH::SMESH_Hypothesis_var aHyp = SMESH::SMESH_Hypothesis::_narrow(anObject);
657       if(!aHyp->_is_nil()) {
658         anObjType = TCollection_AsciiString(aHyp->GetName());
659       }
660       else if(SMESH::SMESH_Mesh_var aMesh = SMESH::SMESH_Mesh::_narrow(anObject)) {
661         anObjType = TCollection_AsciiString("Mesh");
662       }
663       if(MYDEBUG)
664         cout<<"The object Type : "<<anObjType<<endl;
665       ObjectStates *aState = NULL;
666       if(anObjType == "LayerDistribution") {
667         aState = new LayerDistributionStates();
668       }
669       else
670         aState = new  ObjectStates(anObjType);
671       
672       for(int i = 0; i < aSections->length(); i++) {
673         TState aVars;
674         SALOMEDS::ListOfStrings aListOfVars = aSections[i];
675         for(int j = 0;j<aListOfVars.length();j++) {
676           TCollection_AsciiString aVar(aListOfVars[j].in());
677           if(!aVar.IsEmpty() && aStudy->IsVariable(aVar.ToCString())) {
678             aVar.InsertBefore(1,"\"");
679             aVar.InsertAfter(aVar.Length(),"\"");
680           }
681           aVars.push_back(aVar);
682           if(MYDEBUG) {
683             cout<<"Variable: '"<<aVar<<"'"<<endl;
684           }
685         }
686         aState->AddState(aVars);
687       }
688       _objectMap.insert(pair<TCollection_AsciiString,ObjectStates*>(TCollection_AsciiString(aSObject->GetID()),aState));
689     }
690   }
691 }
692
693 //================================================================================
694 /*!
695  * 
696  */
697 //================================================================================
698 void SMESH_NoteBook::AddCommand(const TCollection_AsciiString& theString)
699 {
700   if(MYDEBUG)
701     cout<<theString<<endl;
702   Handle(_pyCommand) aCommand = new _pyCommand( theString, -1);
703   _commands.push_back(aCommand);
704
705   if ( aCommand->GetMethod() == "GetMeshEditor" ) { // MeshEditor creation
706     myMeshEditors.insert( make_pair( aCommand->GetResultValue(),
707                                      aCommand->GetObject() ) );
708   }
709 }
710
711 //================================================================================
712 /*!
713  * 
714  */
715 //================================================================================
716 void SMESH_NoteBook::ProcessLayerDistribution()
717 {
718   // 1) Find all LayerDistribution states
719   vector<LayerDistributionStates*> aLDS;
720   TVariablesMap::const_iterator it = _objectMap.begin();
721   for(;it != _objectMap.end();it++) {
722     LayerDistributionStates* aLDStates = dynamic_cast<LayerDistributionStates*>(((*it).second));
723     if(aLDStates!=NULL) {
724       aLDS.push_back(aLDStates);
725     }
726   }
727   
728   if(!aLDS.size())
729     return;
730   
731   // 2) Initialize all type of 1D Distribution hypothesis
732   for(int i=0;i<_commands.size();i++){
733     for(int j =0;j < aLDS.size();j++){
734       TCollection_AsciiString aResultValue = _commands[i]->GetResultValue();
735       if(_commands[i]->GetMethod() == "CreateHypothesis" &&
736          aLDS[j]->HasDistribution(aResultValue)){
737         TCollection_AsciiString aType = _commands[i]->GetArg(1);
738         aType.RemoveAll('\'');
739         aLDS[j]->SetDistributionType(aResultValue,aType);
740       }
741     }
742   }
743   // 3) ... and replase variables ...
744
745   for(int i=0;i<_commands.size();i++){
746     for(int j =0;j < aLDS.size();j++){
747       TCollection_AsciiString anObject = _commands[i]->GetObject();
748
749       if(aLDS[j]->HasDistribution(anObject)) {
750         TCollection_AsciiString aType = aLDS[j]->GetDistributionType(anObject);
751         TCollection_AsciiString aMethod = _commands[i]->GetMethod();
752         if(aType == "LocalLength") {
753           if(aMethod == "SetLength") {
754             SetVariable(_commands[i], aLDS[j],0,1);
755             aLDS[j]->IncrementState();
756           }
757           else if(aMethod == "SetPrecision") {
758             SetVariable(_commands[i], aLDS[j],1,1);
759             aLDS[j]->IncrementState();
760           }
761         }
762
763         // Case for NumberOfSegments hypothesis
764         else if(aType == "NumberOfSegments"){
765           if(aMethod == "SetNumberOfSegments") {
766             SetVariable(_commands[i], aLDS[j],0,1);
767             if(aLDS[j]->GetCurrectState().size()==1)
768               aLDS[j]->IncrementState();
769           }
770           else if (aMethod == "SetScaleFactor") {
771             SetVariable(_commands[i], aLDS[j],1,1);
772             aLDS[j]->IncrementState();
773           }
774         }
775         
776         else if( aType == "Deflection1D" ){
777           if(aMethod == "SetDeflection"){
778             SetVariable(_commands[i], aLDS[j],0,1);
779             aLDS[j]->IncrementState();
780           }
781         }
782         // Case for Arithmetic1D and StartEndLength hypothesis
783         else if(aType == "Arithmetic1D" || aType == "StartEndLength") {
784           if(aMethod == "SetLength") {
785             int anArgNb = (_commands[i]->GetArg(2) == "1") ? 0 : 1;
786             SetVariable(_commands[i], aLDS[j],anArgNb,1);
787             aLDS[j]->IncrementState();
788           }
789         }
790       }
791     }
792   }
793 }
794 //================================================================================
795 /*!
796  *  \brief Return result script
797  */
798 //================================================================================
799 TCollection_AsciiString SMESH_NoteBook::GetResultScript() const
800 {
801   TCollection_AsciiString aResult;
802   for(int i=0;i<_commands.size();i++)
803     aResult+=_commands[i]->GetString()+"\n";
804   return aResult;
805 }
806
807 //================================================================================
808 /*!
809  *  \brief Return value of the variable
810  */
811 //================================================================================
812 bool SMESH_NoteBook::GetReal(const TCollection_AsciiString& theVarName, double& theValue)
813 {
814   bool ok = false;
815
816   SMESH_Gen_i *aGen = SMESH_Gen_i::GetSMESHGen();
817   if(!aGen)
818     return ok;
819
820   SALOMEDS::Study_ptr aStudy = aGen->GetCurrentStudy();
821   if(aStudy->_is_nil())
822     return ok;
823
824   TCollection_AsciiString aVarName = theVarName;
825   aVarName.RemoveAll('\"');
826
827   if(aVarName.IsEmpty())
828     return ok;
829
830   const char* aName = aVarName.ToCString();
831   if(aStudy->IsVariable(aName) && (aStudy->IsReal(aName) || aStudy->IsInteger(aName))) {
832     theValue = aStudy->GetReal(aVarName.ToCString());
833     ok = true;
834   }
835
836   return ok;
837 }
838
839
840 /*!
841  *  Set variable of the ObjectStates from position to the _pyCommand
842  *  method as nbArg argument
843  */
844 void SetVariable(Handle(_pyCommand) theCommand, const ObjectStates* theStates, int position, int theArgNb)
845 {
846   if(theStates->GetCurrectState().size() > position)
847     if(!theStates->GetCurrectState().at(position).IsEmpty())
848       theCommand->SetArg(theArgNb,theStates->GetCurrectState().at(position));
849 }