matio-cpp v0.3.0
A C++ wrapper of the matio library, with memory ownership handling, to read and write .mat files.
Loading...
Searching...
No Matches
Struct.cpp
Go to the documentation of this file.
1/*
2 * Copyright (C) 2020 Fondazione Istituto Italiano di Tecnologia
3 *
4 * This software may be modified and distributed under the terms of the
5 * BSD-2-Clause license (https://opensource.org/licenses/BSD-2-Clause).
6 */
7
8
9#include <matioCpp/Struct.h>
10
11bool matioCpp::Struct::checkCompatibility(const matvar_t* inputPtr, matioCpp::VariableType variableType, matioCpp::ValueType) const
12{
13
15 {
16 std::cerr << "[matioCpp::Struct::checkCompatibility] The variable type is not compatible with a struct." << std::endl;
17 return false;
18 }
19
20 if (inputPtr->isComplex)
21 {
22 std::cerr << "[matioCpp::Struct::checkCompatibility] Cannot use a complex variable into a non-complex one." << std::endl;
23 return false;
24 }
25
26 return true;
27}
28
30{
31 size_t emptyDimensions[] = {1, 1};
32 initializeVariable("unnamed_struct",
35 nullptr);
36}
37
39{
40 size_t emptyDimensions[] = {1, 1};
41 initializeVariable(name,
44 nullptr);
45}
46
48{
49 size_t emptyDimensions[] = {1, 1};
51 for (size_t i = 0; i < elements.size(); ++i)
52 {
53 if (elements[i].isValid())
54 {
56 }
57 else
58 {
59 std::cerr << "[ERROR][matioCpp::Struct::Struct] The element of " << name << " at index " << i << " (0-based) is not valid. It will be skipped." << std::endl;
60 }
61 }
62 vectorOfPointers.push_back(nullptr); //The vector of pointers has to be null terminated
63
64 initializeVariable(name,
68}
69
74
76{
77 fromOther(std::forward<Struct>(other));
78}
79
82{
83 if (!handler.get() || !checkCompatibility(handler.get(), handler.variableType(), handler.valueType()))
84 {
85 assert(false);
86 size_t emptyDimensions[] = {1, 1};
87 initializeVariable("unnamed_struct",
90 nullptr);
91 }
92}
93
98
100{
101 fromOther(other);
102 return *this;
103}
104
106{
107 fromOther(std::forward<Struct>(other));
108 return *this;
109}
110
112{
113 std::vector<matvar_t*> vectorOfPointers(elements.size() + 1, nullptr); //The vector of pointers has to be null terminated
114 for (size_t i = 0; i < elements.size(); ++i)
115 {
116 if (!elements[i].isValid())
117 {
118 std::cerr << "[ERROR][matioCpp::Struct::fromVectorOfVariables] The element at index "<< i << " (0-based) is not valid." << std::endl;
119 return false;
120 }
122 }
123
124 initializeVariable(name(),
126 matioCpp::ValueType::VARIABLE, dimensions(),
128 return true;
129}
130
132{
133 return changeName(newName);
134}
135
137{
138 return getStructNumberOfFields();
139}
140
142{
144 char * const * matvarOutput = getStructFields();
145 if (matvarOutput)
146 {
147 size_t numberOfFields = getStructNumberOfFields();
148 output.reserve(numberOfFields);
149 for (size_t i = 0; i < numberOfFields; ++i)
150 {
151 output.emplace_back(matvarOutput[i]);
152 }
153 }
154
155 return output;
156}
157
159{
160 fromOther(std::move(Struct(name())));
161}
162
164{
165 size_t index;
166 return getStructFieldIndex(field, index);
167}
168
170{
171 size_t index;
172 getStructFieldIndex(field, index);
173 return index;
174}
175
177{
178 assert(index < numberOfFields() && "The specified index is out of bounds");
179 return setStructField(index, newValue);
180}
181
183{
184 return setStructField(field, newValue);
185}
186
188{
189 return setStructField(newValue.name(), newValue);
190}
191
193{
194 assert(el < numberOfFields() && "The specified index is out of bounds");
195 return getStructField(el);
196}
197
199{
200 assert(el < numberOfFields() && "The specified index is out of bounds");
201 return getStructField(el);
202}
203
205{
206 size_t index = getFieldIndex(el);
207 assert(index < numberOfFields() && "The specified field does not exist.");
208 return getStructField(index);
209}
210
212{
213 size_t index = getFieldIndex(el);
214 assert(index < numberOfFields() && "The specified field does not exist.");
215 return getStructField(index);
216}
217
219{
220 assert(el < numberOfFields() && "The specified index is out of bounds");
221 return getStructField(el);
222}
223
225{
226 assert(el < numberOfFields() && "The specified index is out of bounds");
227 return getStructField(el);
228}
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...
pointer data()
Direct access to the underlying array.
Struct is a particular type of Variable specialized for structs.
Definition Struct.h:18
size_t getFieldIndex(const std::string &field) const
Get the index of the specified field in the struct by performing a linear search.
Definition Struct.cpp:169
bool setName(const std::string &newName)
Change the name of the Struct.
Definition Struct.cpp:131
~Struct()
Destructor.
Definition Struct.cpp:94
std::vector< std::string > fields() const
Get the list of fields.
Definition Struct.cpp:141
bool fromVectorOfVariables(const std::vector< Variable > &elements)
Set from a vector of Variables.
Definition Struct.cpp:111
matioCpp::Variable operator[](index_type el)
Access field at a specific index.
Definition Struct.cpp:218
size_t index_type
Definition Struct.h:33
Struct & operator=(const Struct &other)
Assignement operator (copy) from another Struct.
Definition Struct.cpp:99
bool setField(index_type index, const Variable &newValue)
Set the field at the specified position.
Definition Struct.cpp:176
void clear()
Clear the struct.
Definition Struct.cpp:158
Struct()
The type used for indices.
Definition Struct.cpp:29
bool isFieldExisting(const std::string &field) const
Check if a field is existing It performs a linear search over the output of fields().
Definition Struct.cpp:163
index_type numberOfFields() const
Get the total number of fields in the struct.
Definition Struct.cpp:136
matioCpp::Variable operator()(index_type el)
Access field at a specific index.
Definition Struct.cpp:192
The matioCpp::Variable class is the equivalent of matvar_t in matio.
Definition Variable.h:23
std::string name() const
Get the name of the Variable.
Definition Variable.cpp:498
matioCpp::VariableType variableType() const
Get the VariableType.
Definition Variable.cpp:510
bool initializeVariable(const std::string &name, const VariableType &variableType, const ValueType &valueType, matioCpp::Span< const size_t > dimensions, void *data)
Initialize the variable.
Definition Variable.cpp:16
matioCpp::ValueType valueType() const
Get the ValueType.
Definition Variable.cpp:515
T endl(T... args)
T move(T... args)
VariableType
Define the type of variable.
ValueType
The list of types for an element of a certain variable type.
T size(T... args)