Salome HOME
Merge from V6_main_20120808 08Aug12
[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
20 #include "MEDCouplingRefCountServant.hxx"
21 #include "InterpKernelException.hxx"
22 #include "MEDCouplingRefCountObject.hxx"
23 #include "MEDCouplingTimeLabel.hxx"
24
25 #include <iostream>
26
27 using namespace ParaMEDMEM;
28
29 MEDCouplingRefCountServant::MEDCouplingRefCountServant(const RefCountObject *pointer, const TimeLabel *pointer2):_ref_counter(1),
30                                                                                                                  _cpp_pointer(pointer),
31                                                                                                                  _tl_pointer(pointer2)
32 {
33   if(_cpp_pointer)
34     _cpp_pointer->incrRef();
35   else
36     throw INTERP_KERNEL::Exception("Null pointer not valid !");
37 }
38
39 MEDCouplingRefCountServant::~MEDCouplingRefCountServant()
40 {
41 }
42
43
44 CORBA::Long MEDCouplingRefCountServant::getTimeLabel()
45 {
46   if(_tl_pointer)
47     {
48       _tl_pointer->updateTime();
49       return _tl_pointer->getTimeOfThis();
50     }
51   return -1;
52 }
53
54 SALOME::StringSeq *MEDCouplingRefCountServant::GetExportableFormats()
55 {
56   SALOME::StringSeq *ret=new SALOME::StringSeq;
57   ret->length(1);
58   (*ret)[0]=CORBA::string_dup("MEDCorba");
59   return ret;
60 }
61
62 void MEDCouplingRefCountServant::Register()
63 {
64   if(_cpp_pointer)
65     _cpp_pointer->incrRef();
66   _ref_counter++;
67 }
68
69 void MEDCouplingRefCountServant::UnRegister()
70 {
71   if(_cpp_pointer)
72     ((RefCountObject *)_cpp_pointer)->decrRef();
73   _ref_counter--;
74   if(_ref_counter<=0)
75     {
76       if(_ref_counter<0)
77         std::cerr << "Counter < 0 detected .... ???? " << std::endl;
78       PortableServer::ObjectId_var oid = _default_POA()->servant_to_id(this);
79       _default_POA()->deactivate_object(oid);
80       _remove_ref();
81     }
82 }
83
84 void MEDCouplingRefCountServant::Destroy()
85 {
86   std::cerr << "WARNING SALOME::GenericObj::Destroy() function is obsolete! Use UnRegister() instead." << std::endl;
87   UnRegister();
88 }