Salome HOME
Porting to Mandrake 10.1 and new products:
[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 #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     myPOA = PortableServer::RefCountServantBase::_default_POA();
45   else
46     myPOA = PortableServer::POA::_duplicate(thePOA);
47 }
48
49
50 PortableServer::POA_ptr GenericObj_i::_default_POA(){
51   return PortableServer::POA::_duplicate(myPOA);
52 }
53
54
55 void GenericObj_i::Register(){
56   if(MYDEBUG)
57     MESSAGE("GenericObj_i::Register "<<this<<"; myRefCounter = "<<myRefCounter)
58   ++myRefCounter;
59 }
60
61
62 void GenericObj_i::Destroy(){
63   if(MYDEBUG)
64     MESSAGE("GenericObj_i::Destroy "<<this<<"; myRefCounter = "<<myRefCounter)
65   if(--myRefCounter <= 0){
66     PortableServer::ObjectId_var anObjectId = myPOA->servant_to_id(this);
67     myPOA->deactivate_object(anObjectId.in());
68     _remove_ref();
69   }
70 }