json.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * json.h - JSON (de)serialize wrappers
  3. * Copyright (C) 2017 caryoscelus
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef __CORE__SERIALIZE__JSON_H__9386BE58
  19. #define __CORE__SERIALIZE__JSON_H__9386BE58
  20. #include <ostream>
  21. #include <boost/algorithm/string/replace.hpp>
  22. #include "serialize.h"
  23. namespace rainynite::core {
  24. namespace serialize {
  25. template <class V, typename U>
  26. class DumbJsonWriter : public Writer<V, U> {
  27. public:
  28. DumbJsonWriter(std::ostream& stream_) :
  29. stream(stream_)
  30. {}
  31. public:
  32. void object_start(U id) override {
  33. element();
  34. write("{");
  35. prev_element = false;
  36. key("UID");
  37. value_string(V::id_to_string(id));
  38. }
  39. void object_end() override {
  40. write("}");
  41. prev_element = true;
  42. }
  43. void object_value_start() override {
  44. key("VALUE");
  45. }
  46. void object_value_end() override {
  47. }
  48. void list_start() override {
  49. write("[");
  50. prev_element = false;
  51. }
  52. void list_end() override {
  53. write("]");
  54. prev_element = true;
  55. }
  56. void type(string const& s) override {
  57. key("TYPE");
  58. write_string(s);
  59. element();
  60. }
  61. void value_string(string const& s) override {
  62. element();
  63. write_string(s);
  64. }
  65. void key(string const& s) override {
  66. element();
  67. write_string(s);
  68. write(":");
  69. prev_element = false;
  70. }
  71. void number(double x) override {
  72. element();
  73. write(std::to_string(x));
  74. }
  75. void reference(U id) override {
  76. value_string(V::id_to_string(id));
  77. }
  78. private:
  79. void element() {
  80. if (prev_element)
  81. write(",\n");
  82. prev_element = true;
  83. }
  84. void write(string const& s) {
  85. stream << s;
  86. }
  87. string escape(string const& s) {
  88. string r = s;
  89. boost::replace_all(r, "\\", "\\\\");
  90. boost::replace_all(r, "\"", "\\\"");
  91. boost::replace_all(r, "\n", "\\n");
  92. return r;
  93. }
  94. void write_string(string const& s) {
  95. write("\"");
  96. write(escape(s));
  97. write("\"");
  98. }
  99. private:
  100. std::ostream& stream;
  101. bool prev_element = false;
  102. };
  103. } // namespace serialize
  104. } // namespace rainynite::core
  105. #endif