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
ExogenousConversions.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2022 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#ifndef MATIOCPP_EXOGENOUSCONVERSION_H
8#define MATIOCPP_EXOGENOUSCONVERSION_H
9
12#include <matioCpp/Element.h>
13#include <matioCpp/Struct.h>
14#include <matioCpp/CellArray.h>
15#include <matioCpp/Span.h>
16#include <matioCpp/Vector.h>
18
19#include <visit_struct/visit_struct_intrusive.hpp>
20
22
23namespace matioCpp
24{
25
32template <class Vector, typename = typename std::enable_if_t<is_vector_compatible<Vector>::value &&
35
42matioCpp::String make_variable(const std::string& name, const std::string& input);
43
51
58template<typename type, typename = typename std::enable_if<std::is_fundamental<type>::value && !std::is_same<type, bool>::value>::type>
59inline matioCpp::Element<type> make_variable(const std::string& name, const type& input);
60
68
76
84template<typename Struct, typename = typename std::enable_if_t<visit_struct::traits::is_visitable<Struct>::value>>
85inline matioCpp::Struct make_variable(const std::string& name, const Struct& input);
86
96template<class iterator,
97 typename = typename std::enable_if_t<is_pair_iterator_string<iterator>::value>>
98inline matioCpp::Struct make_struct(const std::string& name, iterator begin, iterator end);
99
109template<class iterator,
110 typename std::enable_if_t<is_pair_iterator_string<iterator>::value>* = nullptr>
111inline matioCpp::CellArray make_cell_array(const std::string& name, const iterator& begin, const iterator& end);
112
122template<class iterator,
123 typename std::enable_if_t<!is_pair<decltype(*std::declval<iterator>())>::value>* = nullptr>
124inline matioCpp::CellArray make_cell_array(const std::string& name, const iterator& begin, const iterator& end);
125
129template <typename Class, typename = void>
132
133template <typename Class>
137
141template <typename Class>
143{
144 using type = typename std::conditional_t<matioCpp::is_make_variable_callable<Class>::value, decltype(matioCpp::make_variable(std::declval<std::string>(), std::declval<Class>())), void>;
145};
146
147}
148
150
151#endif // MATIOCPP_EXOGENOUSCONVERSION_H
CellArray is a particular type of Variable specialized for cell arrays.
Definition CellArray.h:18
MultiDimensionalArray is a particular type of Variable specialized for multidimensional arrays of a g...
Struct is a particular type of Variable specialized for structs.
Definition Struct.h:18
matioCpp::Struct make_struct(const std::string &name, iterator begin, iterator end)
Create a matioCpp::Struct starting from the begin and end iterators of a map-like container The deref...
matioCpp::CellArray make_cell_array(const std::string &name, const iterator &begin, const iterator &end)
Create a matioCpp::CellArray starting from the begin and end iterators of a container.
matioCpp::Vector< typename std::remove_cv_t< typename matioCpp::SpanUtils::container_data< Vector >::type > > make_variable(const std::string &name, const Vector &input)
Conversion from a generic vector to a matioCpp::Vector.
is_make_variable_callable is a template utility to check if the make_variable works for a give type
make_variable_output is a template utility to check the type that make_variable would output.
typename std::conditional_t< matioCpp::is_make_variable_callable< Class >::value, decltype(matioCpp::make_variable(std::declval< std::string >(), std::declval< Class >())), void > type