Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[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.salome-platform.org/ or email : webmaster.salome@opencascade.com
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 #ifdef _DEBUG_
31 static int MYDEBUG = 0;
32 #else
33 static int MYDEBUG = 0;
34 #endif
35
36 using namespace SALOME;
37 using namespace std;
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 WNT
45     myPOA = PortableServer::RefCountServantBase::_default_POA();
46 #else
47     myPOA = RefCountServantBase::_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::Destroy(){
67   if(MYDEBUG)
68     MESSAGE("GenericObj_i::Destroy "<<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 }