1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-25 13:15:55 +01:00

Merge branch 'feature/json-fix' into develop

This commit is contained in:
Guido Cossu 2017-09-08 16:02:08 +01:00
commit bbaf1ada91
5 changed files with 9458 additions and 6927 deletions

File diff suppressed because it is too large Load Diff

View File

@ -86,7 +86,7 @@ namespace Grid {
or element<T>::is_number; or element<T>::is_number;
}; };
// Vector flatening utility class //////////////////////////////////////////// // Vector flattening utility class ////////////////////////////////////////////
// Class to flatten a multidimensional std::vector // Class to flatten a multidimensional std::vector
template <typename V> template <typename V>
class Flatten class Flatten

View File

@ -42,6 +42,7 @@ JSONWriter::~JSONWriter(void)
// write prettified JSON to file // write prettified JSON to file
std::ofstream os(fileName_); std::ofstream os(fileName_);
//std::cout << "JSONWriter::~JSONWriter" << std::endl;
os << std::setw(2) << json::parse(ss_.str()) << std::endl; os << std::setw(2) << json::parse(ss_.str()) << std::endl;
} }
@ -56,6 +57,7 @@ void JSONWriter::push(const string &s)
void JSONWriter::pop(void) void JSONWriter::pop(void)
{ {
//std::cout << "JSONWriter::pop" << std::endl;
delete_comma(); delete_comma();
ss_ << "},"; ss_ << "},";
} }
@ -67,20 +69,22 @@ void JSONWriter::delete_comma()
ss_.str(dlast); ss_.str(dlast);
} }
// here we are hitting a g++ bug (Bug 56480) // here we are hitting a g++ bug (Bug 56480)
// compiles fine with clang // compiles fine with clang
// have to wrap in the Grid namespace // have to wrap in the Grid namespace
// annoying, but necessary for TravisCI // annoying, but necessary for TravisCI
namespace Grid namespace Grid
{ {
template<> void JSONWriter::writeDefault(const std::string &s, const std::string &x)
void JSONWriter::writeDefault(const std::string &s,
const std::string &x)
{ {
//std::cout << "JSONWriter::writeDefault(string) : " << s << std::endl;
std::ostringstream os;
os << std::boolalpha << x;
if (s.size()) if (s.size())
ss_ << "\""<< s << "\" : \"" << x << "\" ," ; ss_ << "\""<< s << "\" : \"" << os.str() << "\" ," ;
else else
ss_ << "\"" << x << "\" ," ; ss_ << os.str() << " ," ;
} }
}// namespace Grid }// namespace Grid
@ -138,6 +142,7 @@ void JSONReader::pop(void)
bool JSONReader::nextElement(const std::string &s) bool JSONReader::nextElement(const std::string &s)
{ {
// Work in progress
// JSON dictionaries do not support multiple names // JSON dictionaries do not support multiple names
// Same name objects must be packed in vectors // Same name objects must be packed in vectors
++it_; ++it_;

View File

@ -58,10 +58,15 @@ namespace Grid
void writeDefault(const std::string &s, const std::complex<U> &x); void writeDefault(const std::string &s, const std::complex<U> &x);
template <typename U> template <typename U>
void writeDefault(const std::string &s, const std::vector<U> &x); void writeDefault(const std::string &s, const std::vector<U> &x);
template <typename U, typename P>
void writeDefault(const std::string &s, const std::pair<U,P> &x);
template<std::size_t N> template<std::size_t N>
void writeDefault(const std::string &s, const char(&x)[N]); void writeDefault(const std::string &s, const char(&x)[N]);
void writeDefault(const std::string &s, const std::string &x);
private: private:
void delete_comma(); void delete_comma();
std::string fileName_; std::string fileName_;
@ -82,6 +87,8 @@ namespace Grid
void readDefault(const std::string &s, std::complex<U> &output); void readDefault(const std::string &s, std::complex<U> &output);
template <typename U> template <typename U>
void readDefault(const std::string &s, std::vector<U> &output); void readDefault(const std::string &s, std::vector<U> &output);
template <typename U, typename P>
void readDefault(const std::string &s, std::pair<U,P> &output);
private: private:
json jobject_; // main object json jobject_; // main object
json jcur_; // current json object json jcur_; // current json object
@ -106,7 +113,7 @@ namespace Grid
template <typename U> template <typename U>
void JSONWriter::writeDefault(const std::string &s, const U &x) void JSONWriter::writeDefault(const std::string &s, const U &x)
{ {
//std::cout << "JSONReader::writeDefault(U) : " << s << std::endl; //std::cout << "JSONWriter::writeDefault(U) : " << s << " " << x <<std::endl;
std::ostringstream os; std::ostringstream os;
os << std::boolalpha << x; os << std::boolalpha << x;
if (s.size()) if (s.size())
@ -118,7 +125,7 @@ namespace Grid
template <typename U> template <typename U>
void JSONWriter::writeDefault(const std::string &s, const std::complex<U> &x) void JSONWriter::writeDefault(const std::string &s, const std::complex<U> &x)
{ {
//std::cout << "JSONReader::writeDefault(complex) : " << s << std::endl; //std::cout << "JSONWriter::writeDefault(complex) : " << s << " " << x << std::endl;
std::ostringstream os; std::ostringstream os;
os << "["<< std::boolalpha << x.real() << ", " << x.imag() << "]"; os << "["<< std::boolalpha << x.real() << ", " << x.imag() << "]";
if (s.size()) if (s.size())
@ -127,10 +134,22 @@ namespace Grid
ss_ << os.str() << " ," ; ss_ << os.str() << " ," ;
} }
template <typename U, typename P>
void JSONWriter::writeDefault(const std::string &s, const std::pair<U,P> &x)
{
//std::cout << "JSONWriter::writeDefault(pair) : " << s << " " << x << std::endl;
std::ostringstream os;
os << "["<< std::boolalpha << "\""<< x.first << "\" , \"" << x.second << "\" ]";
if (s.size())
ss_ << "\""<< s << "\" : " << os.str() << " ," ;
else
ss_ << os.str() << " ," ;
}
template <typename U> template <typename U>
void JSONWriter::writeDefault(const std::string &s, const std::vector<U> &x) void JSONWriter::writeDefault(const std::string &s, const std::vector<U> &x)
{ {
//std::cout << "JSONReader::writeDefault(vec U) : " << s << std::endl; //std::cout << "JSONWriter::writeDefault(vec U) : " << s << std::endl;
if (s.size()) if (s.size())
ss_ << " \""<<s<<"\" : ["; ss_ << " \""<<s<<"\" : [";
@ -146,12 +165,12 @@ namespace Grid
template<std::size_t N> template<std::size_t N>
void JSONWriter::writeDefault(const std::string &s, const char(&x)[N]){ void JSONWriter::writeDefault(const std::string &s, const char(&x)[N]){
//std::cout << "JSONReader::writeDefault(char U) : " << s << std::endl; //std::cout << "JSONWriter::writeDefault(char U) : " << s << " " << x << std::endl;
if (s.size()) if (s.size())
ss_ << "\""<< s << "\" : \"" << x << "\" ," ; ss_ << "\""<< s << "\" : \"" << x << "\" ," ;
else else
ss_ << "\"" << x << "\" ," ; ss_ << "\"" << x << "\" ," ;
} }
// Reader template implementation //////////////////////////////////////////// // Reader template implementation ////////////////////////////////////////////
@ -173,11 +192,35 @@ namespace Grid
} }
// Reader template implementation ////////////////////////////////////////////
template <typename U, typename P>
void JSONReader::readDefault(const std::string &s, std::pair<U,P> &output)
{
U first;
P second;
json j;
if (s.size()){
//std::cout << "JSONReader::readDefault(pair) : " << s << " | "<< jcur_[s] << std::endl;
j = jcur_[s];
} else {
j = jcur_;
}
json::iterator it = j.begin();
jcur_ = *it;
read("", first);
it++;
jcur_ = *it;
read("", second);
output = std::pair<U,P>(first,second);
}
template <typename U> template <typename U>
void JSONReader::readDefault(const std::string &s, std::complex<U> &output) void JSONReader::readDefault(const std::string &s, std::complex<U> &output)
{ {
U tmp1, tmp2; U tmp1, tmp2;
//std::cout << "JSONReader::readDefault( complex U) : " << s << " : "<< jcur_ << std::endl; //std::cout << "JSONReader::readDefault(complex U) : " << s << " : "<< jcur_ << std::endl;
json j = jcur_; json j = jcur_;
json::iterator it = j.begin(); json::iterator it = j.begin();
jcur_ = *it; jcur_ = *it;

View File

@ -29,7 +29,6 @@ Author: Peter Boyle <paboyle@ph.ed.ac.uk>
/* END LEGAL */ /* END LEGAL */
#include <Grid/Grid.h> #include <Grid/Grid.h>
using namespace Grid; using namespace Grid;
using namespace Grid::QCD; using namespace Grid::QCD;
@ -151,6 +150,11 @@ int main(int argc,char **argv)
ioTest<TextWriter, TextReader>("iotest.dat", obj, "text (object) "); ioTest<TextWriter, TextReader>("iotest.dat", obj, "text (object) ");
ioTest<TextWriter, TextReader>("iotest.dat", vec, "text (vector of objects)"); ioTest<TextWriter, TextReader>("iotest.dat", vec, "text (vector of objects)");
ioTest<TextWriter, TextReader>("iotest.dat", pair, "text (pair of objects)"); ioTest<TextWriter, TextReader>("iotest.dat", pair, "text (pair of objects)");
//// text
ioTest<JSONWriter, JSONReader>("iotest.json", obj, "JSON (object) ");
ioTest<JSONWriter, JSONReader>("iotest.json", vec, "JSON (vector of objects)");
ioTest<JSONWriter, JSONReader>("iotest.json", pair, "JSON (pair of objects)");
//// HDF5 //// HDF5
#undef HAVE_HDF5 #undef HAVE_HDF5
#ifdef HAVE_HDF5 #ifdef HAVE_HDF5
@ -201,8 +205,10 @@ int main(int argc,char **argv)
JSONWriter JW("bother.json"); JSONWriter JW("bother.json");
// test basic type writing // test basic type writing
myenum a = myenum::red;
push(JW,"BasicTypes"); push(JW,"BasicTypes");
write(JW,std::string("i16"),i16); write(JW,std::string("i16"),i16);
write(JW,"myenum",a);
write(JW,"u16",u16); write(JW,"u16",u16);
write(JW,"i32",i32); write(JW,"i32",i32);
write(JW,"u32",u32); write(JW,"u32",u32);
@ -213,13 +219,14 @@ int main(int argc,char **argv)
write(JW,"b",b); write(JW,"b",b);
pop(JW); pop(JW);
// test serializable class writing // test serializable class writing
myclass obj(1234); // non-trivial constructor myclass obj(1234); // non-trivial constructor
std::cout << obj << std::endl;
std::cout << "-- serialisable class writing to 'bother.json'..." << std::endl; std::cout << "-- serialisable class writing to 'bother.json'..." << std::endl;
write(JW,"obj",obj); write(JW,"obj",obj);
JW.write("obj2", obj); JW.write("obj2", obj);
std::cout << obj << std::endl;
std::vector<myclass> vec; std::vector<myclass> vec;
vec.push_back(myclass(1234)); vec.push_back(myclass(1234));
@ -229,6 +236,7 @@ int main(int argc,char **argv)
} }
{ {
JSONReader RD("bother.json"); JSONReader RD("bother.json");
myclass jcopy1; myclass jcopy1;
@ -239,6 +247,7 @@ int main(int argc,char **argv)
std::cout << jcopy1 << std::endl << jveccopy1 << std::endl; std::cout << jcopy1 << std::endl << jveccopy1 << std::endl;
} }
/* /*
// This is still work in progress // This is still work in progress
{ {