VTK  9.2.20230606
vtkType.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkType.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 #ifndef vtkType_h
16 #define vtkType_h
17 
18 #include "vtkABINamespace.h"
19 #include "vtkCompiler.h" // for VTK_USE_EXTERN_TEMPLATE
20 #include "vtkOptions.h" // for VTK_USE_64BIT_IDS and VTK_USE_64BIT_TIMESTAMPS
21 #include "vtk_kwiml.h"
22 
23 #define VTK_SIZEOF_CHAR KWIML_ABI_SIZEOF_CHAR
24 #define VTK_SIZEOF_SHORT KWIML_ABI_SIZEOF_SHORT
25 #define VTK_SIZEOF_INT KWIML_ABI_SIZEOF_INT
26 #define VTK_SIZEOF_LONG KWIML_ABI_SIZEOF_LONG
27 #define VTK_SIZEOF_LONG_LONG KWIML_ABI_SIZEOF_LONG_LONG
28 #define VTK_SIZEOF_FLOAT KWIML_ABI_SIZEOF_FLOAT
29 #define VTK_SIZEOF_DOUBLE KWIML_ABI_SIZEOF_DOUBLE
30 #define VTK_SIZEOF_VOID_P KWIML_ABI_SIZEOF_DATA_PTR
31 
32 /* Whether type "char" is signed (it may be signed or unsigned). */
33 #if defined(KWIML_ABI_CHAR_IS_SIGNED)
34 #define VTK_TYPE_CHAR_IS_SIGNED 1
35 #else
36 #define VTK_TYPE_CHAR_IS_SIGNED 0
37 #endif
38 
39 /*--------------------------------------------------------------------------*/
40 /* Define a unique integer identifier for each native scalar type. */
41 
42 /* These types are returned by GetDataType to indicate pixel type. */
43 #define VTK_VOID 0
44 #define VTK_BIT 1
45 #define VTK_CHAR 2
46 #define VTK_SIGNED_CHAR 15
47 #define VTK_UNSIGNED_CHAR 3
48 #define VTK_SHORT 4
49 #define VTK_UNSIGNED_SHORT 5
50 #define VTK_INT 6
51 #define VTK_UNSIGNED_INT 7
52 #define VTK_LONG 8
53 #define VTK_UNSIGNED_LONG 9
54 #define VTK_FLOAT 10
55 #define VTK_DOUBLE 11
56 #define VTK_ID_TYPE 12
57 
58 /* These types are not currently supported by GetDataType, but are for
59  completeness. */
60 #define VTK_STRING 13
61 #define VTK_OPAQUE 14
62 
63 #define VTK_LONG_LONG 16
64 #define VTK_UNSIGNED_LONG_LONG 17
65 
66 /* These types are required by vtkVariant and vtkVariantArray */
67 #define VTK_VARIANT 20
68 #define VTK_OBJECT 21
69 
70 // deleted value
71 //#define VTK_UNICODE_STRING 22 <==== do not use
72 
73 /*--------------------------------------------------------------------------*/
74 /* Define a unique integer identifier for each vtkDataObject type. */
75 /* When adding a new data type here, make sure to update */
76 /* vtkDataObjectTypes as well. */
77 #define VTK_POLY_DATA 0
78 #define VTK_STRUCTURED_POINTS 1
79 #define VTK_STRUCTURED_GRID 2
80 #define VTK_RECTILINEAR_GRID 3
81 #define VTK_UNSTRUCTURED_GRID 4
82 #define VTK_PIECEWISE_FUNCTION 5
83 #define VTK_IMAGE_DATA 6
84 #define VTK_DATA_OBJECT 7
85 #define VTK_DATA_SET 8
86 #define VTK_POINT_SET 9
87 #define VTK_UNIFORM_GRID 10
88 #define VTK_COMPOSITE_DATA_SET 11
89 #define VTK_MULTIGROUP_DATA_SET 12
90 #define VTK_MULTIBLOCK_DATA_SET 13
91 #define VTK_HIERARCHICAL_DATA_SET 14
92 #define VTK_HIERARCHICAL_BOX_DATA_SET 15
93 #define VTK_GENERIC_DATA_SET 16
94 #define VTK_HYPER_OCTREE 17
95 #define VTK_TEMPORAL_DATA_SET 18
96 #define VTK_TABLE 19
97 #define VTK_GRAPH 20
98 #define VTK_TREE 21
99 #define VTK_SELECTION 22
100 #define VTK_DIRECTED_GRAPH 23
101 #define VTK_UNDIRECTED_GRAPH 24
102 #define VTK_MULTIPIECE_DATA_SET 25
103 #define VTK_DIRECTED_ACYCLIC_GRAPH 26
104 #define VTK_ARRAY_DATA 27
105 #define VTK_REEB_GRAPH 28
106 #define VTK_UNIFORM_GRID_AMR 29
107 #define VTK_NON_OVERLAPPING_AMR 30
108 #define VTK_OVERLAPPING_AMR 31
109 #define VTK_HYPER_TREE_GRID 32
110 #define VTK_MOLECULE 33
111 #define VTK_PISTON_DATA_OBJECT 34
112 #define VTK_PATH 35
113 #define VTK_UNSTRUCTURED_GRID_BASE 36
114 #define VTK_PARTITIONED_DATA_SET 37
115 #define VTK_PARTITIONED_DATA_SET_COLLECTION 38
116 #define VTK_UNIFORM_HYPER_TREE_GRID 39
117 #define VTK_EXPLICIT_STRUCTURED_GRID 40
118 #define VTK_DATA_OBJECT_TREE 41
119 #define VTK_ABSTRACT_ELECTRONIC_DATA 42
120 #define VTK_OPEN_QUBE_ELECTRONIC_DATA 43
121 #define VTK_ANNOTATION 44
122 #define VTK_ANNOTATION_LAYERS 45
123 #define VTK_BSP_CUTS 46
124 #define VTK_GEO_JSON_FEATURE 47
125 #define VTK_IMAGE_STENCIL_DATA 48
126 #define VTK_CELL_GRID 49
127 
128 /*--------------------------------------------------------------------------*/
129 /* Define a casting macro for use by the constants below. */
130 #if defined(__cplusplus)
131 #define VTK_TYPE_CAST(T, V) static_cast<T>(V)
132 #else
133 #define VTK_TYPE_CAST(T, V) ((T)(V))
134 #endif
135 
136 /*--------------------------------------------------------------------------*/
137 /* Define min/max constants for each type. */
138 #define VTK_BIT_MIN 0
139 #define VTK_BIT_MAX 1
140 #if VTK_TYPE_CHAR_IS_SIGNED
141 #define VTK_CHAR_MIN VTK_TYPE_CAST(char, 0x80)
142 #define VTK_CHAR_MAX VTK_TYPE_CAST(char, 0x7f)
143 #else
144 #define VTK_CHAR_MIN VTK_TYPE_CAST(char, 0u)
145 #define VTK_CHAR_MAX VTK_TYPE_CAST(char, 0xffu)
146 #endif
147 #define VTK_SIGNED_CHAR_MIN VTK_TYPE_CAST(signed char, 0x80)
148 #define VTK_SIGNED_CHAR_MAX VTK_TYPE_CAST(signed char, 0x7f)
149 #define VTK_UNSIGNED_CHAR_MIN VTK_TYPE_CAST(unsigned char, 0u)
150 #define VTK_UNSIGNED_CHAR_MAX VTK_TYPE_CAST(unsigned char, 0xffu)
151 #define VTK_SHORT_MIN VTK_TYPE_CAST(short, 0x8000)
152 #define VTK_SHORT_MAX VTK_TYPE_CAST(short, 0x7fff)
153 #define VTK_UNSIGNED_SHORT_MIN VTK_TYPE_CAST(unsigned short, 0u)
154 #define VTK_UNSIGNED_SHORT_MAX VTK_TYPE_CAST(unsigned short, 0xffffu)
155 #define VTK_INT_MIN VTK_TYPE_CAST(int, ~(~0u >> 1))
156 #define VTK_INT_MAX VTK_TYPE_CAST(int, ~0u >> 1)
157 #define VTK_UNSIGNED_INT_MIN VTK_TYPE_CAST(unsigned int, 0)
158 #define VTK_UNSIGNED_INT_MAX VTK_TYPE_CAST(unsigned int, ~0u)
159 #define VTK_LONG_MIN VTK_TYPE_CAST(long, ~(~0ul >> 1))
160 #define VTK_LONG_MAX VTK_TYPE_CAST(long, ~0ul >> 1)
161 #define VTK_UNSIGNED_LONG_MIN VTK_TYPE_CAST(unsigned long, 0ul)
162 #define VTK_UNSIGNED_LONG_MAX VTK_TYPE_CAST(unsigned long, ~0ul)
163 #define VTK_FLOAT_MIN VTK_TYPE_CAST(float, -1.0e+38f)
164 #define VTK_FLOAT_MAX VTK_TYPE_CAST(float, 1.0e+38f)
165 #define VTK_DOUBLE_MIN VTK_TYPE_CAST(double, -1.0e+299)
166 #define VTK_DOUBLE_MAX VTK_TYPE_CAST(double, 1.0e+299)
167 #define VTK_LONG_LONG_MIN VTK_TYPE_CAST(long long, ~(~0ull >> 1))
168 #define VTK_LONG_LONG_MAX VTK_TYPE_CAST(long long, ~0ull >> 1)
169 #define VTK_UNSIGNED_LONG_LONG_MIN VTK_TYPE_CAST(unsigned long long, 0ull)
170 #define VTK_UNSIGNED_LONG_LONG_MAX VTK_TYPE_CAST(unsigned long long, ~0ull)
171 
172 /*--------------------------------------------------------------------------*/
173 /* Define named types and constants corresponding to specific integer
174  and floating-point sizes and signedness. */
175 
176 /* Select an 8-bit integer type. */
177 #if VTK_SIZEOF_CHAR == 1
178 typedef unsigned char vtkTypeUInt8;
179 typedef signed char vtkTypeInt8;
180 #define VTK_TYPE_UINT8 VTK_UNSIGNED_CHAR
181 #define VTK_TYPE_UINT8_MIN VTK_UNSIGNED_CHAR_MIN
182 #define VTK_TYPE_UINT8_MAX VTK_UNSIGNED_CHAR_MAX
183 #define VTK_TYPE_INT8 VTK_SIGNED_CHAR
184 #define VTK_TYPE_INT8_MIN VTK_SIGNED_CHAR_MIN
185 #define VTK_TYPE_INT8_MAX VTK_SIGNED_CHAR_MAX
186 #else
187 #error "No native data type can represent an 8-bit integer."
188 #endif
189 
190 /* Select a 16-bit integer type. */
191 #if VTK_SIZEOF_SHORT == 2
192 typedef unsigned short vtkTypeUInt16;
193 typedef signed short vtkTypeInt16;
194 #define VTK_TYPE_UINT16 VTK_UNSIGNED_SHORT
195 #define VTK_TYPE_UINT16_MIN VTK_UNSIGNED_SHORT_MIN
196 #define VTK_TYPE_UINT16_MAX VTK_UNSIGNED_SHORT_MAX
197 #define VTK_TYPE_INT16 VTK_SHORT
198 #define VTK_TYPE_INT16_MIN VTK_SHORT_MIN
199 #define VTK_TYPE_INT16_MAX VTK_SHORT_MAX
200 #elif VTK_SIZEOF_INT == 2
201 typedef unsigned int vtkTypeUInt16;
202 typedef signed int vtkTypeInt16;
203 #define VTK_TYPE_UINT16 VTK_UNSIGNED_INT
204 #define VTK_TYPE_UINT16_MIN VTK_UNSIGNED_INT_MIN
205 #define VTK_TYPE_UINT16_MAX VTK_UNSIGNED_INT_MAX
206 #define VTK_TYPE_INT16 VTK_INT
207 #define VTK_TYPE_INT16_MIN VTK_INT_MIN
208 #define VTK_TYPE_INT16_MAX VTK_INT_MAX
209 #else
210 #error "No native data type can represent a 16-bit integer."
211 #endif
212 
213 /* Select a 32-bit integer type. */
214 #if VTK_SIZEOF_INT == 4
215 typedef unsigned int vtkTypeUInt32;
216 typedef signed int vtkTypeInt32;
217 #define VTK_TYPE_UINT32 VTK_UNSIGNED_INT
218 #define VTK_TYPE_UINT32_MIN VTK_UNSIGNED_INT_MIN
219 #define VTK_TYPE_UINT32_MAX VTK_UNSIGNED_INT_MAX
220 #define VTK_TYPE_INT32 VTK_INT
221 #define VTK_TYPE_INT32_MIN VTK_INT_MIN
222 #define VTK_TYPE_INT32_MAX VTK_INT_MAX
223 #elif VTK_SIZEOF_LONG == 4
224 typedef unsigned long vtkTypeUInt32;
225 typedef signed long vtkTypeInt32;
226 #define VTK_TYPE_UINT32 VTK_UNSIGNED_LONG
227 #define VTK_TYPE_UINT32_MIN VTK_UNSIGNED_LONG_MIN
228 #define VTK_TYPE_UINT32_MAX VTK_UNSIGNED_LONG_MAX
229 #define VTK_TYPE_INT32 VTK_LONG
230 #define VTK_TYPE_INT32_MIN VTK_LONG_MIN
231 #define VTK_TYPE_INT32_MAX VTK_LONG_MAX
232 #else
233 #error "No native data type can represent a 32-bit integer."
234 #endif
235 
236 /* Select a 64-bit integer type. */
237 #if VTK_SIZEOF_LONG_LONG == 8
238 typedef unsigned long long vtkTypeUInt64;
239 typedef signed long long vtkTypeInt64;
240 #define VTK_TYPE_UINT64 VTK_UNSIGNED_LONG_LONG
241 #define VTK_TYPE_UINT64_MIN VTK_UNSIGNED_LONG_LONG_MIN
242 #define VTK_TYPE_UINT64_MAX VTK_UNSIGNED_LONG_LONG_MAX
243 #define VTK_TYPE_INT64 VTK_LONG_LONG
244 #define VTK_TYPE_INT64_MIN VTK_LONG_LONG_MIN
245 #define VTK_TYPE_INT64_MAX VTK_LONG_LONG_MAX
246 #elif VTK_SIZEOF_LONG == 8
247 typedef unsigned long vtkTypeUInt64;
248 typedef signed long vtkTypeInt64;
249 #define VTK_TYPE_UINT64 VTK_UNSIGNED_LONG
250 #define VTK_TYPE_UINT64_MIN VTK_UNSIGNED_LONG_MIN
251 #define VTK_TYPE_UINT64_MAX VTK_UNSIGNED_LONG_MAX
252 #define VTK_TYPE_INT64 VTK_LONG
253 #define VTK_TYPE_INT64_MIN VTK_LONG_MIN
254 #define VTK_TYPE_INT64_MAX VTK_LONG_MAX
255 #else
256 #error "No native data type can represent a 64-bit integer."
257 #endif
258 
259 // If this is a 64-bit platform, or the user has indicated that 64-bit
260 // timestamps should be used, select an unsigned 64-bit integer type
261 // for use in MTime values. If possible, use 'unsigned long' as we have
262 // historically.
263 #if defined(VTK_USE_64BIT_TIMESTAMPS) || VTK_SIZEOF_VOID_P == 8
264 #if VTK_SIZEOF_LONG == 8
265 typedef unsigned long vtkMTimeType;
266 #define VTK_MTIME_TYPE_IMPL VTK_UNSIGNED_LONG
267 #define VTK_MTIME_MIN VTK_UNSIGNED_LONG_MIN
268 #define VTK_MTIME_MAX VTK_UNSIGNED_LONG_MAX
269 #else
270 typedef vtkTypeUInt64 vtkMTimeType;
271 #define VTK_MTIME_TYPE_IMPL VTK_TYPE_UINT64
272 #define VTK_MTIME_MIN VTK_TYPE_UINT64_MIN
273 #define VTK_MTIME_MAX VTK_TYPE_UINT64_MAX
274 #endif
275 #else
276 #if VTK_SIZEOF_LONG == 4
277 typedef unsigned long vtkMTimeType;
278 #define VTK_MTIME_TYPE_IMPL VTK_UNSIGNED_LONG
279 #define VTK_MTIME_MIN VTK_UNSIGNED_LONG_MIN
280 #define VTK_MTIME_MAX VTK_UNSIGNED_LONG_MAX
281 #else
282 typedef vtkTypeUInt32 vtkMTimeType;
283 #define VTK_MTIME_TYPE_IMPL VTK_TYPE_UINT32
284 #define VTK_MTIME_MIN VTK_TYPE_UINT32_MIN
285 #define VTK_MTIME_MAX VTK_TYPE_UINT32_MAX
286 #endif
287 #endif
288 
289 /* Select a 32-bit floating point type. */
290 #if VTK_SIZEOF_FLOAT == 4
291 typedef float vtkTypeFloat32;
292 #define VTK_TYPE_FLOAT32 VTK_FLOAT
293 #else
294 #error "No native data type can represent a 32-bit floating point value."
295 #endif
296 
297 /* Select a 64-bit floating point type. */
298 #if VTK_SIZEOF_DOUBLE == 8
299 typedef double vtkTypeFloat64;
300 #define VTK_TYPE_FLOAT64 VTK_DOUBLE
301 #else
302 #error "No native data type can represent a 64-bit floating point value."
303 #endif
304 
305 /*--------------------------------------------------------------------------*/
306 /* Choose an implementation for vtkIdType. */
307 #define VTK_HAS_ID_TYPE
308 #ifdef VTK_USE_64BIT_IDS
309 #if VTK_SIZEOF_LONG_LONG == 8
310 typedef long long vtkIdType;
311 #define VTK_ID_TYPE_IMPL VTK_LONG_LONG
312 #define VTK_SIZEOF_ID_TYPE VTK_SIZEOF_LONG_LONG
313 #define VTK_ID_MIN VTK_LONG_LONG_MIN
314 #define VTK_ID_MAX VTK_LONG_LONG_MAX
315 #define VTK_ID_TYPE_PRId "lld"
316 #elif VTK_SIZEOF_LONG == 8
317 typedef long vtkIdType;
318 #define VTK_ID_TYPE_IMPL VTK_LONG
319 #define VTK_SIZEOF_ID_TYPE VTK_SIZEOF_LONG
320 #define VTK_ID_MIN VTK_LONG_MIN
321 #define VTK_ID_MAX VTK_LONG_MAX
322 #define VTK_ID_TYPE_PRId "ld"
323 #else
324 #error "VTK_USE_64BIT_IDS is ON but no 64-bit integer type is available."
325 #endif
326 #else
327 typedef int vtkIdType;
328 #define VTK_ID_TYPE_IMPL VTK_INT
329 #define VTK_SIZEOF_ID_TYPE VTK_SIZEOF_INT
330 #define VTK_ID_MIN VTK_INT_MIN
331 #define VTK_ID_MAX VTK_INT_MAX
332 #define VTK_ID_TYPE_PRId "d"
333 #endif
334 
335 #ifndef __cplusplus
336 // Make sure that when VTK headers are used by the C compiler we make
337 // sure to define the bool type. This is possible when using IO features
338 // like vtkXMLWriterC.h
339 #include "stdbool.h"
340 #endif
341 
342 /*--------------------------------------------------------------------------*/
343 /* If not already defined, define vtkTypeBool. When VTK was started, some */
344 /* compilers did not yet support the bool type, and so VTK often used int, */
345 /* or more rarely unsigned int, where it should have used bool. */
346 /* Eventually vtkTypeBool will switch to real bool. */
347 #ifndef VTK_TYPE_BOOL_TYPEDEFED
348 #define VTK_TYPE_BOOL_TYPEDEFED
349 #if 1
350 typedef int vtkTypeBool;
351 typedef unsigned int vtkTypeUBool;
352 #else
353 typedef bool vtkTypeBool;
354 typedef bool vtkTypeUBool;
355 #endif
356 #endif
357 
358 #if defined(__cplusplus)
359 /* Description:
360  * Returns true if data type tags a and b point to the same data type. This
361  * is intended to handle vtkIdType, which does not have the same tag as its
362  * underlying data type.
363  * @note This method is only available when included from a C++ source file. */
364 VTK_ABI_NAMESPACE_BEGIN
365 inline vtkTypeBool vtkDataTypesCompare(int a, int b)
366 {
367  return (a == b ||
368  ((a == VTK_ID_TYPE || a == VTK_ID_TYPE_IMPL) && (b == VTK_ID_TYPE || b == VTK_ID_TYPE_IMPL)));
369 }
370 VTK_ABI_NAMESPACE_END
371 #endif
372 
373 /*--------------------------------------------------------------------------*/
375 #define vtkInstantiateTemplateMacro(decl) \
376  decl<float>; \
377  decl<double>; \
378  decl<char>; \
379  decl<signed char>; \
380  decl<unsigned char>; \
381  decl<short>; \
382  decl<unsigned short>; \
383  decl<int>; \
384  decl<unsigned int>; \
385  decl<long>; \
386  decl<unsigned long>; \
387  decl<long long>; \
388  decl<unsigned long long>
389 
391 #ifdef VTK_USE_EXTERN_TEMPLATE
392 #define vtkExternTemplateMacro(decl) vtkInstantiateTemplateMacro(decl)
393 #else
394 #define vtkExternTemplateMacro(decl)
395 #endif
396 
397 #endif
398 // VTK-HeaderTest-Exclude: vtkType.h
int vtkTypeBool
Definition: vtkABI.h:71
int vtkIdType
Definition: vtkType.h:327
#define VTK_ID_TYPE_IMPL
Definition: vtkType.h:328
unsigned int vtkTypeUBool
Definition: vtkType.h:351
int vtkTypeBool
Definition: vtkType.h:350
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:282
#define VTK_ID_TYPE
Definition: vtkType.h:56