user_app.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. /*
  2. * @Description: USERAPP
  3. * @Version: 1.0
  4. * @Autor: lishengyin
  5. * @Date: 2021-10-13 09:41:50
  6. * @LastEditors: lishengyin
  7. * @LastEditTime: 2021-12-29 15:57:08
  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 "Notices.h"
  47. #include "HttpClient.h"
  48. #include "recorder.h"
  49. #include <httplib.h>
  50. using namespace toolkit;
  51. using namespace mediakit;
  52. using namespace inifile;
  53. using namespace std;
  54. namespace MIVA
  55. {
  56. class UserApp
  57. {
  58. public:
  59. /**
  60. * @description: 创建对象
  61. * @param {*}
  62. * @return {std::shared_ptr<UserApp>} 智能指针
  63. * @author: lishengyin
  64. */
  65. static std::shared_ptr<UserApp> CreateNew();
  66. UserApp();
  67. ~UserApp();
  68. /**
  69. * @description: 模块初始化
  70. * @param {string} appName 应用名
  71. * @return {int} 是否成功
  72. * @author: lishengyin
  73. */
  74. int32_t Init(std::string appName);
  75. /**
  76. * @description: 释放数据
  77. * @param {*}
  78. * @return {*}
  79. * @author: lishengyin
  80. */
  81. void Destroy();
  82. /**
  83. * @description: 启动任务
  84. * @param {*}
  85. * @return {*}
  86. * @author: lishengyin
  87. */
  88. void StartTask();
  89. /**
  90. * @description: 获取数据
  91. * @param {*}
  92. * @return {*}
  93. */
  94. int32_t GetNettyDatas();
  95. /**
  96. * @description: 赋值struct sockaddr
  97. * @param {sockaddr} *out
  98. * @param {char} *ip
  99. * @param {uint16_t} port
  100. * @return {*}
  101. * @author: lishengyin
  102. */
  103. static void makeAddr(struct sockaddr *out,const char *ip,uint16_t port);
  104. /**
  105. * @description: 最终的结果运算
  106. * @param {uint32_t} noLoad 空载车厢载荷
  107. * @param {uint32_t} dynamicLoad 动态车厢载荷
  108. * @param {int} num 推理结果
  109. * @return {uint32_t} 运算结构
  110. * @author: lishengyin
  111. */
  112. static uint32_t DataCalculation(uint32_t noLoad, uint32_t dynamicLoad, int num);
  113. /**
  114. * @description: 拥挤成都判定
  115. * @param {int} num 识别结果
  116. * @return {uint8_t} 拥挤程度 1-4
  117. * @author: lishengyin
  118. */
  119. static uint8_t GradeDetermination(int num);
  120. static int GetAddrNum(std::string Pid);
  121. private:
  122. IniFile m_ini;
  123. std::string m_appName;
  124. const std::string m_configSrc = "../config/config.ini";
  125. private:
  126. // Natty
  127. std::string Netty_ip;
  128. int32_t Netty_port;
  129. std::string Netty_idName;
  130. // PIS
  131. std::string PIS_ip;
  132. int32_t PIS_port;
  133. std::string PIS_IdName;
  134. // Mysql
  135. std::string sql_ip;
  136. int32_t sql_port;
  137. std::string user;
  138. std::string password;
  139. std::string character;
  140. // Http
  141. std::string account;
  142. std::string pwd;
  143. std::string uri;
  144. std::string port;
  145. int device_id;
  146. bool play = false;
  147. bool start = true;
  148. bool enable = 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. std::shared_ptr<recorder> m_recorder = nullptr;
  154. Socket::Ptr m_udpClient = NULL;
  155. std::shared_ptr<InferInfo> m_InferInfo = NULL;
  156. Timer::Ptr m_timer0;
  157. Timer::Ptr m_timer1;
  158. Timer::Ptr m_timer2;
  159. Timer::Ptr m_timer3;
  160. Timer::Ptr m_timer4;
  161. Timer::Ptr m_timer5;
  162. Timer::Ptr m_timer6;
  163. private:
  164. /**
  165. * @description: 监听推理模块广播
  166. * @param {int} Source_id 数据源ID
  167. * @param {int} num 推理结果
  168. * @return {*}
  169. * @author: lishengyin
  170. */
  171. void ListenInfer(int Source_id, int num);
  172. /**
  173. * @description: 监听Netty下发的数据
  174. * @param {Ptr} &pBuf 接受到的数据
  175. * @return {*}
  176. * @author: lishengyin
  177. */
  178. void ListenNettyData(const Buffer::Ptr &pBuf);
  179. /**
  180. * @description: 监听PIS系统的数据
  181. * @param {Ptr} &buf 接受到的数据
  182. * @param {sockaddr} *addr socker信息
  183. * @return {*}
  184. * @author: lishengyin
  185. */
  186. void ListenPISData(const Buffer::Ptr &buf, struct sockaddr *addr);
  187. /**
  188. * @description: 监听车厢关门广播
  189. * @param {*}
  190. * @return {*}
  191. * @author: lishengyin
  192. */
  193. void ListenClosed();
  194. /**
  195. * @description: 监听重启识别广播
  196. * @param {*}
  197. * @return {*}
  198. * @author: lishengyin
  199. */
  200. void ListenRelease();
  201. /**
  202. * @description: 监听推理数据广播
  203. * @param {*}
  204. * @return {*}
  205. * @author: lishengyin
  206. */
  207. void ListenInferData();
  208. /**
  209. * @description: 监听推理完成
  210. * @param {*}
  211. * @return {*}
  212. */
  213. void ListenInferPer();
  214. /**
  215. * @description: 连接Netty
  216. * @param {*}
  217. * @return {*}
  218. * @author: lishengyin
  219. */
  220. void ConnectNetty();
  221. /**
  222. * @description: 上报数据到PIS
  223. * @param {*}
  224. * @return {*}
  225. * @author: lishengyin
  226. */
  227. void ReportData();
  228. /**
  229. * 上报推理数据到Netty
  230. * @param {*}
  231. * @return {*}
  232. */
  233. void ReportInferData();
  234. /**
  235. * 监听数据
  236. * @param {*}
  237. * @return {*}
  238. */
  239. void MonitorData();
  240. };
  241. }