Salome HOME
Fix for the bug IPAL22164: Fatal error during save/load a SMESH study
[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   if(anIOR=="")return;
45   CORBA::Object_var obj;
46   SALOME::GenericObj_var gobj;
47   try
48     {
49       obj = getORB()->string_to_object(anIOR.c_str());
50       if(obj->_non_existent())return;
51       gobj = SALOME::GenericObj::_narrow(obj);
52       if(! CORBA::is_nil(gobj) )
53         {
54           gobj->Destroy();
55         }
56     }
57   catch(const CORBA::Exception& e)
58     {
59     }
60 }
61
62 void IORGenericObjIncref(const std::string& anIOR)
63 {
64   CORBA::Object_var obj;
65   SALOME::GenericObj_var gobj;
66   try
67     {
68       obj = getORB()->string_to_object(anIOR.c_str());
69       if(obj->_non_existent())return;
70       gobj = SALOME::GenericObj::_narrow(obj);
71       if(! CORBA::is_nil(gobj) )
72         {
73           gobj->Register();
74         }
75     }
76   catch(const CORBA::Exception& e)
77     {
78     }
79 }
80 #else
81 void IORGenericObjDecref(const std::string& anIOR)
82 {}
83 void IORGenericObjIncref(const std::string& anIOR)
84 {}
85 #endif
86
87 //=======================================================================
88 //function : GetID
89 //purpose  : 
90 //=======================================================================
91
92 const std::string& SALOMEDSImpl_AttributeIOR::GetID () 
93 {
94   static std::string SALOMEDSImpl_AttributeIORID ("92888E01-7074-11d5-A690-0800369C8A03");
95   return SALOMEDSImpl_AttributeIORID;
96 }
97
98
99
100 //=======================================================================
101 //function : Set
102 //purpose  : 
103 //=======================================================================
104
105 SALOMEDSImpl_AttributeIOR* SALOMEDSImpl_AttributeIOR::Set (const DF_Label& L,
106                                                            const std::string& S) 
107 {
108   SALOMEDSImpl_AttributeIOR* A = NULL;
109   if (!(A=(SALOMEDSImpl_AttributeIOR*)L.FindAttribute(SALOMEDSImpl_AttributeIOR::GetID()))) {
110     A = new  SALOMEDSImpl_AttributeIOR(); 
111     L.AddAttribute(A);
112   }
113
114   A->SetValue(S); 
115   return A;
116 }
117
118 //=======================================================================
119 //function : SetValue
120 //purpose  : 
121 //=======================================================================
122 void SALOMEDSImpl_AttributeIOR::SetValue(const std::string& theValue)
123 {
124   CheckLocked();
125
126   SALOMEDSImpl_Study* study=SALOMEDSImpl_Study::GetStudy(Label());
127
128   Backup();
129   //remove IOR entry in study
130   if(theValue != myString)
131     {
132       IORGenericObjIncref(theValue);
133       IORGenericObjDecref(myString);
134       study->DeleteIORLabelMapItem(myString);
135     }
136
137   myString = theValue;
138
139   //add IOR entry in study
140   SALOMEDSImpl_Study::IORUpdated(this);
141 }
142
143 //=======================================================================
144 //function : Value
145 //purpose  : 
146 //=======================================================================
147 std::string SALOMEDSImpl_AttributeIOR::Value() const
148 {
149   return myString;
150 }
151
152 //=======================================================================
153 //function : constructor
154 //purpose  : 
155 //=======================================================================
156 SALOMEDSImpl_AttributeIOR::SALOMEDSImpl_AttributeIOR()
157 :SALOMEDSImpl_GenericAttribute("AttributeIOR")
158 {
159 }
160
161 SALOMEDSImpl_AttributeIOR::~SALOMEDSImpl_AttributeIOR()
162 {
163   IORGenericObjDecref(myString);
164 }
165
166 //=======================================================================
167 //function : ID
168 //purpose  : 
169 //=======================================================================
170
171 const std::string& SALOMEDSImpl_AttributeIOR::ID () const { return GetID(); }
172
173
174 //=======================================================================
175 //function : NewEmpty
176 //purpose  : 
177 //=======================================================================
178
179 DF_Attribute* SALOMEDSImpl_AttributeIOR::NewEmpty () const
180 {  
181   return new SALOMEDSImpl_AttributeIOR(); 
182 }
183
184 //=======================================================================
185 //function : Restore
186 //purpose  : 
187 //=======================================================================
188
189 void SALOMEDSImpl_AttributeIOR::Restore( DF_Attribute* with) 
190 {
191   myString = dynamic_cast<SALOMEDSImpl_AttributeIOR*>(with)->Value();
192   return;
193 }
194
195 //=======================================================================
196 //function : Paste
197 //purpose  : 
198 //=======================================================================
199
200 void SALOMEDSImpl_AttributeIOR::Paste (DF_Attribute* into)
201 {
202   dynamic_cast<SALOMEDSImpl_AttributeIOR*>(into)->SetValue(myString);
203 }
204