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