The data type system.
More...
|
file | Marshalling.h |
| Classes and functions that implement the type system and allow for frontend/backend communication.
|
|
file | Type.h |
| Interfaces for ioda::Type and related classes.
|
|
|
template<class DataType , int Array_Type_Dimensionality = 0> |
Type | ioda::Types::GetType (gsl::not_null< const ::ioda::detail::Type_Provider * > t, std::initializer_list< Dimensions_t > Adims={}, typename std::enable_if<!is_string< DataType >::value >::type *=0) |
| For fundamental, non-string types. More...
|
|
template<class DataType , int String_Type_Length = constants::_Variable_Length> |
Type | ioda::Types::GetType (gsl::not_null< const ::ioda::detail::Type_Provider * > t, std::initializer_list< Dimensions_t >={}, typename std::enable_if< is_string< DataType >::value >::type *=0) |
| For fundamental string types. These are either constant or variable length arrays. Separate handling elsewhere. More...
|
|
The data type system.
◆ IODA_ADD_FUNDAMENTAL_TYPE
#define IODA_ADD_FUNDAMENTAL_TYPE |
( |
|
x | ) |
|
Value: template <> \
inline Type GetType<x, 0>(gsl::not_null<const ::ioda::detail::Type_Provider*> t, \
std::initializer_list<Dimensions_t>, void*) { \
return t->makeFundamentalType(typeid(x)); \
}
Macro that defines a "fundamental type" that needs to be supported by the backend. These match C++11.
- See also
- https://en.cppreference.com/w/cpp/language/types
- Since
- C++11: we use bool, short int, unsigned short int, int, unsigned int, long int, unsigned long int, long long int, unsigned long long int, signed char, unsigned char, char, wchar_t, char16_t, char32_t, float, double, long double.
-
C++20: we also add char8_t.
Definition at line 223 of file Type.h.
◆ Object_Accessor
template<typename DataType >
◆ TypeWrapper_function
◆ GetType() [1/2]
template<class DataType , int Array_Type_Dimensionality = 0>
Type ioda::Types::GetType |
( |
gsl::not_null< const ::ioda::detail::Type_Provider * > |
t, |
|
|
std::initializer_list< Dimensions_t > |
Adims = {} , |
|
|
typename std::enable_if<!is_string< DataType >::value >::type * |
= 0 |
|
) |
| |
For fundamental, non-string types.
Definition at line 189 of file Type.h.
◆ GetType() [2/2]
template<class DataType , int String_Type_Length = constants::_Variable_Length>
For fundamental string types. These are either constant or variable length arrays. Separate handling elsewhere.
Definition at line 203 of file Type.h.