123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872 |
- #include "stdafx.h"
- #include "UploadFSM.h"
- #include <regex>
- #include <fileutil.h>
- #include <array.h>
- #ifdef RVC_OS_WIN
- #include <cstdlib>
- #include <ctime>
- #include "EventCode.h"
- #else
- #include <thread>
- #include "upload.h"
- #include "path.h"
- #include <sys/stat.h>
- #include <sys/types.h>
- #include <fcntl.h>
- #include <time.h>
- #include <stdio.h>
- #include <cstdio>
- #include <iostream>
- #include <errno.h>
- #include "EventCode.h"
- #endif
- #define UPLOAD_CONTENT_EACH_LEN 512*1024
- UploadFSM::UploadFSM() : m_currUploadFile(NULL)
- {
- m_uploadList = new list<UploadFileInfo*>();
- m_uploadPlanList = new list<UploadPlan *>();
- m_overLenFileList = new list<string>();
- 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<int,string>::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<IConfigInfo> 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<UploadFileInfo*>::iterator iter ;
- for(iter=m_uploadList->begin();iter!=m_uploadList->end();++iter){
- delete *iter;
- }
- m_uploadList->clear();
- }
- if(m_uploadPlanList!=NULL){
- list<UploadPlan*>::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<UploadFileInfo*>::iterator iter ;
- for(iter=m_uploadList->begin();iter!=m_uploadList->end();++iter){
- delete *iter;
- }
- m_uploadList->clear();
- }
- if(m_uploadPlanList!=NULL){
- list<UploadPlan*>::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;i<rootRet["data"]["upload_address"]["upload_url"].size();i++){
- string bUploadUrl = rootRet["data"]["upload_address"]["upload_url"][i].asString();
- m_branchIpList[i+1]=bUploadUrl;
- if(!bUploadUrl.empty()){
- // DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("queryPlan return upload_url=%s",bUploadUrl.c_str());
- }else{
- DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("queryPlan return upload_url=");
- }
- }
- }else{
- DbgWithLink(LOG_LEVEL_INFO,LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("[data][upload_address][upload_url] is null");
- }
- string env = "";//上传服务器地址属于行内还是行外
- if(rootRet["data"]["upload_address"].isMember("env")){
- env = rootRet["data"]["upload_address"]["env"].asString();
- if(strcmp(env.c_str(),"DMZ")==0||strcmp(env.c_str(),"BIZ")==0){
- }else{
- LogWarn(Severity_Middle, Error_Unexpect, LOG_WARN_UPLOAD_QUERY_PLAN_DATA_ERROR, CSimpleStringA::Format("queryPlan http req fail, return [data][upload_address][env] is invaild [%s]",env.c_str()).GetData());
- return false;//上传服务ip环境不正确,走旧模式
- }
- }else{
- LogWarn(Severity_Middle, Error_Unexpect, LOG_WARN_UPLOAD_QUERY_PLAN_DATA_ERROR, CSimpleStringA::Format("queryPlan http req fail, return [data][upload_address][env] is null").GetData());
- return false;//上传服务ip环境为空,走旧模式
- }
- //扫描策略:可能为空
- for (int i =0;i <rootRet["data"]["plan_list"].size();i++){
- UploadPlan* p = new UploadPlan();
- p->plan_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<UploadPlan*>::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(nsecondsInterval<plan->max_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<string>::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;
- }
|