Salome HOME
Merge from V6_main (04/10/2012)
[modules/med.git] / src / MEDCouplingCorba / MEDCouplingRefCountServant.cxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony Geay (CEA/DEN)
20
21 #include "MEDCouplingRefCountServant.hxx"
22 #include "InterpKernelException.hxx"
23 #include "MEDCouplingRefCountObject.hxx"
24 #include "MEDCouplingTimeLabel.hxx"
25
26 #include <iostream>
27
28 using namespace ParaMEDMEM;
29
30 MEDCouplingRefCountServant::MEDCouplingRefCountServant(const RefCountObject *pointer, const TimeLabel *pointer2):_ref_counter(1),
31                                                                                                                  _cpp_pointer(pointer),
32                                                                                                                  _tl_pointer(pointer2)
33 {
34   if(_cpp_pointer)
35     _cpp_pointer->incrRef();
36   else
37     throw INTERP_KERNEL::Exception("Null pointer not valid !");
38 }
39
40 MEDCouplingRefCountServant::~MEDCouplingRefCountServant()
41 {
42 }
43
44
45 CORBA::Long MEDCouplingRefCountServant::getTimeLabel()
46 {
47   if(_tl_pointer)
48     {
49       _tl_pointer->updateTime();
50       return _tl_pointer->getTimeOfThis();
51     }
52   return -1;
53 }
54
55 SALOME::StringSeq *MEDCouplingRefCountServant::GetExportableFormats()
56 {
57   SALOME::StringSeq *ret=new SALOME::StringSeq;
58   ret->length(1);
59   (*ret)[0]=CORBA::string_dup("MEDCorba");
60   return ret;
61 }
62
63 void MEDCouplingRefCountServant::Register()
64 {
65   if(_cpp_pointer)
66     _cpp_pointer->incrRef();
67   _ref_counter++;
68 }
69
70 void MEDCouplingRefCountServant::UnRegister()
71 {
72   if(_cpp_pointer)
73     ((RefCountObject *)_cpp_pointer)->decrRef();
74   _ref_counter--;
75   if(_ref_counter<=0)
76     {
77       if(_ref_counter<0)
78         std::cerr << "Counter < 0 detected .... ???? " << std::endl;
79       PortableServer::ObjectId_var oid = _default_POA()->servant_to_id(this);
80       _default_POA()->deactivate_object(oid);
81       _remove_ref();
82     }
83 }
84
85 void MEDCouplingRefCountServant::Destroy()
86 {
87   std::cerr << "WARNING SALOME::GenericObj::Destroy() function is obsolete! Use UnRegister() instead." << std::endl;
88   UnRegister();
89 }