]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_DataModel.cxx
Salome HOME
4108df409fe06fa37bd36136b5745bd72118b5dc
[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   LightApp_DataObject* aPolylineRootObj = createObject( aRootObj, "POLYLINES" );
199
200   HYDROData_Iterator aPolyIterator( aDocument, KIND_IMAGE );
201   for( ; aPolyIterator.More(); aPolyIterator.Next() )
202   {
203     Handle(HYDROData_Image) aPolylineObj =
204       Handle(HYDROData_Image)::DownCast( anIterator.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   const int aStudyId = module()->application()->activeStudy()->id();
259   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( aStudyId );
260   if( !aDocument.IsNull() )
261   {
262     HYDROData_Iterator anIterator( aDocument, theObjectKind );
263     for( ; anIterator.More(); anIterator.Next() )
264     {
265       Handle(HYDROData_Object) anObject = anIterator.Current();
266       if( !anObject.IsNull() )
267       {
268         QString anEntry = HYDROGUI_DataObject::dataObjectEntry( anObject );
269         if( anEntry == theEntry )
270           return anObject;
271       }
272     }
273   }
274   return NULL;
275 }
276
277 bool HYDROGUI_DataModel::canUndo() const
278 {
279   return getDocument()->CanUndo();
280 }
281
282 bool HYDROGUI_DataModel::canRedo() const
283 {
284   return getDocument()->CanRedo();
285 }
286
287 QStringList HYDROGUI_DataModel::undoNames() const
288 {
289   QStringList aNames;
290   for( TDF_ListIteratorOfDeltaList anIter( getDocument()->GetUndos() ); anIter.More(); anIter.Next() )
291     aNames.prepend( HYDROGUI_Tool::ToQString( anIter.Value()->Name() ) );
292   return aNames;
293 }
294
295 QStringList HYDROGUI_DataModel::redoNames() const
296 {
297   QStringList aNames;
298   for( TDF_ListIteratorOfDeltaList anIter( getDocument()->GetRedos() ); anIter.More(); anIter.Next() )
299     aNames.append( HYDROGUI_Tool::ToQString( anIter.Value()->Name() ) );
300   return aNames;
301 }
302
303 void HYDROGUI_DataModel::clearUndos()
304 {
305   getDocument()->ClearUndos();
306 }
307
308 void HYDROGUI_DataModel::clearRedos()
309 {
310   getDocument()->ClearRedos();
311 }
312
313 bool HYDROGUI_DataModel::undo()
314 {
315   try 
316   {
317     getDocument()->Undo();
318   }
319   catch ( Standard_Failure )
320   {
321     return false;
322   }
323   return true;
324 }
325
326 bool HYDROGUI_DataModel::redo()
327 {
328   try 
329   {
330     getDocument()->Redo();
331   }
332   catch ( Standard_Failure )
333   {
334     return false;
335   }
336   return true;
337 }
338
339 Handle(HYDROData_Document) HYDROGUI_DataModel::getDocument() const
340 {
341   int aStudyId = module()->application()->activeStudy()->id();
342   return HYDROData_Document::Document( aStudyId );
343 }
344
345 LightApp_DataObject* HYDROGUI_DataModel::createObject( SUIT_DataObject* theParent,
346                                                        Handle(HYDROData_Object) theModelObject )
347 {
348   return new HYDROGUI_DataObject( theParent, theModelObject );
349 }
350
351 LightApp_DataObject* HYDROGUI_DataModel::createObject( SUIT_DataObject* theParent,
352                                                        const QString& theName )
353 {
354   return new HYDROGUI_NamedObject( theParent, theName );
355 }
356
357 void HYDROGUI_DataModel::removeChild( SUIT_DataObject* theParent,
358                                       SUIT_DataObject* theChild )
359 {
360   SUIT_DataObject* aSubChild = theChild->firstChild();
361   for( ; aSubChild; aSubChild = aSubChild->nextBrother() )
362     removeChild( theChild, aSubChild );
363   theParent->removeChild( theChild );
364 }
365
366 SUIT_DataObject* HYDROGUI_DataModel::findChildByName( const SUIT_DataObject* theFather,
367                                                       const QString& theName )
368 {
369   SUIT_DataObject* aChild = theFather->firstChild();
370   while( aChild )
371   {
372     if( aChild->name() == theName )
373       return aChild; // found
374     aChild = aChild->nextBrother();
375   }
376   return NULL; // not found
377 }