Salome HOME
Small but useful DataArrayInt::checkUniformAndGuess
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingRefCountObject.hxx
1 // Copyright (C) 2007-2016  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 <map>
28 #include <vector>
29 #include <string>
30 #include <cstddef>
31
32 namespace MEDCoupling
33 {
34   typedef enum
35   {
36     C_DEALLOC = 2,
37     CPP_DEALLOC = 3
38   } DeallocType;
39
40   //! The various spatial discretization of a field
41   typedef enum
42   {
43     ON_CELLS = 0,
44     ON_NODES = 1,
45     ON_GAUSS_PT = 2,
46     ON_GAUSS_NE = 3,
47     ON_NODES_KR = 4
48   } TypeOfField;
49
50   //! The various temporal discretization of a field
51   typedef enum
52   {
53     NO_TIME = 4,
54     ONE_TIME = 5,
55     LINEAR_TIME = 6,
56     CONST_ON_TIME_INTERVAL = 7
57   } TypeOfTimeDiscretization;
58
59   typedef bool (*FunctionToEvaluate)(const double *pos, double *res);
60
61   MEDCOUPLING_EXPORT const char *MEDCouplingVersionStr();
62   MEDCOUPLING_EXPORT int MEDCouplingVersion();
63   MEDCOUPLING_EXPORT void MEDCouplingVersionMajMinRel(int& maj, int& minor, int& releas);
64   MEDCOUPLING_EXPORT int MEDCouplingSizeOfVoidStar();
65   MEDCOUPLING_EXPORT bool MEDCouplingByteOrder();
66   MEDCOUPLING_EXPORT const char *MEDCouplingByteOrderStr();
67
68   class BigMemoryObject
69   {
70   public:
71     MEDCOUPLING_EXPORT std::size_t getHeapMemorySize() const;
72     MEDCOUPLING_EXPORT std::string getHeapMemorySizeStr() const;
73     MEDCOUPLING_EXPORT std::vector<const BigMemoryObject *> getDirectChildren() const;
74     MEDCOUPLING_EXPORT std::vector<const BigMemoryObject *> getAllTheProgeny() const;
75     MEDCOUPLING_EXPORT bool isObjectInTheProgeny(const BigMemoryObject *obj) const;
76     MEDCOUPLING_EXPORT static std::size_t GetHeapMemorySizeOfObjs(const std::vector<const BigMemoryObject *>& objs);
77     MEDCOUPLING_EXPORT virtual std::size_t getHeapMemorySizeWithoutChildren() const = 0;
78     MEDCOUPLING_EXPORT virtual std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const = 0;
79     MEDCOUPLING_EXPORT virtual ~BigMemoryObject();
80   private:
81     static std::size_t GetHeapMemoryOfSet(std::set<const BigMemoryObject *>& s1, std::set<const BigMemoryObject *>& s2);
82   };
83
84   class RefCountObjectOnly
85   {
86   protected:
87     MEDCOUPLING_EXPORT RefCountObjectOnly();
88     MEDCOUPLING_EXPORT RefCountObjectOnly(const RefCountObjectOnly& other);
89   public:
90     MEDCOUPLING_EXPORT bool decrRef() const;
91     MEDCOUPLING_EXPORT void incrRef() const;
92     MEDCOUPLING_EXPORT int getRCValue() const;
93     MEDCOUPLING_EXPORT RefCountObjectOnly& operator=(const RefCountObjectOnly& other);
94   protected:
95     virtual ~RefCountObjectOnly();
96   private:
97     mutable int _cnt;
98   };
99
100   class RefCountObject : public RefCountObjectOnly, public BigMemoryObject
101   {
102   protected:
103     MEDCOUPLING_EXPORT RefCountObject();
104     MEDCOUPLING_EXPORT RefCountObject(const RefCountObject& other);
105     MEDCOUPLING_EXPORT virtual ~RefCountObject();
106   };
107
108   class GlobalDict
109   {
110   public:
111     MEDCOUPLING_EXPORT static GlobalDict *GetInstance();
112     MEDCOUPLING_EXPORT bool hasKey(const std::string& key) const;
113     MEDCOUPLING_EXPORT std::string value(const std::string& key) const;
114     MEDCOUPLING_EXPORT std::vector<std::string> keys() const;
115     MEDCOUPLING_EXPORT void erase(const std::string& key);
116     MEDCOUPLING_EXPORT void clear();
117     MEDCOUPLING_EXPORT void setKeyValue(const std::string& key, const std::string& value);
118     MEDCOUPLING_EXPORT void setKeyValueForce(const std::string& key, const std::string& value);
119     MEDCOUPLING_EXPORT std::string printSelf() const;
120   private:
121     GlobalDict() { }
122   private:
123     static GlobalDict *UNIQUE_INSTANCE;
124   private:
125     std::map<std::string, std::string> _my_map;
126   };
127 }
128
129 #endif