Salome HOME
Fix for the bug #255: VTK viewer is not updated after modification of objects.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_DataModel.cxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include "HYDROGUI_DataModel.h"
24
25 #include "HYDROGUI_DataObject.h"
26 #include "HYDROGUI_Module.h"
27 #include "HYDROGUI_Tool.h"
28 #include "HYDROGUI_Zone.h"
29 #include "HYDROGUI_Region.h"
30
31 #include <HYDROData_Bathymetry.h>
32 #include <HYDROData_CalculationCase.h>
33 #include <HYDROData_Document.h>
34 #include <HYDROData_DummyObject3D.h>
35 #include <HYDROData_Image.h>
36 #include <HYDROData_ImmersibleZone.h>
37 #include <HYDROData_Iterator.h>
38 #include <HYDROData_Polyline3D.h>
39 #include <HYDROData_PolylineXY.h>
40 #include <HYDROData_Profile.h>
41 #include <HYDROData_VisualState.h>
42 #include <HYDROData_Region.h>
43 #include <HYDROData_Zone.h>
44 #include <HYDROData_Obstacle.h>
45 #include <HYDROData_Channel.h>
46 #include <HYDROData_Digue.h>
47 #include <HYDROData_River.h>
48 #include <HYDROData_Stream.h>
49
50 #include <CAM_Application.h>
51 #include <CAM_DataObject.h>
52 #include <CAM_Module.h>
53 #include <CAM_Study.h>
54
55 #include <LightApp_Application.h>
56 #include <LightApp_DataObject.h>
57 #include <LightApp_Study.h>
58
59 #include <SUIT_DataObject.h>
60 #include <SUIT_DataBrowser.h>
61 #include <SUIT_ResourceMgr.h>
62 #include <SUIT_Study.h>
63 #include <SUIT_Tools.h>
64
65 #include <HYDROData_Document.h>
66
67 #include <TDF_Delta.hxx>
68 #include <TDF_ListIteratorOfDeltaList.hxx>
69
70 #include <QApplication>
71 #include <QDir>
72
73 // #define DEB_GROUPS 1
74 #ifdef DEB_GROUPS
75 #include <HYDROData_ShapesGroup.h>
76 #endif
77
78 static HYDROData_SequenceOfObjects myCopyingObjects;
79
80 HYDROGUI_DataModel::HYDROGUI_DataModel( CAM_Module* theModule )
81 : LightApp_DataModel( theModule )
82 {
83   update( module()->application()->activeStudy()->id() );
84 }
85
86 HYDROGUI_DataModel::~HYDROGUI_DataModel()
87 {
88 }
89
90 bool HYDROGUI_DataModel::open( const QString& theURL,
91                                CAM_Study* theStudy,
92                                QStringList theFileList )
93 {
94   LightApp_DataModel::open( theURL, theStudy, theFileList );
95   const int aStudyId = theStudy->id();
96
97   Data_DocError res = DocError_UnknownProblem;
98   if( theFileList.count() == 2 )
99   {
100     QString aTmpDir = theFileList[0];
101     QString aFileName = theFileList[1];
102
103     myStudyURL = theURL;
104     QString aFullPath = SUIT_Tools::addSlash( aTmpDir ) + aFileName;
105
106     try
107     {
108       res = HYDROData_Document::Load( (char*)aFullPath.toLatin1().constData(), aStudyId );
109     }
110     catch(...)
111     {
112       res = DocError_UnknownProblem;
113     }
114     if( res != DocError_OK )
115     {
116       module()->application()->putInfo( tr( "LOAD_ERROR" ) );
117       return false;
118     }
119   }
120
121   // if the document open was successful, the data model update happens
122   // in the set mode of the module
123   if( res == DocError_OK )
124     update( aStudyId );
125
126   return true;
127 }
128
129 bool HYDROGUI_DataModel::save( QStringList& theFileList )
130 {
131   if( !module()->application()->activeStudy() )
132     return false;
133   
134   LightApp_DataModel::save( theFileList );
135
136   QString aTmpDir;
137   QString aFileName;
138   SUIT_ResourceMgr* resMgr = module()->application()->resourceMgr();
139   bool isMultiFile = false;
140   if( resMgr )
141     isMultiFile = resMgr->booleanValue( "Study", "multi_file", false );
142
143   // save data to temporary files
144   LightApp_Study* aStudy = dynamic_cast<LightApp_Study*>( module()->application()->activeStudy() );
145   aTmpDir = aStudy->GetTmpDir( myStudyURL.toLatin1().constData(), isMultiFile ).c_str();
146   aFileName = SUIT_Tools::file( myStudyURL, false ) + "_HYDRO.cbf";
147
148   QString aFullPath = aTmpDir + aFileName;
149   Data_DocError res = getDocument()->Save( (char*)aFullPath.toLatin1().constData() );
150   if( res != DocError_OK )
151   {
152     module()->application()->putInfo( tr( "SAVE_ERROR" ) );
153     return false;
154   }
155
156   theFileList.append( aTmpDir );
157   theFileList.append( aFileName );
158
159   return true;
160 }
161
162 bool HYDROGUI_DataModel::saveAs( const QString& theURL,
163                                  CAM_Study*,
164                                  QStringList& theFileList )
165 {
166   myStudyURL = theURL;
167   return save( theFileList );
168 }
169
170 bool HYDROGUI_DataModel::close()
171 {
172   return true;
173 }
174
175 bool HYDROGUI_DataModel::dumpPython( const QString& theURL,
176                                      CAM_Study*     theStudy,
177                                      bool           isMultiFile,
178                                      QStringList&   theListOfFiles )
179 {
180   LightApp_DataModel::dumpPython( theURL, theStudy, isMultiFile, theListOfFiles );
181
182   int aStudyId = theStudy->id();
183
184   LightApp_Study* aStudy = ::qobject_cast<LightApp_Study*>( theStudy );
185   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( aStudyId );
186   if ( aDocument.IsNull() || !aStudy )
187     return false;
188
189   QString aFileToExport = aStudy->GetTmpDir( theURL.toLatin1().constData(), isMultiFile ).c_str();
190   aFileToExport += QString( QDir::separator() ) + "HYDRO.py";
191
192   bool aRes = aDocument->DumpToPython( aFileToExport );
193
194   if ( aRes )
195   {
196     theListOfFiles.append( aFileToExport );
197   }
198
199   return aRes;
200 }
201
202 bool HYDROGUI_DataModel::isModified() const
203 {
204   return getDocument()->IsModified();
205 }
206
207 bool HYDROGUI_DataModel::isSaved() const
208 {
209   return true;
210 }
211
212 void HYDROGUI_DataModel::update( const int theStudyId )
213 {
214   LightApp_Application* anApp = dynamic_cast<LightApp_Application*>( module()->application() );
215   if( !anApp )
216     return;
217
218   SUIT_DataObject* aStudyRoot = anApp->activeStudy()->root();
219   if( !aStudyRoot )
220     return;
221
222   // create root object if not exist
223   CAM_DataObject* aRootObj = root();
224   if( !aRootObj )
225     aRootObj = createRootModuleObject( aStudyRoot );
226
227   if( !aRootObj )
228     return;
229
230   DataObjectList aList;
231   aRootObj->children( aList );
232   QListIterator<SUIT_DataObject*> anIter( aList );
233   while( anIter.hasNext() )
234     removeChild( aRootObj, anIter.next() );
235
236   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theStudyId );
237   if( aDocument.IsNull() )
238     return;
239
240   // Create root objects:
241
242   // IMAGES
243   LightApp_DataObject* anImageRootObj = createObject( aRootObj, tr( partitionName( KIND_IMAGE ).toAscii() ) );
244
245   // BATHYMETRY
246   LightApp_DataObject* aBathymetryRootObj = createObject( aRootObj, tr( partitionName( KIND_BATHYMETRY ).toAscii() ) );
247
248   // ARTIFICIAL OBJECTS
249   LightApp_DataObject* anArtificialObjectsRootObj = createObject( aRootObj, tr( partitionName( KIND_ARTIFICIAL_OBJECT ).toAscii() ) );
250
251   // NATURAL OBJECTS
252   LightApp_DataObject* aNaturalObjectsRootObj = createObject( aRootObj, tr( partitionName( KIND_NATURAL_OBJECT ).toAscii() ) );
253
254   // OBSTACLES
255   LightApp_DataObject* anObstaclesRootObj = createObject( aRootObj, tr( partitionName( KIND_OBSTACLE ).toAscii() ) );
256
257   // CALCULATION CASES
258   LightApp_DataObject* aCalculRootObj = createObject( aRootObj, tr( partitionName( KIND_CALCULATION ).toAscii() ) );
259
260   // POLYLINES
261   LightApp_DataObject* aPolylineRootObj = createObject( aRootObj, tr( partitionName( KIND_POLYLINEXY ).toAscii() ) );
262
263   // POLYLINES
264   LightApp_DataObject* aPolyline3DRootObj = createObject( aRootObj, tr( partitionName( KIND_POLYLINE ).toAscii() ) );
265
266   // PROFILES
267   LightApp_DataObject* aProfileRootObj = createObject( aRootObj, tr( partitionName( KIND_PROFILE ).toAscii() ) );
268
269   // VISUAL STATES
270   LightApp_DataObject* aVisualStateRootObj = createObject( aRootObj, tr( partitionName( KIND_VISUAL_STATE ).toAscii() ) );
271
272   HYDROData_Iterator anIterator( aDocument, KIND_UNKNOWN );
273   for( ; anIterator.More(); anIterator.Next() ) {
274     Handle(HYDROData_Entity) anObj = anIterator.Current();
275
276     if ( !anObj.IsNull() )
277     {
278       switch ( anObj->GetKind() ) {
279         case KIND_IMAGE:
280         {
281           Handle(HYDROData_Image) anImageObj =
282             Handle(HYDROData_Image)::DownCast( anObj );
283           if( !anImageObj.IsNull() ) {
284             createObject( anImageRootObj, anImageObj );
285           }
286
287           break;
288         }
289         case KIND_BATHYMETRY:
290         {
291           Handle(HYDROData_Bathymetry) aBathymetryObj =
292             Handle(HYDROData_Bathymetry)::DownCast( anObj );
293           if( !aBathymetryObj.IsNull() ) {
294             createObject( aBathymetryRootObj, aBathymetryObj );
295           }
296
297           break;
298         }
299         case KIND_CHANNEL:
300         {
301           Handle(HYDROData_Channel) aChannelObj =
302             Handle(HYDROData_Channel)::DownCast( anObj );
303           if( !aChannelObj.IsNull() ) {
304             createObject( anArtificialObjectsRootObj, aChannelObj );
305           }
306
307           break;
308         }
309         case KIND_DIGUE:
310         {
311           Handle(HYDROData_Digue) aDigueObj =
312             Handle(HYDROData_Digue)::DownCast( anObj );
313           if( !aDigueObj.IsNull() ) {
314             createObject( anArtificialObjectsRootObj, aDigueObj );
315           }
316
317           break;
318         }
319         case KIND_IMMERSIBLE_ZONE:
320         {
321           Handle(HYDROData_ImmersibleZone) anImmersibleZoneObj =
322             Handle(HYDROData_ImmersibleZone)::DownCast( anObj );
323           if( !anImmersibleZoneObj.IsNull() ) {
324             createObject( aNaturalObjectsRootObj, anImmersibleZoneObj );
325           }
326
327           break;
328         }
329         case KIND_RIVER:
330         {
331           Handle(HYDROData_River) aRiverObj =
332             Handle(HYDROData_River)::DownCast( anObj );
333           if( !aRiverObj.IsNull() ) {
334             createObject( aNaturalObjectsRootObj, aRiverObj );
335           }
336
337           break;
338         }
339         case KIND_STREAM:
340         {
341           Handle(HYDROData_Stream) aStreamObj =
342             Handle(HYDROData_Stream)::DownCast( anObj );
343           if( !aStreamObj.IsNull() ) {
344             createObject( aNaturalObjectsRootObj, aStreamObj );
345           }
346
347           break;
348         }
349         case KIND_OBSTACLE:
350         {
351           Handle(HYDROData_Obstacle) anObstacleObj =
352             Handle(HYDROData_Obstacle)::DownCast( anObj );
353           if( !anObstacleObj.IsNull() ) {
354             createObject( anObstaclesRootObj, anObstacleObj );
355           }
356
357           break;
358         }
359         case KIND_CALCULATION:
360         {
361           Handle(HYDROData_CalculationCase) aCalculObj =
362             Handle(HYDROData_CalculationCase)::DownCast( anObj );
363           if( !aCalculObj.IsNull() ) {
364             createObject( aCalculRootObj, aCalculObj );
365           }
366
367           break;
368         }
369         case KIND_POLYLINEXY:
370         {
371           Handle(HYDROData_PolylineXY) aPolylineObj =
372             Handle(HYDROData_PolylineXY)::DownCast( anObj );
373           if( !aPolylineObj.IsNull() ) {
374             createObject( aPolylineRootObj, aPolylineObj );
375           }
376
377           break;
378         }
379         case KIND_POLYLINE:
380         {
381           Handle(HYDROData_Polyline3D) aPolylineObj =
382             Handle(HYDROData_Polyline3D)::DownCast( anObj );
383           if( !aPolylineObj.IsNull() ) {
384             createObject( aPolyline3DRootObj, aPolylineObj );
385           }
386
387           break;
388         }
389         case KIND_PROFILE:
390         {
391           Handle(HYDROData_Profile) aProfileObj =
392             Handle(HYDROData_Profile)::DownCast( anObj );
393           if( !aProfileObj.IsNull() ) {
394             createObject( aProfileRootObj, aProfileObj );
395           }
396
397           break;
398         }
399         case KIND_VISUAL_STATE:
400         {
401           Handle(HYDROData_VisualState) aVisualStateObj =
402             Handle(HYDROData_VisualState)::DownCast( anObj );
403           if( !aVisualStateObj.IsNull() ) {
404             createObject( aVisualStateRootObj, aVisualStateObj );
405           }
406
407           break;
408         }
409       }
410     }
411   }
412
413   if( SUIT_DataBrowser* anObjectBrowser = anApp->objectBrowser() )
414   {
415     anObjectBrowser->setAutoOpenLevel( 3 );
416     anObjectBrowser->openLevels();
417   }
418 }
419
420 HYDROGUI_DataObject* HYDROGUI_DataModel::getDataObject( const Handle(HYDROData_Entity)& theModelObject )
421 {
422   return NULL; // to do if necessary
423 }
424
425 HYDROGUI_DataObject* HYDROGUI_DataModel::getReferencedDataObject( HYDROGUI_DataObject* theObject )
426 {
427   return NULL; // to do if necessary
428 }
429
430 SUIT_DataObject* HYDROGUI_DataModel::findObject( const QString& theEntry ) const
431 {
432   LightApp_Application* anApp = dynamic_cast<LightApp_Application*>( module()->application() );
433   return anApp ? anApp->findObject( theEntry ) : 0;
434 }
435
436 void HYDROGUI_DataModel::update( LightApp_DataObject* theObject,
437                                  LightApp_Study* theStudy )
438 {
439   if( !theStudy )
440     theStudy = dynamic_cast<LightApp_Study*>( module()->application()->activeStudy()) ;
441   if( theStudy )
442     update( theStudy->id() );
443 }
444
445 CAM_DataObject* HYDROGUI_DataModel::createRootModuleObject( SUIT_DataObject* theParent )
446 {
447   CAM_ModuleObject* aRootObj = createModuleObject( theParent );
448   aRootObj->setDataModel( this );
449   setRoot( aRootObj );
450   return aRootObj;
451 }
452
453 void HYDROGUI_DataModel::updateModel()
454 {
455   HYDROGUI_Module* aModule = dynamic_cast<HYDROGUI_Module*>( module() );
456   if( aModule )
457     update( aModule->getStudyId() );
458 }
459
460 Handle(HYDROData_Entity) HYDROGUI_DataModel::objectByEntry( const QString& theEntry,
461                                                             const ObjectKind theObjectKind )
462 {
463   QString anEntry = theEntry;
464   if( anEntry.indexOf( "_" ) != -1 ) // reference object
465     anEntry = anEntry.section( "_", -1 );
466
467   Handle(HYDROData_Document) aDocument = getDocument();
468   if( !aDocument.IsNull() )
469   {
470     HYDROData_Iterator anIterator( aDocument, theObjectKind );
471     for( ; anIterator.More(); anIterator.Next() )
472     {
473       Handle(HYDROData_Entity) anObject = anIterator.Current();
474       if( !anObject.IsNull() )
475       {
476         QString anEntryRef = HYDROGUI_DataObject::dataObjectEntry( anObject );
477         if( anEntryRef == anEntry )
478           return anObject;
479       }
480     }
481   }
482   return NULL;
483 }
484
485 bool HYDROGUI_DataModel::canUndo() const
486 {
487   return getDocument()->CanUndo();
488 }
489
490 bool HYDROGUI_DataModel::canRedo() const
491 {
492   return getDocument()->CanRedo();
493 }
494
495 QStringList HYDROGUI_DataModel::undoNames() const
496 {
497   QStringList aNames;
498   for( TDF_ListIteratorOfDeltaList anIter( getDocument()->GetUndos() ); anIter.More(); anIter.Next() )
499     aNames.prepend( HYDROGUI_Tool::ToQString( anIter.Value()->Name() ) );
500   return aNames;
501 }
502
503 QStringList HYDROGUI_DataModel::redoNames() const
504 {
505   QStringList aNames;
506   for( TDF_ListIteratorOfDeltaList anIter( getDocument()->GetRedos() ); anIter.More(); anIter.Next() )
507     aNames.append( HYDROGUI_Tool::ToQString( anIter.Value()->Name() ) );
508   return aNames;
509 }
510
511 void HYDROGUI_DataModel::clearUndos()
512 {
513   getDocument()->ClearUndos();
514 }
515
516 void HYDROGUI_DataModel::clearRedos()
517 {
518   getDocument()->ClearRedos();
519 }
520
521 bool HYDROGUI_DataModel::undo()
522 {
523   try 
524   {
525     getDocument()->Undo();
526   }
527   catch ( Standard_Failure )
528   {
529     return false;
530   }
531   return true;
532 }
533
534 bool HYDROGUI_DataModel::redo()
535 {
536   try 
537   {
538     getDocument()->Redo();
539   }
540   catch ( Standard_Failure )
541   {
542     return false;
543   }
544   return true;
545 }
546
547 bool HYDROGUI_DataModel::canCopy()
548 {
549   HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( (HYDROGUI_Module*)module() );
550   if( aSeq.Length() != 1 )
551     return false;
552
553   Handle(HYDROData_Entity) anObject = aSeq.First();
554   if( anObject.IsNull() )
555     return false;
556
557   ObjectKind aKind = anObject->GetKind();
558   if( aKind == KIND_IMAGE ||
559       aKind == KIND_POLYLINE ||
560       aKind == KIND_PROFILE ||
561       aKind == KIND_CALCULATION )
562     return true;
563
564   return false;
565 }
566
567 bool HYDROGUI_DataModel::canPaste()
568 {
569   for( int anIndex = 1, aLength = myCopyingObjects.Length(); anIndex <= aLength; anIndex++ )
570   {
571     Handle(HYDROData_Entity) anObject = myCopyingObjects.Value( anIndex );
572     if( !anObject.IsNull() && !anObject->IsRemoved() )
573       return true;
574   }
575   return false;
576 }
577
578 bool HYDROGUI_DataModel::copy()
579 {
580   HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( (HYDROGUI_Module*)module() );
581   changeCopyingObjects( aSeq );
582   return true;
583 }
584
585 bool HYDROGUI_DataModel::paste()
586 {
587   bool anIsChanged = false;
588   for( int anIndex = 1, aLength = myCopyingObjects.Length(); anIndex <= aLength; anIndex++ )
589   {
590     Handle(HYDROData_Entity) anObject = myCopyingObjects.Value( anIndex );
591     if( !anObject.IsNull() && !anObject->IsRemoved() )
592     {
593       ObjectKind aKind = anObject->GetKind();
594       Handle(HYDROData_Entity) aClone = getDocument()->CreateObject( aKind );
595       if( !aClone.IsNull() )
596       {
597         anObject->CopyTo( aClone );
598         anIsChanged = true;
599
600         // generate a new unique name for the clone object:
601         // case 1: Image_1 -> Image_2
602         // case 2: ImageObj -> ImageObj_1
603         QString aName = aClone->GetName();
604         QString aPrefix = aName;
605         if( aName.contains( '_' ) ) // case 1
606         {
607           QString aSuffix = aName.section( '_', -1 );
608           bool anIsInteger = false;
609           aSuffix.toInt( &anIsInteger );
610           if( anIsInteger )
611             aPrefix = aName.section( '_', 0, -2 );
612         }
613         else // case 2
614           aPrefix = aName;
615         aName = HYDROGUI_Tool::GenerateObjectName( (HYDROGUI_Module*)module(), aPrefix );
616         aClone->SetName( aName );
617       }
618     }
619   }
620   return anIsChanged;
621 }
622
623 void HYDROGUI_DataModel::changeCopyingObjects( const HYDROData_SequenceOfObjects& theSeq )
624 {
625   myCopyingObjects.Assign( theSeq );
626 }
627
628 QString HYDROGUI_DataModel::partitionName( const ObjectKind theObjectKind )
629 {
630   switch( theObjectKind )
631   {
632     case KIND_IMAGE:             return "IMAGES";
633     case KIND_POLYLINE:          return "POLYLINES_3D";
634     case KIND_POLYLINEXY:        return "POLYLINES";
635     case KIND_PROFILE:           return "PROFILES";
636     case KIND_VISUAL_STATE:      return "VISUAL_STATES";
637     case KIND_BATHYMETRY:        return "BATHYMETRIES";
638     case KIND_CALCULATION:       return "CALCULATION_CASES";
639     case KIND_OBSTACLE:          return "OBSTACLES";
640     case KIND_ARTIFICIAL_OBJECT: return "ARTIFICIAL_OBJECTS";
641     case KIND_NATURAL_OBJECT:    return "NATURAL_OBJECTS";
642     default: break;
643   }
644   return QString();
645 }
646
647 Handle(HYDROData_Document) HYDROGUI_DataModel::getDocument() const
648 {
649   int aStudyId = module()->application()->activeStudy()->id();
650   return HYDROData_Document::Document( aStudyId );
651 }
652
653 LightApp_DataObject* HYDROGUI_DataModel::createObject( SUIT_DataObject*         theParent,
654                                                        Handle(HYDROData_Entity) theModelObject,
655                                                        const QString&           theParentEntry,
656                                                        const bool               theIsBuildTree )
657 {
658   HYDROGUI_DataObject* aResObj = new HYDROGUI_DataObject( theParent, theModelObject, theParentEntry );
659   
660   if ( theIsBuildTree )
661   {
662     buildObjectTree( theParent, aResObj, theParentEntry );
663   }
664
665   return aResObj;
666 }
667
668 LightApp_DataObject* HYDROGUI_DataModel::buildObject( SUIT_DataObject*     theParent,
669                                                       HYDROGUI_DataObject* theObject,
670                                                       const QString&       theParentEntry,
671                                                       const bool           theIsBuildTree,
672                                                       const bool           theIsInOperation )
673 {
674   if ( theIsBuildTree )
675   {
676     buildObjectTree( theParent, theObject, theParentEntry, theIsInOperation );
677   }
678   return theObject;
679 }
680
681 LightApp_DataObject* HYDROGUI_DataModel::createZone( SUIT_DataObject*       theParent,
682                                                      Handle(HYDROData_Zone) theModelObject,
683                                                      const QString&         theParentEntry,
684                                                      const bool             theIsBuildTree,
685                                                      const bool             theIsInOperation )
686 {
687   return buildObject( theParent, new HYDROGUI_Zone( theParent, theModelObject, theParentEntry, theIsInOperation ), 
688     theParentEntry, theIsBuildTree, theIsInOperation );
689 }
690
691 LightApp_DataObject* HYDROGUI_DataModel::createRegion( SUIT_DataObject*         theParent,
692                                                        Handle(HYDROData_Region) theModelObject,
693                                                        const QString&           theParentEntry,
694                                                        const bool               theIsBuildTree,
695                                                        const bool               theIsInOperation )
696 {
697   return buildObject( theParent, new HYDROGUI_Region( theParent, theModelObject, theParentEntry, theIsInOperation ), 
698     theParentEntry, theIsBuildTree, theIsInOperation );
699 }
700
701 LightApp_DataObject* HYDROGUI_DataModel::createObject( SUIT_DataObject* theParent,
702                                                        const QString&   theName,
703                                                        const QString&   theParentEntry )
704 {
705   return new HYDROGUI_NamedObject( theParent, theName, theParentEntry );
706 }
707
708 void HYDROGUI_DataModel::buildObjectPartition( SUIT_DataObject*                   theObject,
709                                                const HYDROData_SequenceOfObjects& theObjects,
710                                                const QString&                     thePartName,
711                                                const bool                         theIsCreateEmpty )
712 {
713   if ( theObjects.IsEmpty() && !theIsCreateEmpty )
714     return;
715
716   HYDROGUI_DataObject* aGuiObj = dynamic_cast<HYDROGUI_DataObject*>( theObject );
717   if ( !aGuiObj )
718     return;
719
720   LightApp_DataObject* aPartSect = 
721     createObject( aGuiObj, thePartName, aGuiObj->entry() );
722
723   HYDROData_SequenceOfObjects::Iterator anIter( theObjects );
724   for ( ; anIter.More(); anIter.Next() )
725   {
726     Handle(HYDROData_Entity) anObj = anIter.Value();
727     if( !anObj.IsNull() && !anObj->IsRemoved() )
728       createObject( aPartSect, anObj, aGuiObj->entry(), false );
729   }
730 }
731
732 void HYDROGUI_DataModel::buildObjectTree( SUIT_DataObject* theParent,
733                                           SUIT_DataObject* theObject,
734                                           const QString&   theParentEntry,
735                                           const bool       theIsInOperation )
736 {
737   HYDROGUI_DataObject* aGuiObj = dynamic_cast<HYDROGUI_DataObject*>( theObject );
738   if ( !aGuiObj )
739     return;
740
741   Handle(HYDROData_Entity) aDataObj = aGuiObj->modelObject();
742   if ( aDataObj.IsNull() )
743     return;
744
745   if ( aDataObj->IsKind( STANDARD_TYPE(HYDROData_Object) ) )
746   {
747     Handle(HYDROData_Object) aGeomObj =
748       Handle(HYDROData_Object)::DownCast( aDataObj );
749
750     Handle(HYDROData_DummyObject3D) anObject3D = aGeomObj->GetObject3D();
751     if ( !anObject3D.IsNull() )
752       createObject( aGuiObj, anObject3D, aGuiObj->entry(), false );
753
754 #ifdef DEB_GROUPS
755     HYDROData_SequenceOfObjects anObjGroups = aGeomObj->GetGroups();
756     buildObjectPartition( aGuiObj, anObjGroups, tr( "OBJECT_GROUPS" ), false );
757 #endif
758   }
759
760   ObjectKind anObjectKind = aDataObj->GetKind();
761
762   if ( anObjectKind == KIND_IMAGE )
763   {
764     Handle(HYDROData_Image) anImageObj =
765       Handle(HYDROData_Image)::DownCast( aDataObj );
766     for ( int anIndex = 0, aNbRef = anImageObj->NbReferences(); anIndex < aNbRef; anIndex++ )
767     {
768       Handle(HYDROData_Entity) aRefObj = anImageObj->Reference( anIndex );
769       if ( !aRefObj.IsNull() && !aRefObj->IsRemoved() )
770         createObject( aGuiObj, aRefObj, aGuiObj->entry(), false );
771     }
772   }
773   else if ( anObjectKind == KIND_IMMERSIBLE_ZONE )
774   {
775     Handle(HYDROData_ImmersibleZone) aZoneObj =
776       Handle(HYDROData_ImmersibleZone)::DownCast( aDataObj );
777
778     LightApp_DataObject* aPolylineSect = 
779       createObject( aGuiObj, tr( "ZONE_POLYLINE" ), aGuiObj->entry() );
780
781     Handle(HYDROData_PolylineXY) aPolyline = aZoneObj->GetPolyline();
782     if ( !aPolyline.IsNull() && !aPolyline->IsRemoved() )
783       createObject( aPolylineSect, aPolyline, aGuiObj->entry(), false );
784
785     LightApp_DataObject* aBathSect = 
786       createObject( aGuiObj, tr( "ZONE_BATHYMETRY" ), aGuiObj->entry() );
787
788     Handle(HYDROData_IAltitudeObject) anAltitudeObj = aZoneObj->GetAltitudeObject();
789     if ( !anAltitudeObj.IsNull() && !anAltitudeObj->IsRemoved() )
790       createObject( aBathSect, anAltitudeObj, aGuiObj->entry(), false );
791   }
792   else if ( anObjectKind == KIND_POLYLINE )
793   {
794     Handle(HYDROData_Polyline3D) aPolyline3D =
795       Handle(HYDROData_Polyline3D)::DownCast( aDataObj );
796
797     LightApp_DataObject* aPolylineSect = 
798       createObject( aGuiObj, tr( "POLYLINE3D_POLYLINE" ), aGuiObj->entry() );
799
800     Handle(HYDROData_PolylineXY) aPolylineXY = aPolyline3D->GetPolylineXY();
801     if ( !aPolylineXY.IsNull() && !aPolylineXY->IsRemoved() )
802       createObject( aPolylineSect, aPolylineXY, aGuiObj->entry(), false );
803
804     LightApp_DataObject* aProfileSect = 
805       createObject( aGuiObj, tr( "POLYLINE3D_PROFILE" ), aGuiObj->entry() );
806
807     Handle(HYDROData_ProfileUZ) aProfileUZ = aPolyline3D->GetProfileUZ();
808     if ( aProfileUZ.IsNull() || aProfileUZ->IsRemoved() )
809       aProfileUZ = aPolyline3D->GetChildProfileUZ( false );
810
811     if ( !aProfileUZ.IsNull() && !aProfileUZ->IsRemoved() )
812     {
813       Handle(HYDROData_Profile) aProfile = 
814         Handle(HYDROData_Profile)::DownCast( aProfileUZ->GetFatherObject() );
815       if ( !aProfile.IsNull() && !aProfile->IsRemoved() )
816         createObject( aProfileSect, aProfile, aGuiObj->entry(), false );
817     }
818
819     LightApp_DataObject* aBathSect = 
820       createObject( aGuiObj, tr( "POLYLINE3D_BATHYMETRY" ), aGuiObj->entry() );
821
822     Handle(HYDROData_IAltitudeObject) anAltitudeObj = aPolyline3D->GetAltitudeObject();
823     if ( !anAltitudeObj.IsNull() && !anAltitudeObj->IsRemoved() )
824       createObject( aBathSect, anAltitudeObj, aGuiObj->entry(), false );
825   }
826   else if ( anObjectKind == KIND_CALCULATION )
827   {
828     Handle(HYDROData_CalculationCase) aCaseObj =
829       Handle(HYDROData_CalculationCase)::DownCast( aDataObj );
830
831     LightApp_DataObject* aCaseRegionsSect = 
832       createObject( aGuiObj, tr( "CASE_REGIONS" ), aGuiObj->entry() );
833
834     HYDROData_SequenceOfObjects aCaseRegions = aCaseObj->GetRegions();
835     HYDROData_SequenceOfObjects::Iterator anIter( aCaseRegions );
836     for ( ; anIter.More(); anIter.Next() )
837     {
838       Handle(HYDROData_Region) aCaseRegion =
839         Handle(HYDROData_Region)::DownCast( anIter.Value() );
840       if( !aCaseRegion.IsNull() && !aCaseRegion->IsRemoved() )
841         createRegion( aCaseRegionsSect, aCaseRegion, "", true, theIsInOperation );
842     }
843
844 #ifdef DEB_GROUPS
845     HYDROData_SequenceOfObjects aCalcGroups = aCaseObj->GetSplittedGroups();
846     buildObjectPartition( aGuiObj, aCalcGroups, tr( "OBJECT_GROUPS" ), false );
847
848     HYDROData_SequenceOfObjects aCalcSplitGroups = aCaseObj->GetSplittedGroups();
849     buildObjectPartition( aGuiObj, aCalcSplitGroups, tr( "CASE_SPLITTED_GROUPS" ), false );
850 #endif
851
852   }
853   else if ( anObjectKind == KIND_REGION )
854   {
855     Handle(HYDROData_Region) aRegionObj =
856       Handle(HYDROData_Region)::DownCast( aDataObj );
857
858     HYDROData_SequenceOfObjects aRegionZones = aRegionObj->GetZones();
859     HYDROData_SequenceOfObjects::Iterator anIter( aRegionZones );
860     for ( ; anIter.More(); anIter.Next() )
861     {
862       Handle(HYDROData_Zone) aRegionZone =
863         Handle(HYDROData_Zone)::DownCast( anIter.Value() );
864       if( !aRegionZone.IsNull() && !aRegionZone->IsRemoved() )
865         createZone( aGuiObj, aRegionZone, "", true, theIsInOperation );
866     }
867   }
868   else if ( anObjectKind == KIND_PROFILE )
869   {
870     Handle(HYDROData_Profile) aProfileObj =
871       Handle(HYDROData_Profile)::DownCast( aDataObj );
872
873     aGuiObj->setIsValid( aProfileObj->IsValid() );
874   }
875   else if ( anObjectKind == KIND_CHANNEL || anObjectKind == KIND_DIGUE )
876   {
877     Handle(HYDROData_Channel) aChannelObj =
878       Handle(HYDROData_Channel)::DownCast( aDataObj );
879
880     LightApp_DataObject* aGuideLineSect = 
881       createObject( aGuiObj, tr( "CHANNEL_GUIDE_LINE" ), aGuiObj->entry() );
882     Handle(HYDROData_Polyline3D) aGuideLine = aChannelObj->GetGuideLine();
883     if ( !aGuideLine.IsNull() && !aGuideLine->IsRemoved() ) {
884       createObject( aGuideLineSect, aGuideLine, aGuiObj->entry(), false );
885     }
886
887     LightApp_DataObject* aProfileSect = 
888       createObject( aGuiObj, tr( "CHANNEL_PROFILE" ), aGuiObj->entry() );
889     Handle(HYDROData_Profile) aProfile = aChannelObj->GetProfile();
890     if ( !aProfile.IsNull() && !aProfile->IsRemoved() ) {
891       createObject( aProfileSect, aProfile, aGuiObj->entry(), false );
892     }
893   }
894   else if ( anObjectKind == KIND_STREAM )
895   {
896     Handle(HYDROData_Stream) aStreamObj =
897       Handle(HYDROData_Stream)::DownCast( aDataObj );
898
899     LightApp_DataObject* aHydraulicAxisSect = 
900       createObject( aGuiObj, tr( "STREAM_HYDRAULIC_AXIS" ), aGuiObj->entry() );
901     Handle(HYDROData_PolylineXY) aHydraulicAxis = aStreamObj->GetHydraulicAxis();
902     if ( !aHydraulicAxis.IsNull() && !aHydraulicAxis->IsRemoved() ) {
903       createObject( aHydraulicAxisSect, aHydraulicAxis, aGuiObj->entry(), false );
904     }
905
906     HYDROData_SequenceOfObjects aProfiles = aStreamObj->GetProfiles();
907     buildObjectPartition( aGuiObj, aProfiles, tr( "STREAM_PROFILES" ), true );
908   }
909 }
910
911 void HYDROGUI_DataModel::buildCaseTree( SUIT_DataObject* theParent, Handle(HYDROData_CalculationCase) theCase )
912 {
913   if ( !theCase.IsNull() )
914   {
915     if ( theParent )
916     {
917       // Remove previous objects tree
918         DataObjectList aList;
919         theParent->children( aList );
920         QListIterator<SUIT_DataObject*> anIter( aList );
921         while( anIter.hasNext() )
922           removeChild( theParent, anIter.next() );
923     }
924
925     new HYDROGUI_DropTargetObject( theParent, tr( "NEW_REGION" ), "", true );
926
927     HYDROData_SequenceOfObjects aCaseRegions = theCase->GetRegions();
928     HYDROData_SequenceOfObjects::Iterator anIter( aCaseRegions );
929     for ( ; anIter.More(); anIter.Next() )
930     {
931       Handle(HYDROData_Region) aCaseRegion =
932         Handle(HYDROData_Region)::DownCast( anIter.Value() );
933       if( !aCaseRegion.IsNull() && !aCaseRegion->IsRemoved() )
934         createRegion( theParent, aCaseRegion, "", true, true );
935     }
936   }
937 }
938
939 void HYDROGUI_DataModel::updateObjectTree( Handle(HYDROData_Entity)& theObj )
940 {
941   if ( !theObj.IsNull() )
942   {
943     HYDROGUI_DataObject* aGuiObj = dynamic_cast<HYDROGUI_DataObject*>(
944       findObject( HYDROGUI_DataObject::dataObjectEntry( theObj ) ) );
945     if ( aGuiObj )
946     {
947       // Remove previous objects tree
948       DataObjectList aList;
949       aGuiObj->children( aList );
950       QListIterator<SUIT_DataObject*> anIter( aList );
951       while( anIter.hasNext() )
952         removeChild( aGuiObj, anIter.next() );
953
954       // Rebuild the subtree
955       QString aParentEntry;
956       HYDROGUI_DataObject* aParent = dynamic_cast<HYDROGUI_DataObject*>( aGuiObj->parent() );
957       if ( aParent )
958       {
959         aParentEntry = aParent->entry();
960       }
961       buildObjectTree( aParent, aGuiObj, aParentEntry, aGuiObj->isInOperation() );
962     } 
963     else
964     {
965       // workaround for the bug in SalomeApp_Study::findObjectByEntry - it can't find LightApp_DataObjects
966       HYDROGUI_Module* aModule = dynamic_cast<HYDROGUI_Module*>( module() );
967       if( aModule )
968       {
969         aModule->getApp()->updateObjectBrowser();
970       }
971     }
972   }
973 }
974
975 void HYDROGUI_DataModel::removeChild( SUIT_DataObject* theParent,
976                                       SUIT_DataObject* theChild )
977 {
978   SUIT_DataObject* aSubChild = theChild->firstChild();
979   for( ; aSubChild; aSubChild = aSubChild->nextBrother() )
980     removeChild( theChild, aSubChild );
981   theParent->removeChild( theChild );
982 }
983
984 SUIT_DataObject* HYDROGUI_DataModel::findChildByName( const SUIT_DataObject* theFather,
985                                                       const QString& theName )
986 {
987   SUIT_DataObject* aChild = theFather->firstChild();
988   while( aChild )
989   {
990     if( aChild->name() == theName )
991       return aChild; // found
992     aChild = aChild->nextBrother();
993   }
994   return NULL; // not found
995 }
996
997 bool HYDROGUI_DataModel::createNewRegion( Handle(HYDROData_CalculationCase) theCase, 
998                                          const QList<HYDROGUI_Zone*>& theZonesList )
999 {
1000   bool isOk = !theCase.IsNull();
1001   if ( isOk )
1002   {
1003     Handle(HYDROData_Region) aRegion;
1004     Handle(HYDROData_Zone) aZone;
1005     for (int i = 0; i < theZonesList.length(); i++ )
1006     {
1007       aZone = Handle(HYDROData_Zone)::DownCast( theZonesList.at(i)->modelObject() );
1008       if ( !aZone.IsNull() )
1009       {
1010         if ( aRegion.IsNull() )
1011         {
1012           aRegion = theCase->AddNewRegion( aZone );
1013           isOk = !aRegion.IsNull();
1014         }
1015         else
1016         {
1017           if ( !( aRegion->AddZone( aZone ) ) )
1018           {
1019             isOk = false;
1020           }
1021         }
1022       }
1023     }
1024   }
1025   return isOk;
1026 }
1027
1028 bool HYDROGUI_DataModel::rename( Handle(HYDROData_Entity) theEntity, const QString& theName )
1029 {
1030   if ( theName.isEmpty() )
1031     return false;
1032
1033   try 
1034   {
1035     getDocument()->StartOperation();
1036     theEntity->SetName( theName );
1037     getDocument()->CommitOperation( HYDROGUI_Tool::ToExtString( tr("RENAME_TO").arg( theName ) ) );
1038     module()->application()->activeStudy()->Modified();
1039   }
1040   catch ( Standard_Failure )
1041   {
1042     getDocument()->AbortOperation();
1043     return false;
1044   }
1045   return true;
1046 }
1047