system_communication.cpp 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. //
  2. // Created by huli on 2020/6/28.
  3. //
  4. #include "system_communication.h"
  5. //#include "../laser/laser_manager.h"
  6. //#include "../locate/locate_manager.h"
  7. #include "../system/system_executor.h"
  8. System_communication::System_communication()
  9. {
  10. }
  11. System_communication::~System_communication()
  12. {
  13. }
  14. //初始化 通信 模块。如下三选一
  15. Error_manager System_communication::communication_init()
  16. {
  17. return Rabbitmq_base::rabbitmq_init();
  18. }
  19. //初始化 通信 模块。如下三选一
  20. Error_manager System_communication::communication_init(int dispatch_id)
  21. {
  22. // return Rabbitmq_base::rabbitmq_init();
  23. switch ( dispatch_id )
  24. {
  25. case 0:
  26. {
  27. return Rabbitmq_base::rabbitmq_init_from_protobuf(RABBITMQ_PARAMETER_PATH_A);
  28. break;
  29. }
  30. case 1:
  31. {
  32. return Rabbitmq_base::rabbitmq_init_from_protobuf(RABBITMQ_PARAMETER_PATH_B);
  33. break;
  34. }
  35. case 2:
  36. {
  37. return Rabbitmq_base::rabbitmq_init_from_protobuf(RABBITMQ_PARAMETER_PATH_C);
  38. break;
  39. }
  40. default:
  41. {
  42. return Error_manager(Error_code::COMMUNICATION_READ_PROTOBUF_ERROR, Error_level::MINOR_ERROR,
  43. " System_communication::communication_init dispatch_id error ");
  44. break;
  45. }
  46. }
  47. return Error_code::SUCCESS;
  48. }
  49. //检查消息是否有效, 主要检查消息类型和接受者, 判断这条消息是不是给我的.
  50. Error_manager System_communication::check_msg(Rabbitmq_message* p_msg)
  51. {
  52. return System_executor::get_instance_references().check_msg(p_msg);
  53. }
  54. //检查执行者的状态, 判断能否处理这条消息, 需要子类重载
  55. Error_manager System_communication::check_executer(Rabbitmq_message* p_msg)
  56. {
  57. return System_executor::get_instance_references().check_executer(p_msg);
  58. /*
  59. //检查对应模块的状态, 判断是否可以处理这条消息
  60. //同时也要判断是否超时, 超时返回 COMMUNICATION_ANALYSIS_TIME_OUT
  61. //如果处理器正在忙别的, 那么返回 COMMUNICATION_EXCUTER_IS_BUSY
  62. // std::cout << "Communication_socket_base::check_msg p_buf = " << p_msg->get_message_buf() << std::endl;
  63. // std::cout << "Communication_socket_base::check_msg size = " << p_msg->get_message_buf().size() << std::endl;
  64. Error_manager t_error;
  65. if ( p_msg->is_over_time() )
  66. {
  67. std::cout << "COMMUNICATION_ANALYSIS_TIME_OUT , " << std::endl;
  68. //超时:接收方不做处理,发送方会进行超时处理
  69. return Error_code::COMMUNICATION_ANALYSIS_TIME_OUT;
  70. }
  71. else
  72. {
  73. return System_executor::get_instance_references().check_executer(p_msg);
  74. }
  75. return Error_code::SUCCESS;
  76. */
  77. }
  78. //处理消息, 需要子类重载
  79. Error_manager System_communication::execute_msg(Rabbitmq_message* p_msg)
  80. {
  81. return System_executor::get_instance_references().execute_msg(p_msg);
  82. }
  83. //定时封装发送消息, 一般为心跳和状态信息, 需要子类重载
  84. Error_manager System_communication::auto_encapsulate_status()
  85. {
  86. Error_manager t_error;
  87. return System_executor::get_instance_references().encapsulate_send_dispatch_manager_status();
  88. return Error_code::SUCCESS;
  89. }