user_app.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. /*
  2. * @Description: USERAPP
  3. * @Version: 1.0
  4. * @Autor: lishengyin
  5. * @Date: 2021-10-13 09:41:50
  6. * @LastEditors: Please set LastEditors
  7. * @LastEditTime: 2021-11-18 23:06:51
  8. */
  9. #pragma once
  10. #include <iostream>
  11. #include <signal.h>
  12. // ZLMediaKit
  13. #include "Util/logger.h"
  14. #include "Util/NoticeCenter.h"
  15. #include "Poller/EventPoller.h"
  16. #include "Player/PlayerProxy.h"
  17. #include "Rtmp/RtmpPusher.h"
  18. #include "Common/config.h"
  19. #include "Pusher/MediaPusher.h"
  20. #include "Extension/Frame.h"
  21. #include "Util/SqlPool.h"
  22. #include "Network/TcpClient.h"
  23. #include "Poller/Timer.h"
  24. #include "TCPClient.h"
  25. #include "inifile.h"
  26. #include <gst/gst.h>
  27. #include <vector>
  28. #include <map>
  29. #include <time.h>
  30. #include "inference.h"
  31. #include "DataSource.h"
  32. // dataType
  33. #include "SendLogin.h"
  34. #include "NettyServerCommandEnum.h"
  35. #include "NettyServerResultMsg.h"
  36. #include "NettyClientResultMsg.h"
  37. #include "SendLogin.h"
  38. #include "NettyClientCommandEnum.h"
  39. #include "InferData.h"
  40. #include "PIDSClientResultMsg.h"
  41. #include "PIDSServerResultMsg.h"
  42. #include "CrowdednessConfig.h"
  43. #include "CrowdednessTimeConfig.h"
  44. #include "SendPassengerFlow.h"
  45. #include "SendCarData.h"
  46. #include "ApiDefine.h"
  47. #include "Notices.h"
  48. #include "ApiSyncData.h"
  49. #include "ApiResult.h"
  50. #include "HttpClient.h"
  51. #include <httplib.h>
  52. using namespace toolkit;
  53. using namespace mediakit;
  54. using namespace inifile;
  55. using namespace std;
  56. namespace MIVA
  57. {
  58. class UserApp
  59. {
  60. public:
  61. /**
  62. * @description: 创建对象
  63. * @param {*}
  64. * @return {std::shared_ptr<UserApp>} 智能指针
  65. * @author: lishengyin
  66. */
  67. static std::shared_ptr<UserApp> CreateNew();
  68. UserApp();
  69. ~UserApp();
  70. /**
  71. * @description: 模块初始化
  72. * @param {string} appName 应用名
  73. * @return {int} 是否成功
  74. * @author: lishengyin
  75. */
  76. int32_t Init(std::string appName);
  77. /**
  78. * @description: 释放数据
  79. * @param {*}
  80. * @return {*}
  81. * @author: lishengyin
  82. */
  83. void Destroy();
  84. /**
  85. * @description: 启动任务
  86. * @param {*}
  87. * @return {*}
  88. * @author: lishengyin
  89. */
  90. void StartTask();
  91. /**
  92. * @description: 获取数据
  93. * @param {*}
  94. * @return {*}
  95. */
  96. int32_t GetNettyDatas();
  97. /**
  98. * @description: 赋值struct sockaddr
  99. * @param {sockaddr} *out
  100. * @param {char} *ip
  101. * @param {uint16_t} port
  102. * @return {*}
  103. * @author: lishengyin
  104. */
  105. static void makeAddr(struct sockaddr *out,const char *ip,uint16_t port);
  106. /**
  107. * @description: 最终的结果运算
  108. * @param {uint32_t} noLoad 空载车厢载荷
  109. * @param {uint32_t} dynamicLoad 动态车厢载荷
  110. * @param {int} num 推理结果
  111. * @return {uint32_t} 运算结构
  112. * @author: lishengyin
  113. */
  114. static uint32_t DataCalculation(uint32_t noLoad, uint32_t dynamicLoad, int num);
  115. /**
  116. * @description: 拥挤成都判定
  117. * @param {int} num 识别结果
  118. * @return {uint8_t} 拥挤程度 1-4
  119. * @author: lishengyin
  120. */
  121. static uint8_t GradeDetermination(int num);
  122. private:
  123. IniFile m_ini;
  124. std::string m_appName;
  125. const std::string m_configSrc = "../config/config.ini";
  126. private:
  127. // Natty
  128. std::string Netty_ip;
  129. int32_t Netty_port;
  130. std::string Netty_idName;
  131. // PIS
  132. std::string PIS_ip;
  133. int32_t PIS_port;
  134. std::string PIS_IdName;
  135. // Mysql
  136. std::string sql_ip;
  137. int32_t sql_port;
  138. std::string user;
  139. std::string password;
  140. std::string character;
  141. // Http
  142. std::string account;
  143. std::string pwd;
  144. std::string uri;
  145. std::string port;
  146. int device_id;
  147. bool play = false;
  148. bool start = true;
  149. private:
  150. std::shared_ptr<TCPClient> m_tcpClient = NULL;
  151. std::shared_ptr<Inference> m_Infer = NULL;
  152. std::shared_ptr<HttpClient> m_httpClient = NULL;
  153. Socket::Ptr m_udpClient = NULL;
  154. std::vector<DataSource> DataList;
  155. Timer::Ptr m_timer0;
  156. Timer::Ptr m_timer1;
  157. Timer::Ptr m_timer2;
  158. Timer::Ptr m_timer3;
  159. Timer::Ptr m_timer4;
  160. private:
  161. /**
  162. * @description: 监听推理模块广播
  163. * @param {int} Source_id 数据源ID
  164. * @param {int} num 推理结果
  165. * @return {*}
  166. * @author: lishengyin
  167. */
  168. void ListenInfer(int Source_id, int num);
  169. /**
  170. * @description: 监听Netty下发的数据
  171. * @param {Ptr} &pBuf 接受到的数据
  172. * @return {*}
  173. * @author: lishengyin
  174. */
  175. void ListenNettyData(const Buffer::Ptr &pBuf);
  176. /**
  177. * @description: 监听PIS系统的数据
  178. * @param {Ptr} &buf 接受到的数据
  179. * @param {sockaddr} *addr socker信息
  180. * @return {*}
  181. * @author: lishengyin
  182. */
  183. void ListenPISData(const Buffer::Ptr &buf, struct sockaddr *addr);
  184. /**
  185. * @description: 监听车厢关门广播
  186. * @param {*}
  187. * @return {*}
  188. * @author: lishengyin
  189. */
  190. void ListenClosed();
  191. /**
  192. * @description: 监听重启识别广播
  193. * @param {*}
  194. * @return {*}
  195. * @author: lishengyin
  196. */
  197. void ListenRelease();
  198. /**
  199. * @description: 监听推理数据广播
  200. * @param {*}
  201. * @return {*}
  202. * @author: lishengyin
  203. */
  204. void ListenInferData();
  205. /**
  206. * @description: 连接Netty
  207. * @param {*}
  208. * @return {*}
  209. * @author: lishengyin
  210. */
  211. void ConnectNetty();
  212. /**
  213. * @description: 上报数据到PIS
  214. * @param {*}
  215. * @return {*}
  216. * @author: lishengyin
  217. */
  218. void ReportData();
  219. /**
  220. * 上报推理数据到Netty
  221. * @param {*}
  222. * @return {*}
  223. */
  224. void ReportInferData();
  225. /**
  226. * 监听数据
  227. * @param {*}
  228. * @return {*}
  229. */
  230. void MonitorData();
  231. };
  232. }