19 #include <gsl/gsl-lite.hpp>
66 template <
class Type_Implementation = Type>
68 friend class ::ioda::Type;
89 template <class DataType>
91 Type templateType = Types::GetType_Wrapper<DataType>::GetType(getTypeProvider());
93 return isA(templateType);
96 virtual bool isA(Type lhs) const;
99 inline bool isA(BasicTypes dataType) const { return isA(Type(dataType, getTypeProvider())); }
111 virtual size_t getSize()
const;
126 Type(std::shared_ptr<detail::Type_Backend> b, std::type_index t);
127 Type(
BasicTypes, gsl::not_null<::ioda::detail::Type_Provider*> t);
136 std::type_index
getType()
const {
return as_type_index_; }
137 inline std::type_index
operator()()
const {
return getType(); }
138 inline std::type_index
get()
const {
return getType(); }
152 size_t getSize()
const override;
170 template <
typename T>
172 bool, std::is_same<char*, typename std::decay<T>::type>::value
173 || std::is_same<const char*, typename std::decay<T>::type>::value> {};
180 namespace constants {
188 template <
class DataType,
int Array_Type_Dimensionality = 0>
189 Type GetType(gsl::not_null<const ::ioda::detail::Type_Provider*> t,
190 std::initializer_list<Dimensions_t> Adims = {},
191 typename std::enable_if<!is_string<DataType>::value>::type* = 0) {
192 if (Array_Type_Dimensionality <= 0)
194 "Bad assertion / unsupported fundamental type at the frontend side "
195 "of the ioda type system.",
ioda_Here());
197 return t->makeArrayType(Adims,
typeid(DataType[]),
typeid(DataType));
202 template <
class DataType,
int String_Type_Length = constants::_Variable_Length>
203 Type GetType(gsl::not_null<const ::ioda::detail::Type_Provider*> t,
204 std::initializer_list<Dimensions_t> = {},
205 typename std::enable_if<is_string<DataType>::value>::type* = 0) {
206 return t->makeStringType(String_Type_Length,
typeid(DataType));
223 #define IODA_ADD_FUNDAMENTAL_TYPE(x) \
225 inline Type GetType<x, 0>(gsl::not_null<const ::ioda::detail::Type_Provider*> t, \
226 std::initializer_list<Dimensions_t>, void*) { \
227 return t->makeFundamentalType(typeid(x)); \
250 #undef IODA_ADD_FUNDAMENTAL_TYPE
255 template<> inline Type GetType<std::array<int,2>, 0>
256 (gsl::not_null<const ::ioda::detail::Type_Provider*> t,
257 std::initializer_list<Dimensions_t>, void*) {
258 return t->makeArrayType({2}, typeid(std::array<int,2>), typeid(int)); }
277 template <
class DataType,
280 static Type GetType(gsl::not_null<const ::ioda::detail::Type_Provider*> t) {
282 return ::ioda::Types::GetType<DataType, Length>(t, {Length});
286 typedef std::function<
Type(gsl::not_null<const ::ioda::detail::Type_Provider*>)>
Frontend/backend bindings for the type system.
The ioda exception class.
Represents the "type" (i.e. integer, string, float) of a piece of data.
std::type_index as_type_index_
std::type_index getType() const
std::type_index operator()() const
std::type_index get() const
virtual size_t getSize() const
Get the size of a single element of a type, in bytes.
detail::Type_Provider * getTypeProvider() const
Get the type provider.
::ioda::detail::Type_Provider * provider_
std::shared_ptr< Type_Backend > getBackend() const
std::shared_ptr< Type_Backend > backend_
Type_Base(std::shared_ptr< Type_Backend > b, ::ioda::detail::Type_Provider *p)
Backends implement type providers in conjunction with Attributes, Has_Attributes, Variables and Has_V...
Common preprocessor definitions used throughout IODA.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
std::function< Type(gsl::not_null< const ::ioda::detail::Type_Provider * >)> TypeWrapper_function
Type 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.
constexpr size_t _Variable_Length
IODA_ADD_FUNDAMENTAL_TYPE(bool)
IODA_DL size_t COMPAT_strncpy_s(char *dest, size_t destSz, const char *src, size_t srcSz)
Safe char array copy.
@ undefined_
Internal use only.
Wrapper struct to call GetType. Needed because of C++ template rules.
static Type GetType(gsl::not_null< const ::ioda::detail::Type_Provider * > t)
Convenience struct to determine if a type can represent a string.