Salome HOME
Revert "Synchronize adm files"
[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 std::vector<const BigMemoryObject *> getDirectChildren() const;
71     MEDCOUPLING_EXPORT std::vector<const BigMemoryObject *> getAllTheProgeny() const;
72     MEDCOUPLING_EXPORT bool isObjectInTheProgeny(const BigMemoryObject *obj) const;
73     MEDCOUPLING_EXPORT static std::size_t GetHeapMemorySizeOfObjs(const std::vector<const BigMemoryObject *>& objs);
74     MEDCOUPLING_EXPORT virtual std::size_t getHeapMemorySizeWithoutChildren() const = 0;
75     MEDCOUPLING_EXPORT virtual std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const = 0;
76     MEDCOUPLING_EXPORT virtual ~BigMemoryObject();
77   private:
78     static std::size_t GetHeapMemoryOfSet(std::set<const BigMemoryObject *>& s1, std::set<const BigMemoryObject *>& s2);
79   };
80
81   class RefCountObjectOnly
82   {
83   protected:
84     MEDCOUPLING_EXPORT RefCountObjectOnly();
85     MEDCOUPLING_EXPORT RefCountObjectOnly(const RefCountObjectOnly& other);
86   public:
87     MEDCOUPLING_EXPORT bool decrRef() const;
88     MEDCOUPLING_EXPORT void incrRef() const;
89     MEDCOUPLING_EXPORT int getRCValue() const;
90     MEDCOUPLING_EXPORT RefCountObjectOnly& operator=(const RefCountObjectOnly& other);
91   protected:
92     virtual ~RefCountObjectOnly();
93   private:
94     mutable int _cnt;
95   };
96
97   class RefCountObject : public RefCountObjectOnly, public BigMemoryObject
98   {
99   protected:
100     MEDCOUPLING_EXPORT RefCountObject();
101     MEDCOUPLING_EXPORT RefCountObject(const RefCountObject& other);
102     MEDCOUPLING_EXPORT virtual ~RefCountObject();
103   };
104 }
105
106 #endif