Salome HOME
Revert "Synchronize adm files"
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeTarget.cxx
1 // Copyright (C) 2007-2014  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 //  File   : SALOMEDSImpl_AttributeTarget.cxx
24 //  Author : Sergey RUIN
25 //  Module : SALOME
26 //
27 #include "SALOMEDSImpl_AttributeTarget.hxx"
28 #include "SALOMEDSImpl_AttributeReference.hxx"
29 #include "SALOMEDSImpl_Study.hxx"
30
31 //=======================================================================
32 //function : GetID
33 //purpose  : 
34 //=======================================================================
35
36 const std::string& SALOMEDSImpl_AttributeTarget::GetID () 
37 {
38   static std::string SALOMEDSImpl_AttributeTargetID ("12837197-8F52-11d6-A8A3-0001021E8C7F");
39   return SALOMEDSImpl_AttributeTargetID;
40 }
41
42
43 //=======================================================================
44 //function : Set
45 //purpose  : 
46 //=======================================================================
47
48 SALOMEDSImpl_AttributeTarget* SALOMEDSImpl_AttributeTarget::Set (const DF_Label& L) 
49 {
50   SALOMEDSImpl_AttributeTarget* A = NULL;
51   if (!(A=(SALOMEDSImpl_AttributeTarget*)L.FindAttribute(SALOMEDSImpl_AttributeTarget::GetID()))) {
52     A = new  SALOMEDSImpl_AttributeTarget(); 
53     L.AddAttribute(A);
54   }
55   return A;
56 }
57
58
59 //=======================================================================
60 //function : constructor
61 //purpose  : 
62 //=======================================================================
63 SALOMEDSImpl_AttributeTarget::SALOMEDSImpl_AttributeTarget()
64 :SALOMEDSImpl_GenericAttribute("AttributeTarget")
65 {
66 }
67
68 void SALOMEDSImpl_AttributeTarget::SetRelation(const std::string& theRelation)
69 {
70   CheckLocked();
71   if(myRelation == theRelation) return;
72
73   Backup();
74   myRelation = theRelation; 
75   
76   SetModifyFlag(); //SRN: Mark the study as being modified, so it could be saved 
77 }
78
79 //=======================================================================
80 //function : Add
81 //purpose  : 
82 //=======================================================================
83 void SALOMEDSImpl_AttributeTarget::Add(const SALOMEDSImpl_SObject& theSO) 
84 {
85   Backup();
86   DF_Label aRefLabel = theSO.GetLabel();
87   SALOMEDSImpl_AttributeReference* aReference;
88   if ((aReference=(SALOMEDSImpl_AttributeReference*)aRefLabel.FindAttribute(SALOMEDSImpl_AttributeReference::GetID()))) {
89     myVariables[aRefLabel.Entry()]=aReference;
90   } 
91   
92   SetModifyFlag(); //SRN: Mark the study as being modified, so it could be saved 
93 }
94
95 //=======================================================================
96 //function : Get
97 //purpose  : 
98 //=======================================================================
99 std::vector<SALOMEDSImpl_SObject> SALOMEDSImpl_AttributeTarget::Get() 
100 {
101   std::vector<SALOMEDSImpl_SObject> aSeq;
102   
103   for (std::map< std::string , DF_Attribute* >::iterator iter = myVariables.begin(); iter != myVariables.end(); ++iter)
104     aSeq.push_back( SALOMEDSImpl_Study::SObject(iter->second->Label()));
105   
106   return aSeq;
107 }
108
109 //=======================================================================
110 //function : Remove
111 //purpose  : 
112 //=======================================================================
113 void SALOMEDSImpl_AttributeTarget::Remove(const SALOMEDSImpl_SObject& theSO) 
114 {
115   Backup();
116   DF_Label aRefLabel = theSO.GetLabel();
117
118   myVariables.erase(aRefLabel.Entry());
119   
120   SetModifyFlag(); //SRN: Mark the study as being modified, so it could be saved 
121 }
122
123 //=======================================================================
124 //function : ID
125 //purpose  : 
126 //=======================================================================
127 const std::string& SALOMEDSImpl_AttributeTarget::ID () const { return GetID(); }
128
129 //=======================================================================
130 //function : Restore
131 //purpose  :
132 //=======================================================================
133 void SALOMEDSImpl_AttributeTarget::Restore(DF_Attribute* With)
134 {
135   SALOMEDSImpl_AttributeTarget* REL = dynamic_cast<SALOMEDSImpl_AttributeTarget*>(With);
136   myRelation = REL->GetRelation();
137   myVariables.clear();
138   for (std::map< std::string , DF_Attribute* >::iterator iter = REL->myVariables.begin(); iter != REL->myVariables.end(); ++iter){
139     myVariables[iter->first]=iter->second;
140   }
141 }
142
143 //=======================================================================
144 //function : NewEmpty
145 //purpose  :
146 //=======================================================================
147 DF_Attribute* SALOMEDSImpl_AttributeTarget::NewEmpty() const
148 {
149   return new SALOMEDSImpl_AttributeTarget();
150 }
151
152 //=======================================================================
153 //function : Paste
154 //purpose  :
155 //=======================================================================
156 void SALOMEDSImpl_AttributeTarget::Paste(DF_Attribute* into)
157 {
158   SALOMEDSImpl_AttributeTarget* REL = dynamic_cast<SALOMEDSImpl_AttributeTarget*>(into);
159   REL->SetRelation(myRelation);
160   REL->myVariables.clear();
161   for (std::map< std::string , DF_Attribute* >::iterator iter = myVariables.begin(); iter != myVariables.end(); ++iter){
162     REL->myVariables[iter->first]=iter->second;
163   }  
164 }