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