#include "stdafx.h" #include "UploadFSM.h" #include #include #include #ifdef RVC_OS_WIN #include #include #include "EventCode.h" #else #include #include "upload.h" #include "path.h" #include #include #include #include #include #include #include #include #include "EventCode.h" #endif #define UPLOAD_CONTENT_EACH_LEN 512*1024 UploadFSM::UploadFSM() : m_currUploadFile(NULL) { m_uploadList = new list(); m_uploadPlanList = new list(); m_overLenFileList = new list(); m_eachUploadLen=UPLOAD_CONTENT_EACH_LEN; m_uploadMaxNum = 200; m_isOffLine=true;//初始离线状态为true m_printPlan = true;//初始化为打印 } UploadFSM::~UploadFSM() { } namespace Task { struct SendFileTask : public ITaskSp { UploadFSM* m_fsm; explicit SendFileTask(UploadFSM* e) : m_fsm(e) {} void Process(){ //判断是分行url请求还是总行url请求 //判断是临时文件还是永久文件 //循环上传 //登记上传流水或者失败流水 //根据最终上传结果返回成功还是失败 CSystemStaticInfo info; auto rc = m_fsm->GetEntityBase()->GetFunction()->GetSystemStaticInfo(info); if (rc != Error_Succeed) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI("SendFileTask")("get CSystemStaticInfo fail,file = %s",m_fsm->m_currUploadFile->filePath.c_str()); m_fsm->PostEventFIFO(new FSMEvent(USER_EVT_UPLOAD_FAIL));//失败发送 return; } bool isLanTerminal=true;//行内行外标志 //if(info.strSite.Compare("CMB.LIB",true)==0||info.strSite.Compare("CMB.SSB",true)==0){ // isLanTerminal=true; //}else{ // isLanTerminal=false; //} if(strcmp(m_fsm->m_currUploadFile->upload_address_env.c_str(),"BIZ")==0){ isLanTerminal=true; }else{ isLanTerminal=false; } IHttpFunc* client; client = create_http(m_fsm->HttpsLogCallBack); bool hasSend=false; if(m_fsm->m_currUploadFile->plan_type=="T"){ //查询失败统一需要上传 if(queryTempFile(client,info)){ hasSend=true; } } //是否需要上传文件 bool sendOk = false; if(!hasSend){ string errmsg =""; if(isLanTerminal){ //DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI("SendFileTask")("上传文件到分行:%s",m_fsm->m_currUploadFile->filePath.c_str()); }else{ //DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI("SendFileTask")("上传文件到总行:%s",m_fsm->m_currUploadFile->filePath.c_str()); } string MD5str = ""; //返回的MD5值 string branchFilePath = ""; //返回的分行保存路径值 //修改为重试上传机制,防止上传当中网络抖动,避免等待下次上传 bool isUploadSucc=false; for (int i =0 ; i<2;i++ ) { errmsg="";//每次上传前清空错误信息,只记录最后一次的 if(uploadFile(client,info,MD5str,branchFilePath,errmsg)){ isUploadSucc = true; break; } Sleep(3000);//等待3秒下次传送 } if(isUploadSucc){ if(updateState(client,info,isLanTerminal,MD5str,branchFilePath,errmsg)){ if(operateFile(errmsg)){ sendOk = true;//成功 }else{ m_fsm->m_uploadReport.operateFileFail++;//添加操作失败计数 DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI("SendFileTask")("operateFile fail,file = %s",m_fsm->m_currUploadFile->filePath.c_str()); addUploadFail(client,info,isLanTerminal,"2",errmsg);//操作失败 } }else{ m_fsm->m_uploadReport.updateState++;//添加登记失败计数 DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI("SendFileTask")("updateState fail,file = %s",m_fsm->m_currUploadFile->filePath.c_str()); addUploadFail(client,info,isLanTerminal,"1",errmsg);//登记失败 } }else{ m_fsm->m_uploadReport.uploadFail++;//添加上传失败计数 DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI("SendFileTask")("uploadFile fail,file = %s",m_fsm->m_currUploadFile->filePath.c_str()); addUploadFail(client,info,isLanTerminal,"1",errmsg);//上传失败 } }else{ sendOk=true; } client->Destory(); if(sendOk){ m_fsm->PostEventFIFO(new FSMEvent(USER_EVT_UPLOAD_SUCC));//成功发送 }else{ m_fsm->PostEventFIFO(new FSMEvent(USER_EVT_UPLOAD_FAIL));//失败发送 } } //上传文件:断点续传,多次调用 bool uploadFile(IHttpFunc* client,CSystemStaticInfo info,string &MD5str,string &branchFilePath, string &errmsg){ string reqUrl; unsigned seed; seed = time(0); srand(seed); if(m_fsm->m_branchIpList.size()>0){ int branchSeq = (rand() % m_fsm->m_branchIpList.size()) + 1; map::iterator it = m_fsm->m_branchIpList.find(branchSeq); if(it != m_fsm->m_branchIpList.end()) { reqUrl = it->second; }else{ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("uploadFile is fail ,branchIp[%d] is null",branchSeq); errmsg = CSimpleStringA::Format("uploadFile is fail ,branchIp[%d] is null",branchSeq).GetData(); return false; } }else{ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("uploadFile is fail ,branchIp is null"); errmsg = "uploadFile is fail ,branchIp is null"; return false; } //获取服务器文件长度 unsigned char* contentFirst = new unsigned char[1]; memset(contentFirst,0,1); UploadDataRet respFirst ={0}; bool is_finish =false; //是否续传 if(!uploadFileImpl(client,info,reqUrl,contentFirst,0,"",respFirst)){ delete[] contentFirst; errmsg=CSimpleStringA::Format("url=%s, uploadFileImpl first is fail",reqUrl.c_str()).GetData(); return false;//返回失败 }else{ delete[] contentFirst; } long uploadedLen = respFirst.uploaded_length;//服务器返回已上传的长度 if(uploadedLen>m_fsm->m_currUploadFile->fileLen){ //服务器返回长度大于终端文件长度 DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("uploadFile is fail, server filelen [%d] is over terminal filelen [%d]",uploadedLen,m_fsm->m_currUploadFile->fileLen); errmsg=CSimpleStringA::Format("uploadFile is fail, server filelen [%d] is over terminal filelen [%d]",uploadedLen,m_fsm->m_currUploadFile->fileLen).GetData(); return false; } if (uploadedLen < 0) { DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("uploadFile uploadedLen beginPos < 0"); errmsg = CSimpleStringA::Format("uploadFile is fail, server filelen [%d] is <0", uploadedLen).GetData(); return false; } DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("文件[%s] 开始传送位置 uploadedLen = %d, file len=%d",m_fsm->m_currUploadFile->filePath.c_str(), uploadedLen, m_fsm->m_currUploadFile->fileLen); //循环传送数据块 FILE* pFile =fopen(m_fsm->m_currUploadFile->filePath.c_str(),"rb"); if(pFile==NULL){ //读取文件失败; DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("uploadFile is fail, file open fail"); errmsg="uploadFile is fail, file open fail"; return false; } //获取首次文件hash CSimpleStringA firstSM3Str = ""; if (Error_Succeed == m_fsm->SM3FileToStr(m_fsm->m_currUploadFile->filePath.c_str(), firstSM3Str, false)) { m_fsm->m_currUploadFile->firstMD5Str = firstSM3Str.GetData(); m_fsm->m_currUploadFile->lastMD5Str = ""; } else { DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("uploadFile is fail, get file first SM3 hash fail"); errmsg = "uploadFile is fail , get file first SM3 hash fail"; return false; } bool uploadSucc= false; while(true){ //续传 if((m_fsm->m_currUploadFile->fileLen-uploadedLen)>m_fsm->m_eachUploadLen){ int uploadLen = m_fsm->m_eachUploadLen;//传送数据长度 unsigned char* content = new unsigned char[uploadLen]; memset(content,0,uploadLen); //从文件拷贝字节 if(m_fsm->getFileContent(pFile,content,uploadedLen,uploadLen)){ UploadDataRet resp ={0}; if(uploadFileImpl(client,info,reqUrl,content,uploadLen,"",resp)){ delete[] content; uploadedLen +=uploadLen;//改变已上传长度 }else{ delete[] content; errmsg=CSimpleStringA::Format("url=%s, uploadFileImpl continue is fail",reqUrl.c_str()).GetData(); break;//上传失败 } }else{ delete[] content; errmsg="uploadFile is fail , getFileContent fail"; break;//获取文件内存失败 } }else{ //获取最后一次传送时文件长度 CSimpleStringA filepath = m_fsm->m_currUploadFile->filePath.c_str(); long fileLastLen = 0; if(!m_fsm->GetFileLength(filepath.GetData(),fileLastLen)){ errmsg="uploadFile is fail , end get file len fail"; break;//计算sm3出错 } string fileLastLenStr= CSimpleStringA::Format("%d",fileLastLen).GetData();//计算出解密后总长度 //获取最后文件hash CSimpleStringA lastSM3Str = ""; if(Error_Succeed == m_fsm->SM3FileToStr(filepath.GetData(), lastSM3Str, false)) { m_fsm->m_currUploadFile->lastMD5Str = lastSM3Str.GetData(); } else { errmsg = "uploadFile is fail , get file last SM3 hash fail"; break;//计算sm3出错 } //最后一块 int uploadLen = m_fsm->m_currUploadFile->fileLen-uploadedLen; unsigned char* contentEnd; if(uploadLen==0){ //对零的长度特殊处理 contentEnd = new unsigned char[1]; memset(contentEnd,0,1); }else{ contentEnd = new unsigned char[uploadLen]; memset(contentEnd,0,uploadLen); } if(m_fsm->getFileContent(pFile,contentEnd,uploadedLen,uploadLen)){ UploadDataRet respEnd ={0}; if(uploadFileImpl(client,info,reqUrl,contentEnd,uploadLen,fileLastLenStr,respEnd)){ delete[] contentEnd; if(respEnd.upload_finish){ uploadSucc =true;//成功 branchFilePath = respEnd.branchFilePath;//分行保存地址 }else{ uploadSucc =false;//失败 } break; }else{ delete[] contentEnd; errmsg=CSimpleStringA::Format("url=%s, uploadFileImpl end is fail",reqUrl.c_str()).GetData(); break;//上传失败 } }else{ delete[] contentEnd; errmsg="uploadFile is fail , end getFileContent fail"; break;//获取文件内存失败 } } } if(uploadSucc){ //DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("uploadFile succ"); }else{ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("uploadFile fail url=%s",reqUrl.c_str()); } if(pFile){ if(fclose(pFile)!=0){ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("uploadFile fail, close file fail ,url=%s",reqUrl.c_str()); errmsg="uploadFile fail, close file fail"; return false; } } return uploadSucc; } //上传文件:具体实现 bool uploadFileImpl(IHttpFunc* client,CSystemStaticInfo info,string httpUrl,unsigned char* fileContent,long fileContentSize,string lastFileLength,UploadDataRet& uploadData){ UploadFileReq qTempReq; UploadFileRet qTempRet; qTempRet.m_userCode =""; qTempRet.m_errMsg=""; Json::Value rootReq; Json::FastWriter writer; rootReq["terminal_no"] = info.strTerminalID.GetData(); rootReq["branch_no"] = m_fsm->m_currUploadFile->branch_no.c_str(); rootReq["file_name"] = m_fsm->m_currUploadFile->fileName.c_str(); rootReq["file_path"] = m_fsm->m_currUploadFile->fileUploadPath.c_str(); rootReq["plan_id"] = m_fsm->m_currUploadFile->plan_id.c_str(); rootReq["file_type"] = m_fsm->m_currUploadFile->file_type.c_str(); //rootReq["origin_file_length"] = CSimpleStringA::Format("%d",m_fsm->m_currUploadFile->fileLen).GetData(); rootReq["first_file_length"] = CSimpleStringA::Format("%d",m_fsm->m_currUploadFile->fileLen).GetData();//加密后需要修改,服务端根据此长度做判断 rootReq["last_file_length"] = lastFileLength.c_str();//加密后需要修改,最后一次长度跟服务端保存长度做对比 rootReq["upload_length"] = CSimpleStringA::Format("%d",fileContentSize).GetData(); rootReq["first_sm3"] = m_fsm->m_currUploadFile->firstMD5Str.c_str(); rootReq["last_sm3"] = m_fsm->m_currUploadFile->lastMD5Str.c_str(); rootReq["file_head_custom"] = "";//自定义解密的头json格式,可为空 #ifdef RVC_OS_WIN rootReq["system_type"] = "W";//系统标记,代表路径分隔符 #else rootReq["system_type"] = "L";//系统标记,代表路径分隔符 #endif string jsonReq = writer.write(rootReq); qTempReq.url = httpUrl; qTempReq.paramContent = jsonReq; qTempReq.fileName = m_fsm->m_currUploadFile->fileName; qTempReq.fileContent = fileContent; qTempReq.fileContentSize= fileContentSize; qTempReq.m_timeOut = 5*60;//设置超时时间 //qTempReq.m_printDbg=true; //调用上传接口 //最后一次上传时,文件hash和长度告警 if (m_fsm->m_currUploadFile->lastMD5Str.length() != 0) { LogWarn(Severity_Low, Error_Unexpect, LOG_WARN_UPLOAD_FILE_INFO, CSimpleStringA::Format("upload %s file size is %s byte,sm3 digest is %s.", m_fsm->m_currUploadFile->fileName.c_str(), lastFileLength.c_str(), m_fsm->m_currUploadFile->lastMD5Str.c_str()).GetData()); } if (!client->UploadFileBlock(qTempReq, qTempRet)) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("uploadFile http req fail ,url =%s ,fileName = %s",httpUrl.c_str(), m_fsm->m_currUploadFile->fileName.c_str()); return false; } if(qTempRet.httpCode!=200){ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("uploadFile http req fail ,url =%s ,retHttpCode=%d, fileName = %s",httpUrl.c_str(), qTempRet.httpCode, m_fsm->m_currUploadFile->fileName.c_str()); return false; } //解析回应报文 Json::Reader reader; Json::Value rootRet; if (!reader.parse(qTempRet.strBody, rootRet, false)) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("uploadFile http parse resp is fail,fileName = %s",m_fsm->m_currUploadFile->fileName.c_str()); return false;//解析失败 } uploadData.strBody = qTempRet.strBody; bool isSucc = rootRet["success"].asBool(); if(isSucc){ if(rootRet.isMember("data")){ uploadData.uploaded_length= rootRet["data"]["uploaded_length"].asInt(); uploadData.upload_finish = rootRet["data"]["upload_finish"].asBool(); uploadData.branchFilePath = rootRet["data"]["branch_file_path"].asCString(); return true;//返回值 }else{ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("uploadFile http [success][data] is invaild ,url =%s, fileName = %s",httpUrl.c_str(),m_fsm->m_currUploadFile->fileName.c_str()); return false;//无data字段 } }else{ //失败 if (m_fsm->m_currUploadFile->lastMD5Str.length() == 0) { DbgWithLink(LOG_LEVEL_WARN, LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("uploadFile http [success] is false, url[%s],userCode[%s],errmsg[%s],fileName = %s", httpUrl.c_str(), qTempRet.m_userCode.c_str(), qTempRet.m_errMsg.c_str(), m_fsm->m_currUploadFile->fileName.c_str()); } else { DbgWithLink(LOG_LEVEL_WARN, LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("uploadFile http [success] is false, url[%s],userCode[%s],errmsg[%s],fileName = %s,first_sm3 =[%s],last_sm3=[%s]", httpUrl.c_str(), qTempRet.m_userCode.c_str(), qTempRet.m_errMsg.c_str(), m_fsm->m_currUploadFile->fileName.c_str(), m_fsm->m_currUploadFile->firstMD5Str.c_str(), m_fsm->m_currUploadFile->lastMD5Str.c_str()); } return false; } } //查询临时文件 post bool queryTempFile(IHttpFunc* client,CSystemStaticInfo info){ UploadQueryTempFileReq qTempReq; UploadQueryTempFileRet qTempRet; qTempRet.m_userCode =""; qTempRet.m_errMsg=""; Json::Value rootReq; Json::FastWriter writer; rootReq["terminal_no"] = info.strTerminalID.GetData(); rootReq["plan_id"] = m_fsm->m_currUploadFile->plan_id.c_str(); rootReq["file_path"] = m_fsm->m_currUploadFile->fileUploadPath.c_str(); rootReq["file_type"] = m_fsm->m_currUploadFile->file_type.c_str(); string jsonReq = writer.write(rootReq); qTempReq.m_reqStr = jsonReq;//请求参数 //qTempReq.m_printDbg = true; qTempReq.m_url=m_fsm->m_centerUrl.queryTempFileUrl;//访问地址 if(!client->Post(qTempReq, qTempRet)){ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("queryTempFile http req fail ,fileName = %s, err=%s",m_fsm->m_currUploadFile->filePath.c_str(),qTempRet.m_errMsg.c_str()); return false; } //解析报文 //解析回应报文 Json::Reader reader; Json::Value rootRet; if (!reader.parse(qTempRet.m_retStr, rootRet, false)) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("queryTempFile parse resp is fail,fileName = %s",m_fsm->m_currUploadFile->filePath.c_str()); m_fsm->m_uploadReport.queryTempFail++;//添加查询临时失败计数 return false;//解析失败 } bool isSucc = rootRet["success"].asBool(); if(isSucc){ if(rootRet.isMember("data")){ if(rootRet["data"]["upload_flag"].asBool()){ return true;//查询有 }else{ return false;//查询没有 } }else{ m_fsm->m_uploadReport.queryTempFail++;//添加查询临时失败计数 return false;//无data字段 } }else{ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("queryTempFile [success] is false, fileName = %s",m_fsm->m_currUploadFile->filePath.c_str()); m_fsm->m_uploadReport.queryTempFail++;//添加查询临时失败计数 return false; } } //登记文件流水状态 post bool updateState(IHttpFunc* client,CSystemStaticInfo info,bool isLanTerminal, string MD5str,string branchFilePath, string &errmsg){ if(!isLanTerminal){ return true;//行外默认是总行那边登记交易流水,终端不再发送交易流水登记,直接返回成功 } UploadUpdateStateReq updateStateReq; UploadUpdateStateRet updateStateRet; updateStateRet.m_userCode=""; updateStateRet.m_errMsg=""; Json::Value rootReq; Json::FastWriter writer; rootReq["plan_id"] = m_fsm->m_currUploadFile->plan_id.c_str(); rootReq["branch_no"] = m_fsm->m_currUploadFile->branch_no.c_str(); rootReq["terminal_no"] = info.strTerminalID.GetData(); rootReq["file_type"] = m_fsm->m_currUploadFile->file_type.c_str(); rootReq["file_name"] = m_fsm->m_currUploadFile->fileName.c_str(); rootReq["file_path"] = m_fsm->m_currUploadFile->fileUploadPath.c_str(); rootReq["branch_file_path"] = branchFilePath.c_str(); rootReq["file_length"] = CSimpleStringA::Format("%d",m_fsm->m_currUploadFile->fileLen).GetData(); if(isLanTerminal){ rootReq["status"] = "1";//分行 }else{ rootReq["status"] = "2";//总行 } rootReq["upload_time"] = CSmallDateTime::GetNow().ToTimeString().GetData(); rootReq["remark"] = ""; rootReq["sm3"] = MD5str.c_str(); string jsonReq = writer.write(rootReq); updateStateReq.m_reqStr = jsonReq;//请求参数 updateStateReq.m_url=m_fsm->m_centerUrl.updateStateUrl;//访问地址 if(!client->Post(updateStateReq, updateStateRet)){ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("updateState is fail, userCode = %s, errmsg = %s",updateStateRet.m_userCode.c_str(), updateStateRet.m_errMsg.c_str()); errmsg = CSimpleStringA::Format("updateState is fail, userCode = %s, errmsg = %s",updateStateRet.m_userCode.c_str(), updateStateRet.m_errMsg.c_str()); return false; } //解析报文 //解析回应报文 Json::Reader reader; Json::Value rootRet; if (!reader.parse(updateStateRet.m_retStr, rootRet, false)) { errmsg="return pack parse is fail"; return false;//解析失败 } bool isSucc = rootRet["success"].asBool(); if(isSucc){ if(rootRet.isMember("data")){ if(rootRet["data"]["update_flag"].asBool()){ return true;//登记成功 }else{ errmsg="return pack [data][update_flag] is not bool"; return false;//登记失败 } }else{ errmsg="return pack [data] is null"; return false;//无data字段 } }else{ errmsg="return pack [success] is false"; return false; } } //登记失败文件流水 post bool addUploadFail(IHttpFunc* client,CSystemStaticInfo info,bool isLanTerminal,string operation,string errmsg){ UploadUploadFailReq updateFailReq; UploadUploadFailRet updateFailRet; updateFailRet.m_userCode=""; updateFailRet.m_errMsg=""; Json::Value rootReq; Json::FastWriter writer; rootReq["plan_id"] = m_fsm->m_currUploadFile->plan_id.c_str(); rootReq["branch_no"] = m_fsm->m_currUploadFile->branch_no.c_str(); rootReq["terminal_no"] = info.strTerminalID.GetData(); rootReq["file_name"] = m_fsm->m_currUploadFile->fileName.c_str(); rootReq["file_path"] = m_fsm->m_currUploadFile->fileUploadPath.c_str(); if(isLanTerminal){ rootReq["stage"] = "1";//分行 }else{ rootReq["stage"] = "2";//总行 } rootReq["operation"] = operation; rootReq["upload_time"] = CSmallDateTime::GetNow().ToTimeString().GetData();//2021-03-11 10:20:02 rootReq["reason"] = errmsg.c_str(); rootReq["remark"] = ""; string jsonReq = writer.write(rootReq); updateFailReq.m_reqStr = jsonReq;//请求参数 updateFailReq.m_url = m_fsm->m_centerUrl.addUploadFailUrl;//访问地址 if(!client->Post(updateFailReq, updateFailRet)){ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("addUploadFail is fail,userCode = %s",updateFailRet.m_userCode.c_str()); return false; } //解析报文 //解析回应报文 Json::Reader reader; Json::Value rootRet; if (!reader.parse(updateFailRet.m_retStr, rootRet, false)) { return false;//解析失败 } bool isSucc = rootRet["success"].asBool(); if(isSucc){ if(rootRet.isMember("data")){ if(rootRet["data"]["update_flag"].asBool()){ return true;//登记成功 }else{ return false;//登记失败 } }else{ return false;//无data字段 } }else{ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("addUploadFail [success] is false"); return false; } } //上传后文件处理 bool operateFile(string &errmsg){ if(m_fsm->m_currUploadFile->after_deal_type=="D"){ #ifdef RVC_OS_WIN if(remove(m_fsm->m_currUploadFile->filePath.c_str())==0){ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("delete file is ok, file =%s",m_fsm->m_currUploadFile->filePath.c_str()); return true; }else{ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("delete file is error, file =%s, errno=%d",m_fsm->m_currUploadFile->filePath.c_str(),(int)GetLastError()); errmsg = CSimpleStringA::Format("delete file is error, file =%s, errno=%d",m_fsm->m_currUploadFile->filePath.c_str(),(int)GetLastError()); return false; } #else if (changeFileAtt(m_fsm->m_currUploadFile->filePath.c_str()) == 0) { if (remove(m_fsm->m_currUploadFile->filePath.c_str()) == 0) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("delete file is ok, file =%s",m_fsm->m_currUploadFile->filePath.c_str()); return true; } else { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("delete file is error,file =%s, errno=%d",m_fsm->m_currUploadFile->filePath.c_str(), errno); errmsg = CSimpleStringA::Format("delete file is error, file =%s, errno=%d",m_fsm->m_currUploadFile->filePath.c_str(), errno); return false; } } else { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("delete file is error,changefileAtt fail,file =%s, errno=%d",m_fsm->m_currUploadFile->filePath.c_str(), errno); errmsg = CSimpleStringA::Format("delete file is error,changefileAtt fail,file =%s, errno=%d",m_fsm->m_currUploadFile->filePath.c_str(), errno); return false; } #endif }else if(m_fsm->m_currUploadFile->after_deal_type=="M"){ string destPath=""; string destDir=""; //根据路径类型组成最后移动路径 if(m_fsm->m_currUploadFile->path_type=="R"){ #ifdef RVC_OS_WIN destPath = m_fsm->m_rootPath+"\\"+m_fsm->m_currUploadFile->after_deal_text+"\\"+m_fsm->m_currUploadFile->fileName; destDir = m_fsm->m_rootPath+"\\"+m_fsm->m_currUploadFile->after_deal_text; #else destPath = m_fsm->m_rootPath + SPLIT_SLASH_STR + m_fsm->m_currUploadFile->after_deal_text + SPLIT_SLASH_STR + m_fsm->m_currUploadFile->fileName; destDir = m_fsm->m_rootPath + SPLIT_SLASH_STR + m_fsm->m_currUploadFile->after_deal_text; #endif }else{ #ifdef RVC_OS_WIN destPath = m_fsm->m_currUploadFile->after_deal_text+"\\"+m_fsm->m_currUploadFile->fileName; #else destPath = m_fsm->m_currUploadFile->after_deal_text + SPLIT_SLASH_STR + m_fsm->m_currUploadFile->fileName; #endif destDir = m_fsm->m_currUploadFile->after_deal_text; } string srcPath = m_fsm->m_currUploadFile->filePath; //DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("move file %s to %s",srcPath.c_str(),destPath.c_str()); //判断是否存在目标文件,如存在,则先删除 #ifdef RVC_OS_WIN if(ExistsFileA(destPath.c_str())){ if(remove(destPath.c_str())==0){ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("delete dest file is ok [%s]",destPath.c_str()); }else{ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("delete dest file is error, errno=%d, [%s]",(int)GetLastError(),destPath.c_str()); errmsg = CSimpleStringA::Format("delete dest file is error, errno=%d, [%s]",(int)GetLastError(),destPath.c_str()); return false; } } //判断移动目标文件夹是否存在,不存在,则创建 if(!ExistsDirA(destDir.c_str())){ if(!CreateDirRecursiveA(destDir.c_str())){ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("create dest dir [%s] is error, errno=%d",destDir.c_str(),GetLastError()); errmsg = CSimpleStringA::Format("create dest dir [%s] is error, errno=%d",destDir.c_str(),GetLastError()); return false; } } //移动文件 int i; int tries = 10; bool isSucc = false; for (i = 0; i < tries; ++i) { if(rename(srcPath.c_str(),destPath.c_str())==0){ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("move file ok! tries:%d, [%s] to [%s] ", i, srcPath.c_str(),destPath.c_str()); isSucc = true; break; } else { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("move file failed! errno:%d, [%s] to [%s] ", (int)GetLastError(), srcPath.c_str(),destPath.c_str()); errmsg = CSimpleStringA::Format("move file failed! errno:%d, [%s] to [%s] ", (int)GetLastError(), srcPath.c_str(),destPath.c_str()); Sleep(1000); } } return isSucc; #else if (ExistsFileA(destPath.c_str())) { if (changeFileAtt(destPath.c_str()) == 0) { if (remove(destPath.c_str()) == 0) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("delete dest file is ok [%s]",destPath.c_str()); } else { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("delete dest file is error, errno=%d, [%s]", errno, destPath.c_str()); errmsg = CSimpleStringA::Format("delete src file is error, errno=%d, [%s]", errno, destPath.c_str()); return false; } } else { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("delete dest file is error,changefileAtt fail ,errno=%d , file=%s ", errno, destPath.c_str()); errmsg = CSimpleStringA::Format("delete src file is error, changefileAtt fail, errno=%d, file=%s", errno, destPath.c_str()); return false; } } //判断移动目标文件夹是否存在,不存在,则创建 if (!ExistsDirA(destDir.c_str())) { if (!CreateDirRecursiveA(destDir.c_str())) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("create dest dir [%s] is error, errno=%d", destDir.c_str(), errno); errmsg = CSimpleStringA::Format("create dest dir [%s] is error, errno=%d", destDir.c_str(), errno); return false; } } //移动文件 if (changeFileAtt(srcPath.c_str()) == 0) { int i; int tries = 10; bool isSucc = false; for (i = 0; i < tries; ++i) { //rename函数对于跨分支的目录存在拷贝不成功的情况,故采用先拷贝后删除的操作修复此bug if (fileutil_copy_file(destPath.c_str(), srcPath.c_str()) == 0) { if (remove(srcPath.c_str()) == 0) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("move file ok! tries:%d, [%s] to [%s] ", i, srcPath.c_str(),destPath.c_str()); isSucc = true; break; } else { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("move file failed! errno:%d, [%s] to [%s] ", errno, srcPath.c_str(),destPath.c_str()); errmsg = CSimpleStringA::Format("move file failed! errno:%d, [%s] to [%s] ", errno, srcPath.c_str(),destPath.c_str()); Sleep(1000); } } else { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("move file failed! copy src file fail, errno:%d, [%s] to [%s] ", errno, srcPath.c_str(),destPath.c_str()); errmsg = CSimpleStringA::Format("move file failed! copy src file fail, errno:%d, [%s] to [%s] ", errno, srcPath.c_str(),destPath.c_str()); Sleep(1000); } } return isSucc; } else { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("move file failed! changefileAtt fail, errno:%d, [%s] to [%s] ", errno, srcPath.c_str(),destPath.c_str()); errmsg = CSimpleStringA::Format("move file failed! changefileAtt fail, errno:%d, [%s] to [%s] ", errno, srcPath.c_str(),destPath.c_str()); return false; } #endif }else if(m_fsm->m_currUploadFile->after_deal_type=="N"){ return true; }else{ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("file [%s] invalid after_deal_type=%s",m_fsm->m_currUploadFile->fileName.c_str(),m_fsm->m_currUploadFile->after_deal_type.c_str()); errmsg = CSimpleStringA::Format("invalid after_deal_type=%s",m_fsm->m_currUploadFile->after_deal_type.c_str()); return false; } } }; } void UploadFSM::OnStateTrans( int iSrcState, int iDstState ) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("trans from %s to %s", GetStateName(iSrcState), GetStateName(iDstState)); } void UploadFSM::OnSysVarEvent( const char *pszKey, const char *pszValue,const char *pszOldValue,const char *pszEntityName ) { //DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("rx sysvar %s from %s, %s to %s", pszKey, pszEntityName, pszOldValue, pszValue); if (pszValue[0] == 'O') { DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("rx sysvar %s from %s, %s to %s", pszKey, pszEntityName, pszOldValue, pszValue); m_isOffLine = true; PostEventFIFO(new FSMEvent(USER_EVT_JMP_ENABLE)); } else { if (m_isOffLine) { DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("rx sysvar %s from %s, %s to %s", pszKey, pszEntityName, pszOldValue, pszValue); } m_isOffLine = false; PostEventFIFO(new FSMEvent(USER_EVT_JMP_DISABLE)); } } ErrorCodeEnum UploadFSM::OnInit() { ErrorCodeEnum Error; CSimpleStringA checkStr=""; CSmartPointer spConfig; Error = m_pEntity->GetFunction()->OpenConfig(Config_CenterSetting, spConfig); if(Error==Error_Succeed){ //获取模式控制参数 m_centerModel = (int)centerModel;//强制总行模式 DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("model is centerModel, CenterModel = %d", m_centerModel); //增加总行接口Url参数 CSimpleStringA str=""; Error = spConfig->ReadConfigValue("upload", "QueryPlanUrl", str); if (Error == Error_Succeed) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("[CenterUrl] QueryPlanUrl =%s",str.GetData()); m_centerUrl.queryPlanUrl = str.GetData(); } else { return Error; } Error = spConfig->ReadConfigValue("upload", "QueryTempFileUrl", str); if (Error == Error_Succeed) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("[CenterUrl] QueryTempFileUrl =%s",str.GetData()); m_centerUrl.queryTempFileUrl = str.GetData(); } else { return Error; } Error = spConfig->ReadConfigValue("upload", "UpdateStateUrl", str); if (Error == Error_Succeed) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("[CenterUrl] UpdateStateUrl =%s",str.GetData()); m_centerUrl.updateStateUrl = str.GetData(); } else { return Error; } Error = spConfig->ReadConfigValue("upload", "AddUploadFailUrl", str); if (Error == Error_Succeed) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("[CenterUrl] AddUploadFailUrl =%s",str.GetData()); m_centerUrl.addUploadFailUrl = str.GetData(); } else { return Error; } Error = spConfig->ReadConfigValue("upload", "EachUploadLen", str); if (Error == Error_Succeed) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("[CenterUrl] EachUploadLen =%s",str.GetData()); if(str.IsNullOrEmpty()){ m_eachUploadLen = UPLOAD_CONTENT_EACH_LEN; }else{ m_eachUploadLen = atoi(str.GetData())*1024; } } else { return Error; } int uploadMaxNum = 0; Error = spConfig->ReadConfigValueInt("upload", "UploadMaxNum", uploadMaxNum); if (Error == Error_Succeed) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("[CenterUrl] UploadMaxNum =%d",uploadMaxNum); if(uploadMaxNum<=10){ m_uploadMaxNum = 200; }else{ m_uploadMaxNum = uploadMaxNum; } } else { return Error; } //获取系统文件根路径 CSimpleStringA runPath ; Error =this->GetEntityBase()->GetFunction()->GetPath("rvc",runPath);//例如:C:\\Run /opt/Run if(Error_Succeed == Error){ if(!runPath.IsNullOrEmpty()){ string runPathStr = runPath.GetData(); #ifdef RVC_OS_WIN int pos = runPathStr.find_last_of('\\'); #else int pos = runPathStr.find_last_of(SPLIT_SLASH);//修改为路径分隔符 #endif m_rootPath = runPathStr.substr(0,pos); DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("get rvc path is %s",m_rootPath.c_str()); }else{ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("get rvc path is null"); return Error_Unexpect; } }else{ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("get rvc path is error"); return Error_Unexpect; } }else{ return Error; } Error = m_pEntity->GetFunction()->RegistSysVarEvent("CallState", this); if (Error == Error_Succeed) { AddStateHooker(this); } //...... return Error; } ErrorCodeEnum UploadFSM::OnExit() { m_pEntity->GetFunction()->UnregistSysVarEvent("CallState"); return Error_Succeed; } void UploadFSM::s0_on_entry() { CSimpleStringA strValue; ErrorCodeEnum Error = m_pEntity->GetFunction()->GetSysVar("CallState", strValue); if (Error == Error_Succeed) { if (strValue[0] == 'O') { // only upload when CallState in offline state PostEventLIFO(new FSMEvent(USER_EVT_JMP_ENABLE)); } else { PostEventLIFO(new FSMEvent(USER_EVT_JMP_DISABLE)); } } } void UploadFSM::s0_on_exit() { } unsigned int UploadFSM::s0_on_event( FSMEvent* event ) { return 0; } void UploadFSM::s1_on_entry() { ScheduleTimer(8, 30000); } void UploadFSM::s1_on_exit() { CancelTimer(8); } unsigned int UploadFSM::s1_on_event(FSMEvent* event) { if (event->iEvt == EVT_TIMER) { if(m_isOffLine){ PostEventLIFO(new FSMEvent(USER_EVT_JMP_ENABLE)); }else{ ScheduleTimer(8, 30000);//继续等待 } } return 0; } void UploadFSM::s2_on_entry() { m_uploadModel = true;//默认总行上传模式 //清理上次扫描文件列表,扫描计划,分行ip列表 if(m_uploadList!=NULL){ list::iterator iter ; for(iter=m_uploadList->begin();iter!=m_uploadList->end();++iter){ delete *iter; } m_uploadList->clear(); } if(m_uploadPlanList!=NULL){ list::iterator iter ; for(iter=m_uploadPlanList->begin();iter!=m_uploadPlanList->end();++iter){ delete *iter; } m_uploadPlanList->clear(); } m_branchIpList.clear(); if(m_centerModel == (int)centerModel){ //DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("centerModel"); //防止url无效,新模式直接停止上传 等待下一次 if(m_centerUrl.addUploadFailUrl.empty()||m_centerUrl.queryPlanUrl.empty()|| m_centerUrl.queryTempFileUrl.empty()||m_centerUrl.updateStateUrl.empty()){ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("centerModel mode ,centerUrl is null , wait for next time"); ScheduleTimer(1, 120000); return ; } //新模式,查询策略 if(queryPlan()){ m_uploadModel = true; }else{ //查询策略失败,等待下一次 DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("queryPlan is fail , wait for next time"); ScheduleTimer(1, 120000); return ; } }else{ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("m_centerModel is invalid"); ScheduleTimer(1, 120000); return; } if(m_uploadModel){ //新模式扫描 PostEventLIFO(new FSMEvent(USER_EVT_JMP_NEW_SCAN)); }else{ //旧模式扫描 PostEventLIFO(new FSMEvent(USER_EVT_JMP_OLD_SCAN)); } } void UploadFSM::s2_on_exit() { CancelTimer(1); } unsigned int UploadFSM::s2_on_event(FSMEvent* event) { if (event->iEvt == EVT_TIMER) { m_uploadModel = true;//默认是分行上传模式 //清理上次扫描文件列表,扫描计划,分行ip列表 if(m_uploadList!=NULL){ list::iterator iter ; for(iter=m_uploadList->begin();iter!=m_uploadList->end();++iter){ delete *iter; } m_uploadList->clear(); } if(m_uploadPlanList!=NULL){ list::iterator iter ; for(iter=m_uploadPlanList->begin();iter!=m_uploadPlanList->end();++iter){ delete *iter; } m_uploadPlanList->clear(); } m_branchIpList.clear(); //上传模式确定 if(m_centerModel == (int)centerModel){ //DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("centerModel"); //防止url无效,新模式直接停止上传,等待下一次 if(m_centerUrl.addUploadFailUrl.empty()||m_centerUrl.queryPlanUrl.empty()|| m_centerUrl.queryTempFileUrl.empty()||m_centerUrl.updateStateUrl.empty()){ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("centerModel mode ,centerUrl is null , wait for next time"); ScheduleTimer(1, 240000); return 0; } //新模式,查询策略 if(queryPlan()){ m_uploadModel = true; }else{ //查询策略失败,等待下一次 DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("queryPlan is fail , wait for next time"); ScheduleTimer(1, 240000); return 0; } }else{ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("m_centerModel is invalid"); ScheduleTimer(1, 240000); return 0; } if(m_uploadModel){ //新模式扫描 PostEventLIFO(new FSMEvent(USER_EVT_JMP_NEW_SCAN)); }else{ //旧模式扫描 PostEventLIFO(new FSMEvent(USER_EVT_JMP_OLD_SCAN)); } }else if (event->iEvt == USER_EVT_JMP_NEW_SCAN) { //DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("enter new model upload"); //新模式 if (m_uploadList->size() == 0) { //重新扫描文件 scanFile(); } if (m_uploadList->size() == 0) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("m_uploadList is 0,wait for 8 min retry scan"); ScheduleTimer(1, 480000); } else { PostEventLIFO(new FSMEvent(USER_EVT_JMP_NEW_UPLOAD));//跳到新的上传状态 } } return 0; } void UploadFSM::s3_on_entry() { } void UploadFSM::s3_on_exit() { } unsigned int UploadFSM::s3_on_event(FSMEvent* event) { return 0; } void UploadFSM::s4_on_entry() { } void UploadFSM::s4_on_exit() { } unsigned int UploadFSM::s4_on_event(FSMEvent* event) { return 0; } void UploadFSM::s5_on_entry() { } void UploadFSM::s5_on_exit() { } unsigned int UploadFSM::s5_on_event(FSMEvent* event) { return 0; } void UploadFSM::s6_on_entry() { } void UploadFSM::s6_on_exit() { } unsigned int UploadFSM::s6_on_event(FSMEvent* event) { return 0; } void UploadFSM::s7_on_entry() { //新上传模式 m_uploadReport.sum = m_uploadList->size(); m_uploadReport.succ = 0; m_uploadReport.fail = 0; m_uploadReport.uploadFail = 0; m_uploadReport.updateState = 0; m_uploadReport.decodeFail = 0; m_uploadReport.operateFileFail= 0; m_uploadReport.queryTempFail =0; m_uploadReport.isBreak =false; //获取一个新文件,发送上传请求线程 if(m_uploadList->size()>0){ m_currUploadFile = *(m_uploadList->begin());//首元素赋值给全局变量 m_uploadList->pop_front();//去除首元素 Task::SendFileTask* task = new Task::SendFileTask(this); ErrorCodeEnum rc = this->GetEntityBase()->GetFunction()->PostThreadPoolTask(task); if (rc != Error_Succeed) { if(m_currUploadFile!=NULL){ delete m_currUploadFile; m_currUploadFile=NULL; } LogError(Severity_Middle, rc, 0, "Post SendFileTask task to Thread is fail,wait 30s retry"); ScheduleTimer(7, 30000); } } } void UploadFSM::s7_on_exit() { if(m_currUploadFile!=NULL){ delete m_currUploadFile; m_currUploadFile=NULL; } CancelTimer(7); } unsigned int UploadFSM::s7_on_event(FSMEvent* event) { if (event->iEvt == USER_EVT_UPLOAD_SUCC) { m_uploadReport.succ++;//成功计数 //获取新的上传文件,发送上传请求线程 //判断是否已经需要退出 //无文件,跳出此状态 if(m_isOffLine){ if(m_uploadList->size()>0){ if(m_currUploadFile!=NULL){ delete m_currUploadFile; m_currUploadFile=NULL; } m_currUploadFile = *(m_uploadList->begin());//首元素赋值给全局变量 m_uploadList->pop_front();//去除首元素 Task::SendFileTask* task = new Task::SendFileTask(this); ErrorCodeEnum rc = this->GetEntityBase()->GetFunction()->PostThreadPoolTask(task); if (rc != Error_Succeed) { if(m_currUploadFile!=NULL){ delete m_currUploadFile; m_currUploadFile=NULL; } m_uploadReport.isBreak =true; reportBatchMsg(); LogError(Severity_Middle, rc, 0, "Post SendFileTask task to Thread is fail,wait 240s retry scan"); ScheduleTimer(7, 240000); } }else{ m_uploadReport.isBreak =false; reportBatchMsg(); DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("NewUpload m_uploadList is empty,wait 240s retry scan"); ScheduleTimer(7, 240000);// goto s2 } }else{ m_uploadReport.isBreak =true; reportBatchMsg(); DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("NewUpload m_isOffLine is false,jump s1"); PostEventLIFO(new FSMEvent(USER_EVT_JMP_NEW_DISABLE));// goto s1 } }else if (event->iEvt == USER_EVT_UPLOAD_FAIL) { m_uploadReport.fail++;//失败计数 //获取新的上传文件,发送上传请求线程 //判断是否已经需要退出 //无文件,跳出此状态 if(m_isOffLine){ Sleep(3000);//上传失败,等待3秒再下一个 if(m_uploadList->size()>0){ if(m_currUploadFile!=NULL){ delete m_currUploadFile; m_currUploadFile=NULL; } m_currUploadFile = *(m_uploadList->begin());//首元素赋值给全局变量 m_uploadList->pop_front();//去除首元素 Task::SendFileTask* task = new Task::SendFileTask(this); ErrorCodeEnum rc = this->GetEntityBase()->GetFunction()->PostThreadPoolTask(task); if (rc != Error_Succeed) { if(m_currUploadFile!=NULL){ delete m_currUploadFile; m_currUploadFile=NULL; } m_uploadReport.isBreak =true; reportBatchMsg(); LogError(Severity_Middle, rc, 0, "Post SendFileTask task to Thread is fail,wait 240s retry scan"); ScheduleTimer(7, 240000); } }else{ m_uploadReport.isBreak =false; reportBatchMsg(); DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("NewUpload m_uploadList is empty,wait 240s retry scan"); ScheduleTimer(7, 240000);// goto s2 } }else{ m_uploadReport.isBreak =true; reportBatchMsg(); DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("NewUpload m_isOffLine is false,jump s1"); PostEventLIFO(new FSMEvent(USER_EVT_JMP_NEW_DISABLE));// goto s1 } }else if (event->iEvt == EVT_TIMER) { // goto s2 DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM)("NewUpload ,jump to s2"); } return 0; } //通过 bool UploadFSM::queryPlan() { IHttpFunc* client; client = create_http(HttpsLogCallBack); CSystemStaticInfo si; ErrorCodeEnum error = this->GetEntityBase()->GetFunction()->GetSystemStaticInfo(si); if(error!=Error_Succeed){ return false;//获取失败,走旧模式 } UploadQueryPlanReq planReq; UploadQueryPlanRet planRet; Json::Value rootReq; Json::FastWriter writer; rootReq["terminal_no"] = si.strTerminalID.GetData(); #ifdef RVC_OS_WIN rootReq["os_type"] = "WIN"; #else rootReq["os_type"] = "UOS"; #endif string jsonReq = writer.write(rootReq); planReq.m_reqStr = jsonReq; //planReq.m_printDbg = true; planReq.m_url = m_centerUrl.queryPlanUrl.c_str(); if(!client->Post(planReq, planRet)){ LogWarn(Severity_Middle, Error_Unexpect, LOG_WARN_UPLOAD_QUERY_PLAN_ERROR, CSimpleStringA::Format("queryPlan http req fail,url is %s, err=%s",m_centerUrl.queryPlanUrl.c_str(),planRet.m_errMsg.c_str()).GetData()); client->Destory(); return false;//http错误,走旧模式 } client->Destory(); //解析回应报文 Json::Reader reader; Json::Value rootRet; if (!reader.parse(planRet.m_retStr, rootRet, false)) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("queryPlan parse resp is fail"); return false;//解析失败,走旧模式 } bool isSucc = rootRet["success"].asBool(); if(isSucc){ if(rootRet.isMember("data")){ if(rootRet["data"]["mode"].asBool()){ //新模式 string branchNO = rootRet["data"]["branch_no"].asString(); //分行服务器列表:可能为空 if(rootRet["data"]["upload_address"].isMember("upload_url")){ for(int i =0;iplan_id = rootRet["data"]["plan_list"][i]["plan_id"].asString(); p->branch_no = branchNO;//分行号 p->plan_type = rootRet["data"]["plan_list"][i]["plan_type"].asString(); p->file_type = rootRet["data"]["plan_list"][i]["file_type"].asString(); p->path_type = rootRet["data"]["plan_list"][i]["path_type"].asString(); #ifdef RVC_OS_WIN p->path_name = rootRet["data"]["plan_list"][i]["path_name"].asString(); #else //转义路径里面windows反斜杠'\'为'/' //p->path_name = rootRet["data"]["plan_list"][i]["path_name"].asString(); string pathName = rootRet["data"]["plan_list"][i]["path_name"].asString(); std::replace(pathName.begin(), pathName.end(), '\\', SPLIT_SLASH); p->path_name = pathName.c_str(); #endif p->file_name = rootRet["data"]["plan_list"][i]["file_name"].asString(); p->file_regex = rootRet["data"]["plan_list"][i]["file_regex"].asString(); p->before_deal_type = rootRet["data"]["plan_list"][i]["before_deal_type"].asString(); p->after_deal_type = rootRet["data"]["plan_list"][i]["after_deal_type"].asString(); #ifdef RVC_OS_WIN p->after_deal_text = rootRet["data"]["plan_list"][i]["after_deal_text"].asString(); #else //转义路径里面windows反斜杠'\'为'/' //p->after_deal_text = rootRet["data"]["plan_list"][i]["after_deal_text"].asString(); string afterDealText = rootRet["data"]["plan_list"][i]["after_deal_text"].asString(); std::replace(afterDealText.begin(), afterDealText.end(), '\\', SPLIT_SLASH); p->after_deal_text = afterDealText.c_str(); #endif p->file_limit = rootRet["data"]["plan_list"][i]["file_limit"].asInt(); if (p->file_limit <= 0) { //默认文件最大扫描个数为1000 p->file_length_limit = 1000; } p->file_length_limit = rootRet["data"]["plan_list"][i]["file_length_limit"].asInt();//增加扫描文件最大长度限制 if(p->file_length_limit==0){ //默认扫描文件最大长度设置为200m p->file_length_limit = 200; } p->max_silent = rootRet["data"]["plan_list"][i]["max_silent"].asInt(); if (p->max_silent <= 0) { //默认文件流逝时间间隔为900s p->file_length_limit = 900; } p->upload_address_env = env; m_uploadPlanList->push_back(p); } if(m_branchIpList.size()==0){ LogWarn(Severity_Middle, Error_Unexpect, LOG_WARN_UPLOAD_QUERY_PLAN_DATA_ERROR, CSimpleStringA::Format("queryPlan http req fail, return upload_url count is 0, url is %s",m_centerUrl.queryPlanUrl.c_str()).GetData()); return false;//上传服务ip为空,走旧模式 } if(m_uploadPlanList->size()==0){ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("queryPlan return %d plan ",m_uploadPlanList->size()); return true;//等待下一次请求,走新模式 } return true;//明确走新模式 }else{ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("queryPlan return [data].[mode] is false"); return false;//明确走旧模式 } }else{ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("queryPlan return data is null"); return false;//无data字段,走旧模式 } }else{ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("queryPlan return success is false"); return false;//服务返回错误,走旧模式 } } //通过 void UploadFSM::scanFile() { list::iterator iter; for(iter = m_uploadPlanList->begin();iter!=m_uploadPlanList->end();++iter){ UploadPlan* up = *iter; //构建初始的扫描根路径 string path=""; if(up->path_type=="R"){ #ifdef RVC_OS_WIN path = m_rootPath + "\\" + up->path_name; #else path = m_rootPath + SPLIT_SLASH_STR + up->path_name; #endif }else if(up->path_type=="A"){ path=up->path_name; }else{ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("plan path_type is invalid path_type=%s",up->path_type.c_str()); continue; } if(m_printPlan){ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("planID=[%s], scanDir=[%s], filter=[%s], file_limit=[%d], max_silent=[%d]",up->plan_id.c_str(),path.c_str(),up->file_name.c_str(),up->file_limit,up->max_silent); } scanDirfresh(up,path.c_str()); } m_printPlan=false;//只打印一次,设置为不打印 //加入文件超过阈值后告警 if(m_uploadList->size()>m_uploadMaxNum){ LogWarn(Severity_Middle, Error_Unexpect, LOG_WARN_UPLOAD_MAX_ERROR, CSimpleStringA::Format("upload list num(%d) is over max num",m_uploadList->size()).GetData()); } } //通过 void UploadFSM::scanDirfresh(UploadPlan* plan,const char *path) { array_header_t *arr_files = fileutil_get_sub_files2_a(path, plan->file_limit); if (arr_files) { int i; for (i = 0; i < arr_files->nelts; ++i){ char *file_path = ARRAY_IDX(arr_files, i, char*); //得到文件名 string fileName = _GetFileName(file_path); //文件名通配符过滤 CSimpleStringA strFileFilter = _GetFileName(plan->file_name.c_str()); if(!IsFileMatch(strFileFilter.GetData(),fileName.c_str())){ continue;//继续下一个文件 } //正则表达式过滤 if(!plan->file_regex.empty()){ regex e(plan->file_regex.c_str()); if(!regex_match(fileName.c_str(),e,regex_constants::match_default)){ continue;//继续下一个文件 } } #ifdef RVC_OS_WIN //最后修改时间间隔过滤 WIN32_FILE_ATTRIBUTE_DATA attr; if (!GetFileAttributesExA(file_path, GetFileExInfoStandard, &attr)) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("get local file attrr fail! file_path=%s",file_path); continue;//继续下一个文件 } //判断文件是否超过最大扫描文件长度 unsigned long limit = plan->file_length_limit*1024*1024; if(attr.nFileSizeLow>limit){ if (!findOverLenWarn(file_path)) { //未找到则告警 CSimpleStringA warnStr = CSimpleStringA::Format("local file len (%u), over file_length_limit (%d)m, file_path=%s", attr.nFileSizeLow, plan->file_length_limit, file_path); LogWarn(Severity_Low, Error_Unexpect, LOG_WARN_UPLOAD_QUERY_FILE_OVER_LIMIT, warnStr.GetData()); } continue;//继续下一个文件 } FILETIME fttmp; SYSTEMTIME filest; SYSTEMTIME st; if(!FileTimeToLocalFileTime(&attr.ftLastWriteTime,&fttmp)){ continue;//继续下一个文件 } if(!FileTimeToSystemTime(&fttmp,&filest)){ continue;//继续下一个文件 } GetLocalTime(&st); int nsecondsInterval = (st.wYear-filest.wYear)*32140800+(st.wMonth-filest.wMonth)*2678400+(st.wDay-filest.wDay)*86400+(st.wHour-filest.wHour)*3600+(st.wMinute-filest.wMinute)*60+(st.wSecond-filest.wSecond); if(nsecondsIntervalmax_silent){ continue;//继续下一个文件,时间不够 }else{ //时间已够,判断文件是否能独占锁 if(!test_zero_ref(file_path)){ continue;//继续下一个文件 } } //得到文件长度 unsigned long filelen = attr.nFileSizeLow; #else struct stat attr_of_src; if (lstat(file_path, &attr_of_src) != 0) { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("get local file attrr fail! file_path=%s", file_path); continue;//继续下一个文件 } //判断文件是否超过最大扫描文件长度 unsigned long limit = plan->file_length_limit * 1024 * 1024; if (attr_of_src.st_size > limit) { CSimpleStringA warnStr = CSimpleStringA::Format("local file len (%u), over file_length_limit (%d)m, file_path=%s", attr_of_src.st_size, plan->file_length_limit, file_path); LogWarn(Severity_Low, Error_Unexpect, LOG_WARN_UPLOAD_QUERY_FILE_OVER_LIMIT, warnStr.GetData()); continue;//继续下一个文件 } time_t nowTime = time((time_t*)NULL);//当前时间 if (nowTime > attr_of_src.st_mtime) { long diff = nowTime - attr_of_src.st_mtime; if (diff < plan->max_silent) { continue;//继续下一个文件,时间不够 }else{ //时间已够,判断文件是否能独占锁 if (!test_zero_ref(file_path)) { continue;//继续下一个文件 } } }else { continue;//继续下一个文件,时间不够 } //得到文件长度 unsigned long filelen = attr_of_src.st_size; #endif //添加扫描文件 UploadFileInfo* upFile = new UploadFileInfo(); upFile->firstMD5Str = ""; upFile->lastMD5Str = ""; upFile->fileName = fileName; upFile->filePath = file_path; if(upFile->filePath.length()>900){ //路径太长,ECS存储有问题,截取路径,并加入模拟路径前缀:window S:\\ , linux /S/ #ifdef RVC_OS_WIN upFile->fileUploadPath.append("S:\\"); #else upFile->fileUploadPath.append("/S/"); #endif upFile->fileUploadPath.append(fileName.c_str()); //upFile->fileUploadRelativePath = "S:\\"; }else{ //直接赋值 upFile->fileUploadPath = file_path; //upFile->fileUploadRelativePath = upFile->fileUploadPath.substr(0,upFile->fileUploadPath.length()-fileName.length());//截取文件名称的路径 } upFile->BranchFilePath = file_path; upFile->fileLen = filelen; #ifdef RVC_OS_WIN upFile->editTime = CSimpleStringA::Format("%d-%d-%d %d:%d:%d",filest.wYear, filest.wMonth, filest.wDay, filest.wHour, filest.wMinute, filest.wSecond); #else tm fileTimeTm = { 0 }; localtime_r(&attr_of_src.st_mtime, &fileTimeTm); upFile->editTime = CSimpleStringA::Format("%d-%d-%d %d:%d:%d", fileTimeTm.tm_year+1900, fileTimeTm.tm_mon+1, fileTimeTm.tm_mday, fileTimeTm.tm_hour, fileTimeTm.tm_min, fileTimeTm.tm_sec); #endif upFile->plan_id = plan->plan_id; upFile->branch_no = plan->branch_no; upFile->plan_type = plan->plan_type; upFile->file_type = plan->file_type; upFile->path_type = plan->path_type; upFile->path_name = plan->path_name;//因传回路径可能是windows路径斜杠,转义为linux斜杠 upFile->file_name = plan->file_name; upFile->file_regex = plan->file_regex; upFile->before_deal_type = plan->before_deal_type; upFile->after_deal_type = plan->after_deal_type; upFile->after_deal_text = plan->after_deal_text; upFile->file_limit = plan->file_limit; upFile->file_length_limit = plan->file_length_limit; upFile->max_silent = plan->max_silent; upFile->upload_address_env = plan->upload_address_env; m_uploadList->push_back(upFile); //DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("file %s lenth(%d) added!",file_path,filelen); } toolkit_array_free2(arr_files); } array_header_t *arr_dir = fileutil_get_sub_dirs_a(path); if (arr_dir) { int i; for (i = 0; i < arr_dir->nelts; ++i) { char *dir_path = ARRAY_IDX(arr_dir, i, char*); scanDirfresh(plan, dir_path); } } } void UploadFSM::HttpsLogCallBack(const char* logtxt) { if(logtxt!=NULL){ DbgWithLink(LOG_LEVEL_DEBUG,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("http dbg: %s",logtxt); } } bool UploadFSM::IsFileMatch(const char *pszFilter, const char *pszFileName) { const char *p1 = pszFilter; const char *p2 = pszFileName; if (p1 == NULL) return true; if (p2 == NULL) return false; if (*p1 ==NULL && *p2 ==NULL) return true; else if (*p1 == NULL) return false; else if (*p2 == NULL) { // 查找*p1是否全是* while(*p1 == '*') p1++; if (*p1 == NULL) return true; else return false; } if (*p1 != '*') { if (tolower(*p1) != tolower(*p2)) return false; else return IsFileMatch(p1+1, p2+1); } else { while(*++p1 == '*'); if (*p1 == NULL) return true; while (*p2) { while(tolower(*p1) != tolower(*p2) && *++p2); if (*p2 == NULL) return false; if(IsFileMatch(p1+1, p2+1)) return true; p2++; } return false; } } ErrorCodeEnum UploadFSM::SM3FileToStr(CSimpleStringA strFilePath, CSimpleStringA &strSM3,bool isSub) { if(strFilePath.IsNullOrEmpty()){ return Error_Null; } int nlen = strlen(strFilePath.GetData()); char* pchar = new char[nlen+1]; strcpy(pchar,strFilePath.GetData()); BYTE md5[32]={0}; try { if(SM3File(pchar,md5)){ delete pchar; //获取16进制的字符串 if(Error_Succeed!=SM3_Str(strSM3,md5,isSub)){ DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("sm3国密转16进制字符串失败,file=%s",strFilePath.GetData()); return Error_Unexpect; } return Error_Succeed; }else{ delete pchar; DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("sm3国密加密失败,file=%s",strFilePath.GetData()); return Error_Unexpect; } } catch (...) { delete pchar; DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("sm3国密加密异常失败,file=%s",strFilePath.GetData()); return Error_Exception; } } ErrorCodeEnum UploadFSM::SM3_Str(CSimpleStringA &strSM3,BYTE * SM3Byte,bool isSub) { if(SM3Byte == NULL){ return Error_Exception; } int SM3_len=64; if(isSub){ SM3_len=32; } int i; char* file_SM3 = (char*)malloc((SM3_len + 1) * sizeof(char)); if(file_SM3 == NULL) { fprintf(stderr, "SM3 malloc failed.\n"); return Error_Exception; } memset(file_SM3, 0, (SM3_len + 1)); if(SM3_len == 32) { for(i=0; i<16; i++) { //SM3截取中间16位字节,8-24位字节数,小写 sprintf(&file_SM3[i*2], "%02x", SM3Byte[i+8]); } } else if(SM3_len == 64) { for(i=0; i<32; i++) { sprintf(&file_SM3[i*2], "%02x", SM3Byte[i]); } } strSM3=file_SM3; free(file_SM3); return Error_Succeed; } bool UploadFSM::getFileContent(FILE* pFile,unsigned char* content,int beginPos, int contentLen) { if(pFile==NULL||content==NULL){ return false; } #ifdef RVC_OS_WIN clearerr(pFile);//尝试先复位错误指针 #endif if(fseek(pFile,beginPos,SEEK_SET)!=0){ #ifdef RVC_OS_WIN DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("getFileContent fail,fseek beginPos =%d is error =%d",beginPos,(int)GetLastError()); #else DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("getFileContent fail,fseek beginPos =%d is error =%d",beginPos, errno); #endif return false; } unsigned char* pRead = content;//移动的指针 int pRemaind = contentLen; //剩余字节数 int numBytes = 0; while(!feof(pFile)&&!ferror(pFile)){ if(pRemaind<=0){ break; } numBytes=(int)fread(pRead,1,pRemaind,pFile); if(numBytes>0){ pRemaind -=numBytes; pRead +=numBytes; } } if(pRemaind==0){ return true; }else{ #ifdef RVC_OS_WIN DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("getFileContent fail,pRemaind =%d, error=%d",pRemaind,(int)GetLastError()); #else DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("getFileContent fail,pRemaind =%d, error=%d",pRemaind, errno); #endif return false; } } bool UploadFSM::test_zero_ref(const char *path) { #ifdef RVC_OS_WIN HANDLE hFile = CreateFileA(path, GENERIC_READ, 0, NULL, OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); // try open if (hFile != INVALID_HANDLE_VALUE) { CloseHandle(hFile); return TRUE; } else { //添加获取句柄失败情况 LogWarn(Severity_Low, Error_Unexpect, LOG_WARN_UPLOAD_SCANFILE_LOCK_ERROR, CSimpleStringA::Format("test_zero_ref is fail:%s",path).GetData()); DWORD dwRet = GetLastError(); return FALSE; } #else //后期改为linux真正的文件锁,现在来看,暂时用不着 FILE* fp = fopen(path, "rb"); if (fp != NULL) { fclose(fp); return true; } else { LogWarn(Severity_Low, Error_Unexpect, LOG_WARN_UPLOAD_SCANFILE_LOCK_ERROR, CSimpleStringA::Format("check_zero_ref is fail:%s", path).GetData()); return false; } #endif // RVC_OS_WIN } bool UploadFSM::GetFileLength(const char* filePath,long &fileLen) { FILE* file = fopen(filePath, "rb"); if (file!=NULL) { #ifdef RVC_OS_WIN fileLen = filelength(fileno(file)); fclose(file); return true; #else //取得当前文件流的读取位置 int cur_pos = ftell(file); //将文件流的读取位置设为文件末尾 if (fseek(file, SEEK_SET, SEEK_END)==0) { //获取文件末尾的读取位置,即文件大小 fileLen = ftell(file); //将文件流的读取位置还原为原先的值 fseek(file, cur_pos, SEEK_SET); fclose(file); return true; } else { DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("fseek file=%s is fail, err=%d", filePath,errno); fclose(file); return false; } #endif } else{ fileLen = 0; return false; } } void UploadFSM::reportBatchMsg() { CSimpleStringA strReport; if(m_uploadReport.fail==0){ strReport =CSimpleStringA::Format("batch=succ isbreak=%d sum=%d succ=%d fail=%d detail fail: uploadFail=%d updateState=%d operateFileFail=%d (decodeFail=%d queryTempFail=%d)", m_uploadReport.isBreak, m_uploadReport.sum, m_uploadReport.succ, m_uploadReport.fail, m_uploadReport.uploadFail, m_uploadReport.updateState, m_uploadReport.operateFileFail, m_uploadReport.decodeFail, m_uploadReport.queryTempFail); LogWarn(Severity_Low, Error_Unexpect, LOG_WARN_UPLOAD_FILE_REPORT, strReport.GetData()); }else{ strReport =CSimpleStringA::Format("batch=fail isbreak=%d sum=%d succ=%d fail=%d detail fail: uploadFail=%d updateState=%d operateFileFail=%d (decodeFail=%d queryTempFail=%d)", m_uploadReport.isBreak, m_uploadReport.sum, m_uploadReport.succ, m_uploadReport.fail, m_uploadReport.uploadFail, m_uploadReport.updateState, m_uploadReport.operateFileFail, m_uploadReport.decodeFail, m_uploadReport.queryTempFail); LogWarn(Severity_Middle, Error_Unexpect, LOG_WARN_UPLOAD_FILE_REPORT, strReport.GetData()); } //LogWarn(Severity_Middle, Error_Unexpect, LOG_WARN_UPLOAD_FILE_REPORT, strReport.GetData()); } bool UploadFSM::findOverLenWarn(const char* fileName) { if (m_overLenFileList != NULL) { bool isfind = false; list::iterator iter; for (iter = m_overLenFileList->begin(); iter != m_overLenFileList->end(); ++iter) { string fileStr = *iter; if (strcmp(fileName, fileStr.c_str()) == 0) { isfind = true; break; } } if (!isfind) { //未找到,加入队列 m_overLenFileList->push_back(fileName); } return isfind; } return false; }