Salome HOME
Get the gepmetry objects method added.
[modules/hydro.git] / src / HYDROData / HYDROData_CalculationCase.cxx
1
2 #include "HYDROData_CalculationCase.h"
3
4 #include "HYDROData_ArtificialObject.h"
5 #include "HYDROData_Document.h"
6 #include "HYDROData_Iterator.h"
7 #include "HYDROData_NaturalObject.h"
8 #include "HYDROData_SplitToZonesTool.h"
9 #include "HYDROData_Region.h"
10 #include "HYDROData_Tool.h"
11 #include "HYDROData_Zone.h"
12
13 #define PYTHON_CALCULATION_ID "KIND_CALCULATION"
14
15 IMPLEMENT_STANDARD_HANDLE(HYDROData_CalculationCase, HYDROData_Entity)
16 IMPLEMENT_STANDARD_RTTIEXT(HYDROData_CalculationCase, HYDROData_Entity)
17
18 HYDROData_CalculationCase::HYDROData_CalculationCase()
19 : HYDROData_Entity()
20 {
21 }
22
23 HYDROData_CalculationCase::~HYDROData_CalculationCase()
24 {
25 }
26
27 QStringList HYDROData_CalculationCase::DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const
28 {
29   QStringList aResList;
30
31   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( myLab );
32   if ( aDocument.IsNull() )
33     return aResList;
34                              
35   QString aDocName = aDocument->GetDocPyName();
36   QString aCalculName = GetName();
37
38   aResList << QString( "%1 = %2.CreateObject( %3 );" )
39               .arg( aCalculName ).arg( aDocName ).arg( PYTHON_CALCULATION_ID );
40   aResList << QString( "%1.SetName( \"%2\" );" )
41               .arg( aCalculName ).arg( aCalculName );
42   aResList << QString( "" );
43
44   HYDROData_SequenceOfObjects aGeomObjects = GetGeometryObjects();
45   HYDROData_SequenceOfObjects::Iterator anIter( aGeomObjects );
46   for ( ; anIter.More(); anIter.Next() )
47   {
48     Handle(HYDROData_Object) aRefGeomObj =
49       Handle(HYDROData_Object)::DownCast( anIter.Value() );
50     if ( !aRefGeomObj.IsNull() )
51       setPythonReferenceObject( theTreatedObjects, aResList, aRefGeomObj, "AddGeometryObject" );
52   }
53   aResList << QString( "" );
54
55   aResList << QString( "%1.SplitGeometryObjects();" ).arg( aCalculName );
56   aResList << QString( "" );
57
58   // Now we restore the regions and zones order
59   HYDROData_SequenceOfObjects aRegions = GetRegions();
60   anIter.Init( aRegions );
61   for ( ; anIter.More(); anIter.Next() )
62   {
63     Handle(HYDROData_Region) aRegion =
64       Handle(HYDROData_Region)::DownCast( anIter.Value() );
65     if ( aRegion.IsNull() )
66       continue;
67
68     QString aRegionName = aRegion->GetName();
69     // TODO
70   }
71
72   return aResList;
73 }
74
75 void HYDROData_CalculationCase::SplitGeometryObjects()
76 {
77   // At first we remove previously created regions
78   RemoveRegions();
79
80   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( myLab );
81   if ( aDocument.IsNull() )
82     return;
83
84   HYDROData_SequenceOfObjects aGeomObjects = GetGeometryObjects();
85   if ( aGeomObjects.IsEmpty() )
86     return;
87
88   HYDROData_SplitToZonesTool::SplitDataList aSplitedZones =
89     HYDROData_SplitToZonesTool::SplitToZones( aGeomObjects );
90   if ( aSplitedZones.isEmpty() )
91     return;
92
93   // Create result regions for case, by default one zone for one region
94   HYDROData_SplitToZonesTool::SplitDataListIterator anIter( aSplitedZones );
95   while( anIter.hasNext() )
96   {
97     const HYDROData_SplitToZonesTool::SplitData& aSplitData = anIter.next();
98
99     // Create new region
100     Handle(HYDROData_Region) aRegion = addNewRegion();
101
102     QString aRegionName = HYDROData_Tool::GenerateObjectName( aDocument, "Region" );
103     aRegion->SetName( aRegionName );
104
105     // Add the zone for region
106     Handle(HYDROData_Zone) aRegionZone = aRegion->addNewZone();
107
108     QString aZoneName = HYDROData_Tool::GenerateObjectName( aDocument, "Zone" );
109     aRegionZone->SetName( aZoneName );
110
111     aRegionZone->SetShape( aSplitData.Face() );
112
113     // Add the reference object for zone
114     for ( int i = 0, n = aSplitData.ObjectNames.length(); i < n; ++i )
115     {
116       const QString& anObjName = aSplitData.ObjectNames.at( i );
117       
118       Handle(HYDROData_Object) aRefObject = Handle(HYDROData_Object)::DownCast(
119         HYDROData_Tool::FindObjectByName( aDocument, anObjName ) );
120       if ( aRefObject.IsNull() )
121         continue;
122
123       aRegionZone->AddGeometryObject( aRefObject );
124     }
125   }
126
127   // The splitted data is up to date
128   SetToUpdate( false );
129 }
130
131 bool HYDROData_CalculationCase::AddGeometryObject( const Handle(HYDROData_Object)& theObject )
132 {
133   if ( !HYDROData_Tool::IsGeometryObject( theObject ) )
134     return false; // Wrong type of object
135
136   if ( HasReference( theObject, DataTag_GeometryObject ) )
137     return false; // Object is already in reference list
138
139   AddReferenceObject( theObject, DataTag_GeometryObject );
140   
141   // Indicate model of the need to update zones splitting
142   SetToUpdate( true );
143
144   return true;
145 }
146
147 HYDROData_SequenceOfObjects HYDROData_CalculationCase::GetGeometryObjects() const
148 {
149   return GetReferenceObjects( DataTag_GeometryObject );
150 }
151
152 void HYDROData_CalculationCase::RemoveGeometryObject( const Handle(HYDROData_Object)& theObject )
153 {
154   if ( theObject.IsNull() )
155     return;
156
157   RemoveReferenceObject( theObject->Label(), DataTag_GeometryObject );
158
159   // Indicate model of the need to update zones splitting
160   SetToUpdate( true );
161 }
162
163 void HYDROData_CalculationCase::RemoveGeometryObjects()
164 {
165   ClearReferenceObjects( DataTag_GeometryObject );
166
167   // Indicate model of the need to update zones splitting
168   SetToUpdate( true );
169 }
170
171 Handle(HYDROData_Region) HYDROData_CalculationCase::AddNewRegion( const Handle(HYDROData_Zone)& theZone )
172 {
173   Handle(HYDROData_Region) aNewRegion = addNewRegion();
174   if ( aNewRegion.IsNull() )
175     return aNewRegion;
176
177   // Generate new name for new region
178   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( myLab );
179   if ( !aDocument.IsNull() )
180   {
181     QString aNewRegionName = HYDROData_Tool::GenerateObjectName( aDocument, "Region" );
182     aNewRegion->SetName( aNewRegionName );
183   }
184
185   aNewRegion->AddZone( theZone );
186
187   return aNewRegion;
188 }
189
190 bool HYDROData_CalculationCase::AddRegion( const Handle(HYDROData_Region)& theRegion )
191 {
192   if ( theRegion.IsNull() )
193     return false;
194   
195   if ( HasReference( theRegion, DataTag_Region ) )
196     return false; // Object is already in reference list
197
198   // Move the region from other calculation
199   Handle(HYDROData_CalculationCase) aFatherCalc = 
200     Handle(HYDROData_CalculationCase)::DownCast( theRegion->GetFatherObject() );
201   if ( !aFatherCalc.IsNull() && aFatherCalc->Label() != myLab )
202   {
203     Handle(HYDROData_Region) aNewRegion = addNewRegion();
204     theRegion->CopyTo( aNewRegion );
205
206     aFatherCalc->RemoveRegion( theRegion );
207
208     theRegion->SetLabel( aNewRegion->Label() );
209   }
210   else
211   {
212     AddReferenceObject( theRegion, DataTag_Region );
213   }
214
215   return true;
216 }
217
218 HYDROData_SequenceOfObjects HYDROData_CalculationCase::GetRegions() const
219 {
220   return GetReferenceObjects( DataTag_Region );
221 }
222
223 void HYDROData_CalculationCase::RemoveRegion( const Handle(HYDROData_Region)& theRegion )
224 {
225   if ( theRegion.IsNull() )
226     return;
227
228   RemoveReferenceObject( theRegion->Label(), DataTag_Region );
229
230   // Remove region from data model
231   Handle(HYDROData_CalculationCase) aFatherCalc = 
232     Handle(HYDROData_CalculationCase)::DownCast( theRegion->GetFatherObject() );
233   if ( !aFatherCalc.IsNull() && aFatherCalc->Label() == myLab )
234     theRegion->Remove();
235 }
236
237 void HYDROData_CalculationCase::RemoveRegions()
238 {
239   ClearReferenceObjects( DataTag_Region );
240   myLab.FindChild( DataTag_ChildRegion ).ForgetAllAttributes( true );
241 }
242
243 Handle(HYDROData_Region) HYDROData_CalculationCase::addNewRegion()
244 {
245   TDF_Label aNewLab = myLab.FindChild( DataTag_ChildRegion ).NewChild();
246
247   Handle(HYDROData_Region) aNewRegion =
248     Handle(HYDROData_Region)::DownCast( HYDROData_Iterator::CreateObject( aNewLab, KIND_REGION ) );
249   AddRegion( aNewRegion );
250
251   return aNewRegion;
252 }
253