// // Created by huli on 2020/7/20. // #include "dispatch_manager.h" #include "../tool/proto_tool.h" #include Dispatch_manager::Dispatch_manager() { m_dispatch_manager_status = E_DISPATCH_MANAGER_UNKNOW; m_dispatch_manager_id = -1; m_dispatch_manager_thread = nullptr; } Dispatch_manager::~Dispatch_manager() { dispatch_manager_uninit(); } //调度管理 初始化 Error_manager Dispatch_manager::dispatch_manager_init(int dispatch_manager_id) { m_dispatch_manager_id = dispatch_manager_id; return dispatch_manager_init_from_protobuf(DISPATCH_DEVICE_PARAMETER_PATH); } //调度管理 初始化 Error_manager Dispatch_manager::dispatch_manager_init() { return dispatch_manager_init_from_protobuf(DISPATCH_DEVICE_PARAMETER_PATH); } //初始化 调度管理 模块。从文件读取 Error_manager Dispatch_manager::dispatch_manager_init_from_protobuf(std::string prototxt_path) { Dispatch_proto::Dispatch_device_parameter_all t_dispatch_device_parameter_all; if(! proto_tool::read_proto_param(prototxt_path,t_dispatch_device_parameter_all) ) { return Error_manager(DISPATCH_MANAGER_READ_PROTOBUF_ERROR,MINOR_ERROR, "Dispatch_manager read_proto_param failed"); } return dispatch_manager_init_from_protobuf(t_dispatch_device_parameter_all); } //初始化 调度管理 模块。从protobuf读取 Error_manager Dispatch_manager::dispatch_manager_init_from_protobuf(Dispatch_proto::Dispatch_device_parameter_all& dispatch_device_parameter_all) { LOG(INFO) << " ----Dispatch_manager::dispatch_manager_init_from_protobuf----- "<< this; Error_manager t_error; m_dispatch_plc.dispatch_plc_init(m_dispatch_manager_id); m_dispatch_ground_lidar[0].dispatch_ground_lidar_init(m_dispatch_manager_id, 0); m_dispatch_ground_lidar[1].dispatch_ground_lidar_init(m_dispatch_manager_id, 1); m_dispatch_singlechip[0].dispatch_singlechip_init(m_dispatch_manager_id, 0, 1); m_dispatch_singlechip[1].dispatch_singlechip_init(m_dispatch_manager_id, 1, 1); m_dispatch_singlechip[2].dispatch_singlechip_init(m_dispatch_manager_id, 0, 2); m_dispatch_singlechip[3].dispatch_singlechip_init(m_dispatch_manager_id, 1, 2); m_dispatch_motion_direction_next = Common_data::Dispatch_motion_direction::DISPATCH_MOTION_DIRECTION_PICKUP; // 线程默认开启 m_dispatch_manager_condition.reset(false, true, false); m_dispatch_manager_thread = new std::thread(&Dispatch_manager::resource_allocation, this); m_dispatch_manager_status = E_DISPATCH_MANAGER_READY; return Error_code::SUCCESS; } //调度管理 反初始化 Error_manager Dispatch_manager::dispatch_manager_uninit() { if (m_dispatch_manager_thread) { m_dispatch_manager_condition.kill_all(); } if (m_dispatch_manager_thread) { m_dispatch_manager_thread->join(); delete m_dispatch_manager_thread; m_dispatch_manager_thread = NULL; } m_dispatch_manager_status = E_DISPATCH_MANAGER_UNKNOW; m_dispatch_manager_id = -1; m_dispatch_plc.dispatch_plc_uninit(); m_dispatch_ground_lidar[0].dispatch_ground_lidar_uninit(); m_dispatch_ground_lidar[1].dispatch_ground_lidar_uninit(); m_dispatch_singlechip[0].dispatch_singlechip_uninit(); m_dispatch_singlechip[1].dispatch_singlechip_uninit(); m_dispatch_singlechip[2].dispatch_singlechip_uninit(); m_dispatch_singlechip[3].dispatch_singlechip_uninit(); return Error_code::SUCCESS; } //调度管理 设备复位 Error_manager Dispatch_manager::dispatch_manager_device_reset() { //以后再写 return Error_code::SUCCESS; } //对外的接口函数,负责接受并处理任务单, Error_manager Dispatch_manager::execute_task(Dispatch_manager::Dispatch_motion_direction dispatch_motion_direction) { return Error_code::SUCCESS; // std::this_thread::sleep_for(std::chrono::seconds(rand()%3+3)); if ( dispatch_motion_direction == E_PICKUP_CAR ) { return Error_code::SUCCESS; } // return Error_code::SUCCESS; // srand(0); unsigned int t_probability = rand(); if ( t_probability%100 >=20 ) { return Error_code::SUCCESS; } else { return Error_manager(Error_code::ERROR, Error_level::MINOR_ERROR, " Dispatch_manager::execute_task() error "); } } //检查能否执行消息指令 Error_manager Dispatch_manager::check_execute_msg(Communication_message* p_msg) { Error_manager t_error = Dispatch_manager::get_instance_references().check_status(); if ( t_error == Error_code::SUCCESS ) { return Error_code::SUCCESS; } else if (t_error.get_error_level() == NEGLIGIBLE_ERROR)//一级故障,轻微故障, { std::cout << "Dispatch_manager _is_busy , " << std::endl; //返回繁忙之后, 通信模块1秒后再次调用check return Error_code::COMMUNICATION_EXCUTER_IS_BUSY; } switch ( p_msg->get_message_type() ) { case Communication_message::Message_type::eDispatch_request_msg: { return Error_code::SUCCESS; break; } case Communication_message::Message_type::eDispatch_plan_response_msg: { return Error_code::SUCCESS; break; } case Communication_message::Message_type::eDispatch_control_request_msg: { return Error_code::SUCCESS; break; } default : { //无效的消息, return Error_manager(Error_code::INVALID_MESSAGE, Error_level::NEGLIGIBLE_ERROR, " INVALID_MESSAGE error "); break; } } return Error_code::SUCCESS; } //检查状态 Error_manager Dispatch_manager::check_status() { if ( m_dispatch_manager_status == E_DISPATCH_MANAGER_READY ) { return Error_code::SUCCESS; } else if ( m_dispatch_manager_status == E_DISPATCH_MANAGER_STORE || m_dispatch_manager_status == E_DISPATCH_MANAGER_STORE ) { return Error_manager(Error_code::DISPATCH_MANAGER_STATUS_BUSY, Error_level::NEGLIGIBLE_ERROR, " Dispatch_manager::check_status() error "); } else { return Error_manager(Error_code::DISPATCH_MANAGER_STATUS_ERROR, Error_level::MINOR_ERROR, " Dispatch_manager::check_status() error "); } return Error_code::SUCCESS; } //调度模块 //执行搬运请求(主控->调度管理) Error_manager Dispatch_manager::execute_for_dispatch_request_msg(message::Dispatch_request_msg& dispatch_request_msg) { LOG(INFO) << " ---Dispatch_manager::execute_for_dispatch_request_msg--- "<< dispatch_request_msg.DebugString() << " "<< this; LOG(INFO) << " dispatch_request_msg->m_command_key = "< t_lock(m_lock); if ( dispatch_request_msg.dispatch_motion_direction() == message::Dispatch_motion_direction::E_STORE_CAR ) { m_dispatch_request_store_list.push_back(dispatch_request_msg); m_store_updata_time = std::chrono::system_clock::now(); } else { m_dispatch_request_pickup_list.push_back(dispatch_request_msg); m_pickup_updata_time = std::chrono::system_clock::now(); } //need, 目前直接转发给调度plc执行, 后续要存队列,然后增加调度逻辑. // m_dispatch_plc.execute_for_dispatch_request_msg(dispatch_request_msg); return Error_code::SUCCESS; } //调度模块 答复数据异常 Error_manager Dispatch_manager::send_dispatch_response_msg_with_error(message::Dispatch_request_msg &dispatch_request_msg, Error_manager error) { message::Dispatch_response_msg t_dispatch_response_msg; t_dispatch_response_msg.mutable_base_info()->set_msg_type(message::Message_type::eDispatch_response_msg); t_dispatch_response_msg.mutable_base_info()->set_timeout_ms(dispatch_request_msg.base_info().timeout_ms()); t_dispatch_response_msg.mutable_base_info()->set_sender(message::Communicator::eDispatch_manager); t_dispatch_response_msg.mutable_base_info()->set_receiver(message::Communicator::eMain); t_dispatch_response_msg.set_command_key(dispatch_request_msg.command_key()); t_dispatch_response_msg.mutable_error_manager()->set_error_code(error.get_error_code()); t_dispatch_response_msg.mutable_error_manager()->set_error_level((message::Error_level)error.get_error_level()); t_dispatch_response_msg.mutable_error_manager()->set_error_description(error.get_error_description()); System_communication::get_instance_references().encapsulate_msg(t_dispatch_response_msg.SerializeAsString()); return Error_code::SUCCESS; } //调度模块 //调度总规划的答复(调度算法->调度管理) Error_manager Dispatch_manager::execute_for_dispatch_plan_response_msg(message::Dispatch_plan_response_msg &dispatch_plan_response_msg) { LOG(INFO) << " ---Dispatch_manager::execute_for_dispatch_plan_response_msg--- "<< this; LOG(INFO) << " dispatch_plan_response_msg->m_command_key = "<调度管理) Error_manager Dispatch_manager::execute_for_dispatch_control_request_msg(message::Dispatch_control_request_msg &dispatch_control_request_msg) { LOG(INFO) << " ---Dispatch_manager::execute_for_dispatch_control_request_msg--- "<< this; LOG(INFO) << " dispatch_control_request_msg->m_command_key = "<set_msg_type(message::Message_type::eDispatch_status_msg); t_dispatch_terminal_status_msg.mutable_base_info()->set_timeout_ms(5000); t_dispatch_terminal_status_msg.mutable_base_info()->set_sender(message::Communicator::eDispatch_manager); t_dispatch_terminal_status_msg.mutable_base_info()->set_receiver(message::Communicator::eEmpty); t_dispatch_terminal_status_msg.mutable_id_struct()->set_unit_id(t_dispatch_manager_id); t_dispatch_terminal_status_msg.set_terminal_status(message::Terminal_status(m_dispatch_manager_status)); t_dispatch_terminal_status_msg.set_passageway_direction(message::Passageway_direction::E_BILATERAL); //E_DISPATCH_POCESS_OVER { std::unique_lock t_lock(m_lock); for (auto iter = m_dispatch_response_store_map.begin(); iter != m_dispatch_response_store_map.end(); ++iter) { message::Dispatch_process_information * tp_dispatch_process_information = t_dispatch_terminal_status_msg.mutable_dispatch_store_process_information_vector()->Add(); tp_dispatch_process_information->set_car_numberplate(iter->second.parkspace_info_ex(0).car_info().car_numberplate()); tp_dispatch_process_information->set_command_key(iter->second.command_key()); tp_dispatch_process_information->set_dispatch_motion_direction(iter->second.dispatch_motion_direction()); tp_dispatch_process_information->mutable_id_struct()->CopyFrom(iter->second.id_struct()); tp_dispatch_process_information->mutable_locate_information()->CopyFrom(iter->second.locate_information()); tp_dispatch_process_information->mutable_parkspace_info_ex()->CopyFrom(iter->second.parkspace_info_ex()); tp_dispatch_process_information->set_car_type(iter->second.car_type()); tp_dispatch_process_information->set_dispatch_process_status(message::Dispatch_process_status::E_DISPATCH_POCESS_OVER); } for (auto iter = m_dispatch_response_pickup_map.begin(); iter != m_dispatch_response_pickup_map.end(); ++iter) { message::Dispatch_process_information * tp_dispatch_process_information = t_dispatch_terminal_status_msg.mutable_dispatch_pickup_process_information_vector()->Add(); tp_dispatch_process_information->set_car_numberplate(iter->second.parkspace_info_ex(0).car_info().car_numberplate()); tp_dispatch_process_information->set_command_key(iter->second.command_key()); tp_dispatch_process_information->set_dispatch_motion_direction(iter->second.dispatch_motion_direction()); tp_dispatch_process_information->mutable_id_struct()->CopyFrom(iter->second.id_struct()); tp_dispatch_process_information->mutable_locate_information()->CopyFrom(iter->second.locate_information()); tp_dispatch_process_information->mutable_parkspace_info_ex()->CopyFrom(iter->second.parkspace_info_ex()); tp_dispatch_process_information->set_car_type(iter->second.car_type()); tp_dispatch_process_information->set_dispatch_process_status(message::Dispatch_process_status::E_DISPATCH_POCESS_OVER); } } //E_DISPATCH_POCESS_WORKING { if ( m_dispatch_plc.get_dispatch_plc_status() == Dispatch_plc::Dispatch_plc_status::DISPATCH_PLC_REQUEST || m_dispatch_plc.get_dispatch_plc_status() == Dispatch_plc::Dispatch_plc_status::DISPATCH_PLC_WORKING|| m_dispatch_plc.get_dispatch_plc_status() == Dispatch_plc::Dispatch_plc_status::DISPATCH_PLC_BUSY) { message::Dispatch_request_msg t_dispatch_request_msg = m_dispatch_plc.get_dispatch_request_msg(); if ( t_dispatch_request_msg.dispatch_motion_direction() == message::Dispatch_motion_direction::E_STORE_CAR ) { message::Dispatch_process_information * tp_dispatch_process_information = t_dispatch_terminal_status_msg.mutable_dispatch_store_process_information_vector()->Add(); tp_dispatch_process_information->set_car_numberplate(t_dispatch_request_msg.parkspace_info_ex(0).car_info().car_numberplate()); tp_dispatch_process_information->set_command_key(t_dispatch_request_msg.command_key()); tp_dispatch_process_information->set_dispatch_motion_direction(t_dispatch_request_msg.dispatch_motion_direction()); tp_dispatch_process_information->mutable_id_struct()->CopyFrom(t_dispatch_request_msg.id_struct()); tp_dispatch_process_information->mutable_locate_information()->CopyFrom(t_dispatch_request_msg.locate_information()); tp_dispatch_process_information->mutable_parkspace_info_ex()->CopyFrom(t_dispatch_request_msg.parkspace_info_ex()); tp_dispatch_process_information->set_car_type(t_dispatch_request_msg.car_type()); tp_dispatch_process_information->set_dispatch_process_status(message::Dispatch_process_status::E_DISPATCH_POCESS_WORKING); } else { message::Dispatch_process_information * tp_dispatch_process_information = t_dispatch_terminal_status_msg.mutable_dispatch_pickup_process_information_vector()->Add(); tp_dispatch_process_information->set_car_numberplate(t_dispatch_request_msg.parkspace_info_ex(0).car_info().car_numberplate()); tp_dispatch_process_information->set_command_key(t_dispatch_request_msg.command_key()); tp_dispatch_process_information->set_dispatch_motion_direction(t_dispatch_request_msg.dispatch_motion_direction()); tp_dispatch_process_information->mutable_id_struct()->CopyFrom(t_dispatch_request_msg.id_struct()); tp_dispatch_process_information->mutable_locate_information()->CopyFrom(t_dispatch_request_msg.locate_information()); tp_dispatch_process_information->mutable_parkspace_info_ex()->CopyFrom(t_dispatch_request_msg.parkspace_info_ex()); tp_dispatch_process_information->set_car_type(t_dispatch_request_msg.car_type()); tp_dispatch_process_information->set_dispatch_process_status(message::Dispatch_process_status::E_DISPATCH_POCESS_WORKING); } } } //E_DISPATCH_POCESS_WAIT { std::unique_lock t_lock(m_lock); int t_store_wait_number = 1; for (auto iter = m_dispatch_request_store_list.begin(); iter != m_dispatch_request_store_list.end(); ++iter) { message::Dispatch_process_information * tp_dispatch_process_information = t_dispatch_terminal_status_msg.mutable_dispatch_store_process_information_vector()->Add(); tp_dispatch_process_information->set_car_numberplate(iter->parkspace_info_ex(0).car_info().car_numberplate()); tp_dispatch_process_information->set_command_key(iter->command_key()); tp_dispatch_process_information->set_dispatch_motion_direction(iter->dispatch_motion_direction()); tp_dispatch_process_information->mutable_id_struct()->CopyFrom(iter->id_struct()); tp_dispatch_process_information->mutable_locate_information()->CopyFrom(iter->locate_information()); tp_dispatch_process_information->mutable_parkspace_info_ex()->CopyFrom(iter->parkspace_info_ex()); tp_dispatch_process_information->set_car_type(iter->car_type()); tp_dispatch_process_information->set_dispatch_process_status(message::Dispatch_process_status::E_DISPATCH_POCESS_WAIT); tp_dispatch_process_information->set_m_wait_number(t_store_wait_number); t_store_wait_number++; } int t_pickup_wait_number = 1; for (auto iter = m_dispatch_request_pickup_list.begin(); iter != m_dispatch_request_pickup_list.end(); ++iter) { message::Dispatch_process_information * tp_dispatch_process_information = t_dispatch_terminal_status_msg.mutable_dispatch_pickup_process_information_vector()->Add(); tp_dispatch_process_information->set_car_numberplate(iter->parkspace_info_ex(0).car_info().car_numberplate()); tp_dispatch_process_information->set_command_key(iter->command_key()); tp_dispatch_process_information->set_dispatch_motion_direction(iter->dispatch_motion_direction()); tp_dispatch_process_information->mutable_id_struct()->CopyFrom(iter->id_struct()); tp_dispatch_process_information->mutable_locate_information()->CopyFrom(iter->locate_information()); tp_dispatch_process_information->mutable_parkspace_info_ex()->CopyFrom(iter->parkspace_info_ex()); tp_dispatch_process_information->set_car_type(iter->car_type()); tp_dispatch_process_information->set_dispatch_process_status(message::Dispatch_process_status::E_DISPATCH_POCESS_WAIT); tp_dispatch_process_information->set_m_wait_number(t_pickup_wait_number); t_pickup_wait_number++; } } std::string t_store_updata_time = Time_tool::get_instance_references().get_time_string_millisecond(m_store_updata_time); std::string t_pickup_updata_time = Time_tool::get_instance_references().get_time_string_millisecond(m_pickup_updata_time); t_dispatch_terminal_status_msg.set_dispatch_store_process_information_updata_time(t_store_updata_time); t_dispatch_terminal_status_msg.set_dispatch_pickup_process_information_updata_time(t_pickup_updata_time); t_msg1 = t_dispatch_terminal_status_msg.SerializeAsString(); System_communication::get_instance_references().encapsulate_msg(t_msg1); return Error_code::SUCCESS; } //在流程的map 里面释放指定的流程 Error_manager Dispatch_manager::release_dispatch_process(std::string command_key) { std::unique_lock t_lock(m_lock); return Error_code::SUCCESS; } //调度模块 ///地面雷达的状态消息(地面雷达->null) Error_manager Dispatch_manager::execute_for_ground_status_msg(message::Ground_status_msg ground_status_msg) { int t_inlet_id = ground_status_msg.mutable_id_struct()->terminal_id() %2; return m_dispatch_ground_lidar[t_inlet_id].execute_for_ground_status_msg(ground_status_msg); return Error_code::SUCCESS; } //调度模块 ///单片机的状态消息 Error_manager Dispatch_manager::execute_for_singlechip_data_msg(message::Singlechip_data singlechip_data_msg, bool validity) { if ( singlechip_data_msg.has_terminalid() && singlechip_data_msg.has_dispatchdirection() ) { if ( singlechip_data_msg.terminalid() >=0 && singlechip_data_msg.terminalid() <=5 && singlechip_data_msg.dispatchdirection() >=1 && singlechip_data_msg.dispatchdirection() <=2 ) { int t_temp = (singlechip_data_msg.terminalid() %2) + (singlechip_data_msg.dispatchdirection()-1)*2; return m_dispatch_singlechip[t_temp].execute_for_singlechip_data_msg(singlechip_data_msg, validity); } } return Error_code::SUCCESS; } Dispatch_manager::Dispatch_manager_status Dispatch_manager::get_dispatch_manager_status() { return m_dispatch_manager_status; } int Dispatch_manager::get_dispatch_manager_id() { return m_dispatch_manager_id; } void Dispatch_manager::set_dispatch_manager_id(int dispatch_manager_id) { m_dispatch_manager_id = dispatch_manager_id; } //资源分配 void Dispatch_manager::resource_allocation() { LOG(INFO) << " Dispatch_manager::resource_allocation() start " << this; Error_manager t_error; while (m_dispatch_manager_condition.is_alive()) { m_dispatch_manager_condition.wait(); if ( m_dispatch_manager_condition.is_alive() ) { std::this_thread::sleep_for(std::chrono::microseconds(1)); std::this_thread::sleep_for(std::chrono::milliseconds(100)); // std::this_thread::sleep_for(std::chrono::seconds(1)); std::this_thread::yield(); std::unique_lock t_lock(m_lock); //排序和资源分配 if ( m_dispatch_plc.get_dispatch_plc_status() == Dispatch_plc::Dispatch_plc_status::DISPATCH_PLC_READY ) { //补全 id_struct if ( m_dispatch_motion_direction_next == Common_data::Dispatch_motion_direction::DISPATCH_MOTION_DIRECTION_PICKUP) { //判断2个出口是否空闲, 在资源分配时,提前分配好出口终端号 if ( Dispatch_manager::get_instance_references().m_dispatch_singlechip[2].is_outlet_ready() ) { auto iter = m_dispatch_request_pickup_list.begin(); if ( iter != m_dispatch_request_pickup_list.end() ) { iter->mutable_id_struct()->set_terminal_id(m_dispatch_manager_id*2); m_dispatch_plc.execute_for_dispatch_request_msg(*iter); m_dispatch_request_pickup_list.erase(iter); m_pickup_updata_time = std::chrono::system_clock::now(); } } else if ( Dispatch_manager::get_instance_references().m_dispatch_singlechip[3].is_outlet_ready() ) { auto iter = m_dispatch_request_pickup_list.begin(); if ( iter != m_dispatch_request_pickup_list.end() ) { iter->mutable_id_struct()->set_terminal_id(m_dispatch_manager_id*2+1); m_dispatch_plc.execute_for_dispatch_request_msg(*iter); m_dispatch_request_pickup_list.erase(iter); m_pickup_updata_time = std::chrono::system_clock::now(); } } //else什么也不做,直接切换到存车就行 m_dispatch_motion_direction_next = Common_data::Dispatch_motion_direction::DISPATCH_MOTION_DIRECTION_STORE; } else if ( m_dispatch_motion_direction_next == Common_data::Dispatch_motion_direction::DISPATCH_MOTION_DIRECTION_STORE ) { auto iter = m_dispatch_request_store_list.begin(); if ( iter != m_dispatch_request_store_list.end() ) { iter->mutable_id_struct()->set_unit_id(m_dispatch_manager_id ); m_dispatch_plc.execute_for_dispatch_request_msg(*iter); m_dispatch_request_store_list.erase(iter); m_store_updata_time = std::chrono::system_clock::now(); } m_dispatch_motion_direction_next = Common_data::Dispatch_motion_direction::DISPATCH_MOTION_DIRECTION_PICKUP; } else { /////// } } //检查时间, 并删除存车完成 for (auto iter = m_dispatch_response_store_map.begin(); iter != m_dispatch_response_store_map.end();) { if ( std::chrono::system_clock::now() - iter->first > std::chrono::seconds(10) ) { iter = m_dispatch_response_store_map.erase(iter); m_store_updata_time = std::chrono::system_clock::now(); } else { ++iter; } } //检查出口, 并删除取车完成 //判断2个出口是否空闲 if ( Dispatch_manager::get_instance_references().m_dispatch_singlechip[2].is_outlet_ready() ) { if ( m_dispatch_response_pickup_map.find(m_dispatch_manager_id*2) != m_dispatch_response_pickup_map.end() ) { m_dispatch_response_pickup_map.erase(m_dispatch_manager_id*2); m_pickup_updata_time = std::chrono::system_clock::now(); } } else if ( Dispatch_manager::get_instance_references().m_dispatch_singlechip[3].is_outlet_ready() ) { if ( m_dispatch_response_pickup_map.find(m_dispatch_manager_id*2+1) != m_dispatch_response_pickup_map.end() ) { m_dispatch_response_pickup_map.erase(m_dispatch_manager_id*2+1); m_pickup_updata_time = std::chrono::system_clock::now(); } } } } LOG(INFO) << " Dispatch_manager::resource_allocation() end "<< this; return; }