QxSerializeQJson_std_map.h 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. /****************************************************************************
  2. **
  3. ** https://www.qxorm.com/
  4. ** Copyright (C) 2013 Lionel Marty (contact@qxorm.com)
  5. **
  6. ** This file is part of the QxOrm library
  7. **
  8. ** This software is provided 'as-is', without any express or implied
  9. ** warranty. In no event will the authors be held liable for any
  10. ** damages arising from the use of this software
  11. **
  12. ** Commercial Usage
  13. ** Licensees holding valid commercial QxOrm licenses may use this file in
  14. ** accordance with the commercial license agreement provided with the
  15. ** Software or, alternatively, in accordance with the terms contained in
  16. ** a written agreement between you and Lionel Marty
  17. **
  18. ** GNU General Public License Usage
  19. ** Alternatively, this file may be used under the terms of the GNU
  20. ** General Public License version 3.0 as published by the Free Software
  21. ** Foundation and appearing in the file 'license.gpl3.txt' included in the
  22. ** packaging of this file. Please review the following information to
  23. ** ensure the GNU General Public License version 3.0 requirements will be
  24. ** met : http://www.gnu.org/copyleft/gpl.html
  25. **
  26. ** If you are unsure which license is appropriate for your use, or
  27. ** if you have questions regarding the use of this file, please contact :
  28. ** contact@qxorm.com
  29. **
  30. ****************************************************************************/
  31. #ifndef _QX_NO_JSON
  32. #ifndef _QX_SERIALIZE_QJSON_STD_MAP_H_
  33. #define _QX_SERIALIZE_QJSON_STD_MAP_H_
  34. #ifdef _MSC_VER
  35. #pragma once
  36. #endif
  37. /*!
  38. * \file QxSerializeQJson_std_map.h
  39. * \author Lionel Marty
  40. * \ingroup QxSerialize
  41. * \brief Provide a Qt QJson serialization method (save/load) for type std::map<Key, Value>
  42. */
  43. #include <QtCore/qjsonvalue.h>
  44. #include <QtCore/qjsonobject.h>
  45. #include <QtCore/qjsonarray.h>
  46. #include <map>
  47. #include <QxConvert/QxConvert.h>
  48. #include <QxConvert/QxConvert_Impl.h>
  49. namespace qx {
  50. namespace cvt {
  51. namespace detail {
  52. template <typename Key, typename Value>
  53. struct QxConvert_ToJson< std::map<Key, Value> >
  54. {
  55. static inline QJsonValue toJson(const std::map<Key, Value> & t, const QString & format)
  56. {
  57. typedef typename std::map<Key, Value>::const_iterator type_itr;
  58. QJsonArray arr; QJsonValue val;
  59. for (type_itr itr = t.begin(); itr != t.end(); ++itr)
  60. {
  61. QJsonObject obj;
  62. val = qx::cvt::to_json(itr->first, format); obj.insert("key", val);
  63. val = qx::cvt::to_json(itr->second, format); obj.insert("value", val);
  64. arr.append(obj);
  65. }
  66. return QJsonValue(arr);
  67. }
  68. };
  69. template <typename Key, typename Value>
  70. struct QxConvert_FromJson< std::map<Key, Value> >
  71. {
  72. static inline qx_bool fromJson(const QJsonValue & j, std::map<Key, Value> & t, const QString & format)
  73. {
  74. t.clear();
  75. if (! j.isArray()) { return qx_bool(true); }
  76. QJsonArray arr = j.toArray(); QJsonValue val; QJsonObject obj;
  77. for (int i = 0; i < arr.count(); i++)
  78. {
  79. val = arr.at(i); if (! val.isObject()) { continue; }
  80. obj = val.toObject(); Key key; Value value;
  81. qx::cvt::from_json(obj.value("key"), key, format);
  82. qx::cvt::from_json(obj.value("value"), value, format);
  83. t.insert(std::make_pair(key, value));
  84. }
  85. return qx_bool(true);
  86. }
  87. };
  88. template <typename Value>
  89. struct QxConvert_ToJson< std::map<QString, Value> >
  90. {
  91. static inline QJsonValue toJson(const std::map<QString, Value> & t, const QString & format)
  92. {
  93. typedef typename std::map<QString, Value>::const_iterator type_itr;
  94. QJsonObject obj; QJsonValue val;
  95. for (type_itr itr = t.begin(); itr != t.end(); ++itr)
  96. {
  97. val = qx::cvt::to_json(itr->second, format);
  98. obj.insert(itr->first, val);
  99. }
  100. return QJsonValue(obj);
  101. }
  102. };
  103. template <typename Value>
  104. struct QxConvert_FromJson< std::map<QString, Value> >
  105. {
  106. static inline qx_bool fromJson(const QJsonValue & j, std::map<QString, Value> & t, const QString & format)
  107. {
  108. t.clear();
  109. if (! j.isObject()) { return qx_bool(true); }
  110. QJsonObject obj = j.toObject(); QJsonValue val;
  111. for (QJsonObject::const_iterator itr = obj.constBegin(); itr != obj.constEnd(); ++itr)
  112. {
  113. QString key = itr.key(); Value value;
  114. qx::cvt::from_json(itr.value(), value, format);
  115. t.insert(std::make_pair(key, value));
  116. }
  117. return qx_bool(true);
  118. }
  119. };
  120. template <typename Value>
  121. struct QxConvert_ToJson< std::map<std::string, Value> >
  122. {
  123. static inline QJsonValue toJson(const std::map<std::string, Value> & t, const QString & format)
  124. {
  125. typedef typename std::map<std::string, Value>::const_iterator type_itr;
  126. QJsonObject obj; QJsonValue val;
  127. for (type_itr itr = t.begin(); itr != t.end(); ++itr)
  128. {
  129. #ifndef QT_NO_STL
  130. QString key = QString::fromStdString(itr->first);
  131. #else // QT_NO_STL
  132. std::string s = itr->first;
  133. QString key = QString::fromLatin1(s.data(), int(s.size()));
  134. #endif // QT_NO_STL
  135. val = qx::cvt::to_json(itr->second, format);
  136. obj.insert(key, val);
  137. }
  138. return QJsonValue(obj);
  139. }
  140. };
  141. template <typename Value>
  142. struct QxConvert_FromJson< std::map<std::string, Value> >
  143. {
  144. static inline qx_bool fromJson(const QJsonValue & j, std::map<std::string, Value> & t, const QString & format)
  145. {
  146. t.clear();
  147. if (! j.isObject()) { return qx_bool(true); }
  148. QJsonObject obj = j.toObject(); QJsonValue val;
  149. for (QJsonObject::const_iterator itr = obj.constBegin(); itr != obj.constEnd(); ++itr)
  150. {
  151. QString key = itr.key(); Value value;
  152. qx::cvt::from_json(itr.value(), value, format);
  153. #ifndef QT_NO_STL
  154. std::string s = key.toStdString();
  155. #else // QT_NO_STL
  156. std::string s = key.toLatin1().constData();
  157. #endif // QT_NO_STL
  158. t.insert(std::make_pair(s, value));
  159. }
  160. return qx_bool(true);
  161. }
  162. };
  163. #if ((! defined(QT_NO_STL)) && (! defined(QT_NO_STL_WCHAR)))
  164. template <typename Value>
  165. struct QxConvert_ToJson< std::map<std::wstring, Value> >
  166. {
  167. static inline QJsonValue toJson(const std::map<std::wstring, Value> & t, const QString & format)
  168. {
  169. typedef typename std::map<std::wstring, Value>::const_iterator type_itr;
  170. QJsonObject obj; QJsonValue val;
  171. for (type_itr itr = t.begin(); itr != t.end(); ++itr)
  172. {
  173. val = qx::cvt::to_json(itr->second, format);
  174. obj.insert(QString::fromStdWString(itr->first), val);
  175. }
  176. return QJsonValue(obj);
  177. }
  178. };
  179. template <typename Value>
  180. struct QxConvert_FromJson< std::map<std::wstring, Value> >
  181. {
  182. static inline qx_bool fromJson(const QJsonValue & j, std::map<std::wstring, Value> & t, const QString & format)
  183. {
  184. t.clear();
  185. if (! j.isObject()) { return qx_bool(true); }
  186. QJsonObject obj = j.toObject(); QJsonValue val;
  187. for (QJsonObject::const_iterator itr = obj.constBegin(); itr != obj.constEnd(); ++itr)
  188. {
  189. QString key = itr.key(); Value value;
  190. qx::cvt::from_json(itr.value(), value, format);
  191. t.insert(std::make_pair(key.toStdWString(), value));
  192. }
  193. return qx_bool(true);
  194. }
  195. };
  196. #endif // ((! defined(QT_NO_STL)) && (! defined(QT_NO_STL_WCHAR)))
  197. } // namespace detail
  198. } // namespace cvt
  199. } // namespace qx
  200. #endif // _QX_SERIALIZE_QJSON_STD_MAP_H_
  201. #endif // _QX_NO_JSON