From 1d8a75f050f54ccb837ac13530d53c03fca38798 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 17 Apr 2021 23:59:42 +0100 Subject: Move json persistance into lib --- lib/jsonParse-persistance.cpp | 81 ++++++++++++++++++++++++++++++++++++++++ lib/jsonParse-persistance.h | 45 ++++++++++++++++++++++ lib/persistance.h | 3 ++ test/test-persistance.cpp | 87 +------------------------------------------ 4 files changed, 131 insertions(+), 85 deletions(-) create mode 100644 lib/jsonParse-persistance.cpp create mode 100644 lib/jsonParse-persistance.h diff --git a/lib/jsonParse-persistance.cpp b/lib/jsonParse-persistance.cpp new file mode 100644 index 0000000..89887da --- /dev/null +++ b/lib/jsonParse-persistance.cpp @@ -0,0 +1,81 @@ +#include "jsonParse-persistance.h" + +namespace Persistanace { + JsonParsePersistance::JsonParsePersistance(std::istream & in) : json::jsonParser {&in} { } + + void + JsonParsePersistance::loadState() + { + yy_push_state(0); + yylex(); + } + + void + JsonParsePersistance::BeginObject() + { + stk.push(current()->BeginObject()); + } + + void + JsonParsePersistance::BeginArray() + { + current()->BeginArray(stk); + } + + void + JsonParsePersistance::PushBoolean(bool value) + { + PushValue(value); + } + + void + JsonParsePersistance::PushNumber(float value) + { + PushValue(value); + } + + void + JsonParsePersistance::PushNull() + { + PushValue(nullptr); + } + + void + JsonParsePersistance::PushText(std::string && value) + { + PushValue(value); + } + + void + JsonParsePersistance::PushKey(std::string && k) + { + stk.push(current()->select(k)); + } + + void + JsonParsePersistance::EndArray() + { + stk.pop(); + } + + void + JsonParsePersistance::EndObject() + { + stk.pop(); + } + + template + inline void + JsonParsePersistance::PushValue(T && value) + { + current()->beforeValue(stk); + (*current())(value); + stk.pop(); + } + + inline SelectionPtr & + JsonParsePersistance::current() + { + return stk.top(); + } +} diff --git a/lib/jsonParse-persistance.h b/lib/jsonParse-persistance.h new file mode 100644 index 0000000..d5c76ed --- /dev/null +++ b/lib/jsonParse-persistance.h @@ -0,0 +1,45 @@ +#ifndef JSONPARSE_PERSISTANCE +#define JSONPARSE_PERSISTANCE + +#include "jsonParse.h" // IWYU pragma: export +#include "persistance.h" // IWYU pragma: export +#include +#include +#include +#include + +namespace Persistanace { + class JsonParsePersistance : public json::jsonParser { + public: + explicit JsonParsePersistance(std::istream & in); + + template + void + loadState(T & t) + { + stk.push(std::make_unique>(std::ref(t))); + loadState(); + } + + protected: + void loadState(); + + void BeginObject() override; + void BeginArray() override; + void PushBoolean(bool value) override; + void PushNumber(float value) override; + void PushNull() override; + void PushText(std::string && value) override; + void PushKey(std::string && k) override; + void EndArray() override; + void EndObject() override; + + private: + Stack stk; + + template inline void PushValue(T && value); + inline SelectionPtr & current(); + }; +} + +#endif diff --git a/lib/persistance.h b/lib/persistance.h index 75222e0..92366f2 100644 --- a/lib/persistance.h +++ b/lib/persistance.h @@ -198,4 +198,7 @@ namespace Persistanace { }; } +#define STORE_TYPE store.persistType(typeid(*this)) +#define STORE_MEMBER(mbr) store.persistValue(#mbr, mbr) + #endif diff --git a/test/test-persistance.cpp b/test/test-persistance.cpp index b6bde3f..101c2d2 100644 --- a/test/test-persistance.cpp +++ b/test/test-persistance.cpp @@ -2,96 +2,13 @@ #include -#include #include #include -#include +#include #include -#include #include #include -struct TestObject; - -namespace Persistanace { - struct JsonLoadPersistanceStore : public json::jsonParser { - explicit JsonLoadPersistanceStore(std::istream & in) : json::jsonParser {&in} { } - - Stack stk; - - inline SelectionPtr & - current() - { - return stk.top(); - } - - template - void - loadState(std::unique_ptr & t) - { - stk.push(std::make_unique>>(std::ref(t))); - yy_push_state(0); - yylex(); - } - void - BeginObject() override - { - stk.push(current()->BeginObject()); - } - void - BeginArray() override - { - current()->BeginArray(stk); - } - template - inline void - PushValue(T && value) - { - current()->beforeValue(stk); - (*current())(value); - stk.pop(); - } - void - PushBoolean(bool value) override - { - PushValue(value); - } - void - PushNumber(float value) override - { - PushValue(value); - } - void - PushNull() override - { - PushValue(nullptr); - } - void - PushText(std::string && value) override - { - PushValue(value); - } - void - PushKey(std::string && k) override - { - stk.push(current()->select(k)); - } - void - EndArray() override - { - stk.pop(); - } - void - EndObject() override - { - stk.pop(); - } - }; -} - -#define STORE_TYPE store.persistType(typeid(*this)) -#define STORE_MEMBER(mbr) store.persistValue(#mbr, mbr) - struct TestObject : public Persistanace::Persistable { TestObject() = default; @@ -132,7 +49,7 @@ BOOST_AUTO_TEST_CASE(load_object) { Persistanace::Persistable::addFactory("TestObject", std::make_unique); std::stringstream ss {input}; - Persistanace::JsonLoadPersistanceStore jlps {ss}; + Persistanace::JsonParsePersistance jlps {ss}; std::unique_ptr to; jlps.loadState(to); -- cgit v1.2.3