passageway.cpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. //
  2. // Created by huli on 2021/3/16.
  3. //
  4. #include "passageway.h"
  5. Passageway::Passageway()
  6. {
  7. m_request_inside_door_motion = DOOR_UNKNOWN;
  8. m_request_outside_door_motion = DOOR_UNKNOWN;
  9. m_request_turntable_direction = TURNTABLE_DIRECTION_UNKNOWN;
  10. m_respons_status = RESPONS_WORKING; //指令完成状态, 搬运器答复指令, 返回任务完成的情况
  11. m_respons_inside_door_motion = DOOR_UNKNOWN;
  12. m_respons_outside_door_motion = DOOR_UNKNOWN;
  13. m_respons_turntable_direction = TURNTABLE_DIRECTION_UNKNOWN;
  14. m_status_updata_time = std::chrono::system_clock::now();
  15. m_last_heartbeat = 0; //上一次的心跳
  16. m_actual_device_status = HARDWARE_DEVICE_UNKNOWN; //通道口的硬件设备状态
  17. m_actual_inside_load_status = LOAD_UNKNOWN; //通道口的内部负载状态, 门内地感是否有车.
  18. m_actual_outside_load_status = LOAD_UNKNOWN; //通道口的外部负载状态, 门外地感是否有车.
  19. m_actual_front_overstep_the_boundary = BOUNDARY_NORMAL; //通道口 汽车前边界
  20. m_actual_back_overstep_the_boundary = BOUNDARY_NORMAL; //通道口 汽车前边界
  21. m_actual_height_overstep_the_boundary = BOUNDARY_NORMAL; //通道口 车辆是否超高
  22. m_actual_outside_door_sensor = LOAD_UNKNOWN; //通道口 的外门处的传感器, 判断是否有车经过外门
  23. //通道口的真实状态, 可能是路径中间的坐标
  24. m_actual_inside_door_motion = DOOR_UNKNOWN; //通道口 内门动作
  25. m_actual_outside_door_motion = DOOR_UNKNOWN; //通道口 外门动作
  26. m_actual_turntable_load_status = LOAD_UNKNOWN; //通道口 转盘负载状态, 是否有车.
  27. m_actual_turntable_direction = TURNTABLE_DIRECTION_UNKNOWN; //通道口 转台方向
  28. memset(m_actual_error_code, 0, 50); //搬运器设备的报警信息位
  29. memset(m_actual_warning_code, 0, 50); //升降机设备的报警信息位
  30. }
  31. Passageway::~Passageway()
  32. {
  33. }
  34. //检查任务类型, 子类必须重载, 用来检查输入的任务是否为子类所需的.
  35. Error_manager Passageway::check_task_type(std::shared_ptr<Task_Base> p_task)
  36. {
  37. //检查任务类型,
  38. if (p_task->get_task_type() != Task_Base::Task_type::PASSAGEWAY_TASK)
  39. {
  40. return Error_manager(Error_code::PASSAGEWAY_TASK_TYPE_ERROR, Error_level::MINOR_ERROR,
  41. "Passageway::check_task_type get_task_type() != PASSAGEWAY_TASK ");
  42. }
  43. return Error_code::SUCCESS;
  44. }
  45. //获取硬件设备的状态, 必须子类继承
  46. Passageway::Hardware_device_status Passageway::get_actual_device_status()
  47. {
  48. return m_actual_device_status;
  49. }
  50. //把任务单写入到内存中, 子类必须重载
  51. Error_manager Passageway::write_task_to_memory(std::shared_ptr<Task_Base> p_task)
  52. {
  53. //检查任务类型,
  54. if (p_task->get_task_type() != Task_Base::Task_type::PASSAGEWAY_TASK)
  55. {
  56. return Error_manager(Error_code::PASSAGEWAY_TASK_TYPE_ERROR, Error_level::MINOR_ERROR,
  57. "Passageway::check_task_type get_task_type() != PASSAGEWAY_TASK ");
  58. }
  59. else
  60. {
  61. Passageway_task* tp_passageway_task = (Passageway_task*)p_task.get();
  62. std::unique_lock<std::mutex> t_lock1(tp_passageway_task->m_lock);
  63. m_request_key = tp_passageway_task->m_request_key;
  64. m_request_inside_door_motion = (Dispatch_device_base::Door_motion)tp_passageway_task->m_request_inside_door_motion;
  65. m_request_outside_door_motion = (Dispatch_device_base::Door_motion)tp_passageway_task->m_request_outside_door_motion;
  66. m_request_turntable_direction = (Dispatch_device_base::Turntable_direction)tp_passageway_task->m_request_turntable_direction;
  67. return Error_code::SUCCESS;
  68. }
  69. return Error_code::SUCCESS;
  70. }
  71. //更新设备底层通信数据, 子类必须重载
  72. Error_manager Passageway::update_device_communication()
  73. {
  74. std::unique_lock<std::mutex> t_lock1(Dispatch_communication::get_instance_references().m_data_lock);
  75. //请求消息, 调度->plc
  76. Dispatch_communication::Passageway_request_from_dispatch_to_plc_for_data * tp_passageway_request_from_dispatch_to_plc_for_data =
  77. & Dispatch_communication::get_instance_references().m_passageway_request_from_dispatch_to_plc_for_data[m_device_id];
  78. Dispatch_communication::Passageway_request_from_dispatch_to_plc_for_key * tp_passageway_request_from_dispatch_to_plc_for_key =
  79. & Dispatch_communication::get_instance_references().m_passageway_request_from_dispatch_to_plc_for_key[m_device_id];
  80. memset(tp_passageway_request_from_dispatch_to_plc_for_key->m_request_key, 0, 50);
  81. int t_size = m_request_key.size()<=50 ? m_request_key.size() : 50 ;
  82. memcpy(tp_passageway_request_from_dispatch_to_plc_for_key->m_request_key, m_request_key.c_str(), t_size);
  83. tp_passageway_request_from_dispatch_to_plc_for_data->m_request_inside_door_motion = m_request_inside_door_motion;
  84. tp_passageway_request_from_dispatch_to_plc_for_data->m_request_outside_door_motion = m_request_outside_door_motion;
  85. tp_passageway_request_from_dispatch_to_plc_for_data->m_request_turntable_direction = m_request_turntable_direction;
  86. //答复消息, plc->调度
  87. Dispatch_communication::Passageway_response_from_plc_to_dispatch * tp_passageway_response_from_plc_to_dispatch =
  88. & Dispatch_communication::get_instance_references().m_passageway_response_from_plc_to_dispatch[m_device_id];
  89. m_respons_key = (char*) tp_passageway_response_from_plc_to_dispatch->m_respons_key;
  90. m_respons_status = (Dispatch_device_base::Respons_status)tp_passageway_response_from_plc_to_dispatch->m_respons_status;
  91. m_respons_inside_door_motion = (Dispatch_device_base::Door_motion)tp_passageway_response_from_plc_to_dispatch->m_respons_inside_door_motion;
  92. m_respons_outside_door_motion = (Dispatch_device_base::Door_motion)tp_passageway_response_from_plc_to_dispatch->m_respons_outside_door_motion;
  93. m_respons_turntable_direction = (Dispatch_device_base::Turntable_direction)tp_passageway_response_from_plc_to_dispatch->m_respons_turntable_direction;
  94. //状态消息, plc->调度
  95. Dispatch_communication::Passageway_status_from_plc_to_dispatch *tp_passageway_status_from_plc_to_dispatch =
  96. & Dispatch_communication::get_instance_references().m_passageway_status_from_plc_to_dispatch[m_device_id];
  97. //设备异常 //注注注注注注注注意了, ==的优先级比&要高.
  98. if ( (tp_passageway_status_from_plc_to_dispatch->m_safe_status & 0x02) == 0 )
  99. {
  100. m_actual_device_status = Dispatch_device_base::HARDWARE_DEVICE_EMERGENCY_STOP;
  101. m_dispatch_device_status = Dispatch_device_base::DISPATCH_DEVICE_FAULT;
  102. }
  103. else if ( (tp_passageway_status_from_plc_to_dispatch->m_safe_status & 0x01) == 0 )
  104. {
  105. m_actual_device_status = Dispatch_device_base::HARDWARE_DEVICE_FAULT;
  106. m_dispatch_device_status = Dispatch_device_base::DISPATCH_DEVICE_FAULT;
  107. }
  108. else//正常状态
  109. {
  110. if ( (tp_passageway_status_from_plc_to_dispatch->m_sensor_status2 & 0x20)== 1)
  111. {
  112. m_actual_device_status = Dispatch_device_base::HARDWARE_DEVICE_WORKING;
  113. }
  114. else if( (tp_passageway_status_from_plc_to_dispatch->m_sensor_status2 & 0x20)== 0)
  115. {
  116. m_actual_device_status = Dispatch_device_base::HARDWARE_DEVICE_READY;
  117. }
  118. else
  119. {
  120. m_actual_device_status = Dispatch_device_base::HARDWARE_DEVICE_UNKNOWN;
  121. }
  122. //故障恢复之后 E_FAULT ->> E_THREE_LEVEL_WORK
  123. if ( m_dispatch_device_status == Dispatch_device_base::DISPATCH_DEVICE_FAULT )
  124. {
  125. m_dispatch_device_status = Dispatch_device_base::DISPATCH_DEVICE_THREE_LEVEL_WORK;
  126. }
  127. //else 流程状态维持不变
  128. }
  129. //数据解析
  130. if ( (tp_passageway_status_from_plc_to_dispatch->m_sensor_status1 & 0x01)== 1)
  131. {
  132. m_actual_inside_load_status = Dispatch_device_base::HAVE_CAR;
  133. }
  134. else
  135. {
  136. m_actual_inside_load_status = Dispatch_device_base::NO_CAR;
  137. }
  138. if ( (tp_passageway_status_from_plc_to_dispatch->m_sensor_status1 & 0x02)== 1)
  139. {
  140. m_actual_outside_load_status = Dispatch_device_base::HAVE_CAR;
  141. }
  142. else
  143. {
  144. m_actual_outside_load_status = Dispatch_device_base::NO_CAR;
  145. }
  146. if ( (tp_passageway_status_from_plc_to_dispatch->m_sensor_status1 & 0x04)== 1)
  147. {
  148. m_actual_front_overstep_the_boundary = Dispatch_device_base::BOUNDARY_OVERSTEP;
  149. }
  150. else
  151. {
  152. m_actual_front_overstep_the_boundary = Dispatch_device_base::BOUNDARY_NORMAL;
  153. }
  154. if ( (tp_passageway_status_from_plc_to_dispatch->m_sensor_status1 & 0x08)== 1)
  155. {
  156. m_actual_back_overstep_the_boundary = Dispatch_device_base::BOUNDARY_OVERSTEP;
  157. }
  158. else
  159. {
  160. m_actual_back_overstep_the_boundary = Dispatch_device_base::BOUNDARY_NORMAL;
  161. }
  162. if ( (tp_passageway_status_from_plc_to_dispatch->m_sensor_status1 & 0x10)== 1)
  163. {
  164. m_actual_height_overstep_the_boundary = Dispatch_device_base::BOUNDARY_OVERSTEP;
  165. }
  166. else
  167. {
  168. m_actual_height_overstep_the_boundary = Dispatch_device_base::BOUNDARY_NORMAL;
  169. }
  170. if ( (tp_passageway_status_from_plc_to_dispatch->m_sensor_status1 & 0x20)== 1)
  171. {
  172. m_actual_outside_door_sensor = Dispatch_device_base::HAVE_CAR;
  173. }
  174. else
  175. {
  176. m_actual_outside_door_sensor = Dispatch_device_base::NO_CAR;
  177. }
  178. if ( (tp_passageway_status_from_plc_to_dispatch->m_sensor_status1 & 0x40)== 1 &&
  179. (tp_passageway_status_from_plc_to_dispatch->m_sensor_status1 & 0x80)== 0)
  180. {
  181. m_actual_inside_door_motion = Dispatch_device_base::DOOR_OPEN;
  182. }
  183. else if ( (tp_passageway_status_from_plc_to_dispatch->m_sensor_status1 & 0x40)== 0 &&
  184. (tp_passageway_status_from_plc_to_dispatch->m_sensor_status1 & 0x80)== 1)
  185. {
  186. m_actual_inside_door_motion = Dispatch_device_base::DOOR_CLOSE;
  187. }
  188. else if ( (tp_passageway_status_from_plc_to_dispatch->m_sensor_status1 & 0x40)== 1 &&
  189. (tp_passageway_status_from_plc_to_dispatch->m_sensor_status1 & 0x80)== 1)
  190. {
  191. m_actual_inside_door_motion = Dispatch_device_base::DOOR_ERROR;
  192. }
  193. else if ( (tp_passageway_status_from_plc_to_dispatch->m_sensor_status1 & 0x40)== 0 &&
  194. (tp_passageway_status_from_plc_to_dispatch->m_sensor_status1 & 0x80)== 0)
  195. {
  196. m_actual_inside_door_motion = Dispatch_device_base::DOOR_UNKNOWN;
  197. }
  198. if ( (tp_passageway_status_from_plc_to_dispatch->m_sensor_status2 & 0x01)== 1 &&
  199. (tp_passageway_status_from_plc_to_dispatch->m_sensor_status2 & 0x02)== 0)
  200. {
  201. m_actual_outside_door_motion = Dispatch_device_base::DOOR_OPEN;
  202. }
  203. else if ( (tp_passageway_status_from_plc_to_dispatch->m_sensor_status2 & 0x01)== 0 &&
  204. (tp_passageway_status_from_plc_to_dispatch->m_sensor_status2 & 0x02)== 1)
  205. {
  206. m_actual_outside_door_motion = Dispatch_device_base::DOOR_CLOSE;
  207. }
  208. else if ( (tp_passageway_status_from_plc_to_dispatch->m_sensor_status2 & 0x01)== 1 &&
  209. (tp_passageway_status_from_plc_to_dispatch->m_sensor_status2 & 0x02)== 1)
  210. {
  211. m_actual_outside_door_motion = Dispatch_device_base::DOOR_ERROR;
  212. }
  213. else if ( (tp_passageway_status_from_plc_to_dispatch->m_sensor_status2 & 0x01)== 0 &&
  214. (tp_passageway_status_from_plc_to_dispatch->m_sensor_status2 & 0x02)== 0)
  215. {
  216. m_actual_outside_door_motion = Dispatch_device_base::DOOR_UNKNOWN;
  217. }
  218. if ( (tp_passageway_status_from_plc_to_dispatch->m_sensor_status2 & 0x03)== 1)
  219. {
  220. m_actual_turntable_load_status = Dispatch_device_base::HAVE_CAR;
  221. }
  222. else
  223. {
  224. m_actual_turntable_load_status = Dispatch_device_base::NO_CAR;
  225. }
  226. m_actual_turntable_direction = (Dispatch_device_base::Turntable_direction)tp_passageway_status_from_plc_to_dispatch->m_actual_turntable_direction;
  227. memcpy(m_actual_error_code, tp_passageway_status_from_plc_to_dispatch->m_actual_error_code, 50);
  228. memcpy(m_actual_warning_code, tp_passageway_status_from_plc_to_dispatch->m_actual_warning_code, 50);
  229. m_actual_error_description = (char*)(tp_passageway_status_from_plc_to_dispatch->m_actual_error_description-2);
  230. //通过心跳帧来判断通信是否正常
  231. if ( m_last_heartbeat != tp_passageway_status_from_plc_to_dispatch->m_heartbeat )
  232. {
  233. m_last_heartbeat = tp_passageway_status_from_plc_to_dispatch->m_heartbeat;
  234. m_status_updata_time = std::chrono::system_clock::now();
  235. //重连之后,搬运器状态 E_DISCONNECT ->> E_THREE_LEVEL_WORK
  236. if ( m_dispatch_device_status == Dispatch_device_base::DISPATCH_DEVICE_DISCONNECT )
  237. {
  238. m_dispatch_device_status = Dispatch_device_base::DISPATCH_DEVICE_THREE_LEVEL_WORK;
  239. }
  240. }
  241. else if(std::chrono::system_clock::now() - m_status_updata_time > std::chrono::milliseconds(COMMUNICATION_OVER_TIME_MS))
  242. {
  243. m_dispatch_device_status = Dispatch_device_base::DISPATCH_DEVICE_DISCONNECT;
  244. }
  245. //else 继续等待,直到消息刷新或者超时.
  246. return Error_code::SUCCESS;
  247. }
  248. //从内存中读数据到任务单, 子类必须重载
  249. Error_manager Passageway::check_and_read_memory_to_task(std::shared_ptr<Task_Base> p_task)
  250. {
  251. Dispatch_communication::get_instance_references().communication_start();
  252. //检查任务类型,
  253. if (p_task->get_task_type() != Task_Base::Task_type::PASSAGEWAY_TASK)
  254. {
  255. return Error_manager(Error_code::PASSAGEWAY_TASK_TYPE_ERROR, Error_level::MINOR_ERROR,
  256. "Passageway::check_task_type get_task_type() != PASSAGEWAY_TASK ");
  257. }
  258. else
  259. {
  260. if ( m_respons_key == m_request_key && m_respons_status != RESPONS_WORKING )
  261. {
  262. Passageway_task* tp_passageway_task = (Passageway_task*)p_task.get();
  263. std::unique_lock<std::mutex> t_lock1(tp_passageway_task->m_lock);
  264. tp_passageway_task->m_respons_key = m_respons_key;
  265. tp_passageway_task->m_respons_status = (Passageway_task::Respons_status)m_respons_status;
  266. tp_passageway_task->m_respons_inside_door_motion = (Passageway_task::Door_motion)m_respons_inside_door_motion;
  267. tp_passageway_task->m_respons_outside_door_motion = (Passageway_task::Door_motion)m_respons_outside_door_motion;
  268. tp_passageway_task->m_respons_turntable_direction = (Passageway_task::Turntable_direction)m_respons_turntable_direction;
  269. //如果故障,则添加错误码
  270. if ( m_respons_status == RESPONS_MINOR_ERROR || m_respons_status == RESPONS_CRITICAL_ERROR )
  271. {
  272. //添加错误码
  273. Error_manager t_error(PASSAGEWAY_RESPONS_ERROR, MINOR_ERROR, "m_respons_status is error");
  274. tp_passageway_task->set_task_error_manager(t_error);
  275. }
  276. return Error_code::SUCCESS;
  277. }
  278. //返回没有收到数据
  279. else
  280. {
  281. return Error_code::NODATA;
  282. }
  283. }
  284. return Error_code::SUCCESS;
  285. }
  286. //取消下发的指令
  287. Error_manager Passageway::cancel_command()
  288. {
  289. //以后再写 need programe
  290. //目前调度和plc的通信指令做的很简单,没有暂停和急停 复位等操作.
  291. //这里先空着,以后再写.
  292. //调度模块单方面销毁任务, 不管底层plc的执行情况, 也不去告知plc任务取消.
  293. return Error_code::SUCCESS;
  294. }