Salome HOME
merge from trunk tag mergeto_BSEC_br1_14Mar04
[modules/kernel.git] / src / GenericObj / SALOME_GenericObj_i.cc
1 //  SALOME_GenericObj_i_CC
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //  File   : SALOME_GenericObj_i.cc
24 //  Author : Alexey PETROV
25 //  Module : SALOME
26
27 #include "SALOME_GenericObj_i.hh"
28 #include "utilities.h"
29
30 using namespace SALOME;
31
32 GenericObj_i::GenericObj_i(PortableServer::POA_ptr thePOA): myRefCounter(1){
33   INFOS("GenericObj_i::GenericObj_i() - this = "<<this<<
34         "; CORBA::is_nil(thePOA) = "<<CORBA::is_nil(thePOA));
35   if(CORBA::is_nil(thePOA))
36     myPOA = PortableServer::RefCountServantBase::_default_POA();
37   else
38     myPOA = PortableServer::POA::_duplicate(thePOA);
39 }
40
41
42 PortableServer::POA_ptr GenericObj_i::_default_POA(){
43   //return PortableServer::RefCountServantBase::_default_POA();
44   return PortableServer::POA::_duplicate(myPOA);
45 }
46
47
48 void GenericObj_i::Register(){
49   INFOS("GenericObj_i::Register "<<this<<"; myRefCounter = "<<myRefCounter)
50   ++myRefCounter;
51 }
52
53
54 void GenericObj_i::Destroy(){
55   INFOS("GenericObj_i::Destroy "<<this<<"; myRefCounter = "<<myRefCounter)
56   if(--myRefCounter <= 0){
57     PortableServer::ObjectId_var anObjectId = myPOA->servant_to_id(this);
58     myPOA->deactivate_object(anObjectId.in());
59     _remove_ref();
60   }
61 }