laser_task_command.cpp 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. //laser_task_command,是雷达任务指令的相关功能
  2. //功能:用作应用层向laser模块传输任务,的指令消息
  3. //用法:应用层直接调用laser的接口函数,并将Laser_task类作为参数传递
  4. //CLaser类则按照Laser_task的功能码和指定的参数,执行相应的功能
  5. //并将结果填充到Laser_task,返回给应用层
  6. #include "laser_task_command.h"
  7. //构造函数,构造函数锁定任务类型为LASER_TASK,后续不允许更改
  8. Laser_task::Laser_task()
  9. {
  10. //构造函数锁定任务类型为 LASER_BASE_SCAN_TASK,后续不允许更改
  11. m_task_type = LASER_BASE_SCAN_TASK;
  12. m_task_statu = TASK_CREATED;
  13. m_task_statu_information.clear();
  14. m_task_error_manager.error_manager_clear_all();
  15. m_task_frame_maxnum = 0;
  16. m_task_save_flag = false;//默认不保存,false
  17. m_task_save_path.clear();
  18. mp_task_point_cloud = NULL;
  19. mp_task_cloud_lock = NULL;
  20. }
  21. //析构函数
  22. Laser_task::~Laser_task()
  23. {
  24. }
  25. //初始化任务单,必须初始化之后才可以使用,(必选参数)
  26. // input:p_task_cloud_lock 三维点云的数据保护锁
  27. // output:p_task_point_cloud 三维点云容器的智能指针
  28. //注:task_frame_maxnum默认为0,如果为0,则使用laser默认的点云的采集帧数最大值 TASK_FRAME_MAXNUM_DEFAULT
  29. Error_manager Laser_task::task_init(std::mutex* p_task_cloud_lock,
  30. pcl::PointCloud<pcl::PointXYZ>::Ptr p_task_point_cloud)
  31. {
  32. if(p_task_point_cloud.get() == NULL)
  33. {
  34. return Error_manager(POINTER_IS_NULL, MINOR_ERROR,
  35. "Laser_task::task_init p_task_point_cloud is null");
  36. }
  37. if(p_task_cloud_lock==NULL)
  38. {
  39. return Error_manager(POINTER_IS_NULL,MINOR_ERROR,
  40. "Laser_manager_task::task_init p_task_cloud_lock is null");
  41. }
  42. m_task_statu = TASK_CREATED;
  43. m_task_statu_information.clear();
  44. m_task_error_manager.error_manager_clear_all();
  45. m_task_frame_maxnum = TASK_FRAME_MAXNUM_DEFAULT;
  46. m_task_save_flag = false;
  47. m_task_save_path.clear();
  48. mp_task_cloud_lock=p_task_cloud_lock;
  49. mp_task_point_cloud = p_task_point_cloud;
  50. return Error_code::SUCCESS;
  51. }
  52. //初始化任务单,必须初始化之后才可以使用,(可选参数)
  53. // input:task_statu 任务状态
  54. // input:task_statu_information 状态说明
  55. // input:tast_receiver 接受对象
  56. // input:task_over_time 超时时间
  57. // input:task_frame_maxnum 点云的采集帧数最大值
  58. // input:task_save_flag 是否保存
  59. // input:task_save_path 保存路径
  60. // input:p_task_cloud_lock 三维点云的数据保护锁
  61. // output:p_task_point_cloud 三维点云容器的智能指针
  62. //注:task_frame_maxnum默认为0,如果为0,则使用laser默认的点云的采集帧数最大值 TASK_FRAME_MAXNUM_DEFAULT
  63. Error_manager Laser_task::task_init(Task_statu task_statu,
  64. std::string task_statu_information,
  65. void* p_tast_receiver,
  66. std::chrono::milliseconds task_over_time,
  67. unsigned int task_frame_maxnum,
  68. bool task_save_flag,
  69. std::string task_save_path,
  70. std::mutex* p_task_cloud_lock,
  71. pcl::PointCloud<pcl::PointXYZ>::Ptr p_task_point_cloud
  72. )
  73. {
  74. if(p_task_point_cloud.get() == NULL)
  75. {
  76. return Error_manager(POINTER_IS_NULL, MINOR_ERROR,
  77. "Laser_task::task_init p_task_point_cloud is null");
  78. }
  79. if(p_task_cloud_lock==NULL)
  80. {
  81. return Error_manager(POINTER_IS_NULL,MINOR_ERROR,
  82. "Laser_manager_task::task_init p_task_cloud_lock is null");
  83. }
  84. m_task_statu = task_statu;
  85. m_task_statu_information = task_statu_information;
  86. mp_tast_receiver = p_tast_receiver;
  87. m_task_over_time = task_over_time;
  88. m_task_error_manager.error_manager_clear_all();
  89. if ( task_frame_maxnum == 0 )
  90. {
  91. m_task_frame_maxnum = TASK_FRAME_MAXNUM_DEFAULT;
  92. }
  93. else
  94. {
  95. m_task_frame_maxnum = task_frame_maxnum;
  96. }
  97. m_task_save_flag = task_save_flag;
  98. m_task_save_path = task_save_path;
  99. mp_task_cloud_lock=p_task_cloud_lock;
  100. mp_task_point_cloud = p_task_point_cloud;
  101. return Error_code::SUCCESS;
  102. }
  103. //push点云,把 point_xyz 添加到 p_task_point_cloud 里面。
  104. Error_manager Laser_task::task_push_point(pcl::PointXYZ* p_point_xyz)
  105. {
  106. if(mp_task_cloud_lock==NULL)
  107. {
  108. return Error_manager(POINTER_IS_NULL,MINOR_ERROR,
  109. "push_point laser task input lock is null");
  110. }
  111. if(mp_task_point_cloud.get()==NULL)
  112. {
  113. return Error_manager(Error_code::POINTER_IS_NULL, Error_level::MINOR_ERROR,
  114. "Laser_task::task_push_point p_task_point_cloud is null");
  115. }
  116. //加锁,并添加三维点。
  117. mp_task_cloud_lock->lock();
  118. mp_task_point_cloud->push_back(*p_point_xyz);
  119. mp_task_cloud_lock->unlock();
  120. return SUCCESS;
  121. }
  122. //获取 点云的采集帧数最大值
  123. unsigned int Laser_task::get_task_frame_maxnum()
  124. {
  125. return m_task_frame_maxnum;
  126. }
  127. //获取采集的点云保存文件的使能标志位
  128. bool Laser_task::get_task_save_flag()
  129. {
  130. return m_task_save_flag;
  131. }
  132. //获取采集的点云保存路径
  133. std::string Laser_task::get_task_save_path()
  134. {
  135. return m_task_save_path;
  136. }
  137. //获取 三维点云容器的智能指针
  138. std::mutex* Laser_task::get_task_cloud_lock()
  139. {
  140. return mp_task_cloud_lock;
  141. }
  142. //获取 三维点云容器的智能指针
  143. pcl::PointCloud<pcl::PointXYZ>::Ptr Laser_task::get_task_point_cloud()
  144. {
  145. return mp_task_point_cloud;
  146. }
  147. //设置 点云的采集帧数最大值
  148. void Laser_task::set_task_frame_maxnum(unsigned int task_frame_maxnum)
  149. {
  150. m_task_frame_maxnum = task_frame_maxnum;
  151. }
  152. //设置采集的点云保存文件的使能标志位
  153. void Laser_task::set_task_save_flag(bool task_save_flag)
  154. {
  155. m_task_save_flag=task_save_flag;
  156. }
  157. //设置采集的点云保存路径
  158. void Laser_task::set_task_save_path(std::string task_save_path)
  159. {
  160. m_task_save_path=task_save_path;
  161. }
  162. //设置采集的点云保存标志位和路径
  163. void Laser_task::set_task_save_flag_and_path(bool task_save_flag, std::string task_save_path)
  164. {
  165. m_task_save_flag=task_save_flag;
  166. m_task_save_path=task_save_path;
  167. }