2016-01-02 14:51:32 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: ./lib/serialisation/BaseIO.h
|
|
|
|
|
|
|
|
Copyright (C) 2015
|
|
|
|
|
|
|
|
Author: Antonin Portelli <antonin.portelli@me.com>
|
|
|
|
Author: Peter Boyle <paboyle@ph.ed.ac.uk>
|
2017-01-25 12:11:58 +00:00
|
|
|
Author: Guido Cossu <guido.cossu@ed.ac.uk>
|
2016-01-02 14:51:32 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
|
|
|
See the full license in the file "LICENSE" in the top level distribution directory
|
|
|
|
*************************************************************************************/
|
|
|
|
/* END LEGAL */
|
2015-08-21 10:06:33 +01:00
|
|
|
#ifndef GRID_SERIALISATION_ABSTRACT_READER_H
|
|
|
|
#define GRID_SERIALISATION_ABSTRACT_READER_H
|
|
|
|
|
2015-11-16 18:14:37 +00:00
|
|
|
#include <type_traits>
|
2018-03-06 19:22:03 +00:00
|
|
|
#include <Grid/tensors/Tensors.h>
|
2018-03-08 19:12:03 +00:00
|
|
|
#include <Grid/serialisation/VectorUtils.h>
|
2015-08-21 10:06:33 +01:00
|
|
|
|
2015-11-16 18:14:37 +00:00
|
|
|
namespace Grid {
|
2017-01-19 00:50:21 +00:00
|
|
|
// Abstract writer/reader classes ////////////////////////////////////////////
|
2015-11-16 18:14:37 +00:00
|
|
|
// static polymorphism implemented using CRTP idiom
|
2016-05-12 11:59:28 +01:00
|
|
|
class Serializable;
|
2015-11-16 18:14:37 +00:00
|
|
|
|
|
|
|
// Static abstract writer
|
|
|
|
template <typename T>
|
|
|
|
class Writer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Writer(void);
|
|
|
|
virtual ~Writer(void) = default;
|
|
|
|
void push(const std::string &s);
|
|
|
|
void pop(void);
|
|
|
|
template <typename U>
|
|
|
|
typename std::enable_if<std::is_base_of<Serializable, U>::value, void>::type
|
|
|
|
write(const std::string& s, const U &output);
|
|
|
|
template <typename U>
|
2016-12-20 11:31:49 +00:00
|
|
|
typename std::enable_if<!std::is_base_of<Serializable, U>::value, void>::type
|
2015-11-16 18:14:37 +00:00
|
|
|
write(const std::string& s, const U &output);
|
2018-03-08 19:12:03 +00:00
|
|
|
template <typename U>
|
|
|
|
void write(const std::string &s, const iScalar<U> &output);
|
|
|
|
template <typename U, int N>
|
|
|
|
void write(const std::string &s, const iVector<U, N> &output);
|
|
|
|
template <typename U, int N>
|
|
|
|
void write(const std::string &s, const iMatrix<U, N> &output);
|
2015-11-16 18:14:37 +00:00
|
|
|
private:
|
|
|
|
T *upcast;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Static abstract reader
|
|
|
|
template <typename T>
|
|
|
|
class Reader
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Reader(void);
|
|
|
|
virtual ~Reader(void) = default;
|
2017-01-20 12:56:20 +00:00
|
|
|
bool push(const std::string &s);
|
2015-11-16 18:14:37 +00:00
|
|
|
void pop(void);
|
|
|
|
template <typename U>
|
|
|
|
typename std::enable_if<std::is_base_of<Serializable, U>::value, void>::type
|
|
|
|
read(const std::string& s, U &output);
|
|
|
|
template <typename U>
|
2016-12-20 11:31:49 +00:00
|
|
|
typename std::enable_if<!std::is_base_of<Serializable, U>::value, void>::type
|
2015-11-16 18:14:37 +00:00
|
|
|
read(const std::string& s, U &output);
|
2018-03-08 19:12:03 +00:00
|
|
|
template <typename U>
|
|
|
|
void read(const std::string &s, iScalar<U> &output);
|
|
|
|
template <typename U, int N>
|
|
|
|
void read(const std::string &s, iVector<U, N> &output);
|
|
|
|
template <typename U, int N>
|
|
|
|
void read(const std::string &s, iMatrix<U, N> &output);
|
2015-11-16 18:14:37 +00:00
|
|
|
protected:
|
|
|
|
template <typename U>
|
|
|
|
void fromString(U &output, const std::string &s);
|
|
|
|
private:
|
|
|
|
T *upcast;
|
|
|
|
};
|
2017-01-16 10:18:09 +00:00
|
|
|
|
2017-01-25 12:11:58 +00:00
|
|
|
// What is the vtype
|
|
|
|
template<typename T> struct isReader {
|
|
|
|
static const bool value = false;
|
|
|
|
};
|
|
|
|
template<typename T> struct isWriter {
|
|
|
|
static const bool value = false;
|
2018-03-08 19:12:03 +00:00
|
|
|
};
|
2017-01-25 12:11:58 +00:00
|
|
|
|
2018-03-08 19:12:03 +00:00
|
|
|
// Writer template implementation
|
|
|
|
template <typename T>
|
|
|
|
Writer<T>::Writer(void)
|
2016-05-12 11:59:28 +01:00
|
|
|
{
|
2018-03-08 19:12:03 +00:00
|
|
|
upcast = static_cast<T *>(this);
|
|
|
|
}
|
2016-05-12 11:59:28 +01:00
|
|
|
|
2018-03-08 19:12:03 +00:00
|
|
|
template <typename T>
|
|
|
|
void Writer<T>::push(const std::string &s)
|
2017-01-19 00:50:21 +00:00
|
|
|
{
|
2018-03-08 19:12:03 +00:00
|
|
|
upcast->push(s);
|
2017-01-19 00:50:21 +00:00
|
|
|
}
|
|
|
|
|
2018-03-08 19:12:03 +00:00
|
|
|
template <typename T>
|
|
|
|
void Writer<T>::pop(void)
|
2017-01-19 00:50:21 +00:00
|
|
|
{
|
2018-03-08 19:12:03 +00:00
|
|
|
upcast->pop();
|
2017-01-19 00:50:21 +00:00
|
|
|
}
|
|
|
|
|
2018-03-08 19:12:03 +00:00
|
|
|
template <typename T>
|
|
|
|
template <typename U>
|
|
|
|
typename std::enable_if<std::is_base_of<Serializable, U>::value, void>::type
|
|
|
|
Writer<T>::write(const std::string &s, const U &output)
|
2017-01-19 00:50:21 +00:00
|
|
|
{
|
2018-03-08 19:12:03 +00:00
|
|
|
U::write(*this, s, output);
|
2017-01-19 00:50:21 +00:00
|
|
|
}
|
|
|
|
|
2018-03-08 19:12:03 +00:00
|
|
|
template <typename T>
|
|
|
|
template <typename U>
|
|
|
|
typename std::enable_if<!std::is_base_of<Serializable, U>::value, void>::type
|
|
|
|
Writer<T>::write(const std::string &s, const U &output)
|
2017-01-19 00:50:21 +00:00
|
|
|
{
|
2018-03-08 19:12:03 +00:00
|
|
|
upcast->writeDefault(s, output);
|
2017-01-19 00:50:21 +00:00
|
|
|
}
|
2018-03-08 19:12:03 +00:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
template <typename U>
|
|
|
|
void Writer<T>::write(const std::string &s, const iScalar<U> &output)
|
2017-01-19 00:50:21 +00:00
|
|
|
{
|
2018-03-08 19:12:03 +00:00
|
|
|
upcast->writeDefault(s, tensorToVec(output));
|
2017-01-19 00:50:21 +00:00
|
|
|
}
|
2018-03-08 19:12:03 +00:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
template <typename U, int N>
|
|
|
|
void Writer<T>::write(const std::string &s, const iVector<U, N> &output)
|
2017-01-19 00:50:21 +00:00
|
|
|
{
|
2018-03-08 19:12:03 +00:00
|
|
|
upcast->writeDefault(s, tensorToVec(output));
|
2017-01-19 00:50:21 +00:00
|
|
|
}
|
2018-03-08 19:12:03 +00:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
template <typename U, int N>
|
|
|
|
void Writer<T>::write(const std::string &s, const iMatrix<U, N> &output)
|
2017-01-19 00:50:21 +00:00
|
|
|
{
|
2018-03-08 19:12:03 +00:00
|
|
|
upcast->writeDefault(s, tensorToVec(output));
|
2017-01-19 00:50:21 +00:00
|
|
|
}
|
|
|
|
|
2018-03-08 19:12:03 +00:00
|
|
|
// Reader template implementation
|
|
|
|
template <typename T>
|
|
|
|
Reader<T>::Reader(void)
|
2017-01-19 00:50:21 +00:00
|
|
|
{
|
2018-03-08 19:12:03 +00:00
|
|
|
upcast = static_cast<T *>(this);
|
2017-01-19 00:50:21 +00:00
|
|
|
}
|
|
|
|
|
2018-03-08 19:12:03 +00:00
|
|
|
template <typename T>
|
|
|
|
bool Reader<T>::push(const std::string &s)
|
2017-01-19 00:50:21 +00:00
|
|
|
{
|
2018-03-08 19:12:03 +00:00
|
|
|
return upcast->push(s);
|
2017-01-19 00:50:21 +00:00
|
|
|
}
|
|
|
|
|
2018-03-08 19:12:03 +00:00
|
|
|
template <typename T>
|
|
|
|
void Reader<T>::pop(void)
|
2017-01-19 00:50:21 +00:00
|
|
|
{
|
2018-03-08 19:12:03 +00:00
|
|
|
upcast->pop();
|
2017-01-19 00:50:21 +00:00
|
|
|
}
|
|
|
|
|
2018-03-08 19:12:03 +00:00
|
|
|
template <typename T>
|
|
|
|
template <typename U>
|
|
|
|
typename std::enable_if<std::is_base_of<Serializable, U>::value, void>::type
|
|
|
|
Reader<T>::read(const std::string &s, U &output)
|
2017-01-19 00:50:21 +00:00
|
|
|
{
|
2018-03-08 19:12:03 +00:00
|
|
|
U::read(*this, s, output);
|
2017-01-19 00:50:21 +00:00
|
|
|
}
|
|
|
|
|
2018-03-08 19:12:03 +00:00
|
|
|
template <typename T>
|
|
|
|
template <typename U>
|
|
|
|
typename std::enable_if<!std::is_base_of<Serializable, U>::value, void>::type
|
|
|
|
Reader<T>::read(const std::string &s, U &output)
|
2017-01-19 00:50:21 +00:00
|
|
|
{
|
2018-03-08 19:12:03 +00:00
|
|
|
upcast->readDefault(s, output);
|
2017-01-19 00:50:21 +00:00
|
|
|
}
|
2018-03-08 19:12:03 +00:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
template <typename U>
|
|
|
|
void Reader<T>::read(const std::string &s, iScalar<U> &output)
|
2017-01-19 00:50:21 +00:00
|
|
|
{
|
2018-03-08 19:12:03 +00:00
|
|
|
typename TensorToVec<iScalar<U>>::type v;
|
|
|
|
|
|
|
|
upcast->readDefault(s, v);
|
|
|
|
vecToTensor(output, v);
|
2017-01-19 00:50:21 +00:00
|
|
|
}
|
2018-03-08 19:12:03 +00:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
template <typename U, int N>
|
|
|
|
void Reader<T>::read(const std::string &s, iVector<U, N> &output)
|
2017-01-19 00:50:21 +00:00
|
|
|
{
|
2018-03-08 19:12:03 +00:00
|
|
|
typename TensorToVec<iVector<U, N>>::type v;
|
|
|
|
|
|
|
|
upcast->readDefault(s, v);
|
|
|
|
vecToTensor(output, v);
|
2017-01-19 00:50:21 +00:00
|
|
|
}
|
|
|
|
|
2018-03-08 19:12:03 +00:00
|
|
|
template <typename T>
|
|
|
|
template <typename U, int N>
|
|
|
|
void Reader<T>::read(const std::string &s, iMatrix<U, N> &output)
|
2017-01-19 00:50:21 +00:00
|
|
|
{
|
2018-03-08 19:12:03 +00:00
|
|
|
typename TensorToVec<iMatrix<U, N>>::type v;
|
|
|
|
|
|
|
|
upcast->readDefault(s, v);
|
|
|
|
vecToTensor(output, v);
|
2017-01-19 00:50:21 +00:00
|
|
|
}
|
2018-03-08 19:12:03 +00:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
template <typename U>
|
|
|
|
void Reader<T>::fromString(U &output, const std::string &s)
|
|
|
|
{
|
|
|
|
std::istringstream is(s);
|
|
|
|
|
|
|
|
is.exceptions(std::ios::failbit);
|
|
|
|
try
|
|
|
|
{
|
|
|
|
is >> std::boolalpha >> output;
|
|
|
|
}
|
2018-03-14 14:54:25 +00:00
|
|
|
catch(std::ios_base::failure &e)
|
2018-03-08 19:12:03 +00:00
|
|
|
{
|
|
|
|
std::cerr << "numerical conversion failure on '" << s << "' ";
|
|
|
|
std::cerr << "(typeid: " << typeid(U).name() << ")" << std::endl;
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// serializable base class ///////////////////////////////////////////////////
|
|
|
|
class Serializable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
template <typename T>
|
|
|
|
static inline void write(Writer<T> &WR,const std::string &s,
|
|
|
|
const Serializable &obj)
|
|
|
|
{}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
static inline void read(Reader<T> &RD,const std::string &s,
|
|
|
|
Serializable &obj)
|
|
|
|
{}
|
|
|
|
|
|
|
|
friend inline std::ostream & operator<<(std::ostream &os,
|
|
|
|
const Serializable &obj)
|
|
|
|
{
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
};
|
2017-01-19 00:50:21 +00:00
|
|
|
|
|
|
|
// Generic writer interface //////////////////////////////////////////////////
|
2015-11-16 18:14:37 +00:00
|
|
|
template <typename T>
|
2017-01-16 10:18:09 +00:00
|
|
|
inline void push(Writer<T> &w, const std::string &s) {
|
2015-11-16 18:14:37 +00:00
|
|
|
w.push(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
inline void push(Writer<T> &w, const char *s)
|
|
|
|
{
|
|
|
|
w.push(std::string(s));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
inline void pop(Writer<T> &w)
|
|
|
|
{
|
|
|
|
w.pop();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename U>
|
|
|
|
inline void write(Writer<T> &w, const std::string& s, const U &output)
|
|
|
|
{
|
|
|
|
w.write(s, output);
|
|
|
|
}
|
|
|
|
|
2018-03-08 19:12:03 +00:00
|
|
|
// Generic reader interface //////////////////////////////////////////////////
|
2015-11-16 18:14:37 +00:00
|
|
|
template <typename T>
|
2017-01-20 12:56:20 +00:00
|
|
|
inline bool push(Reader<T> &r, const std::string &s)
|
2015-11-16 18:14:37 +00:00
|
|
|
{
|
2017-01-20 12:56:20 +00:00
|
|
|
return r.push(s);
|
2015-11-16 18:14:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2017-01-20 12:56:20 +00:00
|
|
|
inline bool push(Reader<T> &r, const char *s)
|
2015-11-16 18:14:37 +00:00
|
|
|
{
|
2017-01-20 12:56:20 +00:00
|
|
|
return r.push(std::string(s));
|
2015-11-16 18:14:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
inline void pop(Reader<T> &r)
|
|
|
|
{
|
|
|
|
r.pop();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename U>
|
|
|
|
inline void read(Reader<T> &r, const std::string &s, U &output)
|
|
|
|
{
|
|
|
|
r.read(s, output);
|
|
|
|
}
|
2015-08-21 10:06:33 +01:00
|
|
|
}
|
2015-11-16 18:14:37 +00:00
|
|
|
|
2015-08-21 10:06:33 +01:00
|
|
|
#endif
|