Salome HOME
Remove warnings
[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   //Reason = 5 means that IOR attribute updated
143   //Used in the gui module to detect that IOR attribure was assigned to the object
144   SetModifyFlag(5);
145 }
146
147 //=======================================================================
148 //function : Value
149 //purpose  : 
150 //=======================================================================
151 std::string SALOMEDSImpl_AttributeIOR::Value() const
152 {
153   return myString;
154 }
155
156 //=======================================================================
157 //function : constructor
158 //purpose  : 
159 //=======================================================================
160 SALOMEDSImpl_AttributeIOR::SALOMEDSImpl_AttributeIOR()
161 :SALOMEDSImpl_GenericAttribute("AttributeIOR")
162 {
163 }
164
165 SALOMEDSImpl_AttributeIOR::~SALOMEDSImpl_AttributeIOR()
166 {
167   IORGenericObjDecref(myString);
168 }
169
170 //=======================================================================
171 //function : ID
172 //purpose  : 
173 //=======================================================================
174
175 const std::string& SALOMEDSImpl_AttributeIOR::ID () const { return GetID(); }
176
177
178 //=======================================================================
179 //function : NewEmpty
180 //purpose  : 
181 //=======================================================================
182
183 DF_Attribute* SALOMEDSImpl_AttributeIOR::NewEmpty () const
184 {  
185   return new SALOMEDSImpl_AttributeIOR(); 
186 }
187
188 //=======================================================================
189 //function : Restore
190 //purpose  : 
191 //=======================================================================
192
193 void SALOMEDSImpl_AttributeIOR::Restore( DF_Attribute* with) 
194 {
195   myString = dynamic_cast<SALOMEDSImpl_AttributeIOR*>(with)->Value();
196   return;
197 }
198
199 //=======================================================================
200 //function : Paste
201 //purpose  : 
202 //=======================================================================
203
204 void SALOMEDSImpl_AttributeIOR::Paste (DF_Attribute* into)
205 {
206   dynamic_cast<SALOMEDSImpl_AttributeIOR*>(into)->SetValue(myString);
207 }
208