VTK
vtkTemplateAliasMacro.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkTemplateAliasMacro.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 =========================================================================*/
38 #ifndef vtkTemplateAliasMacro_h
39 #define vtkTemplateAliasMacro_h
40 
41 #include "vtkTypeTraits.h"
42 
43 // Allow individual switching of support for each scalar size/signedness.
44 // These could be made advanced user options to be configured by CMake.
45 #define VTK_USE_INT8 1
46 #define VTK_USE_UINT8 1
47 #define VTK_USE_INT16 1
48 #define VTK_USE_UINT16 1
49 #define VTK_USE_INT32 1
50 #define VTK_USE_UINT32 1
51 #define VTK_USE_INT64 1
52 #define VTK_USE_UINT64 1
53 #define VTK_USE_FLOAT32 1
54 #define VTK_USE_FLOAT64 1
55 
56 // Force UINT64 off if we cannot implement support for it.
57 #if defined(VTK_TYPE_USE___INT64) && !defined(VTK_TYPE_CONVERT_UI64_TO_DOUBLE)
58 # undef VTK_USE_UINT64
59 # define VTK_USE_UINT64 0
60 #endif
61 
62 //--------------------------------------------------------------------------
63 
64 // Define helper macros to switch types on and off.
65 #define vtkTemplateAliasMacroCase(typeN, call) \
66  vtkTemplateAliasMacroCase0(typeN, call, VTK_TYPE_SIZED_##typeN)
67 #define vtkTemplateAliasMacroCase0(typeN, call, sized) \
68  vtkTemplateAliasMacroCase1(typeN, call, sized)
69 #define vtkTemplateAliasMacroCase1(typeN, call, sized) \
70  vtkTemplateAliasMacroCase2(typeN, call, VTK_USE_##sized)
71 #define vtkTemplateAliasMacroCase2(typeN, call, value) \
72  vtkTemplateAliasMacroCase3(typeN, call, value)
73 #define vtkTemplateAliasMacroCase3(typeN, call, value) \
74  vtkTemplateAliasMacroCase_##value(typeN, call)
75 #define vtkTemplateAliasMacroCase_0(typeN, call) \
76  case VTK_##typeN: \
77  { \
78  vtkGenericWarningMacro("Support for VTK_" #typeN " not compiled."); \
79  }; break
80 #define vtkTemplateAliasMacroCase_1(typeN, call) \
81  case VTK_##typeN: \
82  { \
83  typedef vtkTypeTraits<VTK_TYPE_NAME_##typeN>::SizedType VTK_TT; call; \
84  }; break
85 
86 // Add "long long" to the template macro if it is enabled.
87 #if defined(VTK_TYPE_USE_LONG_LONG)
88 # define vtkTemplateAliasMacroCase_ll(typeN, call) \
89  vtkTemplateAliasMacroCase(typeN, call);
90 #else
91 # define vtkTemplateAliasMacroCase_ll(typeN, call)
92 #endif
93 
94 // Add "__int64" to the template macro if it is enabled.
95 #if defined(VTK_TYPE_USE___INT64)
96 # define vtkTemplateAliasMacroCase_i64(typeN, call) \
97  vtkTemplateAliasMacroCase(typeN, call);
98 #else
99 # define vtkTemplateAliasMacroCase_i64(typeN, call)
100 #endif
101 
102 // Define a macro to dispatch calls to a template instantiated over
103 // the aliased scalar types.
104 #define vtkTemplateAliasMacro(call) \
105  vtkTemplateAliasMacroCase(DOUBLE, call); \
106  vtkTemplateAliasMacroCase(FLOAT, call); \
107  vtkTemplateAliasMacroCase_ll(LONG_LONG, call) \
108  vtkTemplateAliasMacroCase_ll(UNSIGNED_LONG_LONG, call) \
109  vtkTemplateAliasMacroCase_i64(__INT64, call) \
110  vtkTemplateAliasMacroCase_i64(UNSIGNED___INT64, call) \
111  vtkTemplateAliasMacroCase(ID_TYPE, call); \
112  vtkTemplateAliasMacroCase(LONG, call); \
113  vtkTemplateAliasMacroCase(UNSIGNED_LONG, call); \
114  vtkTemplateAliasMacroCase(INT, call); \
115  vtkTemplateAliasMacroCase(UNSIGNED_INT, call); \
116  vtkTemplateAliasMacroCase(SHORT, call); \
117  vtkTemplateAliasMacroCase(UNSIGNED_SHORT, call); \
118  vtkTemplateAliasMacroCase(CHAR, call); \
119  vtkTemplateAliasMacroCase(SIGNED_CHAR, call); \
120  vtkTemplateAliasMacroCase(UNSIGNED_CHAR, call)
121 
122 #endif
123 // VTK-HeaderTest-Exclude: vtkTemplateAliasMacro.h