Salome HOME
copyrights in HYDRO files are updated
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_DataModelSync.cxx
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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_DataModelSync.h>
24 #include <HYDROGUI_DataObject.h>
25 #include <typeinfo>
26
27 HYDROGUI_DataModelSync::HYDROGUI_DataModelSync( SUIT_DataObject* theRoot )
28   : myRoot( theRoot )
29 {
30 }
31
32 HYDROGUI_DataModelSync::~HYDROGUI_DataModelSync()
33 {
34 }
35
36 void HYDROGUI_DataModelSync::deleteItemWithChildren( const suitPtr& theSuitPtr ) const
37 {
38   if( !theSuitPtr )
39     return;
40
41   theSuitPtr->setAutoDeleteChildren( true );
42   theSuitPtr->deleteLater();
43 }
44
45 suitPtr HYDROGUI_DataModelSync::nullSrc() const
46 {
47   return 0;
48 }
49
50 suitPtr HYDROGUI_DataModelSync::nullTrg() const
51 {
52   return 0;
53 }
54
55 QList<suitPtr> HYDROGUI_DataModelSync::children( const suitPtr& theSuitPtr ) const
56 {
57   QList<suitPtr> aChildren;
58   if( theSuitPtr )
59   {
60     DataObjectList anObjList;
61     theSuitPtr->children( anObjList );
62     foreach( SUIT_DataObject* anObj, anObjList )
63       aChildren.append( anObj );
64   }
65   return aChildren;
66 }
67
68 suitPtr HYDROGUI_DataModelSync::parent( const suitPtr& theSuitPtr ) const
69 {
70   return theSuitPtr ? theSuitPtr->parent() : 0;
71 }
72
73 void HYDROGUI_DataModelSync::updateItem( const suitPtr& theSrcPtr, const suitPtr& theTrgPtr ) const
74 {
75   HYDROGUI_DataObject* aDataObj = dynamic_cast<HYDROGUI_DataObject*>( theTrgPtr );
76   if( aDataObj )
77     aDataObj->updateBy( theSrcPtr );
78
79   HYDROGUI_NamedObject* aNamedObj = dynamic_cast<HYDROGUI_NamedObject*>( theTrgPtr );
80   if( aNamedObj )
81     aNamedObj->updateBy( theSrcPtr );
82 }
83
84 bool HYDROGUI_DataModelSync::isEqual( const suitPtr& theSrcPtr, const suitPtr& theTrgPtr ) const
85 {
86   if( theSrcPtr==myRoot )
87     return true;
88
89   if( theSrcPtr==0 )
90     return theTrgPtr==0;
91
92   if( theTrgPtr==0 )
93     return theSrcPtr==0;
94
95   QString aSrcClass = typeid( *theSrcPtr ).name();
96   QString aTrgClass = typeid( *theTrgPtr ).name();
97   return aSrcClass==aTrgClass;
98 }
99
100 suitPtr HYDROGUI_DataModelSync::createItem( const suitPtr& theSrcPtr,
101                                             const suitPtr& theParent,
102                                             const suitPtr& theAfter ) const
103 {
104   if( theParent )
105   {
106     int aPos = theParent->childPos( theAfter );
107     if( aPos>=0 )
108       theParent->insertChild( theSrcPtr, aPos+1 );
109     else
110       theParent->appendChild( theSrcPtr );
111   }
112   return theSrcPtr;
113 }
114