1 // Copyright (C) 2007-2015 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 // Author : Anthony Geay (CEA/DEN)
21 #ifndef __PARAMEDMEM_MEDCOUPLINGREFCOUNTOBJECT_HXX__
22 #define __PARAMEDMEM_MEDCOUPLINGREFCOUNTOBJECT_HXX__
24 #include "MEDCoupling.hxx"
53 CONST_ON_TIME_INTERVAL = 7
54 } TypeOfTimeDiscretization;
56 typedef bool (*FunctionToEvaluate)(const double *pos, double *res);
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();
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();
78 static std::size_t GetHeapMemoryOfSet(std::set<const BigMemoryObject *>& s1, std::set<const BigMemoryObject *>& s2);
81 class RefCountObjectOnly
84 MEDCOUPLING_EXPORT RefCountObjectOnly();
85 MEDCOUPLING_EXPORT RefCountObjectOnly(const RefCountObjectOnly& other);
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);
92 virtual ~RefCountObjectOnly();
97 class RefCountObject : public RefCountObjectOnly, public BigMemoryObject
100 MEDCOUPLING_EXPORT RefCountObject();
101 MEDCOUPLING_EXPORT RefCountObject(const RefCountObject& other);
102 MEDCOUPLING_EXPORT virtual ~RefCountObject();