Salome HOME
Modification of the getHeapMemorySize computation.
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingRefCountObject.hxx
1 // Copyright (C) 2007-2013  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 #ifndef __PARAMEDMEM_MEDCOUPLINGREFCOUNTOBJECT_HXX__
22 #define __PARAMEDMEM_MEDCOUPLINGREFCOUNTOBJECT_HXX__
23
24 #include "MEDCoupling.hxx"
25
26 #include <vector>
27 #include <cstddef>
28
29 namespace ParaMEDMEM
30 {
31   typedef enum
32     {
33       C_DEALLOC = 2,
34       CPP_DEALLOC = 3
35     } DeallocType;
36
37   typedef enum
38     {
39       ON_CELLS = 0,
40       ON_NODES = 1,
41       ON_GAUSS_PT = 2,
42       ON_GAUSS_NE = 3,
43       ON_NODES_KR = 4
44     } TypeOfField;
45
46   typedef enum
47     {
48       NO_TIME = 4,
49       ONE_TIME = 5,
50       LINEAR_TIME = 6,
51       CONST_ON_TIME_INTERVAL = 7
52     } TypeOfTimeDiscretization;
53
54   typedef bool (*FunctionToEvaluate)(const double *pos, double *res);
55
56   MEDCOUPLING_EXPORT const char *MEDCouplingVersionStr();
57   MEDCOUPLING_EXPORT int MEDCouplingVersion();
58   MEDCOUPLING_EXPORT void MEDCouplingVersionMajMinRel(int& maj, int& minor, int& releas);
59   MEDCOUPLING_EXPORT int MEDCouplingSizeOfVoidStar();
60   MEDCOUPLING_EXPORT bool MEDCouplingByteOrder();
61   MEDCOUPLING_EXPORT const char *MEDCouplingByteOrderStr();
62
63   class RefCountObject
64   {
65   protected:
66     RefCountObject();
67     RefCountObject(const RefCountObject& other);
68   public:
69     MEDCOUPLING_EXPORT bool decrRef() const;
70     MEDCOUPLING_EXPORT void incrRef() const;
71     MEDCOUPLING_EXPORT std::size_t getHeapMemorySize() const;
72     MEDCOUPLING_EXPORT virtual std::size_t getHeapMemorySizeWithoutChildren() const = 0;
73     MEDCOUPLING_EXPORT virtual std::vector<RefCountObject *> getDirectChildren() const = 0;
74     MEDCOUPLING_EXPORT int getRCValue() const;
75     MEDCOUPLING_EXPORT RefCountObject& operator=(const RefCountObject& other);
76   protected:
77     virtual ~RefCountObject();
78   private:
79     mutable int _cnt;
80   };
81 }
82
83 #endif