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