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
Element.tpp
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#ifndef MATIOCPP_ELEMENT_TPP
9#define MATIOCPP_ELEMENT_TPP
10
11template<typename T>
12bool matioCpp::Element<T>::checkCompatibility(const matvar_t* inputPtr, matioCpp::VariableType variableType, matioCpp::ValueType valueType) const
13{
14
16 {
17 std::cerr << "[matioCpp::Element::checkCompatibility] The variable type is not compatible with an Element." << std::endl;
18 return false;
19 }
20
21 if (inputPtr->isComplex)
22 {
23 std::cerr << "[matioCpp::Element::checkCompatibility] Cannot use a complex variable into a non-complex one." << std::endl;
24 return false;
25 }
26
28 {
31
33
34 std::cerr << "[matioCpp::Element::checkCompatibility] The value type is not convertible to " <<
35 get_type<T>::toString() <<"." << std::endl <<
36 " Input class type: " << classType << std::endl <<
37 " Input data type: " << dataType << std::endl;
38 return false;
39 }
40 return true;
41}
42
43template<typename T>
45{
46 static_assert(!std::is_same<T, std::string>::value, "A string is not handled by matio. Use Vector<char> instead." );
48
49 if (std::is_same<T, char>::value) //If the type is char, use \0 to make sure strlen works well, if used
50 {
51 empty = '\0';
52 }
53 size_t emptyDimensions[] = {1, 1};
54 initializeVariable("unnamed_element",
57 (void*)&empty);
58}
59
60template<typename T>
62{
63 static_assert(!std::is_same<T, std::string>::value, "A string is not handled by matio. Use Vector<char> instead." );
65 size_t emptyDimensions[] = {1, 1};
66 initializeVariable(name,
69 (void*)&empty);
70}
71
72template<typename T>
74{
75 static_assert(!std::is_same<T, std::string>::value, "A string is not handled by matio. Use Vector<char> instead." );
77 size_t emptyDimensions[] = {1, 1};
78 initializeVariable(name,
80 matioCpp::get_type<T>::valueType(), emptyDimensions,
81 (void*)&empty);
82}
83
84template<typename T>
86{
87 fromOther(other);
88}
89
90template<typename T>
95
96template<typename T>
99{
100 if (!handler.get() || !checkCompatibility(handler.get(), handler.variableType(), handler.valueType()))
101 {
102 assert(false);
104 size_t emptyDimensions[] = {1, 1};
105 initializeVariable("unnamed_element",
108 (void*)&empty);
109 }
110}
111
112template<typename T>
117
118template<typename T>
120{
121 fromOther(other);
122 return *this;
123}
124
125template<typename T>
131
132template<typename T>
134{
135 operator()() = value;
136 return *this;
137}
138
139template<typename T>
144
145template<typename T>
150
151template<typename T>
153{
154 return changeName(newName);
155}
156
157template<typename T>
159{
160 return (((typename matioCpp::Element<T>::pointer)(toMatio()->data))[0]);
161}
162
163template<typename T>
165{
166 return (((typename matioCpp::Element<T>::const_pointer)(toMatio()->data))[0]);
167}
168
169template<typename T>
171{
172 return (((typename matioCpp::Element<T>::const_pointer)(toMatio()->data))[0]);
173}
174
175template<typename T>
180
181template<typename T>
183{
184 return matioCpp::Element<T>(*m_handler);
185}
186
187#endif // MATIOCPP_ELEMENT_TPP
Element allows having a 1x1 variable (like double, int,..) castable to a primitive type.
Definition Element.h:20
matioCpp::Span< element_type > toSpan()
Get this Vector as a Span.
Definition Element.tpp:140
typename std::allocator_traits< std::allocator< element_type > >::const_pointer const_pointer
The pointer type.
Definition Element.h:43
reference operator()()
Access the Element.
Definition Element.tpp:158
Element()
The const pointer type.
Definition Element.tpp:44
element_type & reference
Defines the type of the Element.
Definition Element.h:39
bool setName(const std::string &newName)
Change the name of the Variable.
Definition Element.tpp:152
Element< T > & operator=(const Element< T > &other)
Assignement operator (copy) from another Element.
Definition Element.tpp:119
typename std::allocator_traits< std::allocator< element_type > >::pointer pointer
The reference type.
Definition Element.h:41
typename get_type< T >::type element_type
Defines the type specified in the template.
Definition Element.h:35
std::remove_cv_t< element_type > value_type
Defines the type of the Element.
Definition Element.h:37
~Element()
Destructor.
Definition Element.tpp:113
MultiDimensionalArray is a particular type of Variable specialized for multidimensional arrays of a g...
MultiDimensionalArray()
The const pointer type.
The matioCpp::Variable class is the equivalent of matvar_t in matio.
Definition Variable.h:23
matioCpp::VariableType variableType() const
Get the VariableType.
Definition Variable.cpp:510
matioCpp::Element< T > asElement()
Cast the variable as a Element.
Definition Element.tpp:176
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 forward(T... args)
MATIOCPP_CONSTEXPR Span< ElementType > make_span(ElementType *ptr, typename Span< ElementType >::index_type count)
Definition Span.h:714
VariableType
Define the type of variable.
ValueType
The list of types for an element of a certain variable type.
bool get_types_names_from_matvart(const matvar_t *input, std::string &classType, std::string &dataType)
Get the type names from the input pointer.
Utility metafunction to get the ValueType from a given primitive type.