// // Created by zx on 2020/6/18. // //wk test 2 #include #include #include #include "command_accepter.h" #include "measure_excutor.h" #include "command_manager.h" #include "exception_solver.h" #include "proto_tool.h" #include "pathcreator.h" #include #include #include "message_communicator.h" //using google::protobuf::io::FileInputStream; //using google::protobuf::io::FileOutputStream; using google::protobuf::io::ZeroCopyInputStream; using google::protobuf::io::CodedInputStream; using google::protobuf::io::ZeroCopyOutputStream; using google::protobuf::io::CodedOutputStream; using google::protobuf::Message; GOOGLE_GLOG_DLL_DECL void shut_down_logging(const char* data, int size); void init_glog(); Error_manager init_communicators(); int main(int argc,char* argv[]) { init_glog(); Error_manager code=init_communicators(); if(code!=SUCCESS) { LOG(ERROR)<communication_bind(bind_string); ///初始化故障处理对象 if(Exception_solver::get_instance_pointer()== nullptr) return FAILED; ///初始化与终端通讯的对象 if(Command_accepter::get_instance_pointer()== nullptr) return FAILED; /* * 初始化各个模块, */ if(Measure_excutor::get_instance_pointer()== nullptr) return FAILED; if(Dispatch_excutor::get_instance_pointer()== nullptr) return FAILED; //初始化车位分配模块 if(Parkspace_excutor::get_instance_pointer()== nullptr) return FAILED; Message_communicator::get_instance_pointer()->communication_run(); /* * 初始化指令执行模块 */ if(Command_manager::get_instance_pointer()== nullptr) return Error_manager(FAILED,CRITICAL_ERROR,"创建指令执行模块失败"); code=Command_manager::get_instance_pointer()->init(system_setting); if(code==SUCCESS) LOG(INFO)<<"系统初始化完成 --------------------------------------------- !!!"; return code; } GOOGLE_GLOG_DLL_DECL void shut_down_logging(const char* data, int size) { time_t tt; time( &tt ); tt = tt + 8*3600; // transform the time zone tm* t= gmtime( &tt ); char buf[255]={0}; sprintf(buf,"./%d%02d%02d-%02d%02d%02d-dump.txt", t->tm_year + 1900, t->tm_mon + 1, t->tm_mday, t->tm_hour, t->tm_min, t->tm_sec); FILE* tp_file=fopen(buf,"w"); fprintf(tp_file,data,strlen(data)); fclose(tp_file); } void init_glog() { time_t tt = time(0);//时间cuo struct tm* t = localtime(&tt); char strYear[255]={0}; char strMonth[255]={0}; char strDay[255]={0}; sprintf(strYear,"%04d", t->tm_year+1900); sprintf(strMonth,"%02d", t->tm_mon+1); sprintf(strDay,"%02d", t->tm_mday); char buf[255]={0}; getcwd(buf,255); char strdir[255]={0}; sprintf(strdir,"%s/log/%s/%s/%s", buf,strYear,strMonth,strDay); PathCreator creator; creator.Mkdir(strdir); char logPath[255] = { 0 }; sprintf(logPath, "%s/", strdir); FLAGS_max_log_size = 100; FLAGS_logbufsecs = 0; google::InitGoogleLogging("LidarMeasurement"); google::SetStderrLogging(google::INFO); google::SetLogDestination(0, logPath); google::SetLogFilenameExtension("zxlog"); google::InstallFailureSignalHandler(); google::InstallFailureWriter(&shut_down_logging); FLAGS_colorlogtostderr = true; // Set log color FLAGS_logbufsecs = 0; // Set log output speed(s) FLAGS_max_log_size = 1024; // Set max log file size(GB) FLAGS_stop_logging_if_full_disk = true; }