error_code.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. //Error_code是错误码的底层通用模块,
  2. //功能:用作故障分析和处理。
  3. //用法:所有的功能接口函数return错误管理类,
  4. //然后上层判断分析错误码,并进行故障处理。
  5. #ifndef TEST_ERROR_ERROR_CODE_H
  6. #define TEST_ERROR_ERROR_CODE_H
  7. #include <string>
  8. #include <string.h>
  9. #include<iostream>
  10. //错误管理类转化为字符串 的前缀,固定长度为58
  11. //这个是由显示格式来确定的,如果要修改格式或者 Error_code长度超过8位,Error_level长度超过2位,折需要重新计算
  12. #define ERROR_NAMAGER_TO_STRING_FRONT_LENGTH 58
  13. //进程加锁的状态,
  14. enum Lock_status
  15. {
  16. UNLOCK = 0,
  17. LOCK = 1,
  18. };
  19. //设备使能状态,
  20. enum Able_status
  21. {
  22. UNABLE = 0,
  23. ENABLE = 1,
  24. };
  25. //数据是否为空
  26. enum Empty_status
  27. {
  28. NON_EMPTY = 0,
  29. EMPTY = 1,
  30. };
  31. //错误码的枚举,用来做故障分析
  32. enum Error_code
  33. {
  34. //成功,没有错误,默认值0
  35. SUCCESS = 0x00000000,
  36. //基本错误码,
  37. FAILED = 0x00000001,//失败
  38. ERROR = 0x00000002,//错误
  39. WARNING = 0x00000003,//警告
  40. PARTIAL_SUCCESS = 0x00000002,//部分成功
  41. NO_DATA = 0x00000010,//没有数据,传入参数容器内部没有数据时,
  42. INVALID_MESSAGE = 0x00000011, //无效的消息,
  43. RESPONSE_TIMEOUT = 0x00000012,
  44. PAUSE = 0x00000013, //急停
  45. TASK_CANCEL = 0x00000014, //任务取消
  46. DISCONNECT = 0x00000020, //通讯中断/断开连接
  47. UNKNOW_STATU = 0x00000021, //未知状态
  48. POINTER_IS_NULL = 0x00000101,//空指针
  49. PARAMETER_ERROR = 0x00000102,//参数错误,传入参数不符合规范时,
  50. POINTER_MALLOC_FAIL = 0x00000103,//手动分配内存失败
  51. CLASS_BASE_FUNCTION_CANNOT_USE = 0x00000201,//基类函数不允许使用,必须使用子类的
  52. CONTAINER_IS_TERMINATE = 0x00000301,//容器被终止
  53. // 错误码的规范,
  54. // 错误码是int型,32位,十六进制。
  55. // 例如0x12345678
  56. // 12表示功能模块,例如:laser雷达模块 框架制定
  57. // 34表示文件名称,例如:laser_livox.cpp 框架制定
  58. // 56表示具体的类,例如:class laser_livox 个人制定
  59. // 78表示类的函数,例如:laser_livox::start(); 个人制定
  60. // 注:错误码的制定从1开始,不要从0开始,
  61. // 0用作错误码的基数,用来位运算,来判断错误码的范围。
  62. // laser扫描模块
  63. LASER_ERROR_BASE = 0x01000000,
  64. // laser_base基类
  65. LASER_BASE_ERROR_BASE = 0x01010000,
  66. LASER_TASK_PARAMETER_ERROR = 0x01010001, //雷达基类模块, 任务输入参数错误
  67. LASER_CONNECT_FAILED, //雷达基类模块, 连接失败
  68. LASER_START_FAILED, //雷达基类模块, 开始扫描失败
  69. LASER_CHECK_FAILED, //雷达基类模块, 检查失败
  70. LASER_STATUS_BUSY, //雷达基类模块, 状态正忙
  71. LASER_STATUS_ERROR, //雷达基类模块, 状态错误
  72. LASER_TASK_OVER_TIME, //雷达基类模块, 任务超时
  73. LASER_QUEUE_ERROR, //雷达基类模块, 数据缓存错误
  74. // laser_livox.cpp的错误码
  75. LIVOX_ERROR_BASE = 0x01020000,
  76. LIVOX_START_FAILE, //livox模块,开始扫描失败
  77. LIVOX_TASK_TYPE_ERROR, //livox模块,任务类型错误
  78. lIVOX_CANNOT_PUSH_DATA, //livox模块,不能添加扫描的数据
  79. lIVOX_CHECK_FAILED, //livox模块,检查失败
  80. lIVOX_STATUS_BUSY, //livox模块,状态正忙
  81. lIVOX_STATUS_ERROR, //livox模块,状态错误
  82. //laser_manager 雷达管理模块
  83. LASER_MANAGER_ERROR_BASE = 0x01030000,
  84. LASER_MANAGER_READ_PROTOBUF_ERROR, //雷达管理模块,读取参数错误
  85. LASER_MANAGER_STATUS_BUSY, //雷达管理模块,状态正忙
  86. LASER_MANAGER_STATUS_ERROR, //雷达管理模块,状态错误
  87. LASER_MANAGER_TASK_TYPE_ERROR, //雷达管理模块,任务类型错误
  88. LASER_MANAGER_IS_NOT_READY, //雷达管理模块,不在准备状态
  89. LASER_MANAGER_LASER_INDEX_ERRPR, //雷达管理模块,雷达索引错误,编号错误。
  90. LASER_MANAGER_TASK_OVER_TIME, //雷达管理模块,任务超时
  91. LASER_MANAGER_LASER_INDEX_REPEAT, //雷达管理模块,需要扫描的雷达索引重复,可忽略的错误,提示作用
  92. //livox_driver 雷达livox驱动模块
  93. LIVOX_DRIVER_ERROR_BASE = 0x01040000,
  94. LIVOX_DRIVER_SN_REPEAT, //livox驱动模块, 雷达广播码重复
  95. LIVOX_DRIVER_SN_ERROR, //livox驱动模块, 雷达广播码错误
  96. LIVOX_SKD_INIT_FAILED, //livox驱动模块, livox_sdk初始化失败
  97. LIVOX_DRIVER_NOT_READY, //livox驱动模块, livox没有准备好.
  98. //locate 定位模块,
  99. LOCATER_ERROR_BASE = 0x03000000,
  100. //LASER_MANAGER 定位管理模块
  101. LOCATER_MANAGER_ERROR_BASE = 0x03010000,
  102. LOCATER_MSG_TABLE_NOT_EXIST , //测量反馈未找到相应的请求(致命)
  103. LOCATER_MSG_RESPONSE_TYPE_ERROR, //测量反馈消息类型错误(致命)
  104. LOCATER_MSG_RESPONSE_INFO_ERROR,
  105. LOCATER_MSG_REQUEST_CANCELED,
  106. LOCATER_MSG_REQUEST_INVALID,
  107. LOCATER_MSG_RESPONSE_HAS_NO_REQUEST,
  108. LOCATER_MSG_REQUEST_REPEATED,
  109. /*
  110. * parkspace error code
  111. */
  112. PARKSPACE_REQUEST_MSG_TYPE_ERROR = 0x04010000,
  113. PARKSPACE_ALLOCMSG_RESPONSE_HAS_NO_REQUEST,
  114. PARKSPACE_SEARCHMSG_RESPONSE_HAS_NO_REQUEST,
  115. PARKSPACE_RELEASEMSG_RESPONSE_HAS_NO_REQUEST,
  116. PARKSPACE_ALLOC_REQUEST_INVALID,
  117. PARKSPACE_SEARCH_REQUEST_INVALID,
  118. PARKSPACE_RELEASE_REQUEST_INVALID,
  119. PARKSPACE_ALLOC_REQUEST_REPEATED,
  120. PARKSPACE_SEARCH_REQUEST_REPEATED,
  121. PARKSPACE_RELEASE_REQUEST_REPEATED,
  122. PARKSPACE_ALLOC_RESPONSE_TYPE_ERROR,
  123. PARKSPACE_SEARCH_RESPONSE_TYPE_ERROR,
  124. PARKSPACE_RELEASE_RESPONSE_TYPE_ERROR,
  125. PARKSPACE_ALLOC_RESPONSE_INFO_ERROR,
  126. PARKSPACE_SEARCH_RESPONSE_INFO_ERROR,
  127. PARKSPACE_RELEASE_RESPONSE_INFO_ERROR,
  128. PARKSPACE_ALLOC_REQUEST_CANCELED,
  129. PARKSPACE_SEARCH_REQUEST_CANCELED,
  130. PARKSPACE_RELEASE_REQUEST_CANCELED,
  131. //Communication module, 通信模块
  132. COMMUNICATION_BASE_ERROR_BASE = 0x11010000,
  133. COMMUNICATION_READ_PROTOBUF_ERROR, //模块,读取参数错误
  134. COMMUNICATION_BIND_ERROR,
  135. COMMUNICATION_CONNECT_ERROR,
  136. COMMUNICATION_ANALYSIS_TIME_OUT, //解析超时,
  137. COMMUNICATION_EXCUTER_IS_BUSY, //处理器正忙, 请稍等
  138. };
  139. //错误等级,用来做故障处理
  140. enum Error_level
  141. {
  142. // 正常,没有错误,默认值0
  143. NORMAL = 0,
  144. // 轻微故障,可忽略的故障,NEGLIGIBLE_ERROR
  145. // 提示作用,不做任何处理,不影响代码的流程,
  146. // 用作一些不重要的事件,即使出错也不会影响到系统功能,
  147. // 例如:文件保存错误,等
  148. NEGLIGIBLE_ERROR = 1,
  149. // 一般故障,MINOR_ERROR
  150. // 用作底层功能函数的错误返回,表示该功能函数执行失败,
  151. // 返回给应用层之后,需要做故障分析和处理,
  152. // 例如:雷达数据传输失败,应用层就需要进行重新扫描,或者重连,或者重置参数等。
  153. MINOR_ERROR = 2,
  154. // 严重故障,MAJOR_ERROR
  155. // 用作应用层的任务事件的结果,表示该功能模块失败。
  156. // 通常是底层函数返回一般故障之后,应用层无法处理并解决故障,此时就要进行故障升级,
  157. // 从一般故障升级为严重故障,然后进行回退流程,回退已经执行的操作,最终回到故障待机状态。
  158. // 需要外部清除故障,并复位至正常待机状态,才能恢复功能的使用。
  159. // 例如:雷达扫描任务失败,且无法自动恢复。
  160. MAJOR_ERROR = 3,
  161. // 致命故障,CRITICAL_ERROR
  162. // 系统出现致命错误。导致系统无法正常运行,
  163. // 此时系统应该紧急停机,执行紧急流程,快速停机。
  164. // 此时不允许再执行任何函数和任务指令,防止系统故障更加严重。
  165. // 也不需要做任何错误处理了,快速执行紧急流程。
  166. // 例如:内存错误,进程挂死,关键设备失控,监控设备报警,等
  167. CRITICAL_ERROR = 4,
  168. };
  169. class Error_manager
  170. {
  171. public://外部接口函数
  172. //构造函数
  173. Error_manager();
  174. //拷贝构造
  175. Error_manager(const Error_manager & error_manager);
  176. //赋值构造
  177. Error_manager(Error_code error_code, Error_level error_level = NORMAL,
  178. const char* p_error_description = NULL, int description_length = 0);
  179. //赋值构造
  180. Error_manager(Error_code error_code, Error_level error_level , std::string & error_aggregate_string);
  181. //析构函数
  182. ~Error_manager();
  183. //初始化
  184. void error_manager_init();
  185. //初始化
  186. void error_manager_init(Error_code error_code, Error_level error_level = NORMAL,
  187. const char* p_error_description = NULL, int description_length = 0);
  188. //初始化
  189. void error_manager_init(Error_code error_code, Error_level error_level , std::string & error_aggregate_string);
  190. //重置
  191. void error_manager_reset(Error_code error_code, Error_level error_level = NORMAL,
  192. const char* p_error_description = NULL, int description_length = 0);
  193. //重置
  194. void error_manager_reset(Error_code error_code, Error_level error_level , std::string & error_aggregate_string);
  195. //重置
  196. void error_manager_reset(const Error_manager & error_manager);
  197. //清除所有内容
  198. void error_manager_clear_all();
  199. //重载=
  200. Error_manager& operator=(const Error_manager & error_manager);
  201. //重载=,支持Error_manager和Error_code的直接转化,会清空错误等级和描述
  202. Error_manager& operator=(Error_code error_code);
  203. //重载==
  204. bool operator==(const Error_manager & error_manager);
  205. //重载==,支持Error_manager和Error_code的直接比较
  206. bool operator==(Error_code error_code);
  207. //重载!=
  208. bool operator!=(const Error_manager & error_manager);
  209. //重载!=,支持Error_manager和Error_code的直接比较
  210. bool operator!=(Error_code error_code);
  211. //重载<<,支持cout<<
  212. friend std::ostream & operator<<(std::ostream &out, Error_manager &error_manager);
  213. //获取错误码
  214. Error_code get_error_code();
  215. //获取错误等级
  216. Error_level get_error_level();
  217. //获取错误描述的指针,(浅拷贝)
  218. char* get_error_description();
  219. //复制错误描述,(深拷贝)
  220. //output:p_error_description 错误描述的字符串指针,不可以为NULL,必须要有实际的内存
  221. //output:description_length 错误描述的字符串长度,不可以为0,长度最好足够大,一般256即可。
  222. void copy_error_description(const char* p_error_description, int description_length);
  223. //复制错误描述,(深拷贝)
  224. //output:error_description_string 错误描述的string
  225. void copy_error_description(std::string & error_description_string);
  226. //设置错误码
  227. void set_error_code(Error_code error_code);
  228. //比较错误等级并升级,取高等级的结果
  229. void set_error_level_up(Error_level error_level);
  230. //比较错误等级并降级,取低等级的结果
  231. void set_error_level_down(Error_level error_level);
  232. //错误等级,设定到固定值
  233. void set_error_level_location(Error_level error_level);
  234. //设置错误描述
  235. void set_error_description(const char* p_error_description, int description_length = 0);
  236. //设置错误描述
  237. void set_error_description(std::string & error_description_string);
  238. //尾部追加错误描述
  239. void add_error_description(const char* p_error_description, int description_length = 0);
  240. //尾部追加错误描述
  241. void add_error_description(std::string & error_description_string);
  242. //比较错误是否相同,
  243. // 注:只比较错误码和等级
  244. bool is_equal_error_manager(const Error_manager & error_manager);
  245. //比较并覆盖错误,讲低级错误转为字符串存放于描述中,
  246. //如果错误相同,则保留this的,将输入参数转入描述。
  247. void compare_and_cover_error(const Error_manager & error_manager);
  248. //比较并覆盖错误,讲低级错误转为字符串存放于描述中,
  249. //如果错误相同,则保留this的,将输入参数转入描述。
  250. void compare_and_cover_error( Error_manager * p_error_manager);
  251. //将所有的错误信息,格式化为字符串,用作日志打印。
  252. //output:p_error_description 错误汇总的字符串指针,不可以为NULL,必须要有实际的内存
  253. //output:description_length 错误汇总的字符串长度,不可以为0,长度最好足够大,一般256即可。
  254. void translate_error_to_string(char* p_error_aggregate, int aggregate_length);
  255. //output:error_description_string 错误汇总的string
  256. void translate_error_to_string(std::string & error_aggregate_string);
  257. //错误码转字符串的简易版,可支持cout<<
  258. //return 错误汇总的string
  259. std::string to_string();
  260. protected:
  261. Error_code m_error_code; //错误码
  262. Error_level m_error_level; //错误等级
  263. char* pm_error_description; //错误描述
  264. int m_description_length; //错误描述的字符长度
  265. protected://内部功能函数
  266. public:
  267. //释放错误描述的内存,
  268. void free_description();
  269. //重新分配错误描述的内存,并从外部拷贝新的(深拷贝)
  270. //input:p_error_description 错误描述的字符串指针,可以为NULL,
  271. //input:description_length 错误描述的字符串长度,如果为0,则从p_error_description里面获取有效的长度
  272. void reallocate_memory_and_copy_string(const char* p_error_description, int description_length = 0);
  273. //重新分配错误描述的内存,并从外部拷贝新的(深拷贝)
  274. //input:error_aggregate_string 错误描述的string
  275. void reallocate_memory_and_copy_string(std::string & error_aggregate_string);
  276. };
  277. #endif //TEST_ERROR_ERROR_CODE_H