Salome HOME
Merge from V5_1_4_BR (5_1_4rc2) 09/06/2010
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeIOR.cxx
1 //  Copyright (C) 2007-2010  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 //  File   : SALOMEDSImpl_AttributeIOR.cxx
24 //  Author : Sergey RUIN
25 //  Module : SALOME
26 //
27 #include "SALOMEDSImpl_AttributeIOR.hxx"
28 #include "SALOMEDSImpl_Study.hxx"
29
30 //to disable automatic genericobj management comment the following line
31 #define WITHGENERICOBJ
32
33 #ifdef WITHGENERICOBJ
34 #include "SALOME_GenericObj_i.hh"
35
36 static CORBA::ORB_var getORB()
37 {
38   int argc=0;
39   return CORBA::ORB_init(argc,0);
40 }
41
42 void IORGenericObjDecref(const std::string& anIOR)
43 {
44   CORBA::Object_var obj;
45   SALOME::GenericObj_var gobj;
46   try
47     {
48       obj = getORB()->string_to_object(anIOR.c_str());
49       if(obj->_non_existent())return;
50       gobj = SALOME::GenericObj::_narrow(obj);
51       if(! CORBA::is_nil(gobj) )
52         {
53           gobj->Destroy();
54         }
55     }
56   catch(const CORBA::Exception& e)
57     {
58     }
59 }
60
61 void IORGenericObjIncref(const std::string& anIOR)
62 {
63   CORBA::Object_var obj;
64   SALOME::GenericObj_var gobj;
65   try
66     {
67       obj = getORB()->string_to_object(anIOR.c_str());
68       if(obj->_non_existent())return;
69       gobj = SALOME::GenericObj::_narrow(obj);
70       if(! CORBA::is_nil(gobj) )
71         {
72           gobj->Register();
73         }
74     }
75   catch(const CORBA::Exception& e)
76     {
77     }
78 }
79 #else
80 void IORGenericObjDecref(const std::string& anIOR)
81 {}
82 void IORGenericObjIncref(const std::string& anIOR)
83 {}
84 #endif
85
86 //=======================================================================
87 //function : GetID
88 //purpose  : 
89 //=======================================================================
90
91 const std::string& SALOMEDSImpl_AttributeIOR::GetID () 
92 {
93   static std::string SALOMEDSImpl_AttributeIORID ("92888E01-7074-11d5-A690-0800369C8A03");
94   return SALOMEDSImpl_AttributeIORID;
95 }
96
97
98
99 //=======================================================================
100 //function : Set
101 //purpose  : 
102 //=======================================================================
103
104 SALOMEDSImpl_AttributeIOR* SALOMEDSImpl_AttributeIOR::Set (const DF_Label& L,
105                                                            const std::string& S) 
106 {
107   SALOMEDSImpl_AttributeIOR* A = NULL;
108   if (!(A=(SALOMEDSImpl_AttributeIOR*)L.FindAttribute(SALOMEDSImpl_AttributeIOR::GetID()))) {
109     A = new  SALOMEDSImpl_AttributeIOR(); 
110     L.AddAttribute(A);
111   }
112
113   A->SetValue(S); 
114   return A;
115 }
116
117 //=======================================================================
118 //function : SetValue
119 //purpose  : 
120 //=======================================================================
121 void SALOMEDSImpl_AttributeIOR::SetValue(const std::string& theValue)
122 {
123   CheckLocked();
124
125   SALOMEDSImpl_Study* study=SALOMEDSImpl_Study::GetStudy(Label());
126
127   Backup();
128   //remove IOR entry in study
129   if(theValue != myString)
130     {
131       IORGenericObjIncref(theValue);
132       IORGenericObjDecref(myString);
133       study->DeleteIORLabelMapItem(myString);
134     }
135
136   myString = theValue;
137
138   //add IOR entry in study
139   SALOMEDSImpl_Study::IORUpdated(this);
140 }
141
142 //=======================================================================
143 //function : Value
144 //purpose  : 
145 //=======================================================================
146 std::string SALOMEDSImpl_AttributeIOR::Value() const
147 {
148   return myString;
149 }
150
151 //=======================================================================
152 //function : constructor
153 //purpose  : 
154 //=======================================================================
155 SALOMEDSImpl_AttributeIOR::SALOMEDSImpl_AttributeIOR()
156 :SALOMEDSImpl_GenericAttribute("AttributeIOR")
157 {
158 }
159
160 SALOMEDSImpl_AttributeIOR::~SALOMEDSImpl_AttributeIOR()
161 {
162   IORGenericObjDecref(myString);
163 }
164
165 //=======================================================================
166 //function : ID
167 //purpose  : 
168 //=======================================================================
169
170 const std::string& SALOMEDSImpl_AttributeIOR::ID () const { return GetID(); }
171
172
173 //=======================================================================
174 //function : NewEmpty
175 //purpose  : 
176 //=======================================================================
177
178 DF_Attribute* SALOMEDSImpl_AttributeIOR::NewEmpty () const
179 {  
180   return new SALOMEDSImpl_AttributeIOR(); 
181 }
182
183 //=======================================================================
184 //function : Restore
185 //purpose  : 
186 //=======================================================================
187
188 void SALOMEDSImpl_AttributeIOR::Restore( DF_Attribute* with) 
189 {
190   myString = dynamic_cast<SALOMEDSImpl_AttributeIOR*>(with)->Value();
191   return;
192 }
193
194 //=======================================================================
195 //function : Paste
196 //purpose  : 
197 //=======================================================================
198
199 void SALOMEDSImpl_AttributeIOR::Paste (DF_Attribute* into)
200 {
201   dynamic_cast<SALOMEDSImpl_AttributeIOR*>(into)->SetValue(myString);
202 }
203