Salome HOME
Update copyrights 2014.
[modules/med.git] / src / MEDCoupling / MEDCouplingRefCountObject.hxx
1 // Copyright (C) 2007-2014  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 #ifndef __PARAMEDMEM_MEDCOUPLINGREFCOUNTOBJECT_HXX__
22 #define __PARAMEDMEM_MEDCOUPLINGREFCOUNTOBJECT_HXX__
23
24 #include "MEDCoupling.hxx"
25
26 #include <set>
27 #include <vector>
28 #include <string>
29 #include <cstddef>
30
31 namespace ParaMEDMEM
32 {
33   typedef enum
34     {
35       C_DEALLOC = 2,
36       CPP_DEALLOC = 3
37     } DeallocType;
38
39   typedef enum
40     {
41       ON_CELLS = 0,
42       ON_NODES = 1,
43       ON_GAUSS_PT = 2,
44       ON_GAUSS_NE = 3,
45       ON_NODES_KR = 4
46     } TypeOfField;
47
48   typedef enum
49     {
50       NO_TIME = 4,
51       ONE_TIME = 5,
52       LINEAR_TIME = 6,
53       CONST_ON_TIME_INTERVAL = 7
54     } TypeOfTimeDiscretization;
55
56   typedef bool (*FunctionToEvaluate)(const double *pos, double *res);
57
58   MEDCOUPLING_EXPORT const char *MEDCouplingVersionStr();
59   MEDCOUPLING_EXPORT int MEDCouplingVersion();
60   MEDCOUPLING_EXPORT void MEDCouplingVersionMajMinRel(int& maj, int& minor, int& releas);
61   MEDCOUPLING_EXPORT int MEDCouplingSizeOfVoidStar();
62   MEDCOUPLING_EXPORT bool MEDCouplingByteOrder();
63   MEDCOUPLING_EXPORT const char *MEDCouplingByteOrderStr();
64
65   class BigMemoryObject
66   {
67   public:
68     MEDCOUPLING_EXPORT std::size_t getHeapMemorySize() const;
69     MEDCOUPLING_EXPORT std::string getHeapMemorySizeStr() const;
70     MEDCOUPLING_EXPORT static std::size_t GetHeapMemorySizeOfObjs(const std::vector<const BigMemoryObject *>& objs);
71     MEDCOUPLING_EXPORT virtual std::size_t getHeapMemorySizeWithoutChildren() const = 0;
72     MEDCOUPLING_EXPORT virtual std::vector<const BigMemoryObject *> getDirectChildren() const = 0;
73     MEDCOUPLING_EXPORT virtual ~BigMemoryObject();
74   private:
75     static std::size_t GetHeapMemoryOfSet(std::set<const BigMemoryObject *>& s1, std::set<const BigMemoryObject *>& s2);
76   };
77   
78   class RefCountObjectOnly
79   {
80   protected:
81     MEDCOUPLING_EXPORT RefCountObjectOnly();
82     MEDCOUPLING_EXPORT RefCountObjectOnly(const RefCountObjectOnly& other);
83   public:
84     MEDCOUPLING_EXPORT bool decrRef() const;
85     MEDCOUPLING_EXPORT void incrRef() const;
86     MEDCOUPLING_EXPORT int getRCValue() const;
87     MEDCOUPLING_EXPORT RefCountObjectOnly& operator=(const RefCountObjectOnly& other);
88   protected:
89     virtual ~RefCountObjectOnly();
90   private:
91     mutable int _cnt;
92   };
93
94   class RefCountObject : public RefCountObjectOnly, public BigMemoryObject
95   {
96   protected:
97     MEDCOUPLING_EXPORT RefCountObject();
98     MEDCOUPLING_EXPORT RefCountObject(const RefCountObject& other);
99     MEDCOUPLING_EXPORT virtual ~RefCountObject();
100   };
101 }
102
103 #endif