16 std::cerr <<
"[matioCpp::StructArray::checkCompatibility] The variable type is not compatible with a struct array." <<
std::endl;
20 if (inputPtr->isComplex)
22 std::cerr <<
"[matioCpp::StructArray::checkCompatibility] Cannot use a complex variable into a non-complex one." <<
std::endl;
32 initializeVariable(
"unnamed_struct_array",
41 initializeVariable(name,
53 std::cerr <<
"[ERROR][matioCpp::StructArray::StructArray] Zero dimension detected." <<
std::endl;
58 initializeVariable(name,
75 std::cerr <<
"[ERROR][matioCpp::StructArray::StructArray] The size of elements vector does not match the provided dimensions. The total number is different." <<
std::endl;
81 if (!abort && elements.
size() > 0)
84 char *
const *
firstFields = elements[0].getStructFields();
92 if (!elements[
i].isValid())
94 std::cerr <<
"[ERROR][matioCpp::StructArray::StructArray] The element at index "<<
i <<
" (0-based) is not valid." <<
std::endl;
101 std::cerr <<
"[ERROR][matioCpp::StructArray::StructArray] The element at index "<<
i <<
" (0-based) has a number of fields different from the others. All Structs are supposed to have the same set of fields." <<
std::endl;
105 char *
const *
otherFields = elements[
i].getStructFields();
111 std::cerr <<
"[ERROR][matioCpp::StructArray::StructArray] The element at index "<<
i <<
" (0-based) has a set of fields different from the others. All Structs are supposed to have the same set of fields." <<
std::endl;
123 initializeVariable(name,
130 initializeVariable(name,
139 initializeVariable(name,
153 std::cerr <<
"[ERROR][matioCpp::StructArray::StructArray] Zero dimension detected." <<
std::endl;
158 initializeVariable(name,
176 fromOther(std::forward<StructArray>(
other));
206 fromOther(std::forward<StructArray>(
other));
220 std::cerr <<
"[ERROR][matioCpp::StructArray::fromVectorOfStructs] The size of elements vector does not match the provided dimensions. The total number is different." <<
std::endl;
225 if (elements.
size() > 0)
228 char *
const *
firstFields = elements[0].getStructFields();
236 if (!elements[
i].isValid())
238 std::cerr <<
"[ERROR][matioCpp::StructArray::fromVectorOfStructs] The element at index "<<
i <<
" (0-based) is not valid." <<
std::endl;
244 std::cerr <<
"[ERROR][matioCpp::StructArray::fromVectorOfStructs] The element at index "<<
i <<
" (0-based) has a number of fields different from the others. All Structs are supposed to have the same set of fields." <<
std::endl;
247 char *
const *
otherFields = elements[
i].getStructFields();
253 std::cerr <<
"[ERROR][matioCpp::StructArray::fromVectorOfStructs] The element at index "<<
i <<
" (0-based) has a set of fields different from the others. All Structs are supposed to have the same set of fields." <<
std::endl;
263 return initializeVariable(name(),
271 return initializeVariable(name(),
280 assert(dimensions().size() > 0 && numberOfElements() > 0 &&
"[matioCpp::StructArray::rawIndexFromIndices] The array is empty.");
281 assert(
el.size() > 0 == dimensions().size() > 0 &&
"[matioCpp::StructArray::rawIndexFromIndices] The input vector el should have the same number of dimensions of the array.");
282 assert(
el[0] < dimensions()[0] &&
"[matioCpp::StructArray::rawIndexFromIndices] The required element is out of bounds.");
287 for (
size_t i = 0;
i <
el.size(); ++
i)
289 assert(
el[
i] < dimensions()[
i] &&
"[matioCpp::StructArray::rawIndexFromIndices] The required element is out of bounds.");
303 std::cerr <<
"[ERROR][matioCpp::StructArray::indicesFromRawIndex] rawIndex is greater than the number of elements." <<
std::endl;
311 for (
size_t i = 1;
i <
el.size(); ++
i)
319 for (
size_t i =
el.size() - 1;
i > 0; --
i)
321 el[
i] = remainder /
el[
i - 1];
322 remainder -=
el[
i] *
el[
i - 1];
342 return getArrayNumberOfElements();
347 return getStructNumberOfFields();
356 size_t numberOfFields = getStructNumberOfFields();
357 output.reserve(numberOfFields);
358 for (
size_t i = 0;
i < numberOfFields; ++
i)
375 return getStructFieldIndex(
field, index);
381 getStructFieldIndex(
field, index);
398 if (!addField(
field))
408 return setElement(rawIndexFromIndices(
el),
newValue);
413 assert(
el < numberOfElements() &&
"The requested element is out of bounds.");
418 if (numberOfFields() !=
newValue.numberOfFields())
420 std::cerr <<
"[ERROR][matioCpp::StructArray::setElement] The input struct is supposed to have the same number of fields of the struct array." <<
std::endl;
424 for (
size_t i = 0;
i < numberOfFields(); ++
i)
429 <<
". Cannot insert in a struct array a new field in a single element." <<
std::endl;
static matvar_t * GetMatvarDuplicate(const matvar_t *inputPtr)
Get a duplicate of the input matvar pointer/.
MultiDimensionalArray is a particular type of Variable specialized for multidimensional arrays of a g...
void resize(const std::vector< index_type > &newDimensions)
Resize the vector.
pointer data()
Direct access to the underlying array.
StructArray is a particular type of Variable specialized for array of structs.
bool fromVectorOfStructs(const std::vector< index_type > &dimensions, const std::vector< matioCpp::Struct > &elements)
Set from a vector of Variables.
bool addField(const std::string &newField)
Add a new field to all the structs.
void clear()
Clear the struct array.
index_type numberOfFields() const
Get the total number of fields in the struct.
Element operator()(const std::vector< index_type > &el)
Access specified element.
index_type rawIndexFromIndices(const std::vector< index_type > &el) const
Get the linear index corresponding to the provided indices.
bool setName(const std::string &newName)
Change the name of the Variable.
void resize(const std::vector< index_type > &newDimensions)
Resize the array.
StructArrayElement< true > ConstElement
Non-const version of StructArrayElement.
size_t getFieldIndex(const std::string &field) const
Get the index of the specified field in the struct by performing a linear search.
StructArray()
Const version of Element.
bool isFieldExisting(const std::string &field) const
Check if a field is existing It performs a linear search over the output of fields().
Element operator[](const std::vector< index_type > &el)
Access specified element.
StructArrayElement< false > Element
The type used for indices.
std::vector< std::string > fields() const
Get the list of fields.
bool indicesFromRawIndex(size_t rawIndex, std::vector< index_type > &el) const
Get the indices given the raw index.
~StructArray()
Destructor.
bool addFields(const std::vector< std::string > &newFields)
Add the fields to all the structs.
StructArray & operator=(const StructArray &other)
Assignement operator (copy) from another StructArray.
index_type numberOfElements() const
Get the total number of elements in the array.
bool setElement(const std::vector< index_type > &el, const matioCpp::Struct &newValue)
Set the element at the specified position.
Struct is a particular type of Variable specialized for structs.
The matioCpp::Variable class is the equivalent of matvar_t in matio.
char *const * getStructFields() const
Get the list of fields in the variable, considered as a struct.
matioCpp::VariableType variableType() const
Get the VariableType.
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.
VariableType
Define the type of variable.
ValueType
The list of types for an element of a certain variable type.