| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072 |
- // CCOS.Dev.GEN.PSGHR.cpp
- #include <assert.h>
- #include <functional>
- #include <unordered_map>
- #include <fstream>
- #include "LogicDevice.h"
- using namespace std::placeholders;
- #include "Helper.JSON.hpp"
- #include "CCOS.Dev.Generator.PSG_HR.h"
- #include "LogLocalHelper.h"
- #include "Log4CPP.h"
- using namespace CCOS::Dev::Detail::Generator;
- namespace nsGEN = CCOS::Dev::Detail::Generator;
- static nsGEN::PSGHRDriver* pIODriver = nullptr;
- #define PSGHR_LARGE_POWER 5
- #define PSGHR_SMALL_POWER 1.1
- #define PSGHR_MAX_HEAT 225
- #define PSGHR_MIN_MA 1.0
- #define PSGHR_MAX_MA 1000.0
- #define PSGHR_MIN_MS 1.0
- #define PSGHR_MAX_MS 10001.0
- #define PSGHR_LoopDefHBTime 1000
- #define PSGHR_LoopExpHBTime 500
- static const int msTimeOut_Lock = 500;
- #define PSGHR_Com_NormalLen 150
- #define PSGHR_ETX 0x03
- #define PSGHR_RESOK "$"
- #define Sleep(ms) std::this_thread::sleep_for(std::chrono::milliseconds(ms))
- static const auto COM_SCFDllName = "libSerialSCF.so";
- static const auto TCP_SCFDllName = "libTcpipSCF.so";
- //Log4CPP::Logger* gLogger = nullptr;
- struct tFrameMapping
- {
- static const int MaxLen = 5;
- using cbFun = std::function <void(const char*, int)>;
- char strHead[MaxLen];
- int NbOfCharOfHead;
- cbFun fun;
- tFrameMapping(const char* str, int len, cbFun f)
- {
- assert(len < MaxLen);
- for (int i = 0; i < len; i++)
- strHead[i] = str[i];
- NbOfCharOfHead = len;
- fun = f;
- }
- };
- static std::list <tFrameMapping> arFrame;
- static bool DecodeFrame(const char* strFrame, int length)
- {
- // 添加安全检查
- if (!strFrame || length <= 0) {
- FERROR("DecodeFrame: Invalid parameters - strFrame={$}, length={$}", (void*)strFrame, length);
- return false;
- }
- auto pr = [strFrame, length](const tFrameMapping& Item)
- {
- // 边界检查:确保不会越界访问
- if (Item.NbOfCharOfHead > length) {
- return false;
- }
- for (int i = 0; i < Item.NbOfCharOfHead; i++)
- {
- if (strFrame[i] != Item.strHead[i])
- {
- return false;
- }
- }
- return true;
- };
- auto found = std::find_if(arFrame.begin(), arFrame.end(), pr);
- if (found == arFrame.end())
- {
- return false;
- }
- const auto& Item = *found;
- auto pc = strFrame;
- char data[100] = { 0 };
- // 找到ETX位置(0x03)
- int etxPos = -1;
- for (int i = Item.NbOfCharOfHead; i < length - 1; i++) // length-1是因为最后一个字节是校验和
- {
- if (strFrame[i] == 0x03)
- {
- etxPos = i;
- break;
- }
- }
- // 计算Data部分的长度
- int dataLength = 0;
- if (etxPos != -1)
- {
- // Data长度 = ETX位置 - Command长度
- dataLength = etxPos - Item.NbOfCharOfHead;
- }
- else
- {
- // 如果没找到ETX,假设Data部分到倒数第二个字节(排除校验和)
- dataLength = length - Item.NbOfCharOfHead - 1;
- }
- // 只复制Data部分
- if (dataLength > 0 && dataLength < 100)
- {
- memcpy(data, strFrame + Item.NbOfCharOfHead, dataLength);
- }
- Item.fun(data, dataLength);
- return true;
- }
- //-----------------------------------------------------------------------------
- // PSGHRDevice
- //-----------------------------------------------------------------------------
- atomic<int> nsGEN::PSGHRDevice::m_iLoopTime = PSGHR_LoopDefHBTime;
- atomic<bool> nsGEN::PSGHRDevice::m_bExtraFlag = false;
- static atomic<bool>HeartBeatFlag = false;
- nsGEN::PSGHRDevice::PSGHRDevice(std::shared_ptr <IOEventCenter> center, std::shared_ptr<SCFWrapper> SCF, string configfile)
- : super(center)
- , superGen()
- , m_SCF(SCF)
- , HeartBeatFlag(false)
- {
- assert(EventCenter);
- m_bExtraFlag = true;
- m_bExpEnable = false;
- m_iLoopTime.store(PSGHR_LoopDefHBTime);
- for (int i = 0; i < 18; i++)
- {
- m_bFaultList[i] = false;
- }
- m_iMaxPower = PSGHR_LARGE_POWER; //KW
- MaxHeatContent = PSGHR_MAX_HEAT; //KJ
- string version;
- //if(GetVersion(version, hMyModule))
- FINFO("\n===============log begin : version:{$} ===================\n", version.c_str());
- //else
- FINFO("\n===============log begin : version:0.0.0.0 ===================\n");
- m_DoseUnit.m_KV.reset(new KVMould(0.0, 39.0, 151.0, 1.0));
- m_DoseUnit.m_MA.reset(new MAMould(0.0, PSGHR_MIN_MA, PSGHR_MAX_MA, 0.1));
- m_DoseUnit.m_MS.reset(new MSMould(0.0, PSGHR_MIN_MS, PSGHR_MAX_MS, 0.01));
- m_DoseUnit.m_MAS.reset(new MASMould(0.0, 0.1, 1000.0, 0.01));
- m_DoseUnit.m_Techmode.reset(new TECHMODEMould(AttrKey::TECHMODE_TYPE::TECHMODE_NOAEC_2P, AttrKey::TECHMODE_NOAEC_3P, AttrKey::TECHMODE_AEC_MAS_MA, 1));
- m_DoseUnit.m_WS.reset(new WORKSTATIONMould(1, 0, 5, 1));
- m_DoseUnit.m_Focus.reset(new FOCUSMould(AttrKey::FOCUS_TYPE::FOCUS_LARGE, AttrKey::FOCUS_SMALL, AttrKey::FOCUS_LARGE, 1));
- m_DoseUnit.m_AECField.reset(new AECFIELDMould(0, 0, 111, 1));
- m_DoseUnit.m_AECFilm.reset(new AECFILMMould(0, 0, 2, 1));
- m_DoseUnit.m_AECDensity.reset(new AECDENSITYMould(0, -3, 3, 1));
- m_DoseUnit.m_GenHE.reset(new GENHEATMould(0, 0, 100, 1));
- m_DoseUnit.m_HE.reset(new TUBEHEATMould(0, 0, 100, 1));
- m_DoseUnit.m_GenSynState.reset(new GENSYNSTATEMould(AttrKey::GENERATOR_RAD_OFF, AttrKey::GENERATOR_SYNC_ERR, AttrKey::GENERATOR_SYNC_MAX, 1));
- m_DoseUnit.m_GenState.reset(new GENSTATEMould(0, AttrKey::GENERATOR_STATUS_SHUTDOWN, AttrKey::GENERATOR_STATUS_MAX, 1));
- m_DoseUnit.m_GenTotalExpNumber.reset(new TOTALEXPNUMMould(0, 0, 9999, 1));
- m_DoseUnit.m_GenTotalAcqTimes.reset(new TOTALACQTIMESMould(0, 0, 9999, 1));
- m_DoseUnit.m_GenTubeCoolWaitTimes.reset(new TUBECOOLTIMEMould(0, 0, 9999, 1));
- m_DoseUnit.m_GenTubeOverLoadNumber.reset(new TUBEOVERLOADNUMMould(0, 0, 9999, 1));
- m_DoseUnit.m_GenCurrentExpNumber.reset(new CUREXPNUMMould(0, 0, 9999, 1));
- m_DoseUnit.m_ExpMode.reset(new EXPMODEMould(AttrKey::EXPMODE_TYPE::Single));
- m_DoseUnit.m_FrameRate.reset(new FRAMERATEMould(0, 0, 16, 1));
- m_DoseUnit.m_FLMode.reset(new FLUModeMould(AttrKey::GENERATOR_FLUMode::GENERATOR_FLMODE_NOTFLU));
- m_DoseUnit.m_BatteryChargeState.reset(new BATTERYCHARGSTATEMould(0, 0, 1, 1));
- m_DoseUnit.m_TubeTargetMaterial.reset(new TUBETARGETMATERIALMould(AttrKey::TUBETARGETMATERIAL_TYPE::MO));
- m_DoseUnit.m_TubeAngle.reset(new TUBEANGLEMould(0, -45, 45, 1));
- m_DoseUnit.m_FLIntTime.reset(new FLUIntTimeMould(0.0, 0.0, 100.0, 0.1));
- m_DoseUnit.m_FLAccTime.reset(new FLAccTimeMould(0.0, 0.0, 999.0, 0.1));
- m_DoseUnit.m_FLKV.reset(new FLUKVMould(0, 40, 125, 1));
- m_DoseUnit.m_FLMS.reset(new FLUMSMould(10.0, 10.0, 999999.0, 0.01));
- m_DoseUnit.m_FLMA.reset(new FLUMAMould(0.5, 0.5, 99.0, 0.1));
- m_DoseUnit.m_ABSStatus.reset(new FLUABSStatusMould(0, 0, 2, 1));
- m_DoseUnit.m_PPS.reset(new PPSMould(0.5,0.5, 30, 0.1));
- m_DoseUnit.m_DoseLevel.reset(new FLUDoseLevelMould(0, 0, 2, 1));
- m_DoseUnit.m_FLMode.reset(new FLUModeMould(0, 0, 4, 1));
- m_DoseUnit.m_Curve.reset(new FLUCurveMould(0, 0, 3, 1));
-
- //Actual exposure parameters ֵ
- m_DoseUnit.m_PostKV.reset(new POSTKVMould(0.0, 40.0, 120.0, 1.0));
- m_DoseUnit.m_PostMA.reset(new POSTMAMould(0.0, 1.0, 1000.0, 0.1));
- m_DoseUnit.m_PostMS.reset(new POSTMSMould(0.0, 1.0, 10000.0, 0.01));
- m_DoseUnit.m_PostMAS.reset(new POSTMASMould(0.0, 0.5, 1000.0, 0.01));
- m_MSGUnit.reset(new nsDetail::MSGUnit(center, nsGEN::GeneratorUnitType));
-
- m_hGenPostEvent = LinuxEvent::CreateEvent(LinuxEvent::MANUAL_RESET, false);
- OnCallBack();
- Register();
- LoadConfig(configfile);
-
- StartHardwareStatusThread();
- }
- nsGEN::PSGHRDevice::~PSGHRDevice()
- {
- m_bExtraFlag = false;
- if (m_pHardwareStatusThread.joinable()) {
- m_pHardwareStatusThread.join();
- }
- FINFO("\n===============log end ===================\n");
- arFrame.clear();
- }
- std::string nsGEN::PSGHRDevice::GetGUID() const
- {
- FINFO("===============GetGUID : {$} ===================\n", GeneratorUnitType);
- return GeneratorUnitType;
- }
- void nsGEN::PSGHRDevice::Register()
- {
- auto Disp = m_Dispatch.Lock().As();
- superGen::Register(Disp);
- superGen::RegisterRAD(Disp);
- superGen::RegisterAEC(Disp);
- superGen::RegisterExpEnable(Disp);
- superGen::RegisterGeneratortoSyncStatus(Disp);
- superGen::RegisterFluoro(Disp);
- Disp->Get.Push(m_MSGUnit->GetKey().c_str(), [this](std::string& out) { out = m_MSGUnit->JSGet(); return RET_STATUS::RET_SUCCEED; });
- Disp->Get.Push(AttrKey::DENHEAT, [this](std::string& out) { out = m_DoseUnit.m_GenHE->JSGet(); return RET_STATUS::RET_SUCCEED; });
- auto fun_Clear_DAP = [this](auto in, auto& out)
- {
- return Clear_DAP();
- };
- Disp->Action.Push("Clear_DAP", fun_Clear_DAP);
- auto fun_GetValue_DAP = [this](auto in, auto& out)
- {
- float value = 0;
- RET_STATUS ret = GetValue_DAP(value);
- out = ToJSON(value);
- return ret;
- };
- Disp->Action.Push("GetValue_DAP", fun_GetValue_DAP);
- }
- RET_STATUS nsGEN::PSGHRDevice::IncKV()
- {
- FINFO("Enter PSGHRDevice::IncKV()\n");
- if (!m_DoseUnit.m_KV->CanInc()) return RET_STATUS::RET_SUCCEED;
- return HWSend("KV+", 3);
- }
- RET_STATUS nsGEN::PSGHRDevice::DecKV()
- {
- if (!m_DoseUnit.m_KV->CanDec()) return RET_STATUS::RET_SUCCEED;
- return HWSend("KV-", 3);
- }
- RET_STATUS nsGEN::PSGHRDevice::SetKV(float value)
- {
- if (!m_DoseUnit.m_KV->Verify(value)) return RET_STATUS::RET_SUCCEED;
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "KV%03d", (int)value);
- return HWSend(temp, strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::IncMA()
- {
- if (!m_DoseUnit.m_MA->CanInc()) return RET_STATUS::RET_SUCCEED;
- if (m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_V2TYPE::ET_MAS)
- {
- FINFO("\n Techmode is MAS, can't inc MA");
- return RET_STATUS::RET_FAILED;
- }
- return HWSend("MA+",3);
- }
- RET_STATUS nsGEN::PSGHRDevice::DecMA()
- {
- if (!m_DoseUnit.m_MA->CanDec()) return RET_STATUS::RET_SUCCEED;
- if (m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_V2TYPE::ET_MAS)
- {
- FINFO("\n Techmode is MAS, can't dec MA");
- return RET_STATUS::RET_FAILED;
- }
- return HWSend("MA-", 3);
- }
- RET_STATUS nsGEN::PSGHRDevice::SetMA(float value)
- {
- if (!m_DoseUnit.m_MA->Verify(value)) return RET_STATUS::RET_SUCCEED;
- if (m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_V2TYPE::ET_MAS)
- {
- FINFO("\n Techmode is MAS, can't set MA");
- return RET_STATUS::RET_FAILED;
- }
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "MA%05d", (int)(value * 10));
- return HWSend(temp, strlen(temp));
-
- }
- RET_STATUS nsGEN::PSGHRDevice::IncMS()
- {
- FINFO("nsGEN::PSGHRDevice::IncMS()\n");
- if (!m_DoseUnit.m_MS->CanInc()) return RET_STATUS::RET_SUCCEED;
- if (m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_TYPE::TECHMODE_NOAEC_2P ||
- m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_TYPE::TECHMODE_AEC_2P)
- {
- FINFO("Techmode is 2Point, Cannot inc MS \n");
- return RET_STATUS::RET_FAILED;
- }
- return HWSend("MS+",3);
- }
- RET_STATUS nsGEN::PSGHRDevice::DecMS()
- {
- if (!m_DoseUnit.m_MS->CanDec()) return RET_STATUS::RET_SUCCEED;
- if (m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_TYPE::TECHMODE_NOAEC_2P ||
- m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_TYPE::TECHMODE_AEC_2P)
- {
- FINFO("Techmode is 2Point, Cannot dec MS \n");
- return RET_STATUS::RET_FAILED;
- }
- return HWSend("MS-", 3);;
- }
- RET_STATUS nsGEN::PSGHRDevice::SetMS(float value)
- {
- if (!m_DoseUnit.m_MS->Verify(value)) return RET_STATUS::RET_SUCCEED;
- if (m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_TYPE::TECHMODE_NOAEC_2P ||
- m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_TYPE::TECHMODE_AEC_2P)
- {
- FINFO("Techmode is 2Point, Cannot set MS \n");
- return RET_STATUS::RET_FAILED;
- }
-
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "MS%07d", (int)(value * 100));
- return HWSend(temp,strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::IncMAS()
- {
- FINFO("nsGEN::PSGHRDevice::IncMAS()\n");
- if (!m_DoseUnit.m_MAS->CanInc()) return RET_STATUS::RET_SUCCEED;
- if (m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_TYPE::TECHMODE_NOAEC_3P ||
- m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_TYPE::TECHMODE_AEC_3P)
- {
- FINFO("Techmode is 3Point, Cannot inc MAS \n");
- return RET_STATUS::RET_FAILED;
- }
- return HWSend("MX+" , 3);
- }
- RET_STATUS nsGEN::PSGHRDevice::DecMAS()
- {
- if (!m_DoseUnit.m_MAS->CanDec()) return RET_STATUS::RET_SUCCEED;
- if (m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_TYPE::TECHMODE_NOAEC_3P ||
- m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_TYPE::TECHMODE_AEC_3P)
- {
- FINFO("Techmode is 3Point, Cannot dec MAS \n");
- return RET_STATUS::RET_FAILED;
- }
- return HWSend("MX-", 3);
- }
- RET_STATUS nsGEN::PSGHRDevice::SetMAS(float value)
- {
- if (!m_DoseUnit.m_MAS->Verify(value)) return RET_STATUS::RET_SUCCEED;
- if (m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_TYPE::TECHMODE_NOAEC_3P ||
- m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_TYPE::TECHMODE_AEC_3P)
- {
- FINFO("Techmode is 3Point, Cannot set MAS \n");
- return RET_STATUS::RET_FAILED;
- }
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "MX%06d", (int)(value * 100));
- return HWSend(temp, strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::SetTechmode(int value)
- {
- if (!m_DoseUnit.m_Techmode->Verify(value)) return RET_STATUS::RET_SUCCEED;
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "ET%1d", (int)value);
- return HWSend(temp, strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::SetEXAMMode(std::string value)
- {
- //�ϲ��������exam mode��manual semiauto automatic����Ӧ��NoAEC2Point AEC2Point AEC2Point��
- FINFO("Enter setexammode func value = {$}\n", value);
- if (value == AttrKey::EXAMMODE_TYPE::MANUAL)
- {
- SetTechmode(AttrKey::TECHMODE_TYPE::TECHMODE_NOAEC_2P);
- }
- else if (value == AttrKey::EXAMMODE_TYPE::SEMIAUTO)
- {
- SetTechmode(AttrKey::TECHMODE_TYPE::TECHMODE_AEC_2P);
- }
- else if (value == AttrKey::EXAMMODE_TYPE::AUTOMATIC)
- {
- SetTechmode(AttrKey::TECHMODE_TYPE::TECHMODE_AEC_2P);
- }
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::SetAPR(const _tAPRArgs& t)
- {
- m_bGenBusy = true;
- FINFO("APR:KV={$},MA={$},MS={$},MAS={$},Focus={$},Techmode={$},WS={$},AECDensity={$},AECField={$},AECFilm={$}", t.fKV, t.fMA, t.fMS, t.fMAS, t.nFocus, t.nTechmode, t.nWS, t.nAECDensity, t.nAECField, t.nAECFilm);
- if (t.nFocus < 0)
- {
- FINFO("SetAPR: the focus value is amall than 0, set focus to small focus\n");
- SetFocus(0);
- }
- int nTempAECFilm = 1;
- switch (t.nAECFilm)
- {
- case 0:
- nTempAECFilm = 1;
- break;
- case 1:
- nTempAECFilm = 10;
- break;
- case 2:
- nTempAECFilm = 100;
- break;
- default:
- break;
- }
- SetKV(t.fKV);
- SetFocus(t.nFocus);
- if (t.nTechmode == AttrKey::TECHMODE_V2TYPE::ET_AEC)
- {
- // aec
- SetTechmode(t.nTechmode);
- Sleep(50);
- SetAECField(t.nAECField);
- Sleep(80);
- SetAECDensity(t.nAECDensity);
- Sleep(50);
- SetAECFilm(nTempAECFilm);
- Sleep(50);
- SetMA(t.fMA);
- Sleep(50);
- SetMS(t.fMS);
- }
- else if (t.nTechmode == AttrKey::TECHMODE_V2TYPE::ET_MAS)
- {
- // mas
- SetTechmode(t.nTechmode);
- Sleep(50);
- const float EPSINON = 0.000001;
- if ((t.fMAS >= -EPSINON) && (t.fMAS <= EPSINON))
- {
- SetMAS(t.fMA * t.fMS / 1000);
- }
- else
- {
- SetMAS(t.fMAS);
- }
- }
- else if (t.nTechmode == AttrKey::TECHMODE_V2TYPE::ET_TIME)
- {
- // time
- SetTechmode(t.nTechmode);
- Sleep(50);
- SetMA(t.fMA);
- Sleep(80);
- SetMS(t.fMS);
- }
- m_bGenBusy = false;
- HWSend("RR", 2);
- ///////////////////////end
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::RefreshData()
- {
- if (!m_bGenBusy)
- {
- HWSend("RR", 2);
- Sleep(50);
- HWSend("RS", 2);
- }
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::SetFocus(int value)
- {
- if (!m_DoseUnit.m_Focus->Verify(value)) return RET_STATUS::RET_SUCCEED;
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "FO%01d", (int)value);
- return HWSend(temp,strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::Reset()
- {
- FDEBUG("clear all errors \n");
- int level = 0;
- m_MSGUnit->DelErrorMessage("0", level, "clear all errors");
- m_MSGUnit->DelWarnMessage("0", level, "clear all Warning");
- HWSend("RE",2);//�����ô���״̬
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::ActiveSyncMode(_tSyncModeArgs value)
- {
- FINFO("value.strSyncMode: {$}, value.strSyncValue: {$}, value.strWS: {$} \n", value.strSyncMode, value.strSyncValue, value.strWS);
- int nSyncModeValue = atoi(value.strSyncValue.c_str());
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "WS%01d", nSyncModeValue);
- return HWSend(temp, strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::QueryHE(int& value)
- {
- if (!m_bGenBusy)
- return HWSend("HE?", 3);
- return RET_STATUS::RET_SUCCEED;
- }
- void nsGEN::PSGHRDevice::SubscribeSelf(ccos_mqtt_connection* conn)
- {
- //����GEN����Action
- //SubscribeTopic(conn, "CCOS/DEVICE/Generator/Action/#"); Moduld��Ĭ�϶��������Action��������Ҳ���ĵĻ��ͻ�ִ������Action�����ܻ������
- }
- RET_STATUS nsGEN::PSGHRDevice::SetVibrationGrid(int value)
- {
- FINFO("Enter StartVibrationGrid:[{$}]", value);
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::GetVibrationGridMS(int& value)
- {
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::SetAECDensity(int value)
- {
- if (!m_DoseUnit.m_AECDensity->Verify(value)) return RET_STATUS::RET_SUCCEED;
- if (m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_V2TYPE::ET_AEC) return RET_STATUS::RET_FAILED;
- int nAECDensity = m_DoseUnit.m_AECDensity->Get();
- if (value < m_DoseUnit.m_AECDensity->Get())
- {
- if (value < m_DoseUnit.m_AECDensity->Get() - 1)
- {
- nAECDensity = (int)value;
- }
- else
- {
- nAECDensity = nAECDensity - 1;
- }
- }
- else if (value > m_DoseUnit.m_AECDensity->Get())
- {
- if (value > m_DoseUnit.m_AECDensity->Get() + 1)
- {
- nAECDensity = (int)value;
- }
- else
- {
- nAECDensity = nAECDensity + 1;
- }
- }
- m_DoseUnit.m_AECDensity->Update(value);
- char temp[50] = { 0 };
- if (nAECDensity >= 0)
- {
- snprintf(temp, sizeof(temp), "FN+%01d", (int)nAECDensity);
- }
- else
- {
- snprintf(temp, sizeof(temp), "FN-%01d", (int)nAECDensity);
- }
- return HWSend(temp, strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::SetAECField(int value)
- {
- if (!m_DoseUnit.m_AECField->Verify(value)) return RET_STATUS::RET_SUCCEED;
- if (m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_V2TYPE::ET_MAS) return RET_STATUS::RET_FAILED;
- m_DoseUnit.m_AECField->Update(value);
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "FI%03d", (int)value);
- return HWSend(temp, strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::SetAECFilm(int value)
- {
- if (!m_DoseUnit.m_AECFilm->Verify(value)) return RET_STATUS::RET_SUCCEED;
- if (m_DoseUnit.m_Techmode->Get() == AttrKey::TECHMODE_V2TYPE::ET_MAS) return RET_STATUS::RET_FAILED;
- m_DoseUnit.m_AECFilm->Update(value);
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "FS%03d", (int)value);
- return HWSend(temp, strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::SetWS(const string value)
- {
- FINFO("Enter SetWS {$}", value);
- int tempws = 0;
- if (value == "Table") tempws = (int)m_GenConfig["WSTable"];
- else if (value == "Wall") tempws = (int)m_GenConfig["WSWall"];
- else if (value == "Direct") tempws = (int)m_GenConfig["WSConventional"];
- else if (value == "Free") tempws = (int)m_GenConfig["WSFree"];
- else if (value == "Tomo") tempws = (int)m_GenConfig["WSTomo"];
- m_DoseUnit.m_WS->Update(tempws);
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "WS%01d", tempws);
- return HWSend(temp, strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::QueryPostKV(float& value)
- {
- m_DoseUnit.m_PostKV->Update(m_DoseUnit.m_KV->Get());
- value = m_DoseUnit.m_PostKV->Get();
- return HWSend("VP?",3);
- }
- RET_STATUS nsGEN::PSGHRDevice::QueryPostMA(float& value)
- {
- return HWSend("PA?", 3);
- }
- RET_STATUS nsGEN::PSGHRDevice::QueryPostMS(float& value)
- {
- return HWSend("AT?",3);
- }
- RET_STATUS nsGEN::PSGHRDevice::QueryPostMAS(float& value)
- {
- return HWSend("AP?", 3);
- }
- RET_STATUS nsGEN::PSGHRDevice::Clear_DAP()
- {
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::GetValue_DAP(float& value)
- {
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::StartMove() //������������
- {
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::EndMove() //������������
- {
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::SetGenSynState(int value)
- {
- FINFO("Enter SetGenSynState...{$} \n", value);
- //if (AttrKey::GENERATOR_RAD_XRAYON == value)
- //{
- // FINFO("SetGenSynState be call.this is soft syn mode.");
- // HWSend("XR2",3);
- // m_DoseUnit.m_GenSynState->Update(AttrKey::GENERATOR_RAD_XRAYON);
- // FireNotify(m_DoseUnit.m_GenSynState->GetKey(), m_DoseUnit.m_GenSynState->JSGet());
- //}
- //else if(AttrKey::GENERATOR_FLU_XRAYON == value)
- //{
- // FINFO("SetGenSynState be call.this is soft syn mode.");
- // //HWSend("FLX2", 4);
- // //m_DoseUnit.m_GenSynState->Update(AttrKey::GENERATOR_FLU_XRAYON);
- // //FireNotify(m_DoseUnit.m_GenSynState->GetKey(), m_DoseUnit.m_GenSynState->JSGet());
- //}
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::SetGenState(int value)
- {
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::SetExpMode(std::string value)
- {
- FINFO("Enter SetExpMode...{$} \n",value.c_str());
- m_DoseUnit.m_ExpMode->Update(value);
- //add for dcm iRF hard
- FINFO("SetExpMode:add for dcm iRF hard");
- FireNotify(AttrKey::GENSTATE, m_DoseUnit.m_GenState->JSGet());
- FireNotify(m_DoseUnit.m_TubeTargetMaterial->GetKey(), m_DoseUnit.m_TubeTargetMaterial->JSGet());
- FireNotify(m_DoseUnit.m_TubeAngle->GetKey(), m_DoseUnit.m_TubeAngle->JSGet());
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::SetFLFMode(std::string value)
- {
- FINFO("Enter SetFLFMode...{$} \n", value.c_str());
- if (value == "CF")
- {
- m_DoseUnit.m_FLMode->Update(1);
- HWSend("FLF1", 4);
- SetPPS(15);
- SetPluseWidth(15);
- }
- else if (value == "PF")
- {
- m_DoseUnit.m_FLMode->Update(2);
- HWSend("FLF2", 4);
- SetPPS(5);
- SetPluseWidth(5);
- }
- else
- {
- FINFO("other FluMode : {$}", value.c_str());
- return RET_STATUS::RET_SUCCEED;
- }
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::SetFLLever(float value)
- {
- FINFO("Enter SetFLLever...{$} \n", value);
- m_DoseUnit.m_DoseLevel->Update(value);
- char temp[50]{ 0 };
- snprintf(temp, sizeof(temp), "FLD%f", value);
- return HWSend(temp, strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::SetFrameRate(float frameRate)
- {
- FINFO("SetFrameRate in\n");
- /*m_DoseUnit.m_FrameRate->Update(frameRate);
-
- char temp[50]{ 0 };
- snprintf(temp, sizeof(temp), "FLS%03d", int(frameRate * 10));
- return HWSend(temp, strlen(temp));*/
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::SetRPS(int rps) //�������˶�̬����
- {
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::SetAPF(const _tAPFArgs& t)
- {
- m_bGenBusy = true;
- FINFO("APF:FLKV={$},FLMA={$},PPS={$},WS={$},FLuType={$},ABSMode={$},DoseLever={$}", t.nFLKV, t.fFLMA, t.nPPS, t.nWS, t.nFluMode, t.nABSMode, t.nDoseLever);
- SetABSMode(t.nABSMode);
- Sleep(50);
- SetFLFMode(to_string(t.nFluMode));
- Sleep(50);
- SetFluDoseLever(t.nDoseLever);
- Sleep(50);
- SetFluKV(t.nFLKV);
- Sleep(50);
- SetFluMA(t.fFLMA);
- m_bGenBusy = false;
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::IncFluKV()
- {
- FINFO("nsGEN::PSGHRDevice::IncFLKV()\n");
- if (!m_DoseUnit.m_FLKV->CanInc()) return RET_STATUS::RET_SUCCEED;
- return HWSend("FLK+", 4);
- }
- RET_STATUS nsGEN::PSGHRDevice::DecFluKV()
- {
- if (!m_DoseUnit.m_FLKV->CanDec()) return RET_STATUS::RET_SUCCEED;
- return HWSend("FLK-", 4);
- }
- RET_STATUS nsGEN::PSGHRDevice::SetFluKV(float value)
- {
- if (!m_DoseUnit.m_FLKV->Verify(value)) return RET_STATUS::RET_SUCCEED;
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "FLK%03d", (int)value);
- return HWSend(temp, strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::IncFluMA()
- {
- if (!m_DoseUnit.m_FLMA->CanInc()) return RET_STATUS::RET_SUCCEED;
- return HWSend("FLM+", 4);
- }
- RET_STATUS nsGEN::PSGHRDevice::DecFluMA()
- {
- if (!m_DoseUnit.m_FLMA->CanDec()) return RET_STATUS::RET_SUCCEED;
- return HWSend("FLM-", 4);
- }
- RET_STATUS nsGEN::PSGHRDevice::SetFluMA(float value)
- {
- if (!m_DoseUnit.m_FLMA->Verify(value)) return RET_STATUS::RET_SUCCEED;
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "FLM%03d", (int)(value * 10));
- return HWSend(temp, strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::INCPPS()
- {
- if (!m_DoseUnit.m_PPS->CanInc()) return RET_STATUS::RET_SUCCEED;
- return HWSend("FLS+", 4);
- }
- RET_STATUS nsGEN::PSGHRDevice::DECPPS()
- {
- if (!m_DoseUnit.m_PPS->CanDec()) return RET_STATUS::RET_SUCCEED;
- return HWSend("FLS-", 4);
- }
- RET_STATUS nsGEN::PSGHRDevice::SetPPS(float value)
- {
- if (!m_DoseUnit.m_PPS->Verify(value)) return RET_STATUS::RET_SUCCEED;
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "FLS%03d", (int)(value * 10));
- return HWSend(temp, strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::SetABSMode(int nMode)
- {
- if (!m_DoseUnit.m_ABSStatus->Verify(nMode)) return RET_STATUS::RET_SUCCEED;
- char temp[50] = { 0 };
- FINFO("SetABSMode[{$}] \n", nMode);
- snprintf(temp, sizeof(temp), "FLA%d", (int)nMode);
- return HWSend(temp, strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::SetABSCurve(int curveNum)
- {
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::IncABSCurve()
- {
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::DecABSCurve()
- {
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::GetABSCurve()
- {
- return HWSend("FLA?", 4);
- }
- float nsGEN::PSGHRDevice::GetFluIntTimer()
- {
- return HWSend("FLI?", 4);
- }
- float nsGEN::PSGHRDevice::GetFluAccTimer()
- {
- return HWSend("FLT?", 4);
- }
- RET_STATUS nsGEN::PSGHRDevice::ResetFluTimer(int value)
- {
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "FLR%d", (int)value);
- FINFO("ReSetFluAccTimer[{$}] \n", value);
- return HWSend(temp, strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::SetFluPre(int value)
- {
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::SetFluEXP(int value)
- {
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::SetFluMode(std::string value)
- {
- FINFO("Enter SetFLFMode...{$} \n", value.c_str());
- if (value == "CF")
- {
- m_DoseUnit.m_FLMode->Update(1);
- return HWSend("FLF1", 4);
- }
- else if (value == "PF")
- {
- m_DoseUnit.m_FLMode->Update(2);
- return HWSend("FLF2", 4);
- }
- else
- {
- FINFO("other FluMode : {$}",value.c_str());
- return RET_STATUS::RET_SUCCEED;
- }
- }
- RET_STATUS nsGEN::PSGHRDevice::SetFluDoseLever(int value)
- {
- FINFO("Enter SetFluDoseLever...{$} \n", value);
- m_DoseUnit.m_DoseLevel->Update(value);
- char temp[50]{ 0 };
- snprintf(temp, sizeof(temp), "FLD%d", value);
- return HWSend(temp, strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::SetPluseWidth(float fplusewidth)
- {
- if (!m_DoseUnit.m_PPS->Verify(fplusewidth)) return RET_STATUS::RET_SUCCEED;
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "FLW%05d", (int)(fplusewidth * 100));
- return HWSend(temp, strlen(temp));
- }
- RET_STATUS nsGEN::PSGHRDevice::SetExpEnable()
- {
- if (1 == m_bUseCECmd)
- {
- HWSend("CE1", 3);
- Sleep(50);
- }
- HWSend("ST?", 3);
- FINFO("SetExpEnable in\n");
- m_bExpEnable = true;
- FireNotify(AttrKey::GENSTATE, m_DoseUnit.m_GenState->JSGet());
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::SetExpDisable()
- {
- if (1 == m_bUseCECmd)
- {
- HWSend("CE0", 3);
- Sleep(50);
- }
- FireNotify(AttrKey::GENSTATE, m_DoseUnit.m_GenState->JSGet());
- FINFO("SetExpDisable in\n");
- m_bExpEnable = false;
- return RET_STATUS::RET_SUCCEED;
- }
- RET_STATUS nsGEN::PSGHRDevice::PrepareAcquisition()
- {
- FireNotify(AttrKey::GENSTATE, m_DoseUnit.m_GenState->JSGet());
- return RET_STATUS::RET_SUCCEED;
- }
- void nsGEN::PSGHRDevice::SetSmartAEC(int value)
- {
- }
- //-----------------------------------------------------------------------------
- // ProcessCmd
- //-----------------------------------------------------------------------------
- void nsGEN::PSGHRDevice::ProcessClientData(const char* pData, unsigned long nDataLength, void* lparam)
- {
- PSGHRDevice* pCurGen = (PSGHRDevice*)lparam;
- pCurGen->HWSend(pData, nDataLength);
- }
- RET_STATUS nsGEN::PSGHRDevice::HWSend(const char* strCommand,int lengh, bool reSend, int nTimeOut)
- {
- if (!m_SCF) {
- FINFO("Failed - Serial communication interface not initialized");
- if (m_DoseUnit.m_GenState->Update(nsGEN::AttrKey::GENERATOR_STATUS_SHUTDOWN))
- {
- FireNotify(AttrKey::GENSTATE, m_DoseUnit.m_GenState->JSGet());
- FINFO("Generator status updated to {$}", static_cast<int>(nsGEN::AttrKey::GENERATOR_STATUS_SHUTDOWN));
- }
- return RET_STATUS::RET_FAILED;
- }
- if (!m_SCF->IsConnected())
- {
- FERROR("Failed - Device not connected");
- if (m_DoseUnit.m_GenState->Update(nsGEN::AttrKey::GENERATOR_STATUS_SHUTDOWN))
- {
- FireNotify(AttrKey::GENSTATE, m_DoseUnit.m_GenState->JSGet());
- FINFO("Generator status updated to {$}", static_cast<int>(nsGEN::AttrKey::GENERATOR_STATUS_SHUTDOWN));
- }
- return RET_STATUS::RET_FAILED;
- }
- // 使用传入的lengh参数,如果为0则用strlen计算
- int cmdLen = (lengh > 0) ? lengh : strlen(strCommand);
- // 检查缓冲区大小,数据包 = 命令 + ETX(1字节) + CheckSum(1字节)
- const int maxCmdLen = 256; // 增大缓冲区以支持更长的命令
- if (cmdLen > maxCmdLen - 2)
- {
- FERROR("Command too long: {$} bytes, max allowed: {$} bytes\n", cmdLen, maxCmdLen - 2);
- return RET_STATUS::RET_FAILED;
- }
- char strSendCommand[maxCmdLen] = { 0 };
- // 计算校验和
- int tmpSum = 0;
- for (int i = 0; i < cmdLen; i++)
- {
- tmpSum += (unsigned char)strCommand[i];
- }
- char checkSum = char(tmpSum + 3);
- // 构建数据包:命令 + ETX + CheckSum
- memcpy(strSendCommand, strCommand, cmdLen);
- strSendCommand[cmdLen] = 0x03;
- strSendCommand[cmdLen + 1] = checkSum;
- int totalLen = cmdLen + 2; // 实际发送的总长度
- // 打印完整数据包的十六进制和ASCII(含ETX和CheckSum)便于调试
- std::string hexStr;
- std::string asciiStr;
- hexStr.reserve(totalLen * 3);
- asciiStr.reserve(cmdLen + 10);
- int printLen = std::min(totalLen, 32); // 最多打印前32字节
- for (int i = 0; i < printLen; i++) {
- char buf[4];
- snprintf(buf, sizeof(buf), "%02X ", (unsigned char)strSendCommand[i]);
- hexStr += buf;
- }
- if (totalLen > 32) hexStr += "...";
- // 提取可打印的ASCII字符串(命令部分,不包括ETX和CheckSum)
- for (int i = 0; i < cmdLen; i++) {
- char ch = strCommand[i];
- if (ch >= 32 && ch <= 126) { // 可打印字符
- asciiStr += ch;
- } else {
- asciiStr += '.'; // 不可打印字符用'.'表示
- }
- }
- asciiStr += " + ETX + CKS"; // 标注后面的控制字符
- FINFO("==OUT== Packet[{$}]: HEX=[{$}] ASCII=[{$}]\n", totalLen, hexStr.c_str(), asciiStr.c_str());
- // 发送数据包,支持重发机制
- int maxRetry = reSend ? 2 : 1; // 如果reSend为true,最多重试2次
- unsigned int retLength = 0;
- for (int retry = 0; retry < maxRetry; retry++)
- {
- if (retry > 0)
- {
- FWARN("Retry sending packet, attempt {$}/{$}\n", retry + 1, maxRetry);
- Sleep(100); // 重试前短暂延时
- }
- if (m_SCF->Lock(1000) == WAIT_OBJECT_0)
- {
- // 使用实际长度totalLen,而不是strlen
- int result = m_SCF->SendPacket(strSendCommand, totalLen, nTimeOut, retLength);
- m_SCF->Unlock();
- if (result == SCF_SUCCEED)
- {
- if (retry > 0)
- {
- FINFO("Send succeeded after {$} retries\n", retry);
- }
- return RET_STATUS::RET_SUCCEED;
- }
- else
- {
- FERROR("SendPacket failed, result={$}, retry={$}/{$}\n", result, retry + 1, maxRetry);
- }
- }
- else
- {
- FERROR("Lock failed, retry={$}/{$}\n", retry + 1, maxRetry);
- }
- }
- FERROR("Send failed after {$} attempts\n", maxRetry);
- return RET_STATUS::RET_FAILED;
- }
- void nsGEN::PSGHRDevice::FireNotify(string key, int context)
- {
- char szInfo[64] = { 0 };
- snprintf(szInfo, sizeof(szInfo), "%d", context); // Linux ������
- std::string str = szInfo;
- EventCenter->OnNotify(1, key, str);
- }
- void nsGEN::PSGHRDevice::FireNotify(std::string key, float context)
- {
- char szInfo[16] = { 0 };
- snprintf(szInfo, sizeof(szInfo), "%.2f", context); // Linux ������
- std::string str = szInfo;
- EventCenter->OnNotify(1, key, str);
- }
- void nsGEN::PSGHRDevice::FireNotify(std::string key, std::string context)
- {
- EventCenter->OnNotify(1, key, context);
- }
- void nsGEN::PSGHRDevice::FireErrorMessage(const bool Act, const int Code, const char* ResInfo)
- {
- string ErrorCode("PSGHR_ERR_");
- ErrorCode += std::to_string(Code);
- int level = PSG_HR_REGULATION_LEVEL::REG_ERRO;
- if (Act)
- {
- FERROR("add {$}:{$}", ErrorCode.c_str(), ResInfo);
- m_MSGUnit->AddErrorMessage(ErrorCode.c_str(), level, ResInfo);
- }
- else
- {
- FERROR("del {$}:{$}", ErrorCode.c_str(), ResInfo);
- m_MSGUnit->DelErrorMessage(ErrorCode.c_str(), level, ResInfo);
- }
- }
- void nsGEN::PSGHRDevice::FireWarnMessage(const bool Act, const int Code, const char* ResInfo)
- {
- string ErrorCode("PSGHR_WAR_");
- ErrorCode += std::to_string(Code);
- int level = PSG_HR_REGULATION_LEVEL::REG_WARN;
- if (Act)
- {
- FERROR("add {$}:{$}", ErrorCode.c_str(), ResInfo);
- m_MSGUnit->AddWarnMessage(ErrorCode.c_str(), level, ResInfo);
- }
- else
- {
- FERROR("del {$}:{$}", ErrorCode.c_str(), ResInfo);
- m_MSGUnit->DelWarnMessage(ErrorCode.c_str(), level, ResInfo);
- }
- }
- void nsGEN::PSGHRDevice::OnCallBack()
- {
- FINFO("=== OnCallBack: Start parsing device commands ===");
- auto HWNotProcess = [](const char* value, int length) -> void
- {
- FINFO("Command [{$}] - No processing needed", value);
- };
- auto extractValue = [](const char* src, int start, int len, bool isInt = false) -> double {
- char buf[7] = { 0 };
- memcpy(buf + (7 - len), src + start, len);
- return isInt ? atoi(buf) : atof(buf);
- };
- auto HWKV = [this, extractValue](const char* value, int length) {
- assert(value);
- if (length > 20) {
- FINFO("KV: Parsing combined exposure params: {$}", value);
- int tmpkv = static_cast<int>(extractValue(value, 0, 3, true));
- float tmpma = static_cast<float>(extractValue(value, 6, 5)) / 10.0f;
- float tmpms = static_cast<float>(extractValue(value, 14, 7)) / 100.0f;
- float tmpmx = static_cast<float>(extractValue(value, 24, 6)) / 100.0f;
- m_DoseUnit.m_KV->Update(tmpkv);
- FireNotify(AttrKey::KV, m_DoseUnit.m_KV->JSGet());
- m_DoseUnit.m_MA->Update(tmpma);
- FireNotify(AttrKey::MA, m_DoseUnit.m_MA->JSGet());
- m_DoseUnit.m_MS->Update(tmpms);
- FireNotify(AttrKey::MS, m_DoseUnit.m_MS->JSGet());
- m_DoseUnit.m_MAS->Update(tmpmx);
- FireNotify(AttrKey::MAS, m_DoseUnit.m_MAS->JSGet());
- FINFO("KV: Parsed - KV={$}, MA={$}, MS={$}, MAS={$}", tmpkv, tmpma, tmpms, tmpmx);
- }
- else {
- if (m_DoseUnit.m_KV->Update(atof(value))) {
- FireNotify(AttrKey::KV, m_DoseUnit.m_KV->JSGet());
- FINFO("KV: Updated to {$}", value);
- }
- }
- };
- auto HWMAS = [this](const char* value, int length)
- {
- assert(value);
- float fmas = atof(value) / 100.0;
- m_DoseUnit.m_MAS->Update(fmas);
- FireNotify(AttrKey::MAS, m_DoseUnit.m_MAS->JSGet());
- FINFO("MAS: Updated to {$} mAs", fmas);
- };
- auto HWMA = [this](const char* value, int length)
- {
- assert(value);
- float fma = atof(value) / 10.0;
- m_DoseUnit.m_MA->Update(fma);
- FireNotify(AttrKey::MA, m_DoseUnit.m_MA->JSGet());
- FINFO("MA: Updated to {$} mA", fma);
- };
- auto HWMS = [this](const char* value, int length)
- {
- assert(value);
- float fms = atof(value) / 100.0;
- m_DoseUnit.m_MS->Update(fms);
- FireNotify(AttrKey::MS, m_DoseUnit.m_MS->JSGet());
- FINFO("MS: Updated to {$} ms", fms);
- };
- auto HWVP = [this](const char* value, int length)
- {
- assert(value);
- m_DoseUnit.m_PostKV->Update(atof(value));
- FireNotify(AttrKey::POSTKV, m_DoseUnit.m_PostKV->JSGet());
- FINFO("Actual exposure parameters KV:{$}", m_DoseUnit.m_PostKV->JSGet().c_str());
- };
- auto HWPA = [this](const char* value, int length)
- {
- assert(value);
- float fma = atof(value) / 10.0;
- m_DoseUnit.m_PostMA->Update(fma);
- FireNotify(AttrKey::POSTMA, m_DoseUnit.m_PostMA->JSGet());
- FINFO("Actual exposure parameters MA:{$}", m_DoseUnit.m_PostMA->JSGet().c_str());
- };
- auto HWAP = [this](const char* value, int length)
- {
- assert(value);
- float fmas = atof(value) / 100.0;
- m_DoseUnit.m_PostMAS->Update(fmas);
- FireNotify(AttrKey::POSTMAS, m_DoseUnit.m_PostMAS->JSGet());
- FINFO("Actual exposure parameters MAS:{$}", m_DoseUnit.m_PostMAS->JSGet().c_str());
- };
- auto HWFocus = [this](const char* value, int length)
- {
- assert(value);
- int nfous = atoi(value);
- if (m_DoseUnit.m_Focus->Update(nfous))
- FireNotify(AttrKey::FOCUS, m_DoseUnit.m_Focus->JSGet());
- FINFO("Current focus:{$}, FO={$}", atoi(m_DoseUnit.m_Focus->JSGet().c_str()) ? "large focus" : "small focus", m_DoseUnit.m_Focus->JSGet().c_str());
- };
- auto HWTechmode = [this](const char* value, int length)
- {
- assert(value);
- int ntechmode = atoi(value);
- m_DoseUnit.m_Techmode->Update(ntechmode);
- FireNotify(AttrKey::TECHMODE, m_DoseUnit.m_Techmode->JSGet());
- switch (ntechmode)
- {
- case 0:
- FINFO("ET={$}", "mA/ms",m_DoseUnit.m_Techmode->JSGet().c_str());
- break;
- case 1:
- FINFO("ET={$}", "mAs", m_DoseUnit.m_Techmode->JSGet().c_str());
- break;
- case 2:
- FINFO("ET={$}", "AEC / mA", m_DoseUnit.m_Techmode->JSGet().c_str());
- break;
- case 3:
- FINFO("ET={$}", "mAs / ms", m_DoseUnit.m_Techmode->JSGet().c_str());
- break;
- case 4:
- FINFO("ET={$}", "AEC", m_DoseUnit.m_Techmode->JSGet().c_str());
- break;
- }
- };
- auto HWAECField = [this](const char* value, int length)
- {
- assert(value);
- int nvalue = atoi(value);
- if (m_DoseUnit.m_AECField->Update(nvalue))
- FireNotify(AttrKey::AECFIELD, m_DoseUnit.m_AECField->JSGet());
- };
- auto HWAECFilm = [this](const char* value, int length)
- {
- assert(value);
- if (m_DoseUnit.m_AECFilm->Update(atoi(value)))
- FireNotify(AttrKey::AECFILM, m_DoseUnit.m_AECFilm->JSGet());
- };
- auto HWAECDensity = [this](const char* value, int length)
- {
- assert(value);
- if (m_DoseUnit.m_AECDensity->Update(atoi(value)))
- FireNotify(AttrKey::AECDENSITY, m_DoseUnit.m_AECDensity->JSGet());
- };
- auto HWWS = [this](const char* value, int length)
- {
- assert(value);
- int nValue = atoi(value);
- m_DoseUnit.m_WS->Update(nValue);
- {
- FireNotify(m_DoseUnit.m_WS->GetKey(), m_DoseUnit.m_WS->JSGet());
- }
- };
- auto HWPR = [this](const char* value, int length)
- {
- assert(value);
- int nValue = atoi(value);
- if (nValue == 2)
- {
- FINFO("PR: Received value 2 - No action");
- }
- else if (nValue == 1)
- {
- m_DoseUnit.m_GenSynState->Update(AttrKey::GENERATOR_RAD_PREPARE);
- FINFO("PR: Radiography prepare state - {$}", m_DoseUnit.m_GenSynState->JSGet().c_str());
- FireNotify(m_DoseUnit.m_GenSynState->GetKey(), m_DoseUnit.m_GenSynState->JSGet());
- }
- else if (nValue == 0)
- {
- m_DoseUnit.m_GenSynState->Update(AttrKey::GENERATOR_RAD_OFF);
- FINFO("PR: Radiography off state - {$}", m_DoseUnit.m_GenSynState->JSGet().c_str());
- FireNotify(m_DoseUnit.m_GenSynState->GetKey(), m_DoseUnit.m_GenSynState->JSGet());
- m_bGenBusy = false;
- RefreshData();
- }
- };
- auto HWXR = [this](const char* value, int length)
- {
- assert(value);
- int nValue = atoi(value);
- if (nValue == 2)
- {
- m_DoseUnit.m_GenSynState->Update(AttrKey::GENERATOR_RAD_XRAYON);
- FINFO("XR: X-Ray ON - {$}", m_DoseUnit.m_GenSynState->JSGet().c_str());
- FireNotify(m_DoseUnit.m_GenSynState->GetKey(), m_DoseUnit.m_GenSynState->JSGet());
- }
- else if (nValue == 1)
- {
- m_DoseUnit.m_GenSynState->Update(AttrKey::GENERATOR_RAD_READY);
- m_hGenPostEvent->ResetEvent();
- FINFO("XR: Radiography ready - {$}", m_DoseUnit.m_GenSynState->JSGet().c_str());
- FireNotify(m_DoseUnit.m_GenSynState->GetKey(), m_DoseUnit.m_GenSynState->JSGet());
- }
- else if (nValue == 0)
- {
- m_bGenBusy = false;
- m_DoseUnit.m_GenSynState->Update(AttrKey::GENERATOR_RAD_XRAYOFF);
- FINFO("XR: X-Ray OFF - {$}", m_DoseUnit.m_GenSynState->JSGet().c_str());
- FireNotify(m_DoseUnit.m_GenSynState->GetKey(), m_DoseUnit.m_GenSynState->JSGet());
- }
- };
- auto HWAPDOSE = [this](const char* value, int length)//post mas
- {
- assert(value);
- m_DoseUnit.m_PostMAS->Update(atof(value) / 100.0);
- FireNotify(m_DoseUnit.m_PostMAS->GetKey(), m_DoseUnit.m_PostMAS->JSGet());
- FINFO("Actual exposure parameters MAS:{$}", m_DoseUnit.m_PostMAS->JSGet().c_str());
- };
- auto HWATDOSE = [this](const char* value, int length)
- {
- assert(value);
- m_DoseUnit.m_PostMS->Update(atof(value) / 100.0);
- FireNotify(m_DoseUnit.m_PostMS->GetKey(), m_DoseUnit.m_PostMS->JSGet());
- FINFO("Actual exposure parameters MS:{$}", m_DoseUnit.m_PostMS->JSGet().c_str());
- };
- auto HWDAP = [this](const char* value, int length)
- {
- assert(value);
- FINFO("Recv DAP ={$}", atof(value) / 100.0);
- };
- auto HWEHE = [this](const char* value, int length)
- {
- m_iHeartBeats = 0;
- assert(value);
- int nhe = atoi(value);
- if (m_DoseUnit.m_HE->Update(nhe))
- FireNotify(m_DoseUnit.m_HE->GetKey(), m_DoseUnit.m_HE->JSGet());
- };
- auto HWHH = [this](const char* value, int length)
- {
- m_iHeartBeats = 0;
- assert(value);
- int nhe = atoi(value);
- if (m_DoseUnit.m_GenHE->Update(nhe))
- FireNotify(m_DoseUnit.m_GenHE->GetKey(), m_DoseUnit.m_GenHE->JSGet());
- };
-
- auto HWFLK = [this](const char* value, int length) {
- assert(value);
- if (length > 20) { // "040 FLM00010 FLI000 FLT000 FLF1 FLA0 FLS060 FLD0 FLO0 FLC1 FLW00400"
- FINFO("value:{$}", value);
- int tmpflk, tmpflf, tmpfla, tmpfld, tmpflo;
- float tmpflm, tmpfli, tmpflt, tmpfls, tmpflw;
- int bytesRead;
- const char* fmt = "%3d FLM%5f FLI%3f FLT%3f FLF%d FLA%d FLS%3f FLD%d FLO%d FLC%d FLW%5f%n";
- int ret = sscanf(value, fmt,
- &tmpflk, &tmpflm, &tmpfli, &tmpflt, &tmpflf, &tmpfla, &tmpfls, &tmpfld, &tmpflo, /*FLC*/nullptr, & tmpflw, & bytesRead);
- if (ret == 11 && bytesRead == length) {
- tmpflm /= 10.0f;
- tmpfli /= 10.0f;
- tmpflt /= 10.0f;
- tmpfls /= 10.0f;
- tmpflw /= 100.0f;
- if (m_DoseUnit.m_FLKV->Update(tmpflk))
- FireNotify(AttrKey::FLUKV, m_DoseUnit.m_FLKV->JSGet());
- if (m_DoseUnit.m_FLMA->Update(tmpflm))
- FireNotify(AttrKey::FLUMA, m_DoseUnit.m_FLMA->JSGet());
- if (m_DoseUnit.m_FLIntTime->Update(tmpfli))
- FireNotify(AttrKey::FLUIntTime, m_DoseUnit.m_FLIntTime->JSGet());
- if (m_DoseUnit.m_FLAccTime->Update(tmpflt))
- FireNotify(AttrKey::FLUAccTime, m_DoseUnit.m_FLAccTime->JSGet());
- if (m_DoseUnit.m_FLMode->Update(tmpflf))
- FireNotify(AttrKey::FLUMode, m_DoseUnit.m_FLMode->JSGet());
- if (m_DoseUnit.m_ABSStatus->Update(tmpfla))
- FireNotify(AttrKey::FLUABSStatus, m_DoseUnit.m_ABSStatus->JSGet());
- if (m_DoseUnit.m_PPS->Update(tmpfls))
- FireNotify(AttrKey::FLUPPS, m_DoseUnit.m_PPS->JSGet());
- if (m_DoseUnit.m_DoseLevel->Update(tmpfld))
- FireNotify(AttrKey::FLUDoseLevel, m_DoseUnit.m_DoseLevel->JSGet());
- if (m_DoseUnit.m_Curve->Update(tmpflo))
- FireNotify(AttrKey::FLUCurve, m_DoseUnit.m_Curve->JSGet());
- if (m_DoseUnit.m_FLMS->Update(tmpflw))
- FireNotify(AttrKey::FLUMS, m_DoseUnit.m_FLMS->JSGet());
- FINFO("tmpflk={$}, tmpflf={$}, tmpfla={$}, tmpfld={$}, tmpflo={$}, tmpflm={$}, tmpfli={$}, tmpflt={$}, tmpfls={$}, tmpflw={$};",
- tmpflk, tmpflf, tmpfla, tmpfld, tmpflo, tmpflm, tmpfli, tmpflt, tmpfls, tmpflw);
- }
- else {
- FINFO("FLK format parse failed");
- }
- }
- else {
- int tmpflkv = atoi(value);
- m_DoseUnit.m_FLKV->Update(tmpflkv);
- FireNotify(AttrKey::FLUKV, m_DoseUnit.m_FLKV->JSGet());
- }
- };
- auto HWFLM = [this](const char* value, int length)
- {
- assert(value);
- float tmpflm = atof(value) / 10.0;
- m_DoseUnit.m_FLMA->Update(tmpflm);
- FireNotify(AttrKey::FLUMA, m_DoseUnit.m_FLMA->JSGet());
- };
- auto HWFLW = [this](const char* value, int length)
- {
- assert(value);
- float tmpflms = atof(value) / 100.0;
- m_DoseUnit.m_FLMS->Update(tmpflms);
- FireNotify(AttrKey::FLUMS, m_DoseUnit.m_FLMS->JSGet());
- };
- auto HWFLI = [this](const char* value, int length)
- {
- assert(value);
- float tmpfli = atof(value) / 10.0;
- if (m_DoseUnit.m_FLIntTime->Update(tmpfli))
- FireNotify(AttrKey::FLUIntTime, m_DoseUnit.m_FLIntTime->JSGet());
- };
- auto HWFLT = [this](const char* value, int length)
- {
- assert(value);
- float tmpflt = atof(value) / 10.0;
- if (m_DoseUnit.m_FLAccTime->Update(tmpflt))
- FireNotify(AttrKey::FLUAccTime, m_DoseUnit.m_FLAccTime->JSGet());
- };
- auto HWFLS = [this](const char* value, int length)
- {
- assert(value);
- float tmppps = atof(value) / 10.0;
- if (m_DoseUnit.m_PPS->Update(tmppps))
- FireNotify(AttrKey::FLUPPS, m_DoseUnit.m_PPS->JSGet());
- };
- auto HWFLF = [this](const char* value, int length)
- {
- assert(value);
- FINFO("m_FLMode={$};", value);
- int tmpflf = atoi(value);
- if (m_DoseUnit.m_FLMode->Update(tmpflf))
- FireNotify(AttrKey::FLUMode, m_DoseUnit.m_FLMode->JSGet());
- };
- auto HWFLX = [this](const char* value, int length)
- {
- assert(value);
- int nValue = atoi(value);
- if (nValue == 2)
- {
- m_DoseUnit.m_GenSynState->Update(AttrKey::GENERATOR_FLU_XRAYON);
- FINFO("FLX: Fluoroscopy X-Ray ON - {$}", m_DoseUnit.m_GenSynState->JSGet().c_str());
- FireNotify(m_DoseUnit.m_GenSynState->GetKey(), m_DoseUnit.m_GenSynState->JSGet());
- }
- else if (nValue == 1)
- {
- FINFO("FLX: Received value 1 - No action");
- }
- else if (nValue == 0)
- {
- m_bGenBusy = false;
- m_DoseUnit.m_GenSynState->Update(AttrKey::GENERATOR_FLU_XRAYOFF);
- FINFO("FLX: Fluoroscopy X-Ray OFF - {$}", m_DoseUnit.m_GenSynState->JSGet().c_str());
- FireNotify(m_DoseUnit.m_GenSynState->GetKey(), m_DoseUnit.m_GenSynState->JSGet());
- }
- };
- auto HWFLP = [this](const char* value, int length)
- {
- assert(value);
- int nValue = atoi(value);
- if (nValue == 2)
- {
- m_DoseUnit.m_GenSynState->Update(AttrKey::GENERATOR_FLU_READY);
- FINFO("FLP: Fluoroscopy ready - {$}", m_DoseUnit.m_GenSynState->JSGet().c_str());
- FireNotify(m_DoseUnit.m_GenSynState->GetKey(), m_DoseUnit.m_GenSynState->JSGet());
- }
- else if (nValue == 1)
- {
- FINFO("FLP: Received value 1 - No action");
- }
- else if (nValue == 0)
- {
- int nFlFMode = atoi(m_DoseUnit.m_FLMode->JSGet().c_str());
- FINFO("FLP: Fluoroscopy mode={$} (value={$})", m_DoseUnit.m_FLMode->JSGet().c_str(), nFlFMode);
- if (nFlFMode == 2)
- {
- m_DoseUnit.m_GenSynState->Update(AttrKey::GENERATOR_FLU_XRAYOFF);
- FINFO("FLP: Fluoroscopy X-Ray OFF - {$}", m_DoseUnit.m_GenSynState->JSGet().c_str());
- FireNotify(m_DoseUnit.m_GenSynState->GetKey(), m_DoseUnit.m_GenSynState->JSGet());
- }
- m_DoseUnit.m_GenSynState->Update(AttrKey::GENERATOR_FLU_OFF);
- FINFO("FLP: Fluoroscopy OFF - {$}", m_DoseUnit.m_GenSynState->JSGet().c_str());
- FireNotify(m_DoseUnit.m_GenSynState->GetKey(), m_DoseUnit.m_GenSynState->JSGet());
- m_bGenBusy = false;
- RefreshData();
- }
- };
- auto HWDS = [this](const char* value, int length)
- {
- assert(value);
- };
- auto HWFLA = [this](const char* value, int length)
- {
- assert(value);
- int tmpfla = atoi(value);
- if ( m_DoseUnit.m_ABSStatus->Update(tmpfla))
- FireNotify(AttrKey::FLUABSStatus, m_DoseUnit.m_ABSStatus->JSGet());
- };
- auto HWFLD = [this](const char* value, int length)
- {
- assert(value);
- };
- auto HWFLC= [this](const char* value, int length)
- {
- assert(value);
- };
- auto HWFLO = [this](const char* value, int length)
- {
- assert(value);
- int nValue = atoi(value);
- if (m_DoseUnit.m_Curve->Update(nValue))
- FireNotify(AttrKey::FLUCurve, m_DoseUnit.m_Curve->JSGet());
- };
- auto HWER = [this](const char* value, int length)
- {
- assert(value);
- int nValue = atoi(value);
- char tmpbuf[4] = { 0,0,0,0 };
- tmpbuf[0] = value[0];
- tmpbuf[1] = value[1];
- tmpbuf[2] = value[2];
- FINFO("ER: Received error code {$}", tmpbuf);
- if (nValue != 0)
- {
- std::unordered_map<std::string, std::string> errorMessages = {
- // ER001-ER075: Rotating Anode Errors
- {"001", "Rotating Anode Not Sampled on Time"},
- {"002", "Rotating Anode Sampled on Fault"},
- {"003", "Rotating Anode Communication Fault"},
- {"004", "Rotating Anode Missing Fault"},
- {"016", "Rotating Anode Total Calibration Flag"},
- {"017", "Rotating Anode A Phase Over Current"},
- {"018", "Rotating Anode B Phase Over Current"},
- {"019", "Rotating Anode C Phase Over Current"},
- {"020", "Rotating Anode Capacitor Voltage Average Over Voltage"},
- {"021", "Rotating Anode Capacitor Voltage Average Under Voltage"},
- {"022", "Rotating Anode IGBT Over Temperature"},
- {"023", "Rotating Anode Bypass Over Temperature"},
- {"024", "Rotating Anode Heat Sink Over Temperature"},
- {"027", "Rotating Anode A Phase Over Current"},
- {"028", "Rotating Anode B Phase Over Current"},
- {"029", "Rotating Anode C Phase Over Current"},
- {"030", "Rotating Anode Capacitor Instant Over Voltage"},
- {"031", "Rotating Anode Capacitor Instant Under Voltage"},
- {"032", "Rotating Anode Over Current"},
- {"033", "Bus Current 1 Over Limit, Exposure Interrupted"},
- {"034", "Bus Current 2 Over Limit, Exposure Interrupted"},
- {"035", "Filament Power Board Not Connected"},
- {"036", "Filament Current 1 Over Limit"},
- {"037", "Filament Current 2 Over Limit"},
- {"038", "Anode mA Over Limit, Exposure Interrupted"},
- {"039", "Cathode mA Over Limit, Exposure Interrupted"},
- {"040", "Anode kV Over Limit, Exposure Interrupted"},
- {"041", "Cathode kV Over Limit, Exposure Interrupted"},
- {"042", "High Voltage Arc or Ball Gap Fire, Exposure Interrupted"},
- {"044", "Bus Current 1 Over Limit, Exposure Ended"},
- {"046", "Bus Current 2 Over Limit, Exposure Ended"},
- {"048", "High Voltage Oil Tank Not Connected"},
- {"065", "High Voltage Oil Tank Start-up Error, No Line Voltage"},
- {"066", "High Voltage Oil Tank No Line Voltage Interrupt Low"},
- {"067", "Filament Parameter Breach"},
- {"068", "Filament Parameter Short or Filament Calibration Data Exception"},
- {"069", "Filament Preheating, Filament Current Low"},
- {"070", "Bus Voltage Low 2"},
- {"074", "Hardware Total Fault"},
- {"075", "Door Interlock"}
- };
- char ErrorCode[20];
- snprintf(ErrorCode, sizeof(ErrorCode), "PSGHR_ER_%d", nValue);
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "ER%03d", nValue);
- HWSend(temp, strlen(temp));
- int level = 1;
- auto it = errorMessages.find(tmpbuf);
- if (it != errorMessages.end())
- {
- FINFO("ER: Warning - {$}: {$}", tmpbuf, it->second.c_str());
- m_MSGUnit->AddWarnMessage(ErrorCode, level, it->second.c_str());
- }
- else
- {
- FINFO("ER: Unknown error code {$}", tmpbuf);
- }
- }
- else
- {
- int level = 1;
- char ErrorCode[20];
- FINFO("ER: Error cleared");
- m_MSGUnit->DelWarnMessage(ErrorCode, level, "");
- }
- };
- auto HWEL = [this](const char* value, int length)
- {
- assert(value);
- int nValue = atoi(value);
- char tmpbuf[3] = { 0,0,0 };
- tmpbuf[0] = value[0];
- tmpbuf[1] = value[1];
- tmpbuf[2] = value[2];
- FINFO("EL: Received error level code {$}", tmpbuf);
- if (nValue != 0)
- {
- std::unordered_map<std::string, std::string> errorMessages = {
- // EL001-EL003: Critical Errors
- {"001", "Contactor Fault"},
- {"002", "Charging Circuit Abnormal"},
- {"003", "Storage Chip Damaged"}
- };
- char ErrorCode[20];
- snprintf(ErrorCode, sizeof(ErrorCode), "PSGHR_EL_%d", nValue);
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "EL%03d", nValue);
- HWSend(temp, strlen(temp));
- int level = 1;
- auto it = errorMessages.find(tmpbuf);
- if (it != errorMessages.end())
- {
- FINFO("EL: Critical error - {$}: {$}", tmpbuf, it->second.c_str());
- m_DoseUnit.m_GenState->Update(nsGEN::AttrKey::GENERATOR_STATUS_ERROR);
- FireNotify(AttrKey::GENSTATE, m_DoseUnit.m_GenState->JSGet());
- m_MSGUnit->AddErrorMessage(ErrorCode, level, it->second.c_str());
- }
- else
- {
- FINFO("EL: Unknown error level code {$}", tmpbuf);
- }
- }
- else
- {
- int level = 1;
- char ErrorCode[20];
- FINFO("EL: Error level cleared");
- m_MSGUnit->DelErrorMessage(ErrorCode, level, "");
- }
- };
- auto HWEI = [this](const char* value, int length)
- {
- assert(value);
- int nValue = atoi(value);
- char tmpbuf[3] = { 0,0,0 };
- tmpbuf[0] = value[0];
- tmpbuf[1] = value[1];
- tmpbuf[2] = value[2];
- if (nValue != 0)
- {
- std::unordered_map<std::string, std::string> errorMessages = {
- {"400", "Enter the service mode"},
- {"401", "Exit the service mode"},
- {"402", "Resonance Overcurrent1"},
- {"403", "Resonance Overcurrent2"},
- {"404", "Resonance Overcurrent3"},
- {"405", "Charging, Please Wait "},
- {"406", "DAC Reset "},
- {"407", "X-Rays State PowerOff "},
- {"408", "Fluoro Disable "},
- {"409", "Fluoro Timer Warning Level Exceeded"},
- {"410", "Anode Heat Warning Exceeded "},
- {"411", "MA Too Low "}
- };
- char ErrorCode[20];
- snprintf(ErrorCode, sizeof(ErrorCode), "PSGHR_EI_%d", nValue);
- char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "EI%03d", nValue);
- HWSend(temp, strlen(temp));
- int level = 1;
- auto it = errorMessages.find(tmpbuf);
- if (it != errorMessages.end())
- {
- //m_DoseUnit.m_GenState->Update(nsGEN::AttrKey::GENERATOR_STATUS_ERROR);
- //FireNotify(AttrKey::GENSTATE, m_DoseUnit.m_GenState->JSGet());
- m_MSGUnit->AddWarnMessage(ErrorCode, level, it->second.c_str());
- }
- }
- else
- {
- int level = 1;
- char ErrorCode[20];
- m_MSGUnit->DelWarnMessage(ErrorCode, level, "");
- }
- };
- auto HWMSG = [this](const char* value, int length)
- {
- assert(value);
- int nValue = atoi(value);
- char tmpbuf[3] = { 0,0,0 };
- tmpbuf[0] = value[0];
- tmpbuf[1] = value[1];
- tmpbuf[2] = value[2];
- if (nValue != 0)
- {
- std::unordered_map<std::string, std::string> errorMessages = {
- {"001", "Rotating Anode Protection Parameters Incorrectly Configured"},
- {"002", "Emergency Stop Pressed"},
- {"003", "First Level Hand Brake Not Triggered, Second Level Hand Brake Triggered"},
- {"004", "High Voltage Generator First Level Hand Brake Pressed During Startup"},
- {"005", "High Voltage Generator Second Level Hand Brake Pressed During Startup"},
- {"006", "High Voltage Generator Low Battery, Please Recharge"},
- {"007", "Anode Thermal Capacity Warning Exceeded"},
- {"008", "Exposure Time Interval Too Short, Please Wait"},
- {"009", "Parameter Adjustment Prohibited During Exposure"},
- {"010", "High Voltage Generator Not Ready, Please Confirm Status"},
- {"011", "High Voltage Generator Oil Tank Temperature Warning Exceeded"},
- {"012", "Training Cannot Be Conducted In This State"},
- {"013", "Tube Current Low"},
- {"014", "PFC Module Works Abnormally"},
- {"015", "Battery Output Power Limit"},
- {"016", "Battery Charging"},
- {"017", "mA Parameter Exceeds Maximum Tube Value"},
- {"018", "kV Parameter Exceeds Limit"},
- {"019", "mA Parameter Exceeds Limit"},
- {"020", "ms Parameter Exceeds Limit"},
- {"021", "mAs Parameter Exceeds Limit"},
- {"022", "Filament Selection Parameter Exceeds Limit"},
- {"023", "Anode Rotation Speed Selection Parameter Exceeds Limit"},
- {"024", "Exposure Technical Parameters Exceed Limits"},
- {"025", "AEC Density Parameter Exceeds Limit"},
- {"026", "AEC Field Selection Parameter Exceeds Limit"},
- {"027", "AEC Channel Parameter Exceeds Limit"},
- {"028", "AEC Sensitivity Parameter Exceeds Limit"},
- {"029", "High Voltage Generator Power Exceeds Limit"},
- {"030", "Tube Power Exceeds Limit"},
- {"031", "Frame Rate Parameter Exceeds Limit"},
- {"032", "Exposure Parameter Exceeds Energy Storage Limit"},
- {"033", "Battery Pack Alarm"},
- {"035", "High Voltage Generator Foot Brake Pressed During Startup"},
- {"036", "Cumulative Fluoroscopy Time Alarm"},
- {"037", "Console Not Connected, Please Open Console"},
- {"038", "Tube Sleeve Thermal Capacity Warning Exceeded"},
- {"049", "Bus Voltage Exceeds Limit"},
- {"050", "High Voltage Generator Does Not Support This Exposure Mode"},
- {"051", "Rotating Anode Speed Does Not Meet Exposure Requirements"},
- {"052", "Second Level Hand Brake Not Pressed Within Specified Time"},
- {"053", "High Voltage Generator Interlock 1 Effective During Exposure"},
- {"054", "Flat Panel Mode Feedback Signal Timeout"},
- {"055", "kV Establishment Timeout"},
- {"056", "Anode Thermal Capacity Limit Exceeded"},
- {"057", "Filament Calibration Data Abnormality"},
- {"058", "Tube Current Too Low During Training"},
- {"059", "Hand Brake Released Prematurely During Exposure"},
- {"060", "AEC Feedback Abnormality"},
- {"061", "Inverter Temperature Exceeds Limit"},
- {"062", "kV Too Low During Exposure, Exposure Aborted"},
- {"063", "kV Too High During Exposure, Exposure Aborted"},
- {"064", "Oil Temperature Exceeds Limit"},
- {"065", "Tube Sleeve Thermal Capacity Limit Exceeded"},
- {"066", "Current Exposure Parameters Exceed Heat Capacity Limit"},
- {"068", "mA Too High During Exposure, Exposure Aborted"},
- {"069", "DRVEN Enable Timeout"},
- {"070", "Rotating Anode Communication Interrupted"},
- {"071", "Emergency Stop Pressed During Exposure"},
- {"072", "Battery Pack Fault"},
- {"073", "Resonant Current Exceeds Limit, Exposure Aborted (Software)"},
- {"074", "Anode kV Exceeds Limit, Exposure Aborted (Software)"},
- {"075", "Cathode kV Exceeds Limit, Exposure Aborted (Software)"},
- {"076", "Filament Current Exceeds Limit (Software)"},
- {"078", "Oil Tank Power Limit"},
- {"080", "Anode kV and Cathode kV Deviation Exceeds Limit, Exposure Aborted"},
- {"081", "Power Exceeds Limit During Exposure, Exposure Aborted"},
- {"082", "External Synchronization Signal Timeout"},
- {"083", "Fan Fault"},
- {"084", "InterLock1 Effective"},
- {"085", "InterLock2 Effective"},
- {"087", "Foot Brake Released Prematurely During Exposure"},
- {"088", "Foot Brake Signal Abnormality"},
- {"089", "DA Chip Abnormal"},
- {"090", "Cumulative Fluoroscopy Time Timeout"},
- {"091", "External Discharge Line Enable Signal Timeout"},
- {"092", "X-RAY Ready Invalid"},
- {"093", "Interlock 2 Effective During Exposure"}
- };
- char ErrorCode[20];
- snprintf(ErrorCode, sizeof(ErrorCode), "PSGHR_MSG_%d", nValue);
- int level = 1;
- /*char temp[50] = { 0 };
- snprintf(temp, sizeof(temp), "MSG%03d", nValue);
- HWSend(temp, strlen(temp));*/
- auto it = errorMessages.find(tmpbuf);
- if (it != errorMessages.end())
- {
- FINFO("WarnCode: {$}, Level: {$}, ResInfo: {$}\n", ErrorCode, level, it->second.c_str());
- m_MSGUnit->AddWarnMessage(ErrorCode, level, it->second.c_str());
- }
- }
- else
- {
- int level = 1;
- char WarnCode[20]{ "" };
- m_MSGUnit->DelWarnMessage(WarnCode, level, "");
- }
- };
- //==IN==:TU0 WS1 FO0 ET0 FI010 FS001 FN0 HE000
- auto HWTU = [this](const char* value, int length) -> void
- {
- assert(value);
- FINFO("recv TU={$},len={$}", value, length);
- char tmpbuf[3] = { 0,0,0 };
- int tmpWS, tmpFO, tmpET, tmpField, tmpFilm, tmpDensity, tmpHE;
- //ws
- tmpbuf[0] = value[4];
- tmpWS = atoi(tmpbuf);
- m_DoseUnit.m_WS->Update(tmpWS);
- {
- FireNotify(m_DoseUnit.m_WS->GetKey(), m_DoseUnit.m_WS->JSGet());
- }
- //FO
- tmpbuf[0] = value[8];
- tmpFO = atoi(tmpbuf);
- m_DoseUnit.m_Focus->Update(tmpFO);
- FireNotify(AttrKey::FOCUS, m_DoseUnit.m_Focus->JSGet());
- FINFO("Current focus:{$}, FO={$}", atoi(m_DoseUnit.m_Focus->JSGet().c_str()) ? "large focus" : "small focus", m_DoseUnit.m_Focus->JSGet().c_str());
- //ET
- tmpbuf[0] = value[12];
- tmpET = atoi(tmpbuf);
- m_DoseUnit.m_Techmode->Update(tmpET);
- FireNotify(AttrKey::TECHMODE, m_DoseUnit.m_Techmode->JSGet());
- //FIELD
- tmpbuf[0] = value[16];
- tmpbuf[1] = value[17];
- tmpbuf[2] = value[18];
- tmpField = atoi(tmpbuf);
- if (m_DoseUnit.m_AECField->Update(tmpField))
- FireNotify(AttrKey::AECFIELD, m_DoseUnit.m_AECField->JSGet());
- //Film
- tmpbuf[0] = value[22];
- tmpbuf[1] = value[23];
- tmpbuf[2] = value[24];
- tmpFilm = atoi(tmpbuf);
- if (m_DoseUnit.m_AECFilm->Update(tmpFilm))
- FireNotify(AttrKey::AECFILM, m_DoseUnit.m_AECFilm->JSGet());
- //Density
- tmpbuf[0] = value[29];
- tmpbuf[1] = 0;
- tmpbuf[2] = 0;
- tmpDensity = atoi(tmpbuf);
- if (m_DoseUnit.m_AECDensity->Update(tmpDensity))
- FireNotify(AttrKey::AECDENSITY, m_DoseUnit.m_AECDensity->JSGet());
- //HE
- tmpbuf[0] = value[33];
- tmpbuf[1] = value[34];
- tmpbuf[2] = value[35];
- tmpHE = atoi(tmpbuf);
- m_DoseUnit.m_HE->Update(tmpHE);
- FireNotify(m_DoseUnit.m_HE->GetKey(), m_DoseUnit.m_HE->JSGet());
- FINFO("parse tmpWS={$}, tmpFO={$}, tmpET={$}, tmpField={$}, tmpFilm={$}, tmpDensity={$}, tmpHE={$}", tmpWS, tmpFO, tmpET, tmpField, tmpFilm, tmpDensity, tmpHE);
- };
- auto HWST = [this](const char* value, int length)
- {
- assert(value);
- int genStatus = atoi(value);
- FINFO("genStatus={$}", genStatus);
- switch (genStatus)
- {
- case 1:
- FDEBUG("get Gen Status_1:GENSTATE {$} -> STATUS_INIT", m_DoseUnit.m_GenState->JSGet());
- if (m_isFirstHWPhase) {
- HWSend("RE", 2);
- // HWSend("RR", 2);
- HWSend("RS", 2);
- HWSend("ET?", 3);
- HWSend("ST?", 3);
- m_isFirstHWPhase = false;
- }
- if (m_DoseUnit.m_GenState->Update(nsGEN::AttrKey::GENERATOR_STATUS_INIT))
- FireNotify(AttrKey::GENSTATE, m_DoseUnit.m_GenState->JSGet());
- break;
- case 2:
- FDEBUG("get Gen Status_2:GENSTATE {$} -> STATUS_STANDBY", m_DoseUnit.m_GenState->JSGet());
- if (m_DoseUnit.m_GenState->Update(nsGEN::AttrKey::GENERATOR_STATUS_STANDBY))
- FireNotify(AttrKey::GENSTATE, m_DoseUnit.m_GenState->JSGet());
- break;
- case 3: // Rad Preparation Phase
- /*FDEBUG("get Gen Status_3:RAD_OFF(PR0) -> RAD_PREPARE(PR1)");
- if (m_DoseUnit.m_GenSynState->Update(nsGEN::AttrKey::GENERATOR_RAD_PREPARE))
- FireNotify(m_DoseUnit.m_GenSynState->GetKey(), m_DoseUnit.m_GenSynState->JSGet());*/
- break;
- case 4:
- FDEBUG("get Gen Status_4:PREPARE(PR1) -> RAD_READY(PR2)");
- /*if (m_DoseUnit.m_GenSynState->Update(nsGEN::AttrKey::GENERATOR_RAD_READY))
- FireNotify(m_DoseUnit.m_GenSynState->GetKey(), m_DoseUnit.m_GenSynState->JSGet());*/
- break;
- case 5:
- FDEBUG("get Gen Status_5:RAD_READY(PR2) -> X-Ray On(XR2)");
- if (m_DoseUnit.m_GenState->Update(nsGEN::AttrKey::GENERATOR_STATUS_EXP))
- FireNotify(AttrKey::GENSTATE, m_DoseUnit.m_GenState->JSGet());
- /*if (m_DoseUnit.m_GenSynState->Update(nsGEN::AttrKey::GENERATOR_RAD_XRAYON))
- FireNotify(m_DoseUnit.m_GenSynState->GetKey(), m_DoseUnit.m_GenSynState->JSGet());*/
- break;
- case 6:
- FDEBUG("get Gen Status_6:X-Ray On(XR2) -> X-Ray Off(XR0)");
- /*if (m_DoseUnit.m_GenSynState->Update(nsGEN::AttrKey::GENERATOR_RAD_XRAYOFF))
- FireNotify(m_DoseUnit.m_GenSynState->GetKey(), m_DoseUnit.m_GenSynState->JSGet());*/
- break;
- case 7:
- FDEBUG("get Gen Status_7:GENSTATE {$} -> STATUS_ERROR", m_DoseUnit.m_GenState->JSGet());
- if (m_DoseUnit.m_GenState->Update(nsGEN::AttrKey::GENERATOR_STATUS_ERROR))
- FireNotify(AttrKey::GENSTATE, m_DoseUnit.m_GenState->JSGet());
- break;
- case 8:
- FDEBUG("get Gen Status_8:in Calibration");
- break;
- default:
- FDEBUG("get Gen Status:[{$}] unknown", genStatus);
- break;
- }
- };
- auto HWSR = [this](const char* value, int length)
- {
- assert(value);
- int stopReason = atoi(value);
- FINFO("stopReason={$}", stopReason);
- switch (stopReason)
- {
- case 0:
- FDEBUG("Exposure stop reason:AEC feedback voltage is too low");
- break;
- case 5:
- FDEBUG("Exposure stop reason: Stop exposure manually");
- break;
- case 6:
- FDEBUG("Exposure stop reason: door lock open");
- break;
- case 7:
- FDEBUG("Exposure stop reason:Bulb tube anode ignition");
- break;
- case 8:
- FDEBUG("Exposure stop reason:Bulb cathode ignition");
- break;
- case 9:
- FDEBUG("Exposure stop reason:The pipe is lit");
- break;
- case 10:
- FDEBUG("Exposure stop reason:KV is too low or too high");
- break;
- case 11:
- FDEBUG("Exposure stop reason:Ma too low");
- break;
- case 12:
- FDEBUG("Exposure stop reason:Set ms reached");
- break;
- case 13:
- FDEBUG("Exposure stop reason:Set mAs reached");
- break;
- case 14:
- FDEBUG("Exposure stop reason:AEC dose reached");
- break;
- default:
- FDEBUG("Exposure stop reason:default");
- break;
- }
- };
- arFrame.clear();
- arFrame.push_back(tFrameMapping("EL", 2, HWEL));
- arFrame.push_back(tFrameMapping("EI", 2, HWEI));
- arFrame.push_back(tFrameMapping("ER", 2, HWER));
- arFrame.push_back(tFrameMapping("MSG", 3, HWMSG));
- arFrame.push_back(tFrameMapping("TU", 2, HWTU));
- arFrame.push_back(tFrameMapping("EC", 2, HWNotProcess));
- arFrame.push_back(tFrameMapping("PW", 2, HWNotProcess));
-
- arFrame.push_back(tFrameMapping("KV", 2, HWKV));
- arFrame.push_back(tFrameMapping("MX", 2, HWMAS));
- arFrame.push_back(tFrameMapping("MA", 2, HWMA));
- arFrame.push_back(tFrameMapping("MS", 2, HWMS));
- arFrame.push_back(tFrameMapping("VP", 2, HWVP));
- arFrame.push_back(tFrameMapping("PA", 2, HWPA));
- arFrame.push_back(tFrameMapping("AP", 2, HWAPDOSE));
- arFrame.push_back(tFrameMapping("ET", 2, HWTechmode));
- arFrame.push_back(tFrameMapping("FO", 2, HWFocus));
- arFrame.push_back(tFrameMapping("FI", 2, HWAECField));
- arFrame.push_back(tFrameMapping("FS", 2, HWAECFilm));
- arFrame.push_back(tFrameMapping("FN", 2, HWAECDensity));
- arFrame.push_back(tFrameMapping("WS", 2, HWWS));
- arFrame.push_back(tFrameMapping("PR", 2, HWPR));
- arFrame.push_back(tFrameMapping("XR", 2, HWXR));
- arFrame.push_back(tFrameMapping("AT", 2, HWATDOSE));
- arFrame.push_back(tFrameMapping("FLK", 3, HWFLK));
- arFrame.push_back(tFrameMapping("FLM", 3, HWFLM));
- arFrame.push_back(tFrameMapping("FLW", 3, HWFLW));
- arFrame.push_back(tFrameMapping("FLI", 3, HWFLI));
- arFrame.push_back(tFrameMapping("FLT", 3, HWFLT));
- arFrame.push_back(tFrameMapping("FLS", 3, HWFLS));
- arFrame.push_back(tFrameMapping("FLF", 3, HWFLF));
- arFrame.push_back(tFrameMapping("FLP", 3, HWFLP));
- arFrame.push_back(tFrameMapping("FLX", 3, HWFLX));
- arFrame.push_back(tFrameMapping("FLA", 3, HWFLA));
- arFrame.push_back(tFrameMapping("FLD", 3, HWFLD));
- arFrame.push_back(tFrameMapping("FLC", 3, HWFLD));
- arFrame.push_back(tFrameMapping("FLO", 3, HWFLO));
- arFrame.push_back(tFrameMapping("HE", 2, HWEHE));
- arFrame.push_back(tFrameMapping("HH", 2, HWHH));
- arFrame.push_back(tFrameMapping("DA", 2, HWDAP));
- arFrame.push_back(tFrameMapping("DV", 2, HWDAP));
- arFrame.push_back(tFrameMapping("DS", 2, HWDS));
- arFrame.push_back(tFrameMapping("ST", 2, HWST));
- arFrame.push_back(tFrameMapping("SR", 2, HWSR));
- FINFO("=== OnCallBack: Command mapping initialized ({$} commands) ===", arFrame.size());
- }
- bool nsGEN::PSGHRDevice::ReConnect()
- {
- FINFO("Enter PSG_reConnect");
- m_SCF->Disconnect();
- if (!pIODriver)
- {
- FINFO("PSG_reConnect:Driver null");
- }
- else
- {
- PSGHRDriver* driver = dynamic_cast<PSGHRDriver*>(pIODriver.get());
- if (driver && driver->ReConnection())
- {
- FireErrorMessage(false, 1, "lost Connect");
- m_bConnectFlag = true;
- FINFO("PSG_reConnect success");
- return true;
- }
- else
- {
- FINFO("PSG_reConnect failed");
- }
- }
- return false;
- }
- int nsGEN::PSGHRDevice::GridMSMargin()
- {
- return 0;
- }
- bool nsGEN::PSGHRDevice::CalculateAppropriateMA(float& inoutMAS, float& inoutMA, float& inoutMS)
- {
- FINFO("Enter CalculateAppropriateMA:MAS[{$}],MA[{$}],MS[{$}]", inoutMAS, inoutMA, inoutMS);
- if (m_DoseUnit.m_Focus->Get() == AttrKey::FOCUS_TYPE::FOCUS_LARGE)
- {
- m_iMaxPower = PSGHR_LARGE_POWER;
- }
- else
- {
- m_iMaxPower = PSGHR_SMALL_POWER;
- }
- int currKV = 0 , tempMA = 0, tempMS = 0;
- currKV = m_DoseUnit.m_KV->Get();
- tempMA = m_iMaxPower * 1000 / currKV;
- FDEBUG("power[{$}]*1000 / KV[{$}] = MAX_MA[{$}]", m_iMaxPower, currKV, tempMA);
- if (tempMA > PSGHR_MAX_MA)
- {
- tempMA = PSGHR_MAX_MA;
- FDEBUG(" MAX_MA too big,be close to range_right[{$}]", tempMA);
- }
- else if (tempMA < PSGHR_MIN_MA)
- {
- FWARN(" MAX_MA too small,compute failed");
- return false;
- }
- for (int i = tempMA;i >= PSGHR_MIN_MA; i--)
- {
- tempMS = inoutMAS * 1000.0 / i;
- FDEBUG("MAS[{$}]*1000 / temp_MA[{$}] = temp_MS[{$}]", inoutMAS, i, tempMS);
- }
-
- FDEBUG("can not use MAS[{$}]compute Appropriate MA MS", inoutMAS);
- return false;
- }
- void nsGEN::PSGHRDevice::ReSendFailedAction(string& cmdNum)
- {
- }
- int nsGEN::PSGHRDevice::GetGenState()
- {
- if (m_DoseUnit.m_GenState != NULL)
- {
- return m_DoseUnit.m_GenState->Get();
- }
- else
- {
- return 0;
- }
- }
- int nsGEN::PSGHRDevice::LoadConfig(string configfile)
- {
- FINFO("=====================LoadConfig=========================");
- // ����ļ��Ƿ����
- std::ifstream file(configfile);
- if (!file) {
- // �ļ������ڣ�ֱ�ӷ��ؿյ�Connection����
- FINFO("Config file does not exist: {$}", configfile.c_str());
- return -1;
- }
- if (m_bIsConfigLoaded)
- {
- FINFO("Configuration already loaded.");
- return 0;
- }
- ResDataObject temp;
- temp.loadFile(configfile.c_str());
- m_GenConfig = temp["CONFIGURATION"];
- TransJsonText(m_GenConfig);
- if (m_GenConfig.GetKeyCount("loopEnable") > 0)
- {
- m_bExtraFlag = (int)m_GenConfig["loopEnable"];
- }
- if (m_GenConfig.GetKeyCount(ConfKey::CcosTubeInfo) > 0)
- {
- string tempValue = (string)m_GenConfig[ConfKey::CcosTubeInfo];
- m_DoseUnit.m_TubeInfo.reset(new TUBEINFOMould(tempValue));
- FireNotify(AttrKey::TUBEINFO, m_DoseUnit.m_TubeInfo->JSGet());
- }
- if (m_GenConfig.GetKeyCount(ConfKey::CcosFocusSmall) > 0)
- {
- float tempValue = (float)m_GenConfig[ConfKey::CcosFocusSmall];
- m_DoseUnit.m_FocusSmall = tempValue;
- }
- if (m_GenConfig.GetKeyCount(ConfKey::CcosFocusLarge) > 0)
- {
- float tempValue = (float)m_GenConfig[ConfKey::CcosFocusLarge];
- m_DoseUnit.m_FocusLarge = tempValue;
- }
- if (m_GenConfig.GetKeyCount("GenCtrlMode") > 0)
- {
- m_nCtlMode = (float)m_GenConfig["GenCtrlMode"];//default 2
- float tempValue = (float)m_GenConfig[ConfKey::CcosFocusLarge];
- }
- if (m_GenConfig.GetKeyCount("USECECMD") > 0)
- {
- m_bUseCECmd = (bool)m_GenConfig["USECECMD"];
- }
- m_bIsConfigLoaded = true;
- return 0;
- }
- bool nsGEN::PSGHRDevice::EnableBucky(int nbucky)
- {
- char temp[50]{ 0 };
- snprintf(temp, sizeof(temp), "BU%1d", nbucky);
- return HWSend(temp, strlen(temp));
- }
- bool nsGEN::PSGHRDevice::ECHO(void)
- {
- return HWSend("EC", 2);
- }
- bool nsGEN::PSGHRDevice::SetABSModeNative(int nMode)
- {
- char temp[50]{ 0 };
- snprintf(temp, sizeof(temp), "FLA%1d", nMode);
- return HWSend(temp, strlen(temp));
- }
- bool nsGEN::PSGHRDevice::StartHardwareStatusThread()
- {
- if (!m_pHardwareStatusThread.joinable())
- {
- m_pHardwareStatusThread = std::thread(HardwareStatusThread, this);
- return true;
- }
- return false;
- }
- void PSGHRDevice::HardwareStatusThread(PSGHRDevice* pParam)
- {
- PSGHRDevice* pCurGen = pParam;
- if (pCurGen == NULL)
- {
- return;
- }
- pCurGen->HeartBeatFlag = true;
- int messageIndex = 0;
- int currtTime = pCurGen->m_iLoopTime;
- while (pCurGen->m_bExtraFlag)
- {
- currtTime = pCurGen->m_iLoopTime;
- Sleep(currtTime);
- if (messageIndex % 5 == 0)
- {
- pCurGen->HWSend("HE?", 3);
- Sleep(100);
- pCurGen->HWSend("ST?", 3);
- }
- messageIndex++;
- }
- }
- //-----------------------------------------------------------------------------
- // PSGHRDriver
- //-----------------------------------------------------------------------------
- nsGEN::PSGHRDriver::PSGHRDriver()
- : m_scfWrapper(std::make_shared<SCFWrapper>())
- {
- m_pAttribute.reset(new ResDataObject());
- m_pDescription.reset(new ResDataObject());
- }
- nsGEN::PSGHRDriver::~PSGHRDriver()
- {
- Disconnect();
- }
- void nsGEN::PSGHRDriver::Prepare()
- {
- // 初始化日志系统
- std::string strLogPath = GetProcessDirectory() + R"(/Conf/log_config.xml)";
- std::string LogHost = "DevPSGHR";
- std::string moduleName = "DevPSGHR";
- bool ret = initLogModule(
- LogHost, // 主机名(用于日志路径中的{host}占位符)
- moduleName, // 唯一模块名
- strLogPath, // 配置文件路径
- true // 是否输出到控制台(可选)
- );
- if (!ret) {
- std::cerr << "Log init failed!" << std::endl;
- return;
- }
- PSGHR_SetLocalModuleName(moduleName);
- m_SCFDllName = GetConnectDLL(m_ConfigFileName);
- FINFO("OK.");
- }
- std::string nsGEN::PSGHRDriver::DriverProbe()
- {
- FINFO("DriverProbe in \n");
- ResDataObject r_config, HardwareInfo;
- if (r_config.loadFile(m_ConfigFileName.c_str()))
- {
- HardwareInfo.add("MajorID", r_config["CONFIGURATION"]["MajorID"]);
- HardwareInfo.add("MinorID", r_config["CONFIGURATION"]["MinorID"]);
- HardwareInfo.add("VendorID", r_config["CONFIGURATION"]["VendorID"]);
- HardwareInfo.add("ProductID", r_config["CONFIGURATION"]["ProductID"]);
- HardwareInfo.add("SerialID", r_config["CONFIGURATION"]["SerialID"]);
- }
- else
- {
- HardwareInfo.add("MajorID", "Generator");
- HardwareInfo.add("MinorID", "Dr");
- HardwareInfo.add("VendorID", "PSGHR");
- HardwareInfo.add("ProductID", "HF");
- HardwareInfo.add("SerialID", "Drv");
- }
- string ret = HardwareInfo.encode();
- return ret;
- }
- bool nsGEN::PSGHRDriver::ReConnection()
- {
- Disconnect();
- FINFO("ReConnection:SCF Disconnect");
- ResDataObject Connection = GetConnectParam(m_ConfigFileName);
- FINFO("ReConnection:{$} \n", Connection.encode());
- auto erCode = m_scfWrapper->Connect(Connection, &PSGHRDriver::callbackPackageProcess, SCF_PACKET_TRANSFER, 3000);
- if (erCode == SCF_SUCCEED)
- {
- Sleep(1000);
- m_scfWrapper->SetDataReceivedCallback([this](const char* data, uint32_t length) {
- this->Dequeue(data, length);
- });
- m_scfWrapper->StartAutoReceive();
- return true;
- }
- else
- {
- FINFO("ReConnection failed");
- }
- return false;
- }
- bool nsGEN::PSGHRDriver::Connect()
- {
- std::lock_guard<std::mutex> lock(m_connectionMutex);
- const auto currentState = m_connectionState.load();
- auto now = std::chrono::steady_clock::now();
- // 1. 处理可重试的失败状态
- if (currentState == ConnectionState::Failed) {
- if ((now - m_lastConnectionAttempt) >= RETRY_INTERVAL && m_connectionRetryCount < MAX_RETRY_COUNT) {
- m_connectionState = ConnectionState::Disconnected;
- }
- else {
- return false; // 不满足重试条件,直接返回
- }
- }
- // 2. 检查无效状态(正在连接/已连接但实际有效)
- if (currentState == ConnectionState::Connecting) {
- FINFO("Already connecting (type: {$})",
- m_currentConnType == ConnectionType::Serial ? "Serial" : "Ethernet");
- return true;
- }
- if (currentState == ConnectionState::Connected && m_scfWrapper && m_scfWrapper->IsConnected()) {
- FINFO("Already connected (type: {$})",
- m_currentConnType == ConnectionType::Serial ? "Serial" : "Ethernet");
- return true;
- }
- // 3. 检查重试间隔
- if (m_connectionRetryCount > 0 && (now - m_lastConnectionAttempt) < RETRY_INTERVAL) {
- FINFO("Retry in {$}s (type: {$})",
- std::chrono::duration_cast<std::chrono::seconds>(RETRY_INTERVAL - (now - m_lastConnectionAttempt)).count(),
- m_currentConnType == ConnectionType::Serial ? "Serial" : "Ethernet");
- return false;
- }
- ResDataObject connParam = GetConnectParam(m_ConfigFileName);
- std::string connPortStr = "";
- std::string connTypeStr = (std::string)connParam["type"]; // 从配置读取type字段
- m_currentConnType = (connTypeStr == "COM") ? ConnectionType::Serial : ConnectionType::Ethernet;
- if (m_currentConnType == ConnectionType::Serial)
- {
- connPortStr = (std::string)connParam["port"];// 从配置读取port字段
- // 查找配置端口在现有端口列表中的位置
- auto it = std::find(m_serialPorts.begin(), m_serialPorts.end(), connPortStr);
- if (it == m_serialPorts.end()) {
- // 配置的端口不在列表中,添加到首位
- FINFO("Configured serial port {$} not found, adding to front of port list", connPortStr);
- m_serialPorts.insert(m_serialPorts.begin(), connPortStr);
- }
- else if (it != m_serialPorts.begin()) {
- // 配置的端口存在但不在首位,移动到首位
- FINFO("Moving configured serial port {$} to front of port list", connPortStr);
- m_serialPorts.erase(it);
- m_serialPorts.insert(m_serialPorts.begin(), connPortStr);
- }
- }
- // 4. 执行连接流程
- m_connectionState = ConnectionState::Connecting;
- m_lastConnectionAttempt = now;
- std::string connInfo;
- try {
- if (m_currentConnType == ConnectionType::Serial) {
- // 串口连接:使用当前索引的端口
- std::string currentPort = m_serialPorts[m_currentSerialPortIndex];
- connParam.update("port", currentPort.c_str()); // 将当前尝试的端口写入参数
- connInfo = "Serial (port: " + currentPort + ")";
- }
- else {
- // 网口连接:直接使用配置参数
- connInfo = "Ethernet (ip: " + std::string(connParam["ip"]) + ")";
- }
- FINFO("Enter Connect ({$}), config: {$}", connInfo, connParam.encode());
- if (!m_scfWrapper->Initialize(m_SCFDllName)) {
- FINFO("Init failed: {$}", m_scfWrapper->GetLastError());
- m_connectionState = ConnectionState::Failed;
- return false;
- }
- m_scfWrapper->SetDataReceivedCallback([this](const char* data, uint32_t length) {
- this->Dequeue(data, length);
- });
- auto erCode = m_scfWrapper->Connect(connParam, &PSGHRDriver::callbackPackageProcess, SCF_PACKET_TRANSFER, 3000);
- if (erCode != SCF_SUCCEED || !m_scfWrapper->StartAutoReceive()) {
- FINFO("Connect failed (code: {$}) for {$}", erCode, connInfo);
- m_scfWrapper->Disconnect();
- m_connectionState = ConnectionState::Failed;
- // 串口连接:未遍历完所有端口时,优先切换端口重试(不计入总重试次数)
- if (m_currentConnType == ConnectionType::Serial) {
- int nextIndex = (m_currentSerialPortIndex + 1) % m_serialPorts.size();
- // 判断是否已遍历所有端口(当前索引是最后一个时,nextIndex会回到0)
- bool allPortsTried = (nextIndex == 0);
- if (!allPortsTried) {
- // 未遍历完所有端口:切换到下一端口,不增加重试计数
- m_currentSerialPortIndex = nextIndex;
- m_connectionRetryCount = 0;
- FINFO("Trying next serial port: {$}", m_serialPorts[nextIndex]);
- return false; // 触发外部线程立即尝试下一端口
- }
- else {
- // 已遍历所有端口:重置到第一个端口,增加重试计数(进入间隔等待)
- m_currentSerialPortIndex = 0;
- m_connectionRetryCount++;
- FINFO("All serial ports tried, retry count: {$}/{$}", m_connectionRetryCount, MAX_RETRY_COUNT);
- return false;
- }
- }
- // 所有端口失败(串口)或网口失败,才增加总重试计数
- m_connectionRetryCount++;
- return false;
- }
- // 连接成功:重置状态
- m_connectionState = ConnectionState::Connected;
- m_connectionRetryCount = 0;
- m_currentSerialPortIndex = 0; // 重置串口端口索引
- FINFO("Connected successfully ({$})", connInfo);
- return true;
- }
- catch (const std::exception& e) {
- FINFO("Exception for {$}: {$}", connInfo, e.what());
- m_connectionState = ConnectionState::Failed;
- m_connectionRetryCount++;
- return false;
- }
- }
- auto nsGEN::PSGHRDriver::CreateDevice(int index) -> std::unique_ptr <IODevice>
- {
- FINFO("CreateDevice in\n");
- m_pDevice = new PSGHRDevice(EventCenter, m_scfWrapper, m_ConfigFileName);
- auto dev = std::unique_ptr <IODevice>(new IODevice(m_pDevice));
- FINFO("CreateDevice out\n");
- return dev;
- }
- void nsGEN::PSGHRDriver::FireNotify(int code, std::string key, std::string content)
- {
- EventCenter->OnNotify(code, key, content);
- }
- bool nsGEN::PSGHRDriver::isConnected() const
- {
- const auto state = m_connectionState.load();
- // 1. 连接中/实际已连接:返回true(无需重连)
- if (state == ConnectionState::Connecting || (m_scfWrapper && m_scfWrapper->IsConnected())) {
- //FINFO(state == ConnectionState::Connecting ? "Connecting in progress" : "Already connected");
- return true;
- }
- // 2. 失败状态处理:判断是否允许重试
- if (state == ConnectionState::Failed) {
- auto now = std::chrono::steady_clock::now();
- const auto timeSinceLast = now - m_lastConnectionAttempt;
- // 2.1 达到最大重试次数,但超过重置间隔:重置计数,允许重新重试
- if (m_connectionRetryCount >= MAX_RETRY_COUNT && timeSinceLast >= RESET_RETRY_AFTER) {
- FINFO("Max retries reached, resetting count after {$}s",
- std::chrono::duration_cast<std::chrono::seconds>(timeSinceLast).count());
- m_connectionRetryCount = 0; // 重置计数(因mutable修饰,const函数可修改)
- }
- // 2.2 不适合重连(时间未到 或 次数仍超限):返回true阻止重连
- if (timeSinceLast < RETRY_INTERVAL || m_connectionRetryCount >= MAX_RETRY_COUNT) {
- FINFO(timeSinceLast < RETRY_INTERVAL ?
- "Retry later ({$}s)" : "Max retries, waiting {$}s to reset",
- std::chrono::duration_cast<std::chrono::seconds>(
- timeSinceLast < RETRY_INTERVAL ? RETRY_INTERVAL - timeSinceLast : RESET_RETRY_AFTER - timeSinceLast
- ).count()
- );
- return true;
- }
- }
- // 3. 其他情况(适合重连):返回false触发Connect()
- return false;
- }
- std::string nsGEN::PSGHRDriver::GetResource()
- {
- FDEBUG("GetResource");
- ResDataObject r_config, temp;
- if (!temp.loadFile(m_ConfigFileName.c_str()))
- {
- return "";
- }
- m_ConfigAll = temp;
- r_config = temp["CONFIGURATION"];
- m_Configurations = r_config;
- ResDataObject DescriptionTemp;
- ResDataObject DescriptionSend;
- ResDataObject m_DescriptionSend;
- ResDataObject ListTemp;
- string strTemp = "";
- string strIndex = "";
- int nTemp = -1;
- char sstream[10] = { 0 };
- string strValue = "";
- string strType = "";
- /***
- * 1. ͨ��ѭ����������������д��pDeviceConfig
- * 2. ��¼��������ڲ�key�Լ��������ͣ����Ͷ�Ӧ�˲�ͬ�����ļ�·�������ڶ�д��ʵֵ
- ***/
- try
- {
- int nConfigInfoCount = (int)m_Configurations["ConfigToolInfo"].GetKeyCount("AttributeInfo");
- m_pAttribute->clear();
- m_pDescription->clear();
- for (int nInfoIndex = 0; nInfoIndex < nConfigInfoCount; nInfoIndex++)
- {
- DescriptionTemp.clear();
- DescriptionSend.clear();
- ListTemp.clear();
- //AttributeType
- strTemp = (string)m_Configurations["ConfigToolInfo"][nInfoIndex]["AttributeDescripition"]["Type"];
- DescriptionTemp.add(ConfKey::CcosType, strTemp.c_str());//CcosGeneratorAttribute
- DescriptionSend.add(ConfKey::CcosType, strTemp.c_str());//CcosGeneratorAttribute
- strType = strTemp;
- //AttributeKey
- strTemp = (string)m_Configurations["ConfigToolInfo"][nInfoIndex]["InnerKey"];
- nTemp = (int)m_Configurations["ConfigToolInfo"][nInfoIndex]["PathID"];
- GetDeviceConfigValue(r_config, strTemp.c_str(), nTemp, strValue);
- //printf("********************************innerkey=%s --strValue = %s\n", strTemp.c_str(), strValue.c_str());
- strTemp = (string)m_Configurations["ConfigToolInfo"][nInfoIndex]["AttributeKey"];
- if ("int" == strType)
- {
- (*m_pAttribute).add(strTemp.c_str(), atoi(strValue.c_str()));
- }
- else if ("float" == strType)
- {
- (*m_pAttribute).add(strTemp.c_str(), atoi(strValue.c_str()));
- }
- else
- {
- (*m_pAttribute).add(strTemp.c_str(), strValue.c_str());
- }
- //printf("********************************outkey =%s --strValue = %s\n", strTemp.c_str(), strValue.c_str());
- //AttributeAccess
- strTemp = (string)m_Configurations["ConfigToolInfo"][nInfoIndex]["AttributeDescripition"]["Access"];
- DescriptionTemp.add(ConfKey::CcosAccess, strTemp.c_str());
- DescriptionSend.add(ConfKey::CcosAccess, strTemp.c_str());
- /*
- //AttributeRangeMin
- strTemp = (string)m_Configurations["ConfigToolInfo"][nInfoIndex]["AttributeDescripition"]["RangeMin"];
- if (strTemp != "") //����Ҫ��������Ϊ��
- {
- DescriptionTemp.add(ConfKey::CcosRangeMin, strTemp.c_str());
- }
- //AttributeRangeMax
- strTemp = (string)m_Configurations["ConfigToolInfo"][nInfoIndex]["AttributeDescripition"]["RangeMax"];
- if (strTemp != "") //����Ҫ��������Ϊ��
- {
- DescriptionTemp.add(ConfKey::CcosRangeMax, strTemp.c_str());
- }
- */
- //AttributeList
- nTemp = m_Configurations["ConfigToolInfo"][nInfoIndex]["AttributeDescripition"]["ListNum"];
- if (nTemp > 0)
- {
- for (int nListIndex = 0; nListIndex < nTemp; nListIndex++)
- {
- strTemp = (string)m_Configurations["ConfigToolInfo"][nInfoIndex]["AttributeDescripition"]["ListInfo"][nListIndex];
- auto temKey = std::to_string(nListIndex);
- ListTemp.add(temKey.c_str(), strTemp.c_str());
- }
- DescriptionTemp.add(ConfKey::CcosList, ListTemp);
- DescriptionSend.add(ConfKey::CcosList, ListTemp.encode());
- }
- //AttributeRequired
- strTemp = (string)m_Configurations["ConfigToolInfo"][nInfoIndex]["AttributeDescripition"]["Required"];
- DescriptionTemp.add(ConfKey::CcosRequired, strTemp.c_str());
- DescriptionSend.add(ConfKey::CcosRequired, strTemp.c_str());
- //AttributeDefaultValue
- strTemp = (string)m_Configurations["ConfigToolInfo"][nInfoIndex]["AttributeDescripition"]["DefaultValue"];
- if (strTemp != "")
- {
- DescriptionTemp.add(ConfKey::CcosDefaultValue, strTemp.c_str());
- DescriptionSend.add(ConfKey::CcosDefaultValue, strTemp.c_str());
- }
- strTemp = (string)m_Configurations["ConfigToolInfo"][nInfoIndex]["AttributeKey"];
- (*m_pDescription).add(strTemp.c_str(), DescriptionTemp);
- m_DescriptionSend.add(strTemp.c_str(), DescriptionSend.encode());
- }
- }
- catch (ResDataObjectExption& e)
- {
- FERROR("Get config error: {$}", e.what());
- return "";
- }
- ResDataObject resDeviceResource;
- resDeviceResource.add(ConfKey::CcosGeneratorAttribute, (*m_pAttribute));
- resDeviceResource.add(ConfKey::CcosGeneratorDescription, (*m_pDescription));
- ResDataObject DescriptionTempEx;
- DescriptionTempEx.add(ConfKey::CcosGeneratorConfig, resDeviceResource);
- m_DeviceConfig.clear();
- m_DeviceConfig = DescriptionTempEx;
- //FDEBUG("local ************* get resource over {$}", DescriptionTempEx.encode());
- //printf("local ************* get resource over %s \n", DescriptionTempEx.encode());
- resDeviceResource.clear();
- resDeviceResource.add(ConfKey::CcosGeneratorAttribute, (*m_pAttribute));
- resDeviceResource.add(ConfKey::CcosGeneratorDescription, m_DescriptionSend);
- DescriptionTempEx.clear();
- DescriptionTempEx.add(ConfKey::CcosGeneratorConfig, resDeviceResource);
- m_DeviceConfigSend.clear();
- m_DeviceConfigSend = DescriptionTempEx;
- string res = m_DeviceConfigSend.encode();
- //printf("%s", res.c_str());
- //FDEBUG("get resource over {$}", DescriptionTempEx.encode());
- //("************* get resource over %s \n", DescriptionTempEx.encode());
- return res;
- }
- std::string nsGEN::PSGHRDriver::DeviceProbe()
- {
- FINFO("std::string nsGEN::PSGHRDriver::DeviceProbe() in\n");
- ResDataObject r_config, HardwareInfo;
- if (r_config.loadFile(m_ConfigFileName.c_str()))
- {
- HardwareInfo.add("MajorID", r_config["CONFIGURATION"]["MajorID"]);
- HardwareInfo.add("MinorID", r_config["CONFIGURATION"]["MinorID"]);
- HardwareInfo.add("VendorID", r_config["CONFIGURATION"]["VendorID"]);
- HardwareInfo.add("ProductID", r_config["CONFIGURATION"]["ProductID"]);
- HardwareInfo.add("SerialID", r_config["CONFIGURATION"]["SerialID"]);
- }
- else
- {
- HardwareInfo.add("MajorID", "Generator");
- HardwareInfo.add("MinorID", "Dr");
- HardwareInfo.add("VendorID", "PSGHR");
- HardwareInfo.add("ProductID", "HF");
- HardwareInfo.add("SerialID", "Dev");
- }
- string ret = HardwareInfo.encode();
- FINFO("std::string nsGEN::PSGHRDriver::DeviceProbe() out\n");
- return ret;
- }
- void nsGEN::PSGHRDriver::Disconnect()
- {
- if (m_scfWrapper) {
- m_scfWrapper->StopAutoReceive();
- m_scfWrapper->Disconnect();
- }
- }
- void nsGEN::PSGHRDriver::Dequeue(const char* Packet, DWORD Length)
- {
- DecodeFrame(Packet, Length);
- }
- PACKET_RET nsGEN::PSGHRDriver::callbackPackageProcess(const char* RecData, uint32_t nLength, uint32_t& PacketLength)
- {
- // 输出RecData的十六进制日志
- /*if (nLength > 0)
- {
- std::string hexStr;
- hexStr.reserve(nLength * 3);
- char hexBuf[4] = { 0 };
- for (uint32_t i = 0; i < nLength; i++)
- {
- sprintf(hexBuf, "%02X ", (unsigned char)RecData[i]);
- hexStr += hexBuf;
- }
- FINFO("RecData[{$}]: {$}\n", nLength, hexStr.c_str());
- }*/
- if (nLength < 1)
- {
- FINFO("nLength < 1, nLength=={$} \n", nLength);
- return PACKET_USELESS;
- }
- for (DWORD i = 0; i < nLength - 1; i++)
- {
- if (RecData[i] == 0x02)
- {
- if (i != 0)
- {
- PacketLength = i;
- char strtemp[100] = { 0 };
- memcpy(strtemp, RecData, i);
- strtemp[PacketLength + 1] = 0;
- return PACKET_USELESS;
- }
- }
- if (RecData[i] == 0x03)
- {
- PacketLength = i + 2;
- char strtemp[100] = { 0 };
- memcpy(strtemp, RecData, i);
- strtemp[PacketLength + 1] = 0;
- //FINFO("==IN==:{$}\n", strtemp);
- return PACKET_ISPACKET;
- }
- }
- return PACKET_NOPACKET;
- }
- bool nsGEN::PSGHRDriver::GetDeviceConfig(std::string& Cfg)
- {
- Cfg = m_DeviceConfigSend.encode();
- printf("GetDeviceConfig over , %s", Cfg.c_str());
- return true;
- }
- bool nsGEN::PSGHRDriver::SetDeviceConfig(std::string Cfg)
- {
- FINFO("--Func-- SetDeviceConfig {$}\n", Cfg.c_str());
- printf("\n--Func-- SetDeviceConfig %s\n", Cfg.c_str());
- ResDataObject DeviceConfig;
- DeviceConfig.decode(Cfg.c_str());
- ResDataObject DescriptionTempEx;
- DescriptionTempEx = DeviceConfig["DeviceConfig"]["Attribute"];
- FDEBUG("Attribute:{$}", DescriptionTempEx.encode());
- bool bSaveFile = false; //true:���±��������ļ�
- string strAccess = "";
- for (int i = 0; i < DescriptionTempEx.size(); i++)
- {
- string strKey = DescriptionTempEx.GetKey(i);
- FINFO("{$}", strKey.c_str());
- printf("%s\n", strKey.c_str());
- try
- {
- if (m_pAttribute->GetFirstOf(strKey.c_str()) >= 0)
- {
- strAccess = (string)(*m_pDescription)[strKey.c_str()]["Access"];
- if ("RW" == strAccess)
- {
- //�Ķ�Ӧ���ã���������Ԫ��������Ҫͬʱ�������ĺ�������ʵֵ
- //1. ���ڴ��е�ֵ�����ڸ��ϲ㷢��Ϣ
- (*m_pAttribute)[strKey.c_str()] = DescriptionTempEx[i];
- //2. �õ�Innerkey
- int nConfigInfoCount = (int)m_Configurations["ConfigToolInfo"].GetKeyCount("AttributeInfo");
- FINFO("nConfigInfoCount {$}", nConfigInfoCount);
- string strTemp = ""; //�洢AttributeKey
- for (int nInfoIndex = 0; nInfoIndex < nConfigInfoCount; nInfoIndex++)
- {
- strTemp = (string)m_Configurations["ConfigToolInfo"][nInfoIndex]["AttributeKey"];
- if (strTemp == strKey)
- {
- strTemp = (string)m_Configurations["ConfigToolInfo"][nInfoIndex]["InnerKey"];
- break;
- }
- }
- //3. �������ļ��е�ֵ
- if (SetDeviceConfigValue(m_Configurations, strTemp.c_str(), 1, DescriptionTempEx[i]))
- {
- FDEBUG("SetDeviceConfigValue over");
- bSaveFile = true;
- }
- }
- else
- {
- FINFO("{$} is not a RW configuration item", strKey.c_str());
- }
- }
- else
- {
- FINFO("without this attribute {$}", strKey.c_str());
- }
- }
- catch (ResDataObjectExption& e)
- {
- printf("\nSetDriverConfig crashed: %s\n", e.what());
- FERROR("SetDriverConfig crashed: {$}", e.what());
- return false;
- }
- }
- if (bSaveFile)
- {
- //3. ���±��������ļ�
- SaveConfigFile(true);
- }
- return true;
- }
- bool nsGEN::PSGHRDriver::SaveConfigFile(bool bSendNotify)
- {
- m_ConfigAll["CONFIGURATION"] = m_Configurations;
- bool bRt = m_ConfigAll.SaveFile(m_ConfigFileName.c_str());
- FINFO("SaveConfigFile over {$}", bRt);
- return true;
- }
- bool nsGEN::PSGHRDriver::GetDeviceConfigValue(ResDataObject config, const char* pInnerKey, int nPathID, string& strValue)
- {
- strValue = "";
- string strTemp = pInnerKey;
- if (1 == nPathID) //��DriverConfig·����ÿ��DPC�Լ��������ļ���ȡ
- {
- int pos = 0;
- ResDataObject resTemp = config;
- while ((pos = strTemp.find_first_of(',')) != string::npos)
- {
- string Key = strTemp.substr(0, pos);
- string TempValue = resTemp[Key.c_str()].encode();
- // printf("-TempValue=== %s", TempValue.c_str());
- resTemp.clear();
- resTemp.decode(TempValue.c_str());
- strTemp = strTemp.substr(pos + 1, strTemp.length() - pos - 1);
- //printf("-************--%s", strTemp.c_str());
- }
- if (strTemp != "")
- {
- strValue = (string)resTemp[strTemp.c_str()];
- }
- else
- {
- strValue = (string)resTemp;
- }
- }
- //printf("------------%s", strValue.c_str());
- return true;
- }
- bool nsGEN::PSGHRDriver::SetDeviceConfigValue(ResDataObject& config, const char* pInnerKey, int nPathID, const char* szValue)
- {
- string strTemp = pInnerKey;
- FDEBUG("Begin to change {$} item value to {$}", pInnerKey, szValue);
- if (1 == nPathID) //��DriverConfig·����ÿ��DPC�Լ��������ļ���ȡ
- {
- try {
- int pos = 0;
- ResDataObject* resTemp = &config;
- while ((pos = strTemp.find_first_of(',')) != string::npos)
- {
- string Key = strTemp.substr(0, pos);
- resTemp = &(*resTemp)[Key.c_str()];
- strTemp = strTemp.substr(pos + 1, strTemp.length() - pos - 1);
- }
- if (strTemp != "")
- {
- (*resTemp)[strTemp.c_str()] = szValue;
- }
- else
- {
- *resTemp = szValue;
- }
- }
- catch (ResDataObjectExption& e)
- {
- FERROR("SetDriverConfigvalue crashed: {$}", e.what());
- return false;
- }
- }
- return true;
- }
- //-----------------------------------------------------------------------------
- // GetIODriver & CreateIODriver
- //-----------------------------------------------------------------------------
- static nsGEN::PSGHRDriver gIODriver;
- extern "C" CCOS::Dev::IODriver * GetIODriver()
- {
- return &gIODriver;
- }
- extern "C" CCOS::Dev::IODriver * CreateIODriver()
- {
- pIODriver = new nsGEN::PSGHRDriver();
- return pIODriver;
- }
|