Salome HOME
ADD a end user module (services.py) to help the manipulation of SALOME KERNEL service...
[modules/kernel.git] / src / GenericObj / SALOME_GenericObj_i.cc
1 // Copyright (C) 2007-2011  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 //  SALOME_GenericObj_i_CC
24 //  File   : SALOME_GenericObj_i.cc
25 //  Author : Alexey PETROV
26 //  Module : SALOME
27 //
28 #include "SALOME_GenericObj_i.hh"
29 #include "utilities.h"
30
31 #ifdef _DEBUG_
32 static int MYDEBUG = 0;
33 #else
34 static int MYDEBUG = 0;
35 #endif
36
37 using namespace SALOME;
38
39 GenericObj_i::GenericObj_i(PortableServer::POA_ptr thePOA): myRefCounter(1){
40   if(MYDEBUG) 
41     MESSAGE("GenericObj_i::GenericObj_i() - this = "<<this<<
42             "; CORBA::is_nil(thePOA) = "<<CORBA::is_nil(thePOA));
43   if(CORBA::is_nil(thePOA))
44 #ifndef WIN32
45     myPOA = PortableServer::ServantBase::_default_POA();
46 #else
47     myPOA = ServantBase::_default_POA();
48 #endif
49   else
50     myPOA = PortableServer::POA::_duplicate(thePOA);
51 }
52
53
54 PortableServer::POA_ptr GenericObj_i::_default_POA(){
55   return PortableServer::POA::_duplicate(myPOA);
56 }
57
58
59 void GenericObj_i::Register(){
60   if(MYDEBUG)
61     MESSAGE("GenericObj_i::Register "<<this<<"; myRefCounter = "<<myRefCounter)
62   ++myRefCounter;
63 }
64
65
66 void GenericObj_i::UnRegister(){
67   if(MYDEBUG)
68     MESSAGE("GenericObj_i::UnRegister "<<this<<"; myRefCounter = "<<myRefCounter)
69   if(--myRefCounter <= 0){
70     PortableServer::ObjectId_var anObjectId = myPOA->servant_to_id(this);
71     myPOA->deactivate_object(anObjectId.in());
72     _remove_ref();
73   }
74 }
75
76 void GenericObj_i::Destroy(){
77   MESSAGE("WARNING SALOME::GenericObj::Destroy() function is obsolete! Use UnRegister() instead.");
78   UnRegister();
79 }