Salome HOME
d1a8a2892c44d9a43bd207bf47367ed3ff3d6606
[tools/medcoupling.git] / src / MEDCoupling / MCAuto.hxx
1 // Copyright (C) 2007-2019  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, or (at your option) any later version.
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 #pragma once
22
23 #include "MEDCouplingRefCountObject.hxx"
24 #include "InterpKernelException.hxx"
25
26 #include <vector>
27
28 namespace MEDCoupling
29 {
30   template<class T>
31   class MCAuto
32   {
33   public:
34     MCAuto(const MCAuto& other):_ptr(0) { referPtr(other._ptr); }
35     MCAuto(T *ptr=0):_ptr(ptr) { }
36     ~MCAuto() { destroyPtr(); }
37     void checkNotNull() const { if(!_ptr) throw INTERP_KERNEL::Exception("Pointer is nullptr !"); }
38     bool isNull() const { return _ptr==0; }
39     bool isNotNull() const { return !isNull(); }
40     void nullify() { destroyPtr(); _ptr=0; }
41     bool operator==(const MCAuto& other) const { return _ptr==other._ptr; }
42     bool operator==(const T *other) const { return _ptr==other; }
43     MCAuto &operator=(const MCAuto& other) { if(_ptr!=other._ptr) { destroyPtr(); referPtr(other._ptr); } return *this; }
44     MCAuto &operator=(T *ptr) { if(_ptr!=ptr) { destroyPtr(); _ptr=ptr; } return *this; }
45     void takeRef(T *ptr) { if(_ptr!=ptr) { destroyPtr(); _ptr=ptr; if(_ptr) _ptr->incrRef(); } }
46     T *operator->() { return _ptr ; }
47     const T *operator->() const { return _ptr; }
48     T& operator*() { return *_ptr; }
49     const T& operator*() const { return *_ptr; }
50     operator T *() { return _ptr; }
51     operator const T *() const { return _ptr; }
52     T *retn() { if(_ptr) _ptr->incrRef(); return _ptr; }
53     T *retnConstCast() const { if(_ptr) _ptr->incrRef(); return _ptr; }
54     T *iAmATrollConstCast() const { return _ptr; }
55   private:
56     void referPtr(T *ptr) { _ptr=ptr; if(_ptr) _ptr->incrRef(); }
57     void destroyPtr() { if(_ptr) _ptr->decrRef(); }
58   private:
59     T *_ptr;
60   };
61
62   template<class T, class U>
63   typename MEDCoupling::MCAuto<U> DynamicCast(typename MEDCoupling::MCAuto<T>& autoSubPtr) throw()
64   {
65     T *subPtr(autoSubPtr);
66     U *ptr(dynamic_cast<U *>(subPtr));
67     typename MEDCoupling::MCAuto<U> ret(ptr);
68     if(ptr)
69       ptr->incrRef();
70     return ret;
71   }
72
73   template<class T, class U>
74   typename MEDCoupling::MCAuto<U> DynamicCastSafe(typename MEDCoupling::MCAuto<T>& autoSubPtr)
75   {
76     T *subPtr(autoSubPtr);
77     U *ptr(dynamic_cast<U *>(subPtr));
78     if(subPtr && !ptr)
79       throw INTERP_KERNEL::Exception("DynamicCastSafe : U is not a subtype of T !");
80     typename MEDCoupling::MCAuto<U> ret(ptr);
81     if(ptr)
82       ptr->incrRef();
83     return ret;
84   }
85
86   template<class T>
87   typename std::vector<const T *> ToConstVect(const typename std::vector< MCAuto<T> >& vec)
88   {
89     std::size_t sz(vec.size());
90     std::vector<const T *> ret(sz);
91     for(std::size_t i=0;i<sz;i++)
92       ret[i]=(const T *)vec[i];
93     return ret;
94   }
95   
96   template<class T>
97   class MCConstAuto
98   {
99   public:
100     MCConstAuto(const MCConstAuto& other):_ptr(0) { referPtr(other._ptr); }
101     MCConstAuto(const typename MEDCoupling::MCAuto<T> & other):_ptr(0) { referPtr( (const T*) other); }
102     MCConstAuto(const T *ptr=0):_ptr(ptr) { }
103     ~MCConstAuto() { destroyPtr(); }
104     bool isNull() const { return _ptr==0; }
105     bool isNotNull() const { return !isNull(); }
106     void nullify() { destroyPtr(); _ptr=0; }
107     bool operator==(const MCConstAuto& other) const { return _ptr==other._ptr; }
108     bool operator==(const T *other) const { return _ptr==other; }
109     MCConstAuto &operator=(const MCConstAuto& other) { if(_ptr!=other._ptr) { destroyPtr(); referPtr(other._ptr); } return *this; }
110     MCConstAuto &operator=(const T *ptr) { if(_ptr!=ptr) { destroyPtr(); _ptr=ptr; } return *this; }
111     void takeRef(const T *ptr) { if(_ptr!=ptr) { destroyPtr(); _ptr=ptr; if(_ptr) _ptr->incrRef(); } }
112     const T *operator->() { return _ptr ; }
113     const T *operator->() const { return _ptr; }
114     const T& operator*() { return *_ptr; }
115     const T& operator*() const { return *_ptr; }
116     operator const T *() const { return _ptr; }
117     T *shameOnMeConstCast() const { return const_cast<T*>(_ptr); }
118   private:
119     void referPtr(const T *ptr) { _ptr=ptr; if(_ptr) _ptr->incrRef(); }
120     void destroyPtr() { if(_ptr) _ptr->decrRef(); }
121   private:
122     const T *_ptr;
123   };
124 }