Apollo 10.0
自动驾驶开放平台
apollo::hdmap::ChannelVerify类 参考

#include <channel_verify.h>

apollo::hdmap::ChannelVerify 的协作图:

Public 成员函数

 ChannelVerify (std::shared_ptr< JsonConf > sp_conf)
 
ErrorCode Check (const std::string &record_dir_or_record_full_path)
 
std::shared_ptr< std::vector< OneRecordChannelCheckResult > > get_check_result () const
 
ErrorCode GetReturnState () const
 

详细描述

在文件 channel_verify.h57 行定义.

构造及析构函数说明

◆ ChannelVerify()

apollo::hdmap::ChannelVerify::ChannelVerify ( std::shared_ptr< JsonConf sp_conf)
explicit

在文件 channel_verify.cc31 行定义.

32 : sp_conf_(sp_conf) {
33 Reset();
34}

成员函数说明

◆ Check()

ErrorCode apollo::hdmap::ChannelVerify::Check ( const std::string &  record_dir_or_record_full_path)

在文件 channel_verify.cc43 行定义.

44 {
45 std::vector<std::string> records_path;
46 records_path = GetRecordsPath(record_dir_or_record_full_path);
47 if (records_path.empty()) {
48 AINFO << "have no data file to check";
50 return return_state_;
51 }
52 IncrementalCheck(records_path);
53 return_state_ = ErrorCode::SUCCESS;
54 return return_state_;
55}
#define AINFO
Definition log.h:42

◆ get_check_result()

std::shared_ptr< std::vector< OneRecordChannelCheckResult > > apollo::hdmap::ChannelVerify::get_check_result ( ) const

在文件 channel_verify.cc58 行定义.

58 {
59 return sp_vec_check_result_;
60}

◆ GetReturnState()

ErrorCode apollo::hdmap::ChannelVerify::GetReturnState ( ) const

在文件 channel_verify.cc215 行定义.

215{ return return_state_; }

该类的文档由以下文件生成: