8#define _CRT_NONSTDC_NO_DEPRECATE
47 flags = flags | matio_flags::MAT_F_LOGICAL;
66 if (!m_handler || !m_handler->
get())
84 if (dimensions.size() < 2)
122 flags = flags | matio_flags::MAT_F_LOGICAL;
129 if (!m_handler->importMatvar(
newPtr))
141 if (!m_handler || !m_handler->get())
172 for (
size_t dim : dimensions())
184 std::cerr <<
"[ERROR][matioCpp::Variable::setCellElement] The variable is not valid." <<
std::endl;
191 std::cerr <<
"[ERROR][matioCpp::Variable::setCellElement] Could not copy the new value. ";
238 size_t numberOfFields = getStructNumberOfFields();
239 char *
const * fields = getStructFields();
240 index = numberOfFields;
247 while (
i < numberOfFields && (strcmp(fields[
i],
field.c_str()) != 0))
254 return index < numberOfFields;
261 std::cerr <<
"[ERROR][matioCpp::Variable::setStructField] The variable is not valid." <<
std::endl;
265 if (!m_handler->isShared())
267 std::cerr <<
"[ERROR][matioCpp::Variable::setStructField] Cannot set the field if the variable is not owning the memory." <<
std::endl;
289 std::cerr <<
"[ERROR][matioCpp::Variable::addStructField] The variable is not valid." <<
std::endl;
293 if (m_handler->isShared())
314 std::cerr <<
"[ERROR][matioCpp::Variable::setStructField] The variable is not valid." <<
std::endl;
320 if (!getStructFieldIndex(
field,
fieldindex) && !((getArrayNumberOfElements() == 1) && addStructField(
field)))
346 size_t numberOfFields = getStructNumberOfFields();
353 size_t dimensions[] = {1,1};
362 size_t numberOfFields = getStructNumberOfFields();
369 size_t dimensions[] = {1,1};
402 m_handler =
other.m_handler;
403 other.m_handler =
nullptr;
407 : m_handler(
handler.pointerToDuplicate())
431 bool ok = fromOther(std::forward<matioCpp::Variable>(
other));
441 std::cerr <<
"[matioCpp::Variable::fromMatio] The input pointer is null." <<
std::endl;
454 return m_handler->duplicateMatvar(
inputVar);
466 std::cerr <<
"[matioCpp::Variable::fromOther] The input variable is not valid." <<
std::endl;
479 m_handler =
other.m_handler;
480 other.m_handler =
nullptr;
488 return m_handler->get();
495 return m_handler->get();
502 return m_handler->get()->name;
512 return m_handler->variableType();
517 return m_handler->valueType();
548 return m_handler->get() && checkCompatibility(m_handler->get(), m_handler->variableType(), m_handler->valueType());
555 std::cerr <<
"[ERROR][matioCpp::Variable::operator[]] The operator[](string) can be used only with structs." <<
std::endl;
560 if (!getStructFieldIndex(
el, index))
562 std::cerr <<
"[ERROR][matioCpp::Variable::operator[]] The field " <<
el <<
" does not exist." <<
std::endl;
566 return getStructField(index);
573 std::cerr <<
"[ERROR][matioCpp::Variable::operator[]] The operator[](string) can be used only with structs." <<
std::endl;
578 if (!getStructFieldIndex(
el, index))
580 std::cerr <<
"[ERROR][matioCpp::Variable::operator[]] The field " <<
el <<
" does not exist." <<
std::endl;
584 return getStructField(index);
CellArray is a particular type of Variable specialized for cell arrays.
virtual bool duplicateMatvar(const matvar_t *inputPtr)=0
Perform a deep copy of the input pointer.
static matvar_t * GetMatvarDuplicate(const matvar_t *inputPtr)
Get a duplicate of the input matvar pointer/.
virtual bool importMatvar(matvar_t *inputPtr)=0
Import the input pointer.
static void DeleteMatvar(matvar_t *pointerToDelete, DeleteMode mode=DeleteMode::Delete)
Delete the specified Matvar.
virtual matvar_t * get() const =0
Get the shared matvar_t pointer.
MultiDimensionalArray is a particular type of Variable specialized for multidimensional arrays of a g...
pointer data()
Direct access to the underlying array.
StructArray is a particular type of Variable specialized for array of structs.
Struct is a particular type of Variable specialized for structs.
The matioCpp::Variable class is the equivalent of matvar_t in matio.
bool setStructField(size_t index, const Variable &newValue, size_t structPositionInArray=0)
Set the field of the struct at the specified position.
matioCpp::String16 asString16()
Cast the variable as a String16.
Struct getStructArrayElement(size_t linearIndex)
Get an element of the variable, considered as a StructArray.
char *const * getStructFields() const
Get the list of fields in the variable, considered as a struct.
bool getStructFieldIndex(const std::string &field, size_t &index) const
Get the index of the specified field in the variable, considered as a struct.
matioCpp::String32 asString32()
Cast the variable as a String32.
size_t getArrayNumberOfElements() const
Get the total number of elements in the array.
Variable & operator=(const Variable &other)
Copy assignement.
Variable()
Default constructor.
matioCpp::StructArray asStructArray()
Cast the variable as a StructArray.
bool setCellElement(size_t linearIndex, const Variable &newValue)
Set a cell element at a specified linear position.
size_t getStructNumberOfFields() const
Get the total number of fields in the variable, considered as a struct.
std::string name() const
Get the name of the Variable.
virtual bool checkCompatibility(const matvar_t *inputPtr, matioCpp::VariableType variableType, matioCpp::ValueType valueType) const
Check if an input matio pointer is compatible with the specified variable.
bool addStructField(const std::string &newField)
Add a new field to the variable, considered as a struct.
const matvar_t * toMatio() const
Convert this Variable to a matio variable.
bool changeName(const std::string &newName)
Change the name of the variable.
bool fromMatio(const matvar_t *inputVar)
Set this variable from an existing matio variable.
matioCpp::Span< const size_t > dimensions() const
Get the dimensions of this object.
bool isValid() const
Check if the variable is valid.
matioCpp::VariableType variableType() const
Get the VariableType.
bool fromOther(const Variable &other)
Set this variable from another variable.
matioCpp::Variable operator[](const std::string &el)
Access field with specific name.
bool initializeVariable(const std::string &name, const VariableType &variableType, const ValueType &valueType, matioCpp::Span< const size_t > dimensions, void *data)
Initialize the variable.
matioCpp::ValueType valueType() const
Get the ValueType.
Variable getCellElement(size_t linearIndex)
Get a cell element at a specified linear position.
Variable getStructField(size_t index, size_t structPositionInArray=0)
Get the specified field in the variable, considered as a struct.
bool isComplex() const
Get if the variable is complex.
matioCpp::CellArray asCellArray()
Cast the variable as a CellArray.
matioCpp::Struct asStruct()
Cast the variable as a Struct.
bool initializeComplexVariable(const std::string &name, const VariableType &variableType, const ValueType &valueType, matioCpp::Span< const size_t > dimensions, void *realData, void *imaginaryData)
Initialize a complex variable.
matioCpp::String asString()
Cast the variable as a String.
@ Delete
The handler deletes the pointer but not the data.
bool get_matio_types(const VariableType &inputVariableType, const ValueType &inputValueType, matio_classes &outputMatioClasses, matio_types &outputMatioType)
Get both the matio type and class from the input VariableType and ValueType.
MATIOCPP_CONSTEXPR Span< ElementType > make_span(ElementType *ptr, typename Span< ElementType >::index_type count)
void unused(Args &&...)
Utility metafunction to avoid compiler warnings about unused variables.
VariableType
Define the type of variable.
bool get_types_from_matvart(const matvar_t *input, VariableType &outputVariableType, ValueType &outputValueType)
Get the VariableType and the ValueType from a matvar_t pointer.
ValueType
The list of types for an element of a certain variable type.