Salome HOME
Refs #288 - the profile section selected and addition mode is activated
[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_UNKNOWN && aKind <= KIND_LAST &&
559       aKind != KIND_DUMMY_3D && aKind != KIND_ZONE && 
560       aKind != KIND_SHAPES_GROUP && aKind != KIND_SPLITTED_GROUP )
561     return true;
562
563   return false;
564 }
565
566 bool HYDROGUI_DataModel::canPaste()
567 {
568   for( int anIndex = 1, aLength = myCopyingObjects.Length(); anIndex <= aLength; anIndex++ )
569   {
570     Handle(HYDROData_Entity) anObject = myCopyingObjects.Value( anIndex );
571     if( !anObject.IsNull() && !anObject->IsRemoved() )
572       return true;
573   }
574   return false;
575 }
576
577 bool HYDROGUI_DataModel::copy()
578 {
579   HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( (HYDROGUI_Module*)module() );
580   changeCopyingObjects( aSeq );
581   return true;
582 }
583
584 bool HYDROGUI_DataModel::paste()
585 {
586   bool anIsChanged = false;
587   for( int anIndex = 1, aLength = myCopyingObjects.Length(); anIndex <= aLength; anIndex++ )
588   {
589     Handle(HYDROData_Entity) anObject = myCopyingObjects.Value( anIndex );
590     if( !anObject.IsNull() && !anObject->IsRemoved() )
591     {
592       ObjectKind aKind = anObject->GetKind();
593       Handle(HYDROData_Entity) aClone = getDocument()->CreateObject( aKind );
594       if( !aClone.IsNull() )
595       {
596         anObject->CopyTo( aClone );
597         anIsChanged = true;
598
599         // generate a new unique name for the clone object:
600         // case 1: Image_1 -> Image_2
601         // case 2: ImageObj -> ImageObj_1
602         QString aName = aClone->GetName();
603         QString aPrefix = aName;
604         if( aName.contains( '_' ) ) // case 1
605         {
606           QString aSuffix = aName.section( '_', -1 );
607           bool anIsInteger = false;
608           aSuffix.toInt( &anIsInteger );
609           if( anIsInteger )
610             aPrefix = aName.section( '_', 0, -2 );
611         }
612         else // case 2
613           aPrefix = aName;
614         aName = HYDROGUI_Tool::GenerateObjectName( (HYDROGUI_Module*)module(), aPrefix );
615         aClone->SetName( aName );
616       }
617     }
618   }
619   return anIsChanged;
620 }
621
622 void HYDROGUI_DataModel::changeCopyingObjects( const HYDROData_SequenceOfObjects& theSeq )
623 {
624   myCopyingObjects.Assign( theSeq );
625 }
626
627 QString HYDROGUI_DataModel::partitionName( const ObjectKind theObjectKind )
628 {
629   switch( theObjectKind )
630   {
631     case KIND_IMAGE:             return "IMAGES";
632     case KIND_POLYLINE:          return "POLYLINES_3D";
633     case KIND_POLYLINEXY:        return "POLYLINES";
634     case KIND_PROFILE:           return "PROFILES";
635     case KIND_VISUAL_STATE:      return "VISUAL_STATES";
636     case KIND_BATHYMETRY:        return "BATHYMETRIES";
637     case KIND_CALCULATION:       return "CALCULATION_CASES";
638     case KIND_OBSTACLE:          return "OBSTACLES";
639     case KIND_ARTIFICIAL_OBJECT: return "ARTIFICIAL_OBJECTS";
640     case KIND_NATURAL_OBJECT:    return "NATURAL_OBJECTS";
641     default: break;
642   }
643   return QString();
644 }
645
646 Handle(HYDROData_Document) HYDROGUI_DataModel::getDocument() const
647 {
648   int aStudyId = module()->application()->activeStudy()->id();
649   return HYDROData_Document::Document( aStudyId );
650 }
651
652 LightApp_DataObject* HYDROGUI_DataModel::createObject( SUIT_DataObject*         theParent,
653                                                        Handle(HYDROData_Entity) theModelObject,
654                                                        const QString&           theParentEntry,
655                                                        const bool               theIsBuildTree )
656 {
657   HYDROGUI_DataObject* aResObj = new HYDROGUI_DataObject( theParent, theModelObject, theParentEntry );
658   
659   if ( theIsBuildTree )
660   {
661     buildObjectTree( theParent, aResObj, theParentEntry );
662   }
663
664   return aResObj;
665 }
666
667 LightApp_DataObject* HYDROGUI_DataModel::buildObject( SUIT_DataObject*     theParent,
668                                                       HYDROGUI_DataObject* theObject,
669                                                       const QString&       theParentEntry,
670                                                       const bool           theIsBuildTree,
671                                                       const bool           theIsInOperation )
672 {
673   if ( theIsBuildTree )
674   {
675     buildObjectTree( theParent, theObject, theParentEntry, theIsInOperation );
676   }
677   return theObject;
678 }
679
680 LightApp_DataObject* HYDROGUI_DataModel::createZone( SUIT_DataObject*       theParent,
681                                                      Handle(HYDROData_Zone) theModelObject,
682                                                      const QString&         theParentEntry,
683                                                      const bool             theIsBuildTree,
684                                                      const bool             theIsInOperation )
685 {
686   return buildObject( theParent, new HYDROGUI_Zone( theParent, theModelObject, theParentEntry, theIsInOperation ), 
687     theParentEntry, theIsBuildTree, theIsInOperation );
688 }
689
690 LightApp_DataObject* HYDROGUI_DataModel::createRegion( SUIT_DataObject*         theParent,
691                                                        Handle(HYDROData_Region) theModelObject,
692                                                        const QString&           theParentEntry,
693                                                        const bool               theIsBuildTree,
694                                                        const bool               theIsInOperation )
695 {
696   return buildObject( theParent, new HYDROGUI_Region( theParent, theModelObject, theParentEntry, theIsInOperation ), 
697     theParentEntry, theIsBuildTree, theIsInOperation );
698 }
699
700 LightApp_DataObject* HYDROGUI_DataModel::createObject( SUIT_DataObject* theParent,
701                                                        const QString&   theName,
702                                                        const QString&   theParentEntry )
703 {
704   return new HYDROGUI_NamedObject( theParent, theName, theParentEntry );
705 }
706
707 void HYDROGUI_DataModel::buildObjectPartition( SUIT_DataObject*                   theObject,
708                                                const HYDROData_SequenceOfObjects& theObjects,
709                                                const QString&                     thePartName,
710                                                const bool                         theIsCreateEmpty )
711 {
712   if ( theObjects.IsEmpty() && !theIsCreateEmpty )
713     return;
714
715   HYDROGUI_DataObject* aGuiObj = dynamic_cast<HYDROGUI_DataObject*>( theObject );
716   if ( !aGuiObj )
717     return;
718
719   LightApp_DataObject* aPartSect = 
720     createObject( aGuiObj, thePartName, aGuiObj->entry() );
721
722   HYDROData_SequenceOfObjects::Iterator anIter( theObjects );
723   for ( ; anIter.More(); anIter.Next() )
724   {
725     Handle(HYDROData_Entity) anObj = anIter.Value();
726     if( !anObj.IsNull() && !anObj->IsRemoved() )
727       createObject( aPartSect, anObj, aGuiObj->entry(), false );
728   }
729 }
730
731 void HYDROGUI_DataModel::buildObjectTree( SUIT_DataObject* theParent,
732                                           SUIT_DataObject* theObject,
733                                           const QString&   theParentEntry,
734                                           const bool       theIsInOperation )
735 {
736   HYDROGUI_DataObject* aGuiObj = dynamic_cast<HYDROGUI_DataObject*>( theObject );
737   if ( !aGuiObj )
738     return;
739
740   Handle(HYDROData_Entity) aDataObj = aGuiObj->modelObject();
741   if ( aDataObj.IsNull() )
742     return;
743
744   if ( aDataObj->IsKind( STANDARD_TYPE(HYDROData_Object) ) )
745   {
746     Handle(HYDROData_Object) aGeomObj =
747       Handle(HYDROData_Object)::DownCast( aDataObj );
748
749     Handle(HYDROData_DummyObject3D) anObject3D = aGeomObj->GetObject3D();
750     if ( !anObject3D.IsNull() )
751       createObject( aGuiObj, anObject3D, aGuiObj->entry(), false );
752
753 #ifdef DEB_GROUPS
754     HYDROData_SequenceOfObjects anObjGroups = aGeomObj->GetGroups();
755     buildObjectPartition( aGuiObj, anObjGroups, tr( "OBJECT_GROUPS" ), false );
756 #endif
757   }
758
759   ObjectKind anObjectKind = aDataObj->GetKind();
760
761   if ( anObjectKind == KIND_IMAGE )
762   {
763     Handle(HYDROData_Image) anImageObj =
764       Handle(HYDROData_Image)::DownCast( aDataObj );
765     for ( int anIndex = 0, aNbRef = anImageObj->NbReferences(); anIndex < aNbRef; anIndex++ )
766     {
767       Handle(HYDROData_Entity) aRefObj = anImageObj->Reference( anIndex );
768       if ( !aRefObj.IsNull() && !aRefObj->IsRemoved() )
769         createObject( aGuiObj, aRefObj, aGuiObj->entry(), false );
770     }
771   }
772   else if ( anObjectKind == KIND_IMMERSIBLE_ZONE )
773   {
774     Handle(HYDROData_ImmersibleZone) aZoneObj =
775       Handle(HYDROData_ImmersibleZone)::DownCast( aDataObj );
776
777     LightApp_DataObject* aPolylineSect = 
778       createObject( aGuiObj, tr( "ZONE_POLYLINE" ), aGuiObj->entry() );
779
780     Handle(HYDROData_PolylineXY) aPolyline = aZoneObj->GetPolyline();
781     if ( !aPolyline.IsNull() && !aPolyline->IsRemoved() )
782       createObject( aPolylineSect, aPolyline, aGuiObj->entry(), false );
783
784     LightApp_DataObject* aBathSect = 
785       createObject( aGuiObj, tr( "ZONE_BATHYMETRY" ), aGuiObj->entry() );
786
787     Handle(HYDROData_IAltitudeObject) anAltitudeObj = aZoneObj->GetAltitudeObject();
788     if ( !anAltitudeObj.IsNull() && !anAltitudeObj->IsRemoved() )
789       createObject( aBathSect, anAltitudeObj, aGuiObj->entry(), false );
790   }
791   else if ( anObjectKind == KIND_POLYLINE )
792   {
793     Handle(HYDROData_Polyline3D) aPolyline3D =
794       Handle(HYDROData_Polyline3D)::DownCast( aDataObj );
795
796     LightApp_DataObject* aPolylineSect = 
797       createObject( aGuiObj, tr( "POLYLINE3D_POLYLINE" ), aGuiObj->entry() );
798
799     Handle(HYDROData_PolylineXY) aPolylineXY = aPolyline3D->GetPolylineXY();
800     if ( !aPolylineXY.IsNull() && !aPolylineXY->IsRemoved() )
801       createObject( aPolylineSect, aPolylineXY, aGuiObj->entry(), false );
802
803     LightApp_DataObject* aProfileSect = 
804       createObject( aGuiObj, tr( "POLYLINE3D_PROFILE" ), aGuiObj->entry() );
805
806     Handle(HYDROData_ProfileUZ) aProfileUZ = aPolyline3D->GetProfileUZ();
807     if ( aProfileUZ.IsNull() || aProfileUZ->IsRemoved() )
808       aProfileUZ = aPolyline3D->GetChildProfileUZ( false );
809
810     if ( !aProfileUZ.IsNull() && !aProfileUZ->IsRemoved() )
811     {
812       Handle(HYDROData_Profile) aProfile = 
813         Handle(HYDROData_Profile)::DownCast( aProfileUZ->GetFatherObject() );
814       if ( !aProfile.IsNull() && !aProfile->IsRemoved() )
815         createObject( aProfileSect, aProfile, aGuiObj->entry(), false );
816     }
817
818     LightApp_DataObject* aBathSect = 
819       createObject( aGuiObj, tr( "POLYLINE3D_BATHYMETRY" ), aGuiObj->entry() );
820
821     Handle(HYDROData_IAltitudeObject) anAltitudeObj = aPolyline3D->GetAltitudeObject();
822     if ( !anAltitudeObj.IsNull() && !anAltitudeObj->IsRemoved() )
823       createObject( aBathSect, anAltitudeObj, aGuiObj->entry(), false );
824   }
825   else if ( anObjectKind == KIND_CALCULATION )
826   {
827     Handle(HYDROData_CalculationCase) aCaseObj =
828       Handle(HYDROData_CalculationCase)::DownCast( aDataObj );
829
830     LightApp_DataObject* aCaseAOSect = 
831       createObject( aGuiObj, tr( partitionName( KIND_ARTIFICIAL_OBJECT ).toAscii() ),
832                     aGuiObj->entry() );
833     LightApp_DataObject* aCaseNOSect = 
834       createObject( aGuiObj, tr( partitionName( KIND_NATURAL_OBJECT ).toAscii() ),
835                     aGuiObj->entry() );
836
837     HYDROData_SequenceOfObjects aSeq = aCaseObj->GetGeometryObjects();
838     HYDROData_SequenceOfObjects::Iterator aGOIter( aSeq );
839     Handle(HYDROData_Entity) anEntity;
840     Handle(HYDROData_ArtificialObject) anAObject;
841     Handle(HYDROData_NaturalObject) aNObject;
842     for ( ; aGOIter.More(); aGOIter.Next() )
843     {
844       anEntity = aGOIter.Value();
845       if ( anEntity.IsNull() )
846         continue;
847       anAObject = Handle(HYDROData_ArtificialObject)::DownCast( anEntity );
848       if ( !anAObject.IsNull() )
849         createObject( aCaseAOSect, anAObject, aGuiObj->entry(), false );
850       else
851       {
852         aNObject = Handle(HYDROData_NaturalObject)::DownCast( anEntity );
853         if ( !aNObject.IsNull() )
854           createObject( aCaseNOSect, aNObject, aGuiObj->entry(), false );
855       }
856     }
857     LightApp_DataObject* aCaseRegionsSect = 
858       createObject( aGuiObj, tr( "CASE_REGIONS" ), aGuiObj->entry() );
859
860     HYDROData_SequenceOfObjects aCaseRegions = aCaseObj->GetRegions();
861     HYDROData_SequenceOfObjects::Iterator anIter( aCaseRegions );
862     for ( ; anIter.More(); anIter.Next() )
863     {
864       Handle(HYDROData_Region) aCaseRegion =
865         Handle(HYDROData_Region)::DownCast( anIter.Value() );
866       if( !aCaseRegion.IsNull() && !aCaseRegion->IsRemoved() )
867         createRegion( aCaseRegionsSect, aCaseRegion, "", true, theIsInOperation );
868     }
869
870 #ifdef DEB_GROUPS
871     HYDROData_SequenceOfObjects aCalcGroups = aCaseObj->GetSplittedGroups();
872     buildObjectPartition( aGuiObj, aCalcGroups, tr( "OBJECT_GROUPS" ), false );
873
874     HYDROData_SequenceOfObjects aCalcSplitGroups = aCaseObj->GetSplittedGroups();
875     buildObjectPartition( aGuiObj, aCalcSplitGroups, tr( "CASE_SPLITTED_GROUPS" ), false );
876 #endif
877
878   }
879   else if ( anObjectKind == KIND_REGION )
880   {
881     Handle(HYDROData_Region) aRegionObj =
882       Handle(HYDROData_Region)::DownCast( aDataObj );
883
884     HYDROData_SequenceOfObjects aRegionZones = aRegionObj->GetZones();
885     HYDROData_SequenceOfObjects::Iterator anIter( aRegionZones );
886     for ( ; anIter.More(); anIter.Next() )
887     {
888       Handle(HYDROData_Zone) aRegionZone =
889         Handle(HYDROData_Zone)::DownCast( anIter.Value() );
890       if( !aRegionZone.IsNull() && !aRegionZone->IsRemoved() )
891         createZone( aGuiObj, aRegionZone, "", true, theIsInOperation );
892     }
893   }
894   else if ( anObjectKind == KIND_PROFILE )
895   {
896     Handle(HYDROData_Profile) aProfileObj =
897       Handle(HYDROData_Profile)::DownCast( aDataObj );
898
899     aGuiObj->setIsValid( aProfileObj->IsValid() );
900   }
901   else if ( anObjectKind == KIND_CHANNEL || anObjectKind == KIND_DIGUE )
902   {
903     Handle(HYDROData_Channel) aChannelObj =
904       Handle(HYDROData_Channel)::DownCast( aDataObj );
905
906     LightApp_DataObject* aGuideLineSect = 
907       createObject( aGuiObj, tr( "CHANNEL_GUIDE_LINE" ), aGuiObj->entry() );
908     Handle(HYDROData_Polyline3D) aGuideLine = aChannelObj->GetGuideLine();
909     if ( !aGuideLine.IsNull() && !aGuideLine->IsRemoved() ) {
910       createObject( aGuideLineSect, aGuideLine, aGuiObj->entry(), false );
911     }
912
913     LightApp_DataObject* aProfileSect = 
914       createObject( aGuiObj, tr( "CHANNEL_PROFILE" ), aGuiObj->entry() );
915     Handle(HYDROData_Profile) aProfile = aChannelObj->GetProfile();
916     if ( !aProfile.IsNull() && !aProfile->IsRemoved() ) {
917       createObject( aProfileSect, aProfile, aGuiObj->entry(), false );
918     }
919   }
920   else if ( anObjectKind == KIND_STREAM )
921   {
922     Handle(HYDROData_Stream) aStreamObj =
923       Handle(HYDROData_Stream)::DownCast( aDataObj );
924
925     LightApp_DataObject* aHydraulicAxisSect = 
926       createObject( aGuiObj, tr( "STREAM_HYDRAULIC_AXIS" ), aGuiObj->entry() );
927     Handle(HYDROData_PolylineXY) aHydraulicAxis = aStreamObj->GetHydraulicAxis();
928     if ( !aHydraulicAxis.IsNull() && !aHydraulicAxis->IsRemoved() ) {
929       createObject( aHydraulicAxisSect, aHydraulicAxis, aGuiObj->entry(), false );
930     }
931
932     HYDROData_SequenceOfObjects aProfiles = aStreamObj->GetProfiles();
933     buildObjectPartition( aGuiObj, aProfiles, tr( "STREAM_PROFILES" ), true );
934   }
935 }
936
937 void HYDROGUI_DataModel::buildCaseTree( SUIT_DataObject* theParent, Handle(HYDROData_CalculationCase) theCase )
938 {
939   if ( !theCase.IsNull() )
940   {
941     if ( theParent )
942     {
943       // Remove previous objects tree
944         DataObjectList aList;
945         theParent->children( aList );
946         QListIterator<SUIT_DataObject*> anIter( aList );
947         while( anIter.hasNext() )
948           removeChild( theParent, anIter.next() );
949     }
950
951     new HYDROGUI_DropTargetObject( theParent, tr( "NEW_REGION" ), "", true );
952
953     HYDROData_SequenceOfObjects aCaseRegions = theCase->GetRegions();
954     HYDROData_SequenceOfObjects::Iterator anIter( aCaseRegions );
955     for ( ; anIter.More(); anIter.Next() )
956     {
957       Handle(HYDROData_Region) aCaseRegion =
958         Handle(HYDROData_Region)::DownCast( anIter.Value() );
959       if( !aCaseRegion.IsNull() && !aCaseRegion->IsRemoved() )
960         createRegion( theParent, aCaseRegion, "", true, true );
961     }
962   }
963 }
964
965 void HYDROGUI_DataModel::updateObjectTree( Handle(HYDROData_Entity)& theObj )
966 {
967   if ( !theObj.IsNull() )
968   {
969     HYDROGUI_DataObject* aGuiObj = dynamic_cast<HYDROGUI_DataObject*>(
970       findObject( HYDROGUI_DataObject::dataObjectEntry( theObj ) ) );
971     if ( aGuiObj )
972     {
973       // Remove previous objects tree
974       DataObjectList aList;
975       aGuiObj->children( aList );
976       QListIterator<SUIT_DataObject*> anIter( aList );
977       while( anIter.hasNext() )
978         removeChild( aGuiObj, anIter.next() );
979
980       // Rebuild the subtree
981       QString aParentEntry;
982       HYDROGUI_DataObject* aParent = dynamic_cast<HYDROGUI_DataObject*>( aGuiObj->parent() );
983       if ( aParent )
984       {
985         aParentEntry = aParent->entry();
986       }
987       buildObjectTree( aParent, aGuiObj, aParentEntry, aGuiObj->isInOperation() );
988     } 
989     else
990     {
991       // workaround for the bug in SalomeApp_Study::findObjectByEntry - it can't find LightApp_DataObjects
992       HYDROGUI_Module* aModule = dynamic_cast<HYDROGUI_Module*>( module() );
993       if( aModule )
994       {
995         aModule->getApp()->updateObjectBrowser();
996       }
997     }
998   }
999 }
1000
1001 void HYDROGUI_DataModel::removeChild( SUIT_DataObject* theParent,
1002                                       SUIT_DataObject* theChild )
1003 {
1004   SUIT_DataObject* aSubChild = theChild->firstChild();
1005   for( ; aSubChild; aSubChild = aSubChild->nextBrother() )
1006     removeChild( theChild, aSubChild );
1007   theParent->removeChild( theChild );
1008 }
1009
1010 SUIT_DataObject* HYDROGUI_DataModel::findChildByName( const SUIT_DataObject* theFather,
1011                                                       const QString& theName )
1012 {
1013   SUIT_DataObject* aChild = theFather->firstChild();
1014   while( aChild )
1015   {
1016     if( aChild->name() == theName )
1017       return aChild; // found
1018     aChild = aChild->nextBrother();
1019   }
1020   return NULL; // not found
1021 }
1022
1023 bool HYDROGUI_DataModel::createNewRegion( Handle(HYDROData_CalculationCase) theCase, 
1024                                          const QList<HYDROGUI_Zone*>& theZonesList )
1025 {
1026   bool isOk = !theCase.IsNull();
1027   if ( isOk )
1028   {
1029     Handle(HYDROData_Region) aRegion;
1030     Handle(HYDROData_Zone) aZone;
1031     for (int i = 0; i < theZonesList.length(); i++ )
1032     {
1033       aZone = Handle(HYDROData_Zone)::DownCast( theZonesList.at(i)->modelObject() );
1034       if ( !aZone.IsNull() )
1035       {
1036         if ( aRegion.IsNull() )
1037         {
1038           aRegion = theCase->AddNewRegion( aZone );
1039           isOk = !aRegion.IsNull();
1040         }
1041         else
1042         {
1043           if ( !( aRegion->AddZone( aZone ) ) )
1044           {
1045             isOk = false;
1046           }
1047         }
1048       }
1049     }
1050   }
1051   return isOk;
1052 }
1053
1054 bool HYDROGUI_DataModel::rename( Handle(HYDROData_Entity) theEntity, const QString& theName )
1055 {
1056   if ( theName.isEmpty() )
1057     return false;
1058
1059   try 
1060   {
1061     getDocument()->StartOperation();
1062     theEntity->SetName( theName );
1063     getDocument()->CommitOperation( HYDROGUI_Tool::ToExtString( tr("RENAME_TO").arg( theName ) ) );
1064     module()->application()->activeStudy()->Modified();
1065   }
1066   catch ( Standard_Failure )
1067   {
1068     getDocument()->AbortOperation();
1069     return false;
1070   }
1071   return true;
1072 }
1073