GDAL
gdal_typetraits.h
1/******************************************************************************
2 * Name: gdal_typetraits.h
3 * Project: GDAL Core
4 * Purpose: Type traits for mapping C++ types to and from GDAL/OGR types.
5 * Author: Robin Princeley, <rprinceley at esri dot com>
6 *
7 ******************************************************************************
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included
16 * in all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24 * DEALINGS IN THE SOFTWARE.
25 ****************************************************************************/
26#if !defined(GDAL_TYPETRAITS_H_INCLUDED)
27#define GDAL_TYPETRAITS_H_INCLUDED
28
29#include "gdal_priv.h"
30#include "cpl_float.h"
31
32#include <cstddef>
33#include <cstdint>
34#include <complex>
35
36namespace gdal
37{
38
51template <typename T> struct CXXTypeTraits
52{
53};
54
56template <> struct CXXTypeTraits<int8_t>
57{
58 static constexpr GDALDataType gdal_type = GDT_Int8;
59 static constexpr size_t size = sizeof(int8_t);
60 static constexpr OGRFieldType ogr_type = OFTInteger;
61 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
62
63 static inline GDALExtendedDataType GetExtendedDataType()
64 {
66 }
67};
68
69template <> struct CXXTypeTraits<uint8_t>
70{
71 static constexpr GDALDataType gdal_type = GDT_Byte;
72 static constexpr size_t size = sizeof(uint8_t);
73 static constexpr OGRFieldType ogr_type = OFTInteger;
74 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
75
76 static inline GDALExtendedDataType GetExtendedDataType()
77 {
79 }
80};
81
82template <> struct CXXTypeTraits<int16_t>
83{
84 static constexpr GDALDataType gdal_type = GDT_Int16;
85 static constexpr size_t size = sizeof(int16_t);
86 static constexpr OGRFieldType ogr_type = OFTInteger;
87 static constexpr OGRFieldSubType ogr_subtype = OFSTInt16;
88
89 static inline GDALExtendedDataType GetExtendedDataType()
90 {
92 }
93};
94
95template <> struct CXXTypeTraits<uint16_t>
96{
97 static constexpr GDALDataType gdal_type = GDT_UInt16;
98 static constexpr size_t size = sizeof(uint16_t);
99 static constexpr OGRFieldType ogr_type = OFTInteger;
100 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
101
102 static inline GDALExtendedDataType GetExtendedDataType()
103 {
105 }
106};
107
108template <> struct CXXTypeTraits<int32_t>
109{
110 static constexpr GDALDataType gdal_type = GDT_Int32;
111 static constexpr size_t size = sizeof(int32_t);
112 static constexpr OGRFieldType ogr_type = OFTInteger;
113 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
114
115 static inline GDALExtendedDataType GetExtendedDataType()
116 {
118 }
119};
120
121template <> struct CXXTypeTraits<uint32_t>
122{
123 static constexpr GDALDataType gdal_type = GDT_UInt32;
124 static constexpr size_t size = sizeof(uint32_t);
125 static constexpr OGRFieldType ogr_type = OFTInteger64;
126 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
127
128 static inline GDALExtendedDataType GetExtendedDataType()
129 {
131 }
132};
133
134template <> struct CXXTypeTraits<int64_t>
135{
136 static constexpr GDALDataType gdal_type = GDT_Int64;
137 static constexpr size_t size = sizeof(int64_t);
138 static constexpr OGRFieldType ogr_type = OFTInteger64;
139 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
140
141 static inline GDALExtendedDataType GetExtendedDataType()
142 {
144 }
145};
146
147template <> struct CXXTypeTraits<uint64_t>
148{
149 static constexpr GDALDataType gdal_type = GDT_UInt64;
150 static constexpr size_t size = sizeof(uint64_t);
151 // Mapping to Real is questionable...
152 static constexpr OGRFieldType ogr_type = OFTReal;
153 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
154
155 static inline GDALExtendedDataType GetExtendedDataType()
156 {
158 }
159};
160
161template <> struct CXXTypeTraits<GFloat16>
162{
163 static constexpr GDALDataType gdal_type = GDT_Float16;
164 static constexpr size_t size = sizeof(GFloat16);
165 static constexpr OGRFieldType ogr_type = OFTReal;
166 // We could introduce OFSTFloat16
167 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
168
169 static inline GDALExtendedDataType GetExtendedDataType()
170 {
172 }
173};
174
175template <> struct CXXTypeTraits<float>
176{
177 static constexpr GDALDataType gdal_type = GDT_Float32;
178 static constexpr size_t size = sizeof(float);
179 static constexpr OGRFieldType ogr_type = OFTReal;
180 static constexpr OGRFieldSubType ogr_subtype = OFSTFloat32;
181
182 static inline GDALExtendedDataType GetExtendedDataType()
183 {
185 }
186};
187
188template <> struct CXXTypeTraits<double>
189{
190 static constexpr GDALDataType gdal_type = GDT_Float64;
191 static constexpr size_t size = sizeof(double);
192 static constexpr OGRFieldType ogr_type = OFTReal;
193 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
194
195 static inline GDALExtendedDataType GetExtendedDataType()
196 {
198 }
199};
200
201template <> struct CXXTypeTraits<std::complex<GFloat16>>
202{
203 static constexpr GDALDataType gdal_type = GDT_CFloat16;
204 static constexpr size_t size = sizeof(GFloat16) * 2;
205 static constexpr OGRFieldType ogr_type = OFTMaxType;
206 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
207
208 static inline GDALExtendedDataType GetExtendedDataType()
209 {
211 }
212};
213
214template <> struct CXXTypeTraits<std::complex<float>>
215{
216 static constexpr GDALDataType gdal_type = GDT_CFloat32;
217 static constexpr size_t size = sizeof(float) * 2;
218 static constexpr OGRFieldType ogr_type = OFTMaxType;
219 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
220
221 static inline GDALExtendedDataType GetExtendedDataType()
222 {
224 }
225};
226
227template <> struct CXXTypeTraits<std::complex<double>>
228{
229 static constexpr GDALDataType gdal_type = GDT_CFloat64;
230 static constexpr size_t size = sizeof(double) * 2;
231 static constexpr OGRFieldType ogr_type = OFTMaxType;
232 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
233
234 static inline GDALExtendedDataType GetExtendedDataType()
235 {
237 }
238};
239
240template <> struct CXXTypeTraits<std::string>
241{
242 static constexpr GDALDataType gdal_type = GDT_Unknown;
243 static constexpr size_t size = 0;
244 static constexpr OGRFieldType ogr_type = OFTString;
245 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
246
247 static inline GDALExtendedDataType GetExtendedDataType()
248 {
250 }
251};
252
254
267template <GDALDataType T> struct GDALDataTypeTraits
268{
269};
270
272template <> struct GDALDataTypeTraits<GDT_Int8>
273{
274 typedef int8_t type;
275 static constexpr size_t size = sizeof(int8_t);
276 static constexpr OGRFieldType ogr_type = OFTInteger;
277 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
278
279 static inline GDALExtendedDataType GetExtendedDataType()
280 {
282 }
283};
284
285template <> struct GDALDataTypeTraits<GDT_Byte>
286{
287 typedef uint8_t type;
288 static constexpr size_t size = sizeof(uint8_t);
289 static constexpr OGRFieldType ogr_type = OFTInteger;
290 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
291
292 static inline GDALExtendedDataType GetExtendedDataType()
293 {
295 }
296};
297
298template <> struct GDALDataTypeTraits<GDT_Int16>
299{
300 typedef int16_t type;
301 static constexpr size_t size = sizeof(int16_t);
302 static constexpr OGRFieldType ogr_type = OFTInteger;
303 static constexpr OGRFieldSubType ogr_subtype = OFSTInt16;
304
305 static inline GDALExtendedDataType GetExtendedDataType()
306 {
308 }
309};
310
311template <> struct GDALDataTypeTraits<GDT_UInt16>
312{
313 typedef uint16_t type;
314 static constexpr size_t size = sizeof(uint16_t);
315 static constexpr OGRFieldType ogr_type = OFTInteger;
316 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
317
318 static inline GDALExtendedDataType GetExtendedDataType()
319 {
321 }
322};
323
324template <> struct GDALDataTypeTraits<GDT_Int32>
325{
326 typedef int32_t type;
327 static constexpr size_t size = sizeof(int32_t);
328 static constexpr OGRFieldType ogr_type = OFTInteger;
329 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
330
331 static inline GDALExtendedDataType GetExtendedDataType()
332 {
334 }
335};
336
337template <> struct GDALDataTypeTraits<GDT_UInt32>
338{
339 typedef uint32_t type;
340 static constexpr size_t size = sizeof(uint32_t);
341 static constexpr OGRFieldType ogr_type = OFTInteger64;
342 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
343
344 static inline GDALExtendedDataType GetExtendedDataType()
345 {
347 }
348};
349
350template <> struct GDALDataTypeTraits<GDT_Int64>
351{
352 typedef int64_t type;
353 static constexpr size_t size = sizeof(int64_t);
354 static constexpr OGRFieldType ogr_type = OFTInteger64;
355 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
356
357 static inline GDALExtendedDataType GetExtendedDataType()
358 {
360 }
361};
362
363template <> struct GDALDataTypeTraits<GDT_UInt64>
364{
365 typedef uint64_t type;
366 static constexpr size_t size = sizeof(uint64_t);
367 // Mapping to Real is questionable...
368 static constexpr OGRFieldType ogr_type = OFTReal;
369 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
370
371 static inline GDALExtendedDataType GetExtendedDataType()
372 {
374 }
375};
376
377template <> struct GDALDataTypeTraits<GDT_Float32>
378{
379 typedef float type;
380 static constexpr size_t size = sizeof(float);
381 static constexpr OGRFieldType ogr_type = OFTReal;
382 static constexpr OGRFieldSubType ogr_subtype = OFSTFloat32;
383
384 static inline GDALExtendedDataType GetExtendedDataType()
385 {
387 }
388};
389
390template <> struct GDALDataTypeTraits<GDT_Float64>
391{
392 typedef double type;
393 static constexpr size_t size = sizeof(double);
394 static constexpr OGRFieldType ogr_type = OFTReal;
395 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
396
397 static inline GDALExtendedDataType GetExtendedDataType()
398 {
400 }
401};
402
403template <> struct GDALDataTypeTraits<GDT_CInt16>
404{
405 // typedef type not available !
406 static constexpr size_t size = sizeof(int16_t) * 2;
407 static constexpr OGRFieldType ogr_type = OFTMaxType;
408 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
409
410 static inline GDALExtendedDataType GetExtendedDataType()
411 {
413 }
414};
415
416template <> struct GDALDataTypeTraits<GDT_CInt32>
417{
418 // typedef type not available !
419 static constexpr size_t size = sizeof(int32_t) * 2;
420 static constexpr OGRFieldType ogr_type = OFTMaxType;
421 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
422
423 static inline GDALExtendedDataType GetExtendedDataType()
424 {
426 }
427};
428
429template <> struct GDALDataTypeTraits<GDT_CFloat32>
430{
431 typedef std::complex<float> type;
432 static constexpr size_t size = sizeof(float) * 2;
433 static constexpr OGRFieldType ogr_type = OFTMaxType;
434 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
435
436 static inline GDALExtendedDataType GetExtendedDataType()
437 {
439 }
440};
441
442template <> struct GDALDataTypeTraits<GDT_CFloat64>
443{
444 typedef std::complex<double> type;
445 static constexpr size_t size = sizeof(double) * 2;
446 static constexpr OGRFieldType ogr_type = OFTMaxType;
447 static constexpr OGRFieldSubType ogr_subtype = OFSTNone;
448
449 static inline GDALExtendedDataType GetExtendedDataType()
450 {
452 }
453};
454
456
467inline OGRFieldType GetOGRFieldType(const GDALDataType gdal_type)
468{
469 switch (gdal_type)
470 {
471 case GDT_Byte:
472 case GDT_Int8:
473 case GDT_Int16:
474 case GDT_Int32:
475 case GDT_UInt16:
476 return OFTInteger;
477 case GDT_UInt32:
478 case GDT_Int64:
479 return OFTInteger64;
480 case GDT_UInt64: // Questionable
481 case GDT_Float16:
482 case GDT_Float32:
483 case GDT_Float64:
484 return OFTReal;
485 case GDT_CInt16:
486 case GDT_CInt32:
487 case GDT_CFloat16:
488 case GDT_CFloat32:
489 case GDT_CFloat64:
490 case GDT_Unknown:
491 case GDT_TypeCount:
492 break;
493 }
494 return OFTMaxType;
495}
496
506inline OGRFieldType GetOGRFieldType(const GDALExtendedDataType &oEDT)
507{
508 if (oEDT.GetClass() == GEDTC_NUMERIC)
509 return GetOGRFieldType(oEDT.GetNumericDataType());
510 else if (oEDT.GetClass() == GEDTC_STRING)
511 return OFTString;
512 return OFTMaxType;
513}
514
515} // namespace gdal
516
517#endif // GDAL_TYPETRAITS_H_INCLUDED
Class used to represent potentially complex data types.
Definition gdal_multidim.h:54
static GDALExtendedDataType Create(GDALDataType eType)
Return a new GDALExtendedDataType of class GEDTC_NUMERIC.
Definition gdalmultidim.cpp:10685
static GDALExtendedDataType CreateString(size_t nMaxStringLength=0, GDALExtendedDataTypeSubType eSubType=GEDTST_NONE)
Return a new GDALExtendedDataType of class GEDTC_STRING.
Definition gdalmultidim.cpp:10768
GDALDataType GetNumericDataType() const
Return numeric data type (only valid when GetClass() == GEDTC_NUMERIC).
Definition gdal_multidim.h:106
GDALExtendedDataTypeClass GetClass() const
Return type class.
Definition gdal_multidim.h:96
GDALDataType
Definition gdal.h:48
@ GDT_UInt32
Definition gdal.h:54
@ GDT_UInt64
Definition gdal.h:56
@ GDT_CInt32
Definition gdal.h:62
@ GDT_Int64
Definition gdal.h:57
@ GDT_Byte
Definition gdal.h:50
@ GDT_Int8
Definition gdal.h:51
@ GDT_CFloat32
Definition gdal.h:65
@ GDT_CFloat64
Definition gdal.h:66
@ GDT_CFloat16
Definition gdal.h:64
@ GDT_Float64
Definition gdal.h:60
@ GDT_Float16
Definition gdal.h:58
@ GDT_UInt16
Definition gdal.h:52
@ GDT_Int16
Definition gdal.h:53
@ GDT_CInt16
Definition gdal.h:61
@ GDT_Int32
Definition gdal.h:55
@ GDT_Unknown
Definition gdal.h:49
@ GDT_Float32
Definition gdal.h:59
@ GEDTC_STRING
String value.
Definition gdal.h:396
@ GEDTC_NUMERIC
Numeric value.
Definition gdal.h:394
This file is legacy since GDAL 3.12, but will be kept at least in the whole GDAL 3....
OGRFieldSubType
List of field subtypes.
Definition ogr_core.h:799
@ OFSTInt16
Signed 16-bit integer.
Definition ogr_core.h:804
@ OFSTNone
No subtype.
Definition ogr_core.h:800
@ OFSTFloat32
Single precision (32 bit) floating point.
Definition ogr_core.h:807
OGRFieldType
List of feature field types.
Definition ogr_core.h:772
@ OFTInteger
Single signed 32bit integer.
Definition ogr_core.h:773
@ OFTString
String of ASCII chars.
Definition ogr_core.h:777
@ OFTReal
Double Precision floating point.
Definition ogr_core.h:775
@ OFTInteger64
Single signed 64bit integer.
Definition ogr_core.h:785
Trait accepting a C++ type ([u]int[8/16/32/64], float, double, std::complex<float>,...
Definition gdal_typetraits.h:52
Trait accepting a GDALDataType and mapping it to corresponding C++ type and OGRFieldType.
Definition gdal_typetraits.h:268