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