24#include <unordered_map>
26#include "modules/canbus/proto/canbus_conf.pb.h"
27#include "modules/common_msgs/basic_msgs/error_code.pb.h"
28#include "modules/common_msgs/chassis_msgs/chassis.pb.h"
29#include "modules/common_msgs/control_msgs/control_cmd.pb.h"
30#include "modules/common_msgs/external_command_msgs/chassis_command.pb.h"
49using ::apollo::drivers::canbus::CanReceiver;
50using ::apollo::drivers::canbus::CanSender;
51using ::apollo::drivers::canbus::MessageManager;
59template <
typename SensorType>
72 MessageManager<SensorType> *
const message_manager) = 0;
123 virtual void Emergency() = 0;
139 virtual void Brake(
double acceleration) = 0;
144 virtual void Throttle(
double throttle) = 0;
150 virtual void Acceleration(
double acc) = 0;
155 virtual void Speed(
double speed) {}
161 virtual void Steer(
double angle) = 0;
167 virtual void Steer(
double angle,
double angle_spd) = 0;
173 virtual void SetLimits() {}
185 if (signal.has_high_beam() || signal.has_low_beam()) SetBeam(signal);
186 if (signal.has_horn()) SetHorn(signal);
187 if (signal.has_turn_signal()) SetTurningSignal(signal);
190 virtual void SetBeam(
const common::VehicleSignal &signal) = 0;
191 virtual void SetHorn(
const common::VehicleSignal &signal) = 0;
192 virtual void SetTurningSignal(
const common::VehicleSignal &signal) = 0;
198 virtual common::VehicleSignal ProcessCommandChange(
199 const common::VehicleSignal &signal, common::VehicleSignal *last_command);
205 virtual bool VerifyID() = 0;
233template <
typename SensorType>
235 SensorType chassis_detail_sender;
236 if (message_manager_->GetSensorCheckSenderData(&chassis_detail_sender) !=
238 AERROR_EVERY(100) <<
"Get " <<
typeid(SensorType).name()
239 <<
" chassis receive detail failed.";
241 size_t sender_data_size = chassis_detail_sender.ByteSizeLong();
242 ADEBUG <<
"check chassis detail sender_data_size is " << sender_data_size;
243 int64_t end_time = 0;
244 if ((sender_data_size_previous_ < 2) && (sender_data_size > 2)) {
246 ADEBUG <<
"end_time is " << end_time;
247 if (start_time_ > 0) {
248 const double sender_diff = (end_time - start_time_) * 1e-3;
249 ADEBUG <<
"sender protocol preiod is " << sender_diff;
251 }
else if ((sender_data_size_previous_ > 2) && (sender_data_size < 2)) {
253 ADEBUG <<
"start_time_ is " << start_time_;
255 sender_data_size_previous_ = sender_data_size;
256 message_manager_->ClearSensorCheckSenderData();
258 SensorType chassis_detail_receiver;
259 if (message_manager_->GetSensorCheckRecvData(&chassis_detail_receiver) !=
261 AERROR_EVERY(100) <<
"Get " <<
typeid(SensorType).name()
262 <<
" chassis receive detail failed.";
264 ADEBUG <<
"chassis_detail_receiver is "
265 << chassis_detail_receiver.ShortDebugString();
266 size_t receiver_data_size = chassis_detail_receiver.ByteSizeLong();
267 ADEBUG <<
"check chassis detail receiver_data_size is " << receiver_data_size;
269 if (receiver_data_size < 2) {
270 if (is_need_count_) {
271 lost_chassis_reveive_detail_count_++;
274 lost_chassis_reveive_detail_count_ = 0;
275 is_need_count_ =
true;
277 ADEBUG <<
"lost_chassis_reveive_detail_count_ is "
278 << lost_chassis_reveive_detail_count_;
280 if (lost_chassis_reveive_detail_count_ > 100) {
281 is_need_count_ =
false;
282 is_chassis_communication_error_ =
true;
283 AERROR <<
typeid(SensorType).name()
284 <<
" chassis detail is lost, please check the "
285 "communication error.";
286 message_manager_->ClearSensorCheckRecvData();
287 message_manager_->ResetSendMessages();
290 is_chassis_communication_error_ =
false;
292 message_manager_->ClearSensorCheckRecvData();
297template <
typename SensorType>
300template <
typename SensorType>
302 SensorType receiver_chassis_detail;
303 if (message_manager_->GetSensorRecvData(&receiver_chassis_detail) !=
305 AERROR_EVERY(100) <<
"Get " <<
typeid(SensorType).name()
306 <<
" chassis detail receiver failed.";
307 return receiver_chassis_detail;
309 ADEBUG <<
"receiver_chassis_detail is "
310 << receiver_chassis_detail.ShortDebugString();
311 if (is_chassis_communication_error_) {
312 message_manager_->ClearSensorRecvData();
314 return receiver_chassis_detail;
317template <
typename SensorType>
319 SensorType sender_chassis_detail;
320 if (message_manager_->GetSensorSenderData(&sender_chassis_detail) !=
322 AERROR_EVERY(100) <<
"Get " <<
typeid(SensorType).name()
323 <<
" chassis detail receiver failed.";
324 return sender_chassis_detail;
326 message_manager_->GetSensorSenderData(&sender_chassis_detail);
327 ADEBUG <<
"sender_chassis_detail is "
328 << sender_chassis_detail.ShortDebugString();
329 if (can_sender_->IsMessageClear()) {
330 message_manager_->ClearSensorSenderData();
332 return sender_chassis_detail;
335template <
typename SensorType>
337 std::lock_guard<std::mutex> lock(mode_mutex_);
338 return driving_mode_;
341template <
typename SensorType>
344 std::lock_guard<std::mutex> lock(mode_mutex_);
345 driving_mode_ = driving_mode;
348template <
typename SensorType>
352 AINFO <<
"Can't set vehicle to EMERGENCY_MODE driving mode.";
353 return ErrorCode::CANBUS_ERROR;
360 <<
"Vehicle in EMERGENCY_MODE, only response to COMPLETE_MANUAL mode.";
361 AINFO <<
"Only response to RESET ACTION.";
362 return ErrorCode::CANBUS_ERROR;
366 if (this->driving_mode() == driving_mode) {
367 return ErrorCode::OK;
370 switch (driving_mode) {
372 if (EnableAutoMode() != ErrorCode::OK) {
373 AERROR <<
"Failed to enable auto mode.";
374 return ErrorCode::CANBUS_ERROR;
379 if (DisableAutoMode() != ErrorCode::OK) {
380 AERROR <<
"Failed to disable auto mode.";
381 return ErrorCode::CANBUS_ERROR;
386 if (EnableSteeringOnlyMode() != ErrorCode::OK) {
387 AERROR <<
"Failed to enable steer only mode.";
388 return ErrorCode::CANBUS_ERROR;
393 if (EnableSpeedOnlyMode() != ErrorCode::OK) {
394 AERROR <<
"Failed to enable speed only mode";
395 return ErrorCode::CANBUS_ERROR;
402 return ErrorCode::OK;
405template <
typename SensorType>
408 if (!is_initialized_) {
409 AERROR <<
"Controller is not initialized.";
410 return ErrorCode::CANBUS_ERROR;
413 if (control_command.has_pad_msg() && control_command.
pad_msg().has_action()) {
414 ADEBUG <<
"Canbus received pad msg: "
415 << control_command.
pad_msg().ShortDebugString();
418 const double pad_msg_time_diff =
421 if ((FLAGS_chassis_debug_mode ||
422 (pad_msg_time_diff < FLAGS_pad_msg_delay_interval)) &&
423 !is_chassis_communication_error_) {
427 AINFO <<
"Response vid failed, please request again.";
429 AINFO <<
"Response vid success!";
440 AINFO <<
"Into the Reset action.";
444 AERROR <<
"No response for this action.";
448 auto error_code = SetDrivingMode(mode);
449 if (error_code != ErrorCode::OK) {
450 AERROR <<
"Failed to set driving mode.";
452 AINFO <<
"Set driving mode success.";
456 ADEBUG <<
"pad msg time out, current time interval is "
457 << pad_msg_time_diff <<
" s, threshold is "
458 << FLAGS_pad_msg_delay_interval <<
" s";
465 Throttle(control_command.
throttle());
467 Speed(control_command.
speed());
469 SetEpbBreak(control_command);
475 const double steering_rate_threshold = 1.0;
476 if (control_command.
steering_rate() > steering_rate_threshold) {
486 control_command.has_signal()) {
488 ProcessCommandChange(control_command.
signal(), &last_control_command_));
491 return ErrorCode::OK;
494template <
typename SensorType>
497 if (!is_initialized_) {
498 AERROR <<
"Controller is not initialized.";
499 return ErrorCode::CANBUS_ERROR;
505 chassis_command.has_basic_signal()) {
506 HandleVehicleSignal(ProcessCommandChange(chassis_command.
basic_signal(),
507 &last_chassis_command_));
510 if (chassis_command.has_custom_operation()) {
511 auto result = HandleCustomOperation(chassis_command);
512 if (result != ErrorCode::OK) {
517 return ErrorCode::OK;
520template <
typename SensorType>
525 if (vehicle_signal.has_high_beam()) {
526 if ((last_command->has_high_beam() &&
527 last_command->
high_beam() != vehicle_signal.has_high_beam()) ||
528 !last_command->has_high_beam()) {
529 vehicle_signal_end.set_high_beam(vehicle_signal.
high_beam());
533 if (vehicle_signal.has_low_beam()) {
534 if ((last_command->has_low_beam() &&
535 last_command->
low_beam() != vehicle_signal.has_low_beam()) ||
536 !last_command->has_low_beam()) {
537 vehicle_signal_end.set_low_beam(vehicle_signal.
low_beam());
541 if (vehicle_signal.has_horn()) {
542 if ((last_command->has_horn() &&
543 last_command->
horn() != vehicle_signal.
horn()) ||
544 !last_command->
horn()) {
545 vehicle_signal_end.set_horn(vehicle_signal.
horn());
549 if (vehicle_signal.has_turn_signal()) {
550 if ((last_command->has_turn_signal() &&
553 vehicle_signal_end.set_turn_signal(vehicle_signal.
turn_signal());
556 *last_command = vehicle_signal_end;
557 return vehicle_signal_end;
Defines CanReceiver class.
Defines SenderMessage class and CanSender class.
This is the interface class of vehicle controller.
common::VehicleParam vehicle_params_
canbus::VehicleParameter params_
CanSender< SensorType > * can_sender_
virtual common::ErrorCode SetDrivingMode(const Chassis::DrivingMode &driving_mode)
set vehicle to appointed driving mode.
Chassis::DrivingMode driving_mode_
common::VehicleSignal last_chassis_command_
virtual void set_driving_mode(const Chassis::DrivingMode &driving_mode)
CanReceiver< SensorType > * can_receiver_
virtual SensorType GetNewSenderChassisDetail()
virtual bool CheckChassisCommunicationError()
virtual common::ErrorCode Init(const VehicleParameter ¶ms, CanSender< SensorType > *const can_sender, MessageManager< SensorType > *const message_manager)=0
initialize the vehicle controller.
virtual Chassis chassis()=0
calculate and return the chassis.
virtual ~VehicleController()=default
virtual void AddSendMessage()
size_t sender_data_size_previous_
MessageManager< SensorType > * message_manager_
virtual void Stop()=0
stop the vehicle controller.
virtual common::ErrorCode Update(const external_command::ChassisCommand &command)
bool is_chassis_communication_error_
uint32_t lost_chassis_reveive_detail_count_
virtual common::ErrorCode Update(const control::ControlCommand &command)
update the vehicle controller.
virtual bool Start()=0
start the vehicle controller.
common::VehicleSignal last_control_command_
virtual SensorType GetNewRecvChassisDetail()
virtual Chassis::DrivingMode driving_mode()
Cyber has builtin time type Time.
uint64_t ToMicrosecond() const
convert time to microsecond (us).
static Time Now()
get the current time.
double ToSecond() const
convert time to second.
#define AERROR_EVERY(freq)
The class of MessageManager
The class of ProtocolData
optional TurnSignal turn_signal
optional double steering_target
optional PadMessage pad_msg
optional double steering_rate
optional apollo::common::VehicleSignal signal
optional double acceleration
optional apollo::canbus::Chassis::GearPosition gear_location
optional DrivingAction action
optional apollo::common::Header header
optional apollo::common::VehicleSignal basic_signal