Salome HOME
Unwarningization under Win.
[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 BigMemoryObject
65   {
66   public:
67     MEDCOUPLING_EXPORT std::size_t getHeapMemorySize() const;
68     MEDCOUPLING_EXPORT std::string getHeapMemorySizeStr() const;
69     MEDCOUPLING_EXPORT virtual std::size_t getHeapMemorySizeWithoutChildren() const = 0;
70     MEDCOUPLING_EXPORT virtual std::vector<const BigMemoryObject *> getDirectChildren() const = 0;
71     MEDCOUPLING_EXPORT virtual ~BigMemoryObject();
72   };
73   
74   class RefCountObjectOnly
75   {
76   protected:
77     MEDCOUPLING_EXPORT RefCountObjectOnly();
78     MEDCOUPLING_EXPORT RefCountObjectOnly(const RefCountObjectOnly& other);
79   public:
80     MEDCOUPLING_EXPORT bool decrRef() const;
81     MEDCOUPLING_EXPORT void incrRef() const;
82     MEDCOUPLING_EXPORT int getRCValue() const;
83     MEDCOUPLING_EXPORT RefCountObjectOnly& operator=(const RefCountObjectOnly& other);
84   protected:
85     virtual ~RefCountObjectOnly();
86   private:
87     mutable int _cnt;
88   };
89
90   class RefCountObject : public RefCountObjectOnly, public BigMemoryObject
91   {
92   protected:
93     MEDCOUPLING_EXPORT RefCountObject();
94     MEDCOUPLING_EXPORT RefCountObject(const RefCountObject& other);
95     MEDCOUPLING_EXPORT virtual ~RefCountObject();
96   };
97 }
98
99 #endif