module_web.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #ifndef MODULE_WEB_H
  2. #define MODULE_WEB_H
  3. #include <memory>
  4. #include <string>
  5. #include <vector>
  6. #include "rapidjson/prettywriter.h"
  7. #include "rapidjson/document.h"
  8. #include "config_file.h"
  9. #include "module_singleton_base.h"
  10. #include "module_i_thread.h"
  11. #include "websocket/wsClientMgr.h"
  12. struct ya_event;
  13. class module_web : public i_thread, public singleton_base<module_web>
  14. {
  15. private:
  16. friend class singleton_base<module_web>;
  17. module_web()
  18. {
  19. }
  20. public:
  21. /**
  22. * @brief 用来处理WEB发送的请求(web请求回调函数)
  23. * @param ID
  24. * @param name
  25. * @param data
  26. * @param need_ack
  27. * @param ack_resp
  28. */
  29. static void accept( int ID, std::string const& name,
  30. sio::message::ptr const& data, bool need_ack, sio::message::list &ack_resp );
  31. /**
  32. * @brief 注册web请求回调函数
  33. * @param MsgFuncList
  34. */
  35. void init(config_file& config, std::map<std::string, sys::MSG_HANDLE_FUNC_TYPE>& MsgFuncList)
  36. {
  37. sleep_ms = std::stoi(config.get("service.interval_send_json_alarm_ms","10000"));
  38. MsgFuncList.insert( std::make_pair( JSON_CMD_VALUE_META_DATA_CHANGED, &module_web::accept ) );
  39. MsgFuncList.insert( std::make_pair( JSON_CMD_VALUE_REQUEST_ALL_DATA, &module_web::accept ) );
  40. MsgFuncList.insert( std::make_pair( JSON_CMD_VALUE_DEAL_HELP, &module_web::accept ) );
  41. MsgFuncList.insert( std::make_pair( JSON_CMD_VALUE_CALL_CARD_REQUEST, &module_web::accept ) );
  42. MsgFuncList.insert( std::make_pair( JSON_CMD_VALUE_CALL_CARD_CANCEL_REQUEST, &module_web::accept ) );
  43. MsgFuncList.insert( std::make_pair( JSON_CMD_VALUE_CLEAR_CARD, &module_web::accept ) );//手动升井
  44. MsgFuncList.insert( std::make_pair( JSON_CMD_REQ_ALL_PERSON_ON_CAR,&module_web::accept)); // 接收web端请求的在车上的人卡信息
  45. MsgFuncList.insert( std::make_pair( JSON_CMD_VALUE_LIGHTS_CTRL_REQUEST, &module_web::accept)); // 红绿灯控制指令
  46. MsgFuncList.insert(std::make_pair(JSON_CMD_VALUE_LOAD_HISTORY_REQUEST, &module_web::accept)); // 导入历史文件指令
  47. MsgFuncList.insert(std::make_pair(JSON_KEY_NAME_SETTING, &module_web::accept)); // 导入历史文件指令
  48. }
  49. /// web前端有用户登录时,反馈给web所有信息
  50. void response_login();
  51. private:
  52. /**
  53. * @brief 线程函数
  54. */
  55. void run();
  56. ///获取所有的告警事件
  57. void _get_all_events(std::vector<std::shared_ptr<ya_event>>& arr,bool f=false);
  58. ///在全局列表中删除已经处理或结束了的告警
  59. void _delete_end(std::vector<std::shared_ptr<ya_event>>& arr);
  60. };
  61. #endif // MODULE_WEB_H