Salome HOME
First implimentation of Bathymetry. Import of Bathymetries from fiels (Feature #8).
[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
29 #include <HYDROData_Document.h>
30 #include <HYDROData_Image.h>
31 #include <HYDROData_Iterator.h>
32 #include <HYDROData_Polyline.h>
33 #include <HYDROData_VisualState.h>
34 #include <HYDROData_Bathymetry.h>
35
36 #include <CAM_Application.h>
37 #include <CAM_DataObject.h>
38 #include <CAM_Module.h>
39 #include <CAM_Study.h>
40
41 #include <LightApp_Application.h>
42 #include <LightApp_DataObject.h>
43 #include <LightApp_Study.h>
44
45 #include <SUIT_DataObject.h>
46 #include <SUIT_DataBrowser.h>
47 #include <SUIT_ResourceMgr.h>
48 #include <SUIT_Study.h>
49 #include <SUIT_Tools.h>
50
51 #include <HYDROData_Document.h>
52
53 #include <TDF_Delta.hxx>
54 #include <TDF_ListIteratorOfDeltaList.hxx>
55
56 HYDROGUI_DataModel::HYDROGUI_DataModel( CAM_Module* theModule )
57 : LightApp_DataModel( theModule )
58 {
59   update( module()->application()->activeStudy()->id() );
60 }
61
62 HYDROGUI_DataModel::~HYDROGUI_DataModel()
63 {
64 }
65
66 bool HYDROGUI_DataModel::open( const QString& theURL,
67                                CAM_Study* theStudy,
68                                QStringList theFileList )
69 {
70   LightApp_DataModel::open( theURL, theStudy, theFileList );
71   const int aStudyId = theStudy->id();
72
73   Data_DocError res = DocError_UnknownProblem;
74   if( theFileList.count() == 2 )
75   {
76     QString aTmpDir = theFileList[0];
77     QString aFileName = theFileList[1];
78
79     myStudyURL = theURL;
80     QString aFullPath = SUIT_Tools::addSlash( aTmpDir ) + aFileName;
81
82     try
83     {
84       res = HYDROData_Document::Load( (char*)aFullPath.toLatin1().constData(), aStudyId );
85     }
86     catch(...)
87     {
88       res = DocError_UnknownProblem;
89     }
90     if( res != DocError_OK )
91     {
92       module()->application()->putInfo( tr( "LOAD_ERROR" ) );
93       return false;
94     }
95   }
96
97   // if the document open was successful, the data model update happens
98   // in the set mode of the module
99   if( res == DocError_OK )
100     update( aStudyId );
101
102   return true;
103 }
104
105 bool HYDROGUI_DataModel::save( QStringList& theFileList )
106 {
107   if( !module()->application()->activeStudy() )
108     return false;
109   
110   LightApp_DataModel::save( theFileList );
111
112   QString aTmpDir;
113   QString aFileName;
114   SUIT_ResourceMgr* resMgr = module()->application()->resourceMgr();
115   bool isMultiFile = false;
116   if( resMgr )
117     isMultiFile = resMgr->booleanValue( "Study", "multi_file", false );
118
119   // save data to temporary files
120   LightApp_Study* aStudy = dynamic_cast<LightApp_Study*>( module()->application()->activeStudy() );
121   aTmpDir = aStudy->GetTmpDir( myStudyURL.toLatin1().constData(), isMultiFile ).c_str();
122   aFileName = SUIT_Tools::file( myStudyURL, false ) + "_HYDRO.cbf";
123
124   QString aFullPath = aTmpDir + aFileName;
125   Data_DocError res = getDocument()->Save( (char*)aFullPath.toLatin1().constData() );
126   if( res != DocError_OK )
127   {
128     module()->application()->putInfo( tr( "SAVE_ERROR" ) );
129     return false;
130   }
131
132   theFileList.append( aTmpDir );
133   theFileList.append( aFileName );
134
135   return true;
136 }
137
138 bool HYDROGUI_DataModel::saveAs( const QString& theURL,
139                                  CAM_Study*,
140                                  QStringList& theFileList )
141 {
142   myStudyURL = theURL;
143   return save( theFileList );
144 }
145
146 bool HYDROGUI_DataModel::close()
147 {
148   return true;
149 }
150
151 bool HYDROGUI_DataModel::isModified() const
152 {
153   return getDocument()->IsModified();
154 }
155
156 bool HYDROGUI_DataModel::isSaved() const
157 {
158   return true;
159 }
160
161 void HYDROGUI_DataModel::update( const int theStudyId )
162 {
163   LightApp_Application* anApp = dynamic_cast<LightApp_Application*>( module()->application() );
164   if( !anApp )
165     return;
166
167   SUIT_DataObject* aStudyRoot = anApp->activeStudy()->root();
168   if( !aStudyRoot )
169     return;
170
171   // create root object if not exist
172   CAM_DataObject* aRootObj = root();
173   if( !aRootObj )
174     aRootObj = createRootModuleObject( aStudyRoot );
175
176   if( !aRootObj )
177     return;
178
179   DataObjectList aList;
180   aRootObj->children( aList );
181   QListIterator<SUIT_DataObject*> anIter( aList );
182   while( anIter.hasNext() )
183     removeChild( aRootObj, anIter.next() );
184
185   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theStudyId );
186   if( aDocument.IsNull() )
187     return;
188
189   LightApp_DataObject* anImageRootObj = createObject( aRootObj, "IMAGES" );
190
191   HYDROData_Iterator anIterator( aDocument, KIND_IMAGE );
192   for( ; anIterator.More(); anIterator.Next() )
193   {
194     Handle(HYDROData_Image) anImageObj =
195       Handle(HYDROData_Image)::DownCast( anIterator.Current() );
196     if( !anImageObj.IsNull() )
197       createObject( anImageRootObj, anImageObj );
198   }
199
200   LightApp_DataObject* aBathymetryRootObj = createObject( aRootObj, "BATHYMETRIES" );
201
202   anIterator = HYDROData_Iterator( aDocument, KIND_BATHYMETRY );
203   for( ; anIterator.More(); anIterator.Next() )
204   {
205     Handle(HYDROData_Bathymetry) aBathymetryObj =
206       Handle(HYDROData_Bathymetry)::DownCast( anIterator.Current() );
207     if( !aBathymetryObj.IsNull() )
208       createObject( aBathymetryRootObj, aBathymetryObj );
209   }
210
211   LightApp_DataObject* aPolylineRootObj = createObject( aRootObj, "POLYLINES" );
212
213   anIterator = HYDROData_Iterator( aDocument, KIND_POLYLINE );
214   for( ; anIterator.More(); anIterator.Next() )
215   {
216     Handle(HYDROData_Polyline) aPolylineObj =
217       Handle(HYDROData_Polyline)::DownCast( anIterator.Current() );
218     if( !aPolylineObj.IsNull() )
219       createObject( aPolylineRootObj, aPolylineObj );
220   }
221
222   LightApp_DataObject* aVisualStateRootObj = createObject( aRootObj, "VISUAL_STATES" );
223
224   anIterator = HYDROData_Iterator( aDocument, KIND_VISUAL_STATE );
225   for( ; anIterator.More(); anIterator.Next() )
226   {
227     Handle(HYDROData_VisualState) aVisualStateObj =
228       Handle(HYDROData_VisualState)::DownCast( anIterator.Current() );
229     if( !aVisualStateObj.IsNull() )
230       createObject( aVisualStateRootObj, aVisualStateObj );
231   }
232
233   if( SUIT_DataBrowser* anObjectBrowser = anApp->objectBrowser() )
234   {
235     anObjectBrowser->setAutoOpenLevel( 3 );
236     anObjectBrowser->openLevels();
237   }
238 }
239
240 HYDROGUI_DataObject* HYDROGUI_DataModel::getDataObject( const Handle(HYDROData_Object)& theModelObject )
241 {
242   return NULL; // to do if necessary
243 }
244
245 HYDROGUI_DataObject* HYDROGUI_DataModel::getReferencedDataObject( HYDROGUI_DataObject* theObject )
246 {
247   return NULL; // to do if necessary
248 }
249
250 SUIT_DataObject* HYDROGUI_DataModel::findObject( const QString& theEntry ) const
251 {
252   LightApp_Application* anApp = dynamic_cast<LightApp_Application*>( module()->application() );
253   return anApp ? anApp->findObject( theEntry ) : 0;
254 }
255
256 void HYDROGUI_DataModel::update( LightApp_DataObject* theObject,
257                                  LightApp_Study* theStudy )
258 {
259   if( !theStudy )
260     theStudy = dynamic_cast<LightApp_Study*>( module()->application()->activeStudy()) ;
261   if( theStudy )
262     update( theStudy->id() );
263 }
264
265 CAM_DataObject* HYDROGUI_DataModel::createRootModuleObject( SUIT_DataObject* theParent )
266 {
267   CAM_DataObject* aRootObj = createModuleObject( theParent );
268   setRoot( aRootObj );
269   return aRootObj;
270 }
271
272 void HYDROGUI_DataModel::updateModel()
273 {
274   HYDROGUI_Module* aModule = dynamic_cast<HYDROGUI_Module*>( module() );
275   if( aModule )
276     update( aModule->getStudyId() );
277 }
278
279 Handle(HYDROData_Object) HYDROGUI_DataModel::objectByEntry( const QString& theEntry,
280                                                             const ObjectKind theObjectKind )
281 {
282   Handle(HYDROData_Document) aDocument = getDocument();
283   if( !aDocument.IsNull() )
284   {
285     HYDROData_Iterator anIterator( aDocument, theObjectKind );
286     for( ; anIterator.More(); anIterator.Next() )
287     {
288       Handle(HYDROData_Object) anObject = anIterator.Current();
289       if( !anObject.IsNull() )
290       {
291         QString anEntry = HYDROGUI_DataObject::dataObjectEntry( anObject );
292         if( anEntry == theEntry )
293           return anObject;
294       }
295     }
296   }
297   return NULL;
298 }
299
300 bool HYDROGUI_DataModel::canUndo() const
301 {
302   return getDocument()->CanUndo();
303 }
304
305 bool HYDROGUI_DataModel::canRedo() const
306 {
307   return getDocument()->CanRedo();
308 }
309
310 QStringList HYDROGUI_DataModel::undoNames() const
311 {
312   QStringList aNames;
313   for( TDF_ListIteratorOfDeltaList anIter( getDocument()->GetUndos() ); anIter.More(); anIter.Next() )
314     aNames.prepend( HYDROGUI_Tool::ToQString( anIter.Value()->Name() ) );
315   return aNames;
316 }
317
318 QStringList HYDROGUI_DataModel::redoNames() const
319 {
320   QStringList aNames;
321   for( TDF_ListIteratorOfDeltaList anIter( getDocument()->GetRedos() ); anIter.More(); anIter.Next() )
322     aNames.append( HYDROGUI_Tool::ToQString( anIter.Value()->Name() ) );
323   return aNames;
324 }
325
326 void HYDROGUI_DataModel::clearUndos()
327 {
328   getDocument()->ClearUndos();
329 }
330
331 void HYDROGUI_DataModel::clearRedos()
332 {
333   getDocument()->ClearRedos();
334 }
335
336 bool HYDROGUI_DataModel::undo()
337 {
338   try 
339   {
340     getDocument()->Undo();
341   }
342   catch ( Standard_Failure )
343   {
344     return false;
345   }
346   return true;
347 }
348
349 bool HYDROGUI_DataModel::redo()
350 {
351   try 
352   {
353     getDocument()->Redo();
354   }
355   catch ( Standard_Failure )
356   {
357     return false;
358   }
359   return true;
360 }
361
362 Handle(HYDROData_Document) HYDROGUI_DataModel::getDocument() const
363 {
364   int aStudyId = module()->application()->activeStudy()->id();
365   return HYDROData_Document::Document( aStudyId );
366 }
367
368 LightApp_DataObject* HYDROGUI_DataModel::createObject( SUIT_DataObject* theParent,
369                                                        Handle(HYDROData_Object) theModelObject )
370 {
371   return new HYDROGUI_DataObject( theParent, theModelObject );
372 }
373
374 LightApp_DataObject* HYDROGUI_DataModel::createObject( SUIT_DataObject* theParent,
375                                                        const QString& theName )
376 {
377   return new HYDROGUI_NamedObject( theParent, theName );
378 }
379
380 void HYDROGUI_DataModel::removeChild( SUIT_DataObject* theParent,
381                                       SUIT_DataObject* theChild )
382 {
383   SUIT_DataObject* aSubChild = theChild->firstChild();
384   for( ; aSubChild; aSubChild = aSubChild->nextBrother() )
385     removeChild( theChild, aSubChild );
386   theParent->removeChild( theChild );
387 }
388
389 SUIT_DataObject* HYDROGUI_DataModel::findChildByName( const SUIT_DataObject* theFather,
390                                                       const QString& theName )
391 {
392   SUIT_DataObject* aChild = theFather->firstChild();
393   while( aChild )
394   {
395     if( aChild->name() == theName )
396       return aChild; // found
397     aChild = aChild->nextBrother();
398   }
399   return NULL; // not found
400 }