33#include "../mxlib.hpp"
34#include "../mxError.hpp"
108template <
typename dataT>
114 return binVTypes::Bool;
118binVTypeT binVectorTypeCode<signed char>()
120 return binVTypes::SChar;
124binVTypeT binVectorTypeCode<unsigned char>()
126 return binVTypes::UChar;
132 return binVTypes::Char;
138 return binVTypes::WChar;
144 return binVTypes::Char16;
150 return binVTypes::Char32;
156 return binVTypes::Int;
160binVTypeT binVectorTypeCode<unsigned int>()
162 return binVTypes::UInt;
168 return binVTypes::SInt;
172binVTypeT binVectorTypeCode<short unsigned int>()
174 return binVTypes::SUInt;
180 return binVTypes::LInt;
184binVTypeT binVectorTypeCode<long unsigned int>()
186 return binVTypes::LUInt;
190binVTypeT binVectorTypeCode<long long int>()
192 return binVTypes::LLInt;
196binVTypeT binVectorTypeCode<long long unsigned int>()
198 return binVTypes::LLUInt;
204 return binVTypes::Float;
210 return binVTypes::Double;
214binVTypeT binVectorTypeCode<long double>()
216 return binVTypes::LDouble;
220binVTypeT binVectorTypeCode<std::complex<float>>()
222 return binVTypes::CFloat;
226binVTypeT binVectorTypeCode<std::complex<double>>()
228 return binVTypes::CDouble;
240template <
typename dataT>
242 const std::string &fname
250 fin = fopen( fname.c_str(),
"r" );
253 mxPError(
"readBinVector", errno,
"Error from fopen [" + fname +
"]" );
258 nrd = fread( &typecode,
sizeof(
binVTypeT ), 1, fin );
265 mxPError(
"readBinVector", errno,
"Error reading data size [" + fname +
"]" );
270 "readBinVector", MXE_FILERERR,
"Error reading data size, did not read enough bytes. [" + fname +
"]" );
276 if( typecode != binVectorTypeCode<dataT>() )
278 mxError(
"readBinVector", MXE_SIZEERR,
"Mismatch between type dataT and type in file [" + fname +
"]" );
284 nrd = fread( &sz,
sizeof(
binVSizeT ), 1, fin );
291 mxPError(
"readBinVector", errno,
"Error reading vector size [" + fname +
"]" );
296 "readBinVector", MXE_FILERERR,
"Error reading vector size, did not read enough bytes [" + fname +
"]" );
305 nrd = fread( vec.data(),
sizeof( dataT ), sz, fin );
312 mxPError(
"readBinVector", errno,
"Error reading data [" + fname +
"]" );
316 mxError(
"readBinVector", MXE_FILERERR,
"Did not read enough data [" + fname +
"]" );
335template <
typename dataT>
337 std::vector<dataT> &vec
343 binVTypeT typecode = binVectorTypeCode<dataT>();
346 fout = fopen( fname.c_str(),
"wb" );
349 mxPError(
"writeBinVector", errno,
"Error from fopen [" + fname +
"]" );
353 nwr = fwrite( &typecode,
sizeof(
binVTypeT ), 1, fout );
356 mxPError(
"writeBinVector", errno,
"Error writing typecode [" + fname +
"]" );
361 nwr = fwrite( &sz,
sizeof(
binVSizeT ), 1, fout );
364 mxPError(
"writeBinVector", errno,
"Error writing vector size [" + fname +
"]" );
369 nwr = fwrite( vec.data(),
sizeof( dataT ), vec.size(), fout );
372 mxPError(
"writeBinVector", errno,
"Error writing data [" + fname +
"]" );
uint64_t binVSizeT
The type used for binVector sizes.
int writeBinVector(const std::string &fname, std::vector< dataT > &vec)
Write a BinVector file to disk.
binVTypeT binVectorTypeCode()
Get the integer type code corresponding to the type.
uint64_t binVTypeT
The type of binVector type codes.
int readBinVector(std::vector< dataT > &vec, const std::string &fname)
Read a BinVector file from disk.