jsonBuilder.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. /**
  2. * @brief
  3. json构造器类
  4. * @version
  5. V 1.0.0
  6. * @author
  7. * @date
  8. 创建时间: 2018-08-17\n
  9. * @note
  10. 2018-08-17 创建类。\n
  11. * @warning
  12. * @bug
  13. */
  14. #ifndef _JSONBUILDER_H_
  15. #define _JSONBUILDER_H_
  16. #include <map>
  17. #include <rapidjson/document.h>
  18. #include "jsonCommon.h"
  19. #include "ws_common.h"
  20. namespace sys
  21. {
  22. class jsonBuilder
  23. {
  24. private:
  25. /**
  26. * @brief
  27. 加上版本信息函数。
  28. * @param [out] rapidjson::Value& root 根jason对象\n
  29. * @param [out] rapidjson::Document::AllocatorType& Allocator 分配器\n
  30. * @return 无\n
  31. * @note
  32. * @warning
  33. * @bug
  34. */
  35. void __AddVersion( rapidjson::Value& root, rapidjson::Document::AllocatorType& Allocator );
  36. /**
  37. * @brief
  38. 设置命令信息函数。
  39. * @param [in] const char* szCmd 命令\n
  40. * @param [out] rapidjson::Value& root 根jason对象\n
  41. * @param [out] rapidjson::Document::AllocatorType& Allocator 分配器\n
  42. * @return 无\n
  43. * @note
  44. * @warning
  45. * @bug
  46. */
  47. void __SetCmd( const char* szCmd, rapidjson::Value& root, rapidjson::Document::AllocatorType& Allocator );
  48. /**
  49. * @brief
  50. 构造卡明细函数。
  51. * @param [in] const _CARD_POS_& CardPos 卡位置\n
  52. * @param [out] rapidjson::Document::AllocatorType& Allocator 分配器\n
  53. * @param [out] rapidjson::Value& DetailItem 生成的单个人卡明细\n
  54. * @return 构造是否成功\n
  55. * @note
  56. * @warning
  57. * @bug
  58. */
  59. bool __BuildDetail( const _CARD_POS_& CardPos, rapidjson::Document::AllocatorType& Allocator, rapidjson::Value& DetailItem );
  60. /**
  61. * @brief
  62. 构造部门列表json对象函数。
  63. * @param [in] const std::map<int, _STAT_DEPT_ITEM_>& dept_map 部门统计列表\n
  64. * @param [out] rapidjson::Document::AllocatorType& Allocator 分配器\n
  65. * @param [out] rapidjson::Value& Dept 生成的部门json对象\n
  66. * @return 构造是否成功\n
  67. * @note
  68. * @warning
  69. * @bug
  70. */
  71. bool __BuildDept( const std::map<int, _STAT_DEPT_ITEM_>& dept_map, rapidjson::Document::AllocatorType& Allocator, rapidjson::Value& Dept );
  72. /**
  73. * @brief
  74. 构造部门项json对象函数。
  75. * @param [in] const _STAT_DEPT_ITEM_& st_dept_item 部门项\n
  76. * @param [out] rapidjson::Document::AllocatorType& Allocator 分配器\n
  77. * @param [out] rapidjson::Value& DeptItem 生成的部门项json对象\n
  78. * @return 无\n
  79. * @note
  80. * @warning
  81. * @bug
  82. */
  83. void __BuildDeptItem( const _STAT_DEPT_ITEM_& st_dept_item, rapidjson::Document::AllocatorType& Allocator, rapidjson::Value& DeptItem );
  84. /**
  85. * @brief
  86. 构造基础卡项json对象函数。
  87. * @param [in] const _BASE_CARD_& Card 基础卡对象\n
  88. * @param [out] rapidjson::Document::AllocatorType& Allocator 分配器\n
  89. * @param [out] rapidjson::Value& CardItem 生成的卡json对象\n
  90. * @return 无\n
  91. * @note
  92. * @warning
  93. * @bug
  94. */
  95. void __BuildBaseCardItem( const _BASE_CARD_& Card, rapidjson::Document::AllocatorType& Allocator, rapidjson::Value& CardItem );
  96. /**
  97. * @brief
  98. 生成Dept Map函数。
  99. * @param [in] const _CARD_POS_& CardPos 卡定位数据\n
  100. * @param [out] std::map<int, _STAT_DEPT_ITEM_>& DeptMap 生成的Dept Map\n
  101. * @return 无\n
  102. * @note
  103. * @warning
  104. * @bug
  105. */
  106. void __CreateDeptMap( const _CARD_POS_& CardPos, std::map<int, _STAT_DEPT_ITEM_>& DeptMap );
  107. /**
  108. * @brief
  109. 生成_STAT_DEPT_ITEM_结构体函数。
  110. * @param [in] const _CARD_POS_& CardPos 卡定位数据\n
  111. * @param [out] _STAT_DEPT_ITEM_& DeptItem 生成的DeptItem\n
  112. * @return 无\n
  113. * @note
  114. * @warning
  115. * @bug
  116. */
  117. void __CreateDeptItem( const _CARD_POS_& CardPos, _STAT_DEPT_ITEM_& DeptItem );
  118. /**
  119. * @brief
  120. 构造id sum map对象函数。
  121. * @param [in] const std::map<int,int>& id_sum_map id sum 列表\n
  122. * @param [in] const char* szName 名称\n
  123. * @param [out] rapidjson::Document::AllocatorType& Allocator 分配器\n
  124. * @param [out] rapidjson::Value& Dept 生成的部门json对象\n
  125. * @return 无\n
  126. * @note
  127. * @warning
  128. * @bug
  129. */
  130. void __BuildIDSumMap( const std::map<int,int>& id_sum_map, const char* szName, rapidjson::Document::AllocatorType & Allocator, rapidjson::Value & Parent );
  131. /**
  132. * @brief
  133. 格式化生成卡号函数。
  134. * @param [in] const _BASE_CARD_& CardPos 卡位置\n
  135. * @return 格式化生成的卡号\n
  136. * @note
  137. * @warning
  138. * @bug
  139. */
  140. std::string __FmtCardID( const _BASE_CARD_& CardPos );
  141. public:
  142. jsonBuilder();
  143. virtual ~jsonBuilder();
  144. /**
  145. * @brief
  146. 生成登录jason函数。
  147. * @param [in] const _JS_LOGIN_& Login 登录参数\n
  148. * @return 如果成功返回生成的json字符串,否则返回空字符串\n
  149. * @note
  150. * @warning
  151. * @bug
  152. */
  153. std::string BuildLogin( const _JS_LOGIN_& Login );
  154. /**
  155. * @brief
  156. 生成卡位置jason函数。
  157. * @param [in] const std::map<int, _CARD_POS_>& CardPosList 卡位置列表\n
  158. * @return 如果成功返回生成的json字符串,否则返回空字符串\n
  159. * @note
  160. * @warning
  161. * @bug
  162. */
  163. std::string BuildCardPos( const std::map<uint64_t, _CARD_POS_>& CardPosList );
  164. std::string build_ios_card_pos(const _CARD_POS_& card);
  165. std::string build_tmp_card_pos(const std::map<uint64_t, _CARD_POS_>& cards);
  166. std::string build_traffic_light(const std::vector<light_state> lights);
  167. /**
  168. * @brief
  169. 生成车辆进入特殊区域jason函数。
  170. * @param [in] const _BASE_CARD_& Card 卡结构体\n
  171. * @return 如果成功返回生成的json字符串,否则返回空字符串\n
  172. * @note
  173. * @warning
  174. * @bug
  175. */
  176. std::string BuildSpecialAreaProcess( const _BASE_CARD_& stCard );
  177. /**
  178. * @brief
  179. 解析呼叫结构体函数。
  180. * @param [in] const _JS_LOGIN_& Login 登录参数\n
  181. * @return 如果成功返回生成的jason字符串,否则返回空字符串\n
  182. * @note
  183. * @warning
  184. * @bug
  185. */
  186. bool ParseCall_Card_Req( const std::string& JasonText, _JS_CALL_CARD_REQ_& CallCardReq, std::string& Error );
  187. };
  188. }
  189. #endif /* _JSONBUILDER_H_ */