communication_message.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. //
  2. // Created by huli on 2020/6/29.
  3. //
  4. #ifndef NNXX_TESTS_COMMUNICATION_MESSAGE_H
  5. #define NNXX_TESTS_COMMUNICATION_MESSAGE_H
  6. #include "../error_code/error_code.h"
  7. #include <time.h>
  8. #include <sys/time.h>
  9. #include <chrono>
  10. //#include <iosfwd>
  11. #include <string>
  12. #include "../message/message_base.pb.h"
  13. class Communication_message
  14. {
  15. public:
  16. //消息类型定义,每个在网络上传输的消息必须含有这个属性
  17. enum Message_type
  18. {
  19. eBase_msg=0x00,
  20. eCommand_msg=0x01, //指令消息
  21. eLocate_status_msg=0x11, //定位模块状态消息
  22. eLocate_request_msg=0x12, //定位请求消息
  23. eLocate_response_msg=0x13, //定位反馈消息
  24. eLocate_sift_request_msg = 0x14, //预测算法请求消息
  25. eLocate_sift_response_msg = 0x15, //预测算法反馈消息
  26. eDispatch_status_msg=0x21, //调度模块硬件状态消息
  27. eDispatch_request_msg=0x22, //请求调度消息
  28. eDispatch_response_msg=0x23, //调度结果反馈消息
  29. eParkspace_allocation_status_msg=0x31, //车位分配模块状态消息,包括车位信息
  30. eParkspace_allocation_request_msg=0x32, //请求分配车位消息
  31. eParkspace_allocation_response_msg=0x33,//分配车位结果反馈消息
  32. eParkspace_search_request_msg = 0x34, //查询车位请求消息
  33. eParkspace_search_response_msg = 0x35, //查询车位反馈消息
  34. eParkspace_release_request_msg = 0x36, //释放车位请求消息
  35. eParkspace_release_response_msg = 0x37, //释放车位反馈消息
  36. eParkspace_force_update_request_msg = 0x38, //手动修改车位消息
  37. eParkspace_force_update_response_msg = 0x39,//手动修改车位反馈消息
  38. eParkspace_confirm_alloc_request_msg = 0x3A,//确认分配车位请求消息
  39. eParkspace_confirm_alloc_response_msg = 0x3B,//确认分配车位反馈消息
  40. eParkspace_refresh_request_msg = 0x3C, //车位分配模块车位数据消息
  41. eParkspace_allocation_data_response_msg =0x3D,//车位数据反馈消息
  42. eParkspace_manual_search_request_msg = 0x3E, //手动查询车位请求消息
  43. eParkspace_manual_search_response_msg = 0x3F,//手动查询车位反馈消息
  44. eStore_command_request_msg=0x41, //终端停车请求消息
  45. eStore_command_response_msg=0x42, //停车请求反馈消息
  46. ePickup_command_request_msg=0x43, //取车请求消息
  47. ePickup_command_response_msg=0x44, //取车请求反馈消息
  48. eTerminal_status_msg = 0x50, //终端状态消息
  49. eStoring_process_statu_msg=0x90, //停车指令进度条消息
  50. ePicking_process_statu_msg=0x91, //取车指令进度消息
  51. eCentral_controller_statu_msg=0xa0, //中控系统状态消息
  52. eEntrance_manual_operation_msg=0xb0, //针对出入口状态操作的手动消息
  53. eProcess_manual_operation_msg=0xb1, //针对流程的手动消息
  54. eNotify_request_msg=0xc0, //取车等候区通知请求
  55. eNotify_response_msg=0xc1, //等候区反馈
  56. eNotify_status_msg=0xc2, //等候区通知节点状态
  57. eUnNormalized_module_statu_msg = 0xd0, //非标节点状态
  58. eDispatch_plan_request_msg = 0xe0, //调度总规划的请求(用于启动整个调度算法)(调度管理->调度算法)
  59. eDispatch_plan_response_msg = 0xe1, //调度总规划的答复(调度算法->调度管理)
  60. eDispatch_control_request_msg = 0xe2, //调度控制的任务请求(调度算法->调度管理)
  61. eDispatch_control_response_msg = 0xe3, //调度控制的任务答复(调度管理->调度算法)
  62. eDispatch_manager_status_msg = 0xea, //调度管理的设备状态消息(调度底下所有硬件设备状态的汇总)
  63. eDispatch_manager_data_msg = 0xeb, //调度管理的设备详细的数据信息
  64. eGround_detect_request_msg=0xf0, //地面雷达测量请求消息
  65. eGround_detect_response_msg=0xf1, //地面雷达测量反馈消息
  66. eGround_status_msg=0xf2, //地面雷达状态消息
  67. };
  68. //通讯单元
  69. enum Communicator
  70. {
  71. eEmpty=0x0000,
  72. eMain=0x0001, //主流程
  73. eTerminor=0x0100,
  74. //车位表
  75. eParkspace=0x0200,
  76. //测量单元
  77. eMeasurer=0x0300,
  78. //测量单元
  79. eMeasurer_sift_server=0x0301,
  80. //调度机构
  81. eDispatch_mamager=0x0400,
  82. //调度机构
  83. eDispatch_control=0x0401,
  84. //取车等候区通知节点
  85. eNotify=0x0501,
  86. //地面测量单元
  87. eGround_measurer=0x0f00,
  88. };
  89. public:
  90. Communication_message();
  91. Communication_message(std::string message_buf);
  92. Communication_message(char* p_buf, int size);
  93. Communication_message(const Communication_message& other)= default;
  94. Communication_message& operator =(const Communication_message& other)= default;
  95. ~Communication_message();
  96. public://API functions
  97. bool is_over_time();
  98. public://get or set member variable
  99. void reset(const message::Base_info& base_info, std::string receive_string);
  100. Message_type get_message_type();
  101. Communicator get_sender();
  102. Communicator get_receiver();
  103. std::string& get_message_buf();
  104. std::chrono::system_clock::time_point get_receive_time();
  105. protected://member variable
  106. Message_type m_message_type; //消息类型
  107. std::chrono::system_clock::time_point m_receive_time; //接收消息的时间点
  108. std::chrono::milliseconds m_timeout_ms; //超时时间, 整个软件都统一为毫秒
  109. Communicator m_sender; //发送者
  110. Communicator m_receiver; //接受者
  111. std::string m_message_buf; //消息数据
  112. private:
  113. };
  114. #endif //NNXX_TESTS_COMMUNICATION_MESSAGE_H