command_manager.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. //
  2. // Created by zx on 2020/7/14.
  3. //
  4. /*
  5. * 指令管理, 包括指令的接收,指令的执行控制,指令的状态追踪,出入口状态检查
  6. */
  7. #ifndef NNXX_TESTS_COMMAND_MANAGER_H
  8. #define NNXX_TESTS_COMMAND_MANAGER_H
  9. #include <error_code.h>
  10. #include <terminal_message.pb.h>
  11. #include <communication_message.h>
  12. #include "thread_condition.h"
  13. #include "singleton.h"
  14. #include "TaskQueue/TQFactory.h"
  15. #include "TaskQueue/BaseTask.h"
  16. #include "central_control_message.pb.h"
  17. #include "thread_safe_map.h"
  18. #include "system_setting.pb.h"
  19. class Command_manager :public Singleton<Command_manager>{
  20. friend Singleton<Command_manager>;
  21. public:
  22. ~Command_manager();
  23. /*
  24. * 初始化函数,创建线程池,创建状态广播线程,根据配置创建停取车流程
  25. */
  26. Error_manager init(setting::System_setting system_setting);
  27. /*
  28. * 执行停车请求
  29. */
  30. Error_manager execute_store_command(message::Store_command_request_msg& request);
  31. /*
  32. * 执行取车请求
  33. */
  34. Error_manager execute_pickup_command(message::Pickup_command_request_msg& request);
  35. /*
  36. * 控制入口 开放或者关闭
  37. */
  38. Error_manager pause_entrance(int terminal_id,bool paused);
  39. /*
  40. * 获取出入口状态
  41. */
  42. message::Entrance_statu entrance_statu(int terminal_id);
  43. message::Entrance_statu export_statu(int terminal_id);
  44. /*
  45. * 控制出口 开放或者关闭
  46. */
  47. Error_manager pause_export(int terminal_id, bool paused);
  48. /*
  49. * pause,系统急停,急停状态下不允许自动流程的指令执行,允许管理员手动指令执行
  50. */
  51. void pause_system();
  52. /*
  53. * 系统是否急停
  54. */
  55. bool is_paused(){return m_system_paused;}
  56. private:
  57. Command_manager();
  58. static void publish_statu_function(Command_manager* commander);
  59. void publish_statu();
  60. protected:
  61. tq::IQueue* m_thread_queue_process; //指令流程线程池
  62. bool m_system_paused;
  63. std::vector<bool> m_input_entrance_paused; //入口状态(关闭/开放)
  64. std::vector<bool> m_output_entrance_paused; //出口状态(关闭/开放)
  65. setting::System_setting m_system_setting;
  66. std::thread* m_publish_statu_thread; //广播状态线程
  67. Thread_condition m_publish_exit_condition; //发送的条件变量
  68. };
  69. #endif //NNXX_TESTS_COMMAND_MANAGER_H