Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/med.git] / src / MEDMEM / MEDMEM_RCBase.cxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
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 #include "MEDMEM_RCBase.hxx"
20 #ifdef _DEBUG_
21 #include <iostream>
22 #endif
23
24 MEDMEM::RCBASE::RCBASE():_cnt(1)
25 {
26 }
27
28 MEDMEM::RCBASE::~RCBASE()
29 {
30 }
31 /*!
32  * \brief To be called at destructor beginning to avoid recursive calls of destructor
33  * in case of cyclic dependencies between reference counters like e.g. between
34  * the GMESH and the GROUPs it contains
35  */
36 void MEDMEM::RCBASE::clearRefCouner()
37 {
38   _cnt = -100;
39 }
40
41 void MEDMEM::RCBASE::addReference() const
42 {
43   _cnt++;
44 }
45
46 bool MEDMEM::RCBASE::removeReference() const
47 {
48   bool ret=((--_cnt)==0);
49   if(ret)
50     delete this;
51   return ret;
52 }
53
54 MEDMEM::AutoDeref::AutoDeref(const RCBASE* obj): _obj(obj)
55 {
56 }
57
58 MEDMEM::AutoDeref::~AutoDeref()
59 {
60   if ( _obj )
61   {
62     _obj->removeReference();
63     _obj = 0;
64   }
65 }