LivoxLaser.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. #ifndef __LIVOX_MID_40_LIDAR__H
  2. #define __LIVOX_MID_40_LIDAR__H
  3. #include "Laser.h"
  4. #include "livox_def.h"
  5. #include "livox_sdk.h"
  6. #include <map>
  7. //大疆livox雷达,从Laser_base继承。
  8. class CLivoxLaser :public Laser_base
  9. {
  10. protected:
  11. //雷达设备状态,livox管理底层sdk,后台线程的工作状态
  12. typedef enum
  13. {
  14. kDeviceStateDisconnect = 0, //雷达设备状态 断开连接
  15. kDeviceStateConnect = 1, //雷达设备状态 连接正常
  16. kDeviceStateSampling = 2, //雷达设备状态 正在扫描
  17. } DeviceState;
  18. //雷达设备信息,
  19. typedef struct
  20. {
  21. uint8_t handle; //雷达控制句柄
  22. DeviceState device_state; //雷达设备状态
  23. DeviceInfo info; //雷达基本信息
  24. } DeviceItem;
  25. public:
  26. CLivoxLaser() = delete;
  27. CLivoxLaser(const CLivoxLaser& other) = delete;
  28. //唯一的构造函数,按照设备名称和雷达参数来创建实例。
  29. //input:id: 雷达设备的id,(唯一索引)
  30. //input:laser_param:雷达的参数,
  31. //注:利用protobuf创建 laser_parameter 类,然后从文件读取参数
  32. CLivoxLaser(int id, Laser_proto::laser_parameter laser_param);
  33. ~CLivoxLaser();
  34. //雷达链接设备,为3个线程添加线程执行函数。
  35. virtual Error_manager connect_laser();
  36. //雷达断开链接,释放3个线程
  37. virtual Error_manager disconnect_laser();
  38. //对外的接口函数,负责接受并处理任务单,
  39. //input:p_laser_task 雷达任务单,基类的指针,指向子类的实例,(多态)
  40. //注:这个函数为虚函数,实际的处理任务的代码由子类重载并实现。
  41. virtual Error_manager execute_task(Task_Base* p_laser_task);
  42. //检查雷达状态,是否正常运行
  43. virtual Error_manager check_laser();
  44. //雷达的启动接口函数, 让雷达进行扫描,一般需要子类重载,不同的雷达开始方式不同。
  45. virtual Error_manager start_scan();
  46. //雷达的停止接口函数, 让雷达停止扫描,一般需要子类重载,不同的雷达结束方式不同。
  47. virtual Error_manager stop_scan();
  48. //结束任务单,stop之后,要检查线程状态和数据结果,然后才能 end_task
  49. virtual Error_manager end_task();
  50. //判断雷达状态是否为待机,如果已经准备好,则可以执行任务。
  51. //子类重载 is_ready(),里面增加livox sdk后台线程状态的判断。
  52. virtual bool is_ready();
  53. protected:
  54. //接受二进制消息的功能函数,每次只接受一个CBinaryData
  55. // 纯虚函数,必须由子类重载,
  56. virtual bool receive_buf_to_queue(Binary_buf& binary_buf);
  57. //将二进制消息转化为三维点云的功能函数,每次只转化一个CBinaryData,
  58. // 纯虚函数,必须由子类重载,
  59. virtual Buf_type transform_buf_to_points(Binary_buf* p_binary_buf, std::vector<CPoint3D>& point3D_cloud);
  60. protected:
  61. static void InitLivox();
  62. virtual bool IsScanComplete();
  63. virtual void UpdataHandle();
  64. static void LidarDataCallback(uint8_t handle, LivoxEthPacket *data, uint32_t data_num, void *laser);
  65. static void OnDeviceChange(const DeviceInfo *info, DeviceEvent type);
  66. static void OnDeviceBroadcast(const BroadcastDeviceInfo *info);
  67. static void OnSampleCallback(uint8_t status, uint8_t handle, uint8_t response, void *data);
  68. protected:
  69. uint8_t m_handle;
  70. unsigned int m_frame_maxnum;
  71. Thread_safe_queue<Binary_buf*> m_queue_livox_data;
  72. static DeviceItem g_devices[kMaxLidarCount];
  73. static std::map<uint8_t,std::string> g_handle_sn;
  74. static std::map<std::string, uint8_t> g_sn_handle;
  75. static std::map<std::string, CLivoxLaser*> g_sn_laser;
  76. static CLivoxLaser* g_all_laser[kMaxLidarCount];
  77. static unsigned int g_count[kMaxLidarCount];
  78. };
  79. #endif