Salome HOME
e03cc0a9eaf629bd37ea6bf19bb7fb0b404adb3e
[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           bool isVariableFound = false;
411           int anArgIndex = 0;
412           for(int i = 1, n = aCmd->GetNbArgs(); i <= n; i++) {
413             if(aCmd->GetArg(i).IsEqual("SMESH.PointStruct")) {
414               anArgIndex = i+1;
415               break;
416             }
417           }
418           if(anArgIndex > 0) {
419             if(aCurrentStateSize == 3) { // translation by dx, dy, dz
420               for(int j = 0; j < aCurrentStateSize; j++) {
421                 if(!aCurrentState.at(j).IsEmpty()) {
422                   isVariableFound = true;
423                   aCmd->SetArg(anArgIndex+j, aCurrentState.at(j));
424                 }
425               }
426             }
427             else if(aCurrentStateSize == 6) { // translation by x1, x2, y1, y2, z1, z2
428               // TODO: limitation until operations on the variables will be introduced
429               /*
430               isVariableFound = true;
431               for(int j = 0; j < 3; j++) {
432                 TCollection_AsciiString anArg = aCmd->GetArg(anArgIndex+j);
433                 TCollection_AsciiString aValue1 = aCurrentState.at(2*j), aValue2 = aCurrentState.at(2*j+1);
434                 bool aV1 = !aValue1.IsEmpty();
435                 bool aV2 = !aValue2.IsEmpty();
436                 double aValue, aCurrentValue = anArg.IsRealValue() ? anArg.RealValue() : 0;
437                 if(aV1 && !aV2) {
438                   if(!GetReal(aValue1, aValue))
439                     aValue = 0;
440                   aValue2 = TCollection_AsciiString( aValue + aCurrentValue );
441                 }
442                 else if(!aV1 && aV2) {
443                   if(!GetReal(aValue2, aValue))
444                     aValue = 0;
445                   aValue1 = TCollection_AsciiString( aValue - aCurrentValue );
446                 }
447                 else if(!aV1 && !aV2) {
448                   aValue1 = TCollection_AsciiString( 0 );
449                   aValue2 = TCollection_AsciiString( aCurrentValue );
450                 }
451                 aCmd->SetArg(anArgIndex+j, aValue1 + ", " + aValue2 );
452               }
453               */
454             }
455           }
456           if(isVariableFound) {
457             TCollection_AsciiString aDim;
458             if(aCurrentStateSize == 6)
459               aDim = "6";
460             aCmd->SetArg(anArgIndex - 1, TCollection_AsciiString(SMESH_2smeshpy::SmeshpyName())+".PointStructStr"+aDim);
461             aCmd->SetArg(anArgIndex - 2, TCollection_AsciiString(SMESH_2smeshpy::SmeshpyName())+".DirStructStr");
462           }
463           aStates->IncrementState();
464         }
465         else if(aMethod.IsEqual("Rotate") ||
466                 aMethod.IsEqual("RotateMakeGroups") ||
467                 aMethod.IsEqual("RotateMakeMesh") ||
468                 aMethod.IsEqual("RotationSweep") ||
469                 aMethod.IsEqual("RotationSweepMakeGroups") ||
470                 aMethod.IsEqual("Mirror") ||
471                 aMethod.IsEqual("MirrorMakeGroups")) {
472           bool isSubstitute = false;
473           int anArgIndex = 0;
474           for(int i = 1, n = aCmd->GetNbArgs(); i <= n; i++) {
475             if(aCmd->GetArg(i).IsEqual("SMESH.AxisStruct")) {
476               anArgIndex = i+1;
477               break;
478             }
479           }
480           if(anArgIndex > 0) {
481             for(int j = 0; j < aCurrentStateSize; j++) {
482               if(!aCurrentState.at(j).IsEmpty()) {
483                 if(j < 6) // 0-5 - axis struct, 6 - angle (rotation & sweep), 7-8 - nbSteps and tolerance (sweep)
484                   isSubstitute = true;
485                 aCmd->SetArg(anArgIndex+j, aCurrentState.at(j));
486               }
487             }
488           }
489           if(isSubstitute)
490             aCmd->SetArg(anArgIndex - 1, TCollection_AsciiString(SMESH_2smeshpy::SmeshpyName())+".AxisStructStr");
491           aStates->IncrementState();
492         }
493         else if(aMethod.IsEqual("AddNode") ||
494                 aMethod.IsEqual("MoveClosestNodeToPoint")) {
495           for(int j = 0; j < aCurrentStateSize; j++) {
496             if(!aCurrentState.at(j).IsEmpty())
497               aCmd->SetArg(j+1, aCurrentState.at(j));
498           }
499           aStates->IncrementState();
500         }
501         else if(aMethod.IsEqual("MoveNode")) {
502           for(int j = 0; j < aCurrentStateSize; j++) {
503             if(!aCurrentState.at(j).IsEmpty())
504               aCmd->SetArg(j+2, aCurrentState.at(j));
505           }
506           aStates->IncrementState();
507         }
508         else if(aMethod.IsEqual("ExtrusionSweep") ||
509                 aMethod.IsEqual("ExtrusionSweepMakeGroups")) {
510           bool isSubstitute = false;
511           int anArgIndex = 0;
512           for(int i = 1, n = aCmd->GetNbArgs(); i <= n; i++) {
513             if(aCmd->GetArg(i).IsEqual("SMESH.PointStruct")) {
514               anArgIndex = i+1;
515               break;
516             }
517           }
518           if(anArgIndex > 0) {
519             for(int j = 0; j < aCurrentStateSize; j++) {
520               if(!aCurrentState.at(j).IsEmpty()) {
521                 if(j < 3) // 0-2 - dir struct, 3 - number of steps
522                   isSubstitute = true;
523                 aCmd->SetArg(anArgIndex+j, aCurrentState.at(j));
524               }
525             }
526           }
527           if(isSubstitute) {
528             aCmd->SetArg(anArgIndex - 1, TCollection_AsciiString(SMESH_2smeshpy::SmeshpyName())+".PointStructStr");
529             aCmd->SetArg(anArgIndex - 2, TCollection_AsciiString(SMESH_2smeshpy::SmeshpyName())+".DirStructStr");
530           }
531           aStates->IncrementState();
532         }
533         else if(aMethod.IsEqual("ExtrusionAlongPath") ||
534                 aMethod.IsEqual("ExtrusionAlongPathMakeGroups") ||
535                 /* workaround for a bug in the command parsing algorithm */
536                 aCmd->GetString().Search("ExtrusionAlongPathMakeGroups") != -1) {
537           int aNbAngles = aCurrentStateSize-3; // State looks like "Angle1:...:AngleN:X:Y:Z"
538           bool isSubstitute = false;
539           int anArgIndex = 0;
540           for(int i = 1, n = aCmd->GetNbArgs(); i <= n; i++) {
541             if(aCmd->GetArg(i).IsEqual("SMESH.PointStruct")) {
542               anArgIndex = i-1-aNbAngles;
543               break;
544             }
545           }
546           if(anArgIndex > 0) {
547             int j = 0;
548             for(; j < aNbAngles; j++) {
549               if(!aCurrentState.at(j).IsEmpty()) {
550                 aCmd->SetArg(anArgIndex+j-1, aCurrentState.at(j));
551               }
552             }
553             for(; j < aNbAngles+3; j++) {
554               if(!aCurrentState.at(j).IsEmpty()) {
555                 isSubstitute = true;
556                 aCmd->SetArg(anArgIndex+j+2, aCurrentState.at(j));
557               }
558             }
559           }
560           if(isSubstitute)
561             aCmd->SetArg(anArgIndex + aNbAngles + 1,
562                          TCollection_AsciiString(SMESH_2smeshpy::SmeshpyName())+".PointStructStr");
563           aStates->IncrementState();
564         }
565         else if(aMethod.IsEqual("TriToQuad") ||
566                 aMethod.IsEqual("Concatenate") ||
567                 aMethod.IsEqual("ConcatenateWithGroups")) {
568           if(aCurrentStateSize && !aCurrentState.at(0).IsEmpty())
569             aCmd->SetArg(aCmd->GetNbArgs(), aCurrentState.at(0));
570           aStates->IncrementState();
571         }
572         else if(aMethod.IsEqual("Smooth") ||
573                 aMethod.IsEqual("SmoothParametric")) {
574           int anArgIndex = aCmd->GetNbArgs() - 2;
575           for(int j = 0; j < aCurrentStateSize; j++) {
576             if(!aCurrentState.at(j).IsEmpty())
577               aCmd->SetArg(anArgIndex+j, aCurrentState.at(j));
578           }
579           aStates->IncrementState();
580         }
581         else if(aMethod.IsEqual("ApplyToMeshFaces") ||
582                 aMethod.IsEqual("ApplyToHexahedrons")) {
583           int anArgIndex = aCmd->GetNbArgs()-1;
584           for(int j = 0; j < aCurrentStateSize; j++)
585             if(!aCurrentState.at(j).IsEmpty())
586               aCmd->SetArg(anArgIndex+j, aCurrentState.at(j));
587           aStates->IncrementState();
588         }
589       }
590     }
591     else {
592       if(MYDEBUG)
593         cout << "Object not found" << endl;
594     }
595     if(MYDEBUG) {
596       cout<<"Command after: "<< aCmd->GetString()<<endl;
597     }
598   }
599   
600   ProcessLayerDistribution();
601 }
602 //================================================================================
603 /*!
604  * \brief Private method
605  */
606 //================================================================================
607 void SMESH_NoteBook::InitObjectMap()
608 {
609   SMESH_Gen_i *aGen = SMESH_Gen_i::GetSMESHGen();
610   if(!aGen)
611     return;
612   
613   SALOMEDS::Study_ptr aStudy = aGen->GetCurrentStudy();
614   if(aStudy->_is_nil())
615     return;
616   
617   SALOMEDS::SObject_var aSO = aStudy->FindComponent(aGen->ComponentDataType());
618   if(CORBA::is_nil(aSO))
619     return;
620   
621   SALOMEDS::ChildIterator_var Itr = aStudy->NewChildIterator(aSO);
622   char* aParameters;
623   for(Itr->InitEx(true); Itr->More(); Itr->Next()) {
624     SALOMEDS::SObject_var aSObject = Itr->Value();
625     SALOMEDS::GenericAttribute_var anAttr;
626     if ( aSObject->FindAttribute(anAttr, "AttributeString")) {
627       aParameters = SALOMEDS::AttributeString::_narrow(anAttr)->Value();
628       SALOMEDS::ListOfListOfStrings_var aSections = aStudy->ParseVariables(aParameters);
629       if(MYDEBUG) {
630         cout<<"Entry : "<< aSObject->GetID()<<endl;
631         cout<<"aParameters : "<<aParameters<<endl;
632       }      
633       TCollection_AsciiString anObjType;
634       CORBA::Object_var anObject = SMESH_Gen_i::SObjectToObject(aSObject);
635       SMESH::SMESH_Hypothesis_var aHyp = SMESH::SMESH_Hypothesis::_narrow(anObject);
636       if(!aHyp->_is_nil()) {
637         anObjType = TCollection_AsciiString(aHyp->GetName());
638       }
639       else if(SMESH::SMESH_Mesh_var aMesh = SMESH::SMESH_Mesh::_narrow(anObject)) {
640         anObjType = TCollection_AsciiString("Mesh");
641       }
642       if(MYDEBUG)
643         cout<<"The object Type : "<<anObjType<<endl;
644       ObjectStates *aState = NULL;
645       if(anObjType == "LayerDistribution") {
646         aState = new LayerDistributionStates();
647       }
648       else
649         aState = new  ObjectStates(anObjType);
650       
651       for(int i = 0; i < aSections->length(); i++) {
652         TState aVars;
653         SALOMEDS::ListOfStrings aListOfVars = aSections[i];
654         for(int j = 0;j<aListOfVars.length();j++) {
655           TCollection_AsciiString aVar(aListOfVars[j].in());
656           if(!aVar.IsEmpty() && aStudy->IsVariable(aVar.ToCString())) {
657             aVar.InsertBefore(1,"\"");
658             aVar.InsertAfter(aVar.Length(),"\"");
659           }
660           aVars.push_back(aVar);
661           if(MYDEBUG) {
662             cout<<"Variable: '"<<aVar<<"'"<<endl;
663           }
664         }
665         aState->AddState(aVars);
666       }
667       _objectMap.insert(pair<TCollection_AsciiString,ObjectStates*>(TCollection_AsciiString(aSObject->GetID()),aState));
668     }
669   }
670 }
671
672 //================================================================================
673 /*!
674  * 
675  */
676 //================================================================================
677 void SMESH_NoteBook::AddCommand(const TCollection_AsciiString& theString)
678 {
679   if(MYDEBUG)
680     cout<<theString<<endl;
681   Handle(_pyCommand) aCommand = new _pyCommand( theString, -1);
682   _commands.push_back(aCommand);
683
684   if ( aCommand->GetMethod() == "GetMeshEditor" ) { // MeshEditor creation
685     myMeshEditors.insert( make_pair( aCommand->GetResultValue(),
686                                      aCommand->GetObject() ) );
687   }
688 }
689
690 //================================================================================
691 /*!
692  * 
693  */
694 //================================================================================
695 void SMESH_NoteBook::ProcessLayerDistribution()
696 {
697   // 1) Find all LayerDistribution states
698   vector<LayerDistributionStates*> aLDS;
699   TVariablesMap::const_iterator it = _objectMap.begin();
700   for(;it != _objectMap.end();it++) {
701     LayerDistributionStates* aLDStates = dynamic_cast<LayerDistributionStates*>(((*it).second));
702     if(aLDStates!=NULL) {
703       aLDS.push_back(aLDStates);
704     }
705   }
706   
707   if(!aLDS.size())
708     return;
709   
710   // 2) Initialize all type of 1D Distribution hypothesis
711   for(int i=0;i<_commands.size();i++){
712     for(int j =0;j < aLDS.size();j++){
713       TCollection_AsciiString aResultValue = _commands[i]->GetResultValue();
714       if(_commands[i]->GetMethod() == "CreateHypothesis" &&
715          aLDS[j]->HasDistribution(aResultValue)){
716         TCollection_AsciiString aType = _commands[i]->GetArg(1);
717         aType.RemoveAll('\'');
718         aLDS[j]->SetDistributionType(aResultValue,aType);
719       }
720     }
721   }
722   // 3) ... and replase variables ...
723
724   for(int i=0;i<_commands.size();i++){
725     for(int j =0;j < aLDS.size();j++){
726       TCollection_AsciiString anObject = _commands[i]->GetObject();
727
728       if(aLDS[j]->HasDistribution(anObject)) {
729         TCollection_AsciiString aType = aLDS[j]->GetDistributionType(anObject);
730         TCollection_AsciiString aMethod = _commands[i]->GetMethod();
731         if(aType == "LocalLength") {
732           if(aMethod == "SetLength") {
733             SetVariable(_commands[i], aLDS[j],0,1);
734             aLDS[j]->IncrementState();
735           }
736           else if(aMethod == "SetPrecision") {
737             SetVariable(_commands[i], aLDS[j],1,1);
738             aLDS[j]->IncrementState();
739           }
740         }
741
742         // Case for NumberOfSegments hypothesis
743         else if(aType == "NumberOfSegments"){
744           if(aMethod == "SetNumberOfSegments") {
745             SetVariable(_commands[i], aLDS[j],0,1);
746             if(aLDS[j]->GetCurrectState().size()==1)
747               aLDS[j]->IncrementState();
748           }
749           else if (aMethod == "SetScaleFactor") {
750             SetVariable(_commands[i], aLDS[j],1,1);
751             aLDS[j]->IncrementState();
752           }
753         }
754         
755         else if( aType == "Deflection1D" ){
756           if(aMethod == "SetDeflection"){
757             SetVariable(_commands[i], aLDS[j],0,1);
758             aLDS[j]->IncrementState();
759           }
760         }
761         // Case for Arithmetic1D and StartEndLength hypothesis
762         else if(aType == "Arithmetic1D" || aType == "StartEndLength") {
763           if(aMethod == "SetLength") {
764             int anArgNb = (_commands[i]->GetArg(2) == "1") ? 0 : 1;
765             SetVariable(_commands[i], aLDS[j],anArgNb,1);
766             aLDS[j]->IncrementState();
767           }
768         }
769       }
770     }
771   }
772 }
773 //================================================================================
774 /*!
775  *  \brief Return result script
776  */
777 //================================================================================
778 TCollection_AsciiString SMESH_NoteBook::GetResultScript() const
779 {
780   TCollection_AsciiString aResult;
781   for(int i=0;i<_commands.size();i++)
782     aResult+=_commands[i]->GetString()+"\n";
783   return aResult;
784 }
785
786 //================================================================================
787 /*!
788  *  \brief Return value of the variable
789  */
790 //================================================================================
791 bool SMESH_NoteBook::GetReal(const TCollection_AsciiString& theVarName, double& theValue)
792 {
793   bool ok = false;
794
795   SMESH_Gen_i *aGen = SMESH_Gen_i::GetSMESHGen();
796   if(!aGen)
797     return ok;
798
799   SALOMEDS::Study_ptr aStudy = aGen->GetCurrentStudy();
800   if(aStudy->_is_nil())
801     return ok;
802
803   TCollection_AsciiString aVarName = theVarName;
804   aVarName.RemoveAll('\"');
805
806   if(aVarName.IsEmpty())
807     return ok;
808
809   const char* aName = aVarName.ToCString();
810   if(aStudy->IsVariable(aName) && (aStudy->IsReal(aName) || aStudy->IsInteger(aName))) {
811     theValue = aStudy->GetReal(aVarName.ToCString());
812     ok = true;
813   }
814
815   return ok;
816 }
817
818
819 /*!
820  *  Set variable of the ObjectStates from position to the _pyCommand
821  *  method as nbArg argument
822  */
823 void SetVariable(Handle(_pyCommand) theCommand, const ObjectStates* theStates, int position, int theArgNb)
824 {
825   if(theStates->GetCurrectState().size() > position)
826     if(!theStates->GetCurrectState().at(position).IsEmpty())
827       theCommand->SetArg(theArgNb,theStates->GetCurrectState().at(position));
828 }