27 #ifdef JEDI_USING_SECURE_STRINGS
28 strncpy_s(dest, destSz, src, srcSz);
29 return strnlen_s(dest, destSz);
31 if (destSz == 0)
throw;
35 if (srcSz <= destSz) {
36 strncpy(dest, src, srcSz);
37 if (dest[srcSz - 1] !=
'\0')
throw Exception(
"Non-terminated null copy.",
ioda_Here());
39 strncpy(dest, src, destSz);
43 for (
size_t i = 0; i < destSz - 1; ++i) {
45 if (dest[i] ==
'\0' && src[i] ==
'\0')
break;
46 if (dest[i] ==
'\0' && src[i] !=
'\0')
54 for (
size_t i = 0; i < destSz; ++i) {
55 if (dest[i] ==
'\0')
return i;
69 if (backend_ ==
nullptr)
71 return backend_->getSize();
74 "An exception occurred inside ioda while getting the size of a data type.",
ioda_Here()));
82 throw Exception(
"This function must be implemented in the backend engine.",
ioda_Here());
87 Type::Type() : Type_Base(nullptr, nullptr), as_type_index_(typeid(void)) {}
88 Type::Type(std::shared_ptr<detail::Type_Backend> b, std::type_index t)
89 : Type_Base(b, b->provider_), as_type_index_(t) {}
92 : Type_Base(nullptr, t.get()), as_type_index_(typeid(void)) {
93 static const std::map<BasicTypes, std::type_index> workable_types
120 *
this = t->makeFundamentalType(workable_types.at(typ));
Interfaces for ioda::Type and related classes.
The ioda exception class.
std::type_index as_type_index_
size_t getSize() const override
Get the size of a single element of a type, in bytes.
virtual size_t getSize() const
Get the size of a single element of a type, in bytes.
Common preprocessor definitions used throughout IODA.
constexpr size_t _Variable_Length
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.