Salome HOME
Updated for PAL14857.
[modules/geom.git] / src / NMTTools / NMTTools_CommonBlockPool.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 //
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
8 //
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19
20 #ifndef _NMTTools_CommonBlockPool_HeaderFile
21 #define _NMTTools_CommonBlockPool_HeaderFile
22
23 #ifndef _Standard_Address_HeaderFile
24 #include <Standard_Address.hxx>
25 #endif
26 #ifndef _Standard_Integer_HeaderFile
27 #include <Standard_Integer.hxx>
28 #endif
29 #ifndef _Standard_Boolean_HeaderFile
30 #include <Standard_Boolean.hxx>
31 #endif
32 class Standard_OutOfRange;
33 class Standard_OutOfMemory;
34 class NMTTools_ListOfCommonBlock;
35
36
37 #ifndef _Standard_HeaderFile
38 #include <Standard.hxx>
39 #endif
40 #ifndef _Standard_Macro_HeaderFile
41 #include <Standard_Macro.hxx>
42 #endif
43
44
45 class NMTTools_CommonBlockPool  {
46
47 public:
48
49     void* operator new(size_t,void* anAddress) 
50       {
51         return anAddress;
52       }
53     void* operator new(size_t size) 
54       { 
55         return Standard::Allocate(size); 
56       }
57     void  operator delete(void *anAddress) 
58       { 
59         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
60       }
61  // Methods PUBLIC
62  // 
63
64
65 Standard_EXPORT NMTTools_CommonBlockPool(const Standard_Integer Length = 0,const Standard_Integer BlockLength = 5);
66
67
68 Standard_EXPORT   void Resize(const Standard_Integer theNewLength) ;
69
70
71 Standard_EXPORT   void Destroy() ;
72 ~NMTTools_CommonBlockPool()
73 {
74   Destroy();
75 }
76
77
78
79 Standard_EXPORT   Standard_Integer Length() const;
80
81
82 Standard_EXPORT   Standard_Integer Extent() const;
83
84
85 Standard_EXPORT   Standard_Integer FactLength() const;
86
87
88 Standard_EXPORT   Standard_Integer Append(const NMTTools_ListOfCommonBlock& Value) ;
89
90
91 Standard_EXPORT   void Remove(const Standard_Integer Index) ;
92
93
94 Standard_EXPORT  const NMTTools_ListOfCommonBlock& Value(const Standard_Integer Index) const;
95  const NMTTools_ListOfCommonBlock& operator ()(const Standard_Integer Index) const
96 {
97   return Value(Index);
98 }
99
100
101
102 Standard_EXPORT   NMTTools_ListOfCommonBlock& ChangeValue(const Standard_Integer Index) ;
103   NMTTools_ListOfCommonBlock& operator ()(const Standard_Integer Index) 
104 {
105   return ChangeValue(Index);
106 }
107
108
109
110 Standard_EXPORT   void SetBlockLength(const Standard_Integer aBL) ;
111
112
113 Standard_EXPORT   Standard_Integer BlockLength() const;
114
115
116
117
118
119 protected:
120
121  // Methods PROTECTED
122  // 
123
124
125  // Fields PROTECTED
126  //
127
128
129 private: 
130
131  // Methods PRIVATE
132  // 
133
134
135 Standard_EXPORT NMTTools_CommonBlockPool(const NMTTools_CommonBlockPool& AnArray);
136
137
138 Standard_EXPORT   NMTTools_CommonBlockPool& Assign(const NMTTools_CommonBlockPool& Other) ;
139   NMTTools_CommonBlockPool& operator =(const NMTTools_CommonBlockPool& Other) 
140 {
141   return Assign(Other);
142 }
143
144
145
146 Standard_EXPORT   Standard_Boolean IsInvalidIndex(const Standard_Integer Index) const;
147
148
149  // Fields PRIVATE
150  //
151 Standard_Address myStart;
152 Standard_Integer myLength;
153 Standard_Integer myFactLength;
154 Standard_Integer myBlockLength;
155 Standard_Boolean myIsAllocated;
156
157
158 };
159
160
161
162
163
164 // other Inline functions and methods (like "C++: function call" methods)
165 //
166
167
168 #endif