Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members

FXElement.h
1 /********************************************************************************
2 * *
3 * G e n e r i c E l e m e n t H a n d l i n g *
4 * *
5 *********************************************************************************
6 * Copyright (C) 1997,2024 by Jeroen van der Zijp. All Rights Reserved. *
7 *********************************************************************************
8 * This library is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU Lesser General Public License as published by *
10 * the Free Software Foundation; either version 3 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This library is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU Lesser General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU Lesser General Public License *
19 * along with this program. If not, see <http://www.gnu.org/licenses/> *
20 ********************************************************************************/
21 #ifndef FXELEMENT_H
22 #define FXELEMENT_H
23 
24 namespace FX {
25 
26 /**************************** D e f i n i t i o n ****************************/
27 
28 // Generic implementations for generic objects
29 
30 
31 // In-situ construct element at pointer
32 template<typename EType>
33 inline EType* construct(EType* ptr){
34  ::new ((void*)ptr) EType; return ptr;
35  }
36 
37 
38 // In-situ copy constructor
39 template<typename EType>
40 inline EType* construct(EType* ptr,const EType& org){
41  ::new ((void*)ptr) EType(org); return ptr;
42  }
43 
44 
45 // In-situ construct element at pointer, with argument
46 template<typename EType,typename Arg>
47 inline EType* construct(EType* ptr,Arg arg){
48  ::new ((void*)ptr) EType(arg); return ptr;
49  }
50 
51 
52 // In-situ destroy element at pointer
53 template<typename EType>
54 inline void destruct(EType* ptr){
55  ptr->~EType();
56  }
57 
58 
60 template<typename EType>
61 inline void constructElms(EType* ptr,FXuval n){
62  while(n--){ construct(ptr); ptr++; }
63  }
64 
65 
67 template<typename EType,typename Arg>
68 inline void constructElms(EType* ptr,Arg arg,FXuval n){
69  while(n--){ construct(ptr,arg); ptr++; }
70  }
71 
72 
74 template<typename EType>
75 inline void destructElms(EType* ptr,FXuval n){
76  while(n--){ destruct(ptr); ptr++; }
77  }
78 
79 
81 template<typename EType,typename OType>
82 inline void copyElms(EType* dst,const OType* src,FXuval n){
83  while(n--){ *dst++ = *src++; }
84  }
85 
86 
88 template<typename EType>
89 inline void bitcopyElms(EType* dst,const EType* src,FXuval n){
90  memcpy((void*)dst,(const void*)src,n*sizeof(EType));
91  }
92 
93 
95 template<typename EType>
96 inline void moveElms(EType* dst,const EType* src,FXuval n){
97  if(src!=dst){
98  if(0<(src-dst)){
99  while(n--){ *dst++ = *src++; }
100  }
101  else{
102  dst+=n;
103  src+=n;
104  while(n--){ *--dst = *--src; }
105  }
106  }
107  }
108 
109 
111 template<typename EType>
112 inline void bitmoveElms(EType* dst,const EType* src,FXuval n){
113  memmove((void*)dst,(const void*)src,n*sizeof(EType));
114  }
115 
116 
118 template<typename EType>
119 inline EType& swap(EType& dst,EType& src){
120  EType t=dst; dst=src; src=t;
121  return dst;
122  }
123 
124 
126 template<typename EType>
127 inline void swapElms(EType* dst,const EType* src,FXuval n){
128  while(n--){ swap(*dst++,*src++); }
129  }
130 
131 
133 template<typename EType>
134 inline FXbool equalElms(const EType* dst,const EType* src,FXuval n){
135  while(n--){ if(!(*dst++ == *src++)) return false; }
136  return true;
137  }
138 
139 
141 template<typename EType,typename OType>
142 inline void fillElms(EType* dst,const OType& src,FXuval n){
143  while(n--){ *dst++ = src; }
144  }
145 
146 
148 template<typename EType>
149 inline void clearElms(EType* dst,FXuval n){
150  memset((void*)dst,0,sizeof(EType)*n);
151  }
152 
153 
155 template<typename EType>
156 inline FXbool allocElms(EType*& ptr,FXuval n){
157  return fxmalloc((void**)&ptr,sizeof(EType)*n);
158  }
159 
160 
162 template<typename EType>
163 inline FXbool callocElms(EType*& ptr,FXuval n){
164  return fxcalloc((void**)&ptr,sizeof(EType)*n);
165  }
166 
167 
169 template<typename EType>
170 inline FXbool dupElms(EType*& ptr,const EType* src,FXuval n){
171  return fxmemdup((void**)&ptr,src,sizeof(EType)*n);
172  }
173 
174 
176 template<typename EType>
177 inline FXbool resizeElms(EType*& ptr,FXuval n){
178  return fxresize((void**)&ptr,sizeof(EType)*n);
179  }
180 
181 
183 template<typename EType>
184 inline void freeElms(EType*& ptr){
185  fxfree((void**)&ptr);
186  }
187 
188 
189 /********************** I m p l e m e n t a t i o n ************************/
190 
191 // Specific implementations for built-in types
192 
193 
194 // No-op constructors for array of basic type
195 inline void constructElms(FXchar*,FXuval){ }
196 inline void constructElms(FXuchar*,FXuval){ }
197 inline void constructElms(FXschar*,FXuval){ }
198 inline void constructElms(FXushort*,FXuval){ }
199 inline void constructElms(FXshort*,FXuval){ }
200 inline void constructElms(FXuint*,FXuval){ }
201 inline void constructElms(FXint*,FXuval){ }
202 inline void constructElms(FXulong*,FXuval){ }
203 inline void constructElms(FXlong*,FXuval){ }
204 inline void constructElms(FXfloat*,FXuval){ }
205 inline void constructElms(FXdouble*,FXuval){ }
206 
207 // No-op constructors for array of pointers to any type
208 template<typename EType> inline void constructElms(EType**,FXuval){ }
209 
210 
211 // No-op destructors for array of basic type
212 inline void destructElms(FXchar*,FXuval){ }
213 inline void destructElms(FXuchar*,FXuval){ }
214 inline void destructElms(FXschar*,FXuval){ }
215 inline void destructElms(FXushort*,FXuval){ }
216 inline void destructElms(FXshort*,FXuval){ }
217 inline void destructElms(FXuint*,FXuval){ }
218 inline void destructElms(FXint*,FXuval){ }
219 inline void destructElms(FXulong*,FXuval){ }
220 inline void destructElms(FXlong*,FXuval){ }
221 inline void destructElms(FXfloat*,FXuval){ }
222 inline void destructElms(FXdouble*,FXuval){ }
223 
224 // No-op destructors for array of pointers to any type
225 template<typename EType> inline void destructElms(EType**,FXuval){ }
226 
227 
228 // Simple bit-wise copy for array of basic type
229 inline void copyElms(FXchar* dst,const FXchar* src,FXuval n){ memcpy(dst,src,n); }
230 inline void copyElms(FXuchar* dst,const FXuchar* src,FXuval n){ memcpy(dst,src,n); }
231 inline void copyElms(FXschar* dst,const FXschar* src,FXuval n){ memcpy(dst,src,n); }
232 inline void copyElms(FXushort* dst,const FXushort* src,FXuval n){ memcpy(dst,src,n<<1); }
233 inline void copyElms(FXshort* dst,const FXshort* src,FXuval n){ memcpy(dst,src,n<<1); }
234 inline void copyElms(FXuint* dst,const FXuint* src,FXuval n){ memcpy(dst,src,n<<2); }
235 inline void copyElms(FXint* dst,const FXint* src,FXuval n){ memcpy(dst,src,n<<2); }
236 inline void copyElms(FXulong* dst,const FXulong* src,FXuval n){ memcpy(dst,src,n<<3); }
237 inline void copyElms(FXlong* dst,const FXlong* src,FXuval n){ memcpy(dst,src,n<<3); }
238 inline void copyElms(FXfloat* dst,const FXfloat* src,FXuval n){ memcpy(dst,src,n<<2); }
239 inline void copyElms(FXdouble* dst,const FXdouble* src,FXuval n){ memcpy(dst,src,n<<3); }
240 
241 // Simple bit-wise copy for array of pointers to any type
242 template<typename EType> inline void copyElms(EType** dst,const EType** src,FXuval n){ memcpy(dst,src,n*sizeof(void*)); }
243 
244 
245 // Simple bit-wise move for array of basic type
246 inline void moveElms(FXchar* dst,const FXchar* src,FXuval n){ memmove(dst,src,n); }
247 inline void moveElms(FXuchar* dst,const FXuchar* src,FXuval n){ memmove(dst,src,n); }
248 inline void moveElms(FXschar* dst,const FXschar* src,FXuval n){ memmove(dst,src,n); }
249 inline void moveElms(FXushort* dst,const FXushort* src,FXuval n){ memmove(dst,src,n<<1); }
250 inline void moveElms(FXshort* dst,const FXshort* src,FXuval n){ memmove(dst,src,n<<1); }
251 inline void moveElms(FXuint* dst,const FXuint* src,FXuval n){ memmove(dst,src,n<<2); }
252 inline void moveElms(FXint* dst,const FXint* src,FXuval n){ memmove(dst,src,n<<2); }
253 inline void moveElms(FXulong* dst,const FXulong* src,FXuval n){ memmove(dst,src,n<<3); }
254 inline void moveElms(FXlong* dst,const FXlong* src,FXuval n){ memmove(dst,src,n<<3); }
255 inline void moveElms(FXfloat* dst,const FXfloat* src,FXuval n){ memmove(dst,src,n<<2); }
256 inline void moveElms(FXdouble* dst,const FXdouble* src,FXuval n){ memmove(dst,src,n<<3); }
257 
258 // Simple bit-wise move for array of pointers to any type
259 template<typename EType> inline void moveElms(EType** dst,const EType** src,FXuval n){ memmove(dst,src,n*sizeof(void*)); }
260 
261 
262 // Simple bit-wise comparison for array of basic type
263 inline FXbool equalElms(const FXchar* dst,const FXchar* src,FXuval n){ return memcmp(dst,src,n)==0; }
264 inline FXbool equalElms(const FXuchar* dst,const FXuchar* src,FXuval n){ return memcmp(dst,src,n)==0; }
265 inline FXbool equalElms(const FXschar* dst,const FXschar* src,FXuval n){ return memcmp(dst,src,n)==0; }
266 inline FXbool equalElms(const FXushort* dst,const FXushort* src,FXuval n){ return memcmp(dst,src,n<<1)==0; }
267 inline FXbool equalElms(const FXshort* dst,const FXshort* src,FXuval n){ return memcmp(dst,src,n<<1)==0; }
268 inline FXbool equalElms(const FXuint* dst,const FXuint* src,FXuval n){ return memcmp(dst,src,n<<2)==0; }
269 inline FXbool equalElms(const FXint* dst,const FXint* src,FXuval n){ return memcmp(dst,src,n<<2)==0; }
270 inline FXbool equalElms(const FXulong* dst,const FXulong* src,FXuval n){ return memcmp(dst,src,n<<3)==0; }
271 inline FXbool equalElms(const FXlong* dst,const FXlong* src,FXuval n){ return memcmp(dst,src,n<<3)==0; }
272 inline FXbool equalElms(const FXfloat* dst,const FXfloat* src,FXuval n){ return memcmp(dst,src,n<<2)==0; }
273 inline FXbool equalElms(const FXdouble* dst,const FXdouble* src,FXuval n){ return memcmp(dst,src,n<<3)==0; }
274 
275 // Simple bit-wise comparison for array of pointers to any type
276 template<typename EType> inline FXbool equalElms(EType** dst,const EType** src,FXuval n){ return memcmp(dst,src,n*sizeof(void*))==0; }
277 
278 
279 // Fill byte arrays with constant
280 inline void fillElms(FXchar* dst,const FXchar& src,FXuval n){ memset(dst,src,n); }
281 inline void fillElms(FXuchar* dst,const FXuchar& src,FXuval n){ memset(dst,src,n); }
282 inline void fillElms(FXschar* dst,const FXschar& src,FXuval n){ memset(dst,src,n); }
283 
284 }
285 
286 #endif
Definition: FX4Splitter.h:28

Copyright © 1997-2022 Jeroen van der Zijp