123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- /*
- * json.h - JSON (de)serialize wrappers
- * Copyright (C) 2017 caryoscelus
- *
- * 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 3 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, see <http://www.gnu.org/licenses/>.
- */
- #ifndef __CORE__SERIALIZE__JSON_H__9386BE58
- #define __CORE__SERIALIZE__JSON_H__9386BE58
- #include <ostream>
- #include <boost/algorithm/string/replace.hpp>
- #include "serialize.h"
- namespace rainynite::core {
- namespace serialize {
- template <class V, typename U>
- class DumbJsonWriter : public Writer<V, U> {
- public:
- DumbJsonWriter(std::ostream& stream_) :
- stream(stream_)
- {}
- public:
- void object_start(U id) override {
- element();
- write("{");
- prev_element = false;
- key("UID");
- value_string(V::id_to_string(id));
- }
- void object_end() override {
- write("}");
- prev_element = true;
- }
- void object_value_start() override {
- key("VALUE");
- }
- void object_value_end() override {
- }
- void list_start() override {
- write("[");
- prev_element = false;
- }
- void list_end() override {
- write("]");
- prev_element = true;
- }
- void type(string const& s) override {
- key("TYPE");
- write_string(s);
- element();
- }
- void value_string(string const& s) override {
- element();
- write_string(s);
- }
- void key(string const& s) override {
- element();
- write_string(s);
- write(":");
- prev_element = false;
- }
- void number(double x) override {
- element();
- write(std::to_string(x));
- }
- void reference(U id) override {
- value_string(V::id_to_string(id));
- }
- private:
- void element() {
- if (prev_element)
- write(",\n");
- prev_element = true;
- }
- void write(string const& s) {
- stream << s;
- }
- string escape(string const& s) {
- string r = s;
- boost::replace_all(r, "\\", "\\\\");
- boost::replace_all(r, "\"", "\\\"");
- boost::replace_all(r, "\n", "\\n");
- return r;
- }
- void write_string(string const& s) {
- write("\"");
- write(escape(s));
- write("\"");
- }
- private:
- std::ostream& stream;
- bool prev_element = false;
- };
- } // namespace serialize
- } // namespace rainynite::core
- #endif
|