Salome HOME
084fab39315e0a7b4468ff2b3ef3768ab9a512ab
[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_EdgesGroup.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::buildObjectTree( SUIT_DataObject* theParent,
709                                           SUIT_DataObject* theObject,
710                                           const QString&   theParentEntry,
711                                           const bool       theIsInOperation )
712 {
713   HYDROGUI_DataObject* aGuiObj = dynamic_cast<HYDROGUI_DataObject*>( theObject );
714   if ( !aGuiObj )
715     return;
716
717   Handle(HYDROData_Entity) aDataObj = aGuiObj->modelObject();
718   if ( aDataObj.IsNull() )
719     return;
720
721   if ( aDataObj->IsKind( STANDARD_TYPE(HYDROData_Object) ) )
722   {
723     Handle(HYDROData_Object) aGeomObj =
724       Handle(HYDROData_Object)::DownCast( aDataObj );
725
726     Handle(HYDROData_DummyObject3D) anObject3D = aGeomObj->GetObject3D();
727     if ( !anObject3D.IsNull() )
728       createObject( aGuiObj, anObject3D, aGuiObj->entry(), false );
729
730 #ifdef DEB_GROUPS
731     LightApp_DataObject* aGroupsSect = 
732       createObject( aGuiObj, tr( "OBJECT_GROUPS" ), aGuiObj->entry() );
733
734     HYDROData_SequenceOfObjects anObjGroups = aGeomObj->GetGroups();
735     HYDROData_SequenceOfObjects::Iterator anIter( anObjGroups );
736     for ( ; anIter.More(); anIter.Next() )
737     {
738       Handle(HYDROData_EdgesGroup) anObjGroup =
739         Handle(HYDROData_EdgesGroup)::DownCast( anIter.Value() );
740       if( !anObjGroup.IsNull() && !anObjGroup->IsRemoved() )
741         createObject( aGroupsSect, anObjGroup, aGuiObj->entry(), false );
742     }
743 #endif
744   }
745
746   ObjectKind anObjectKind = aDataObj->GetKind();
747
748   if ( anObjectKind == KIND_IMAGE )
749   {
750     Handle(HYDROData_Image) anImageObj =
751       Handle(HYDROData_Image)::DownCast( aDataObj );
752     for ( int anIndex = 0, aNbRef = anImageObj->NbReferences(); anIndex < aNbRef; anIndex++ )
753     {
754       Handle(HYDROData_Entity) aRefObj = anImageObj->Reference( anIndex );
755       if ( !aRefObj.IsNull() && !aRefObj->IsRemoved() )
756         createObject( aGuiObj, aRefObj, aGuiObj->entry(), false );
757     }
758   }
759   else if ( anObjectKind == KIND_IMMERSIBLE_ZONE )
760   {
761     Handle(HYDROData_ImmersibleZone) aZoneObj =
762       Handle(HYDROData_ImmersibleZone)::DownCast( aDataObj );
763
764     LightApp_DataObject* aPolylineSect = 
765       createObject( aGuiObj, tr( "ZONE_POLYLINE" ), aGuiObj->entry() );
766
767     Handle(HYDROData_PolylineXY) aPolyline = aZoneObj->GetPolyline();
768     if ( !aPolyline.IsNull() && !aPolyline->IsRemoved() )
769       createObject( aPolylineSect, aPolyline, aGuiObj->entry(), false );
770
771     LightApp_DataObject* aBathSect = 
772       createObject( aGuiObj, tr( "ZONE_BATHYMETRY" ), aGuiObj->entry() );
773
774     Handle(HYDROData_Bathymetry) aBathymetry = aZoneObj->GetBathymetry();
775     if ( !aBathymetry.IsNull() && !aBathymetry->IsRemoved() )
776       createObject( aBathSect, aBathymetry, aGuiObj->entry(), false );
777   }
778   else if ( anObjectKind == KIND_POLYLINE )
779   {
780     Handle(HYDROData_Polyline3D) aPolyline3D =
781       Handle(HYDROData_Polyline3D)::DownCast( aDataObj );
782
783     LightApp_DataObject* aPolylineSect = 
784       createObject( aGuiObj, tr( "POLYLINE3D_POLYLINE" ), aGuiObj->entry() );
785
786     Handle(HYDROData_PolylineXY) aPolylineXY = aPolyline3D->GetPolylineXY();
787     if ( !aPolylineXY.IsNull() && !aPolylineXY->IsRemoved() )
788       createObject( aPolylineSect, aPolylineXY, aGuiObj->entry(), false );
789
790     LightApp_DataObject* aProfileSect = 
791       createObject( aGuiObj, tr( "POLYLINE3D_PROFILE" ), aGuiObj->entry() );
792
793     Handle(HYDROData_ProfileUZ) aProfileUZ = aPolyline3D->GetProfileUZ();
794     if ( aProfileUZ.IsNull() || aProfileUZ->IsRemoved() )
795       aProfileUZ = aPolyline3D->GetChildProfileUZ( false );
796
797     if ( !aProfileUZ.IsNull() && !aProfileUZ->IsRemoved() )
798     {
799       Handle(HYDROData_Profile) aProfile = 
800         Handle(HYDROData_Profile)::DownCast( aProfileUZ->GetFatherObject() );
801       if ( !aProfile.IsNull() && !aProfile->IsRemoved() )
802         createObject( aProfileSect, aProfile, aGuiObj->entry(), false );
803     }
804
805     LightApp_DataObject* aBathSect = 
806       createObject( aGuiObj, tr( "POLYLINE3D_BATHYMETRY" ), aGuiObj->entry() );
807
808     Handle(HYDROData_Bathymetry) aBathymetry = aPolyline3D->GetBathymetry();
809     if ( !aBathymetry.IsNull() && !aBathymetry->IsRemoved() )
810       createObject( aBathSect, aBathymetry, aGuiObj->entry(), false );
811   }
812   else if ( anObjectKind == KIND_CALCULATION )
813   {
814     Handle(HYDROData_CalculationCase) aCaseObj =
815       Handle(HYDROData_CalculationCase)::DownCast( aDataObj );
816
817     LightApp_DataObject* aCaseRegionsSect = 
818       createObject( aGuiObj, tr( "CASE_REGIONS" ), aGuiObj->entry() );
819
820     HYDROData_SequenceOfObjects aCaseRegions = aCaseObj->GetRegions();
821     HYDROData_SequenceOfObjects::Iterator anIter( aCaseRegions );
822     for ( ; anIter.More(); anIter.Next() )
823     {
824       Handle(HYDROData_Region) aCaseRegion =
825         Handle(HYDROData_Region)::DownCast( anIter.Value() );
826       if( !aCaseRegion.IsNull() && !aCaseRegion->IsRemoved() )
827         createRegion( aCaseRegionsSect, aCaseRegion, "", true, theIsInOperation );
828     }
829   }
830   else if ( anObjectKind == KIND_REGION )
831   {
832     Handle(HYDROData_Region) aRegionObj =
833       Handle(HYDROData_Region)::DownCast( aDataObj );
834
835     HYDROData_SequenceOfObjects aRegionZones = aRegionObj->GetZones();
836     HYDROData_SequenceOfObjects::Iterator anIter( aRegionZones );
837     for ( ; anIter.More(); anIter.Next() )
838     {
839       Handle(HYDROData_Zone) aRegionZone =
840         Handle(HYDROData_Zone)::DownCast( anIter.Value() );
841       if( !aRegionZone.IsNull() && !aRegionZone->IsRemoved() )
842         createZone( aGuiObj, aRegionZone, "", true, theIsInOperation );
843     }
844   }
845   else if ( anObjectKind == KIND_PROFILE )
846   {
847     Handle(HYDROData_Profile) aProfileObj =
848       Handle(HYDROData_Profile)::DownCast( aDataObj );
849
850     aGuiObj->setIsValid( aProfileObj->IsValid() );
851   }
852 }
853
854 void HYDROGUI_DataModel::buildCaseTree( SUIT_DataObject* theParent, Handle(HYDROData_CalculationCase) theCase )
855 {
856   if ( !theCase.IsNull() )
857   {
858     if ( theParent )
859     {
860       // Remove previous objects tree
861         DataObjectList aList;
862         theParent->children( aList );
863         QListIterator<SUIT_DataObject*> anIter( aList );
864         while( anIter.hasNext() )
865           removeChild( theParent, anIter.next() );
866     }
867
868     new HYDROGUI_DropTargetObject( theParent, tr( "NEW_REGION" ), "", true );
869
870     HYDROData_SequenceOfObjects aCaseRegions = theCase->GetRegions();
871     HYDROData_SequenceOfObjects::Iterator anIter( aCaseRegions );
872     for ( ; anIter.More(); anIter.Next() )
873     {
874       Handle(HYDROData_Region) aCaseRegion =
875         Handle(HYDROData_Region)::DownCast( anIter.Value() );
876       if( !aCaseRegion.IsNull() && !aCaseRegion->IsRemoved() )
877         createRegion( theParent, aCaseRegion, "", true, true );
878     }
879   }
880 }
881
882 void HYDROGUI_DataModel::updateObjectTree( Handle(HYDROData_Entity)& theObj )
883 {
884   if ( !theObj.IsNull() )
885   {
886     HYDROGUI_DataObject* aGuiObj = dynamic_cast<HYDROGUI_DataObject*>(
887       findObject( HYDROGUI_DataObject::dataObjectEntry( theObj ) ) );
888     if ( aGuiObj )
889     {
890       // Remove previous objects tree
891       DataObjectList aList;
892       aGuiObj->children( aList );
893       QListIterator<SUIT_DataObject*> anIter( aList );
894       while( anIter.hasNext() )
895         removeChild( aGuiObj, anIter.next() );
896
897       // Rebuild the subtree
898       QString aParentEntry;
899       HYDROGUI_DataObject* aParent = dynamic_cast<HYDROGUI_DataObject*>( aGuiObj->parent() );
900       if ( aParent )
901       {
902         aParentEntry = aParent->entry();
903       }
904       buildObjectTree( aParent, aGuiObj, aParentEntry, aGuiObj->isInOperation() );
905     } 
906     else
907     {
908       // workaround for the bug in SalomeApp_Study::findObjectByEntry - it can't find LightApp_DataObjects
909       HYDROGUI_Module* aModule = dynamic_cast<HYDROGUI_Module*>( module() );
910       if( aModule )
911       {
912         aModule->getApp()->updateObjectBrowser();
913       }
914     }
915   }
916 }
917
918 void HYDROGUI_DataModel::removeChild( SUIT_DataObject* theParent,
919                                       SUIT_DataObject* theChild )
920 {
921   SUIT_DataObject* aSubChild = theChild->firstChild();
922   for( ; aSubChild; aSubChild = aSubChild->nextBrother() )
923     removeChild( theChild, aSubChild );
924   theParent->removeChild( theChild );
925 }
926
927 SUIT_DataObject* HYDROGUI_DataModel::findChildByName( const SUIT_DataObject* theFather,
928                                                       const QString& theName )
929 {
930   SUIT_DataObject* aChild = theFather->firstChild();
931   while( aChild )
932   {
933     if( aChild->name() == theName )
934       return aChild; // found
935     aChild = aChild->nextBrother();
936   }
937   return NULL; // not found
938 }
939
940 bool HYDROGUI_DataModel::createNewRegion( Handle(HYDROData_CalculationCase) theCase, 
941                                          const QList<HYDROGUI_Zone*>& theZonesList )
942 {
943   bool isOk = !theCase.IsNull();
944   if ( isOk )
945   {
946     Handle(HYDROData_Region) aRegion;
947     Handle(HYDROData_Zone) aZone;
948     for (int i = 0; i < theZonesList.length(); i++ )
949     {
950       aZone = Handle(HYDROData_Zone)::DownCast( theZonesList.at(i)->modelObject() );
951       if ( !aZone.IsNull() )
952       {
953         if ( aRegion.IsNull() )
954         {
955           aRegion = theCase->AddNewRegion( aZone );
956           isOk = !aRegion.IsNull();
957         }
958         else
959         {
960           if ( !( aRegion->AddZone( aZone ) ) )
961           {
962             isOk = false;
963           }
964         }
965       }
966     }
967   }
968   return isOk;
969 }
970
971 bool HYDROGUI_DataModel::rename( Handle(HYDROData_Entity) theEntity, const QString& theName )
972 {
973   if ( theName.isEmpty() )
974     return false;
975
976   try 
977   {
978     getDocument()->StartOperation();
979     theEntity->SetName( theName );
980     getDocument()->CommitOperation( HYDROGUI_Tool::ToExtString( tr("RENAME_TO").arg( theName ) ) );
981     module()->application()->activeStudy()->Modified();
982   }
983   catch ( Standard_Failure )
984   {
985     getDocument()->AbortOperation();
986     return false;
987   }
988   return true;
989 }
990