Salome HOME
CCAR: add a new operation (SetAttrString) to SObject CORBA interface to be able
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_SObject_i.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   : SALOMEDS_SObject_i.cxx
24 //  Author : Sergey RUIN
25 //  Module : SALOME
26 //
27 #include "utilities.h"
28 #include "SALOMEDS_SObject_i.hxx"
29 #include "SALOMEDS_SComponent_i.hxx"
30 #include "SALOMEDS_GenericAttribute_i.hxx"
31 #include "SALOMEDS_StudyManager_i.hxx"
32 #include "SALOMEDS.hxx"
33 #include "SALOMEDSImpl_GenericAttribute.hxx"
34 #include "SALOMEDSImpl_SComponent.hxx"
35 #include "SALOMEDSImpl_Study.hxx"
36 #include "SALOMEDSImpl_AttributeIOR.hxx"
37 #include "Basics_Utils.hxx"
38
39 #include <map>
40
41 #ifdef WIN32
42 #include <process.h>
43 #else
44 #include <sys/types.h>
45 #include <unistd.h>
46 #endif
47
48 SALOMEDS::SObject_ptr SALOMEDS_SObject_i::New(const SALOMEDSImpl_SObject& theImpl, CORBA::ORB_ptr theORB)
49 {
50   SALOMEDS_SObject_i* so_servant = new SALOMEDS_SObject_i(theImpl, theORB);
51
52   return so_servant->_this();
53 }
54
55
56 //============================================================================
57 /*! Function : constructor
58  *  Purpose  :
59  */
60 //============================================================================
61 SALOMEDS_SObject_i::SALOMEDS_SObject_i(const SALOMEDSImpl_SObject& impl, CORBA::ORB_ptr orb)
62 {
63   if(!impl.IsNull()) {
64      if(impl.IsComponent()) {
65          SALOMEDSImpl_SComponent sco = impl;
66          _impl = sco.GetPersistentCopy();       
67      }
68      else {
69          _impl = impl.GetPersistentCopy();
70      }
71   }
72   _orb = CORBA::ORB::_duplicate(orb);
73    //SALOME::GenericObj_i::myPOA = SALOMEDS_StudyManager_i::GetPOA(GetStudy());
74 }
75
76
77 //============================================================================
78 /*! Function : destructor
79  *  Purpose  :
80  */
81 //============================================================================
82 SALOMEDS_SObject_i::~SALOMEDS_SObject_i()
83 {
84    if(_impl) delete _impl;    
85 }
86
87
88 //============================================================================
89 /*! Function :GetID
90  *  Purpose  :
91  */
92 //============================================================================
93 char* SALOMEDS_SObject_i::GetID()
94 {
95   SALOMEDS::Locker lock;
96   return CORBA::string_dup(_impl->GetID().c_str());
97 }
98
99 //============================================================================
100 /*! Function : GetFatherComponent
101  *  Purpose  :
102  */
103 //============================================================================
104 SALOMEDS::SComponent_ptr SALOMEDS_SObject_i::GetFatherComponent()
105 {
106   SALOMEDS::Locker lock;
107   SALOMEDS::SComponent_var sco = SALOMEDS_SComponent_i::New (_impl->GetFatherComponent(), _orb);
108   return sco._retn();
109 }
110
111 //============================================================================
112 /*! Function : GetFather
113  *  Purpose  :
114  */
115 //============================================================================
116 SALOMEDS::SObject_ptr SALOMEDS_SObject_i::GetFather()
117 {
118   SALOMEDS::Locker lock;
119   SALOMEDS::SObject_var so = SALOMEDS_SObject_i::New (_impl->GetFather(), _orb);
120   return so._retn();
121 }
122
123 //============================================================================
124 /*! Function :
125  *  Purpose  :
126  */
127 //============================================================================
128 SALOMEDS::Study_ptr SALOMEDS_SObject_i::GetStudy()
129 {
130   SALOMEDS::Locker lock;
131   SALOMEDSImpl_Study* aStudy = _impl->GetStudy();
132   if(!aStudy) {
133     MESSAGE("Problem GetStudy");
134     return SALOMEDS::Study::_nil();
135   }
136
137   std::string IOR = aStudy->GetTransientReference();
138   CORBA::Object_var obj = _orb->string_to_object(IOR.c_str());
139   SALOMEDS::Study_var Study = SALOMEDS::Study::_narrow(obj) ;
140   ASSERT(!CORBA::is_nil(Study));
141   return SALOMEDS::Study::_duplicate(Study);
142 }
143
144 //============================================================================
145 /*! Function : FindAttribute
146  *  Purpose  : Find attribute of given type on this SObject
147  */
148 //============================================================================
149 CORBA::Boolean SALOMEDS_SObject_i::FindAttribute (SALOMEDS::GenericAttribute_out anAttribute,
150                                                   const char* aTypeOfAttribute)
151 {
152   SALOMEDS::Locker lock;
153   DF_Attribute* anAttr = NULL;
154   if(_impl->FindAttribute(anAttr, (char*)aTypeOfAttribute)) {
155     anAttribute = SALOMEDS_GenericAttribute_i::CreateAttribute(anAttr, _orb);
156     return true;
157   }
158
159   return false;
160 }
161
162 //============================================================================
163 /*! Function : GetAllAttributes
164  *  Purpose  : Returns list of all attributes for this sobject
165  */
166 //============================================================================
167
168 SALOMEDS::ListOfAttributes* SALOMEDS_SObject_i::GetAllAttributes()
169 {
170   SALOMEDS::Locker lock;
171   std::vector<DF_Attribute*> aSeq = _impl->GetAllAttributes();
172   SALOMEDS::ListOfAttributes_var SeqOfAttr = new SALOMEDS::ListOfAttributes;
173   int length = aSeq.size();
174
175   SeqOfAttr->length(length);
176
177   if (length != 0) {
178     for(int i = 0; i < length; i++) {
179       SALOMEDSImpl_GenericAttribute* anAttr = dynamic_cast<SALOMEDSImpl_GenericAttribute*>(aSeq[i]);
180       SALOMEDS::GenericAttribute_var anAttribute;
181       anAttribute = SALOMEDS_GenericAttribute_i::CreateAttribute(anAttr, _orb);
182       if (!CORBA::is_nil(anAttribute)) {
183         SeqOfAttr[i] = anAttribute;
184       }
185     }
186   }
187   return SeqOfAttr._retn();
188 }
189
190
191 //============================================================================
192 /*! Function : ReferencedObject
193  *  Purpose  :
194  */
195 //============================================================================
196 CORBA::Boolean SALOMEDS_SObject_i::ReferencedObject(SALOMEDS::SObject_out obj)
197 {
198   SALOMEDS::Locker lock;
199   SALOMEDSImpl_SObject aRefObj;
200   if(!_impl->ReferencedObject(aRefObj)) return false;
201
202   obj = SALOMEDS_SObject_i::New (aRefObj, _orb);
203   return true;
204 }
205
206 //============================================================================
207 /*! Function : FindSubObject
208  *  Purpose  :
209  */
210 //============================================================================
211 CORBA::Boolean SALOMEDS_SObject_i::FindSubObject(CORBA::Long atag, SALOMEDS::SObject_out obj)
212 {
213   SALOMEDS::Locker lock;
214   SALOMEDSImpl_SObject aSubObj;
215   if(!_impl->FindSubObject(atag, aSubObj)) return false;
216
217   obj = SALOMEDS_SObject_i::New (aSubObj, _orb);
218   return true;
219
220 }
221
222 //============================================================================
223 /*! Function : Name
224  *  Purpose  : gets a name
225  */
226 //============================================================================
227 char* SALOMEDS_SObject_i::Name()
228 {
229   SALOMEDS::Locker lock;
230   return CORBA::string_dup(_impl->Name().c_str());
231 }
232
233 //============================================================================
234 /*! Function : Name
235  *  Purpose  : sets a name
236  */
237 //============================================================================
238 void  SALOMEDS_SObject_i::Name(const char* name)
239 {
240   SALOMEDS::Locker lock;
241   std::string aName((char*)name);
242   _impl->Name(aName);
243 }
244
245 //============================================================================
246 /*! Function : Tag
247  *  Purpose  :
248  */
249 //============================================================================
250 CORBA::Short SALOMEDS_SObject_i::Tag()
251 {
252   SALOMEDS::Locker lock;
253   return _impl->Tag();
254 }
255
256 //============================================================================
257 /*! Function : Depth
258  *  Purpose  :
259  */
260 //============================================================================
261 CORBA::Short SALOMEDS_SObject_i::Depth()
262 {
263   SALOMEDS::Locker lock;
264   return _impl->Depth();
265 }
266
267 //============================================================================
268 /*! Function : GetObject
269  *  Purpose  :
270  */
271 //============================================================================
272 CORBA::Object_ptr SALOMEDS_SObject_i::GetObject()
273 {
274   SALOMEDS::Locker lock;
275   CORBA::Object_ptr obj = CORBA::Object::_nil();
276   try {
277     std::string IOR = _impl->GetIOR();
278     char* c_ior = CORBA::string_dup(IOR.c_str());
279     obj = _orb->string_to_object(c_ior);
280     CORBA::string_free(c_ior);
281   } catch(...) {}
282   return obj;
283 }
284
285 //============================================================================
286 /*! Function : GetName
287  *  Purpose  :
288  */
289 //============================================================================
290 char* SALOMEDS_SObject_i::GetName()
291 {
292   SALOMEDS::Locker lock;
293   CORBA::String_var aStr = CORBA::string_dup(_impl->GetName().c_str());
294   return aStr._retn();
295 }
296
297 //============================================================================
298 /*! Function : GetComment
299  *  Purpose  :
300  */
301 //============================================================================
302 char* SALOMEDS_SObject_i::GetComment()
303 {
304   SALOMEDS::Locker lock;
305   CORBA::String_var aStr = CORBA::string_dup(_impl->GetComment().c_str());
306   return aStr._retn();
307 }
308
309 //============================================================================
310 /*! Function : GetIOR
311  *  Purpose  :
312  */
313 //============================================================================
314 char* SALOMEDS_SObject_i::GetIOR()
315 {
316   SALOMEDS::Locker lock;
317   CORBA::String_var aStr = CORBA::string_dup(_impl->GetIOR().c_str());
318   return aStr._retn();
319 }
320
321 //============================================================================
322 /*! Function : SetAttrString
323  *  Purpose  :
324  */
325 //============================================================================
326 void SALOMEDS_SObject_i::SetAttrString(const char* name, const char* value)
327 {
328   SALOMEDS::Locker lock;
329   _impl->SetAttrString(name,value);
330 }
331
332 //===========================================================================
333 //   PRIVATE FUNCTIONS
334 //===========================================================================
335 CORBA::LongLong SALOMEDS_SObject_i::GetLocalImpl(const char* theHostname, CORBA::Long thePID, CORBA::Boolean& isLocal)
336 {
337 #ifdef WIN32
338   long pid = (long)_getpid();
339 #else
340   long pid = (long)getpid();
341 #endif
342   isLocal = (strcmp(theHostname, Kernel_Utils::GetHostname().c_str()) == 0 && pid == thePID)?1:0;
343   return reinterpret_cast<CORBA::LongLong>(_impl);
344 }