8#define _CRT_SECURE_NO_WARNINGS
12#include <matioCpp/Config.h>
61 return "The input variable is not valid.";
68 return std::string(
"The input variable has an empty name.");
73 return std::string(
"The input variable name is too long (maximum 63 char allowed).");
78 return std::string(
"The first character of the variable name has to be a letter (Variable name = " +
inputName +
").");
85 return std::string(
"The variable name can contain only alphanumeric characters or underscores (Variable name = \"" +
inputName +
"\").");
107 operator=(std::forward<matioCpp::File>(
other));
131 std::cerr <<
"[ERROR][matioCpp::File::open] The file " << name <<
" does not exists." <<
std::endl;
145 if (
found != std::string::npos)
153 std::cerr <<
"[ERROR][matioCpp::File::Create] The path "<<
path
154 <<
" does not exists (input file name " << name
160 std::cerr <<
"[ERROR][matioCpp::File::Create] The path "<<
path
161 <<
" is not a directory (input file name " << name
170 std::cerr <<
"[ERROR][matioCpp::File::Create] Cannot use Undefined as input version type." <<
std::endl;
185 fileVer = mat_ft::MAT_FT_MAT73;
202 if (
fileVer == mat_ft::MAT_FT_MAT73)
209 else if (
fileVer == mat_ft::MAT_FT_MAT5)
225 std::cerr <<
"[ERROR][matioCpp::File::Create] Failed to open the file named "<< name <<
"." <<
std::endl;
259#if MATIO_VERSION >= 1515
262 std::cerr <<
"[ERROR][matioCpp::File::header] The file header can be retrieved only with matio >= 1.5.15" <<
std::endl;
276 case mat_ft::MAT_FT_MAT4:
279 case mat_ft::MAT_FT_MAT5:
282 case mat_ft::MAT_FT_MAT73:
292 return m_pimpl->fileMode;
321#if defined(_MSC_VER) && MATIO_VERSION < 1519
324 std::cerr <<
"[ERROR][matioCpp::File::read] Reading to a 7.3 file on Windows with a matio version previous to 1.5.19 causes segfaults. The output will be an invalid Variable." <<
std::endl;
335 std::cerr <<
"[ERROR][matioCpp::File::read] Failed to read variable " << name <<
". The output is not valid." <<
std::endl;
351 std::cerr <<
"[ERROR][matioCpp::File::write] The file cannot be written." <<
std::endl;
356 if (
error.size() != 0)
378 std::cerr <<
"[ERROR][matioCpp::File::write] A MAT4 version does not support arrays with number of dimensions greater than 2." <<
std::endl;
383 std::cerr <<
"[ERROR][matioCpp::File::write] A MAT4 supports only element, vectors or matrices." <<
std::endl;
393 std::cerr <<
"[ERROR][matioCpp::File::write] A MAT4 supports only variables of type LOGICAL, DOUBLE, SINGLE, UINT8, UINT16, INT16 and INT32." <<
std::endl;
402 std::cerr <<
"[ERROR][matioCpp::File::write] Failed to write the variable to the file." <<
std::endl;
411 return m_pimpl->mat_ptr;
void reset(mat_t *newPtr, matioCpp::FileMode mode)
matioCpp::FileMode fileMode
std::string isVariableValid(const matioCpp::Variable &input)
matioCpp::FileVersion version() const
The MAT file version.
void close()
Close the file.
static bool Exists(const std::string &name)
Check if file exists and can be opened.
matioCpp::FileMode mode() const
The mode with which the file has been opened.
bool isOpen() const
Check if the file is open.
void operator=(const File &other)=delete
Deleted copy assignment, to avoid confusion on whether the content has been copied or not.
bool open(const std::string &name, matioCpp::FileMode mode=matioCpp::FileMode::ReadAndWrite)
Open the specified file.
std::string header() const
The file header.
std::vector< std::string > variableNames() const
Get the list of variables in the file.
File()
Default Constructor.
static bool Delete(const std::string &name)
Delete the specified file.
std::string name() const
The file name.
matioCpp::Variable read(const std::string &name) const
Read a variable given the name.
static File Create(const std::string &name, matioCpp::FileVersion version=matioCpp::FileVersion::Default, const std::string &header="")
Create a new file (static)
bool write(const Variable &variable, matioCpp::Compression compression=matioCpp::Compression::None)
Write a Variable to a file.
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.
static SharedMatvar GetMatvarShallowDuplicate(const matvar_t *inputPtr)
Get the shallow duplicate of an input Matvar.
The matioCpp::Variable class is the equivalent of matvar_t in matio.
std::string name() const
Get the name of the Variable.
const matvar_t * toMatio() const
Convert this Variable to a 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.
matioCpp::ValueType valueType() const
Get the ValueType.
T find_last_of(T... args)
FileVersion
The supported file versions.
@ MAT4
This is one of the following three depending on the matio installation.
@ MAT5
Matlab version 4 file
@ MAT7_3
Matlab version 5 file
@ Undefined
Matlab version 7.3 file
FileMode
The available modes with which a file can be opened.
ValueType
The list of types for an element of a certain variable type.
Compression
Compression type when writing to a file.