MessageHandler.c 442 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939
  1. #define _XOPEN_SOURCE 700
  2. #include <sys/types.h>
  3. #include <sys/ipc.h>
  4. #include <sys/shm.h>
  5. #include <sys/stat.h>
  6. #include <sys/time.h> // gettimeofday sleep usleep
  7. #include <fcntl.h>
  8. #include <stddef.h>
  9. #include <stdio.h>
  10. #include <string.h>
  11. #ifdef _WIN32
  12. #include <Windows.h>
  13. #else
  14. #include <unistd.h>
  15. #endif
  16. #include <stdarg.h>
  17. #include <ctype.h>
  18. #include "libwebsockets.h"
  19. #include <lws_config.h>
  20. #include "hashmap.h"
  21. #include "ShareMemory.h"
  22. #include "TransactionQueue.h"
  23. #include "SystemLogMessage.h"
  24. #include "define.h" // "../../Projects/define.h"
  25. #include "ShareMemory.h"
  26. #include "SystemLogMessage.h"
  27. //#include "config.h"
  28. #include <sys/socket.h>
  29. #include <netinet/in.h>
  30. #include <stdlib.h>
  31. /*for sendfile()*/
  32. #include <sys/sendfile.h>
  33. /*for O_RDONLY*/
  34. #include <fcntl.h>
  35. #include "sqlite3.h"
  36. #include <arpa/inet.h>
  37. //#define _GNU_SOURCE
  38. #include <time.h>
  39. #include "MessageHandler.h"
  40. #include <assert.h>
  41. #include <pthread.h>
  42. #include <mcheck.h>
  43. #define PASS 1
  44. #define FAIL -1
  45. #define FALSE 0
  46. #define TRUE 1 // Option 1
  47. //ChargePointMaxProfile
  48. #define ChargePointMaxProfile_JSON "../Storage/OCPP/ChargePointMaxProfile.json"
  49. //TxDefaultProfile
  50. #define TxDefaultProfile_0_JSON "../Storage/OCPP/TxDefaultProfile_0.json"
  51. #define TxDefaultProfile_1_JSON "../Storage/OCPP/TxDefaultProfile_1.json"
  52. #define TxDefaultProfile_2_JSON "../Storage/OCPP/TxDefaultProfile_2.json"
  53. //TxProfile
  54. #define TxProfile_1_JSON "../Storage/OCPP/TxProfile_1.json"
  55. #define TxProfile_2_JSON "../Storage/OCPP/TxProfile_2.json"
  56. #define ChargingProfile_0_JSON "../Storage/OCPP/chargingprofile_0.json"
  57. #define ChargingProfile_1_JSON "../Storage/OCPP/chargingprofile_1.json"
  58. #define ChargingProfile_2_JSON "../Storage/OCPP/chargingprofile_2.json"
  59. #define AuthorizationCache_JSON "../Storage/OCPP/AuthorizationCache.json"
  60. #define LocalAuthorizationList_JSON "../Storage/OCPP/LocalAuthorizationList.json"
  61. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  62. struct StatusCodeData *ShmStatusCodeData;
  63. struct PsuData *ShmPsuData ;
  64. struct OCPP16Data *ShmOCPP16Data;
  65. // define Macro
  66. #define SystemLogMessage
  67. // OCPP Message Type
  68. #define MESSAGE_TYPE_CALL 2
  69. #define MESSAGE_TYPE_CALLRESULT 3
  70. #define MESSAGE_TYPE_CALLERROR 4
  71. //
  72. #define server_cycle_Status 120
  73. #define MACROSTR(k) #k
  74. //ConfigurationMaxKeys
  75. #define GetConfigurationMaxKeysNUM 43
  76. //char guid[37];
  77. pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
  78. char queuedata[2000]={0};
  79. //===============================
  80. // Configuration: unknownkey
  81. //===============================
  82. static char unknownkey[10][20]={0};
  83. static int UnknownKeynum = 0;
  84. //===============================
  85. // Gun Total Numbers
  86. //===============================
  87. //#define gunTotalNumber (strstr(ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL) ? (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY): AC_QUANTITY
  88. static int gunTotalNumber=0;
  89. //===============================
  90. // Local List Version
  91. //===============================
  92. static int localversion=0;
  93. static char idTagAuthorization[32]={0};
  94. //===============================
  95. // OCPP Path
  96. //===============================
  97. char OcppPath[160]={};
  98. char OcppProtocol[10]={0},OcppHost[50]={0}, OcppTempPath[50]={0};
  99. int OcppPort=0;
  100. //===============================
  101. // OCPP sign variable
  102. //===============================
  103. int server_sign = FALSE;
  104. int server_pending = FALSE;
  105. int PRE_SYS_MODE[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
  106. int BootNotificationInterval = 0;
  107. static int SystemInitial = CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY; // System Boot UP
  108. //===============================
  109. // OCPP auth variable
  110. //===============================
  111. int authenrequest = FALSE;
  112. int authorizeRetryTimes = 0; //number of Retry times
  113. //===============================
  114. // OCPP other variables
  115. //===============================
  116. int isUpdateRequest = FALSE;
  117. static int HeartBeatWaitTime = 10;
  118. static int FirstHeartBeat = 0;
  119. static int FirmwareStatusNotificationStatus = 3; // Idle
  120. static int DiagnosticsStatusNotificationStatus = 0; // Idle
  121. //========================================
  122. // OCPP status/previous related variables
  123. //========================================
  124. static int GunStatusInterval = 10;
  125. int statusModeChage[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY] = {FALSE};
  126. static int ChademoPreviousSystemStatus[CHAdeMO_QUANTITY];
  127. static int CcsPreviousSystemStatus[CCS_QUANTITY];
  128. static int GbPreviousSystemStatus[GB_QUANTITY];
  129. static int AcPreviousSystemStatus[AC_QUANTITY];
  130. int TransactionMessageAttemptsValue = 0;
  131. int TransactionMessageRetryIntervalValue = 0;
  132. static struct OCPPAuthLocalElemet
  133. {
  134. int listVersionInt;
  135. char idTagstr[20];
  136. char parentIdTag[20];
  137. char expiryDate[30];
  138. char idTagstatus[16];
  139. }idTagQuery;
  140. extern struct lws *wsi_client;
  141. extern struct lws_context *context;
  142. #if 0
  143. extern unsigned char *SendBuffer;
  144. #endif
  145. extern unsigned char SendBuffer[4096];
  146. extern int SendBufLen;
  147. //extern map_t hashMap;
  148. //extern data_struct_t* mapItem; --- remove for temporally
  149. //extern data_struct_t mapItem[0];
  150. extern char *random_uuid( char buf[37] );
  151. extern void split(char **arr, char *str, const char *del);
  152. extern pthread_mutex_t mutex1;
  153. extern struct Charger_Info Charger;
  154. extern sqlite3 *db;
  155. int TransactionMessageAttemptsGet(void);
  156. int TransactionMessageRetryIntervalGet(void);
  157. int GetOcppConnStatus(void);
  158. void SetOcppConnStatus(uint8_t status);
  159. int updateSetting(char *key, char *value);
  160. int setKeyValue(char *key, char *value);
  161. void OCPP_get_TableAuthlocalAllData(void);
  162. void processUnkownKey(void);
  163. //static char *querysql = "SELECT * FROM ocpp_auth_local;";
  164. struct StructOCPPMeterValue
  165. {
  166. unsigned char TimeStamp[28];
  167. struct StructSampledValue SampledValue[10];
  168. };
  169. struct ClientTime
  170. {
  171. unsigned int Heartbeat;
  172. unsigned int StatusNotification[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
  173. unsigned int StartTransaction;
  174. unsigned int StopTransaction;
  175. unsigned int MeterValues[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
  176. }clientTime;
  177. typedef union
  178. {
  179. //Operations Initiated by Central System
  180. unsigned char CsMsgValue[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  181. struct
  182. {
  183. //CsMsgValue[0]
  184. unsigned char StatusNotificationReq :1; //bit 0,
  185. unsigned char StatusNotificationConf :1; //bit 0,
  186. unsigned char :6; //bit 2~7
  187. }bits[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  188. }CpinitiateMsg;
  189. CpinitiateMsg cpinitateMsg;
  190. //==========================================
  191. // Init all Enumeration & Mapping String
  192. //==========================================
  193. /*ChargePointErrorCode*/
  194. typedef enum {
  195. ConnectorLockFailure,
  196. EVCommunicationError,
  197. GroundFailure,
  198. HighTemperature,
  199. InternalError,
  200. LocalListConflict,
  201. NoError,
  202. OtherError,
  203. OverCurrentFailure,
  204. OverVoltage,
  205. PowerMeterFailure,
  206. PowerSwitchFailure,
  207. ReaderFailure,
  208. ResetFailure,
  209. UnderVoltage,
  210. WeakSignal
  211. } ChargePointErrorCode;
  212. #if 0
  213. static char *ChargePointErrorCodeStr[] = {
  214. MACROSTR(ConnectorLockFailure),
  215. MACROSTR(EVCommunicationError),
  216. MACROSTR(GroundFailure),
  217. MACROSTR(HighTemperature),
  218. MACROSTR(InternalError),
  219. MACROSTR(LocalListConflict),
  220. MACROSTR(NoError),
  221. MACROSTR(OtherError),
  222. MACROSTR(OverCurrentFailure),
  223. MACROSTR(OverVoltage),
  224. MACROSTR(PowerMeterFailure),
  225. MACROSTR(PowerSwitchFailure),
  226. MACROSTR(ReaderFailure),
  227. MACROSTR(ResetFailure),
  228. MACROSTR(UnderVoltage),
  229. MACROSTR(WeakSignal)
  230. };
  231. #endif
  232. /*ChargePointStatus*/
  233. typedef enum {
  234. Available =0,
  235. Preparing,
  236. Charging,
  237. SuspendedEVSE,
  238. SuspendedEV,
  239. Finishing,
  240. Reserved,
  241. Unavailable,
  242. Faulted
  243. } ChargePointStatus;
  244. static char * ChargePointStatusStr[] = {
  245. MACROSTR(Available),
  246. MACROSTR(Preparing),
  247. MACROSTR(Charging),
  248. MACROSTR(SuspendedEVSE),
  249. MACROSTR(SuspendedEV),
  250. MACROSTR(Finishing),
  251. MACROSTR(Reserved),
  252. MACROSTR(Unavailable),
  253. MACROSTR(Faulted)
  254. };
  255. /*AvailabilityType*/
  256. typedef enum {
  257. RegistrationStatus_Accepted,
  258. RegistrationStatus_Pending,
  259. RegistrationStatus_Rejected
  260. } RegistrationStatus;
  261. static char *RegistrationStatusStr[] = {
  262. MACROSTR(Accepted),
  263. MACROSTR(Pending),
  264. MACROSTR(Rejected)
  265. };
  266. /*AvailabilityType*/
  267. typedef enum {
  268. Inoperative,
  269. Operative
  270. } AvailabilityType;
  271. static char *AvailabilityTypeStr[] = {
  272. MACROSTR(Inoperative),
  273. MACROSTR(Operative)
  274. };
  275. /*AvailabilityStatus*/
  276. typedef enum {
  277. Accepted,
  278. Rejected,
  279. Scheduled
  280. } AvailabilityStatus;
  281. static char *AvailabilityStatusStr[] = {
  282. MACROSTR(Accepted),
  283. MACROSTR(Rejected),
  284. MACROSTR(Scheduled)
  285. };
  286. /*ConfigurationStatus*/
  287. typedef enum {
  288. ConfigurationStatus_Accepted,
  289. ConfigurationStatus_Rejected,
  290. RebootRequired,
  291. NotSupported
  292. } ConfigurationStatus;
  293. static char *ConfigurationStatusStr[] = {
  294. MACROSTR(Accepted),
  295. MACROSTR(Rejected),
  296. MACROSTR(RebootRequired),
  297. MACROSTR(NotSupported)
  298. };
  299. /*ClearCacheStatus*/
  300. typedef enum {
  301. ClearCacheStatus_Accepted,
  302. ClearCacheStatus_Rejected
  303. } ClearCacheStatus;
  304. static char *ClearCacheStatusStr[] = {
  305. MACROSTR(Accepted),
  306. MACROSTR(Rejected)
  307. };
  308. /*ChargingProfilePurposeType*/
  309. typedef enum {
  310. ChargePointMaxProfile,
  311. TxDefaultProfile,
  312. TxProfile
  313. } ChargingProfilePurposeType;
  314. static char *ChargingProfilePurposeTypeStr[] = {
  315. MACROSTR(ChargePointMaxProfile),
  316. MACROSTR(TxDefaultProfile),
  317. MACROSTR(TxProfile)
  318. };
  319. /*ChargingProfileStatus*/
  320. typedef enum {
  321. ChargingProfileStatus_Accepted,
  322. ChargingProfileStatus_Rejected,
  323. ChargingProfileStatus_NotSupported
  324. } ChargingProfileStatus;
  325. static char *ChargingProfileStatusStr[] = {
  326. MACROSTR(Accepted),
  327. MACROSTR(Rejected),
  328. MACROSTR(NotSupported)
  329. };
  330. /*ClearChargingProfileStatus*/
  331. typedef enum {
  332. ClearChargingProfileStatus_Accepted,
  333. ClearChargingProfileStatus_Unknown
  334. } ClearChargingProfileStatus;
  335. static char *ClearChargingProfileStatusStr[] = {
  336. MACROSTR(Accepted),
  337. MACROSTR(Unknown)
  338. };
  339. /*GetCompositeScheduleStatus*/
  340. typedef enum {
  341. GetCompositeScheduleStatus_Accepted,
  342. GetCompositeScheduleStatus_Rejected
  343. } GetCompositeScheduleStatus;
  344. static char *GetCompositeScheduleStatusStr[] = {
  345. MACROSTR(Accepted),
  346. MACROSTR(Rejected)
  347. };
  348. /*ChargingRateUnitType*/
  349. typedef enum {
  350. ChargingRateUnitType_W,
  351. ChargingRateUnitType_A
  352. } ChargingRateUnitType;
  353. /*AuthorizationStatus*/
  354. typedef enum {
  355. AuthorizationStatus_Accepted ,
  356. AuthorizationStatus_Blocked ,
  357. AuthorizationStatus_Expired ,
  358. AuthorizationStatus_Invalid ,
  359. AuthorizationStatus_ConcurrentTx
  360. } AuthorizationStatus;
  361. /*UpdateType*/
  362. typedef enum {
  363. Differential ,
  364. Full
  365. } UpdateType;
  366. static char *UpdateTypeStr[] = {
  367. MACROSTR(Differential),
  368. MACROSTR(Full)
  369. };
  370. /*UpdateStatus*/
  371. typedef enum {
  372. UpdateStatus_Accepted ,
  373. UpdateStatus_Failed ,
  374. UpdateStatus_NotSupported ,
  375. UpdateStatus_VersionMismatch
  376. } UpdateStatus;
  377. static char *UpdateStatusStr[] = {
  378. MACROSTR(Accepted),
  379. MACROSTR(Failed),
  380. MACROSTR(NotSupported),
  381. MACROSTR(VersionMismatch)
  382. };
  383. /*RemoteStartStopStatus*/
  384. typedef enum {
  385. RemoteStartStopStatus_Accepted,
  386. RemoteStartStopStatus_Rejected
  387. } RemoteStartStopStatus;
  388. static char *RemoteStartStopStatusStr[] = {
  389. MACROSTR(Accepted),
  390. MACROSTR(Rejected)
  391. };
  392. /*ReservationStatus*/
  393. typedef enum {
  394. ReservationStatus_Accepted,
  395. ReservationStatus_Faulted,
  396. ReservationStatus_Occupied,
  397. ReservationStatus_Rejected,
  398. ReservationStatus_Unavailable
  399. } ReservationStatus;
  400. static char *ReservationStatusStr[] = {
  401. MACROSTR(Accepted),
  402. MACROSTR(Faulted),
  403. MACROSTR(Occupied),
  404. MACROSTR(Rejected),
  405. MACROSTR(Unavailable)
  406. };
  407. /*ResetType*/
  408. typedef enum {
  409. Hard,
  410. Soft
  411. } ResetType;
  412. static char *ResetTypeStr[] = {
  413. MACROSTR(Hard),
  414. MACROSTR(Soft)
  415. };
  416. /*ResetStatus*/
  417. typedef enum {
  418. ResetStatus_Accepted,
  419. ResetStatus_Rejected
  420. } ResetStatus;
  421. static char *ResetStatusStr[] = {
  422. MACROSTR(Accepted),
  423. MACROSTR(Rejected)
  424. };
  425. /*DiagnosticsStatus*/
  426. typedef enum {
  427. DiagnosticsStatus_Idle,
  428. DiagnosticsStatus_Uploaded,
  429. DiagnosticsStatus_UploadFailed,
  430. DiagnosticsStatus_Uploading
  431. } DiagnosticsStatus;
  432. static char * DiagnosticsStatusStr[] = {
  433. MACROSTR(Idle),
  434. MACROSTR(Uploaded),
  435. MACROSTR(UploadFailed),
  436. MACROSTR(Uploading)
  437. };
  438. /*FirmwareStatus*/
  439. typedef enum {
  440. FirmwareStatus_Downloaded,
  441. FirmwareStatus_DownloadFailed,
  442. FirmwareStatus_Downloading,
  443. FirmwareStatus_Idle,
  444. FirmwareStatus_InstallationFailed,
  445. FirmwareStatus_Installing,
  446. FirmwareStatus_Installed
  447. } FirmwareStatus;
  448. static char * FirmwareStatusStr[] = {
  449. MACROSTR(Downloaded),
  450. MACROSTR(DownloadFailed),
  451. MACROSTR(Downloading),
  452. MACROSTR(Idle),
  453. MACROSTR(InstallationFailed),
  454. MACROSTR(Installing),
  455. MACROSTR(Installed)
  456. };
  457. /*MessageTrigger*/
  458. typedef enum {
  459. BootNotification,
  460. DiagnosticsStatusNotification,
  461. FirmwareStatusNotification,
  462. Heartbeat,
  463. MeterValues,
  464. StatusNotification
  465. } MessageTrigger;
  466. static char * MessageTriggerStr[] = {
  467. MACROSTR(BootNotification),
  468. MACROSTR(DiagnosticsStatusNotification),
  469. MACROSTR(FirmwareStatusNotification),
  470. MACROSTR(Heartbeat),
  471. MACROSTR(MeterValues),
  472. MACROSTR(StatusNotification)
  473. };
  474. /*TriggerMessageStatus*/
  475. typedef enum {
  476. TriggerMessageStatus_Accepted ,
  477. TriggerMessageStatus_Rejected ,
  478. TriggerMessageStatus_NotImplemented
  479. } TriggerMessageStatus;
  480. static char * TriggerMessageStatusStr[] = {
  481. MACROSTR(Accepted),
  482. MACROSTR(Rejected),
  483. MACROSTR(NotImplemented)
  484. };
  485. /*UnlockStatus*/
  486. typedef enum {
  487. Unlocked,
  488. UnlockFailed,
  489. UnlockStatus_NotSupported
  490. } UnlockStatus;
  491. static char * UnlockStatusStr[] = {
  492. MACROSTR(Unlocked),
  493. MACROSTR(UnlockFailed),
  494. MACROSTR(NotSupported)
  495. };
  496. /*StopTransactionReason*/
  497. typedef enum {
  498. EmergencyStop,
  499. EVDisconnected,
  500. HardReset,
  501. Local,
  502. Other,
  503. PowerLoss,
  504. Reboot,
  505. Remote,
  506. SoftReset,
  507. UnlockCommand,
  508. DeAuthorized
  509. } StopTransactionReason;
  510. static char * StopTransactionReasonStr[] = {
  511. MACROSTR(EmergencyStop),
  512. MACROSTR(EVDisconnected),
  513. MACROSTR(HardReset),
  514. MACROSTR(Local),
  515. MACROSTR(Other),
  516. MACROSTR(PowerLoss),
  517. MACROSTR(Reboot),
  518. MACROSTR(Remote),
  519. MACROSTR(SoftReset),
  520. MACROSTR(UnlockCommand),
  521. MACROSTR(DeAuthorized)
  522. };
  523. /*CancelReservationStatus*/
  524. typedef enum {
  525. CancelReservationStatus_Accepted,
  526. CancelReservationStatus_Rejected
  527. } CancelReservationStatus;
  528. static char * CancelReservationStatusStr[] = {
  529. MACROSTR(Accepted),
  530. MACROSTR(Rejected)
  531. };
  532. /*ReadingContext*/
  533. typedef enum {
  534. ReadingContext_Interruption_Begin,
  535. ReadingContext_Interruption_End,
  536. ReadingContext_Other,
  537. ReadingContext_Sample_Clock,
  538. ReadingContext_Sample_Periodic ,
  539. ReadingContext_Transaction_Begin ,
  540. ReadingContext_Transaction_End,
  541. ReadingContext_Trigger
  542. } ReadingContext;
  543. static char * ReadingContextStr[] = {
  544. MACROSTR(Interruption.Begin),
  545. MACROSTR(Interruption.End),
  546. MACROSTR(Other),
  547. MACROSTR(Sample.Clock),
  548. MACROSTR(Sample.Periodic),
  549. MACROSTR(Transaction.Begin),
  550. MACROSTR(Transaction.End),
  551. MACROSTR(Trigger)
  552. };
  553. /*ValueFormat*/
  554. typedef enum {
  555. Raw,
  556. SignedData
  557. } ValueFormat;
  558. static char * ValueFormatStr[] = {
  559. MACROSTR(Raw),
  560. MACROSTR(SignedData)
  561. };
  562. /*Measurand*/
  563. typedef enum {
  564. Current_Export ,
  565. Current_Import,
  566. Current_Offered,
  567. Energy_Active_Export_Register,
  568. Energy_Active_Import_Register,
  569. Energy_Reactive_Export_Register,
  570. Energy_Reactive_Import_Register,
  571. Energy_Active_Export_Interval,
  572. Energy_Active_Import_Interval,
  573. Energy_Reactive_Export_Interval,
  574. Energy_Reactive_Import_Interval,
  575. Frequency,
  576. Power_Active_Export ,
  577. Power_Active_Import,
  578. Power_Factor,
  579. Power_Offered,
  580. Power_Reactive_Export,
  581. Power_Reactive_Import,
  582. RPM,
  583. SoC,
  584. Temperature ,
  585. Voltage
  586. } Measurand;
  587. static char * MeasurandStr[] = {
  588. MACROSTR(Current.Export),
  589. MACROSTR(Current.Import),
  590. MACROSTR(Current.Offered),
  591. MACROSTR(Energy.Active.Export.Register),
  592. MACROSTR(Energy.Active.Import.Register),
  593. MACROSTR(Energy.Reactive.Export.Register),
  594. MACROSTR(Energy.Reactive.Import.Register),
  595. MACROSTR(Energy.Active.Export.Interval),
  596. MACROSTR(Energy.Active.Import.Interval),
  597. MACROSTR(Energy.Reactive.Export.Interval),
  598. MACROSTR(Energy.Reactive.Import.Interval),
  599. MACROSTR(Frequency),
  600. MACROSTR(Power.Active.Export),
  601. MACROSTR(Power.Active.Import),
  602. MACROSTR(Power.Factor),
  603. MACROSTR(Power.Offered),
  604. MACROSTR(Power.Reactive.ExportMACROSTR),
  605. MACROSTR(Power.Reactive.Import),
  606. MACROSTR(RPM),
  607. MACROSTR(SoC),
  608. MACROSTR(Temperature),
  609. MACROSTR(Voltage)
  610. };
  611. /*Location*/
  612. typedef enum {
  613. Location_Body,
  614. Location_Cable,
  615. Location_EV,
  616. Location_Inlet ,
  617. Location_Outlet
  618. } Location;
  619. static char * LocationStr[] = {
  620. MACROSTR(Body),
  621. MACROSTR(Cable),
  622. MACROSTR(EV),
  623. MACROSTR(Inlet),
  624. MACROSTR(Outlet)
  625. };
  626. /*Phase*/
  627. typedef enum {
  628. L1,
  629. L2,
  630. L3,
  631. N,
  632. L1_N,
  633. L2_N,
  634. L3_N,
  635. L1_L2,
  636. L2_L3,
  637. L3_L1
  638. } Phase;
  639. static char * PhaseStr[] = {
  640. MACROSTR(L1),
  641. MACROSTR(L2),
  642. MACROSTR(L3),
  643. MACROSTR(N),
  644. MACROSTR(L1-N),
  645. MACROSTR(L2-N),
  646. MACROSTR(L3-N),
  647. MACROSTR(L1-L2),
  648. MACROSTR(L2-L3),
  649. MACROSTR(L3-L1)
  650. };
  651. /*UnitOfMeasure*/
  652. typedef enum {
  653. UnitOfMeasure_Wh,
  654. UnitOfMeasure_kWh ,
  655. UnitOfMeasure_varh ,
  656. UnitOfMeasure_kvarh ,
  657. UnitOfMeasure_W ,
  658. UnitOfMeasure_kW ,
  659. UnitOfMeasure_VA ,
  660. UnitOfMeasure_kVA ,
  661. UnitOfMeasure_var ,
  662. UnitOfMeasure_kvar ,
  663. UnitOfMeasure_A ,
  664. UnitOfMeasure_V ,
  665. UnitOfMeasure_Celsius ,
  666. UnitOfMeasure_Fahrenheit ,
  667. UnitOfMeasure_K ,
  668. UnitOfMeasure_Percent
  669. } UnitOfMeasure;
  670. static char * UnitOfMeasureStr[] = {
  671. MACROSTR(Wh),
  672. MACROSTR(kWh),
  673. MACROSTR(varh),
  674. MACROSTR(kvarh),
  675. MACROSTR(W),
  676. MACROSTR(kW),
  677. MACROSTR(VA),
  678. MACROSTR(kVA),
  679. MACROSTR(var),
  680. MACROSTR(kvar),
  681. MACROSTR(A),
  682. MACROSTR(V),
  683. MACROSTR(Celsius),
  684. MACROSTR(Fahrenheit),
  685. MACROSTR(K),
  686. MACROSTR(Percent)
  687. };
  688. /*Configuration enum*/
  689. enum CoreProfile {
  690. AllowOfflineTxForUnknownId=0,
  691. AuthorizationCacheEnabled,
  692. AuthorizeRemoteTxRequests,
  693. BlinkRepeat,
  694. ClockAlignedDataInterval,
  695. ConnectionTimeOut,
  696. GetConfigurationMaxKeys,
  697. HeartbeatInterval,
  698. LightIntensity,
  699. LocalAuthorizeOffline,
  700. LocalPreAuthorize,
  701. MaxEnergyOnInvalidId,
  702. MeterValuesAlignedData,
  703. MeterValuesAlignedDataMaxLength,
  704. MeterValuesSampledData,
  705. MeterValuesSampledDataMaxLength,
  706. MeterValueSampleInterval,
  707. MinimumStatusDuration,
  708. NumberOfConnectors,
  709. ResetRetries,
  710. ConnectorPhaseRotation,
  711. ConnectorPhaseRotationMaxLength,
  712. StopTransactionOnEVSideDisconnect,
  713. StopTransactionOnInvalidId,
  714. StopTxnAlignedData,
  715. StopTxnAlignedDataMaxLength,
  716. StopTxnSampledData,
  717. StopTxnSampledDataMaxLength,
  718. SupportedFeatureProfiles,
  719. SupportedFeatureProfilesMaxLength,
  720. TransactionMessageAttempts,
  721. TransactionMessageRetryInterval,
  722. UnlockConnectorOnEVSideDisconnect,
  723. WebSocketPingInterval,
  724. _CoreProfile_CNT
  725. };
  726. enum LocalAuthListManagementProfile{
  727. LocalAuthListEnabled=0,
  728. LocalAuthListMaxLength,
  729. SendLocalListMaxLength,
  730. _LocalAuthListManagementProfile_CNT
  731. };
  732. enum ReservationProfile{
  733. ReserveConnectorZeroSupported
  734. };
  735. enum SmartChargingProfile{
  736. ChargeProfileMaxStackLevel,
  737. ChargingScheduleAllowedChargingRateUnit,
  738. ChargingScheduleMaxPeriods,
  739. ConnectorSwitch3to1PhaseSupported,
  740. MaxChargingProfilesInstalled
  741. };
  742. enum ChargerSystemStatus{
  743. ChargerSystemStatus_Booting,
  744. ChargerSystemStatus_Idle,
  745. ChargerSystemStatus_Authorizing,
  746. ChargerSystemStatus_Preparing,
  747. ChargerSystemStatus_Charging,
  748. ChargerSystemStatus_Terminating,
  749. ChargerSystemStatus_Alarm,
  750. ChargerSystemStatus_Fault
  751. };
  752. enum GetConfigurationKey {
  753. GetConfiguration_AllowOfflineTxForUnknownId=0,
  754. GetConfiguration_AuthorizationCacheEnabled,
  755. GetConfiguration_AuthorizeRemoteTxRequests,
  756. GetConfiguration_BlinkRepeat,
  757. GetConfiguration_ClockAlignedDataInterval,
  758. GetConfiguration_ConnectionTimeOut,
  759. GetConfiguration_GetConfigurationMaxKeys,
  760. GetConfiguration_HeartbeatInterval,
  761. GetConfiguration_LightIntensity,
  762. GetConfiguration_LocalAuthorizeOffline,
  763. GetConfiguration_LocalPreAuthorize,
  764. GetConfiguration_MaxEnergyOnInvalidId,
  765. GetConfiguration_MeterValuesAlignedData,
  766. GetConfiguration_MeterValuesAlignedDataMaxLength,
  767. GetConfiguration_MeterValuesSampledData,
  768. GetConfiguration_MeterValuesSampledDataMaxLength,
  769. GetConfiguration_MeterValueSampleInterval,
  770. GetConfiguration_MinimumStatusDuration,
  771. GetConfiguration_NumberOfConnectors,
  772. GetConfiguration_ResetRetries,
  773. GetConfiguration_ConnectorPhaseRotation,
  774. GetConfiguration_ConnectorPhaseRotationMaxLength,
  775. GetConfiguration_StopTransactionOnEVSideDisconnect,
  776. GetConfiguration_StopTransactionOnInvalidId,
  777. GetConfiguration_StopTxnAlignedData,
  778. GetConfiguration_StopTxnAlignedDataMaxLength,
  779. GetConfiguration_StopTxnSampledData,
  780. GetConfiguration_StopTxnSampledDataMaxLength,
  781. GetConfiguration_SupportedFeatureProfiles,
  782. GetConfiguration_SupportedFeatureProfilesMaxLength,
  783. GetConfiguration_TransactionMessageAttempts,
  784. GetConfiguration_TransactionMessageRetryInterval,
  785. GetConfiguration_UnlockConnectorOnEVSideDisconnect,
  786. GetConfiguration_WebSocketPingInterval,
  787. GetConfiguration_LocalAuthListEnabled,
  788. GetConfiguration_LocalAuthListMaxLength,
  789. GetConfiguration_SendLocalListMaxLength,
  790. GetConfiguration_ReserveConnectorZeroSupported,
  791. GetConfiguration_ChargeProfileMaxStackLevel,
  792. GetConfiguration_ChargingScheduleAllowedChargingRateUnit,
  793. GetConfiguration_ChargingScheduleMaxPeriods,
  794. GetConfiguration_ConnectorSwitch3to1PhaseSupported,
  795. GetConfiguration_MaxChargingProfilesInstalled,
  796. };
  797. //GetConfiguration Array
  798. struct StructConfigurationKeyItems staticKeyArray[GetConfigurationMaxKeysNUM]={0};
  799. struct StructConfigurationKey staticResponseConfigurationKeyArray[GetConfigurationMaxKeysNUM]={0};
  800. struct StructConfigurationKeyItems staticResponseUnknownKey[10]={0};
  801. struct StructLocalAuthorizationList staticLocalAuthorizationList[500]={0};
  802. struct StructChargingSchedulePeriod staticCHAdeMOChargingSchedulePeriod[10]={0};
  803. struct StructChargingSchedulePeriod staticCCSChargingSchedulePeriod[10]={0};
  804. struct StructChargingSchedulePeriod staticGBChargingSchedulePeriod[10]={0};
  805. struct StructChargingSchedulePeriod staticACChargingSchedulePeriod[10]={0};
  806. struct StructChargingSchedulePeriod staticCHAdeMOCompositeChargingSchedulePeriod[10]={0};
  807. struct StructChargingSchedulePeriod staticCCSCompositeChargingSchedulePeriod[10]={0};
  808. struct StructChargingSchedulePeriod staticGBCompositeChargingSchedulePeriod[10]={0};
  809. struct StructChargingSchedulePeriod staticACCompositeChargingSchedulePeriod[10]={0};
  810. struct StructChargingSchedulePeriod staticCHAdeMORemoteStartTransactionChargingSchedulePeriod[10]={0};
  811. struct StructChargingSchedulePeriod staticCCSRemoteStartTransactionChargingSchedulePeriod[10]={0};
  812. struct StructChargingSchedulePeriod staticGBRemoteStartTransactionChargingSchedulePeriod[10]={0};
  813. struct StructChargingSchedulePeriod staticACRemoteStartTransactionChargingSchedulePeriod[10]={0};
  814. struct StructOCPPMeterValue staticCHAdeMOTransactionDataForMeterValueRequest={0};
  815. struct StructOCPPMeterValue staticCCSTransactionDataForMeterValueRequest={0};
  816. struct StructOCPPMeterValue staticGBTransactionDataForMeterValueRequest={0};
  817. struct StructOCPPMeterValue staticACTransactionDataForMeterValueRequest={0};
  818. struct StructOCPPMeterValue staticCHAdeMOTransactionDataForStopTransactionRequest[0];
  819. struct StructOCPPMeterValue staticCCSTransactionDataForStopTransactionRequest[0];
  820. struct StructOCPPMeterValue staticGBTransactionDataForStopTransactionRequest[0];
  821. struct StructOCPPMeterValue staticACTransactionDataForStopTransactionRequest[0];
  822. //==========================================
  823. // Init all share memory
  824. //==========================================
  825. int InitShareMemory()
  826. {
  827. int result = PASS;
  828. int MeterSMId;
  829. //printf("1\n");
  830. //creat ShmSysConfigAndInfo
  831. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  832. {
  833. #ifdef SystemLogMessage
  834. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  835. #endif
  836. result = FAIL;
  837. }
  838. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  839. {
  840. #ifdef SystemLogMessage
  841. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n");
  842. #endif
  843. result = FAIL;
  844. }
  845. else
  846. {}
  847. //printf("2\n");
  848. //creat ShmStatusCodeData
  849. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  850. {
  851. #ifdef SystemLogMessage
  852. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  853. #endif
  854. result = FAIL;
  855. }
  856. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  857. {
  858. #ifdef SystemLogMessage
  859. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  860. #endif
  861. result = FAIL;
  862. }
  863. else
  864. {}
  865. //printf("3\n");
  866. //creat ShmPsuData
  867. if ((MeterSMId = shmget(ShmPsuKey, sizeof(struct PsuData), 0777)) < 0)
  868. {
  869. #ifdef SystemLogMessage
  870. DEBUG_ERROR("shmget ShmPsuData NG\n");
  871. #endif
  872. result = FAIL;
  873. }
  874. else if ((ShmPsuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  875. {
  876. #ifdef SystemLogMessage
  877. DEBUG_ERROR("shmat ShmPsuData NG\n");
  878. #endif
  879. result = FAIL;
  880. }
  881. else
  882. {}
  883. //creat ShmOCPP16Data
  884. if ((MeterSMId = shmget(ShmOcppModuleKey, sizeof(struct OCPP16Data), 0777)) < 0)
  885. {
  886. #ifdef SystemLogMessage
  887. DEBUG_ERROR("shmget ShmOCPP16Data NG");
  888. #endif
  889. result = FAIL;
  890. }
  891. else if ((ShmOCPP16Data = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  892. {
  893. #ifdef SystemLogMessage
  894. DEBUG_ERROR("shmat ShmOCPP16Data NG");
  895. #endif
  896. result = FAIL;
  897. }
  898. else
  899. {}
  900. /****************************** For TEST ************************************************/
  901. //inital settings
  902. gunTotalNumber = (strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL) ? (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY): AC_QUANTITY;
  903. memset(ShmOCPP16Data->StatusNotification,0,sizeof(struct StructStatusNotification)*gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/);
  904. for(int gun_index=0; gun_index < gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/; gun_index++ )
  905. {
  906. cpinitateMsg.bits[gun_index].StatusNotificationReq = 0;
  907. cpinitateMsg.bits[gun_index].StatusNotificationConf = 0;
  908. clientTime.MeterValues[gun_index] = time((time_t*)NULL);
  909. }
  910. // Charger PRE_SYS_MODE
  911. memset(PRE_SYS_MODE, 0, sizeof(PRE_SYS_MODE));
  912. memset( (void *)unknownkey, 0, sizeof(unknownkey)/*sizeof(char)*10*20*/ );
  913. clientTime.Heartbeat=time((time_t*)NULL);
  914. for(int gun_index=0;gun_index < gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/ ;gun_index++)
  915. {
  916. clientTime.StatusNotification[gun_index] = time((time_t*)NULL);
  917. clientTime.MeterValues[gun_index] = time((time_t*)NULL);
  918. strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode, "NoError");
  919. }
  920. //HeartBeatWaitTime = 10;
  921. ShmOCPP16Data->GetConfiguration.ResponseUnknownKey = NULL;
  922. ShmOCPP16Data->SendLocalList.LocalAuthorizationList = NULL;
  923. // allocate Configuration memory address
  924. ShmOCPP16Data->GetConfiguration.Key = staticKeyArray;
  925. ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey = staticResponseConfigurationKeyArray;
  926. ShmOCPP16Data->GetConfiguration.ResponseUnknownKey = staticResponseUnknownKey;
  927. ShmOCPP16Data->SendLocalList.LocalAuthorizationList = staticLocalAuthorizationList;
  928. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  929. {
  930. if(CHAdeMO_QUANTITY != 0)
  931. {
  932. int index = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].Index;
  933. ShmOCPP16Data->SetChargingProfile[index].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod = staticCHAdeMOChargingSchedulePeriod;
  934. ShmOCPP16Data->GetCompositeSchedule[index].ResponseChargingSchedule.ChargingSchedulePeriod = staticCHAdeMOCompositeChargingSchedulePeriod;
  935. ShmOCPP16Data->RemoteStartTransaction[index].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod = staticCHAdeMORemoteStartTransactionChargingSchedulePeriod;
  936. //ShmOCPP16Data->StopTransaction[index].TransactionData = (struct StructMeterValue *)&staticCHAdeMOTransactionDataForStopTransactionRequest;
  937. //ShmOCPP16Data->StopTransaction[index].TransactionData[0].SampledValue = staticCHAdeMOTransactionDataForStopTransactionRequest[0].SampledValue;
  938. }
  939. if(CCS_QUANTITY != 0)
  940. {
  941. int index = ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].Index;
  942. ShmOCPP16Data->SetChargingProfile[index].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod = staticCCSChargingSchedulePeriod;
  943. ShmOCPP16Data->GetCompositeSchedule[index].ResponseChargingSchedule.ChargingSchedulePeriod = staticCCSCompositeChargingSchedulePeriod;
  944. ShmOCPP16Data->RemoteStartTransaction[index].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod = staticCCSRemoteStartTransactionChargingSchedulePeriod;
  945. //ShmOCPP16Data->StopTransaction[index].TransactionData = (struct StructMeterValue *)&staticCCSTransactionDataForStopTransactionRequest;
  946. //ShmOCPP16Data->StopTransaction[index].TransactionData[0].SampledValue = staticCCSTransactionDataForStopTransactionRequest[0].SampledValue;
  947. }
  948. if(GB_QUANTITY != 0)
  949. {
  950. int index = ShmSysConfigAndInfo->SysInfo.GbChargingData[0].Index;
  951. ShmOCPP16Data->SetChargingProfile[index].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod = staticGBChargingSchedulePeriod;
  952. ShmOCPP16Data->GetCompositeSchedule[index].ResponseChargingSchedule.ChargingSchedulePeriod = staticGBCompositeChargingSchedulePeriod;
  953. ShmOCPP16Data->RemoteStartTransaction[index].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod = staticGBRemoteStartTransactionChargingSchedulePeriod;
  954. //ShmOCPP16Data->StopTransaction[index].TransactionData = (struct StructMeterValue *)&staticGBTransactionDataForStopTransactionRequest;
  955. //ShmOCPP16Data->StopTransaction[index].TransactionData[0].SampledValue = staticGBTransactionDataForStopTransactionRequest[0].SampledValue;
  956. }
  957. SystemInitial = CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY;
  958. DEBUG_INFO("DC ...\n");
  959. }
  960. else
  961. {
  962. if(AC_QUANTITY)
  963. {
  964. int index = ShmSysConfigAndInfo->SysInfo.AcChargingData[0].Index;
  965. ShmOCPP16Data->SetChargingProfile[index].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod = staticACChargingSchedulePeriod;
  966. ShmOCPP16Data->GetCompositeSchedule[index].ResponseChargingSchedule.ChargingSchedulePeriod = staticACCompositeChargingSchedulePeriod;
  967. ShmOCPP16Data->RemoteStartTransaction[index].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod = staticACRemoteStartTransactionChargingSchedulePeriod;
  968. //ShmOCPP16Data->StopTransaction[index].TransactionData = (struct StructMeterValue *)&staticACTransactionDataForStopTransactionRequest;
  969. //ShmOCPP16Data->StopTransaction[index].TransactionData[0].SampledValue = staticACTransactionDataForStopTransactionRequest[0].SampledValue;
  970. }
  971. SystemInitial = AC_QUANTITY;
  972. DEBUG_INFO("AC ...\n");
  973. DEBUG_INFO("gunTotalNumber=%d\n",gunTotalNumber);
  974. }
  975. //Status Setting
  976. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  977. {
  978. ChademoPreviousSystemStatus[index]= ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PreviousSystemStatus;
  979. }
  980. for (int index = 0; index < CCS_QUANTITY; index++)
  981. {
  982. CcsPreviousSystemStatus[index]= ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PreviousSystemStatus;
  983. }
  984. for (int index = 0; index < GB_QUANTITY; index++)
  985. {
  986. GbPreviousSystemStatus[index]= ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PreviousSystemStatus;
  987. }
  988. for (int index = 0; index < AC_QUANTITY; index++)
  989. {
  990. AcPreviousSystemStatus[index]= ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PreviousSystemStatus;
  991. }
  992. //memset(unknownkey, 0, 10);
  993. return result;
  994. }
  995. int ProcessShareMemory()
  996. {
  997. if(InitShareMemory() == FAIL)
  998. {
  999. #ifdef SystemLogMessage
  1000. DEBUG_ERROR("InitShareMemory NG\n");
  1001. #endif
  1002. if(ShmStatusCodeData!=NULL)
  1003. {
  1004. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=1;
  1005. }
  1006. sleep(5);
  1007. return FAIL;
  1008. }
  1009. return PASS;
  1010. }
  1011. //---------------------------------------------
  1012. // new:
  1013. // enum SYSTEM_STATUS
  1014. // {
  1015. // SYS_MODE_BOOTING = 0,
  1016. // SYS_MODE_IDLE = 1,
  1017. // SYS_MODE_AUTHORIZING = 2,
  1018. // SYS_MODE_PREPARING = 3,
  1019. // SYS_MODE_CHARGING = 4,
  1020. // SYS_MODE_TERMINATING = 5,
  1021. // SYS_MODE_ALARM = 6,
  1022. // SYS_MODE_FAULT = 7,
  1023. // SYS_MODE_RESERVATION = 8,
  1024. // SYS_MODE_BOOKING = 9,
  1025. // SYS_MODE_MAINTAIN = 10,
  1026. // SYS_MODE_DEBUG = 11,
  1027. // SYS_MODE_REASSIGN_CHECK = 12,
  1028. // SYS_MODE_REASSIGN = 13,
  1029. // SYS_MODE_PRECHARGE = 14,
  1030. // SYS_MODE_PREPARING_EV = 15,
  1031. // SYS_MODE_PREPARING_EVSE = 16,
  1032. // SYS_MODE_COMPLETE = 17
  1033. // };
  1034. //
  1035. // old:
  1036. // enum _SYSTEM_STATUS
  1037. // {
  1038. // S_BOOTING = 0,
  1039. // S_IDLE, =1
  1040. // S_AUTHORIZING, =2
  1041. // S_REASSIGN_CHECK, =3
  1042. // S_REASSIGN, =4
  1043. // S_PRECHARGE, =5
  1044. // S_PREPARING_FOR_EV, =6
  1045. // S_PREPARING_FOR_EVSE, =7
  1046. // S_CHARGING, =8
  1047. // S_TERMINATING, =9
  1048. // S_COMPLETE, =10
  1049. // S_ALARM, =11
  1050. // S_FAULT =12
  1051. // };
  1052. //
  1053. //-----------------------------------------
  1054. void CheckSystemValue(void)
  1055. {
  1056. int meterValueSend[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY]={0};
  1057. int IdleModeCnt = 0;
  1058. char filenmae[100]={0};
  1059. char str[100]={0};
  1060. //===============================
  1061. // send Heartbeat
  1062. //===============================
  1063. if((server_sign == TRUE) && (difftime(time((time_t*)NULL), clientTime.Heartbeat) >= HeartBeatWaitTime)/*((time((time_t*)NULL)-clientTime.Heartbeat)>= ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval)*/)
  1064. {
  1065. //parameter for test
  1066. sendHeartbeatRequest(0);
  1067. //==============================================
  1068. // Reset Waiting Time
  1069. //==============================================
  1070. clientTime.Heartbeat=time((time_t*)NULL);
  1071. }
  1072. //==============================================
  1073. // Update firmware request
  1074. //==============================================
  1075. if(isUpdateRequest == TRUE )
  1076. {
  1077. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  1078. {
  1079. for(int gun_index=0;gun_index < (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY) ;gun_index++)
  1080. {
  1081. //check SystemStatus
  1082. /*************************DC*******************************/
  1083. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1084. {
  1085. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE)) //S_IDLE
  1086. {
  1087. IdleModeCnt = IdleModeCnt + 1;
  1088. }
  1089. }
  1090. for (int index = 0; index < CCS_QUANTITY; index++)
  1091. {
  1092. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE)) //S_IDLE
  1093. {
  1094. IdleModeCnt = IdleModeCnt + 1;
  1095. }
  1096. }
  1097. for (int index = 0; index < GB_QUANTITY; index++)
  1098. {
  1099. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 1)) //S_IDLE
  1100. {
  1101. IdleModeCnt = IdleModeCnt + 1;
  1102. }
  1103. }
  1104. }
  1105. if(IdleModeCnt == (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY ))
  1106. {
  1107. //sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Installing]);
  1108. isUpdateRequest = FALSE;
  1109. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1; // trigger firmware upgrade
  1110. }
  1111. }
  1112. else
  1113. {
  1114. /*************************AC*******************************/
  1115. for (int index = 0; index < AC_QUANTITY; index++)
  1116. {
  1117. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 1) //S_IDLE
  1118. {
  1119. IdleModeCnt = IdleModeCnt + 1;
  1120. }
  1121. }
  1122. if(IdleModeCnt == AC_QUANTITY)
  1123. {
  1124. //sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Installing]);
  1125. isUpdateRequest = FALSE;
  1126. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1; // trigger firmware upgrade
  1127. }
  1128. }
  1129. }
  1130. //DEBUG_INFO("\n gunTotalNumber=%d\n",gunTotalNumber);
  1131. for(int gun_index=0;gun_index < gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY )*/ ;gun_index++)
  1132. {
  1133. //===============================
  1134. // CSU Trigger Reset Conf
  1135. //===============================
  1136. if((server_sign == TRUE) &&(ShmOCPP16Data->MsMsg.bits.ResetConf == 1))
  1137. {
  1138. sendResetConfirmation((char *)ShmOCPP16Data->Reset.guid, (char *)ShmOCPP16Data->Reset.ResponseStatus);
  1139. if(strcmp((const char *)ShmOCPP16Data->Reset.Type, "Soft") == 0)
  1140. {
  1141. server_sign = FALSE;
  1142. }
  1143. }
  1144. //===============================
  1145. // CSU Trigger Authorize Request
  1146. //===============================
  1147. if((server_sign == TRUE) && (ShmOCPP16Data->SpMsg.bits.AuthorizeReq == 1)&&(authorizeRetryTimes < 3)/*authenrequest == FALSE*/)
  1148. {
  1149. if(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "TRUE") == 0)// [If AuthorizeRemoteTxRequests = true
  1150. {
  1151. sendAuthorizeRequest(0);
  1152. authorizeRetryTimes = authorizeRetryTimes + 1;
  1153. // authenrequest = TRUE
  1154. if(authorizeRetryTimes < 3)
  1155. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  1156. }
  1157. }
  1158. else if((server_sign == TRUE) && (ShmOCPP16Data->SpMsg.bits.AuthorizeReq == 1)&&(authorizeRetryTimes >= 3))
  1159. {
  1160. authorizeRetryTimes = 0;
  1161. ShmOCPP16Data->OcppConnStatus = 0; // ocpp offline
  1162. server_sign = FALSE;
  1163. }
  1164. //==============================================
  1165. // Charger start transaction
  1166. //==============================================
  1167. if((server_sign == TRUE) && (ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq == 1))
  1168. {
  1169. sendStartTransactionRequest(gun_index);
  1170. ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq =0;
  1171. clientTime.StartTransaction = time((time_t*)NULL);
  1172. clientTime.MeterValues[gun_index] = time((time_t*)NULL);
  1173. }
  1174. //==============================================
  1175. // Charger stop transaction
  1176. //==============================================
  1177. if((server_sign == TRUE) && ((ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq == 1)))
  1178. {
  1179. sendStopTransactionRequest(gun_index);
  1180. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq =0;
  1181. clientTime.StopTransaction = time((time_t*)NULL);
  1182. }
  1183. //==============================================
  1184. // Charger status report
  1185. //==============================================
  1186. /* Check Mode Change */
  1187. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  1188. {
  1189. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1190. {
  1191. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  1192. {
  1193. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != ChademoPreviousSystemStatus[index]/*PRE_SYS_MODE[gun_index]*/ )
  1194. {
  1195. PRE_SYS_MODE[gun_index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus;
  1196. ChademoPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus;
  1197. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  1198. statusModeChage[gun_index] = TRUE;
  1199. }
  1200. }
  1201. }
  1202. for (int index = 0; index < CCS_QUANTITY; index++)
  1203. {
  1204. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  1205. {
  1206. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != CcsPreviousSystemStatus[index]/*PRE_SYS_MODE[gun_index]*/ )
  1207. {
  1208. PRE_SYS_MODE[gun_index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus;
  1209. CcsPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus;
  1210. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  1211. statusModeChage[gun_index] = TRUE;
  1212. }
  1213. }
  1214. }
  1215. for (int index = 0; index < GB_QUANTITY; index++)
  1216. {
  1217. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)/*&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '4')*/)
  1218. {
  1219. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != GbPreviousSystemStatus[index]/*PRE_SYS_MODE[gun_index]*/ )
  1220. {
  1221. PRE_SYS_MODE[gun_index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus;
  1222. GbPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus;
  1223. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  1224. statusModeChage[gun_index] = TRUE;
  1225. }
  1226. }
  1227. }
  1228. }
  1229. else //AC
  1230. {
  1231. for (int index = 0; index < AC_QUANTITY; index++)
  1232. {
  1233. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  1234. {
  1235. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != AcPreviousSystemStatus[index]/*PRE_SYS_MODE[gun_index]*/ )
  1236. {
  1237. PRE_SYS_MODE[gun_index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus;
  1238. AcPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus;
  1239. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  1240. statusModeChage[gun_index] = TRUE;
  1241. }
  1242. }
  1243. }// END OF FOR
  1244. }// END OF ELSE
  1245. if(((SystemInitial != 0)&& (server_sign == TRUE))||
  1246. ((server_sign == TRUE) && ((statusModeChage[gun_index] == TRUE) ||
  1247. ((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > (server_cycle_Status + (GunStatusInterval*gun_index)))
  1248. || ((cpinitateMsg.bits[gun_index].StatusNotificationReq == 1)&&((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > 30)))))
  1249. {
  1250. if(SystemInitial != 0)
  1251. SystemInitial = SystemInitial -1;
  1252. //GunStatusInterval= GunStatusInterval* gun_index;
  1253. sendStatusNotificationRequest(gun_index);
  1254. clientTime.StatusNotification[gun_index] = time((time_t*)NULL);
  1255. //cpinitateMsg.bits[gun_index].StatusNotificationReq = 0;
  1256. statusModeChage[gun_index] = FALSE;
  1257. //sleep(30); // sleep for 30 seconds
  1258. }
  1259. //==============================================
  1260. // Meter report
  1261. //==============================================
  1262. if((server_sign == TRUE) && ((time((time_t*)NULL) - clientTime.MeterValues[gun_index])> (atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData)- 1 ) ) )
  1263. {
  1264. //check Transaction active
  1265. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  1266. {
  1267. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1268. {
  1269. // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  1270. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING))
  1271. {
  1272. meterValueSend[gun_index] =1;
  1273. }
  1274. if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // complete
  1275. {
  1276. sprintf(filenmae,"../Storage/OCPP/TxProfile_%d.json",(gun_index+1));
  1277. if((access(filenmae,F_OK))!=-1)
  1278. {
  1279. DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n");
  1280. sprintf(str,"rm -f %s",filenmae);
  1281. system(str);
  1282. }
  1283. }
  1284. }// End for CHAdeMO
  1285. for (int index = 0; index < CCS_QUANTITY; index++)
  1286. {
  1287. // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  1288. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING))
  1289. {
  1290. meterValueSend[gun_index] =1;
  1291. }
  1292. if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // complete
  1293. {
  1294. sprintf(filenmae,"../Storage/OCPP/TxProfile_%d.json",(gun_index+1));
  1295. if((access(filenmae,F_OK))!=-1)
  1296. {
  1297. DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n");
  1298. sprintf(str,"rm -f %s",filenmae);
  1299. system(str);
  1300. }
  1301. }
  1302. } // End for CCS
  1303. for (int index = 0; index < GB_QUANTITY; index++)
  1304. {
  1305. // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  1306. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING))
  1307. {
  1308. meterValueSend[gun_index] =1;
  1309. }
  1310. if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // complete
  1311. {
  1312. sprintf(filenmae,"../Storage/OCPP/TxProfile_%d.json",(gun_index+1));
  1313. if((access(filenmae,F_OK))!=-1)
  1314. {
  1315. DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n");
  1316. sprintf(str,"rm -f %s",filenmae);
  1317. system(str);
  1318. }
  1319. }
  1320. }// End for GB
  1321. }
  1322. else
  1323. {
  1324. for (int index = 0; index < AC_QUANTITY; index++)
  1325. {
  1326. // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  1327. if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING))
  1328. {
  1329. meterValueSend[gun_index] =1;
  1330. }
  1331. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // complete
  1332. {
  1333. sprintf(filenmae,"../Storage/OCPP/TxProfile_%d.json",(gun_index+1));
  1334. if((access(filenmae,F_OK))!=-1)
  1335. {
  1336. DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n");
  1337. sprintf(str,"rm -f %s",filenmae);
  1338. system(str);
  1339. }
  1340. }
  1341. }//End for AC
  1342. }//END OF ELSE
  1343. // sleep(1);
  1344. clientTime.MeterValues[gun_index] = time((time_t*)NULL);
  1345. if(meterValueSend[gun_index] == 1)
  1346. sendMeterValuesRequest(gun_index);
  1347. }
  1348. //==============================================
  1349. // Check Connector reserved
  1350. //==============================================
  1351. //===============================
  1352. // Check if Reserve is expired
  1353. //===============================
  1354. if((server_sign == TRUE) && (ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate[0] != 0) )
  1355. {
  1356. double diff_t;
  1357. struct tm tp;
  1358. // current time
  1359. time_t t = time(NULL);
  1360. // sprintf((char *)ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate, "%s", "2018-09-20T02:56:54.973Z");
  1361. strptime((char *)ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate, "%Y-%m-%dT%H:%M:%S", &tp);
  1362. tp.tm_isdst = -1;
  1363. time_t utc = mktime(&tp);
  1364. diff_t = difftime(utc, t);
  1365. //DEBUG_INFO("diff_t=%f\n",diff_t);
  1366. if(diff_t <= 0)
  1367. {
  1368. DEBUG_INFO("reserve expired !!! \n");
  1369. memset(ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate,0,sizeof(ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate));
  1370. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1371. }
  1372. else if((ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionConf == 1) &&
  1373. (ShmOCPP16Data->StartTransaction[gun_index].ReservationId == ShmOCPP16Data->ReserveNow[gun_index].ReservationId)&&
  1374. (strcmp((const char *)ShmOCPP16Data->StartTransaction[gun_index].IdTag,(const char *)ShmOCPP16Data->ReserveNow[gun_index].IdTag) ==0))
  1375. {
  1376. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1377. }
  1378. else
  1379. {
  1380. //check Transaction active
  1381. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  1382. {
  1383. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1384. {
  1385. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  1386. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index) &&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId !=0))
  1387. {
  1388. //if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '7') || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9') )
  1389. if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT) ) // S_ALARM, S_FAULT
  1390. {
  1391. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1392. }
  1393. }
  1394. }
  1395. for (int index = 0; index < CCS_QUANTITY; index++)
  1396. {
  1397. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  1398. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId !=0))
  1399. {
  1400. //if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '7') || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '9') )
  1401. if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_FAULT) ) // S_ALARM, S_FAULT
  1402. {
  1403. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1404. }
  1405. }
  1406. }
  1407. for (int index = 0; index < GB_QUANTITY; index++)
  1408. {
  1409. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  1410. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId !=0) )
  1411. {
  1412. //if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '7') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '9') )
  1413. if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_FAULT) ) // S_ALARM, S_FAULT
  1414. {
  1415. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1416. }
  1417. }
  1418. }
  1419. }
  1420. else //AC
  1421. {
  1422. for (int index = 0; index < AC_QUANTITY; index++)
  1423. {
  1424. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  1425. if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index) &&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId !=0))
  1426. {
  1427. //if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '7') || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9') )
  1428. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT) ) // S_ALARM, S_FAULT
  1429. {
  1430. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1431. }
  1432. }
  1433. }
  1434. }// END OF ELSE
  1435. }// END OF check Transaction active
  1436. }//END OF Check if Reserve is expired
  1437. //==========================================
  1438. // csu trigger FirmwareStatusNotificationReq
  1439. //==========================================
  1440. if((server_sign == TRUE) && (ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq == 1))
  1441. {
  1442. sendFirmwareStatusNotificationRequest((char *)ShmOCPP16Data->FirmwareStatusNotification.Status);
  1443. }
  1444. //==========================================
  1445. // csu trigger CancelReservationConf
  1446. //==========================================
  1447. if((server_sign == TRUE) && (ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationConf == 1))
  1448. {
  1449. //sendCancelReservationConfirmation(uuid, comfirmstr);
  1450. sendCancelReservationConfirmation((char *)ShmOCPP16Data->CancelReservation[gun_index].guid,(char *)ShmOCPP16Data->CancelReservation[gun_index].ResponseStatus);
  1451. }
  1452. //==========================================
  1453. // csu trigger ChangeAvailabilityConf
  1454. //==========================================
  1455. if((server_sign == TRUE) && (ShmOCPP16Data->CsMsg.bits[gun_index].ChangeAvailabilityConf == 1))
  1456. {
  1457. //sendChangeAvailabilityConfirmation(,(char *)ShmOCPP16Data->ChangeAvailability[gun_index].ResponseStatus);
  1458. }
  1459. //==========================================
  1460. // csu trigger UnlockConnectorConf
  1461. //==========================================
  1462. if((server_sign == TRUE) && (ShmOCPP16Data->CsMsg.bits[gun_index].UnlockConnectorConf == 1))
  1463. {
  1464. sendUnlockConnectorConfirmation((char *)ShmOCPP16Data->UnlockConnector[gun_index].guid, (char *)ShmOCPP16Data->UnlockConnector[gun_index].ResponseStatus);
  1465. ShmOCPP16Data->CsMsg.bits[gun_index].UnlockConnectorConf = 0;
  1466. }
  1467. //==========================================
  1468. // csu trigger ReserveNowConf
  1469. //==========================================
  1470. if((server_sign == TRUE) &&(ShmOCPP16Data->CsMsg.bits[gun_index].ReserveNowConf == 1))
  1471. {
  1472. sendReserveNowTransactionConfirmation((char *)ShmOCPP16Data->ReserveNow[gun_index].guid, (char *)ShmOCPP16Data->ReserveNow[gun_index].ResponseStatus);
  1473. ShmOCPP16Data->CsMsg.bits[gun_index].ReserveNowConf = 0;
  1474. }
  1475. //==========================================
  1476. // csu trigger DataTransferReq
  1477. //==========================================
  1478. if((server_sign == TRUE) &&(ShmOCPP16Data->CsMsg.bits[gun_index].DataTransferReq == 1))
  1479. {
  1480. sendDataTransferRequest(gun_index);
  1481. ShmOCPP16Data->CsMsg.bits[gun_index].DataTransferReq = 0;
  1482. }
  1483. }
  1484. }
  1485. //==========================================
  1486. // send request routine
  1487. //==========================================
  1488. int sendAuthorizeRequest(int gun_index)
  1489. {
  1490. mtrace();
  1491. int result = FAIL;
  1492. char message[100]={0};
  1493. char guid[37];
  1494. char tempdata[65]={0};
  1495. DEBUG_INFO("sendAuthorizeRequest \n");
  1496. //Local Authorize
  1497. if((strcmp((const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE") == 0)&&(ShmOCPP16Data->OcppConnStatus ==0))
  1498. {
  1499. OCPP_getIdTag((char *)ShmSysConfigAndInfo->SysConfig.UserId);
  1500. if((strcmp(idTagQuery.idTagstr,"") == 0) || (strcmp(idTagQuery.idTagstatus,"Accepted") != 0) )
  1501. {
  1502. DEBUG_INFO("Local Authorization Fail !!!!\n");
  1503. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate, "");
  1504. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId);
  1505. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, "Invalid");
  1506. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  1507. ShmOCPP16Data->SpMsg.bits.AuthorizeConf = 1; // inform csu
  1508. authorizeRetryTimes = 0;
  1509. return result;
  1510. }
  1511. else
  1512. {
  1513. DEBUG_INFO("Local Authorization Pass !!!!\n");
  1514. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate, idTagQuery.expiryDate);
  1515. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId);
  1516. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, idTagQuery.idTagstatus);
  1517. result = PASS;
  1518. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  1519. ShmOCPP16Data->SpMsg.bits.AuthorizeConf = 1; // inform csu
  1520. authorizeRetryTimes = 0;
  1521. return result;
  1522. }
  1523. }
  1524. //initailize struct Authorize
  1525. memset(&(ShmOCPP16Data->Authorize), 0 , sizeof(struct StructAuthorize));
  1526. //get data from shared memory
  1527. strcpy((char *)ShmOCPP16Data->Authorize.IdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId);
  1528. random_uuid(guid);
  1529. sprintf(message,"[ %d, \"%s\", \"Authorize\", { \"idTag\": \"%s\" } ]",MESSAGE_TYPE_CALL, guid, ShmOCPP16Data->Authorize.IdTag);
  1530. LWS_Send(message);
  1531. sprintf(tempdata, "Authorize,%d", gun_index);
  1532. if(hashmap_operation(0, guid, tempdata) == 1)
  1533. {
  1534. result = PASS;
  1535. DEBUG_ERROR("Authorize mapItem pass\n");
  1536. }
  1537. //#ifdef SystemLogMessage
  1538. //DEBUG_INFO(">>>>>Authorize request\n");
  1539. //DEBUG_INFO("Message: %s\n", SendBuffer);
  1540. //DEBUG_INFO("After push hash length: %d\n", hashmapForMessageLength()/*hashmap_length(hashMap)*/);
  1541. //#endif
  1542. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  1543. return result;
  1544. }
  1545. int sendBootNotificationRequest(void)
  1546. {
  1547. mtrace();
  1548. int result = FAIL;
  1549. char message[500]={0}, payload[700]={0};
  1550. char guid[37]={0};
  1551. char tempdata[65]={0};
  1552. int IsGunCharging = FALSE;
  1553. //check Transaction active
  1554. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  1555. {
  1556. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1557. {
  1558. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) //S_CHARGING
  1559. {
  1560. IsGunCharging = TRUE;
  1561. }
  1562. }
  1563. for (int index = 0; index < CCS_QUANTITY; index++)
  1564. {
  1565. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) //S_CHARGING
  1566. {
  1567. IsGunCharging = TRUE;
  1568. }
  1569. }
  1570. for (int index = 0; index < GB_QUANTITY; index++)
  1571. {
  1572. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) //S_CHARGING
  1573. {
  1574. IsGunCharging = TRUE;
  1575. }
  1576. }
  1577. }
  1578. else
  1579. {
  1580. for (int index = 0; index < AC_QUANTITY; index++)
  1581. {
  1582. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) //S_CHARGING
  1583. {
  1584. IsGunCharging = TRUE;
  1585. }
  1586. }
  1587. }
  1588. if(IsGunCharging == TRUE)
  1589. {
  1590. server_sign = TRUE;
  1591. return result;
  1592. }
  1593. // Fill BootNotification fields
  1594. strcpy((char *)ShmOCPP16Data->BootNotification.CbSN,(const char *)ShmOCPP16Data->ChargeBoxId);
  1595. strcpy((char *)ShmOCPP16Data->BootNotification.CpModel,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName);
  1596. strcpy((char *)ShmOCPP16Data->BootNotification.CpSN,(const char *)ShmSysConfigAndInfo->SysConfig.SerialNumber);
  1597. strcpy((char *)ShmOCPP16Data->BootNotification.CpVendor,(const char *)ShmSysConfigAndInfo->SysConfig.chargePointVendor);
  1598. sprintf(payload, "{ \"chargeBoxSerialNumber\": \"%s\", \"chargePointModel\": \"%s\", \"chargePointSerialNumber\": \"%s\", \"chargePointVendor\": \"%s\", \"firmwareVersion\": \"%s\", \"iccid\": \"%s\", \"imsi\": \"%s\", \"meterSerialNumber\": \"%s\", \"meterType\": \"%s\"} ",
  1599. ShmOCPP16Data->ChargeBoxId
  1600. ,ShmSysConfigAndInfo->SysConfig.ModelName
  1601. ,ShmSysConfigAndInfo->SysConfig.SerialNumber
  1602. ,ShmSysConfigAndInfo->SysConfig.chargePointVendor
  1603. ,ShmOCPP16Data->BootNotification.CpFwVersion
  1604. ,ShmOCPP16Data->BootNotification.CpIccid
  1605. ,ShmOCPP16Data->BootNotification.CpImsi
  1606. ,ShmOCPP16Data->BootNotification.CpMeterSerialNumber
  1607. ,ShmOCPP16Data->BootNotification.CpMeterType);
  1608. random_uuid(guid);
  1609. sprintf(message,"[ %d, \"%s\", \"%s\", %s ]",MESSAGE_TYPE_CALL, guid, "BootNotification", payload);
  1610. LWS_Send(message);
  1611. sprintf(tempdata, "BootNotification,0");
  1612. if(hashmap_operation(0, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, guid,mapItem, tempdata/*(void**)(&mapItem)*//*(void**)(&mapItem)*/) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
  1613. {
  1614. result = PASS;
  1615. }
  1616. memset(queuedata, 0, sizeof(queuedata));
  1617. strcpy(queuedata,message);
  1618. //#ifdef SystemLogMessage
  1619. //DEBUG_INFO(">>>>>BootNotification request\n");
  1620. //DEBUG_INFO("Message: %s\n", SendBuffer);
  1621. //#endif
  1622. return result;
  1623. }
  1624. int sendDataTransferRequest(int gun_index)
  1625. {
  1626. mtrace();
  1627. char message[1000]={0};
  1628. char guid[37]={0};
  1629. char tempdata[65]={0};
  1630. int result = FAIL;
  1631. //[2,"696e8a35-f394-45e3-a0c7-7098b86f38a6","DataTransfer",{"vendorId":"Phihong","messageId":"FeePerKWH","data":"1"}]
  1632. random_uuid(guid);
  1633. sprintf(message,"[%d,\"%s\",\"DataTransfer\",{\"vendorId\":\"%s\",\"messageId\":\"%s\",\"data\":\"%s\"}]",
  1634. MESSAGE_TYPE_CALL,
  1635. guid,
  1636. ShmOCPP16Data->DataTransfer[gun_index].VendorId,
  1637. ShmOCPP16Data->DataTransfer[gun_index].MessageId,
  1638. ShmOCPP16Data->DataTransfer[gun_index].Data);
  1639. LWS_Send(message);
  1640. sprintf(tempdata, "DataTransfer,%d", (gun_index + 1));
  1641. if(hashmap_operation(0, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, mapItem[0].key_string, mapItem[0].key_value/*mapItem*/, (void**)(&mapItem)/*(void**)(&mapItem)*/) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
  1642. {
  1643. result = PASS;
  1644. DEBUG_ERROR("DataTransfer mapItem pass\n");
  1645. }
  1646. //#ifdef SystemLogMessage
  1647. //DEBUG_INFO(">>>>>DataTransfer request\n");
  1648. //DEBUG_INFO("Message: %s\n", SendBuffer);
  1649. //#endif
  1650. return result;
  1651. }
  1652. int sendDiagnosticsStatusNotificationRequest(char *status)
  1653. {
  1654. mtrace();
  1655. int result = FAIL;
  1656. char message[110]={0};
  1657. char guid[37]={0};
  1658. char tempdata[65]={0};
  1659. //[ 2, "9f7bced1-b8b1-40ec-b3bb-2e15630e3cdc", "DiagnosticsStatusNotification", { "status": "Idle" } ]
  1660. DEBUG_INFO("sendDiagnosticsStatusNotificationRequest \n");
  1661. sprintf((char *)ShmOCPP16Data->DiagnosticsStatusNotification.Status,"%s",(const char *)status);
  1662. random_uuid(guid);
  1663. sprintf(message,"[%d,\"%s\",\"DiagnosticsStatusNotification\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALL, guid,status);
  1664. LWS_Send(message);
  1665. sprintf(tempdata, "DiagnosticsStatusNotification,%d", 0);
  1666. if(hashmap_operation(0, guid, tempdata) == 1)
  1667. {
  1668. result = PASS;
  1669. //DEBUG_INFO("DiagnosticsStatusNotification mapItem pass\n");
  1670. }
  1671. //#ifdef SystemLogMessage
  1672. //DEBUG_INFO(">>>>>DiagnosticsStatusNotification request\n");
  1673. //DEBUG_INFO("Message: %s\n", SendBuffer);
  1674. //DEBUG_INFO("After push hash length: %d\n", hashmapForMessageLength()/*hashmap_length(hashMap)*/);
  1675. //#endif
  1676. ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 0;
  1677. ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationConf = 0;
  1678. //record status
  1679. if(strcmp(status,"Idle")==0)
  1680. {
  1681. DiagnosticsStatusNotificationStatus = 0;
  1682. }
  1683. else if(strcmp(status,"Uploaded")==0)
  1684. {
  1685. DiagnosticsStatusNotificationStatus = 1;
  1686. }
  1687. else if(strcmp(status,"UploadFailed")==0)
  1688. {
  1689. DiagnosticsStatusNotificationStatus = 2;
  1690. }
  1691. else if(strcmp(status,"Uploading")==0)
  1692. {
  1693. DiagnosticsStatusNotificationStatus = 3;
  1694. }
  1695. return result;
  1696. }
  1697. int sendFirmwareStatusNotificationRequest(char *status)
  1698. {
  1699. mtrace();
  1700. int result = FAIL;
  1701. char message[110]={0};
  1702. char guid[37]={0};
  1703. char tempdata[65]={0};
  1704. // [ 2, "eb841424-ae56-42b0-8c84-d5296018c33c", "FirmwareStatusNotification", { "status": "Downloaded" } ]
  1705. DEBUG_INFO("sendFirmwareStatusNotificationRequest \n");
  1706. sprintf((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s", (const char *)status);
  1707. random_uuid(guid);
  1708. sprintf(message,"[%d,\"%s\",\"FirmwareStatusNotification\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALL, guid, status);
  1709. LWS_Send(message);
  1710. sprintf(tempdata, "FirmwareStatusNotification,%d", 0);
  1711. if(hashmap_operation(0, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, mapItem[0].key_string, mapItem[0].key_value/*mapItem*/, (void**)(&mapItem)/*(void**)(&mapItem)*/) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
  1712. {
  1713. result = PASS;
  1714. DEBUG_INFO("FirmwareStatusNotification mapItem pass\n");
  1715. }
  1716. //#ifdef SystemLogMessage
  1717. //DEBUG_INFO(">>>>>FirmwareStatusNotification request\n");
  1718. //DEBUG_INFO("Message: %s\n", SendBuffer);
  1719. //#endif
  1720. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 0;
  1721. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationConf = 0;
  1722. //record status
  1723. if(strcmp(status,"Downloaded")==0)
  1724. {
  1725. FirmwareStatusNotificationStatus = 0;
  1726. }
  1727. else if(strcmp(status,"DownloadFailed")==0)
  1728. {
  1729. FirmwareStatusNotificationStatus = 1;
  1730. }
  1731. else if(strcmp(status,"Downloading")==0)
  1732. {
  1733. FirmwareStatusNotificationStatus = 2;
  1734. }
  1735. else if(strcmp(status,"Idle")==0)
  1736. {
  1737. FirmwareStatusNotificationStatus = 3;
  1738. }
  1739. else if(strcmp(status,"InstallationFailed")==0)
  1740. {
  1741. FirmwareStatusNotificationStatus = 4;
  1742. }
  1743. else if(strcmp(status,"Installing")==0)
  1744. {
  1745. FirmwareStatusNotificationStatus = 5;
  1746. }
  1747. else if(strcmp(status,"Installed")==0)
  1748. {
  1749. FirmwareStatusNotificationStatus = 6;
  1750. }
  1751. return result;
  1752. }
  1753. int sendHeartbeatRequest(int gun_index)
  1754. {
  1755. mtrace();
  1756. int result = FAIL;
  1757. char message[80]={0};
  1758. char guid[37]={0};
  1759. char tempdata[65]={0};
  1760. random_uuid(guid);
  1761. sprintf(message, "[%d,\"%s\",\"Heartbeat\",{ }]"
  1762. , MESSAGE_TYPE_CALL
  1763. , guid );
  1764. LWS_Send(message);
  1765. sprintf(tempdata, "Heartbeat,%d", 0);
  1766. if(hashmap_operation(0, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, guid, mapItem, tempdata/*(void**)(&mapItem)*/) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
  1767. {
  1768. result = PASS;
  1769. //DEBUG_ERROR("Heartbeat mapItem pass\n");
  1770. }
  1771. //#ifdef SystemLogMessage
  1772. //DEBUG_INFO(">>>>>Heartbeat request\n");
  1773. //DEBUG_INFO("Message: %s\n", SendBuffer);
  1774. //#endif
  1775. return result;
  1776. }
  1777. int sendStartTransactionRequest(int gun_index)
  1778. {
  1779. mtrace();
  1780. int result = FAIL;
  1781. char message[250]={0};
  1782. char guid[37]={0};
  1783. struct timeval tmnow;
  1784. struct tm *tm;
  1785. char buf[30];//, usec_buf[6];
  1786. char tempdata[65]={0};
  1787. DEBUG_INFO("sendStartTransactionRequest...");
  1788. gettimeofday(&tmnow, NULL);
  1789. time_t t;
  1790. t = time(NULL);
  1791. /*UTC time and date*/
  1792. tm = gmtime(&t);
  1793. strftime(buf,30,"%Y-%m-%dT%H:%M:%SZ", tm);
  1794. #if 0 // remove temporally
  1795. strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
  1796. strcat(buf,".");
  1797. sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
  1798. strcat(buf,usec_buf);
  1799. #endif
  1800. //printf("Start Charging Time :%s",buf);
  1801. // set value
  1802. if(ShmOCPP16Data->OcppConnStatus == 1 )
  1803. {
  1804. memset(&ShmOCPP16Data->StartTransaction[gun_index], 0, sizeof(ShmOCPP16Data->StartTransaction[gun_index])); // Clear StartTransaction Value
  1805. }
  1806. ShmOCPP16Data->StartTransaction[gun_index].ConnectorId = gun_index +1 ; // gun start from 1~
  1807. strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].Timestamp, buf);
  1808. strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].IdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId);
  1809. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  1810. {
  1811. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1812. {
  1813. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  1814. {
  1815. ShmOCPP16Data->StartTransaction[gun_index].MeterStart = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy;
  1816. ShmOCPP16Data->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId;
  1817. }
  1818. }
  1819. for (int index = 0; index < CCS_QUANTITY; index++)
  1820. {
  1821. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  1822. {
  1823. ShmOCPP16Data->StartTransaction[gun_index].MeterStart = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy;
  1824. ShmOCPP16Data->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId;
  1825. }
  1826. }
  1827. for (int index = 0; index < GB_QUANTITY; index++)
  1828. {
  1829. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  1830. {
  1831. ShmOCPP16Data->StartTransaction[gun_index].MeterStart = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy;
  1832. ShmOCPP16Data->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId;
  1833. }
  1834. }
  1835. }
  1836. else
  1837. {
  1838. for (int index = 0; index < AC_QUANTITY; index++)
  1839. {
  1840. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  1841. {
  1842. ShmOCPP16Data->StartTransaction[gun_index].MeterStart = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy;
  1843. ShmOCPP16Data->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId;
  1844. }
  1845. }
  1846. }//END OF ELSE
  1847. random_uuid(guid);
  1848. sprintf(message, "[%d,\"%s\",\"StartTransaction\",{\"connectorId\":%d,\"idTag\":\"%s\",\"meterStart\":%d,\"reservationId\":%d,\"timestamp\":\"%s\"}]"
  1849. , MESSAGE_TYPE_CALL
  1850. , guid
  1851. , ShmOCPP16Data->StartTransaction[gun_index].ConnectorId
  1852. , ShmOCPP16Data->StartTransaction[gun_index].IdTag
  1853. , ShmOCPP16Data->StartTransaction[gun_index].MeterStart
  1854. , ShmOCPP16Data->StartTransaction[gun_index].ReservationId
  1855. , ShmOCPP16Data->StartTransaction[gun_index].Timestamp );
  1856. LWS_Send(message);
  1857. sprintf(tempdata, "StartTransaction,%d", (gun_index));
  1858. if(hashmap_operation(0, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, mapItem[0].key_string, mapItem[0].key_value/*mapItem*/, (void**)(&mapItem)/*(void**)(&mapItem)*/) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
  1859. {
  1860. result = PASS;
  1861. }
  1862. strcpy(queuedata, message);
  1863. queue_operation(4, guid, queuedata );//addq(guid, queuedata); ---> remove temporally
  1864. //#ifdef SystemLogMessage
  1865. //DEBUG_INFO(">>>>>StartTransaction request\n");
  1866. //DEBUG_INFO("Message: %s\n", SendBuffer);
  1867. //#endif
  1868. return result;
  1869. }
  1870. int sendStatusNotificationRequest(int gun_index)
  1871. {
  1872. mtrace();
  1873. int result = FAIL;
  1874. char message[600]={0};
  1875. char guid[37];
  1876. int currentStatus = 0;
  1877. struct timeval tmnow;
  1878. struct tm *tm;
  1879. char buf[30];//, usec_buf[6];
  1880. char tempdata[65]={0};
  1881. gettimeofday(&tmnow, NULL);
  1882. time_t t;
  1883. t = time(NULL);
  1884. /*UTC time and date*/
  1885. tm = gmtime(&t);
  1886. strftime(buf,30,"%Y-%m-%dT%H:%M:%SZ", tm);
  1887. #if 0 // remove temporally
  1888. strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
  1889. strcat(buf,".");
  1890. sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
  1891. strcat(buf,usec_buf);
  1892. #endif
  1893. printf("%s",buf);
  1894. ShmOCPP16Data->StatusNotification[gun_index].ConnectorId = (gun_index + 1);
  1895. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].ErrorCode, "NoError"); --- CSU Setting
  1896. // it's option
  1897. strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].Info, "");
  1898. /*
  1899. enum _SYSTEM_STATUS
  1900. {
  1901. S_BOOTING = 0,
  1902. S_IDLE, = 1
  1903. S_AUTHORIZING, =2
  1904. S_REASSIGN_CHECK, =3
  1905. S_REASSIGN, =4
  1906. S_PRECHARGE, =5
  1907. S_PREPARING_FOR_EV, =6
  1908. S_PREPARING_FOR_EVSE, =7
  1909. S_CHARGING, =8
  1910. S_TERMINATING, =9
  1911. S_COMPLETE, =10
  1912. S_ALARM, =11
  1913. S_FAULT =12
  1914. }
  1915. */
  1916. //check Transaction active
  1917. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  1918. {
  1919. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1920. {
  1921. //printf("gun_index=%d\n",gun_index);
  1922. //printf("ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus=%d\n",ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus);
  1923. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE)) //S_IDLE
  1924. {
  1925. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Available");
  1926. currentStatus = 0; //OCPP Status
  1927. }
  1928. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_PREPARING)) //S_PRECHARGE
  1929. {
  1930. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Preparing");
  1931. currentStatus = 1; //OCPP Status
  1932. }
  1933. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING)) //S_CHARGING
  1934. {
  1935. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging");
  1936. currentStatus = 2; //OCPP Status
  1937. }
  1938. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) //S_COMPLETE
  1939. {
  1940. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Finishing");
  1941. currentStatus = 5; //OCPP Status
  1942. }
  1943. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_ALARM)) //S_ALARM ---> SuspendedEV
  1944. {
  1945. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1946. currentStatus = 4; //OCPP Status
  1947. }
  1948. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_MAINTAIN)|| (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_DEBUG))) //S_TERMINATING ---> Unavailable
  1949. {
  1950. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1951. currentStatus = 7; //OCPP Status: Unavailable
  1952. }
  1953. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT)) //S_FAULT ---> Faulted
  1954. {
  1955. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1956. currentStatus = 8; //OCPP Status: Faulted
  1957. }
  1958. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_RESERVATION)) // ---> Reserved
  1959. {
  1960. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1961. currentStatus = 6; //OCPP Status: Reserved
  1962. }
  1963. }//end of for CHAdeMO_QUANTITY
  1964. for (int index = 0; index < CCS_QUANTITY; index++)
  1965. {
  1966. //printf("ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].SystemStatus=%d\n",ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].SystemStatus);
  1967. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE)) //S_IDLE
  1968. {
  1969. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Available");
  1970. currentStatus = 0; //OCPP Status
  1971. }
  1972. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_PREPARING)) //S_PRECHARGE
  1973. {
  1974. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Preparing");
  1975. currentStatus = 1; //OCPP Status
  1976. }
  1977. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING)) //S_CHARGING
  1978. {
  1979. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging");
  1980. currentStatus = 2; //OCPP Status
  1981. }
  1982. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) //S_COMPLETE
  1983. {
  1984. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Finishing");
  1985. currentStatus = 5; //OCPP Status
  1986. }
  1987. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_ALARM)) //S_ALARM ---> SuspendedEV
  1988. {
  1989. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1990. currentStatus = 4; //OCPP Status
  1991. }
  1992. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_DEBUG))) //S_TERMINATING ---> Unavailable
  1993. {
  1994. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1995. currentStatus = 7; //OCPP Status
  1996. }
  1997. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_FAULT)) //S_FAULT ---> Faulted
  1998. {
  1999. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  2000. currentStatus = 8; //OCPP Status
  2001. }
  2002. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_RESERVATION)) // ---> Reserved
  2003. {
  2004. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  2005. currentStatus = 6; //OCPP Status
  2006. }
  2007. }
  2008. for (int index = 0; index < GB_QUANTITY; index++)
  2009. {
  2010. //printf("ShmSysConfigAndInfo->SysInfo.GbChargingData[0].SystemStatus=%d\n",ShmSysConfigAndInfo->SysInfo.GbChargingData[0].SystemStatus);
  2011. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index) &&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_IDLE)) //S_IDLE
  2012. {
  2013. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Available");
  2014. currentStatus = 0; //OCPP Status
  2015. }
  2016. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index) &&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_PREPARING)) //S_PRECHARGE
  2017. {
  2018. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Preparing");
  2019. currentStatus = 1; //OCPP Status
  2020. }
  2021. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING)) //S_CHARGING
  2022. {
  2023. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging");
  2024. currentStatus = 2; //OCPP Status
  2025. }
  2026. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) //S_COMPLETE
  2027. {
  2028. // strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Finishing");
  2029. currentStatus = 5; //OCPP Status
  2030. }
  2031. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_ALARM)) //S_ALARM ---> SuspendedEV
  2032. {
  2033. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  2034. currentStatus = 4; //OCPP Status
  2035. }
  2036. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_DEBUG))) //S_TERMINATING ---> Unavailable
  2037. {
  2038. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  2039. currentStatus = 7; //OCPP Status: Unavailable
  2040. }
  2041. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_FAULT)) //S_FAULT ---> Faulted
  2042. {
  2043. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  2044. currentStatus = 8; //OCPP Status: Faulted
  2045. }
  2046. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_RESERVATION)) // ---> Reserved
  2047. {
  2048. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  2049. currentStatus = 6; //OCPP Status: Faulted
  2050. }
  2051. }
  2052. }
  2053. else
  2054. {
  2055. for (int index = 0; index < AC_QUANTITY; index++)
  2056. {
  2057. //printf("gun_index=%d\n",gun_index);
  2058. //printf("ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus=%d\n",ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus);
  2059. if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE)) //S_IDLE
  2060. {
  2061. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Available");
  2062. currentStatus = 0; //OCPP Status
  2063. }
  2064. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING)) //S_PRECHARGE
  2065. {
  2066. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Preparing");
  2067. currentStatus = 1; //OCPP Status
  2068. }
  2069. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING)) //S_CHARGING
  2070. {
  2071. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging");
  2072. currentStatus = 2; //OCPP Status
  2073. }
  2074. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) //S_COMPLETE
  2075. {
  2076. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Finishing");
  2077. currentStatus = 5; //OCPP Status
  2078. }
  2079. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_ALARM)) //S_ALARM ---> SuspendedEV
  2080. {
  2081. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  2082. currentStatus = 4; //OCPP Status
  2083. }
  2084. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_MAINTAIN)|| (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_DEBUG))) //S_TERMINATING ---> Unavailable
  2085. {
  2086. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  2087. currentStatus = 7; //OCPP Status: Unavailable
  2088. }
  2089. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT)) //S_FAULT ---> Faulted
  2090. {
  2091. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  2092. currentStatus = 8; //OCPP Status: Faulted
  2093. }
  2094. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_RESERVATION)) // ---> Reserved
  2095. {
  2096. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  2097. currentStatus = 6; //OCPP Status: Reserved
  2098. }
  2099. }//end of for AC_QUANTITY
  2100. }//END OF ELSE
  2101. //it's option
  2102. strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].Timestamp, buf);
  2103. strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].VendorId, "PhihongTechnology");
  2104. strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode, "000000");
  2105. strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[currentStatus]);
  2106. random_uuid(guid);
  2107. sprintf(message, "[%d,\"%s\",\"StatusNotification\",{\"connectorId\":%d,\"errorCode\":\"%s\",\"info\":\"%s\",\"status\":\"%s\",\"timestamp\":\"%s\",\"vendorId\":\"%s\",\"vendorErrorCode\":\"%s\"}]"
  2108. , MESSAGE_TYPE_CALL
  2109. , guid
  2110. , ShmOCPP16Data->StatusNotification[gun_index].ConnectorId
  2111. , ShmOCPP16Data->StatusNotification[gun_index].ErrorCode
  2112. , ShmOCPP16Data->StatusNotification[gun_index].Info
  2113. , ShmOCPP16Data->StatusNotification[gun_index].Status
  2114. , ShmOCPP16Data->StatusNotification[gun_index].Timestamp
  2115. , ShmOCPP16Data->StatusNotification[gun_index].VendorId
  2116. , ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode);
  2117. LWS_Send(message);
  2118. sprintf(tempdata, "StatusNotification,%d", (gun_index));
  2119. if(hashmap_operation(0, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, guid, mapItem, tempdata/*(void**)(&mapItem)*//*(void**)(&mapItem)*/) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
  2120. {
  2121. DEBUG_ERROR("statusNotification mapitem pass");
  2122. result = PASS;
  2123. }
  2124. //#ifdef SystemLogMessage
  2125. //DEBUG_INFO(">>>>>StatusNotification request\n");
  2126. //DEBUG_INFO("Message: %s\n", SendBuffer);
  2127. //#endif
  2128. return result;
  2129. }
  2130. int sendStopTransactionRequest(int gun_index)
  2131. {
  2132. mtrace();
  2133. int result = FAIL;
  2134. char message[1500]={0};
  2135. char guid[37]={0};
  2136. char tempdata[65]={0};
  2137. int idx_sample=0;
  2138. DEBUG_ERROR("sendStopTransactionRequest \n");
  2139. //memset(&(ShmOCPP16Data->StopTransaction[gun_index].TransactionData), 0, sizeof(struct StructMeterValue));
  2140. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].IdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId/*ShmOCPP16Data->Authorize.IdTag*/);
  2141. //ENERGY_ACTIVE_IMPORT_REGISTER
  2142. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2143. {
  2144. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2145. {
  2146. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2147. {
  2148. ShmOCPP16Data->StopTransaction[gun_index].MeterStop = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy;
  2149. //Check Status
  2150. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_ALARM) // S_ALARM (Temporally for SuspendedEV )
  2151. {
  2152. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[EVDisconnected]); //
  2153. }
  2154. //sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%s" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );
  2155. }
  2156. }// END OF CHAdeMO_QUANTITY
  2157. for (int index = 0; index < CCS_QUANTITY; index++)
  2158. {
  2159. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2160. {
  2161. //for test
  2162. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy = 100.0;
  2163. ShmOCPP16Data->StopTransaction[gun_index].MeterStop = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy;
  2164. //Check Status
  2165. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_ALARM) // S_ALARM (Temporally for SuspendedEV )
  2166. {
  2167. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[EVDisconnected]); //
  2168. }
  2169. else
  2170. {
  2171. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[Local]); //
  2172. }
  2173. //sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%s" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy );
  2174. }
  2175. }// END OF CCS_QUANTITY
  2176. for (int index = 0; index < GB_QUANTITY; index++)
  2177. {
  2178. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2179. {
  2180. // for test
  2181. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy = 100.0;
  2182. ShmOCPP16Data->StopTransaction[gun_index].MeterStop = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy;
  2183. //Check Status
  2184. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_ALARM) // S_ALARM (Temporally for SuspendedEV )
  2185. {
  2186. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[EVDisconnected]); //
  2187. }
  2188. else
  2189. {
  2190. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[Local]); //
  2191. }
  2192. //sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy);
  2193. }
  2194. }// END OF GB_QUANTITY
  2195. }
  2196. else
  2197. {
  2198. for (int index = 0; index < AC_QUANTITY; index++)
  2199. {
  2200. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2201. {
  2202. ShmOCPP16Data->StopTransaction[gun_index].MeterStop = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy;
  2203. //Check Status
  2204. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_ALARM) // S_ALARM (Temporally for SuspendedEV )
  2205. {
  2206. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[EVDisconnected]); //
  2207. }
  2208. //sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%s" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );
  2209. }
  2210. }// END OF AC_QUANTITY
  2211. }//END OF ELSE
  2212. //Stop Transaction Time
  2213. struct timeval tmnow;
  2214. struct tm *tm;
  2215. char buf[30];//, usec_buf[6];
  2216. gettimeofday(&tmnow, NULL);
  2217. time_t t;
  2218. t = time(NULL);
  2219. /*UTC time and date*/
  2220. tm = gmtime(&t);
  2221. strftime(buf,30,"%Y-%m-%dT%H:%M:%SZ", tm);
  2222. #if 0 // remove temporally
  2223. strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
  2224. strcat(buf,".");
  2225. sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
  2226. strcat(buf,usec_buf);
  2227. #endif
  2228. printf("StopTransaction Time %s\n",buf);
  2229. //strcpy(ShmOCPP16Data->StopTransaction[gun_index].Timestamp,"2019-05-04T18:15:33Z");
  2230. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].Timestamp,buf);
  2231. ShmOCPP16Data->StopTransaction[gun_index].TransactionId = ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId;
  2232. random_uuid(guid);
  2233. sprintf(message,"[%d,\"%s\",\"StopTransaction\",{\"idTag\":\"%s\",\"meterStop\":%d,\"timestamp\":\"%s\",\"transactionId\":%d,\"reason\":\"%s\",\"transactionData\":"
  2234. ,MESSAGE_TYPE_CALL
  2235. ,guid
  2236. ,ShmOCPP16Data->StopTransaction[gun_index].IdTag
  2237. ,ShmOCPP16Data->StopTransaction[gun_index].MeterStop
  2238. ,ShmOCPP16Data->StopTransaction[gun_index].Timestamp
  2239. ,ShmOCPP16Data->StopTransaction[gun_index].TransactionId
  2240. ,ShmOCPP16Data->StopTransaction[gun_index].StopReason);
  2241. /***********************************transactionData******************************************************/
  2242. //ShmOCPP16Data->StopTransaction[gun_index].TransactionData = (struct StructMeterValue *)malloc(sizeof(struct StructMeterValue));
  2243. //ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue = (struct StructSampledValue *)malloc(sizeof(struct StructSampledValue)*10);
  2244. for(int idx_transaction=0;idx_transaction<1;idx_transaction++)
  2245. {
  2246. //transactionData = json_object_new_object();
  2247. //json_object_object_add(transactionData, "timestamp", json_object_new_string("2019-05-04T18:15:33Z"));
  2248. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].TimeStamp, buf/*"2019-05-04T18:15:33Z"*/);
  2249. sprintf(message + strlen(message), "[{\"timestamp\":\"%s\",\"sampledValue\":[", (const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].TimeStamp);
  2250. //=================================
  2251. // Transaction_Begin
  2252. //=================================
  2253. // Energy.Active.Export.Interval
  2254. idx_sample=0;
  2255. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f",(float)(ShmOCPP16Data->StartTransaction[gun_index].MeterStart)*1000); // MeterStart is 0~6553.5 kWh
  2256. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,ReadingContextStr[ReadingContext_Transaction_Begin]);
  2257. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,ValueFormatStr[Raw]);
  2258. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,MeasurandStr[Energy_Active_Export_Interval/*Energy_Reactive_Export_Register*/]);
  2259. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,PhaseStr[L1_N]);
  2260. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,LocationStr[Location_Outlet]);
  2261. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_Wh/*UnitOfMeasure_kWh*/]);
  2262. sprintf(message + strlen(message), "{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\" }",
  2263. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value,
  2264. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,
  2265. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,
  2266. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,
  2267. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,
  2268. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,
  2269. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit
  2270. );
  2271. //=================================
  2272. // Transaction_End
  2273. //=================================
  2274. //Current.Export
  2275. idx_sample=1;
  2276. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2277. {
  2278. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2279. {
  2280. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2281. {
  2282. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp
  2283. }
  2284. }
  2285. for (int index = 0; index < CCS_QUANTITY; index++)
  2286. {
  2287. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2288. {
  2289. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp
  2290. }
  2291. }
  2292. for (int index = 0; index < GB_QUANTITY; index++)
  2293. {
  2294. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2295. {
  2296. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp
  2297. }
  2298. }
  2299. }
  2300. else
  2301. {
  2302. for (int index = 0; index < AC_QUANTITY; index++)
  2303. {
  2304. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2305. {
  2306. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrent );// 0~6553.5 amp for EVSE
  2307. }
  2308. }
  2309. }// END FOR AC ELSE
  2310. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,ReadingContextStr[ReadingContext_Transaction_End]);
  2311. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,ValueFormatStr[Raw]);
  2312. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,MeasurandStr[Current_Export/*Energy_Reactive_Export_Register*/]);
  2313. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,PhaseStr[L1_N]);
  2314. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,LocationStr[Location_Outlet]);
  2315. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_A/*UnitOfMeasure_kWh*/]);
  2316. sprintf(message + strlen(message), ",{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\" }",
  2317. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value,
  2318. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,
  2319. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,
  2320. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,
  2321. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,
  2322. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,
  2323. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit
  2324. );
  2325. //Energy.Active.Export.Interval
  2326. idx_sample=2;
  2327. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2328. {
  2329. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2330. {
  2331. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2332. {
  2333. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy*1000 );// PresentChargedEnergy is 0~6553.5 kWh
  2334. }
  2335. }
  2336. for (int index = 0; index < CCS_QUANTITY; index++)
  2337. {
  2338. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2339. {
  2340. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy*1000 );// PresentChargedEnergy is 0~6553.5 kWh
  2341. }
  2342. }
  2343. for (int index = 0; index < GB_QUANTITY; index++)
  2344. {
  2345. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2346. {
  2347. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy*1000 );// PresentChargedEnergy is 0~6553.5 kWh
  2348. }
  2349. }
  2350. }
  2351. else
  2352. {
  2353. for (int index = 0; index < AC_QUANTITY; index++)
  2354. {
  2355. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2356. {
  2357. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy*1000 );// PresentChargedEnergy is 0~6553.5 kWh
  2358. }
  2359. }
  2360. }// END FOR AC ELSE
  2361. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,ReadingContextStr[ReadingContext_Transaction_End]);
  2362. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,ValueFormatStr[Raw]);
  2363. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,MeasurandStr[Energy_Active_Export_Interval/*Energy_Reactive_Export_Register*/]);
  2364. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,PhaseStr[L1_N]);
  2365. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,LocationStr[Location_Outlet]);
  2366. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_Wh/*UnitOfMeasure_kWh*/]);
  2367. sprintf(message + strlen(message), ",{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\" }",
  2368. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value,
  2369. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,
  2370. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,
  2371. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,
  2372. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,
  2373. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,
  2374. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit
  2375. );
  2376. //Power.Active.Export
  2377. idx_sample=3;
  2378. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2379. {
  2380. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2381. {
  2382. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2383. {
  2384. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW
  2385. }
  2386. }
  2387. for (int index = 0; index < CCS_QUANTITY; index++)
  2388. {
  2389. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2390. {
  2391. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW
  2392. }
  2393. }
  2394. for (int index = 0; index < GB_QUANTITY; index++)
  2395. {
  2396. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2397. {
  2398. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW
  2399. }
  2400. }
  2401. }
  2402. else
  2403. {
  2404. for (int index = 0; index < AC_QUANTITY; index++)
  2405. {
  2406. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2407. {
  2408. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW
  2409. }
  2410. }
  2411. }// END FOR AC ELSE
  2412. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,ReadingContextStr[ReadingContext_Transaction_End]);
  2413. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,ValueFormatStr[Raw]);
  2414. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,MeasurandStr[Power_Active_Export/*Energy_Reactive_Export_Register*/]);
  2415. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,PhaseStr[L1_N]);
  2416. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,LocationStr[Location_Outlet]);
  2417. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_kW/*UnitOfMeasure_kWh*/]);
  2418. sprintf(message + strlen(message), ",{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\" }",
  2419. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value,
  2420. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,
  2421. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,
  2422. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,
  2423. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,
  2424. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,
  2425. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit
  2426. );
  2427. //Voltage
  2428. idx_sample=4;
  2429. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2430. {
  2431. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2432. {
  2433. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2434. {
  2435. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt
  2436. }
  2437. }
  2438. for (int index = 0; index < CCS_QUANTITY; index++)
  2439. {
  2440. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2441. {
  2442. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt
  2443. }
  2444. }
  2445. for (int index = 0; index < GB_QUANTITY; index++)
  2446. {
  2447. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2448. {
  2449. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt
  2450. }
  2451. }
  2452. }
  2453. else
  2454. {
  2455. for (int index = 0; index < AC_QUANTITY; index++)
  2456. {
  2457. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2458. {
  2459. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrent );//AcChargingVoltage is 0~6553.5 volt for AC EVSE
  2460. }
  2461. }
  2462. }// END FOR AC ELSE
  2463. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,ReadingContextStr[ReadingContext_Transaction_End]);
  2464. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,ValueFormatStr[Raw]);
  2465. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,MeasurandStr[Power_Active_Export/*Energy_Reactive_Export_Register*/]);
  2466. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,PhaseStr[L1_N]);
  2467. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,LocationStr[Location_Outlet]);
  2468. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_kW/*UnitOfMeasure_kWh*/]);
  2469. sprintf(message + strlen(message), ",{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\" }",
  2470. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value,
  2471. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,
  2472. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,
  2473. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,
  2474. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,
  2475. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,
  2476. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit
  2477. );
  2478. //SoC
  2479. idx_sample=5;
  2480. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2481. {
  2482. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2483. {
  2484. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2485. {
  2486. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatterySoc );// 0~100%
  2487. }
  2488. }
  2489. for (int index = 0; index < CCS_QUANTITY; index++)
  2490. {
  2491. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2492. {
  2493. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatterySoc );// 0~100%
  2494. }
  2495. }
  2496. for (int index = 0; index < GB_QUANTITY; index++)
  2497. {
  2498. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2499. {
  2500. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatterySoc );// 0~100%
  2501. }
  2502. }
  2503. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,ReadingContextStr[ReadingContext_Transaction_End]);
  2504. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,ValueFormatStr[Raw]);
  2505. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,MeasurandStr[SoC/*Energy_Reactive_Export_Register*/]);
  2506. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,PhaseStr[L1_N]);
  2507. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,LocationStr[Location_Outlet]);
  2508. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_Percent/*UnitOfMeasure_kWh*/]);
  2509. sprintf(message + strlen(message), ",{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\" }",
  2510. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value,
  2511. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,
  2512. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,
  2513. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,
  2514. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,
  2515. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,
  2516. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit
  2517. );
  2518. } // END FOR DC CASE
  2519. sprintf(message + strlen(message)," ] } ] } ]");
  2520. //free(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue);
  2521. //free(ShmOCPP16Data->StopTransaction[gun_index].TransactionData);
  2522. }
  2523. LWS_Send(message);
  2524. sprintf(tempdata, "StopTransaction,%d", (gun_index));
  2525. if(hashmap_operation(0, guid, tempdata) == 1)
  2526. {
  2527. result = PASS;
  2528. DEBUG_INFO("StopTransaction mapitem pass\n");
  2529. }
  2530. strcpy(queuedata, message);
  2531. queue_operation(4, guid, queuedata );//addq(guid, queuedata); ---> remove temporally
  2532. //#ifdef SystemLogMessage
  2533. //DEBUG_INFO(">>>>>StopTransaction request\n");
  2534. //DEBUG_INFO("Message: %s\n", SendBuffer);
  2535. //#endif
  2536. //for test
  2537. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq = 0;
  2538. return result;
  2539. }
  2540. int sendMeterValuesRequest(int gun_index)
  2541. {
  2542. mtrace();
  2543. int result = FAIL;
  2544. char message[1500]={0};
  2545. char guid[37]={0};
  2546. int idx_sample=0;
  2547. //int length = 0;
  2548. char tempdata[65]={0};
  2549. DEBUG_ERROR("sendMeterValuesRequest ...\n");
  2550. DEBUG_ERROR("gun_index =%d\n",gun_index);
  2551. if((ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId == 0)&&(ShmOCPP16Data->CsMsg.bits[gun_index].TriggerMessageReq == 0)) // no TransactionId
  2552. {
  2553. DEBUG_INFO("NOT SENT METER Vlaue\n");
  2554. DEBUG_ERROR("ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId =%d\n",ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId);
  2555. DEBUG_ERROR("ShmOCPP16Data->CsMsg.bits[gun_index].TriggerMessageReq =%d\n",ShmOCPP16Data->CsMsg.bits[gun_index].TriggerMessageReq);
  2556. return result;
  2557. }
  2558. if(ShmOCPP16Data->CsMsg.bits[gun_index].TriggerMessageReq == 1)
  2559. {
  2560. ShmOCPP16Data->CsMsg.bits[gun_index].TriggerMessageReq = 0;
  2561. }
  2562. //set value
  2563. ShmOCPP16Data->MeterValues[gun_index].ConnectorId = gun_index + 1; // gun start from 1~
  2564. ShmOCPP16Data->MeterValues[gun_index].TransactionId = ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId;
  2565. random_uuid(guid);
  2566. sprintf(message,"[%d,\"%s\",\"MeterValues\",{\"connectorId\":%d,\"transactionId\":%d,\"meterValue\":"
  2567. ,MESSAGE_TYPE_CALL
  2568. ,guid
  2569. ,ShmOCPP16Data->MeterValues[gun_index].ConnectorId
  2570. ,ShmOCPP16Data->MeterValues[gun_index].TransactionId);
  2571. //,comfirmpayload);
  2572. for(int idx_transaction=0;idx_transaction<1;idx_transaction++)
  2573. {
  2574. //allocate memory space
  2575. //ShmOCPP16Data->MeterValues[gun_index].MeterValue = (struct StructMeterValue *)malloc(sizeof(struct StructMeterValue));
  2576. //UTC Date time
  2577. struct timeval tmnow;
  2578. struct tm *tm;
  2579. char buf[30];//, usec_buf[6];
  2580. gettimeofday(&tmnow, NULL);
  2581. time_t t;
  2582. t = time(NULL);
  2583. /*UTC time and date*/
  2584. tm = gmtime(&t);
  2585. strftime(buf,30,"%Y-%m-%dT%H:%M:%SZ", tm);
  2586. #if 0 // remove temporally
  2587. strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
  2588. strcat(buf,".");
  2589. sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
  2590. strcat(buf,usec_buf);
  2591. #endif
  2592. // printf("%s",buf);
  2593. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].TimeStamp, buf);
  2594. //allocate memory space
  2595. //ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue = (struct StructSampledValue *)malloc(sizeof(struct StructSampledValue)*6);
  2596. sprintf(message + strlen(message),"[{\"timestamp\":\"%s\",\"sampledValue\":[",(const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].TimeStamp);
  2597. idx_sample=0;
  2598. //********************************(1)Current.Export************************************************/
  2599. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2600. {
  2601. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2602. {
  2603. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2604. {
  2605. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingCurrent );
  2606. }
  2607. }
  2608. for (int index = 0; index < CCS_QUANTITY; index++)
  2609. {
  2610. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2611. {
  2612. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingCurrent );
  2613. }
  2614. }
  2615. for (int index = 0; index < GB_QUANTITY; index++)
  2616. {
  2617. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2618. {
  2619. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingCurrent );
  2620. }
  2621. }
  2622. }
  2623. else
  2624. {
  2625. for (int index = 0; index < AC_QUANTITY; index++)
  2626. {
  2627. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2628. {
  2629. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrent );
  2630. }
  2631. }
  2632. }// END FOR AC ELSE
  2633. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2634. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2635. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Current_Export]);
  2636. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1_N]);
  2637. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2638. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_A]);
  2639. sprintf(message + strlen(message),"{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\"},",
  2640. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value,
  2641. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context,
  2642. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format,
  2643. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand,
  2644. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase,
  2645. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location,
  2646. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit
  2647. );
  2648. #if 0
  2649. idx_sample=1;
  2650. //****************************************************(2)Energy.Active.Export.Register*********************************************/
  2651. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2652. {
  2653. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2654. {
  2655. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2656. {
  2657. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );
  2658. }
  2659. }
  2660. for (int index = 0; index < CCS_QUANTITY; index++)
  2661. {
  2662. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2663. {
  2664. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy );
  2665. }
  2666. }
  2667. for (int index = 0; index < GB_QUANTITY; index++)
  2668. {
  2669. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2670. {
  2671. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy = 100.0;
  2672. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy);
  2673. }
  2674. }
  2675. }
  2676. else
  2677. {
  2678. for (int index = 0; index < AC_QUANTITY; index++)
  2679. {
  2680. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2681. {
  2682. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy );
  2683. }
  2684. }
  2685. }// END FOR AC ELSE
  2686. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2687. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2688. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Energy_Active_Export_Register]);
  2689. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1]);
  2690. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2691. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_kWh]);
  2692. sprintf(message + strlen(message),"{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\"},",
  2693. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value,
  2694. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context,
  2695. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format,
  2696. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand,
  2697. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase,
  2698. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location,
  2699. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit
  2700. );
  2701. #endif
  2702. idx_sample=1;
  2703. //****************************************************(3)Energy.Active.Export.Interval*********************************************/
  2704. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2705. {
  2706. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2707. {
  2708. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2709. {
  2710. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );
  2711. }
  2712. }
  2713. for (int index = 0; index < CCS_QUANTITY; index++)
  2714. {
  2715. // printf("ShmSysConfigAndInfo->SysInfo.CcsChargingData[%d].Index=%d\n",index, ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index );
  2716. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2717. {
  2718. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy = 100.0;
  2719. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy );
  2720. }
  2721. }
  2722. for (int index = 0; index < GB_QUANTITY; index++)
  2723. {
  2724. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2725. {
  2726. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy);
  2727. }
  2728. }
  2729. }
  2730. else
  2731. {
  2732. for (int index = 0; index < AC_QUANTITY; index++)
  2733. {
  2734. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2735. {
  2736. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy );
  2737. }
  2738. }
  2739. }//END FOR AC ELSE
  2740. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2741. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2742. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Energy_Active_Export_Interval]);
  2743. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1]);
  2744. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2745. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_kWh]);
  2746. sprintf(message + strlen(message),"{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\"},",
  2747. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value,
  2748. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context,
  2749. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format,
  2750. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand,
  2751. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase,
  2752. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location,
  2753. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit
  2754. );
  2755. idx_sample=2;
  2756. //********************************(4)Power.Active.Export************************************************/
  2757. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2758. {
  2759. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2760. {
  2761. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2762. {
  2763. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingPower);
  2764. }
  2765. }
  2766. for (int index = 0; index < CCS_QUANTITY; index++)
  2767. {
  2768. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2769. {
  2770. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingPower);
  2771. }
  2772. }
  2773. for (int index = 0; index < GB_QUANTITY; index++)
  2774. {
  2775. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2776. {
  2777. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower = 100.0;
  2778. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower);
  2779. }
  2780. }
  2781. }
  2782. else
  2783. {
  2784. for (int index = 0; index < AC_QUANTITY; index++)
  2785. {
  2786. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2787. {
  2788. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingPower);
  2789. }
  2790. }
  2791. }// END FOR AC ELSE
  2792. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2793. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2794. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Power_Active_Export]);
  2795. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1_N]);
  2796. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2797. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_kW]);
  2798. sprintf(message + strlen(message),"{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\"},",
  2799. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value,
  2800. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context,
  2801. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format,
  2802. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand,
  2803. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase,
  2804. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location,
  2805. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit
  2806. );
  2807. idx_sample=3;
  2808. //***********************************************(5)VOLTAGE******************************************************/
  2809. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2810. {
  2811. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2812. {
  2813. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2814. {
  2815. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingVoltage );
  2816. }
  2817. }
  2818. for (int index = 0; index < CCS_QUANTITY; index++)
  2819. {
  2820. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2821. {
  2822. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingVoltage );
  2823. }
  2824. }
  2825. for (int index = 0; index < GB_QUANTITY; index++)
  2826. {
  2827. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2828. {
  2829. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingVoltage );
  2830. }
  2831. }
  2832. }
  2833. else
  2834. {
  2835. for (int index = 0; index < AC_QUANTITY; index++)
  2836. {
  2837. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2838. {
  2839. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltage );
  2840. }
  2841. }
  2842. }//END FOR AC ELSE
  2843. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2844. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2845. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Voltage]);
  2846. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1_N]);
  2847. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2848. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_V]);
  2849. sprintf(message + strlen(message),"{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\"}",
  2850. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value,
  2851. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context,
  2852. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format,
  2853. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand,
  2854. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase,
  2855. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location,
  2856. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit
  2857. );
  2858. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2859. {
  2860. idx_sample=4;
  2861. //sampledValue = NULL;
  2862. //***********************************************(6)SOC******************************************************/
  2863. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2864. {
  2865. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2866. {
  2867. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2868. {
  2869. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatterySoc );
  2870. }
  2871. }
  2872. for (int index = 0; index < CCS_QUANTITY; index++)
  2873. {
  2874. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2875. {
  2876. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatterySoc );
  2877. }
  2878. }
  2879. for (int index = 0; index < GB_QUANTITY; index++)
  2880. {
  2881. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2882. {
  2883. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatterySoc );
  2884. }
  2885. }
  2886. }
  2887. else
  2888. {
  2889. for (int index = 0; index < AC_QUANTITY; index++)
  2890. {
  2891. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2892. {
  2893. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatterySoc );
  2894. }
  2895. }
  2896. }//END FOR AC ELSE
  2897. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2898. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2899. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[SoC]);
  2900. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1_N]);
  2901. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2902. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_Percent]);
  2903. sprintf(message + strlen(message),",{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\"}",
  2904. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value,
  2905. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context,
  2906. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format,
  2907. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand,
  2908. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase,
  2909. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location,
  2910. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit
  2911. );
  2912. }
  2913. //}
  2914. sprintf(message + strlen(message)," ] } ] } ]");
  2915. //free(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue);
  2916. }
  2917. LWS_Send(message);
  2918. //memset(mapItem, 0, sizeof(data_struct_t));
  2919. // Put request guid to hash map
  2920. sprintf(tempdata, "MeterValues,%d", (gun_index));
  2921. if(hashmap_operation(0, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, mapItem[0].key_string, mapItem[0].key_value/*mapItem*/, (void**)(&mapItem)/*(void**)(&mapItem)*/) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
  2922. {
  2923. result = PASS;
  2924. DEBUG_INFO("MeterValues mapitem pass\n");
  2925. }
  2926. strcpy(queuedata, message);
  2927. queue_operation(4, guid, queuedata );//addq(guid, queuedata); ---> remove temporally
  2928. //#ifdef SystemLogMessage
  2929. //DEBUG_INFO(">>>>>MeerValues request\n");
  2930. //DEBUG_INFO("Message: %s\n", SendBuffer);
  2931. //#endif
  2932. return result;
  2933. }
  2934. //==========================================
  2935. // send confirm routine
  2936. //==========================================
  2937. int sendCancelReservationConfirmation(char *uuid,char *payload)
  2938. {
  2939. mtrace();
  2940. int result = FAIL;
  2941. char message[100]={0};
  2942. DEBUG_ERROR("handle sendCancelReservationConfirmation\n");
  2943. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT,uuid, payload);
  2944. LWS_Send(message);
  2945. result = TRUE;
  2946. ShmOCPP16Data->CsMsg.bits[0].CancelReservationConf = 0;
  2947. return result;
  2948. }
  2949. int sendChangeAvailabilityConfirmation(char *uuid,char *payload)
  2950. {
  2951. mtrace();
  2952. int result = FAIL;
  2953. char message[100]={0};
  2954. DEBUG_ERROR("handle sendChangeAvailabilityConfirmation\n");
  2955. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT,uuid, payload);
  2956. LWS_Send(message);
  2957. result = TRUE;
  2958. return result;
  2959. }
  2960. int sendChangeConfigurationConfirmation(char *uuid,char *payload)
  2961. {
  2962. mtrace();
  2963. int result = FAIL;
  2964. char message[100]={0};
  2965. DEBUG_ERROR("handle sendChangeConfigurationConfirmation\n");
  2966. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT,uuid, payload);
  2967. LWS_Send(message);
  2968. result = TRUE;
  2969. return result;
  2970. }
  2971. int sendClearCacheConfirmation(char *uuid,char *payload)
  2972. {
  2973. mtrace();
  2974. int result = FAIL;
  2975. char message[500]={0};
  2976. // int count = 0;
  2977. // int gun_index = 0;
  2978. // char guid[37];
  2979. // [ 3, "1570592744204", { "status": "Accepted" } ]
  2980. DEBUG_ERROR("sendClearCacheConfirmation\n");
  2981. sprintf(message,"[ %d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "status", payload);
  2982. LWS_Send(message);
  2983. return result;
  2984. }
  2985. int sendClearChargingProfileConfirmation(char *uuid,char *payload)
  2986. {
  2987. mtrace();
  2988. int result = FAIL;
  2989. char message[500]={0};
  2990. // [ 3, "1571284268200", { "status": "Unknown" } ]
  2991. DEBUG_ERROR("sendClearChargingProfileConfirmation\n");
  2992. sprintf(message,"[ %d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "status", payload);
  2993. LWS_Send(message);
  2994. return result;
  2995. }
  2996. int sendDataTransferConfirmation(char *uuid,char *payload)
  2997. {
  2998. mtrace();
  2999. char statusStr[20]={0};
  3000. char dataStr[10]={0};
  3001. char sstr[20]={0};
  3002. int c = 0;
  3003. char *loc;
  3004. int result = FAIL;
  3005. // [3,"792bc950-b279-49e3-ab8f-429e02a2f9a7",{"status":"Accepted","data":"True"}]
  3006. DEBUG_ERROR("sendDataTransferConfirmation ...\n");
  3007. /**********************status**************************/
  3008. loc = strstr(payload, "status");
  3009. memset(sstr ,0, sizeof(sstr) );
  3010. c = 0;
  3011. while (loc[3+strlen("status")+c] != '\"')
  3012. {
  3013. sstr[c] = loc[3+strlen("status")+c];
  3014. c++;
  3015. }
  3016. sstr[c] = '\0';
  3017. strcpy(statusStr, sstr);
  3018. /**********************data**************************/
  3019. loc = strstr(payload, "data");
  3020. memset(sstr ,0, sizeof(sstr) );
  3021. c = 0;
  3022. while (loc[3+strlen("data")+c] != '\"')
  3023. {
  3024. sstr[c] = loc[3+strlen("data")+c];
  3025. c++;
  3026. }
  3027. sstr[c] = '\0';
  3028. strcpy(dataStr, sstr);
  3029. return result;
  3030. }
  3031. int sendGetCompositeScheduleConfirmation(char *uuid,char *payload, int connectorIdInt,int nPeriod)
  3032. {
  3033. mtrace();
  3034. int result = FAIL;
  3035. char message[1000]={0};
  3036. double diff_f = 0.0;
  3037. int diff_i = 0;
  3038. struct tm tp;
  3039. DEBUG_ERROR("handle sendGetCompositeScheduleConfirmation ...\n");
  3040. strptime((const char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.StartSchedule, "%Y-%m-%dT%H:%M:%S", &tp);
  3041. tp.tm_isdst = -1;
  3042. time_t utc = mktime(&tp);
  3043. time_t t = time(NULL);
  3044. diff_f = difftime(t, utc);
  3045. diff_i = (int)diff_f;
  3046. DEBUG_INFO("\n diff_f=%f \n",diff_f);
  3047. #if 0 //remove temporally
  3048. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"connectorId\":%d,\"scheduleStart\":\"%s\",\"chargingSchedule\":{\"duration\":%d,\"startSchedule\":\"%s\",\"chargingRateUnit\":\"%s\",\"chargingSchedulePeriod\":[{\"startPeriod\":0,\"limit\":6.0,\"numberPhases\":3},{\"startPeriod\":40,\"limit\":10.0,\"numberPhases\":3},{\"startPeriod\":100,\"limit\":8.0,\"numberPhases\":3}"
  3049. ,MESSAGE_TYPE_CALLRESULT
  3050. ,uuid
  3051. ,payload
  3052. ,connectorIdInt
  3053. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule
  3054. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.Duration
  3055. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule
  3056. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit);
  3057. #endif
  3058. if(nPeriod == 0)
  3059. {
  3060. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"connectorId\":%d,\"scheduleStart\":\"%s\"}]"
  3061. ,MESSAGE_TYPE_CALLRESULT
  3062. ,uuid
  3063. ,payload
  3064. ,connectorIdInt
  3065. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule);
  3066. }
  3067. else
  3068. {
  3069. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"connectorId\":%d,\"scheduleStart\":\"%s\",\"chargingSchedule\":{\"duration\":%d,\"startSchedule\":\"%s\",\"chargingRateUnit\":\"%s\",\"chargingSchedulePeriod\":["
  3070. ,MESSAGE_TYPE_CALLRESULT
  3071. ,uuid
  3072. ,payload
  3073. ,connectorIdInt
  3074. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule
  3075. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.Duration
  3076. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule
  3077. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit);
  3078. //int len = nPeriod;//sizeof(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod)/sizeof(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0]);
  3079. #if 1 // remove temporally
  3080. int len = nPeriod;//sizeof(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod)/sizeof(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0]);
  3081. for(int idx_sample=0;idx_sample< len;idx_sample++)
  3082. {
  3083. if (idx_sample == 0)
  3084. {
  3085. sprintf(message + strlen(message), "{\"startPeriod\":%d,\"limit\":%.1f,\"numberPhases\":%d}"
  3086. , ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].StartPeriod
  3087. , ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].Limit
  3088. , ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].NumberPhases );
  3089. }
  3090. else
  3091. {
  3092. sprintf(message + strlen(message), ",{\"startPeriod\":%d,\"limit\":%.1f,\"numberPhases\":%d}"
  3093. , (ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].StartPeriod - diff_i /*-1*/)
  3094. , ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].Limit
  3095. , ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].NumberPhases );
  3096. }
  3097. }
  3098. #endif
  3099. sprintf(message + strlen(message), "]}}]");
  3100. }
  3101. LWS_Send(message);
  3102. result = TRUE;
  3103. return result;
  3104. }
  3105. int sendGetConfigurationConfirmation(char *uuid)
  3106. {
  3107. mtrace();
  3108. int result = FAIL;
  3109. int MaxKeySupported = 0;
  3110. int sentConfigurationNumber= 0;
  3111. int sentunConfigurationNumber= 0;
  3112. char message[4000]={0};
  3113. DEBUG_ERROR("handle sendGetConfigurationConfirmation ...\n");
  3114. MaxKeySupported = atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData);
  3115. sprintf(message,"[%d,\"%s\",{\"configurationKey\":[ "
  3116. ,MESSAGE_TYPE_CALLRESULT
  3117. ,uuid );
  3118. //configuration key
  3119. for(int idx_sample=0;idx_sample< MaxKeySupported/*43*/;idx_sample++)
  3120. {
  3121. if(strcmp((const char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Key, "")!= 0)
  3122. {
  3123. if (sentConfigurationNumber == 0)
  3124. {
  3125. sprintf(message + strlen(message), "{\"key\":\"%s\",\"readonly\": %s,\"value\":\"%s\"}"
  3126. , ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Key
  3127. , atoi((const char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].ReadOnly) == 1 ? "true":"false"
  3128. , ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Value );
  3129. }
  3130. else
  3131. {
  3132. sprintf(message + strlen(message), ", {\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}"
  3133. , ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Key
  3134. , atoi((const char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].ReadOnly) == 1 ? "true":"false"
  3135. , ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Value );
  3136. }
  3137. sentConfigurationNumber = sentConfigurationNumber + 1;
  3138. }
  3139. }
  3140. sprintf(message + strlen(message), "]");
  3141. if(UnknownKeynum != 0)
  3142. {
  3143. sprintf(message + strlen(message), ",\"unknownKey\":[");
  3144. //unkown key
  3145. for(int idx_sample=0;idx_sample< UnknownKeynum ;idx_sample++)
  3146. {
  3147. // json_object *jstring1 = json_object_new_string((const char *)((ShmOCPP16Data->GetConfiguration.ResponseUnknownKey + idx_sample)->Item));
  3148. DEBUG_INFO("unkown key:%s\n", ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[idx_sample].Item);
  3149. if(sentunConfigurationNumber == 0)
  3150. {
  3151. sprintf(message + strlen(message), "\"%s\""
  3152. , ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[idx_sample].Item );
  3153. }
  3154. else
  3155. {
  3156. sprintf(message + strlen(message), ",\"%s\""
  3157. , ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[idx_sample].Item );
  3158. }
  3159. sentunConfigurationNumber = sentunConfigurationNumber + 1;
  3160. }
  3161. sprintf(message + strlen(message), "]");
  3162. }
  3163. sprintf(message + strlen(message), "} ]");
  3164. LWS_Send(message);
  3165. #if 0
  3166. printf("error 1-0\n");
  3167. if(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey != NULL)
  3168. free(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey);
  3169. #endif
  3170. return result;
  3171. }
  3172. int sendGetDiagnosticsConfirmation(char *uuid,char *payload)
  3173. {
  3174. mtrace();
  3175. int result = FAIL;
  3176. char message[400]={0};
  3177. DEBUG_ERROR("handle sendGetDiagnosticsConfirmation ...\n");
  3178. if(strcmp(payload,"")==0)
  3179. {
  3180. sprintf(message,"[%d,\"%s\",{}]",MESSAGE_TYPE_CALLRESULT, uuid);
  3181. }
  3182. else
  3183. {
  3184. sprintf(message,"[%d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "fileName", payload);
  3185. }
  3186. LWS_Send(message);
  3187. result = TRUE;
  3188. return result;
  3189. }
  3190. int sendGetLocalListVersionConfirmation(char *uuid,char *payload)
  3191. {
  3192. mtrace();
  3193. int result = FAIL;
  3194. char message[80]={0};
  3195. //[ 3, "4f0141fb-f3a0-4634-9179-b1379b514d3c", { "listVersion": 1 } ]
  3196. DEBUG_ERROR("handle GetLocalListVersionRequest ...\n");
  3197. sprintf(message,"[%d,\"%s\",{\"listVersion\":%d}]",MESSAGE_TYPE_CALLRESULT, uuid, ShmOCPP16Data->GetLocalListVersion.ResponseListVersion);
  3198. LWS_Send(message);
  3199. result = TRUE;
  3200. return result;
  3201. }
  3202. int sendRemoteStartConfirmation(char *uuid,char *payload)
  3203. {
  3204. mtrace();
  3205. int result = FAIL;
  3206. char message[80]={0};
  3207. //[3,"26f6b7bc-a6e8-48a8-bdc5-a541bf8f9e27",{"status":"Accepted"}]
  3208. DEBUG_ERROR("handleRemoteStartRequest ...\n");
  3209. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  3210. LWS_Send(message);
  3211. result = TRUE;
  3212. return result;
  3213. }
  3214. int sendRemoteStopTransactionConfirmation(char *uuid,char *payload)
  3215. {
  3216. mtrace();
  3217. int result = FAIL;
  3218. char message[80]={0};
  3219. // [3,"287d837d-809e-41ea-8385-fdab7f72a01c",{"status":"Accepted"}]
  3220. DEBUG_ERROR("sendRemoteStopTransactionConfirmation ...\n");
  3221. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  3222. LWS_Send(message);
  3223. result = TRUE;
  3224. return result;
  3225. }
  3226. int sendReserveNowTransactionConfirmation(char *uuid,char *payload)
  3227. {
  3228. mtrace();
  3229. int result = FAIL;
  3230. char message[80]={0};
  3231. // [3,"287d837d-809e-41ea-8385-fdab7f72a01c",{"status":"Accepted"}]
  3232. DEBUG_ERROR("sendReserveNowTransactionConfirmation\n");
  3233. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  3234. LWS_Send(message);
  3235. result = TRUE;
  3236. return result;
  3237. }
  3238. int sendResetConfirmation(char *uuid,char *payload)
  3239. {
  3240. mtrace();
  3241. int result = FAIL;
  3242. //[ 3, "6f88d461-4d17-462c-a69b-1f7a8c5b12df", { "status": 0 } ]
  3243. char message[80]={0};
  3244. ShmOCPP16Data->MsMsg.bits.ResetConf = 0;
  3245. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  3246. LWS_Send(message);
  3247. result = TRUE;
  3248. return result;
  3249. }
  3250. int sendSendLocalListConfirmation(char *uuid,char *payload)
  3251. {
  3252. mtrace();
  3253. int result = FAIL;
  3254. char message[500]={0};
  3255. // [ 3, "1571284266109", { "status": "Accepted" } ]
  3256. sprintf(message,"[%d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "status", payload);
  3257. LWS_Send(message);
  3258. result = TRUE;
  3259. return result;
  3260. }
  3261. int sendSetChargingProfileConfirmation(char *uuid,char *payload)
  3262. {
  3263. mtrace();
  3264. int result = FAIL;
  3265. //[3,"5748585f-8524-4fa6-9b4f-4a7eca750b90",{"status":"NotSupported"}]
  3266. char message[80]={0};
  3267. DEBUG_ERROR("handleSetChargingProfileRequest\n");
  3268. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  3269. LWS_Send(message);
  3270. result = TRUE;
  3271. return result;
  3272. }
  3273. int sendTriggerMessageConfirmation(char *uuid,char *payload)
  3274. {
  3275. mtrace();
  3276. int result = FAIL;
  3277. char message[80]={0};
  3278. DEBUG_ERROR("sendTriggerMessageConfirmation\n");
  3279. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  3280. LWS_Send(message);
  3281. result = TRUE;
  3282. return result;
  3283. }
  3284. int sendUnlockConnectorConfirmation(char *uuid,char *payload)
  3285. {
  3286. mtrace();
  3287. int result = FAIL;
  3288. char message[80]={0};
  3289. //[ 3, "ba1cbd49-2a76-493a-8f76-fa23e7606532", { "status": "Unlocked" } ]
  3290. DEBUG_ERROR("sendUnlockConnectorConfirmation\n");
  3291. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  3292. LWS_Send(message);
  3293. result = TRUE;
  3294. return result;
  3295. }
  3296. int sendUpdateFirmwareConfirmation(char *uuid)
  3297. {
  3298. mtrace();
  3299. int result = FAIL;
  3300. char message[60]={0};
  3301. //[ 3, "ba1cbd49-2a76-493a-8f76-fa23e7606532", { "status": "Unlocked" } ]
  3302. DEBUG_ERROR("sendUpdateFirmwareConfirmation\n");
  3303. sprintf(message,"[%d,\"%s\",{}]",MESSAGE_TYPE_CALLRESULT, uuid);
  3304. LWS_Send(message);
  3305. result = TRUE;
  3306. return result;
  3307. }
  3308. //==========================================
  3309. // send CallError routine
  3310. //==========================================
  3311. void SendCallError(char *uniqueId, char *action, char *errorCode, char *errorDescription)
  3312. {
  3313. mtrace();
  3314. //int result = FAIL;
  3315. char message[220]={0};
  3316. // [4,"f1c52ff5-e65d-4070-b7d4-6c70bc1e8970","PropertyConstraintViolation","Payload is syntactically correct but at least one field contains an invalid value",{}]
  3317. #ifdef SystemLogMessage
  3318. DEBUG_INFO("An error occurred. Sending this information: uniqueId {}: action: {}, errorCore: {}, errorDescription: {}\n",
  3319. uniqueId, action, errorCode, errorDescription);
  3320. #endif
  3321. sprintf(message,"[%d,\"%s\",\"%s\",\"%s\",{}]",MESSAGE_TYPE_CALLERROR, uniqueId, errorCode, errorDescription);
  3322. LWS_Send(message);
  3323. //result = TRUE;
  3324. }
  3325. //==========================================
  3326. // Handle server request routine Start
  3327. //==========================================
  3328. #define GUN_NUM 1
  3329. int handleCancelReservationRequest(char *uuid, char *payload)
  3330. {
  3331. mtrace();
  3332. int result = FAIL;
  3333. int gunNO = 0;
  3334. int reservationIdInt =0;
  3335. char comfirmstr[20];
  3336. int c = 0;
  3337. char *loc;
  3338. char sstr[100]={0};
  3339. DEBUG_INFO("handle CancelReservationRequest\n");
  3340. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  3341. c = 0;
  3342. loc = strstr(payload, "reservationId");
  3343. memset(sstr ,0, sizeof(sstr) );
  3344. while (loc[strlen("reservationId")+2+c] != '}')
  3345. {
  3346. sstr[c] = loc[strlen("reservationId")+2+c];
  3347. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3348. c++;
  3349. }
  3350. sstr[c] = '\0';
  3351. reservationIdInt = atoi(sstr);
  3352. memset(comfirmstr, 0, sizeof comfirmstr);
  3353. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Rejected]);
  3354. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  3355. //check Transaction active
  3356. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  3357. {
  3358. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  3359. {
  3360. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId == reservationIdInt)
  3361. {
  3362. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
  3363. sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index].ResponseStatus, "%s", comfirmstr );
  3364. gunNO = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index;
  3365. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  3366. goto end;
  3367. }
  3368. }
  3369. for (int index = 0; index < CCS_QUANTITY; index++)
  3370. {
  3371. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId == reservationIdInt)
  3372. {
  3373. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
  3374. sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index].ResponseStatus, "%s", comfirmstr );
  3375. gunNO = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index;
  3376. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  3377. goto end;
  3378. }
  3379. }
  3380. for (int index = 0; index < GB_QUANTITY; index++)
  3381. {
  3382. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId == reservationIdInt)
  3383. {
  3384. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
  3385. sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index].ResponseStatus, "%s", comfirmstr );
  3386. gunNO = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index;
  3387. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  3388. goto end;
  3389. }
  3390. }
  3391. }
  3392. else
  3393. {
  3394. for (int index = 0; index < AC_QUANTITY; index++)
  3395. {
  3396. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId == reservationIdInt)
  3397. {
  3398. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
  3399. sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index].ResponseStatus, "%s", comfirmstr );
  3400. gunNO = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index;
  3401. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  3402. goto end;
  3403. }
  3404. }
  3405. }// END FOR AC ELSE
  3406. //The reservationId does NOT match the reservationId
  3407. sendCancelReservationConfirmation(uuid, comfirmstr);
  3408. end:
  3409. // Fill in ocpp packet uuid
  3410. strcpy((char *)ShmOCPP16Data->CancelReservation[gunNO].guid, uuid);
  3411. return result;
  3412. }
  3413. int handleChangeAvailabilityRequest(char *uuid, char *payload)
  3414. {
  3415. mtrace();
  3416. int result = FAIL;
  3417. int gunIndex = 0;
  3418. char sstr[90]={0};
  3419. char typeStr[16]={0};
  3420. char comfirmstr[20];
  3421. int specificId = FALSE;
  3422. DEBUG_ERROR("handle ChangeAvailabilityRequest\n");
  3423. char *loc;
  3424. //int intervalInt = 0;
  3425. int c = 0;
  3426. /*** connectorId ****/
  3427. c = 0;
  3428. loc = strstr(payload, "connectorId");
  3429. memset(sstr ,0, sizeof(sstr) );
  3430. while ((loc != NULL) &&(loc[strlen("connectorId")+2+c] != ',') &&(loc[strlen("connectorId")+2+c] != '}') )
  3431. {
  3432. sstr[c] = loc[strlen("connectorId")+2+c];
  3433. c++;
  3434. }
  3435. sstr[c] = '\0';
  3436. gunIndex = atoi(sstr);
  3437. /***type ****/
  3438. loc = strstr(payload, "type");
  3439. memset(sstr ,0, sizeof(sstr) );
  3440. c = 0;
  3441. while ((loc != NULL) &&(loc[3+strlen("type")+c] != '\"'))
  3442. {
  3443. sstr[c] = loc[3+strlen("type")+c];
  3444. c++;
  3445. }
  3446. sstr[c] = '\0';
  3447. strcpy(typeStr, sstr);
  3448. if(gunIndex != 0)
  3449. {
  3450. ShmOCPP16Data->ChangeAvailability[gunIndex - 1].ConnectorId= gunIndex;
  3451. sprintf((char *)ShmOCPP16Data->ChangeAvailability[gunIndex - 1].Type, "%s", typeStr);
  3452. }
  3453. else
  3454. {
  3455. ShmOCPP16Data->ChangeAvailability[0].ConnectorId= gunIndex;
  3456. sprintf((char *)ShmOCPP16Data->ChangeAvailability[0].Type, "%s", typeStr);
  3457. }
  3458. memset(comfirmstr, 0, sizeof comfirmstr);
  3459. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3460. if((gunIndex == 0) || ((gunIndex - 1) < gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/))
  3461. {
  3462. specificId = TRUE;
  3463. }
  3464. if(specificId == FALSE)
  3465. goto end;
  3466. if(gunIndex != 0)
  3467. {
  3468. ShmOCPP16Data->CsMsg.bits[gunIndex - 1].ChangeAvailabilityReq = 1;
  3469. }
  3470. else
  3471. {
  3472. for(int i=0; i < gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/; i++)
  3473. ShmOCPP16Data->CsMsg.bits[i].ChangeAvailabilityReq = 1;
  3474. }
  3475. /*
  3476. enum _SYSTEM_STATUS
  3477. {
  3478. S_BOOTING = 0,
  3479. S_IDLE, = 1
  3480. S_AUTHORIZING, =2
  3481. S_REASSIGN_CHECK, =3
  3482. S_REASSIGN, =4
  3483. S_PRECHARGE, =5
  3484. S_PREPARING_FOR_EV, =6
  3485. S_PREPARING_FOR_EVSE, =7
  3486. S_CHARGING, =8
  3487. S_TERMINATING, =9
  3488. S_COMPLETE, =10
  3489. S_ALARM, =11
  3490. S_FAULT =12
  3491. }
  3492. */
  3493. if(strcmp((const char *)typeStr, AvailabilityTypeStr[Inoperative]) == 0)
  3494. {
  3495. //check Transaction active
  3496. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  3497. {
  3498. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  3499. {
  3500. if ((gunIndex == 0) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (gunIndex - 1)))
  3501. {
  3502. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_PREPARING) // S_PRECHARGE
  3503. {
  3504. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3505. }
  3506. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  3507. {
  3508. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
  3509. }
  3510. else
  3511. {
  3512. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3513. }
  3514. goto end;
  3515. }
  3516. }//END FOR CHAdeMO_QUANTITY
  3517. for (int index = 0; index < CCS_QUANTITY; index++)
  3518. {
  3519. if ((gunIndex == 0)|| (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (gunIndex - 1)))
  3520. {
  3521. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_PREPARING)// S_PRECHARGE
  3522. {
  3523. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3524. }
  3525. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  3526. {
  3527. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
  3528. }
  3529. else
  3530. {
  3531. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3532. }
  3533. goto end;
  3534. }
  3535. }//END FOR CCS_QUANTITY
  3536. for (int index = 0; index < GB_QUANTITY; index++)
  3537. {
  3538. if ((gunIndex == 0)||(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (gunIndex - 1)))
  3539. {
  3540. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_PREPARING) // S_PRECHARGE
  3541. {
  3542. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3543. }
  3544. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  3545. {
  3546. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
  3547. }
  3548. else
  3549. {
  3550. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3551. }
  3552. goto end;
  3553. }
  3554. }// END FOR GB_QUANTITY
  3555. }
  3556. else
  3557. {
  3558. for (int index = 0; index < AC_QUANTITY; index++)
  3559. {
  3560. if ((gunIndex == 0) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == (gunIndex - 1)))
  3561. {
  3562. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING) // S_PRECHARGE
  3563. {
  3564. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3565. }
  3566. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  3567. {
  3568. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
  3569. }
  3570. else
  3571. {
  3572. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3573. }
  3574. goto end;
  3575. }
  3576. }//END FOR AC_QUANTITY
  3577. }// END FOR AC ELSE
  3578. }//END FOR AvailabilityTypeStr[Inoperative]
  3579. if(strcmp((const char *)typeStr, AvailabilityTypeStr[Operative]) == 0)
  3580. {
  3581. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  3582. //check Transaction active
  3583. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  3584. {
  3585. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  3586. {
  3587. if (((gunIndex == 0)|| (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (gunIndex - 1))) &&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT
  3588. {
  3589. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3590. goto end;
  3591. }
  3592. }//END FOR CHAdeMO_QUANTITY
  3593. for (int index = 0; index < CCS_QUANTITY; index++)
  3594. {
  3595. if (((gunIndex == 0)|| (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (gunIndex - 1)))&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT
  3596. {
  3597. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3598. goto end;
  3599. }
  3600. }//END FOR CCS_QUANTITY
  3601. for (int index = 0; index < GB_QUANTITY; index++)
  3602. {
  3603. if (((gunIndex == 0)||(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (gunIndex - 1)))&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT
  3604. {
  3605. ShmOCPP16Data->CsMsg.bits[gunIndex - 1].ChangeAvailabilityReq = 1;
  3606. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3607. goto end;
  3608. }
  3609. }// END FOR GB_QUANTITY
  3610. //sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3611. }
  3612. else
  3613. {
  3614. for (int index = 0; index < AC_QUANTITY; index++)
  3615. {
  3616. if (((gunIndex == 0)|| (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == (gunIndex - 1))) &&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT
  3617. {
  3618. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3619. goto end;
  3620. }
  3621. }//END FOR CHAdeMO_QUANTITY
  3622. }//END FOR AC ELSE
  3623. }//END FOR AvailabilityTypeStr[Operative]
  3624. end:
  3625. if(gunIndex != 0)
  3626. {
  3627. sprintf((char *)ShmOCPP16Data->ChangeAvailability[gunIndex - 1].ResponseStatus, "%s", comfirmstr );
  3628. }
  3629. else
  3630. {
  3631. sprintf((char *)ShmOCPP16Data->ChangeAvailability[0].ResponseStatus, "%s", comfirmstr );
  3632. }
  3633. sendChangeAvailabilityConfirmation(uuid, comfirmstr);
  3634. //ShmOCPP16Data->CsMsg.bits[gunIndex - 1].ChangeAvailabilityConf = 1;
  3635. return result;
  3636. }
  3637. int handleChangeConfigurationRequest(char *uuid, char *payload)
  3638. {
  3639. mtrace();
  3640. int result = FAIL;
  3641. char sstr[100]={0};
  3642. char keystr[40]={0};
  3643. char valuestr[16]={0};
  3644. char *loc;
  3645. int c = 0;
  3646. char comfirmstr[20];
  3647. DEBUG_ERROR("handle ChangeConfigurationRequest\n");
  3648. /***key ****/
  3649. loc = strstr(payload, "key");
  3650. memset(sstr ,0, sizeof(sstr) );
  3651. c = 0;
  3652. while ((loc != NULL) &&(loc[3+strlen("key")+c] != '\"'))
  3653. {
  3654. sstr[c] = loc[3+strlen("key")+c];
  3655. c++;
  3656. }
  3657. sstr[c] = '\0';
  3658. strcpy(keystr, sstr);
  3659. /***value ****/
  3660. loc = strstr(payload, "value");
  3661. memset(sstr ,0, sizeof(sstr) );
  3662. c = 0;
  3663. while ((loc != NULL) &&(loc[3+strlen("value")+c] != '\"'))
  3664. {
  3665. sstr[c] = loc[3+strlen("value")+c];
  3666. c++;
  3667. }
  3668. sstr[c] = '\0';
  3669. strcpy(valuestr, sstr);
  3670. if((uuid==NULL) || (payload ==NULL) )
  3671. {
  3672. #ifdef Debug
  3673. DEBUG_INFO("payload is null\n");
  3674. #endif
  3675. sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Rejected] );
  3676. }
  3677. else
  3678. {
  3679. int status = setKeyValue(keystr, valuestr);
  3680. switch(status)
  3681. {
  3682. case ConfigurationStatus_Accepted:
  3683. sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Accepted]);
  3684. ShmOCPP16Data->MsMsg.bits.ChangeConfigurationReq = 1;
  3685. break;
  3686. case ConfigurationStatus_Rejected:
  3687. sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Rejected] );
  3688. break;
  3689. case RebootRequired:
  3690. sprintf(comfirmstr, "%s", ConfigurationStatusStr[RebootRequired]);
  3691. break;
  3692. case NotSupported:
  3693. sprintf(comfirmstr, "%s", ConfigurationStatusStr[NotSupported] );
  3694. break;
  3695. default:
  3696. break;
  3697. }
  3698. }
  3699. //confirmation.setStatus(ConfigurationStatus.Rejected);
  3700. sendChangeConfigurationConfirmation(uuid, comfirmstr);
  3701. ShmOCPP16Data->MsMsg.bits.ChangeConfigurationConf = 1;
  3702. return result;
  3703. }
  3704. int handleClearCacheRequest(char *uuid, char *payload)
  3705. {
  3706. mtrace();
  3707. int result = FAIL;
  3708. char comfirmstr[20];
  3709. int fd;
  3710. char rmFileCmd[100]={0};
  3711. struct stat stats;
  3712. DEBUG_ERROR("handle ClearCacheRequest\n");
  3713. stat("../Storage/OCPP", &stats);
  3714. // Check for directory existence
  3715. if (S_ISDIR(stats.st_mode) == 1)
  3716. {
  3717. //DEBUG_ERROR("\n OCPP directory exist \n");
  3718. }
  3719. else
  3720. {
  3721. DEBUG_ERROR("\n OCPP directory not exist, create dir \n");
  3722. sprintf(rmFileCmd,"mkdir -p %s","../Storage/OCPP");
  3723. system(rmFileCmd);
  3724. }
  3725. memset(&rmFileCmd, 0, sizeof rmFileCmd);
  3726. if((access(AuthorizationCache_JSON,F_OK))!=-1)
  3727. {
  3728. DEBUG_ERROR("AuthorizationCache file exist.\n");
  3729. }
  3730. else
  3731. {
  3732. DEBUG_ERROR("AuthorizationCache file not exist\n");
  3733. FILE *log = fopen(AuthorizationCache_JSON, "w+");
  3734. if(log == NULL)
  3735. {
  3736. DEBUG_ERROR("AuthorizationCache file is NULL\n");
  3737. sprintf(comfirmstr, "%s", ClearCacheStatusStr[ClearCacheStatus_Rejected] );
  3738. goto end;
  3739. }
  3740. else
  3741. {
  3742. fclose(log);
  3743. }
  3744. }
  3745. fd = open(AuthorizationCache_JSON,O_RDWR);
  3746. if(fd < 0)
  3747. {
  3748. DEBUG_ERROR("open AuthorizationCache file failed\n");
  3749. sprintf(comfirmstr, "%s", ClearCacheStatusStr[ClearCacheStatus_Rejected] );
  3750. }
  3751. else
  3752. {
  3753. DEBUG_ERROR("open AuthorizationCache file successful\n");
  3754. //* 清空? 件 */
  3755. ftruncate(fd,0);
  3756. //* ? 新设置? 件? 移??*/
  3757. lseek(fd,0,SEEK_SET);
  3758. close(fd);
  3759. sprintf(comfirmstr, "%s", ClearCacheStatusStr[ClearCacheStatus_Accepted] );
  3760. //ShmOCPP16Data->MsMsg.bits.ClearCacheReq = 1; //OCPP handle byself
  3761. }
  3762. end:
  3763. sendClearCacheConfirmation(uuid, comfirmstr);
  3764. //ShmOCPP16Data->MsMsg.bits.ClearCacheConf = 1; //OCPP handle byself
  3765. return result;
  3766. }
  3767. int handleClearChargingProfileRequest(char *uuid, char *payload)
  3768. {
  3769. mtrace();
  3770. int result = FAIL;
  3771. int resultRename;
  3772. int connectorIdInt, chargingProfileIdInt, stackLevelInt;
  3773. char chargingProfilePurposeStr[26]={0};
  3774. int tempconnectorIdInt, tempchargingProfileIdInt, tempstackLevelInt;
  3775. char tempchargingProfilePurposeStr[26]={0};
  3776. char sstr[160]={0};//sstr[200]={ 0 };
  3777. char str[100]={0};
  3778. int c = 0;
  3779. //int i = 0;
  3780. //char * pch;
  3781. char *loc;
  3782. char fname[200];
  3783. char comfirmstr[20]={0};
  3784. char word[1000]={0};
  3785. int clearflag = FALSE;
  3786. int chargingProfileIdIsNULL = FALSE;
  3787. int connectorIsNULL = FALSE;
  3788. FILE *fptr1, *fptr2;
  3789. char temp[] = "../Storage/OCPP/ClearChargingProfiletemp.json";
  3790. int n_chargingProfile=0;
  3791. char sLineWord[1060]={0};
  3792. DEBUG_ERROR("handle ClearChargingProfileRequest\n");
  3793. connectorIdInt= chargingProfileIdInt= stackLevelInt =0;
  3794. //***id ****/
  3795. c = 0;
  3796. loc = strstr(payload, "id");
  3797. memset(sstr ,0, sizeof(sstr) );
  3798. if(loc == NULL)
  3799. {
  3800. chargingProfileIdIsNULL = TRUE;
  3801. }
  3802. while ((loc != NULL) &&(loc[strlen("id")+2+c] != ',') )
  3803. {
  3804. sstr[c] = loc[strlen("id")+2+c];
  3805. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3806. c++;
  3807. }
  3808. sstr[c] = '\0';
  3809. chargingProfileIdInt = atoi(sstr);
  3810. //***connectorId ****/
  3811. c=0;
  3812. loc = strstr(payload, "connectorId");
  3813. memset(sstr ,0, sizeof(sstr) );
  3814. if(loc == NULL)
  3815. {
  3816. connectorIsNULL = TRUE;
  3817. }
  3818. while ((loc != NULL) &&(loc[strlen("connectorId")+2+c] != ','))
  3819. {
  3820. sstr[c] = loc[strlen("connectorId")+2+c];
  3821. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3822. c++;
  3823. }
  3824. sstr[c] = '\0';
  3825. connectorIdInt = atoi(sstr);
  3826. //***chargingProfilePurpose ****/
  3827. loc = strstr(payload, "chargingProfilePurpose");
  3828. memset(sstr ,0, sizeof(sstr) );
  3829. c = 0;
  3830. while ((loc != NULL) &&(loc[3+strlen("chargingProfilePurpose")+c] != '\"'))
  3831. {
  3832. sstr[c] = loc[3+strlen("chargingProfilePurpose")+c];
  3833. c++;
  3834. }
  3835. sstr[c] = '\0';
  3836. strcpy(chargingProfilePurposeStr, sstr);
  3837. //***stackLevel ****/
  3838. c=0;
  3839. loc = strstr(payload, "stackLevel");
  3840. memset(sstr ,0, sizeof(sstr) );
  3841. while ((loc != NULL) &&((loc[strlen("stackLevel")+2+c] != '}') && (loc[strlen("stackLevel")+2+c] != ',')))
  3842. {
  3843. sstr[c] = loc[strlen("stackLevel")+2+c];
  3844. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3845. c++;
  3846. }
  3847. sstr[c] = '\0';
  3848. stackLevelInt = atoi(sstr);
  3849. if(connectorIsNULL == FALSE)
  3850. {
  3851. switch(connectorIdInt)
  3852. {
  3853. case 0:
  3854. if(strcmp(chargingProfilePurposeStr,"ChargePointMaxProfile")==0)
  3855. {
  3856. strcpy(fname, ChargePointMaxProfile_JSON);
  3857. }
  3858. else
  3859. {
  3860. strcpy(fname, TxDefaultProfile_0_JSON);
  3861. }
  3862. break;
  3863. case 1:
  3864. if(strcmp(chargingProfilePurposeStr,"TxDefaultProfile")==0)
  3865. {
  3866. strcpy(fname, TxDefaultProfile_1_JSON);
  3867. }
  3868. else
  3869. {
  3870. strcpy(fname, TxProfile_1_JSON);
  3871. }
  3872. break;
  3873. case 2:
  3874. if(strcmp(chargingProfilePurposeStr,"TxDefaultProfile")==0)
  3875. {
  3876. strcpy(fname, TxDefaultProfile_2_JSON);
  3877. }
  3878. else
  3879. {
  3880. strcpy(fname, TxProfile_2_JSON);
  3881. }
  3882. break;
  3883. default:
  3884. strcpy(fname, ChargePointMaxProfile_JSON );
  3885. break;
  3886. }
  3887. }
  3888. else
  3889. {
  3890. strcpy(fname, ChargePointMaxProfile_JSON );
  3891. }
  3892. fptr1 = fopen(fname, "r");
  3893. if (!fptr1)
  3894. {
  3895. //file not exist
  3896. DEBUG_ERROR("Unable to open the input file!!\n");
  3897. fptr1 = fopen(fname, "w+");
  3898. }
  3899. fclose(fptr1);
  3900. if(connectorIsNULL == FALSE && (connectorIdInt != 0) && ( (connectorIdInt-1) > gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/ ) )
  3901. {
  3902. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Unknown] );
  3903. goto end;
  3904. }
  3905. if((connectorIsNULL == FALSE) && (connectorIdInt == 0) )
  3906. {
  3907. //clear the whole contents of a file in C
  3908. fclose(fopen(ChargePointMaxProfile_JSON, "w"));
  3909. fclose(fopen(TxDefaultProfile_0_JSON, "w"));
  3910. fclose(fopen(TxDefaultProfile_1_JSON, "w"));
  3911. fclose(fopen(TxDefaultProfile_2_JSON, "w"));
  3912. fclose(fopen(TxProfile_1_JSON, "w"));
  3913. fclose(fopen(TxProfile_2_JSON, "w"));
  3914. #if 0
  3915. fclose(fopen(ChargingProfile_0_JSON, "w"));
  3916. fclose(fopen(ChargingProfile_1_JSON, "w"));
  3917. fclose(fopen(ChargingProfile_2_JSON, "w"));
  3918. #endif
  3919. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
  3920. }
  3921. else
  3922. {
  3923. fptr1 = fopen(fname, "r");
  3924. fptr2 = fopen(temp, "w+");
  3925. while(fscanf(fptr1, "%s", word) != EOF)
  3926. {
  3927. DEBUG_INFO("word=%s\n",word);
  3928. if(strcmp(word, "chargingProfileId") == 0)
  3929. {
  3930. n_chargingProfile = n_chargingProfile + 1;
  3931. printf("Found\n");
  3932. }
  3933. }
  3934. rewind(fptr1);
  3935. //search Charging Profile Element
  3936. //int i= 0;
  3937. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL )
  3938. {
  3939. //*************************tempconnectorIdInt*********************************/
  3940. loc = strstr(sLineWord, "connectorId");
  3941. c = 0;
  3942. memset(sstr ,0, sizeof(sstr) );
  3943. while (loc[strlen("connectorId")+2+c] != ',')
  3944. {
  3945. sstr[c] = loc[strlen("connectorId")+2+c];
  3946. c++;
  3947. }
  3948. sstr[c] = '\0';
  3949. tempconnectorIdInt = atoi(sstr);
  3950. //chargingProfileId
  3951. c = 0;
  3952. loc = strstr(sLineWord, "chargingProfileId");
  3953. memset(sstr ,0, sizeof(sstr) );
  3954. while (loc[strlen("chargingProfileId")+2+c] != ',')
  3955. {
  3956. sstr[c] = loc[strlen("chargingProfileId")+2+c];
  3957. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3958. c++;
  3959. }
  3960. sstr[c] = '\0';
  3961. tempchargingProfileIdInt = atoi(sstr);
  3962. //stackLevel
  3963. c = 0;
  3964. loc = strstr(sLineWord, "stackLevel");
  3965. memset(sstr ,0, sizeof(sstr) );
  3966. while (loc[strlen("stackLevel")+2+c] != ',')
  3967. {
  3968. sstr[c] = loc[strlen("stackLevel")+2+c];
  3969. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3970. c++;
  3971. }
  3972. sstr[c] = '\0';
  3973. tempstackLevelInt = atoi(sstr);
  3974. c = 0;
  3975. loc = strstr(sLineWord, "chargingProfilePurpose");
  3976. memset(sstr ,0, sizeof(sstr) );
  3977. while (loc[3+strlen("chargingProfilePurpose")+c] != '\"')
  3978. {
  3979. sstr[c] = loc[3+strlen("chargingProfilePurpose")+c];
  3980. c++;
  3981. }
  3982. sstr[c] = '\0';
  3983. strcpy(tempchargingProfilePurposeStr, sstr);
  3984. if(chargingProfileIdIsNULL == FALSE)
  3985. {
  3986. DEBUG_INFO("\n OCPP clear 0 !!!\n");
  3987. if(tempchargingProfileIdInt == chargingProfileIdInt)
  3988. {
  3989. DEBUG_INFO("\n OCPP clear 0-1 !!!\n");
  3990. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
  3991. clearflag = TRUE;
  3992. break;//continue;
  3993. }
  3994. else
  3995. {
  3996. DEBUG_INFO("\n OCPP clear 0-2 !!!\n");
  3997. //json_object_array_add(newHeatMap, jsonitem);
  3998. fprintf(fptr2, sLineWord);//writing data into file
  3999. }
  4000. }
  4001. else
  4002. {
  4003. if((connectorIsNULL == FALSE) && (connectorIdInt != 0) && ( connectorIdInt == tempconnectorIdInt) && (tempstackLevelInt == stackLevelInt))
  4004. {
  4005. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
  4006. clearflag = TRUE;
  4007. break;//continue;
  4008. }
  4009. else if((connectorIsNULL == TRUE) && ((tempstackLevelInt == stackLevelInt) || (strcmp(tempchargingProfilePurposeStr, chargingProfilePurposeStr) == 0)))
  4010. {
  4011. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
  4012. clearflag = TRUE;
  4013. break;//continue;
  4014. }
  4015. else
  4016. {
  4017. //json_object_array_add(newHeatMap, jsonitem);
  4018. fprintf(fptr2, sLineWord);//writing data into file
  4019. }
  4020. }
  4021. memset(sLineWord, 0, sizeof sLineWord);
  4022. }
  4023. if(clearflag == FALSE)
  4024. {
  4025. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Unknown] );
  4026. goto end;
  4027. }
  4028. fclose(fptr1);
  4029. fclose(fptr2);
  4030. sprintf(str,"rm -f %s",fname);
  4031. system(str);
  4032. resultRename = rename(temp, fname);
  4033. if(resultRename == 0)
  4034. {
  4035. DEBUG_ERROR("File ChargingProfile renamed successfully");
  4036. }
  4037. else
  4038. {
  4039. DEBUG_ERROR("Error: unable to rename the ChargingProfile file");
  4040. }
  4041. }
  4042. end:
  4043. sendClearChargingProfileConfirmation(uuid, comfirmstr);
  4044. return result;
  4045. }
  4046. int handleDataTransferRequest(char *uuid, char *payload)
  4047. {
  4048. mtrace();
  4049. int result = FAIL;
  4050. //Payload={"vendorId":"Phihong","messageId":"MSGID","data":"Data1"}
  4051. char tempvendorId[255]={0};
  4052. char tempmessageId[50]={0};
  4053. char tempdata[50]={0};
  4054. char sstr[160]={0};//sstr[200]={ 0 };
  4055. char message[80]={0};
  4056. int c = 0;
  4057. char *loc;
  4058. DEBUG_INFO("handle DataTransferRequest\n");
  4059. if((uuid != NULL) && (payload != NULL))
  4060. {
  4061. //===============================
  4062. // vendorId
  4063. //===============================
  4064. c = 0;
  4065. loc = strstr(payload, "vendorId");
  4066. while (loc[strlen("vendorId")+3+c] != '\"')
  4067. {
  4068. sstr[c] = loc[strlen("vendorId")+3+c];
  4069. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4070. c++;
  4071. }
  4072. sstr[c] = '\0';
  4073. strcpy(tempvendorId,sstr);
  4074. //===============================
  4075. // messageId
  4076. //===============================
  4077. memset(sstr ,0, sizeof(sstr) );
  4078. c = 0;
  4079. loc = strstr(payload, "messageId");
  4080. while (loc[strlen("messageId")+3+c] != '\"')
  4081. {
  4082. sstr[c] = loc[strlen("messageId")+3+c];
  4083. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4084. c++;
  4085. }
  4086. sstr[c] = '\0';
  4087. strcpy(tempmessageId,sstr);
  4088. //===============================
  4089. // data
  4090. //===============================
  4091. memset(sstr ,0, sizeof(sstr) );
  4092. c = 0;
  4093. loc = strstr(payload, "data");
  4094. printf("loc=%s\n",loc);
  4095. while (loc[strlen("data")+3+c] != '\"')
  4096. {
  4097. sstr[c] = loc[strlen("data")+3+c];
  4098. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4099. c++;
  4100. }
  4101. sstr[c] = '\0';
  4102. strcpy(tempdata,sstr);
  4103. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"data\":\"vendorId-%s messageId-%s data-%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "Rejected", tempvendorId, tempmessageId, tempdata );
  4104. }
  4105. else
  4106. {
  4107. char guid[37]={0};
  4108. random_uuid(guid);
  4109. //[2,"1577349264923","DataTransfer",{"vendorId":"Phihong","messageId":"MSGID","data":"Data1"}]
  4110. sprintf(message,"[%d,\"%s\",\"%s\",{\"vendorId\":\"Phihong\",\"messageId\":\"MSGID\",\"data\":\"Data1\"}]",MESSAGE_TYPE_CALL, guid, "DataTransfer");
  4111. }
  4112. LWS_Send(message);
  4113. return result;
  4114. }
  4115. #if 0
  4116. long long diff_tm(struct tm *a, struct tm *b) {
  4117. return a->tm_sec - b->tm_sec
  4118. + 60LL * (a->tm_min - b->tm_min)
  4119. + 3600LL * (a->tm_hour - b->tm_hour)
  4120. + 86400LL * (a->tm_yday - b->tm_yday)
  4121. + (a->tm_year - 70) * 31536000LL
  4122. - (a->tm_year - 69) / 4 * 86400LL
  4123. + (a->tm_year - 1) / 100 * 86400LL
  4124. - (a->tm_year + 299) / 400 * 86400LL
  4125. - (b->tm_year - 70) * 31536000LL
  4126. + (b->tm_year - 69) / 4 * 86400LL
  4127. - (b->tm_year - 1) / 100 * 86400LL
  4128. + (b->tm_year + 299) /400 * 86400LL;
  4129. }
  4130. #endif
  4131. int handleGetCompositeScheduleRequest(char *uuid, char *payload)
  4132. {
  4133. mtrace();
  4134. int result = FAIL;
  4135. int connectorIdInt, durationInt;
  4136. char chargingRateUnitStr[4]={0};
  4137. //int tempconnectorIdInt,
  4138. int tempdurationInt;
  4139. float tempminChargingRateFloat = 0.0;
  4140. char tempvalidFromStr[30]={0},tempchargingRateUnitStr[4]={0}, tempstartScheduleStr[30]={0};
  4141. int tempStartPeriodInt=0;
  4142. float tempLimitInt=0.0;//0.1;
  4143. int tempNumberPhasesInt=0;
  4144. char fname[200];
  4145. char comfirmstr[20];
  4146. //float totallimit =0.0;
  4147. float MinChargingRate =0.0;
  4148. double diff_t;
  4149. struct tm tp;
  4150. //int clearflag = FALSE;
  4151. FILE *fptr1;//, *fptr2;
  4152. //char temp[] = "../Storage/OCPP/temp.json";
  4153. int c = 0;
  4154. //int i = 0;
  4155. char * pch;
  4156. char *loc;
  4157. char sstr[200]={ 0 };
  4158. int n_chargingProfile = 0;
  4159. int n_SchedulePeriods = 0;
  4160. char SchedulePeriodList[10][200]={0};
  4161. char sLineWord[800]={0};
  4162. //int n_periods = 0;
  4163. char word[1000]={0};
  4164. int confirmPeriods = 0;
  4165. struct StructProfile ChargePointMaxProfile;
  4166. struct StructProfile TxDefaultProfile;
  4167. struct StructProfile TxProfile;
  4168. struct StructProfile TxDefaultProfiletemp[2]={0};
  4169. int TxDefaultProfileFileIsNull=FALSE;
  4170. int ChargePointMaxProfileIsNull=FALSE;
  4171. int TxProfileIsNull=FALSE;
  4172. memset(&ChargePointMaxProfile,0,sizeof(struct StructProfile));
  4173. memset(&TxDefaultProfile,0,sizeof(struct StructProfile));
  4174. memset(&TxProfile,0,sizeof(struct StructProfile));
  4175. c=0;
  4176. loc = strstr(payload, "connectorId");
  4177. memset(sstr ,0, sizeof(sstr) );
  4178. while ((loc[strlen("connectorId")+2+c] != '}') && (loc[strlen("connectorId")+2+c] != ','))
  4179. {
  4180. sstr[c] = loc[strlen("connectorId")+2+c];
  4181. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4182. c++;
  4183. }
  4184. sstr[c] = '\0';
  4185. connectorIdInt = atoi(sstr);
  4186. c=0;
  4187. loc = strstr(payload, "duration");
  4188. memset(sstr ,0, sizeof(sstr) );
  4189. while ((loc[strlen("duration")+2+c] != '}') && (loc[strlen("duration")+2+c] != ','))
  4190. {
  4191. sstr[c] = loc[strlen("duration")+2+c];
  4192. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4193. c++;
  4194. }
  4195. sstr[c] = '\0';
  4196. durationInt = atoi(sstr);
  4197. c = 0;
  4198. loc = strstr(payload, "chargingRateUnit");
  4199. memset(sstr ,0, sizeof(sstr) );
  4200. if(loc == NULL)
  4201. {
  4202. }
  4203. else
  4204. {
  4205. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  4206. {
  4207. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  4208. c++;
  4209. }
  4210. sstr[c] = '\0';
  4211. strcpy(chargingRateUnitStr, sstr);
  4212. }
  4213. memset(ShmOCPP16Data->GetCompositeSchedule, 0, sizeof(struct StructChargingSchedulePeriod)*gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/ );
  4214. if(connectorIdInt==0) // connectorId is 0
  4215. {
  4216. //******************************ChargePointMaxProfile*****************************************************/
  4217. strcpy(fname, ChargePointMaxProfile_JSON );
  4218. char word[30]={0};
  4219. char sLineWord[1060]={0};
  4220. int n_chargingProfile=0;
  4221. ChargePointMaxProfileIsNull=TRUE;
  4222. if((access(fname,F_OK))!=-1)
  4223. {
  4224. fptr1 = fopen(fname, "r");
  4225. int c;
  4226. c = fgetc(fptr1);
  4227. //DEBUG_INFO("c:%d\n",c);
  4228. rewind(fptr1);
  4229. if(c == EOF)
  4230. {
  4231. DEBUG_INFO("\n End of file ChargingProfile reached.");
  4232. ChargePointMaxProfileIsNull=TRUE;
  4233. fclose(fptr1);
  4234. }
  4235. else
  4236. {
  4237. ChargePointMaxProfileIsNull=FALSE;
  4238. while(fscanf(fptr1, "%s", word) != EOF)
  4239. {
  4240. if(strcmp(word, "chargingProfileId") == 0)
  4241. {
  4242. n_chargingProfile = n_chargingProfile + 1;
  4243. printf("Found\n");
  4244. }
  4245. }
  4246. rewind(fptr1);
  4247. //search Charging Profile Element
  4248. int i= 0;
  4249. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
  4250. #if 0
  4251. /***********connectorId****************/
  4252. c = 0;
  4253. loc = strstr(sLineWord, "connectorId");
  4254. // printf("loc=%s\n",loc);
  4255. memset(sstr ,0, sizeof(sstr) );
  4256. while (loc[strlen("connectorId")+2+c] != ',')
  4257. {
  4258. sstr[c] = loc[strlen("connectorId")+2+c];
  4259. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4260. c++;
  4261. }
  4262. sstr[c] = '\0';
  4263. tempconnectorIdInt = atoi(sstr);
  4264. #endif
  4265. //***********validFrom**************/
  4266. c = 0;
  4267. loc = strstr(sLineWord, "validFrom");
  4268. //DEBUG_INFO("loc=%s\n",loc);
  4269. memset(sstr ,0, sizeof(sstr) );
  4270. if(loc != NULL)
  4271. {
  4272. while (loc[3+strlen("validFrom")+c] != '\"')
  4273. {
  4274. sstr[c] = loc[3+strlen("validFrom")+c];
  4275. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4276. c++;
  4277. }
  4278. sstr[c] = '\0';
  4279. DEBUG_INFO("validFrom=%s\n",sstr);
  4280. strcpy(tempvalidFromStr,sstr);
  4281. }
  4282. else
  4283. {
  4284. strcpy(tempvalidFromStr,"");
  4285. }
  4286. //**********startSchedule**********/
  4287. c = 0;
  4288. loc = strstr(sLineWord, "startSchedule");
  4289. //DEBUG_INFO("loc=%s\n",loc);
  4290. memset(sstr ,0, sizeof(sstr) );
  4291. while (loc[3+strlen("startSchedule")+c] != '\"')
  4292. {
  4293. sstr[c] = loc[3+strlen("startSchedule")+c];
  4294. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4295. c++;
  4296. }
  4297. sstr[c] = '\0';
  4298. strcpy(tempstartScheduleStr, sstr);
  4299. //**********startSchedule**********/
  4300. c = 0;
  4301. loc = strstr(sLineWord, "chargingRateUnit");
  4302. memset(sstr ,0, sizeof(sstr) );
  4303. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  4304. {
  4305. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  4306. c++;
  4307. }
  4308. sstr[c] = '\0';
  4309. strcpy(tempchargingRateUnitStr, sstr);
  4310. //**********minChargingRate*******/
  4311. c = 0;
  4312. loc = strstr(sLineWord, "minChargingRate");
  4313. //printf("loc=%s\n",loc);
  4314. if(loc != NULL)
  4315. {
  4316. memset(sstr ,0, sizeof(sstr) );
  4317. while (loc[3+strlen("minChargingRate")+c] != '\"')
  4318. {
  4319. sstr[c] = loc[3+strlen("minChargingRate")+c];
  4320. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4321. c++;
  4322. }
  4323. sstr[c] = '\0';
  4324. tempminChargingRateFloat = atof(sstr);
  4325. }
  4326. else
  4327. {
  4328. tempminChargingRateFloat = 0.0;
  4329. }
  4330. //
  4331. strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  4332. tp.tm_isdst = -1;
  4333. time_t utc = mktime(&tp);
  4334. // current time
  4335. time_t t = time(NULL);
  4336. diff_t = difftime(t, utc);
  4337. //parsing strings to words
  4338. i = 0;
  4339. loc = strstr(sLineWord, "chargingSchedulePeriod");
  4340. loc = loc+3+strlen("chargingSchedulePeriod");
  4341. pch = strtok(loc ,"{");
  4342. while (pch != NULL)
  4343. {
  4344. strcpy(SchedulePeriodList[i], pch);
  4345. //printf ("SchedulePeriodList[%d]:%s\n",i,SchedulePeriodList[i]);
  4346. //printf ("%s\n",pch);
  4347. pch = strtok (NULL, "{");
  4348. i = i + 1;
  4349. }
  4350. n_SchedulePeriods = i;
  4351. for(int i=0;i<n_SchedulePeriods;i++)
  4352. {
  4353. //*************startPeriod****************/
  4354. c = 0;
  4355. loc = strstr(SchedulePeriodList[i], "startPeriod");
  4356. memset(sstr ,0, sizeof(sstr) );
  4357. while (loc[strlen("startPeriod")+2+c] != ',')
  4358. {
  4359. sstr[c] = loc[strlen("startPeriod")+2+c];
  4360. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4361. c++;
  4362. }
  4363. sstr[c] = '\0';
  4364. tempStartPeriodInt = atoi(sstr);
  4365. //*************limit****************/
  4366. c = 0;
  4367. loc = strstr(SchedulePeriodList[i], "limit");
  4368. memset(sstr ,0, sizeof(sstr) );
  4369. while (loc[strlen("limit")+2+c] != ',')
  4370. {
  4371. sstr[c] = loc[strlen("limit")+2+c];
  4372. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4373. c++;
  4374. }
  4375. sstr[c] = '\0';
  4376. tempLimitInt = atof(sstr);
  4377. //*************numberPhases****************/
  4378. c = 0;
  4379. loc = strstr(SchedulePeriodList[i], "numberPhases");
  4380. memset(sstr ,0, sizeof(sstr) );
  4381. while (loc[strlen("numberPhases")+2+c] != ',')
  4382. {
  4383. sstr[c] = loc[strlen("numberPhases")+2+c];
  4384. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4385. c++;
  4386. }
  4387. sstr[c] = '\0';
  4388. tempNumberPhasesInt = atoi(sstr);
  4389. ChargePointMaxProfile.Duration = durationInt;
  4390. ChargePointMaxProfile.TotalPeriod = n_SchedulePeriods;
  4391. ChargePointMaxProfile.Period[i].Limit = tempLimitInt;
  4392. ChargePointMaxProfile.Period[i].NumberPhases = tempNumberPhasesInt;
  4393. ChargePointMaxProfile.Period[i].StartPeriod = tempStartPeriodInt;
  4394. }
  4395. if(MinChargingRate < tempminChargingRateFloat)
  4396. MinChargingRate = tempminChargingRateFloat;
  4397. }
  4398. }// End of file ChargingProfile
  4399. } //THE END OF ACCESS ChargePointMaxProfile
  4400. //******************************TxDefaultProfile***********************************************/
  4401. strcpy(fname, TxDefaultProfile_0_JSON);
  4402. memset(word, 0, 30);
  4403. memset(sLineWord, 0, 1060);
  4404. //char word[30]={0};
  4405. //char sLineWord[1060]={0};
  4406. n_chargingProfile=0;
  4407. TxDefaultProfileFileIsNull=TRUE;
  4408. if((access(fname,F_OK))!=-1)
  4409. {
  4410. fptr1 = fopen(fname, "r");
  4411. c = 0;
  4412. c = fgetc(fptr1);
  4413. //DEBUG_INFO("c:%d\n",c);
  4414. rewind(fptr1);
  4415. if(c == EOF)
  4416. {
  4417. DEBUG_INFO("\n End of file ChargingProfile reached.");
  4418. TxDefaultProfileFileIsNull=TRUE;
  4419. fclose(fptr1);
  4420. }
  4421. else
  4422. {
  4423. TxDefaultProfileFileIsNull=FALSE;
  4424. while(fscanf(fptr1, "%s", word) != EOF)
  4425. {
  4426. if(strcmp(word, "chargingProfileId") == 0)
  4427. {
  4428. n_chargingProfile = n_chargingProfile + 1;
  4429. printf("Found\n");
  4430. }
  4431. }
  4432. rewind(fptr1);
  4433. //search Charging Profile Element
  4434. int i= 0;
  4435. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
  4436. #if 0
  4437. /***********connectorId****************/
  4438. c = 0;
  4439. loc = strstr(sLineWord, "connectorId");
  4440. // printf("loc=%s\n",loc);
  4441. memset(sstr ,0, sizeof(sstr) );
  4442. while (loc[strlen("connectorId")+2+c] != ',')
  4443. {
  4444. sstr[c] = loc[strlen("connectorId")+2+c];
  4445. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4446. c++;
  4447. }
  4448. sstr[c] = '\0';
  4449. DEBUG_INFO("connectorId=%d\n",atoi(sstr));
  4450. tempconnectorIdInt = atoi(sstr);
  4451. #endif
  4452. //***********validFrom**************/
  4453. c = 0;
  4454. loc = strstr(sLineWord, "validFrom");
  4455. //DEBUG_INFO("loc=%s\n",loc);
  4456. memset(sstr ,0, sizeof(sstr) );
  4457. if(loc != NULL)
  4458. {
  4459. while (loc[3+strlen("validFrom")+c] != '\"')
  4460. {
  4461. sstr[c] = loc[3+strlen("validFrom")+c];
  4462. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4463. c++;
  4464. }
  4465. sstr[c] = '\0';
  4466. DEBUG_INFO("validFrom=%s\n",sstr);
  4467. strcpy(tempvalidFromStr,sstr);
  4468. }
  4469. else
  4470. {
  4471. strcpy(tempvalidFromStr,"");
  4472. }
  4473. //**********startSchedule**********/
  4474. c = 0;
  4475. loc = strstr(sLineWord, "startSchedule");
  4476. //DEBUG_INFO("loc=%s\n",loc);
  4477. memset(sstr ,0, sizeof(sstr) );
  4478. while (loc[3+strlen("startSchedule")+c] != '\"')
  4479. {
  4480. sstr[c] = loc[3+strlen("startSchedule")+c];
  4481. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4482. c++;
  4483. }
  4484. sstr[c] = '\0';
  4485. strcpy(tempstartScheduleStr, sstr);
  4486. DEBUG_INFO(" debug 3-1\n");
  4487. //**********startSchedule**********/
  4488. c = 0;
  4489. loc = strstr(sLineWord, "chargingRateUnit");
  4490. memset(sstr ,0, sizeof(sstr) );
  4491. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  4492. {
  4493. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  4494. c++;
  4495. }
  4496. sstr[c] = '\0';
  4497. strcpy(tempchargingRateUnitStr, sstr);
  4498. //**********minChargingRate*******/
  4499. c = 0;
  4500. loc = strstr(sLineWord, "minChargingRate");
  4501. //printf("loc=%s\n",loc);
  4502. if(loc != NULL)
  4503. {
  4504. memset(sstr ,0, sizeof(sstr) );
  4505. while (loc[3+strlen("minChargingRate")+c] != '\"')
  4506. {
  4507. sstr[c] = loc[3+strlen("minChargingRate")+c];
  4508. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4509. c++;
  4510. }
  4511. sstr[c] = '\0';
  4512. tempminChargingRateFloat = atof(sstr);
  4513. }
  4514. else
  4515. {
  4516. tempminChargingRateFloat = 0.0;
  4517. }
  4518. //
  4519. strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  4520. tp.tm_isdst = -1;
  4521. time_t utc = mktime(&tp);
  4522. // current time
  4523. time_t t = time(NULL);
  4524. diff_t = difftime(t, utc);
  4525. //parsing strings to words
  4526. i = 0;
  4527. loc = strstr(sLineWord, "chargingSchedulePeriod");
  4528. loc = loc+3+strlen("chargingSchedulePeriod");
  4529. pch = strtok(loc ,"{");
  4530. while (pch != NULL)
  4531. {
  4532. strcpy(SchedulePeriodList[i], pch);
  4533. //printf ("SchedulePeriodList[%d]:%s\n",i,SchedulePeriodList[i]);
  4534. //printf ("%s\n",pch);
  4535. pch = strtok (NULL, "{");
  4536. i = i + 1;
  4537. }
  4538. n_SchedulePeriods = i;
  4539. for(int i=0;i<n_SchedulePeriods;i++)
  4540. {
  4541. //*************startPeriod****************/
  4542. c = 0;
  4543. loc = strstr(SchedulePeriodList[i], "startPeriod");
  4544. memset(sstr ,0, sizeof(sstr) );
  4545. while (loc[strlen("startPeriod")+2+c] != ',')
  4546. {
  4547. sstr[c] = loc[strlen("startPeriod")+2+c];
  4548. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4549. c++;
  4550. }
  4551. sstr[c] = '\0';
  4552. tempStartPeriodInt = atoi(sstr);
  4553. //*************limit****************/
  4554. c = 0;
  4555. loc = strstr(SchedulePeriodList[i], "limit");
  4556. memset(sstr ,0, sizeof(sstr) );
  4557. while (loc[strlen("limit")+2+c] != ',')
  4558. {
  4559. sstr[c] = loc[strlen("limit")+2+c];
  4560. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4561. c++;
  4562. }
  4563. sstr[c] = '\0';
  4564. tempLimitInt = atof(sstr);
  4565. //*************numberPhases****************/
  4566. c = 0;
  4567. loc = strstr(SchedulePeriodList[i], "numberPhases");
  4568. memset(sstr ,0, sizeof(sstr) );
  4569. while (loc[strlen("numberPhases")+2+c] != ',')
  4570. {
  4571. sstr[c] = loc[strlen("numberPhases")+2+c];
  4572. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4573. c++;
  4574. }
  4575. sstr[c] = '\0';
  4576. tempNumberPhasesInt = atoi(sstr);
  4577. TxDefaultProfile.Duration = durationInt;
  4578. TxDefaultProfile.TotalPeriod = n_SchedulePeriods;
  4579. TxDefaultProfile.Period[i].Limit = tempLimitInt;
  4580. TxDefaultProfile.Period[i].NumberPhases = tempNumberPhasesInt;
  4581. TxDefaultProfile.Period[i].StartPeriod = tempStartPeriodInt;
  4582. }
  4583. if(MinChargingRate < tempminChargingRateFloat)
  4584. MinChargingRate = tempminChargingRateFloat;
  4585. }
  4586. }
  4587. }// the end of ACCESS TxDefaultProfile
  4588. // Composite Schedule
  4589. if((ChargePointMaxProfileIsNull==FALSE)&&(TxDefaultProfileFileIsNull==FALSE))
  4590. {
  4591. for(int index=0; index < TxDefaultProfile.TotalPeriod ; index++)
  4592. {
  4593. if(ChargePointMaxProfile.Period[0].Limit > TxDefaultProfile.Period[index].Limit)
  4594. {
  4595. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[index].Limit = TxDefaultProfile.Period[index].Limit;
  4596. }
  4597. else
  4598. {
  4599. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[index].Limit = ChargePointMaxProfile.Period[0].Limit;
  4600. }
  4601. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[index].NumberPhases = TxDefaultProfile.Period[index].NumberPhases; //for discussion
  4602. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[index].StartPeriod = TxDefaultProfile.Period[index].StartPeriod;
  4603. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.Duration = TxDefaultProfile.Duration;
  4604. }
  4605. }
  4606. //* Define temporary variables */
  4607. struct tm *gtime;
  4608. time_t now;
  4609. char buf[28];
  4610. /* Read the current system time */
  4611. time(&now);
  4612. /* Convert the system time to GMT (now UTC) */
  4613. gtime = gmtime(&now);
  4614. strftime(buf, 28, "%Y-%m-%dT%H:%M:%SZ", gtime);
  4615. // make .conf
  4616. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule,buf);
  4617. //MaxChargingProfilesInstalled is 10
  4618. // ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod = (struct StructChargingSchedulePeriod *) malloc(sizeof(struct StructChargingSchedulePeriod)* 9);
  4619. memset(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod, 0, sizeof(struct StructChargingSchedulePeriod)* 9);
  4620. //nPeriod = 1;
  4621. if(chargingRateUnitStr[0] != 0)
  4622. {
  4623. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit, chargingRateUnitStr );
  4624. }
  4625. else
  4626. {
  4627. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit, "" );
  4628. }
  4629. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.MinChargingRate = MinChargingRate;
  4630. sprintf(comfirmstr, "%s", GetCompositeScheduleStatusStr[GetCompositeScheduleStatus_Accepted] );
  4631. confirmPeriods = 1;
  4632. }
  4633. else if ((connectorIdInt > 0)&&((connectorIdInt -1) < gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/) )
  4634. {
  4635. //*****************************ChargePointMaxProfile******************************************/
  4636. strcpy(fname, ChargePointMaxProfile_JSON);
  4637. ChargePointMaxProfileIsNull=TRUE;
  4638. if((access(ChargePointMaxProfile_JSON,F_OK))!=-1)
  4639. {
  4640. fptr1 = fopen(fname, "r");
  4641. int c;
  4642. c = fgetc(fptr1);
  4643. //DEBUG_INFO("c:%d\n",c);
  4644. rewind(fptr1);
  4645. if(c == EOF)
  4646. {
  4647. DEBUG_INFO("\n End of file reached.");
  4648. ChargePointMaxProfileIsNull=TRUE;
  4649. fclose(fptr1);
  4650. }
  4651. else
  4652. {
  4653. ChargePointMaxProfileIsNull=FALSE;
  4654. while(fscanf(fptr1, "%s", word) != EOF)
  4655. {
  4656. if(strcmp(word, "chargingProfileId") == 0)
  4657. {
  4658. n_chargingProfile = n_chargingProfile + 1;
  4659. }
  4660. }
  4661. rewind(fptr1);
  4662. //search Charging Profile Element
  4663. int i = 0;
  4664. int j = 0;
  4665. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
  4666. #if 0
  4667. /***********connectorId****************/
  4668. c = 0;
  4669. loc = strstr(sLineWord, "connectorId");
  4670. memset(sstr ,0, sizeof(sstr) );
  4671. while (loc[strlen("connectorId")+2+c] != ',')
  4672. {
  4673. sstr[c] = loc[strlen("connectorId")+2+c];
  4674. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4675. c++;
  4676. }
  4677. sstr[c] = '\0';
  4678. tempconnectorIdInt = atoi(sstr);
  4679. #endif
  4680. //***********validFrom**************/
  4681. c = 0;
  4682. loc = strstr(sLineWord, "validFrom");
  4683. if(loc != NULL)
  4684. {
  4685. memset(sstr ,0, sizeof(sstr) );
  4686. while (loc[3+strlen("validFrom")+c] != '\"')
  4687. {
  4688. sstr[c] = loc[3+strlen("validFrom")+c];
  4689. c++;
  4690. }
  4691. sstr[c] = '\0';
  4692. strcpy(tempvalidFromStr,sstr);
  4693. }
  4694. else
  4695. {
  4696. strcpy(tempvalidFromStr,"");
  4697. }
  4698. //***********validFrom**************/
  4699. c = 0;
  4700. loc = strstr(sLineWord, "duration");
  4701. if(loc != NULL)
  4702. {
  4703. memset(sstr ,0, sizeof(sstr) );
  4704. while (loc[2+strlen("duration")+c] != ',')
  4705. {
  4706. sstr[c] = loc[2+strlen("duration")+c];
  4707. c++;
  4708. }
  4709. sstr[c] = '\0';
  4710. tempdurationInt = atoi(sstr);
  4711. }
  4712. else
  4713. {
  4714. tempdurationInt = 0;
  4715. }
  4716. //**********startSchedule**********/
  4717. c = 0;
  4718. loc = strstr(sLineWord, "startSchedule");
  4719. memset(sstr ,0, sizeof(sstr) );
  4720. while (loc[3+strlen("startSchedule")+c] != '\"')
  4721. {
  4722. sstr[c] = loc[3+strlen("startSchedule")+c];
  4723. c++;
  4724. }
  4725. sstr[c] = '\0';
  4726. strcpy(tempstartScheduleStr, sstr);
  4727. //**********startSchedule**********/
  4728. c = 0;
  4729. loc = strstr(sLineWord, "chargingRateUnit");
  4730. memset(sstr ,0, sizeof(sstr) );
  4731. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  4732. {
  4733. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  4734. c++;
  4735. }
  4736. sstr[c] = '\0';
  4737. strcpy(tempchargingRateUnitStr, sstr);
  4738. //**********minChargingRate*******/
  4739. c = 0;
  4740. loc = strstr(sLineWord, "minChargingRate");
  4741. if(loc != NULL)
  4742. {
  4743. memset(sstr ,0, sizeof(sstr) );
  4744. while (loc[3+strlen("minChargingRate")+c] != '\"')
  4745. {
  4746. sstr[c] = loc[3+strlen("minChargingRate")+c];
  4747. c++;
  4748. }
  4749. sstr[c] = '\0';
  4750. tempminChargingRateFloat = atof(sstr);
  4751. }
  4752. else
  4753. {
  4754. tempminChargingRateFloat = 0.0;
  4755. }
  4756. //
  4757. strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  4758. tp.tm_isdst = -1;
  4759. time_t utc = mktime(&tp);
  4760. time_t t = time(NULL);
  4761. diff_t = difftime(t, utc);
  4762. DEBUG_INFO("diff_t=%f\n",diff_t);
  4763. DEBUG_INFO(" debug 5 -1\n");
  4764. //parsing strings to words
  4765. i = 0;
  4766. loc = strstr(sLineWord, "chargingSchedulePeriod");
  4767. loc = loc+3+strlen("chargingSchedulePeriod");
  4768. pch = strtok(loc ,"{");
  4769. while (pch != NULL)
  4770. {
  4771. strcpy(SchedulePeriodList[i], pch);
  4772. pch = strtok (NULL, "{");
  4773. i = i + 1;
  4774. }
  4775. n_SchedulePeriods = i;
  4776. for(int i=0;i<n_SchedulePeriods;i++)
  4777. {
  4778. //*************startPeriod****************/
  4779. c = 0;
  4780. loc = strstr(SchedulePeriodList[i], "startPeriod");
  4781. memset(sstr ,0, sizeof(sstr) );
  4782. while (loc[strlen("startPeriod")+2+c] != ',')
  4783. {
  4784. sstr[c] = loc[strlen("startPeriod")+2+c];
  4785. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4786. c++;
  4787. }
  4788. sstr[c] = '\0';
  4789. tempStartPeriodInt = atoi(sstr);
  4790. //*************limit****************/
  4791. c = 0;
  4792. loc = strstr(SchedulePeriodList[i], "limit");
  4793. memset(sstr ,0, sizeof(sstr) );
  4794. while (loc[strlen("limit")+2+c] != ',')
  4795. {
  4796. sstr[c] = loc[strlen("limit")+2+c];
  4797. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4798. c++;
  4799. }
  4800. sstr[c] = '\0';
  4801. tempLimitInt = atof(sstr);
  4802. //*************numberPhases****************/
  4803. c = 0;
  4804. loc = strstr(SchedulePeriodList[i], "numberPhases");
  4805. memset(sstr ,0, sizeof(sstr) );
  4806. while (loc[strlen("numberPhases")+2+c] != '}')
  4807. {
  4808. sstr[c] = loc[strlen("numberPhases")+2+c];
  4809. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4810. c++;
  4811. }
  4812. sstr[c] = '\0';
  4813. tempNumberPhasesInt = atoi(sstr);
  4814. if(j == 0)
  4815. {
  4816. ChargePointMaxProfile.Duration = tempdurationInt;
  4817. ChargePointMaxProfile.TotalPeriod = n_SchedulePeriods;
  4818. ChargePointMaxProfile.Period[i].Limit = tempLimitInt;
  4819. ChargePointMaxProfile.Period[i].NumberPhases = tempNumberPhasesInt;
  4820. ChargePointMaxProfile.Period[i].StartPeriod = tempStartPeriodInt;
  4821. }
  4822. }
  4823. if(MinChargingRate < tempminChargingRateFloat)
  4824. {
  4825. MinChargingRate = tempminChargingRateFloat;
  4826. }
  4827. if(confirmPeriods < n_SchedulePeriods)
  4828. {
  4829. confirmPeriods = n_SchedulePeriods;
  4830. }
  4831. j = j + 1;
  4832. }
  4833. fclose(fptr1);
  4834. }
  4835. }// the end of access file ChargePointMaxProfile
  4836. //****************************TxDefaultProfile************************************************/
  4837. switch(connectorIdInt)
  4838. {
  4839. case 0:
  4840. break;
  4841. case 1:
  4842. strcpy(fname, TxDefaultProfile_1_JSON );
  4843. break;
  4844. case 2:
  4845. strcpy(fname, TxDefaultProfile_2_JSON );
  4846. break;
  4847. default:
  4848. strcpy(fname, TxDefaultProfile_1_JSON );
  4849. break;
  4850. }
  4851. TxDefaultProfileFileIsNull=TRUE;
  4852. if((access(fname,F_OK))!=-1)
  4853. {
  4854. fptr1 = fopen(fname, "r");
  4855. c = 0;
  4856. c = fgetc(fptr1);
  4857. //DEBUG_INFO("c:%d\n",c);
  4858. rewind(fptr1);
  4859. if(c == EOF)
  4860. {
  4861. DEBUG_INFO("\n End of file reached.");
  4862. TxDefaultProfileFileIsNull=TRUE;
  4863. fclose(fptr1);
  4864. }
  4865. else
  4866. {
  4867. TxDefaultProfileFileIsNull=FALSE;
  4868. while(fscanf(fptr1, "%s", word) != EOF)
  4869. {
  4870. if(strcmp(word, "chargingProfileId") == 0)
  4871. {
  4872. n_chargingProfile = n_chargingProfile + 1;
  4873. }
  4874. }
  4875. rewind(fptr1);
  4876. //search Charging Profile Element
  4877. int i = 0;
  4878. int j = 0;
  4879. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
  4880. #if 0
  4881. /***********connectorId****************/
  4882. c = 0;
  4883. loc = strstr(sLineWord, "connectorId");
  4884. memset(sstr ,0, sizeof(sstr) );
  4885. while (loc[strlen("connectorId")+2+c] != ',')
  4886. {
  4887. sstr[c] = loc[strlen("connectorId")+2+c];
  4888. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4889. c++;
  4890. }
  4891. sstr[c] = '\0';
  4892. tempconnectorIdInt = atoi(sstr);
  4893. #endif
  4894. //***********validFrom**************/
  4895. c = 0;
  4896. loc = strstr(sLineWord, "validFrom");
  4897. if(loc != NULL)
  4898. {
  4899. memset(sstr ,0, sizeof(sstr) );
  4900. while (loc[3+strlen("validFrom")+c] != '\"')
  4901. {
  4902. sstr[c] = loc[3+strlen("validFrom")+c];
  4903. c++;
  4904. }
  4905. sstr[c] = '\0';
  4906. strcpy(tempvalidFromStr,sstr);
  4907. }
  4908. else
  4909. {
  4910. strcpy(tempvalidFromStr,"");
  4911. }
  4912. //***********validFrom**************/
  4913. c = 0;
  4914. loc = strstr(sLineWord, "duration");
  4915. if(loc != NULL)
  4916. {
  4917. memset(sstr ,0, sizeof(sstr) );
  4918. while (loc[2+strlen("duration")+c] != ',')
  4919. {
  4920. sstr[c] = loc[2+strlen("duration")+c];
  4921. c++;
  4922. }
  4923. sstr[c] = '\0';
  4924. tempdurationInt = atoi(sstr);
  4925. }
  4926. else
  4927. {
  4928. tempdurationInt = 0;
  4929. }
  4930. //**********startSchedule**********/
  4931. c = 0;
  4932. loc = strstr(sLineWord, "startSchedule");
  4933. memset(sstr ,0, sizeof(sstr) );
  4934. while (loc[3+strlen("startSchedule")+c] != '\"')
  4935. {
  4936. sstr[c] = loc[3+strlen("startSchedule")+c];
  4937. c++;
  4938. }
  4939. sstr[c] = '\0';
  4940. strcpy(tempstartScheduleStr, sstr);
  4941. //**********startSchedule**********/
  4942. c = 0;
  4943. loc = strstr(sLineWord, "chargingRateUnit");
  4944. memset(sstr ,0, sizeof(sstr) );
  4945. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  4946. {
  4947. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  4948. c++;
  4949. }
  4950. sstr[c] = '\0';
  4951. strcpy(tempchargingRateUnitStr, sstr);
  4952. //**********minChargingRate*******/
  4953. c = 0;
  4954. loc = strstr(sLineWord, "minChargingRate");
  4955. if(loc != NULL)
  4956. {
  4957. memset(sstr ,0, sizeof(sstr) );
  4958. while (loc[3+strlen("minChargingRate")+c] != '\"')
  4959. {
  4960. sstr[c] = loc[3+strlen("minChargingRate")+c];
  4961. c++;
  4962. }
  4963. sstr[c] = '\0';
  4964. tempminChargingRateFloat = atof(sstr);
  4965. }
  4966. else
  4967. {
  4968. tempminChargingRateFloat = 0.0;
  4969. }
  4970. //
  4971. strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  4972. tp.tm_isdst = -1;
  4973. time_t utc = mktime(&tp);
  4974. time_t t = time(NULL);
  4975. diff_t = difftime(t, utc);
  4976. DEBUG_INFO("diff_t=%f\n",diff_t);
  4977. DEBUG_INFO(" debug 5 -1\n");
  4978. //parsing strings to words
  4979. i = 0;
  4980. loc = strstr(sLineWord, "chargingSchedulePeriod");
  4981. loc = loc+3+strlen("chargingSchedulePeriod");
  4982. pch = strtok(loc ,"{");
  4983. while (pch != NULL)
  4984. {
  4985. strcpy(SchedulePeriodList[i], pch);
  4986. pch = strtok (NULL, "{");
  4987. i = i + 1;
  4988. }
  4989. n_SchedulePeriods = i;
  4990. for(int i=0;i<n_SchedulePeriods;i++)
  4991. {
  4992. //*************startPeriod****************/
  4993. c = 0;
  4994. loc = strstr(SchedulePeriodList[i], "startPeriod");
  4995. memset(sstr ,0, sizeof(sstr) );
  4996. while (loc[strlen("startPeriod")+2+c] != ',')
  4997. {
  4998. sstr[c] = loc[strlen("startPeriod")+2+c];
  4999. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5000. c++;
  5001. }
  5002. sstr[c] = '\0';
  5003. tempStartPeriodInt = atoi(sstr);
  5004. //*************limit****************/
  5005. c = 0;
  5006. loc = strstr(SchedulePeriodList[i], "limit");
  5007. memset(sstr ,0, sizeof(sstr) );
  5008. while (loc[strlen("limit")+2+c] != ',')
  5009. {
  5010. sstr[c] = loc[strlen("limit")+2+c];
  5011. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5012. c++;
  5013. }
  5014. sstr[c] = '\0';
  5015. tempLimitInt = atof(sstr);
  5016. //*************numberPhases****************/
  5017. c = 0;
  5018. loc = strstr(SchedulePeriodList[i], "numberPhases");
  5019. memset(sstr ,0, sizeof(sstr) );
  5020. while (loc[strlen("numberPhases")+2+c] != '}')
  5021. {
  5022. sstr[c] = loc[strlen("numberPhases")+2+c];
  5023. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5024. c++;
  5025. }
  5026. sstr[c] = '\0';
  5027. tempNumberPhasesInt = atoi(sstr);
  5028. if(j == 0)
  5029. {
  5030. TxDefaultProfile.Duration = tempdurationInt;
  5031. TxDefaultProfile.TotalPeriod = n_SchedulePeriods;
  5032. TxDefaultProfile.Period[i].Limit = tempLimitInt;
  5033. TxDefaultProfile.Period[i].NumberPhases = tempNumberPhasesInt;
  5034. TxDefaultProfile.Period[i].StartPeriod = tempStartPeriodInt;
  5035. }
  5036. else
  5037. {
  5038. //other stack level charging Profile
  5039. TxDefaultProfiletemp[j-1].Period[i].Limit = tempLimitInt;
  5040. TxDefaultProfiletemp[j-1].Period[i].NumberPhases = tempNumberPhasesInt;
  5041. TxDefaultProfiletemp[j-1].Period[i].StartPeriod = tempStartPeriodInt;
  5042. TxDefaultProfiletemp[j-1].Duration = tempdurationInt;
  5043. TxDefaultProfiletemp[j-1].TotalPeriod = n_SchedulePeriods;
  5044. }
  5045. }
  5046. if(MinChargingRate < tempminChargingRateFloat)
  5047. MinChargingRate = tempminChargingRateFloat;
  5048. if(confirmPeriods < n_SchedulePeriods)
  5049. confirmPeriods = n_SchedulePeriods;
  5050. j = j + 1;
  5051. }
  5052. fclose(fptr1);
  5053. //Stacking Charging Profiles
  5054. for(int l=0; l <(j-1) ;l++)
  5055. {
  5056. for(int k=0; k < TxDefaultProfiletemp[l].TotalPeriod; k++)
  5057. {
  5058. if(TxDefaultProfiletemp[l].Period[k].StartPeriod > TxDefaultProfile.Duration)
  5059. {
  5060. if((k >0) && ((TxDefaultProfiletemp[l].Period[k-1].StartPeriod < TxDefaultProfile.Duration) &&(TxDefaultProfiletemp[l].Period[k-1].StartPeriod >= TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod-1].StartPeriod )))
  5061. {
  5062. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].Limit = TxDefaultProfiletemp[l].Period[k-1].Limit;
  5063. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].NumberPhases = TxDefaultProfiletemp[l].Period[k-1].NumberPhases;
  5064. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].StartPeriod = TxDefaultProfile.Duration;
  5065. TxDefaultProfile.TotalPeriod = TxDefaultProfile.TotalPeriod + 1;
  5066. TxDefaultProfile.Duration = TxDefaultProfiletemp[l].Duration;
  5067. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].Limit = TxDefaultProfiletemp[l].Period[k].Limit;
  5068. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].NumberPhases = TxDefaultProfiletemp[l].Period[k].NumberPhases;
  5069. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].StartPeriod = TxDefaultProfiletemp[l].Period[k].StartPeriod;
  5070. TxDefaultProfile.TotalPeriod = TxDefaultProfile.TotalPeriod + 1;
  5071. TxDefaultProfile.Duration = TxDefaultProfiletemp[l].Duration;
  5072. }
  5073. else
  5074. {
  5075. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].Limit = TxDefaultProfiletemp[l].Period[k].Limit;
  5076. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].NumberPhases = TxDefaultProfiletemp[l].Period[k].NumberPhases;
  5077. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].StartPeriod = TxDefaultProfiletemp[l].Period[k].StartPeriod;
  5078. TxDefaultProfile.TotalPeriod = TxDefaultProfile.TotalPeriod + 1;
  5079. TxDefaultProfile.Duration = TxDefaultProfiletemp[l].Duration;
  5080. }
  5081. }
  5082. }
  5083. }
  5084. //end of Stacking Charging Profiles
  5085. }
  5086. }// the end of ACCESS TxDefaultProfile
  5087. //****************************TxProfile************************************************/
  5088. switch(connectorIdInt)
  5089. {
  5090. case 0:
  5091. break;
  5092. case 1:
  5093. strcpy(fname, TxProfile_1_JSON );
  5094. break;
  5095. case 2:
  5096. strcpy(fname, TxProfile_2_JSON );
  5097. break;
  5098. default:
  5099. strcpy(fname, TxProfile_1_JSON );
  5100. break;
  5101. }
  5102. TxProfileIsNull=TRUE;
  5103. if((access(fname,F_OK))!=-1)
  5104. {
  5105. fptr1 = fopen(fname, "r");
  5106. c = 0;
  5107. c = fgetc(fptr1);
  5108. //DEBUG_INFO("c:%d\n",c);
  5109. rewind(fptr1);
  5110. if(c == EOF)
  5111. {
  5112. DEBUG_INFO("\n End of file reached.");
  5113. TxProfileIsNull=TRUE;
  5114. fclose(fptr1);
  5115. }
  5116. else
  5117. {
  5118. TxProfileIsNull=FALSE;
  5119. while(fscanf(fptr1, "%s", word) != EOF)
  5120. {
  5121. if(strcmp(word, "chargingProfileId") == 0)
  5122. {
  5123. n_chargingProfile = n_chargingProfile + 1;
  5124. }
  5125. }
  5126. rewind(fptr1);
  5127. //search Charging Profile Element
  5128. int i= 0;
  5129. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
  5130. #if 0
  5131. /***********connectorId****************/
  5132. c = 0;
  5133. loc = strstr(sLineWord, "connectorId");
  5134. memset(sstr ,0, sizeof(sstr) );
  5135. while (loc[strlen("connectorId")+2+c] != ',')
  5136. {
  5137. sstr[c] = loc[strlen("connectorId")+2+c];
  5138. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5139. c++;
  5140. }
  5141. sstr[c] = '\0';
  5142. tempconnectorIdInt = atoi(sstr);
  5143. #endif
  5144. //***********validFrom**************/
  5145. c = 0;
  5146. loc = strstr(sLineWord, "validFrom");
  5147. if(loc != NULL)
  5148. {
  5149. memset(sstr ,0, sizeof(sstr) );
  5150. while (loc[3+strlen("validFrom")+c] != '\"')
  5151. {
  5152. sstr[c] = loc[3+strlen("validFrom")+c];
  5153. c++;
  5154. }
  5155. sstr[c] = '\0';
  5156. strcpy(tempvalidFromStr,sstr);
  5157. }
  5158. else
  5159. {
  5160. strcpy(tempvalidFromStr,"");
  5161. }
  5162. //**********startSchedule**********/
  5163. c = 0;
  5164. loc = strstr(sLineWord, "startSchedule");
  5165. memset(sstr ,0, sizeof(sstr) );
  5166. while (loc[3+strlen("startSchedule")+c] != '\"')
  5167. {
  5168. sstr[c] = loc[3+strlen("startSchedule")+c];
  5169. c++;
  5170. }
  5171. sstr[c] = '\0';
  5172. strcpy(tempstartScheduleStr, sstr);
  5173. //**********startSchedule**********/
  5174. c = 0;
  5175. loc = strstr(sLineWord, "chargingRateUnit");
  5176. memset(sstr ,0, sizeof(sstr) );
  5177. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  5178. {
  5179. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  5180. c++;
  5181. }
  5182. sstr[c] = '\0';
  5183. strcpy(tempchargingRateUnitStr, sstr);
  5184. //**********minChargingRate*******/
  5185. c = 0;
  5186. loc = strstr(sLineWord, "minChargingRate");
  5187. if(loc != NULL)
  5188. {
  5189. memset(sstr ,0, sizeof(sstr) );
  5190. while (loc[3+strlen("minChargingRate")+c] != '\"')
  5191. {
  5192. sstr[c] = loc[3+strlen("minChargingRate")+c];
  5193. c++;
  5194. }
  5195. sstr[c] = '\0';
  5196. tempminChargingRateFloat = atof(sstr);
  5197. }
  5198. else
  5199. {
  5200. tempminChargingRateFloat = 0.0;
  5201. }
  5202. //
  5203. strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  5204. tp.tm_isdst = -1;
  5205. time_t utc = mktime(&tp);
  5206. time_t t = time(NULL);
  5207. diff_t = difftime(t, utc);
  5208. DEBUG_INFO("diff_t=%f\n",diff_t);
  5209. //parsing strings to words
  5210. i = 0;
  5211. loc = strstr(sLineWord, "chargingSchedulePeriod");
  5212. loc = loc+3+strlen("chargingSchedulePeriod");
  5213. pch = strtok(loc ,"{");
  5214. while (pch != NULL)
  5215. {
  5216. strcpy(SchedulePeriodList[i], pch);
  5217. pch = strtok (NULL, "{");
  5218. i = i + 1;
  5219. }
  5220. n_SchedulePeriods = i;
  5221. for(int i=0;i<n_SchedulePeriods;i++)
  5222. {
  5223. //*************startPeriod****************/
  5224. c = 0;
  5225. loc = strstr(SchedulePeriodList[i], "startPeriod");
  5226. memset(sstr ,0, sizeof(sstr) );
  5227. while (loc[strlen("startPeriod")+2+c] != ',')
  5228. {
  5229. sstr[c] = loc[strlen("startPeriod")+2+c];
  5230. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5231. c++;
  5232. }
  5233. sstr[c] = '\0';
  5234. tempStartPeriodInt = atoi(sstr);
  5235. //*************limit****************/
  5236. c = 0;
  5237. loc = strstr(SchedulePeriodList[i], "limit");
  5238. memset(sstr ,0, sizeof(sstr) );
  5239. while (loc[strlen("limit")+2+c] != ',')
  5240. {
  5241. sstr[c] = loc[strlen("limit")+2+c];
  5242. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5243. c++;
  5244. }
  5245. sstr[c] = '\0';
  5246. tempLimitInt = atof(sstr);
  5247. //*************numberPhases****************/
  5248. c = 0;
  5249. loc = strstr(SchedulePeriodList[i], "numberPhases");
  5250. memset(sstr ,0, sizeof(sstr) );
  5251. while (loc[strlen("numberPhases")+2+c] != '}')
  5252. {
  5253. sstr[c] = loc[strlen("numberPhases")+2+c];
  5254. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5255. c++;
  5256. }
  5257. sstr[c] = '\0';
  5258. tempNumberPhasesInt = atoi(sstr);
  5259. TxProfile.Duration = durationInt;
  5260. TxProfile.TotalPeriod = n_SchedulePeriods;
  5261. TxProfile.Period[i].Limit = tempLimitInt;
  5262. TxProfile.Period[i].NumberPhases = tempNumberPhasesInt;
  5263. TxProfile.Period[i].StartPeriod = tempStartPeriodInt;
  5264. }
  5265. if(MinChargingRate < tempminChargingRateFloat)
  5266. MinChargingRate = tempminChargingRateFloat;
  5267. if(confirmPeriods < n_SchedulePeriods)
  5268. confirmPeriods = n_SchedulePeriods;
  5269. }
  5270. fclose(fptr1);
  5271. }
  5272. }// the end of ACCESS TxProfile
  5273. //CompositeSchedule
  5274. int period=0;
  5275. if((TxDefaultProfileFileIsNull==FALSE) && (ChargePointMaxProfileIsNull==FALSE) && (TxProfileIsNull==FALSE) )
  5276. {
  5277. for(int k=0; k < TxProfile.TotalPeriod;k++)
  5278. {
  5279. if(TxProfile.Period[k].Limit < ChargePointMaxProfile.Period[0].Limit)
  5280. {
  5281. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = TxProfile.Period[k].Limit;
  5282. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = TxProfile.Period[k].NumberPhases;
  5283. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxProfile.Period[k].StartPeriod;
  5284. period = period + 1;
  5285. }
  5286. else
  5287. {
  5288. if( (TxProfile.Period[k-1].Limit >= ChargePointMaxProfile.Period[0].Limit) && (TxProfile.Period[k].Limit >= ChargePointMaxProfile.Period[0].Limit))
  5289. {
  5290. }
  5291. else
  5292. {
  5293. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = ChargePointMaxProfile.Period[0].Limit;
  5294. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = TxProfile.Period[k].NumberPhases;
  5295. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxProfile.Period[k].StartPeriod;
  5296. period = period + 1;
  5297. }
  5298. }
  5299. }
  5300. for(int l=0; l < TxDefaultProfile.TotalPeriod;l++)
  5301. {
  5302. if((TxDefaultProfile.Period[l].StartPeriod < durationInt)&&(TxDefaultProfile.Period[l].StartPeriod > ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period-1].StartPeriod))
  5303. {
  5304. if(TxDefaultProfile.Period[l].Limit < ChargePointMaxProfile.Period[0].Limit)
  5305. {
  5306. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = TxDefaultProfile.Period[l].Limit;
  5307. }
  5308. else
  5309. {
  5310. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = ChargePointMaxProfile.Period[0].Limit;
  5311. }
  5312. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
  5313. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
  5314. period = period + 1;
  5315. }
  5316. }
  5317. if((TxDefaultProfile.Duration < durationInt) && (ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period-1].Limit) < ChargePointMaxProfile.Period[0].Limit)
  5318. {
  5319. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = ChargePointMaxProfile.Period[0].Limit;
  5320. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period-1].NumberPhases;
  5321. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxDefaultProfile.Duration;
  5322. period = period + 1;
  5323. }
  5324. }
  5325. else if((TxDefaultProfileFileIsNull==FALSE) && (ChargePointMaxProfileIsNull==FALSE) && (TxProfileIsNull==TRUE) )
  5326. {
  5327. for(int l=0; l < TxDefaultProfile.TotalPeriod;l++)
  5328. {
  5329. if(TxProfile.Period[l].Limit < ChargePointMaxProfile.Period[0].Limit)
  5330. {
  5331. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].Limit = TxDefaultProfile.Period[l].Limit;
  5332. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
  5333. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
  5334. period = period + 1;
  5335. }
  5336. else
  5337. {
  5338. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].Limit = ChargePointMaxProfile.Period[0].Limit;
  5339. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
  5340. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
  5341. period = period + 1;
  5342. }
  5343. }
  5344. }
  5345. else if((TxDefaultProfileFileIsNull==FALSE) && (ChargePointMaxProfileIsNull==TRUE) && (TxProfileIsNull==TRUE) )
  5346. {
  5347. for(int l=0; l < TxDefaultProfile.TotalPeriod;l++)
  5348. {
  5349. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].Limit = TxDefaultProfile.Period[l].Limit;
  5350. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
  5351. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
  5352. period = period + 1;
  5353. }
  5354. }
  5355. confirmPeriods = period;
  5356. //DEBUG_INFO("confirmPeriods=%d\n",confirmPeriods);
  5357. //* Define temporary variables */
  5358. struct tm *gtime;
  5359. time_t now;
  5360. char buf[28];
  5361. //* Read the current system time */
  5362. time(&now);
  5363. //* Convert the system time to GMT (now UTC) */
  5364. gtime = gmtime(&now);
  5365. strftime(buf, 28, "%Y-%m-%dT%H:%M:%SZ", gtime);
  5366. // make .conf
  5367. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule,buf);
  5368. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.Duration = durationInt;
  5369. //DEBUG_INFO(" debug 11\n");
  5370. // if(chargingRateUnitStr[0] != 0)
  5371. // {
  5372. // strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit, chargingRateUnitStr );
  5373. // }
  5374. // else
  5375. {
  5376. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit, tempchargingRateUnitStr );
  5377. }
  5378. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.MinChargingRate = MinChargingRate;
  5379. sprintf(comfirmstr, "%s", GetCompositeScheduleStatusStr[GetCompositeScheduleStatus_Accepted] );
  5380. }
  5381. else
  5382. {
  5383. sprintf(comfirmstr, "%s", GetCompositeScheduleStatusStr[GetCompositeScheduleStatus_Accepted] );
  5384. }
  5385. sendGetCompositeScheduleConfirmation(uuid,comfirmstr, connectorIdInt, confirmPeriods);
  5386. return result;
  5387. }
  5388. int handleGetConfigurationRequest(char *uuid, char *payload)
  5389. {
  5390. mtrace();
  5391. int result = FAIL;
  5392. // struct json_object *obj=NULL, *key=NULL;// *jsonitem;
  5393. //struct json_object *jsonitem;
  5394. int MaxKeySupported = 0;
  5395. int n_keys = 0;
  5396. char requestKey[43][50]={0};
  5397. char search[]="[";
  5398. char sstr[500]={ 0 };
  5399. //int pos;
  5400. int l, c = 0;
  5401. int i = 0;
  5402. char *delim = "\",\"";
  5403. char * pch;
  5404. char *loc = strstr(payload, search);
  5405. //********************* Parsing String ***********************************/
  5406. if(loc == NULL) {
  5407. DEBUG_INFO("no key match in Configuration \n");
  5408. }
  5409. else {
  5410. //pos = loc - payload;
  5411. l = strlen(loc)-4;
  5412. while (c < l)
  5413. {
  5414. sstr[c] = loc[c+2];
  5415. c++;
  5416. }
  5417. sstr[c] = '\0';
  5418. //parsing strings to words
  5419. pch = strtok(sstr,delim);
  5420. if(pch == NULL)
  5421. {
  5422. strcpy(requestKey[0], sstr);
  5423. }
  5424. else
  5425. {
  5426. while (pch != NULL)
  5427. {
  5428. strcpy(requestKey[i], pch);
  5429. pch = strtok (NULL, delim);
  5430. i = i + 1;
  5431. }
  5432. n_keys = i;
  5433. }
  5434. }
  5435. UnknownKeynum = 0;
  5436. memset( (void *)unknownkey, 0, sizeof(unknownkey)/*sizeof(char)*10*20*/ );
  5437. MaxKeySupported = GetConfigurationMaxKeysNUM;//atoi(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData);
  5438. memset(ShmOCPP16Data->GetConfiguration.Key, 0 ,sizeof(struct StructConfigurationKeyItems)*MaxKeySupported);
  5439. memset(ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey, 0, sizeof(struct StructConfigurationKey)*MaxKeySupported);
  5440. if(n_keys != 0)
  5441. {
  5442. for(int i=0;i<n_keys;i++)
  5443. {
  5444. getKeyValue(requestKey[i]);
  5445. //json_object_put(jsonitem);
  5446. }
  5447. }
  5448. else
  5449. {
  5450. DEBUG_INFO("There is no key in Message, get all configuration\n");
  5451. getKeyValue("");
  5452. }
  5453. processUnkownKey();
  5454. sendGetConfigurationConfirmation(uuid);
  5455. return result;
  5456. }
  5457. int handleGetDiagnosticsRequest(char *uuid, char *payload)
  5458. {
  5459. mtrace();
  5460. int result = FAIL;
  5461. //void *ret; //
  5462. char fnamePlusPath[50]="";
  5463. char fname[16]="";
  5464. pthread_t t; // pthread 變數
  5465. time_t rawtime;
  5466. struct tm * timeinfo;
  5467. //system("exec /root/Module_WebService 'log' 6"); // for OCTT TEST
  5468. system("exec /root/logPackTools 'log' 6");
  5469. //char buffer [128];
  5470. time (&rawtime);
  5471. //printf("%ld\n", rawtime);
  5472. timeinfo = localtime (&rawtime);
  5473. strftime (fnamePlusPath,sizeof(fnamePlusPath),"../mnt/%4Y-%2m.zip",timeinfo);
  5474. DEBUG_INFO("fnamePlusPath =%s\n",fnamePlusPath);
  5475. if((access(fnamePlusPath,F_OK))!=-1)
  5476. {
  5477. DEBUG_INFO("fnamePlusPath exist.\n");
  5478. strftime (fname,sizeof(fname),"%4Y-%2m.zip",timeinfo);
  5479. }
  5480. else
  5481. {
  5482. DEBUG_INFO("fnamePlusPath not exist!\n");
  5483. }
  5484. sendGetDiagnosticsConfirmation(uuid,fname/*(char*) ret*/);
  5485. pthread_create(&t, NULL, GetDiagnosticsProcess, payload);
  5486. pthread_join(t, NULL/*&ret*/);
  5487. return result;
  5488. }
  5489. void* GetDiagnosticsProcess(void* data)
  5490. {
  5491. mtrace();
  5492. int retriesInt=0, retryIntervalInt=0;
  5493. char locationstr[100]={0}, startTimestr[30]={0}, stopTimestr[30]={0} ;
  5494. int retriesIsNULL,retryIntervalIsNULL, startTimeIsNULL, stopTimeIsNULL;
  5495. char protocol[10]={0}, user[50]={0},password[50]={0},host[50]={0}, path[50]={0}, ftppath[60]={0},host1[50]={0},path1[50]={0};
  5496. int port=0;
  5497. char fnamePlusPath[50]="";//="00000_2019-06-09_160902_CSULog.zip";
  5498. char fname[16]="";
  5499. char sstr[260]={ 0 };//sstr[200]={ 0 };
  5500. int c = 0;
  5501. char *loc;
  5502. int isSuccess = FALSE;
  5503. char ftpbuf[200]={0};
  5504. //char temp[100]={0};
  5505. char * pch;
  5506. // [2,"137d88c7-a403-4ead-bb2d-fc6ec90531c1","GetDiagnostics",{"location":"ftp://ipc_ui:pht2016@ftp.phihong.com.tw/DC/log/","retries":0,"retryInterval":0,"startTime":"0001-01-01T00:00:00.000Z","stopTime":"0001-01-01T00:00:00.000Z"}]
  5507. char *str = (char*) data; // ? ?輸入資 ?
  5508. retriesIsNULL = retryIntervalIsNULL = startTimeIsNULL = stopTimeIsNULL = FALSE;
  5509. DEBUG_INFO("sendDiagnosticsStatusNotificationRequest 1\n");
  5510. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_Uploading]);
  5511. //****************location*******************/
  5512. c = 0;
  5513. memset(sstr ,0, sizeof(sstr) );
  5514. loc = strstr(str, "location");
  5515. while (loc[3+strlen("location")+c] != '\"')
  5516. {
  5517. sstr[c] = loc[3+strlen("location")+c];
  5518. c++;
  5519. }
  5520. sstr[c] = '\0';
  5521. strcpy(locationstr,sstr);
  5522. if(strcmp(locationstr,"")==0)
  5523. {
  5524. DEBUG_INFO("location is <Empty>!\n");
  5525. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
  5526. goto end;
  5527. }
  5528. //****************retries*******************/
  5529. c = 0;
  5530. loc = strstr(str, "retries");
  5531. if(loc == NULL)
  5532. {
  5533. retriesIsNULL = TRUE;
  5534. }
  5535. else
  5536. {
  5537. while (loc[strlen("retries")+2+c] != ',')
  5538. {
  5539. sstr[c] = loc[strlen("retries")+2+c];
  5540. c++;
  5541. }
  5542. sstr[c] = '\0';
  5543. retriesInt = atoi(sstr);
  5544. }
  5545. if(retriesIsNULL == TRUE)
  5546. {
  5547. retriesInt = 0;
  5548. }
  5549. //****************retryInterval*******************/
  5550. c = 0;
  5551. loc = strstr(str, "retryInterval");
  5552. if(loc == NULL)
  5553. {
  5554. retryIntervalIsNULL = TRUE;
  5555. }
  5556. else
  5557. {
  5558. while (loc[strlen("retryInterval")+2+c] != ',')
  5559. {
  5560. sstr[c] = loc[strlen("retryInterval")+2+c];
  5561. c++;
  5562. }
  5563. sstr[c] = '\0';
  5564. retryIntervalInt = atoi(sstr);
  5565. }
  5566. //****************startTime*******************/
  5567. c = 0;
  5568. memset(sstr ,0, sizeof(sstr) );
  5569. loc = strstr(str, "startTime");
  5570. if(loc == NULL)
  5571. {
  5572. startTimeIsNULL = TRUE;
  5573. }
  5574. else
  5575. {
  5576. while (loc[3+strlen("startTime")+c] != '\"')
  5577. {
  5578. sstr[c] = loc[3+strlen("startTime")+c];
  5579. c++;
  5580. }
  5581. sstr[c] = '\0';
  5582. strcpy(startTimestr,sstr);
  5583. }
  5584. //****************stopTime*******************/
  5585. c = 0;
  5586. memset(sstr ,0, sizeof(sstr) );
  5587. loc = strstr(str, "stopTime");
  5588. if(loc == NULL)
  5589. {
  5590. stopTimeIsNULL = TRUE;
  5591. }
  5592. else
  5593. {
  5594. while (loc[3+strlen("stopTime")+c] != '\"')
  5595. {
  5596. sstr[c] = loc[3+strlen("stopTime")+c];
  5597. c++;
  5598. }
  5599. sstr[c] = '\0';
  5600. strcpy(stopTimestr,sstr);
  5601. }
  5602. memset(protocol, 0, sizeof(protocol));
  5603. memset(user, 0, sizeof(user) );
  5604. memset(password, 0, sizeof(password));
  5605. memset(host, 0, sizeof(host));
  5606. memset(path, 0, sizeof(path));
  5607. memset(ftppath, 0, sizeof(ftppath));
  5608. memset(host1, 0, sizeof(host1));
  5609. memset(path1, 0, sizeof(path1));
  5610. /*location: ftp://user:password@host:port/path*/
  5611. //sscanf(locationstr,"%[^:]:%*2[/]%[^:]:%[^@]@%[^:]%d[^/]/%[a-zA-Z0-9._/-]",
  5612. // protocol, user, password, host, &port, path);
  5613. #if 0 // remove for temporally
  5614. //zip files in /Storage
  5615. system("exec /root/logPackTools 'log' 6");
  5616. #endif
  5617. // system("exec /root/Module_WebService 'log' 6");
  5618. time_t rawtime;
  5619. struct tm * timeinfo;
  5620. //char buffer [128];
  5621. time (&rawtime);
  5622. //printf("%ld\n", rawtime);
  5623. timeinfo = localtime (&rawtime);
  5624. strftime (fnamePlusPath,sizeof(fnamePlusPath),"../mnt/%4Y-%2m.zip",timeinfo);
  5625. strftime (fname,sizeof(fname),"%4Y-%2m.zip",timeinfo);
  5626. DEBUG_INFO("fnamePlusPath =%s\n",fnamePlusPath);
  5627. if((access(fnamePlusPath,F_OK))!=-1)
  5628. {
  5629. DEBUG_INFO("fnamePlusPath exist.\n");
  5630. }
  5631. else
  5632. {
  5633. DEBUG_INFO("fnamePlusPath not exist!\n");
  5634. goto end;
  5635. }
  5636. pch=strchr(locationstr,'@');
  5637. if(pch==NULL)
  5638. {
  5639. sscanf(locationstr,
  5640. "%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
  5641. protocol, host, &port, path);
  5642. strcpy(user,"anonymous");
  5643. strcpy(password,"");
  5644. }
  5645. else
  5646. {
  5647. DEBUG_INFO("pch=%s\n", pch);
  5648. sscanf(locationstr,"%[^:]:%*2[/]%[^:]:%[^@]@%[^:]:%i/%199[^\n]",
  5649. protocol, user, password, host, &port, path);
  5650. }
  5651. if(strcmp(protocol,"ftp")!=0)
  5652. {
  5653. DEBUG_INFO("protocol is not ftp!\n");
  5654. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
  5655. goto end;
  5656. }
  5657. sscanf(host,"%[^/]%s",host1, path1);
  5658. sprintf(ftppath,"%s", path1);
  5659. DEBUG_INFO("protocol =%s\n",protocol);
  5660. DEBUG_INFO("user =%s\n",user);
  5661. DEBUG_INFO("password =%s\n",password);
  5662. DEBUG_INFO("host1 =%s\n",host1);
  5663. DEBUG_INFO("port =%d\n",port);
  5664. DEBUG_INFO("path1 =%s\n",path1);
  5665. DEBUG_INFO("ftppath=%s\n",ftppath);
  5666. int ftppathlen=strlen(ftppath);
  5667. int i=1;
  5668. char filenametemp[50];
  5669. while(i < ftppathlen)
  5670. {
  5671. int len=ftppathlen-i;
  5672. if(ftppath[len]== 47) // '/' ascll code: 47
  5673. {
  5674. DEBUG_INFO("find '/' all right\n");
  5675. break;
  5676. }
  5677. i=i+1;
  5678. }
  5679. memset(filenametemp, 0, sizeof(filenametemp));
  5680. strncpy(filenametemp, ftppath+(ftppathlen-i+1), i+1);
  5681. filenametemp[i+1] = 0;
  5682. //httpDownLoadFile(host, ftppath, fname);
  5683. memset(ftpbuf, 0, sizeof(ftpbuf));
  5684. if(port == 0)
  5685. port = 21;
  5686. //isSuccess = httpDownLoadFile(host1, ftppath, filenametemp, "http://evsocket.phihong.com.tw/UploadFiles/SW/C81FBD4A740F69286B276C68B5074373.jar");
  5687. do{
  5688. isSuccess = ftpFile(/*"test.evsocket.phihong.com.cn","phihong","y42j/4cj84",21,"/",fname*/host1, user, password, port, ftppath, fnamePlusPath, fname);
  5689. sleep(retryIntervalInt);
  5690. }while((!isSuccess)&&(retriesInt > 0 && retriesInt --));
  5691. if(!isSuccess)
  5692. {
  5693. //BulldogUtil.sleepMs(interval*1000);
  5694. DEBUG_INFO("Diagnostics fail.\n");
  5695. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
  5696. }
  5697. else
  5698. {
  5699. DEBUG_INFO("sendDiagnosticsStatusNotificationRequest Uploaded\n");
  5700. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_Uploaded]);
  5701. //isUpdateRequest = TRUE;
  5702. }
  5703. end:
  5704. // json_object_put(obj);
  5705. DiagnosticsStatusNotificationStatus = 0; //Idle
  5706. pthread_exit(NULL/*(void *) fname*/); // ? ?子執行 ?
  5707. }
  5708. int handleGetLocalListVersionRequest(char *uuid, char *payload)
  5709. {
  5710. mtrace();
  5711. int result = FAIL;
  5712. DEBUG_INFO("handle GetLocalListVersionRequest\n");
  5713. if(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "FALSE") == 0)
  5714. {
  5715. DEBUG_INFO("LocalAuthListEnabled is FALSE \n");
  5716. localversion = -1;
  5717. }
  5718. else
  5719. {
  5720. DEBUG_INFO("handle GetLocalListVersionRequest OCPP_getListVerion \n");
  5721. OCPP_getListVerion();
  5722. }
  5723. //from db.OCPP_getListVerion
  5724. ShmOCPP16Data->GetLocalListVersion.ResponseListVersion = localversion;
  5725. //ShmOCPP16Data->MsMsg.bits.GetLocalListVersionReq = 1;
  5726. sendGetLocalListVersionConfirmation(uuid,"");
  5727. //ShmOCPP16Data->MsMsg.bits.GetLocalListVersionConf = 1;
  5728. return result;
  5729. }
  5730. int handleRemoteStartRequest(char *uuid, char *payload)
  5731. {
  5732. mtrace();
  5733. int result = FAIL;
  5734. int connectorIdInt=0, chargingProfileIdInt=0, transactionIdInt=0, stackLevelInt=0,
  5735. durationInt=0, startPeriodInt[10]={0}, numberPhasesInt[10]={0};
  5736. char idTagstr[20]={0}, chargingProfilePurposestr[30]={0}, chargingProfileKindstr[14]={0}, recurrencyKindstr[10]={0},
  5737. validFromstr[30]={0}, validTostr[30]={0}, startSchedulestr[30]={0}, chargingRateUnitstr[4]={0};
  5738. int connectorIdIsNULL,chargingProfileIsNULL,transactionIdIsNULL,recurrencyKindIsNULL,validFromIsNULL,validToIsNULL,durationIsNULL,startScheduleIsNULL,minChargingRateIsNULL,numberPhasesIsNULL;
  5739. float minChargingRateflaot=0.0, limitflaot[10]={0.0};
  5740. int chargingSchedulePeriodCount = 0;
  5741. char sstr[30]={ 0 };//sstr[200]={ 0 };
  5742. int c = 0;
  5743. char *loc;
  5744. char comfirmstr[20]={0};
  5745. DEBUG_INFO("handleRemoteStartRequest ...\n");
  5746. if(server_pending == TRUE)
  5747. {
  5748. return 0;
  5749. }
  5750. connectorIdIsNULL = chargingProfileIsNULL = transactionIdIsNULL = recurrencyKindIsNULL = validFromIsNULL = validToIsNULL = durationIsNULL = startScheduleIsNULL = minChargingRateIsNULL = numberPhasesIsNULL= FALSE;
  5751. //**********connectorId****************/
  5752. c = 0;
  5753. memset(sstr ,0, sizeof(sstr) );
  5754. loc = strstr(payload, "connectorId");
  5755. if(loc == NULL)
  5756. {
  5757. connectorIdIsNULL = TRUE;
  5758. }
  5759. else
  5760. {
  5761. while ((loc[strlen("connectorId")+2+c] != '}') && (loc[strlen("connectorId")+2+c] != ','))
  5762. {
  5763. sstr[c] = loc[strlen("connectorId")+2+c];
  5764. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5765. c++;
  5766. }
  5767. sstr[c] = '\0';
  5768. connectorIdInt = atoi(sstr);
  5769. }
  5770. if(connectorIdIsNULL == TRUE) // need to discussion
  5771. {
  5772. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  5773. goto end;
  5774. }
  5775. //****************idTag*******************/
  5776. c = 0;
  5777. memset(sstr ,0, sizeof(sstr) );
  5778. loc = strstr(payload, "idTag");
  5779. while (loc[3+strlen("idTag")+c] != '\"')
  5780. {
  5781. sstr[c] = loc[3+strlen("idTag")+c];
  5782. c++;
  5783. }
  5784. sstr[c] = '\0';
  5785. strcpy(idTagstr,sstr);
  5786. //****************chargingProfile*******************/
  5787. c = 0;
  5788. memset(sstr ,0, sizeof(sstr) );
  5789. loc = strstr(payload, "chargingProfile");
  5790. if(loc == NULL)
  5791. {
  5792. chargingProfileIsNULL = TRUE;
  5793. }
  5794. else
  5795. {
  5796. //****************chargingProfileId*******************/
  5797. c=0;
  5798. loc = strstr(payload, "chargingProfileId");
  5799. memset(sstr ,0, sizeof(sstr) );
  5800. while ((loc[strlen("chargingProfileId")+2+c] != '}') && (loc[strlen("chargingProfileId")+2+c] != ','))
  5801. {
  5802. sstr[c] = loc[strlen("chargingProfileId")+2+c];
  5803. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5804. c++;
  5805. }
  5806. sstr[c] = '\0';
  5807. chargingProfileIdInt = atoi(sstr);
  5808. //****************transactionId*******************/
  5809. loc = strstr(payload, "transactionId");
  5810. if(loc == NULL)
  5811. {
  5812. transactionIdIsNULL = TRUE;
  5813. }
  5814. else
  5815. {
  5816. c=0;
  5817. memset(sstr ,0, sizeof(sstr) );
  5818. while ((loc[strlen("transactionId")+2+c] != '}') && (loc[strlen("transactionId")+2+c] != ','))
  5819. {
  5820. sstr[c] = loc[strlen("transactionId")+2+c];
  5821. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5822. c++;
  5823. }
  5824. sstr[c] = '\0';
  5825. transactionIdInt = atoi(sstr);
  5826. }
  5827. //****************stackLevel*******************/
  5828. c=0;
  5829. loc = strstr(payload, "stackLevel");
  5830. memset(sstr ,0, sizeof(sstr) );
  5831. while ((loc[strlen("stackLevel")+2+c] != '}') && (loc[strlen("stackLevel")+2+c] != ','))
  5832. {
  5833. sstr[c] = loc[strlen("stackLevel")+2+c];
  5834. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5835. c++;
  5836. }
  5837. sstr[c] = '\0';
  5838. stackLevelInt = atoi(sstr);
  5839. //****************chargingProfilePurpose*******************/
  5840. c = 0;
  5841. memset(sstr ,0, sizeof(sstr) );
  5842. loc = strstr(payload, "chargingProfilePurpose");
  5843. while (loc[3+strlen("chargingProfilePurpose")+c] != '\"')
  5844. {
  5845. sstr[c] = loc[3+strlen("chargingProfilePurpose")+c];
  5846. c++;
  5847. }
  5848. sstr[c] = '\0';
  5849. strcpy(chargingProfilePurposestr,sstr);
  5850. //****************chargingProfileKind*******************/
  5851. c = 0;
  5852. memset(sstr ,0, sizeof(sstr) );
  5853. loc = strstr(payload, "chargingProfileKind");
  5854. while (loc[3+strlen("chargingProfileKind")+c] != '\"')
  5855. {
  5856. sstr[c] = loc[3+strlen("chargingProfileKind")+c];
  5857. c++;
  5858. }
  5859. sstr[c] = '\0';
  5860. strcpy(chargingProfileKindstr,sstr);
  5861. //****************recurrencyKind*******************/
  5862. loc = strstr(payload, "recurrencyKind");
  5863. if(loc == NULL)
  5864. {
  5865. recurrencyKindIsNULL = TRUE;
  5866. }
  5867. else
  5868. {
  5869. c = 0;
  5870. memset(sstr ,0, sizeof(sstr) );
  5871. while (loc[3+strlen("recurrencyKind")+c] != '\"')
  5872. {
  5873. sstr[c] = loc[3+strlen("recurrencyKind")+c];
  5874. c++;
  5875. }
  5876. sstr[c] = '\0';
  5877. strcpy(recurrencyKindstr,sstr);
  5878. }
  5879. //****************validFrom*******************/
  5880. loc = strstr(payload, "validFrom");
  5881. if(loc == NULL)
  5882. {
  5883. validFromIsNULL = TRUE;
  5884. }
  5885. else
  5886. {
  5887. c = 0;
  5888. memset(sstr ,0, sizeof(sstr) );
  5889. while (loc[3+strlen("validFrom")+c] != '\"')
  5890. {
  5891. sstr[c] = loc[3+strlen("validFrom")+c];
  5892. c++;
  5893. }
  5894. sstr[c] = '\0';
  5895. strcpy(validFromstr,sstr);
  5896. }
  5897. //****************validTo*******************/
  5898. loc = strstr(payload, "validTo");
  5899. if(loc == NULL)
  5900. {
  5901. validToIsNULL = TRUE;
  5902. }
  5903. else
  5904. {
  5905. c = 0;
  5906. memset(sstr ,0, sizeof(sstr) );
  5907. while (loc[3+strlen("validTo")+c] != '\"')
  5908. {
  5909. sstr[c] = loc[3+strlen("validTo")+c];
  5910. c++;
  5911. }
  5912. sstr[c] = '\0';
  5913. strcpy(validTostr,sstr);
  5914. }
  5915. //****************chargingSchedule*******************/
  5916. loc = strstr(payload, "chargingSchedule");
  5917. if(loc != NULL)
  5918. {
  5919. //****************duration*******************/
  5920. loc = strstr(payload, "duration");
  5921. if(loc == NULL)
  5922. {
  5923. durationIsNULL = TRUE;
  5924. }
  5925. else
  5926. {
  5927. c=0;
  5928. memset(sstr ,0, sizeof(sstr) );
  5929. while ((loc[strlen("duration")+2+c] != '}') && (loc[strlen("duration")+2+c] != ','))
  5930. {
  5931. sstr[c] = loc[strlen("duration")+2+c];
  5932. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5933. c++;
  5934. }
  5935. sstr[c] = '\0';
  5936. durationInt = atoi(sstr);
  5937. }
  5938. //****************startSchedule******************/
  5939. loc = strstr(payload, "startSchedule");
  5940. if(loc == NULL)
  5941. {
  5942. startScheduleIsNULL = TRUE;
  5943. }
  5944. else
  5945. {
  5946. c = 0;
  5947. memset(sstr ,0, sizeof(sstr) );
  5948. while (loc[3+strlen("startSchedule")+c] != '\"')
  5949. {
  5950. sstr[c] = loc[3+strlen("startSchedule")+c];
  5951. c++;
  5952. }
  5953. sstr[c] = '\0';
  5954. strcpy(startSchedulestr,sstr);
  5955. }
  5956. //****************chargingRateUnit*******************/
  5957. c = 0;
  5958. memset(sstr ,0, sizeof(sstr) );
  5959. loc = strstr(payload, "chargingRateUnit");
  5960. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  5961. {
  5962. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  5963. c++;
  5964. }
  5965. sstr[c] = '\0';
  5966. strcpy(chargingRateUnitstr,sstr);
  5967. //****************minChargingRate*******************/
  5968. loc = strstr(payload, "minChargingRate");
  5969. if(loc == NULL)
  5970. {
  5971. minChargingRateIsNULL = TRUE;
  5972. }
  5973. else
  5974. {
  5975. c=0;
  5976. memset(sstr ,0, sizeof(sstr) );
  5977. while ((loc[strlen("minChargingRate")+2+c] != '}') && (loc[strlen("minChargingRate")+2+c] != ','))
  5978. {
  5979. sstr[c] = loc[strlen("minChargingRate")+2+c];
  5980. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5981. c++;
  5982. }
  5983. sstr[c] = '\0';
  5984. minChargingRateflaot = atof(sstr);
  5985. }
  5986. //****************chargingSchedulePeriod count*******************/
  5987. int what_len = strlen("startPeriod");
  5988. char *where = payload;
  5989. while ((where = strstr(where, "startPeriod"))) {
  5990. where += what_len;
  5991. chargingSchedulePeriodCount++;
  5992. }
  5993. where = payload;
  5994. for(int periodNums=0; periodNums < chargingSchedulePeriodCount; periodNums++)
  5995. {
  5996. //****************startPeriod*******************/
  5997. c=0;
  5998. loc = strstr(where, "startPeriod");
  5999. memset(sstr ,0, sizeof(sstr) );
  6000. while ((loc[strlen("startPeriod")+2+c] != '}') && (loc[strlen("startPeriod")+2+c] != ','))
  6001. {
  6002. sstr[c] = loc[strlen("startPeriod")+2+c];
  6003. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6004. c++;
  6005. }
  6006. sstr[c] = '\0';
  6007. startPeriodInt[periodNums] = atoi(sstr);
  6008. //****************limit*******************/
  6009. c=0;
  6010. loc = strstr(where, "limit");
  6011. memset(sstr ,0, sizeof(sstr) );
  6012. while ((loc[strlen("limit")+2+c] != '}') && (loc[strlen("limit")+2+c] != ','))
  6013. {
  6014. sstr[c] = loc[strlen("limit")+2+c];
  6015. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6016. c++;
  6017. }
  6018. sstr[c] = '\0';
  6019. limitflaot[periodNums] = atof(sstr);
  6020. //****************numberPhases*******************/
  6021. loc = strstr(where, "numberPhases");
  6022. if(loc == NULL)
  6023. {
  6024. numberPhasesIsNULL = TRUE;
  6025. }
  6026. else
  6027. {
  6028. c=0;
  6029. memset(sstr ,0, sizeof(sstr) );
  6030. while ((loc[strlen("numberPhases")+2+c] != '}') && (loc[strlen("numberPhases")+2+c] != ','))
  6031. {
  6032. sstr[c] = loc[strlen("numberPhases")+2+c];
  6033. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6034. c++;
  6035. }
  6036. sstr[c] = '\0';
  6037. numberPhasesInt[periodNums] = atoi(sstr);
  6038. }
  6039. where = loc;
  6040. }
  6041. }
  6042. }
  6043. /*
  6044. enum _SYSTEM_STATUS
  6045. {
  6046. S_BOOTING = 0,
  6047. S_IDLE, = 1
  6048. S_AUTHORIZING, =2
  6049. S_REASSIGN_CHECK, =3
  6050. S_REASSIGN, =4
  6051. S_PRECHARGE, =5
  6052. S_PREPARING_FOR_EV, =6
  6053. S_PREPARING_FOR_EVSE, =7
  6054. S_CHARGING, =8
  6055. S_TERMINATING, =9
  6056. S_COMPLETE, =10
  6057. S_ALARM, =11
  6058. S_FAULT =12
  6059. }
  6060. */
  6061. if((connectorIdIsNULL == FALSE)&&(connectorIdInt > 0) && ((connectorIdInt -1) <= gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/))
  6062. {
  6063. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag, "%s" , idTagstr);
  6064. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.TransactionId = transactionIdInt;
  6065. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault 8: Reserved
  6066. //check Transaction active
  6067. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  6068. {
  6069. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6070. {
  6071. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (connectorIdInt -1))
  6072. {
  6073. if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) == 0))
  6074. {
  6075. //Reserved
  6076. DEBUG_INFO("Reserved now !!!The idTag matches the idTag of Reservation!!!\n");
  6077. }
  6078. else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) != 0))
  6079. {
  6080. //Reserved
  6081. DEBUG_INFO("Reserved now !!! The idTag does NOT match the idTag of Reservation!!! Reject it!!!\n");
  6082. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6083. goto end;
  6084. }
  6085. else
  6086. {
  6087. if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
  6088. && (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_PREPARING ) //S_PRECHARGE
  6089. && (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EV ) //S_PREPARING_FOR_EV
  6090. && (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EVSE )) // S_PREPARING_FOR_EVSE
  6091. {
  6092. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6093. goto end;
  6094. }
  6095. }//END FOR ELSE
  6096. }
  6097. }// END FOR CHAdeMO_QUANTITY
  6098. for (int index = 0; index < CCS_QUANTITY; index++)
  6099. {
  6100. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (connectorIdInt -1))
  6101. {
  6102. if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) == 0))
  6103. {
  6104. //Reserved
  6105. DEBUG_INFO("Reserved now !!!The idTag matches the idTag of Reservation!!!\n");
  6106. }
  6107. else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) != 0))
  6108. {
  6109. //Reserved
  6110. DEBUG_INFO("Reserved now !!! The idTag does NOT match the idTag of Reservation!!! Reject it!!!\n");
  6111. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6112. goto end;
  6113. }
  6114. else
  6115. {
  6116. if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
  6117. && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_PREPARING) //S_PRECHARGE
  6118. && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EV) //S_PREPARING_FOR_EV
  6119. && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EVSE)) // S_PREPARING_FOR_EVSE
  6120. {
  6121. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6122. goto end;
  6123. }
  6124. }// END FOR ELSE
  6125. }
  6126. }// END FOR CCS_QUANTITY
  6127. for (int index = 0; index < GB_QUANTITY; index++)
  6128. {
  6129. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (connectorIdInt -1))
  6130. {
  6131. if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) == 0))
  6132. {
  6133. //Reserved
  6134. DEBUG_INFO("Reserved now !!!The idTag matches the idTag of Reservation!!!\n");
  6135. }
  6136. else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) != 0))
  6137. {
  6138. //Reserved
  6139. DEBUG_INFO("Reserved now !!! The idTag does NOT match the idTag of Reservation!!! Reject it!!!\n");
  6140. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6141. goto end;
  6142. }
  6143. else
  6144. {
  6145. if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
  6146. && (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_PREPARING) //S_PRECHARGE
  6147. && (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EV) //S_PREPARING_FOR_EV
  6148. && (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EVSE)) // S_PREPARING_FOR_EVSE
  6149. {
  6150. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6151. goto end;
  6152. }
  6153. }// END FOR ELSE
  6154. }
  6155. } // END FOR GB_QUANTITY
  6156. }
  6157. else
  6158. {
  6159. for (int index = 0; index < AC_QUANTITY; index++)
  6160. {
  6161. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == (connectorIdInt -1))
  6162. {
  6163. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) == 0))
  6164. {
  6165. //Reserved
  6166. DEBUG_INFO("Reserved now !!!The idTag matches the idTag of Reservation!!!\n");
  6167. }
  6168. else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) != 0))
  6169. {
  6170. //Reserved
  6171. DEBUG_INFO("Reserved now !!! The idTag does NOT match the idTag of Reservation!!! Reject it!!!\n");
  6172. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6173. goto end;
  6174. }
  6175. else
  6176. {
  6177. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
  6178. && (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_PREPARING) //S_PRECHARGE
  6179. && (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EV) //S_PREPARING_FOR_EV
  6180. && (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EVSE)) // S_PREPARING_FOR_EVSE
  6181. {
  6182. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6183. goto end;
  6184. }
  6185. }//END FOR ELSE
  6186. }
  6187. }// END FOR AC_QUANTITY
  6188. }
  6189. if(chargingProfileIsNULL == FALSE)
  6190. {
  6191. //ChargingProfile
  6192. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileId = chargingProfileIdInt;
  6193. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileKind, "%s" ,chargingProfileKindstr);
  6194. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfilePurpose, "%s" ,chargingProfilePurposestr);
  6195. if(recurrencyKindIsNULL == FALSE) //OPTION
  6196. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.RecurrencyKind, "%s" ,recurrencyKindstr);
  6197. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.StackLevel = stackLevelInt;
  6198. if(transactionIdIsNULL == FALSE) // OPTION
  6199. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.TransactionId = transactionIdInt;
  6200. if(validFromIsNULL == FALSE) // OPTION
  6201. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ValidFrom, "%s" ,validFromstr);
  6202. if(validToIsNULL == FALSE) //OPTION
  6203. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ValidTo, "%s" ,validTostr);
  6204. //ChargingSchedule
  6205. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingRateUnit, "%s" ,chargingRateUnitstr);
  6206. if(durationIsNULL == FALSE) //OPTION
  6207. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.Duration = durationInt;
  6208. if(minChargingRateIsNULL == FALSE) //OPTION
  6209. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.MinChargingRate = minChargingRateflaot;
  6210. if(startScheduleIsNULL == FALSE) //OPTION
  6211. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.StartSchedule, "%s" ,startSchedulestr);
  6212. for(int periodNums=0; periodNums < chargingSchedulePeriodCount; periodNums++)
  6213. {
  6214. //ChargingSchedulePeriod
  6215. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].Limit = limitflaot[periodNums] ;
  6216. if(numberPhasesIsNULL == FALSE)
  6217. {
  6218. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].NumberPhases = numberPhasesInt[periodNums];
  6219. }
  6220. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].StartPeriod = startPeriodInt[periodNums];
  6221. }
  6222. if(strcmp(chargingProfilePurposestr, ChargingProfilePurposeTypeStr[TxProfile]) == 0)
  6223. {
  6224. ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1;
  6225. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]);
  6226. }
  6227. else
  6228. {
  6229. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6230. }
  6231. }
  6232. else
  6233. {
  6234. ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1;
  6235. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]);
  6236. }
  6237. }
  6238. else
  6239. {
  6240. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6241. //sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ResponseStatus, "%s" ,comfirmstr);
  6242. }
  6243. end:
  6244. if(connectorIdIsNULL == FALSE)
  6245. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ConnectorId = connectorIdInt;
  6246. strcpy((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag, idTagstr);
  6247. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ResponseStatus, "%s" ,comfirmstr);
  6248. //OCPP send RemoteStartConfirmation by first.
  6249. sendRemoteStartConfirmation(uuid, comfirmstr);
  6250. return result;
  6251. }
  6252. int handleRemoteStopTransactionRequest(char *uuid, char *payload)
  6253. {
  6254. mtrace();
  6255. int result = FAIL;
  6256. int match = FALSE;
  6257. int GunNO = 0;
  6258. int transactionIdInt=0;
  6259. int transactionIdIsNULL= FALSE;
  6260. char sstr[16]={ 0 };//sstr[200]={ 0 };
  6261. int c = 0;
  6262. char *loc;
  6263. char comfirmstr[20];
  6264. //[2,"ff522854-0dea-436e-87ba-23a229269994","RemoteStopTransaction",{"transactionId":1373618380}]
  6265. DEBUG_INFO("handleRemoteStopTransactionRequest...\n");
  6266. if(server_pending == TRUE)
  6267. {
  6268. return 0;
  6269. }
  6270. c=0;
  6271. loc = strstr(payload, "transactionId");
  6272. if(loc == NULL)
  6273. {
  6274. transactionIdIsNULL= TRUE;
  6275. }
  6276. else
  6277. {
  6278. memset(sstr ,0, sizeof(sstr) );
  6279. while ((loc[strlen("transactionId")+2+c] != '}') && (loc[strlen("transactionId")+2+c] != ','))
  6280. {
  6281. sstr[c] = loc[strlen("transactionId")+2+c];
  6282. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6283. c++;
  6284. }
  6285. sstr[c] = '\0';
  6286. transactionIdInt = atoi(sstr);
  6287. }
  6288. if(transactionIdIsNULL == FALSE)
  6289. {
  6290. for(int gun_index=0;gun_index < gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/;gun_index++)
  6291. {
  6292. if(ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId == transactionIdInt)
  6293. {
  6294. //check Transaction active
  6295. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  6296. {
  6297. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6298. {
  6299. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  6300. {
  6301. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  6302. {
  6303. match = TRUE;
  6304. GunNO = gun_index;
  6305. }
  6306. }
  6307. }// END FOR CHAdeMO_QUANTITY
  6308. for (int index = 0; index < CCS_QUANTITY; index++)
  6309. {
  6310. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  6311. {
  6312. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  6313. {
  6314. match = TRUE;
  6315. GunNO = gun_index;
  6316. }
  6317. }
  6318. }// END FOR CCS_QUANTITY
  6319. for (int index = 0; index < GB_QUANTITY; index++)
  6320. {
  6321. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  6322. {
  6323. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  6324. {
  6325. match = TRUE;
  6326. GunNO = gun_index;
  6327. }
  6328. }
  6329. }// END FOR GB_QUANTITY
  6330. }
  6331. else
  6332. {
  6333. for (int index = 0; index < AC_QUANTITY; index++)
  6334. {
  6335. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  6336. {
  6337. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  6338. {
  6339. match = TRUE;
  6340. GunNO = gun_index;
  6341. }
  6342. }
  6343. }// END FOR CHAdeMO_QUANTITY
  6344. }// END FOR AC ELSE
  6345. }// CHECK IF ResponseTransactionId == transactionIdInt
  6346. }//END FOR
  6347. if( match == TRUE)
  6348. {
  6349. ShmOCPP16Data->CsMsg.bits[GunNO].RemoteStopTransactionReq = 1; // inform csu of StopTransaction
  6350. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]);
  6351. sprintf((char *)ShmOCPP16Data->RemoteStopTransaction[GunNO].ResponseStatus, "%s" ,comfirmstr);
  6352. }
  6353. else
  6354. {
  6355. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6356. }
  6357. }
  6358. sendRemoteStopTransactionConfirmation(uuid, comfirmstr);
  6359. return result;
  6360. }
  6361. int handleReserveNowTransactionRequest(char *uuid, char *payload)
  6362. {
  6363. mtrace();
  6364. int result = FAIL;
  6365. int connectorIdInt=0, reservationIdInt=0;
  6366. char expiryDatestr[30]={0}, idTagstr[20]={0},parentIdTagstr[20]={0};
  6367. char comfirmstr[20]={0};
  6368. char sstr[180]={ 0 };
  6369. int c = 0;
  6370. char *loc;
  6371. //char *ptr;
  6372. //[2,"1571898416054","ReserveNow",{"connectorId":1,"expiryDate":"2020-06-19T09:10:00.000Z","idTag":"B014EA9C","reservationId":1}]
  6373. //***(1)connectorId ****/
  6374. c=0;
  6375. loc = strstr(payload, "connectorId");
  6376. memset(sstr ,0, sizeof(sstr) );
  6377. while ((loc != NULL) &&(loc[strlen("connectorId")+2+c] != ','))
  6378. {
  6379. sstr[c] = loc[strlen("connectorId")+2+c];
  6380. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6381. c++;
  6382. }
  6383. sstr[c] = '\0';
  6384. connectorIdInt = atoi(sstr);
  6385. //***(2)expiryDate ****/
  6386. loc = strstr(payload, "expiryDate");
  6387. memset(sstr ,0, sizeof(sstr) );
  6388. c = 0;
  6389. while ((loc != NULL) &&(loc[3+strlen("expiryDate")+c] != '\"'))
  6390. {
  6391. sstr[c] = loc[3+strlen("expiryDate")+c];
  6392. c++;
  6393. }
  6394. sstr[c] = '\0';
  6395. strcpy(expiryDatestr, sstr);
  6396. //***(3)idTag ****/
  6397. loc = strstr(payload, "idTag");
  6398. memset(sstr ,0, sizeof(sstr) );
  6399. c = 0;
  6400. while ((loc != NULL) &&(loc[3+strlen("idTag")+c] != '\"'))
  6401. {
  6402. sstr[c] = loc[3+strlen("idTag")+c];
  6403. c++;
  6404. }
  6405. sstr[c] = '\0';
  6406. strcpy(idTagstr, sstr);
  6407. //***(4)parentIdTag ****/
  6408. loc = strstr(payload, "parentIdTag");
  6409. memset(sstr ,0, sizeof(sstr) );
  6410. c = 0;
  6411. while ((loc != NULL) &&(loc[3+strlen("parentIdTag")+c] != '\"'))
  6412. {
  6413. sstr[c] = loc[3+strlen("parentIdTag")+c];
  6414. c++;
  6415. }
  6416. sstr[c] = '\0';
  6417. strcpy(parentIdTagstr, sstr);
  6418. //***(5)reservationId ****/
  6419. c=0;
  6420. loc = strstr(payload, "reservationId");
  6421. memset(sstr ,0, sizeof(sstr) );
  6422. while ((loc != NULL) &&((loc[strlen("reservationId")+2+c] != '}') && (loc[strlen("reservationId")+2+c] != ',')))
  6423. {
  6424. sstr[c] = loc[strlen("reservationId")+2+c];
  6425. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6426. c++;
  6427. }
  6428. sstr[c] = '\0';
  6429. reservationIdInt = atoi(sstr);
  6430. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6431. /*
  6432. enum _SYSTEM_STATUS
  6433. {
  6434. S_BOOTING = 0,
  6435. S_IDLE, = 1
  6436. S_AUTHORIZING, =2
  6437. S_REASSIGN_CHECK, =3
  6438. S_REASSIGN, =4
  6439. S_PRECHARGE, =5
  6440. S_PREPARING_FOR_EV, =6
  6441. S_PREPARING_FOR_EVSE, =7
  6442. S_CHARGING, =8
  6443. S_TERMINATING, =9
  6444. S_COMPLETE, =10
  6445. S_ALARM, =11
  6446. S_FAULT =12
  6447. }
  6448. */
  6449. if((connectorIdInt == 0) &&(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData, "FALSE") == 0)) //For OCTT Test case
  6450. {
  6451. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6452. goto end;
  6453. }
  6454. if((connectorIdInt > 0) && ((connectorIdInt -1) <= gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/))
  6455. {
  6456. //check Transaction active
  6457. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  6458. {
  6459. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6460. {
  6461. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (connectorIdInt -1))
  6462. {
  6463. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId)
  6464. {
  6465. //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  6466. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_FAULT) //S_FAULT
  6467. {
  6468. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE
  6469. {
  6470. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6471. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6472. }
  6473. else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_MAINTAIN)||(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_DEBUG)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9'))
  6474. {
  6475. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6476. }
  6477. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
  6478. {
  6479. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6480. }
  6481. else
  6482. {
  6483. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6484. }
  6485. }
  6486. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT
  6487. {
  6488. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6489. }
  6490. }
  6491. else
  6492. {
  6493. //replace reservation
  6494. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6495. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6496. }
  6497. }
  6498. } // END FOR CHAdeMO_QUANTITY
  6499. for (int index = 0; index < CCS_QUANTITY; index++)
  6500. {
  6501. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (connectorIdInt -1))
  6502. {
  6503. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId)
  6504. {
  6505. //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  6506. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_FAULT) //S_FAULT
  6507. {
  6508. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE
  6509. {
  6510. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6511. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6512. }
  6513. else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) ||(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_DEBUG)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '9'))
  6514. {
  6515. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6516. }
  6517. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
  6518. {
  6519. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6520. }
  6521. else
  6522. {
  6523. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6524. }
  6525. }
  6526. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus ==SYS_MODE_FAULT) //S_FAULT
  6527. {
  6528. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6529. }
  6530. }
  6531. else
  6532. {
  6533. //replace reservation
  6534. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6535. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6536. }
  6537. }
  6538. } // END FOR CCS_QUANTITY
  6539. for (int index = 0; index < GB_QUANTITY; index++)
  6540. {
  6541. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (connectorIdInt - 1))
  6542. {
  6543. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId)
  6544. {
  6545. //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  6546. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_FAULT) //S_FAULT
  6547. {
  6548. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE
  6549. {
  6550. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6551. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6552. }
  6553. else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_DEBUG)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '9'))
  6554. {
  6555. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6556. }
  6557. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
  6558. {
  6559. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6560. }
  6561. else
  6562. {
  6563. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6564. }
  6565. }
  6566. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==SYS_MODE_FAULT) //S_FAULT
  6567. {
  6568. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6569. }
  6570. }
  6571. else
  6572. {
  6573. //replace reservation
  6574. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6575. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6576. }
  6577. }
  6578. }// END FOR GB_QUANTITY
  6579. }
  6580. else
  6581. {
  6582. for (int index = 0; index < AC_QUANTITY; index++)
  6583. {
  6584. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == (connectorIdInt -1))
  6585. {
  6586. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId)
  6587. {
  6588. //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  6589. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_FAULT) //S_FAULT
  6590. {
  6591. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE
  6592. {
  6593. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6594. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6595. }
  6596. else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) ||(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_DEBUG)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9'))
  6597. {
  6598. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6599. }
  6600. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
  6601. {
  6602. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6603. }
  6604. else
  6605. {
  6606. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6607. }
  6608. }
  6609. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT
  6610. {
  6611. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6612. }
  6613. }
  6614. else
  6615. {
  6616. //replace reservation
  6617. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6618. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6619. }
  6620. }
  6621. } // END FOR AC_QUANTITY
  6622. }//END FOR AC ELSE
  6623. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ResponseStatus, "%s" ,comfirmstr);
  6624. }
  6625. else if(connectorIdInt == 0)
  6626. {
  6627. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  6628. {
  6629. //check Transaction active
  6630. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6631. {
  6632. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId)
  6633. {
  6634. if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_DEBUG)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9'))
  6635. {
  6636. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6637. goto end;
  6638. }
  6639. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
  6640. {
  6641. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6642. goto end;
  6643. }
  6644. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT
  6645. {
  6646. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6647. goto end;
  6648. }
  6649. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
  6650. {
  6651. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6652. goto end;
  6653. }
  6654. }
  6655. }// END FOR CHAdeMO_QUANTITY
  6656. for (int index = 0; index < CCS_QUANTITY; index++)
  6657. {
  6658. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId)
  6659. {
  6660. if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_MAINTAIN)||(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_DEBUG)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '9'))
  6661. {
  6662. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6663. }
  6664. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
  6665. {
  6666. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6667. }
  6668. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus ==SYS_MODE_FAULT) //S_FAULT
  6669. {
  6670. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6671. }
  6672. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
  6673. {
  6674. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6675. }
  6676. }
  6677. } // END FOR CCS_QUANTITY
  6678. for (int index = 0; index < GB_QUANTITY; index++)
  6679. {
  6680. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId)
  6681. {
  6682. if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_MAINTAIN)||(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_DEBUG)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '9'))
  6683. {
  6684. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6685. }
  6686. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
  6687. {
  6688. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6689. }
  6690. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==SYS_MODE_FAULT) //S_FAULT
  6691. {
  6692. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6693. }
  6694. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
  6695. {
  6696. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6697. }
  6698. }
  6699. } // END FOR GB_QUANTITY
  6700. }
  6701. else
  6702. {
  6703. for (int index = 0; index < AC_QUANTITY; index++)
  6704. {
  6705. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId)
  6706. {
  6707. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_DEBUG)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9'))
  6708. {
  6709. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6710. goto end;
  6711. }
  6712. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
  6713. {
  6714. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6715. goto end;
  6716. }
  6717. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT
  6718. {
  6719. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6720. goto end;
  6721. }
  6722. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
  6723. {
  6724. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6725. goto end;
  6726. }
  6727. }
  6728. }// END FOR AC_QUANTITY
  6729. }
  6730. //The connectorId is 0
  6731. ShmOCPP16Data->CsMsg.bits[0].ReserveNowReq = 1;
  6732. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6733. sprintf((char *)ShmOCPP16Data->ReserveNow[0].ResponseStatus, "%s" ,comfirmstr);
  6734. ShmOCPP16Data->ReserveNow[0].ConnectorId = connectorIdInt;
  6735. sprintf((char *)ShmOCPP16Data->ReserveNow[0].ExpiryDate, "%s" , expiryDatestr);
  6736. sprintf((char *)ShmOCPP16Data->ReserveNow[0].IdTag, "%s" , idTagstr);
  6737. sprintf((char *)ShmOCPP16Data->ReserveNow[0].ParentIdTag, "%s" , parentIdTagstr);
  6738. ShmOCPP16Data->ReserveNow[0].ReservationId = reservationIdInt;
  6739. strcpy((char *)ShmOCPP16Data->ReserveNow[0].guid, uuid);
  6740. result = TRUE;
  6741. return result;
  6742. }
  6743. else
  6744. {
  6745. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6746. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ResponseStatus, "%s" ,comfirmstr);
  6747. }
  6748. if(strcmp(comfirmstr,"Accepted") == 0)
  6749. {
  6750. ShmOCPP16Data->ReserveNow[connectorIdInt-1].ConnectorId = connectorIdInt;
  6751. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ExpiryDate, "%s" , expiryDatestr);
  6752. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].IdTag, "%s" , idTagstr);
  6753. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ParentIdTag, "%s" , parentIdTagstr);
  6754. ShmOCPP16Data->ReserveNow[connectorIdInt-1].ReservationId = reservationIdInt;
  6755. strcpy((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].guid, uuid);
  6756. result = TRUE;
  6757. return result;
  6758. }
  6759. end:
  6760. sendReserveNowTransactionConfirmation(uuid,comfirmstr);
  6761. //ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowConf = 1;
  6762. return result;
  6763. }
  6764. int handleResetRequest(char *uuid, char *payload)
  6765. {
  6766. mtrace();
  6767. int result = FAIL;
  6768. char sstr[10]={0};
  6769. char typestr[10]={0};
  6770. char comfirmstr[20]={0};
  6771. int c = 0;
  6772. char *loc;
  6773. //[2,"6f88d461-4d17-462c-a69b-1f7a8c5b12df","Reset",{"type":"Hard"}]
  6774. DEBUG_INFO("handleResetRequest ...\n");
  6775. loc = strstr(payload, "type");
  6776. memset(sstr ,0, sizeof(sstr) );
  6777. c = 0;
  6778. while (loc[3+strlen("type")+c] != '\"')
  6779. {
  6780. sstr[c] = loc[3+strlen("type")+c];
  6781. c++;
  6782. }
  6783. sstr[c] = '\0';
  6784. strcpy(typestr,sstr);
  6785. sprintf((char *)ShmOCPP16Data->Reset.Type, "%s" ,typestr);
  6786. //strcpy(ShmOCPP16Data->Reset.Type, typestr);
  6787. if(strcmp(typestr, ResetTypeStr[Hard])==0)
  6788. {
  6789. //check Transaction active
  6790. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  6791. {
  6792. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6793. {
  6794. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING)
  6795. {
  6796. //0: unplug, 1: Plug-in
  6797. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn = 0;
  6798. }
  6799. }
  6800. for (int index = 0; index < CCS_QUANTITY; index++)
  6801. {
  6802. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING)
  6803. {
  6804. //0: unplug, 1: Plug-in
  6805. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn = 0;
  6806. }
  6807. }
  6808. for (int index = 0; index < GB_QUANTITY; index++)
  6809. {
  6810. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING)
  6811. {
  6812. //0: unplug, 1: Plug-in
  6813. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn = 0;
  6814. }
  6815. }
  6816. }
  6817. else
  6818. {
  6819. for (int index = 0; index < AC_QUANTITY; index++)
  6820. {
  6821. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING)
  6822. {
  6823. //0: unplug, 1: Plug-in
  6824. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn = 0;
  6825. }
  6826. }
  6827. }// END FOR AC ELSE
  6828. ShmOCPP16Data->MsMsg.bits.ResetReq = 1;
  6829. strcpy((char *)ShmOCPP16Data->Reset.guid, uuid);
  6830. result = TRUE;
  6831. return result;
  6832. }
  6833. else if(strcmp(typestr, ResetTypeStr[Soft])==0)
  6834. {
  6835. //check Transaction active
  6836. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  6837. {
  6838. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6839. {
  6840. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING)
  6841. {
  6842. //0: unplug, 1: Plug-in
  6843. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn = 0;
  6844. }
  6845. }
  6846. for (int index = 0; index < CCS_QUANTITY; index++)
  6847. {
  6848. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING)
  6849. {
  6850. //0: unplug, 1: Plug-in
  6851. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn = 0;
  6852. }
  6853. }
  6854. for (int index = 0; index < GB_QUANTITY; index++)
  6855. {
  6856. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING)
  6857. {
  6858. //0: unplug, 1: Plug-in
  6859. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn = 0;
  6860. }
  6861. }
  6862. }
  6863. else
  6864. {
  6865. for (int index = 0; index < AC_QUANTITY; index++)
  6866. {
  6867. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING)
  6868. {
  6869. //0: unplug, 1: Plug-in
  6870. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn = 0;
  6871. }
  6872. }
  6873. }// END FOR AC ELSE
  6874. ShmOCPP16Data->MsMsg.bits.ResetReq = 1;
  6875. strcpy((char *)ShmOCPP16Data->Reset.guid, uuid);
  6876. result = TRUE;
  6877. return result;
  6878. }
  6879. else
  6880. {
  6881. strcpy(comfirmstr, ResetStatusStr[ResetStatus_Rejected]);
  6882. sprintf((char *)ShmOCPP16Data->Reset.ResponseStatus, "%s" ,comfirmstr);
  6883. goto errorend;
  6884. }
  6885. errorend:
  6886. sendResetConfirmation(uuid, comfirmstr);
  6887. return result;
  6888. }
  6889. int handleSendLocalListRequest(char *uuid, char *payload)
  6890. {
  6891. mtrace();
  6892. int result = FAIL;
  6893. int listVersionInt;
  6894. //char *updateTypestr, *idTagstr, *expiryDatestr, *parentIdTagstr, *statusstr;
  6895. char listsearch[]="listVersion";
  6896. char updateTypesearch[]="updateType";
  6897. char localAuthorizationListsearch[]="localAuthorizationList";
  6898. char sstr[60500]={ 0 };//sstr[200]={ 0 };
  6899. char CardList[500][160]={0};
  6900. char updateTypestr[15]={0};
  6901. char idTagstr[20]={0};
  6902. char parentIdTag[20]={0};
  6903. char expiryDate[30]={0};
  6904. char idTagstatus[16]={0};
  6905. int c = 0;
  6906. int i = 0;
  6907. char *delim1 = "}";
  6908. char * pch;
  6909. char *loc;
  6910. //char *ptr;
  6911. char comfirmstr[20];
  6912. //int n_localAuthorizations = 0;
  6913. int checkState_Faulted = FALSE;
  6914. DEBUG_INFO("handleSendLocalListRequest\n");
  6915. if(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "FALSE") == 0) //For OCTT Test case
  6916. {
  6917. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_NotSupported]);
  6918. goto end;
  6919. }
  6920. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  6921. {
  6922. //check Charge Point state
  6923. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6924. {
  6925. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT ---> Faulted
  6926. {
  6927. checkState_Faulted = TRUE; //OCPP Status: Faulted
  6928. }
  6929. }
  6930. for (int index = 0; index < CCS_QUANTITY; index++)
  6931. {
  6932. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT ---> Faulted
  6933. {
  6934. checkState_Faulted = TRUE; //OCPP Status
  6935. }
  6936. }
  6937. for (int index = 0; index < GB_QUANTITY; index++)
  6938. {
  6939. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT ---> Faulted
  6940. {
  6941. checkState_Faulted = TRUE; //OCPP Status: Faulted
  6942. }
  6943. }
  6944. }
  6945. else
  6946. {
  6947. //check Charge Point state
  6948. for (int index = 0; index < AC_QUANTITY; index++)
  6949. {
  6950. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT ---> Faulted
  6951. {
  6952. checkState_Faulted = TRUE; //OCPP Status: Faulted
  6953. }
  6954. }
  6955. }// END FOR AC ELSE
  6956. if(checkState_Faulted == TRUE)
  6957. {
  6958. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Failed]);
  6959. goto end;
  6960. }
  6961. //listVersion
  6962. c = 0;
  6963. loc = strstr(payload, listsearch);
  6964. while (loc[strlen("listVersion")+2+c] != ',')
  6965. {
  6966. sstr[c] = loc[strlen("listVersion")+2+c];
  6967. c++;
  6968. }
  6969. sstr[c] = '\0';
  6970. listVersionInt = atoi(sstr);
  6971. ShmOCPP16Data->SendLocalList.ListVersion = listVersionInt;
  6972. //updateType
  6973. loc = strstr(payload, updateTypesearch);
  6974. c = 0;
  6975. while (loc[3+strlen(updateTypesearch)+c] != '\"')
  6976. {
  6977. sstr[c] = loc[3+strlen(updateTypesearch)+c];
  6978. c++;
  6979. }
  6980. sstr[c] = '\0';
  6981. strcpy(updateTypestr, sstr);
  6982. sprintf((char *)ShmOCPP16Data->SendLocalList.UpdateType, "%s", updateTypestr);
  6983. //localAuthorizationList
  6984. memset(sstr ,0, sizeof(sstr) );
  6985. loc = strstr(payload, localAuthorizationListsearch);
  6986. if(loc != NULL) // localAuthorizationList is not NULL
  6987. {
  6988. //Check UpdateType
  6989. if(strcmp(updateTypestr, UpdateTypeStr[Full]) == 0)
  6990. {
  6991. //Local list full update
  6992. printf("Local list full update.\n");
  6993. OCPP_cleanLocalList();
  6994. }
  6995. else if(strcmp(updateTypestr, UpdateTypeStr[Differential]) == 0)
  6996. {
  6997. //Local list different update
  6998. printf("Local list different update.\n");
  6999. OCPP_getListVerion();
  7000. if(listVersionInt < localversion )//if(listVersionInt <= localversion ) for OCTT Case ---remove temporally
  7001. {
  7002. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_VersionMismatch]);
  7003. goto end;
  7004. }
  7005. }
  7006. else
  7007. {
  7008. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_NotSupported]);
  7009. goto end;
  7010. }
  7011. c = 0;
  7012. while (loc[3+strlen(localAuthorizationListsearch)+c] != ']')
  7013. {
  7014. sstr[c] = loc[3+strlen(localAuthorizationListsearch)+c];
  7015. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7016. c++;
  7017. }
  7018. sstr[c] = '\0';
  7019. //parsing strings to words
  7020. i = 0;
  7021. pch = strtok(sstr,delim1);
  7022. while (pch != NULL)
  7023. {
  7024. strcpy(CardList[i], pch);
  7025. pch = strtok (NULL, delim1);
  7026. i = i + 1;
  7027. }
  7028. //local Authorizations List Numbers
  7029. //n_localAuthorizations = i;
  7030. ShmOCPP16Data->SendLocalList.ListVersion = listVersionInt;
  7031. memset(ShmOCPP16Data->SendLocalList.LocalAuthorizationList, 0 , sizeof(struct StructLocalAuthorizationList)* 500);
  7032. c= 0;
  7033. while(c < i)
  7034. {
  7035. //Search "IdToken"
  7036. memset(sstr ,0, sizeof(sstr) );
  7037. loc = strstr(CardList[c], "idTag");
  7038. int j = 0;
  7039. while (loc[3+strlen("idTag")+j] != '\"')
  7040. {
  7041. sstr[j] = loc[3+strlen("idTag")+j];
  7042. //printf("i=%d sstr=%c\n",c, sstr[j]);
  7043. j++;
  7044. }
  7045. sstr[j] = '\0';
  7046. strcpy(idTagstr, sstr);
  7047. //Search "expiryDate"
  7048. memset(sstr ,0, sizeof(sstr) );
  7049. loc = strstr(CardList[c], "expiryDate");
  7050. j = 0;
  7051. while (loc[3+strlen("expiryDate")+j] != '\"')
  7052. {
  7053. sstr[j] = loc[3+strlen("expiryDate")+j];
  7054. //printf("i=%d sstr=%c\n",c, sstr[j]);
  7055. j++;
  7056. }
  7057. sstr[j] = '\0';
  7058. strcpy(expiryDate, sstr);
  7059. //Search "parentIdTag"
  7060. memset(sstr ,0, sizeof(sstr) );
  7061. loc = strstr(CardList[c], "parentIdTag");
  7062. j = 0;
  7063. while (loc[3+strlen("parentIdTag")+j] != '\"')
  7064. {
  7065. sstr[j] = loc[3+strlen("parentIdTag")+j];
  7066. //printf("i=%d sstr=%c\n",c, sstr[j]);
  7067. j++;
  7068. }
  7069. sstr[j] = '\0';
  7070. strcpy(parentIdTag, sstr);
  7071. //Search "status"
  7072. memset(sstr ,0, sizeof(sstr) );
  7073. loc = strstr(CardList[c], "status");
  7074. j = 0;
  7075. while (loc[3+strlen("status")+j] != '\"')
  7076. {
  7077. sstr[j] = loc[3+strlen("status")+j];
  7078. //printf("i=%d sstr=%c\n",c, sstr[j]);
  7079. j++;
  7080. }
  7081. sstr[j] = '\0';
  7082. strcpy(idTagstatus, sstr);
  7083. OCPP_getIdTag(idTagstr);
  7084. //OCPP_getIdTag("test"); For Test
  7085. DEBUG_INFO("idTagAuthorization=%s\n",idTagAuthorization);
  7086. if(strcmp(updateTypestr, UpdateTypeStr[Full]) == 0)
  7087. {
  7088. //Local list full update
  7089. DEBUG_INFO("Local list full update.\n");
  7090. // update list
  7091. OCPP_addLocalList_1(listVersionInt, idTagstr, parentIdTag, expiryDate, idTagstatus);
  7092. OCPP_get_TableAuthlocalAllData();
  7093. }
  7094. else if(strcmp(updateTypestr, UpdateTypeStr[Differential]) == 0)
  7095. {
  7096. if((strcmp(idTagstr, idTagAuthorization) == 0) && (parentIdTag[0] != '\0'))
  7097. {
  7098. OCPP_addLocalList_1(listVersionInt, idTagstr, parentIdTag, expiryDate, idTagstatus);
  7099. }
  7100. else if((strcmp(idTagstr, idTagAuthorization) == 0) && (parentIdTag[0] == '\0'))
  7101. {
  7102. OCPP_deleteIdTag(idTagstr);
  7103. }
  7104. else if((strcmp(idTagstr, idTagAuthorization) != 0) && (parentIdTag[0] != '\0'))
  7105. {
  7106. OCPP_addLocalList_1(listVersionInt, idTagstr, parentIdTag, expiryDate, idTagstatus);
  7107. }
  7108. }
  7109. strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[c].IdTag, idTagstr);
  7110. strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[c].IdTagInfo.ExpiryDate, expiryDate);
  7111. strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[c].IdTagInfo.ParentIdTag, parentIdTag);
  7112. strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[c].IdTagInfo.Status, idTagstatus);
  7113. c++;
  7114. }
  7115. }
  7116. else
  7117. {
  7118. if(strcmp(updateTypestr, UpdateTypeStr[Differential]) == 0)
  7119. {
  7120. //Local list different update
  7121. DEBUG_INFO("Local list different update.\n");
  7122. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Accepted]);
  7123. goto end;
  7124. }
  7125. }
  7126. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Accepted]);
  7127. end:
  7128. sendSendLocalListConfirmation(uuid, comfirmstr);
  7129. //ShmOCPP16Data->MsMsg.bits.SendLocalListConf = 1;
  7130. #if 0
  7131. if(ShmOCPP16Data->SendLocalList.LocalAuthorizationList != NULL)
  7132. free(ShmOCPP16Data->SendLocalList.LocalAuthorizationList);
  7133. #endif
  7134. return result;
  7135. }
  7136. /*
  7137. enum _SYSTEM_STATUS
  7138. {
  7139. S_BOOTING = 0,
  7140. S_IDLE, =1
  7141. S_AUTHORIZING, =2
  7142. S_REASSIGN_CHECK, =3
  7143. S_REASSIGN, =4
  7144. S_PRECHARGE, =5
  7145. S_PREPARING_FOR_EV, =6
  7146. S_PREPARING_FOR_EVSE, =7
  7147. S_CHARGING, =8
  7148. S_TERMINATING, =9
  7149. S_COMPLETE, =10
  7150. S_ALARM, =11
  7151. S_FAULT =12
  7152. };
  7153. */
  7154. #define MAX 200
  7155. int handleSetChargingProfileRequest(char *uuid, char *payload)
  7156. {
  7157. mtrace();
  7158. int result = FAIL;
  7159. int connectorIdInt=0, chargingProfileIdInt=0, transactionIdInt=0,stackLevelInt=0, durationInt=0, startPeriodInt[10]={0}, numberPhasesInt[10]={0};
  7160. int tempconnectorIdInt=0, tempchargingProfileIdInt=0, tempstackLevelInt=0;
  7161. char chargingProfilePurposeStr[30]={0};
  7162. char chargingProfileKindStr[16]={0};
  7163. char recurrencyKindStr[10]={0};
  7164. char validFromStr[30]={0}, validToStr[30]={0}, startScheduleStr[30]={0}, chargingRateUnitStr[6]={0};
  7165. float minChargingRateFloat = 0.0, limitflaot[10] = {0.0};
  7166. int chargingSchedulePeriodCount = 0;
  7167. //int updateflag = FALSE;
  7168. char comfirmstr[20]={0};
  7169. int meet= FALSE;
  7170. char sstr[10]={0};
  7171. int c = 0;
  7172. char *loc;
  7173. FILE *fptr1;//, *fptr2;
  7174. //int lno=0;//, linectr = 0;
  7175. //int modifyflag = FALSE;
  7176. char filename[MAX]={0};
  7177. char tempfile[] = "../Storage/OCPP/temp.json";
  7178. int resultRename=0;
  7179. char rmFileCmd[50]={0};
  7180. char tempchargingProfilePurposeStr[30]={0};
  7181. //[2,"d65bcbca-0b07-49c1-b679-e6c6ff9f5627","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":1,"transactionId":0,"stackLevel":0,"chargingProfilePurpose":"TxDefaultProfile","chargingProfileKind":"Absolute","recurrencyKind":"Daily","validFrom":"2019-07-01T02:39:55.000Z","validTo":"2019-07-04T02:39:55.000Z","chargingSchedule":{"duration":86400,"startSchedule":"2019-07-01T02:39:55.000Z","chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":20.0,"numberPhases":3},{"startPeriod":300,"limit":10.0,"numberPhases":3},{"startPeriod":600,"limit":20.0,"numberPhases":3},{"startPeriod":1200,"limit":10.0,"numberPhases":3},{"startPeriod":1800,"limit":20.0,"numberPhases":3},{"startPeriod":2400,"limit":10.0,"numberPhases":3},{"startPeriod":3000,"limit":20.0,"numberPhases":3}],"minChargingRate":20.1}}}]
  7182. DEBUG_INFO("handleSetChargingProfileRequest\n");
  7183. connectorIdInt = chargingProfileIdInt = transactionIdInt = stackLevelInt = 0;
  7184. //*********************connectorId***************************/
  7185. loc = strstr(payload, "connectorId");
  7186. c = 0;
  7187. memset(sstr ,0, sizeof(sstr) );
  7188. while (loc[strlen("connectorId")+2+c] != ',')
  7189. {
  7190. sstr[c] = loc[strlen("connectorId")+2+c];
  7191. c++;
  7192. }
  7193. sstr[c] = '\0';
  7194. connectorIdInt = atoi(sstr);
  7195. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7196. {
  7197. ShmOCPP16Data->SetChargingProfile[0].ConnectorId = connectorIdInt;
  7198. }
  7199. else
  7200. {
  7201. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ConnectorId = connectorIdInt;
  7202. }
  7203. //DEBUG_INFO("handleSetChargingProfileRequest -1\n");
  7204. //*********************chargingProfileId***************************/
  7205. loc = strstr(payload, "chargingProfileId");
  7206. c = 0;
  7207. memset(sstr ,0, sizeof(sstr) );
  7208. while (loc[strlen("chargingProfileId")+2+c] != ',')
  7209. {
  7210. sstr[c] = loc[strlen("chargingProfileId")+2+c];
  7211. c++;
  7212. }
  7213. sstr[c] = '\0';
  7214. chargingProfileIdInt = atoi(sstr);
  7215. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7216. {
  7217. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingProfileId = chargingProfileIdInt;
  7218. }
  7219. else
  7220. {
  7221. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingProfileId = chargingProfileIdInt;
  7222. }
  7223. //DEBUG_INFO("handleSetChargingProfileRequest -2\n");
  7224. //*********************transactionId***************************/
  7225. loc = strstr(payload, "transactionId");
  7226. if(loc != NULL)
  7227. {
  7228. c = 0;
  7229. memset(sstr ,0, sizeof(sstr) );
  7230. while (loc[strlen("transactionId")+2+c] != ',')
  7231. {
  7232. sstr[c] = loc[strlen("transactionId")+2+c];
  7233. c++;
  7234. }
  7235. sstr[c] = '\0';
  7236. transactionIdInt = atoi(sstr);
  7237. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7238. {
  7239. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.TransactionId = transactionIdInt;
  7240. }
  7241. else
  7242. {
  7243. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.TransactionId = transactionIdInt;
  7244. }
  7245. }
  7246. //DEBUG_INFO("handleSetChargingProfileRequest -3\n");
  7247. //*********************stackLevel***************************/
  7248. loc = strstr(payload, "stackLevel");
  7249. c = 0;
  7250. memset(sstr ,0, sizeof(sstr) );
  7251. while (loc[strlen("stackLevel")+2+c] != ',')
  7252. {
  7253. sstr[c] = loc[strlen("stackLevel")+2+c];
  7254. c++;
  7255. }
  7256. sstr[c] = '\0';
  7257. stackLevelInt = atoi(sstr);
  7258. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7259. {
  7260. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.StackLevel = stackLevelInt;
  7261. }
  7262. else
  7263. {
  7264. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.StackLevel = stackLevelInt;
  7265. }
  7266. //DEBUG_INFO("handleSetChargingProfileRequest -4\n");
  7267. //*********************chargingProfilePurpose***************************/
  7268. loc = strstr(payload, "chargingProfilePurpose");
  7269. c = 0;
  7270. memset(sstr ,0, sizeof(sstr) );
  7271. while (loc[3+strlen("chargingProfilePurpose")+c] != '\"')
  7272. {
  7273. sstr[c] = loc[3+strlen("chargingProfilePurpose")+c];
  7274. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7275. c++;
  7276. }
  7277. sstr[c] = '\0';
  7278. strcpy(chargingProfilePurposeStr,sstr);
  7279. //DEBUG_INFO("chargingProfilePurposeStr=%s\n",chargingProfilePurposeStr);
  7280. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7281. {
  7282. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingProfilePurpose, chargingProfilePurposeStr);
  7283. }
  7284. else
  7285. {
  7286. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingProfilePurpose, chargingProfilePurposeStr);
  7287. }
  7288. //DEBUG_INFO("handleSetChargingProfileRequest -6\n");
  7289. //*********************chargingProfileKind***************************/
  7290. loc = strstr(payload, "chargingProfileKind");
  7291. c = 0;
  7292. memset(sstr ,0, sizeof(sstr) );
  7293. while (loc[3+strlen("chargingProfileKind")+c] != '\"')
  7294. {
  7295. sstr[c] = loc[3+strlen("chargingProfileKind")+c];
  7296. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7297. c++;
  7298. }
  7299. sstr[c] = '\0';
  7300. strcpy(chargingProfileKindStr,sstr);
  7301. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7302. {
  7303. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingProfileKind, chargingProfileKindStr);
  7304. }
  7305. else
  7306. {
  7307. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingProfileKind, chargingProfileKindStr);
  7308. }
  7309. //DEBUG_INFO("handleSetChargingProfileRequest -7\n");
  7310. //*********************recurrencyKind***************************/
  7311. loc = strstr(payload, "recurrencyKind");
  7312. if(loc != NULL)
  7313. {
  7314. c = 0;
  7315. memset(sstr ,0, sizeof(sstr) );
  7316. while (loc[3+strlen("recurrencyKind")+c] != '\"')
  7317. {
  7318. sstr[c] = loc[3+strlen("recurrencyKind")+c];
  7319. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7320. c++;
  7321. }
  7322. sstr[c] = '\0';
  7323. strcpy(recurrencyKindStr,sstr);
  7324. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7325. {
  7326. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.RecurrencyKind, recurrencyKindStr);
  7327. }
  7328. else
  7329. {
  7330. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.RecurrencyKind, recurrencyKindStr);
  7331. }
  7332. }
  7333. //DEBUG_INFO("handleSetChargingProfileRequest -8\n");
  7334. //*********************validFrom***************************/
  7335. loc = strstr(payload, "validFrom");
  7336. if(loc != NULL)
  7337. {
  7338. c = 0;
  7339. memset(sstr ,0, sizeof(sstr) );
  7340. while (loc[3+strlen("validFrom")+c] != '\"')
  7341. {
  7342. sstr[c] = loc[3+strlen("validFrom")+c];
  7343. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7344. c++;
  7345. }
  7346. sstr[c] = '\0';
  7347. strcpy(validFromStr,sstr);
  7348. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7349. {
  7350. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ValidFrom, validFromStr);
  7351. }
  7352. else
  7353. {
  7354. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ValidFrom, validFromStr);
  7355. }
  7356. }
  7357. //DEBUG_INFO("handleSetChargingProfileRequest -9\n");
  7358. //*********************validTo***************************/
  7359. loc = strstr(payload, "validTo");
  7360. if(loc != NULL)
  7361. {
  7362. c = 0;
  7363. memset(sstr ,0, sizeof(sstr) );
  7364. while (loc[3+strlen("validTo")+c] != '\"')
  7365. {
  7366. sstr[c] = loc[3+strlen("validTo")+c];
  7367. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7368. c++;
  7369. }
  7370. sstr[c] = '\0';
  7371. strcpy(validToStr,sstr);
  7372. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7373. {
  7374. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ValidTo, validToStr);
  7375. }
  7376. else
  7377. {
  7378. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ValidTo, validToStr);
  7379. }
  7380. }
  7381. //DEBUG_INFO("handleSetChargingProfileRequest -10\n");
  7382. //*********************duration***************************/
  7383. loc = strstr(payload, "duration");
  7384. if(loc != NULL)
  7385. {
  7386. c = 0;
  7387. memset(sstr ,0, sizeof(sstr) );
  7388. while (loc[strlen("duration")+2+c] != ',')
  7389. {
  7390. sstr[c] = loc[strlen("duration")+2+c];
  7391. c++;
  7392. }
  7393. sstr[c] = '\0';
  7394. durationInt = atoi(sstr);
  7395. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7396. {
  7397. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.Duration = durationInt;
  7398. }
  7399. else
  7400. {
  7401. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.Duration = durationInt;
  7402. }
  7403. }
  7404. //DEBUG_INFO("handleSetChargingProfileRequest -11\n");
  7405. //*********************startSchedule***************************/
  7406. loc = strstr(payload, "startSchedule");
  7407. if(loc != NULL)
  7408. {
  7409. c = 0;
  7410. memset(sstr ,0, sizeof(sstr) );
  7411. while (loc[3+strlen("startSchedule")+c] != '\"')
  7412. {
  7413. sstr[c] = loc[3+strlen("startSchedule")+c];
  7414. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7415. c++;
  7416. }
  7417. sstr[c] = '\0';
  7418. strcpy(startScheduleStr,sstr);
  7419. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7420. {
  7421. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.StartSchedule,startScheduleStr);
  7422. }
  7423. else
  7424. {
  7425. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.StartSchedule,startScheduleStr);
  7426. }
  7427. }
  7428. //DEBUG_INFO("handleSetChargingProfileRequest -12\n");
  7429. //*********************chargingRateUnit***************************/
  7430. loc = strstr(payload, "chargingRateUnit");
  7431. if(loc != NULL)
  7432. {
  7433. c = 0;
  7434. memset(sstr ,0, sizeof(sstr) );
  7435. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  7436. {
  7437. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  7438. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7439. c++;
  7440. }
  7441. sstr[c] = '\0';
  7442. strcpy(chargingRateUnitStr,sstr);
  7443. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7444. {
  7445. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingRateUnit,chargingRateUnitStr);
  7446. }
  7447. else
  7448. {
  7449. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingRateUnit,chargingRateUnitStr);
  7450. }
  7451. }
  7452. //DEBUG_INFO("handleSetChargingProfileRequest -13\n");
  7453. //****************chargingSchedulePeriod count start*******************/
  7454. int what_len = strlen("startPeriod");
  7455. char *where = payload;
  7456. if (what_len)
  7457. while ((where = strstr(where, "startPeriod"))) {
  7458. where += what_len;
  7459. chargingSchedulePeriodCount++;
  7460. }
  7461. //DEBUG_INFO("chargingSchedulePeriodCount=%d\n",chargingSchedulePeriodCount);
  7462. //DEBUG_INFO("handleSetChargingProfileRequest -13 -1\n");
  7463. where = payload;
  7464. for(int periodNums=0; periodNums < chargingSchedulePeriodCount; periodNums++)
  7465. {
  7466. //****************startPeriod*******************/
  7467. c=0;
  7468. loc = strstr(where, "startPeriod");
  7469. memset(sstr ,0, sizeof(sstr) );
  7470. while ((loc[strlen("startPeriod")+2+c] != '}') && (loc[strlen("startPeriod")+2+c] != ','))
  7471. {
  7472. sstr[c] = loc[strlen("startPeriod")+2+c];
  7473. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7474. c++;
  7475. }
  7476. sstr[c] = '\0';
  7477. startPeriodInt[periodNums] = atoi(sstr);
  7478. //DEBUG_INFO("sstr=%d\n",atoi(sstr));
  7479. //DEBUG_INFO("handleSetChargingProfileRequest -13 -1 -1\n");
  7480. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7481. {
  7482. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].StartPeriod = startPeriodInt[periodNums];
  7483. }
  7484. else
  7485. {
  7486. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].StartPeriod = startPeriodInt[periodNums];
  7487. }
  7488. //DEBUG_INFO("handleSetChargingProfileRequest -13 -2\n");
  7489. //****************limit*******************/
  7490. c=0;
  7491. loc = strstr(where, "limit");
  7492. memset(sstr ,0, sizeof(sstr) );
  7493. while ((loc[strlen("limit")+2+c] != '}') && (loc[strlen("limit")+2+c] != ','))
  7494. {
  7495. sstr[c] = loc[strlen("limit")+2+c];
  7496. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7497. c++;
  7498. }
  7499. sstr[c] = '\0';
  7500. limitflaot[periodNums] = atof(sstr);
  7501. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7502. {
  7503. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].Limit = limitflaot[periodNums];
  7504. }
  7505. else
  7506. {
  7507. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].Limit = limitflaot[periodNums];
  7508. }
  7509. //DEBUG_INFO("handleSetChargingProfileRequest -13 -3\n");
  7510. //****************numberPhases*******************/
  7511. loc = strstr(where, "numberPhases");
  7512. if(loc != NULL)
  7513. {
  7514. c=0;
  7515. memset(sstr ,0, sizeof(sstr) );
  7516. while ((loc[strlen("numberPhases")+2+c] != '}') && (loc[strlen("numberPhases")+2+c] != ','))
  7517. {
  7518. sstr[c] = loc[strlen("numberPhases")+2+c];
  7519. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7520. c++;
  7521. }
  7522. sstr[c] = '\0';
  7523. numberPhasesInt[periodNums] = atoi(sstr);
  7524. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7525. {
  7526. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].NumberPhases = numberPhasesInt[periodNums];
  7527. }
  7528. else
  7529. {
  7530. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].NumberPhases = numberPhasesInt[periodNums];
  7531. }
  7532. }
  7533. where = loc;
  7534. }
  7535. //DEBUG_INFO("handleSetChargingProfileRequest -14\n");
  7536. //****************chargingSchedulePeriod count end*******************/
  7537. //*********************minChargingRate***************************/
  7538. loc = strstr(payload, "minChargingRate");
  7539. if(loc != NULL)
  7540. {
  7541. c = 0;
  7542. memset(sstr ,0, sizeof(sstr) );
  7543. while ((loc[strlen("minChargingRate")+2+c] != ',')&&(loc[strlen("minChargingRate")+2+c] != '}'))
  7544. {
  7545. sstr[c] = loc[strlen("minChargingRate")+2+c];
  7546. c++;
  7547. }
  7548. sstr[c] = '\0';
  7549. minChargingRateFloat = atof(sstr);
  7550. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7551. {
  7552. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.MinChargingRate = minChargingRateFloat;
  7553. }
  7554. else
  7555. {
  7556. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.MinChargingRate = minChargingRateFloat;
  7557. }
  7558. }
  7559. DEBUG_INFO("\n\n Replace a specific line in a text file with a new text :\n");
  7560. DEBUG_INFO("-------------------------------------------------------------\n");
  7561. DEBUG_INFO(" Input the file name to be opened : ");
  7562. //fgets(fname, MAX, stdin);
  7563. //fname[strlen(fname) - 1] = '\0';
  7564. #if 0
  7565. switch(connectorIdInt)
  7566. {
  7567. case 0:
  7568. strcpy(filename, ChargingProfile_0_JSON );
  7569. break;
  7570. case 1:
  7571. strcpy(filename, ChargingProfile_1_JSON );
  7572. break;
  7573. case 2:
  7574. strcpy(filename, ChargingProfile_2_JSON );
  7575. break;
  7576. default:
  7577. strcpy(filename, ChargingProfile_0_JSON );
  7578. break;
  7579. }
  7580. fptr1 = fopen(filename, "r");
  7581. if (!fptr1)
  7582. {
  7583. //file not exist
  7584. DEBUG_INFO("Unable to open the input file!!\n");
  7585. fptr1 = fopen(filename, "w+");
  7586. }
  7587. fclose(fptr1);
  7588. #endif
  7589. //DEBUG_INFO("chargingProfilePurposeStr=%s\n",chargingProfilePurposeStr);
  7590. //DEBUG_INFO(" ChargingProfilePurposeTypeStr[TxProfile]=%s\n", ChargingProfilePurposeTypeStr[TxProfile]);
  7591. if(strcmp(chargingProfilePurposeStr, ChargingProfilePurposeTypeStr[ChargePointMaxProfile]) == 0)
  7592. {
  7593. //printf("set chargingProfile 1-2\n");
  7594. DEBUG_INFO("chargingProfilePurposeStr is ChargePointMaxProfile !!! \n");
  7595. if(connectorIdInt != 0)
  7596. {
  7597. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  7598. goto end;
  7599. }
  7600. strcpy(filename, ChargePointMaxProfile_JSON );
  7601. fptr1 = fopen(filename, "r");
  7602. if (!fptr1)
  7603. {
  7604. //file not exist
  7605. DEBUG_INFO("Unable to open the input file!!\n");
  7606. fptr1 = fopen(filename, "w+");
  7607. }
  7608. fclose(fptr1);
  7609. }
  7610. else if(strcmp(chargingProfilePurposeStr, ChargingProfilePurposeTypeStr[TxDefaultProfile]) == 0)
  7611. {
  7612. //printf("set chargingProfile 1-3\n");
  7613. DEBUG_INFO("chargingProfilePurposeStr is TxDefaultProfile !!! \n");
  7614. if((connectorIdInt != 0) && (connectorIdInt > gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/))
  7615. {
  7616. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  7617. goto end;
  7618. }
  7619. switch(connectorIdInt)
  7620. {
  7621. case 0:
  7622. strcpy(filename, TxDefaultProfile_0_JSON );
  7623. break;
  7624. case 1:
  7625. strcpy(filename, TxDefaultProfile_1_JSON );
  7626. break;
  7627. case 2:
  7628. strcpy(filename, TxDefaultProfile_2_JSON );
  7629. break;
  7630. default:
  7631. strcpy(filename, TxDefaultProfile_0_JSON );
  7632. break;
  7633. }
  7634. fptr1 = fopen(filename, "r");
  7635. if (!fptr1)
  7636. {
  7637. //file not exist
  7638. DEBUG_INFO("Unable to open the input file!!\n");
  7639. fptr1 = fopen(filename, "w+");
  7640. }
  7641. fclose(fptr1);
  7642. }
  7643. else if(strcmp(chargingProfilePurposeStr, ChargingProfilePurposeTypeStr[TxProfile]) == 0)
  7644. {
  7645. //printf("set chargingProfile 1-4\n");
  7646. DEBUG_INFO("chargingProfilePurposeStr is TxProfile !!! \n");
  7647. //check Transaction active
  7648. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  7649. {
  7650. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (connectorIdInt -1))
  7651. {
  7652. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  7653. {
  7654. if(transactionIdInt == ShmOCPP16Data->StartTransaction[connectorIdInt -1].ResponseTransactionId)
  7655. {
  7656. meet = TRUE;
  7657. break;
  7658. }
  7659. }
  7660. }
  7661. }
  7662. for (int index = 0; index < CCS_QUANTITY; index++)
  7663. {
  7664. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (connectorIdInt -1))
  7665. {
  7666. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  7667. {
  7668. if(transactionIdInt == ShmOCPP16Data->StartTransaction[connectorIdInt -1].ResponseTransactionId)
  7669. {
  7670. meet = TRUE;
  7671. break;
  7672. }
  7673. }
  7674. }
  7675. }
  7676. for (int index = 0; index < GB_QUANTITY; index++)
  7677. {
  7678. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (connectorIdInt -1))
  7679. {
  7680. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  7681. {
  7682. if(transactionIdInt == ShmOCPP16Data->StartTransaction[connectorIdInt -1].ResponseTransactionId)
  7683. {
  7684. meet = TRUE;
  7685. break;
  7686. }
  7687. }
  7688. }
  7689. }
  7690. if(meet == FALSE)
  7691. {
  7692. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  7693. goto end;
  7694. }
  7695. if((connectorIdInt != 0) && (connectorIdInt > gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/))
  7696. {
  7697. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  7698. goto end;
  7699. }
  7700. switch(connectorIdInt)
  7701. {
  7702. case 0:
  7703. break;
  7704. case 1:
  7705. strcpy(filename, TxProfile_1_JSON);
  7706. break;
  7707. case 2:
  7708. strcpy(filename, TxProfile_2_JSON);
  7709. break;
  7710. default:
  7711. strcpy(filename, TxProfile_1_JSON);
  7712. break;
  7713. }
  7714. fptr1 = fopen(filename, "r");
  7715. if (!fptr1)
  7716. {
  7717. //file not exist
  7718. DEBUG_INFO("Unable to open the input file!!\n");
  7719. fptr1 = fopen(filename, "w+");
  7720. }
  7721. fclose(fptr1);
  7722. }
  7723. //**********************************Write to File********************************************************/
  7724. FILE *infile;
  7725. FILE *outfile;
  7726. // open file for writing
  7727. infile = fopen (filename, "r");
  7728. outfile = fopen (tempfile, "w");
  7729. int d =0;
  7730. d = fgetc(infile);
  7731. DEBUG_INFO("d:%d\n",d);
  7732. rewind(infile);
  7733. //*检测到文件结束标识返回1,否则返回0。*/
  7734. if(d == EOF)
  7735. {
  7736. DEBUG_INFO("ChargingProfile content is NULL\n");
  7737. fprintf(outfile,"[%s]\n",payload);
  7738. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Accepted] );
  7739. fclose(infile);
  7740. fclose(outfile);
  7741. sprintf(rmFileCmd,"rm -f %s",filename);
  7742. system(rmFileCmd);
  7743. resultRename = rename(tempfile, filename);
  7744. if(resultRename == 0)
  7745. {
  7746. DEBUG_INFO("File chargingProfile renamed successfully");
  7747. }
  7748. else
  7749. {
  7750. DEBUG_INFO("Error: unable to rename the chargingProfile file");
  7751. }
  7752. //sprintf(rmFileCmd,"rm -f %s",tempfile);
  7753. //system(rmFileCmd);
  7754. }
  7755. else
  7756. {
  7757. char buf[1000]={0};
  7758. while (fgets(buf, sizeof(buf), infile) != NULL)
  7759. {
  7760. buf[strlen(buf) - 1] = '\0'; // eat the newline fgets() stores
  7761. //*************************tempconnectorIdInt*********************************/
  7762. loc = strstr(buf, "connectorId");
  7763. c = 0;
  7764. memset(sstr ,0, sizeof(sstr) );
  7765. while (loc[strlen("connectorId")+2+c] != ',')
  7766. {
  7767. sstr[c] = loc[strlen("connectorId")+2+c];
  7768. c++;
  7769. }
  7770. sstr[c] = '\0';
  7771. tempconnectorIdInt = atoi(sstr);
  7772. //*************************tempchargingProfileIdInt*********************************/
  7773. loc = strstr(buf, "chargingProfileId");
  7774. c = 0;
  7775. memset(sstr ,0, sizeof(sstr) );
  7776. while (loc[strlen("chargingProfileId")+2+c] != ',')
  7777. {
  7778. sstr[c] = loc[strlen("chargingProfileId")+2+c];
  7779. c++;
  7780. }
  7781. sstr[c] = '\0';
  7782. tempchargingProfileIdInt = atoi(sstr);
  7783. //*************************tempstackLevelInt*********************************/
  7784. loc = strstr(buf, "stackLevel");
  7785. c = 0;
  7786. memset(sstr ,0, sizeof(sstr) );
  7787. while (loc[strlen("stackLevel")+2+c] != ',')
  7788. {
  7789. sstr[c] = loc[strlen("stackLevel")+2+c];
  7790. c++;
  7791. }
  7792. sstr[c] = '\0';
  7793. tempstackLevelInt = atoi(sstr);
  7794. //*************************tempchargingProfilePurposeStr*********************************/
  7795. loc = strstr(payload, "chargingProfilePurpose");
  7796. c = 0;
  7797. memset(sstr ,0, sizeof(sstr) );
  7798. while (loc[3+strlen("chargingProfilePurpose")+c] != '\"')
  7799. {
  7800. sstr[c] = loc[3+strlen("chargingProfilePurpose")+c];
  7801. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7802. c++;
  7803. }
  7804. sstr[c] = '\0';
  7805. strcpy(tempchargingProfilePurposeStr,sstr);
  7806. if((tempconnectorIdInt == connectorIdInt) && (tempchargingProfileIdInt == chargingProfileIdInt))
  7807. {
  7808. if((tempstackLevelInt == stackLevelInt) && (strcmp(tempchargingProfilePurposeStr, chargingProfilePurposeStr) == 0))
  7809. {
  7810. //DEBUG_INFO("update set chargingProfile to file -0\n");
  7811. fprintf(outfile,"[%s]\n",payload);
  7812. }
  7813. else
  7814. {
  7815. //DEBUG_INFO("update set chargingProfile to file -1\n");
  7816. if(tempstackLevelInt < stackLevelInt)
  7817. {
  7818. //DEBUG_INFO("update set chargingProfile to file -2\n");
  7819. fprintf(outfile,"[%s]\n",payload);
  7820. fprintf(outfile,"[%s]\n",buf);
  7821. }
  7822. else
  7823. {
  7824. fprintf(outfile,"[%s]\n",buf);
  7825. fprintf(outfile,"[%s]\n",payload);
  7826. }
  7827. }
  7828. DEBUG_INFO("update set chargingProfile to file\n");
  7829. }
  7830. else
  7831. {
  7832. if(tempchargingProfileIdInt < chargingProfileIdInt)
  7833. {
  7834. fprintf(outfile,"[%s]\n",payload);
  7835. fprintf(outfile,"[%s]\n",buf);
  7836. }
  7837. else if(tempstackLevelInt < stackLevelInt)
  7838. {
  7839. fprintf(outfile,"[%s]\n",payload);
  7840. fprintf(outfile,"[%s]\n",buf);
  7841. }
  7842. else
  7843. {
  7844. fprintf(outfile,"[%s]\n",buf);
  7845. fprintf(outfile,"[%s]\n",payload);
  7846. }
  7847. fprintf(outfile,"[%s]\n",buf);
  7848. DEBUG_INFO("add set chargingProfile to file\n");
  7849. }
  7850. } // end of while loop
  7851. fclose(infile);
  7852. fclose(outfile);
  7853. sprintf(rmFileCmd,"rm -f %s",filename);
  7854. system(rmFileCmd);
  7855. resultRename = rename(tempfile, filename);
  7856. if(resultRename == 0)
  7857. {
  7858. DEBUG_INFO("File chargingProfile renamed successfully");
  7859. }
  7860. else
  7861. {
  7862. DEBUG_INFO("Error: unable to rename the chargingProfile file");
  7863. }
  7864. result = TRUE;
  7865. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Accepted] );
  7866. }
  7867. end:
  7868. sendSetChargingProfileConfirmation(uuid, comfirmstr);
  7869. return result;
  7870. return result;
  7871. }
  7872. int handleTriggerMessageRequest(char *uuid, char *payload)
  7873. {
  7874. mtrace();
  7875. int result = FAIL;
  7876. int connectorIdIsNULL = FALSE;
  7877. int connectorIdInt =0;
  7878. char sstr[40]={0};
  7879. char requestedMessagestr[40]={0};
  7880. char comfirmstr[20]={0};
  7881. int c = 0;
  7882. char *loc;
  7883. DEBUG_INFO("handleTriggerMessageRequest\n");
  7884. //[2,"266e23f4-27a4-41cf-84cb-aadf56b9523f","TriggerMessage",{"requestedMessage":"DiagnosticsStatusNotification","connectorId":1}]
  7885. c = 0;
  7886. loc = strstr(payload, "requestedMessage");
  7887. while (loc[3+strlen("requestedMessage")+c] != '\"')
  7888. {
  7889. sstr[c] = loc[3+strlen("requestedMessage")+c];
  7890. c++;
  7891. }
  7892. sstr[c] = '\0';
  7893. strcpy(requestedMessagestr, sstr);
  7894. c = 0;
  7895. loc = strstr(payload, "connectorId");
  7896. if(loc == NULL)
  7897. {
  7898. connectorIdIsNULL = TRUE;
  7899. }
  7900. else
  7901. {
  7902. memset(sstr ,0, sizeof(sstr) );
  7903. while ((loc[strlen("connectorId")+2+c] != ',')&&(loc[strlen("connectorId")+2+c] != '}'))
  7904. {
  7905. sstr[c] = loc[strlen("connectorId")+2+c];
  7906. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7907. c++;
  7908. }
  7909. sstr[c] = '\0';
  7910. connectorIdInt = atoi(sstr);
  7911. }
  7912. if(connectorIdIsNULL == FALSE && ((connectorIdInt > 0) && (connectorIdInt <= gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/ )))
  7913. {
  7914. //connectorIdInt = json_object_get_int(connectorId);
  7915. sprintf((char *)ShmOCPP16Data->TriggerMessage[connectorIdInt -1].RequestedMessage, "%s" ,requestedMessagestr);
  7916. ShmOCPP16Data->TriggerMessage[connectorIdInt -1].ConnectorId = connectorIdInt;
  7917. //ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].TriggerMessageReq = 1;
  7918. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7919. sendTriggerMessageConfirmation(uuid,comfirmstr);
  7920. }
  7921. else if(connectorIdIsNULL == FALSE && ((connectorIdInt <= 0) || (connectorIdInt > gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/) ))
  7922. {
  7923. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Rejected] );
  7924. sendTriggerMessageConfirmation(uuid,comfirmstr);
  7925. return TRUE;
  7926. }
  7927. if((strcmp(requestedMessagestr, MessageTriggerStr[FirmwareStatusNotification]) != 0) &&
  7928. (strcmp(requestedMessagestr, MessageTriggerStr[DiagnosticsStatusNotification]) != 0) &&
  7929. (strcmp(requestedMessagestr, MessageTriggerStr[BootNotification]) != 0 ) &&
  7930. (strcmp(requestedMessagestr, MessageTriggerStr[Heartbeat]) != 0) &&
  7931. (strcmp(requestedMessagestr, MessageTriggerStr[MeterValues]) != 0) &&
  7932. (strcmp(requestedMessagestr, MessageTriggerStr[StatusNotification]) != 0 ))
  7933. {
  7934. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_NotImplemented] );
  7935. sendTriggerMessageConfirmation(uuid,comfirmstr);
  7936. return TRUE;
  7937. }
  7938. else
  7939. {
  7940. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7941. sendTriggerMessageConfirmation(uuid,comfirmstr);
  7942. }
  7943. if( strcmp(requestedMessagestr, MessageTriggerStr[FirmwareStatusNotification]) == 0)
  7944. {
  7945. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatusNotificationStatus]);
  7946. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7947. }
  7948. else if(strcmp(requestedMessagestr, MessageTriggerStr[DiagnosticsStatusNotification]) == 0 )
  7949. {
  7950. //printf("DiagnosticsStatusStr[DiagnosticsStatus_Idle] =%s\n",DiagnosticsStatusStr[DiagnosticsStatus_Idle]);
  7951. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatusNotificationStatus]);
  7952. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7953. }
  7954. else if(strcmp(requestedMessagestr, MessageTriggerStr[BootNotification]) == 0 )
  7955. {
  7956. sendBootNotificationRequest();
  7957. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7958. }
  7959. else if(strcmp(requestedMessagestr, MessageTriggerStr[Heartbeat]) == 0 )
  7960. {
  7961. sendHeartbeatRequest(connectorIdInt);
  7962. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7963. }
  7964. else if (strcmp(requestedMessagestr, MessageTriggerStr[MeterValues]) == 0 )
  7965. {
  7966. if(connectorIdIsNULL == FALSE)
  7967. {
  7968. if((connectorIdInt > 0) && ((connectorIdInt -1) < gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/))
  7969. {
  7970. ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].TriggerMessageReq = 1;
  7971. sendMeterValuesRequest(connectorIdInt -1);
  7972. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7973. }
  7974. }
  7975. else
  7976. {
  7977. for(int idx=0;idx< gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/;idx++)
  7978. {
  7979. ShmOCPP16Data->CsMsg.bits[idx].TriggerMessageReq = 1;
  7980. sendMeterValuesRequest(idx);
  7981. }
  7982. }
  7983. }
  7984. else if(strcmp(requestedMessagestr, MessageTriggerStr[StatusNotification]) == 0 )
  7985. {
  7986. if(connectorIdIsNULL == FALSE)
  7987. {
  7988. if((connectorIdInt > 0) && ((connectorIdInt -1) < gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/))
  7989. {
  7990. sendStatusNotificationRequest(connectorIdInt -1);
  7991. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7992. }
  7993. }
  7994. else
  7995. {
  7996. for(int idx=0;idx< gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/;idx++)
  7997. sendStatusNotificationRequest(idx);
  7998. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7999. }
  8000. }
  8001. return result;
  8002. }
  8003. int handleUnlockConnectorRequest(char *uuid, char *payload)
  8004. {
  8005. mtrace();
  8006. int result = FAIL;
  8007. char sstr[6]={0};
  8008. int connectorIdInt =0;
  8009. char comfirmstr[20]={0};
  8010. int c = 0;
  8011. char *loc;
  8012. //[2,"ba1cbd49-2a76-493a-8f76-fa23e7606532","UnlockConnector",{"connectorId":1}]
  8013. DEBUG_INFO("handleUnlockConnectorRequest ...\n");
  8014. c = 0;
  8015. loc = strstr(payload, "connectorId");
  8016. memset(sstr ,0, sizeof(sstr) );
  8017. while (loc[strlen("connectorId")+2+c] != '}')
  8018. {
  8019. sstr[c] = loc[strlen("connectorId")+2+c];
  8020. //printf("i=%d sstr=%c\n",c, sstr[c]);
  8021. c++;
  8022. }
  8023. sstr[c] = '\0';
  8024. connectorIdInt = atoi(sstr);
  8025. DEBUG_INFO("\n unlock connectorIdInt=%d\n",connectorIdInt);
  8026. if(/*CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY*/gunTotalNumber == 0)
  8027. {
  8028. sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockStatus_NotSupported] );
  8029. goto end;
  8030. }
  8031. else if((connectorIdInt > gunTotalNumber/*CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY*/) || (connectorIdInt <= 0))
  8032. {
  8033. //sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockStatus_NotSupported] );
  8034. sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockStatus_NotSupported] );
  8035. goto end;
  8036. }
  8037. else
  8038. {
  8039. //check Transaction active
  8040. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  8041. {
  8042. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  8043. {
  8044. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (connectorIdInt-1) ) && ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE) ))
  8045. {
  8046. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
  8047. }
  8048. }
  8049. for (int index = 0; index < CCS_QUANTITY; index++)
  8050. {
  8051. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (connectorIdInt-1) ) && ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE) ))
  8052. {
  8053. //stop Transaction
  8054. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
  8055. }
  8056. }
  8057. for (int index = 0; index < GB_QUANTITY; index++)
  8058. {
  8059. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (connectorIdInt-1) ) &&((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING)||(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_IDLE)))
  8060. {
  8061. //stop Transaction
  8062. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
  8063. }
  8064. }
  8065. }
  8066. else
  8067. {
  8068. for (int index = 0; index < AC_QUANTITY; index++)
  8069. {
  8070. if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == (connectorIdInt-1) ) && ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE) ))
  8071. {
  8072. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
  8073. }
  8074. }
  8075. }// END FOR AC ELSE
  8076. ShmOCPP16Data->UnlockConnector[connectorIdInt-1].ConnectorId = connectorIdInt;
  8077. strcpy((char *)ShmOCPP16Data->UnlockConnector[connectorIdInt-1].guid, uuid);
  8078. result = TRUE;
  8079. return result;
  8080. }
  8081. end:
  8082. //json_object_put(obj); --- remove temporally
  8083. sendUnlockConnectorConfirmation(uuid, comfirmstr);
  8084. return result;
  8085. }
  8086. int handleUpdateFirmwareRequest(char *uuid, char *payload)
  8087. {
  8088. mtrace();
  8089. int result = FAIL;
  8090. pthread_t t;
  8091. sendUpdateFirmwareConfirmation(uuid);
  8092. pthread_create(&t, NULL, UpdateFirmwareProcess, payload);
  8093. pthread_join(t, NULL); // 等 ?子執行 ?? ?完 ?
  8094. //sendUpdateFirmwareConfirmation(uuid);
  8095. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareConf =1;
  8096. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  8097. return result;
  8098. }
  8099. void *UpdateFirmwareProcess(void *data)
  8100. {
  8101. mtrace();
  8102. int retriesInt =0, retryIntervalInt=0;
  8103. char protocol[10], user[50],password[50],host[50], path[50], ftppath[60],host1[50],path1[20];
  8104. int port=0;
  8105. char locationstr[160]={0}, retrieveDatestr[30]={0};
  8106. //char fname[50]="00000_2018-09-07 160902_CSULog.zip";
  8107. //char comfirmstr[20];
  8108. int isSuccess = 0;
  8109. char ftpbuf[200];
  8110. char temp[100];
  8111. char * pch;
  8112. int retriesISNULL=FALSE;
  8113. int retryInterval=FALSE;
  8114. int c = 0;
  8115. //int i = 0;
  8116. char *loc;
  8117. char sstr[300]={ 0 };
  8118. char *str = (char*) data; // ? ?輸入資 ?
  8119. DEBUG_INFO("handleUpdateFirmwareRequest ...\n");
  8120. //***************location **************/
  8121. loc = strstr(str, "location");
  8122. memset(sstr ,0, sizeof(sstr) );
  8123. c = 0;
  8124. while (loc[3+strlen("location")+c] != '\"')
  8125. {
  8126. sstr[c] = loc[3+strlen("location")+c];
  8127. c++;
  8128. }
  8129. sstr[c] = '\0';
  8130. strcpy(locationstr, sstr);
  8131. //***************retries**************/
  8132. c = 0;
  8133. loc = strstr(str, "retries");
  8134. if(loc == NULL)
  8135. {
  8136. retriesISNULL=TRUE;
  8137. }
  8138. else
  8139. {
  8140. memset(sstr ,0, sizeof(sstr) );
  8141. while (loc[strlen("retries")+2+c] != ',')
  8142. {
  8143. sstr[c] = loc[strlen("retries")+2+c];
  8144. //printf("i=%d sstr=%c\n",c, sstr[c]);
  8145. c++;
  8146. }
  8147. sstr[c] = '\0';
  8148. }
  8149. if(retriesISNULL == FALSE)
  8150. {
  8151. retriesInt = atoi(sstr);
  8152. }
  8153. //***************retrieveDate **************/
  8154. loc = strstr(str, "retrieveDate");
  8155. memset(sstr ,0, sizeof(sstr) );
  8156. c = 0;
  8157. while (loc[3+strlen("retrieveDate")+c] != '\"')
  8158. {
  8159. sstr[c] = loc[3+strlen("retrieveDate")+c];
  8160. c++;
  8161. }
  8162. sstr[c] = '\0';
  8163. strcpy(retrieveDatestr, sstr);
  8164. //***************retryInterval **************/
  8165. c = 0;
  8166. loc = strstr(str, "retryInterval");
  8167. memset(sstr ,0, sizeof(sstr) );
  8168. if(loc == NULL)
  8169. {
  8170. retryInterval=TRUE;
  8171. }
  8172. else
  8173. {
  8174. while ((loc[strlen("retryInterval")+2+c] != ',') && (loc[strlen("retryInterval")+2+c] != '}'))
  8175. {
  8176. sstr[c] = loc[strlen("retryInterval")+2+c];
  8177. DEBUG_INFO("i=%d sstr=%c\n",c, sstr[c]);
  8178. c++;
  8179. }
  8180. sstr[c] = '\0';
  8181. }
  8182. if(retryInterval==FALSE)
  8183. {
  8184. retryIntervalInt = atoi(sstr);
  8185. }
  8186. memset(ftppath, 0, sizeof(ftppath));
  8187. memset(path, 0, sizeof(path));
  8188. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloading]);
  8189. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  8190. if(strncmp(locationstr,"http", 4) == 0)
  8191. {
  8192. sscanf(locationstr,"%[^:]:%*2[/]%[^/]/%199[^\n]",
  8193. protocol, host, path);
  8194. //sscanf(locationstr,"%[^:]:%*2[/]%[^:]:%[^@]@%[^/]%199[^\n]",
  8195. // protocol, user, password, host, path);
  8196. sprintf(ftppath,"/%s", path);
  8197. DEBUG_INFO("protocol =%s\n",protocol);
  8198. DEBUG_INFO("host =%s\n",host);
  8199. DEBUG_INFO("path =%s\n",path);
  8200. DEBUG_INFO("ftppath=%s\n",ftppath);
  8201. int ftppathlen=strlen(ftppath);
  8202. int i=1;
  8203. char filenametemp[50];
  8204. while(i < ftppathlen)
  8205. {
  8206. int len=ftppathlen-i;
  8207. if(ftppath[len]== 47) // '/' ascll code: 47
  8208. {
  8209. DEBUG_INFO("compare '/' all right\n");
  8210. break;
  8211. }
  8212. i=i+1;
  8213. }
  8214. memset(filenametemp, 0, sizeof(filenametemp));
  8215. strncpy(filenametemp, ftppath+(ftppathlen-i+1), i+1);
  8216. filenametemp[i+1] = 0;
  8217. //sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloading]);
  8218. do{
  8219. isSuccess = httpDownLoadFile(host, ftppath, filenametemp, locationstr);
  8220. sleep(retryIntervalInt);
  8221. }while((isSuccess == 0)&&(retriesInt > 0 && retriesInt --));
  8222. // isSuccess = httpDownLoadFile(host, ftppath, filenametemp, locationstr);
  8223. if(!isSuccess)
  8224. {
  8225. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_DownloadFailed]);
  8226. }
  8227. else
  8228. {
  8229. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  8230. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloaded]);
  8231. isUpdateRequest = TRUE;
  8232. }
  8233. }
  8234. else if(strncmp(locationstr,"ftp", 3) == 0) // ftp
  8235. {
  8236. memset(ftpbuf, 0, sizeof(ftpbuf));
  8237. memset(temp, 0, sizeof(temp));
  8238. DEBUG_INFO("locationstr=%s\n",locationstr);
  8239. strcpy(ftpbuf, locationstr/*"ftp://ipc_ui:pht2016@ftp.phihong.com.tw/DC/log/DemoDC1_2018-07-13_185011_PSULog.zip"*/ );
  8240. int ftppathlen=strlen(ftpbuf);
  8241. int i=1;
  8242. char filenametemp[50];
  8243. while(i < ftppathlen)
  8244. {
  8245. int len=ftppathlen-i;
  8246. if(ftpbuf[len]== 47) // '/' ascll code: 47
  8247. {
  8248. DEBUG_INFO(" compare '/' all right\n");
  8249. break;
  8250. }
  8251. i=i+1;
  8252. }
  8253. memset(filenametemp, 0, sizeof(filenametemp));
  8254. strncpy(filenametemp, ftpbuf+(ftppathlen-i+1), i+1);
  8255. filenametemp[i+1] = 0;
  8256. strncpy(temp, ftpbuf, ftppathlen-i+1);
  8257. pch=strchr(temp,'@');
  8258. if(pch==NULL)
  8259. {
  8260. sscanf(temp,"%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
  8261. protocol, host, &port, path);
  8262. strcpy(user,"anonymous");
  8263. strcpy(password,"");
  8264. }
  8265. else
  8266. {
  8267. sscanf(temp,"%[^:]:%*2[/]%[^:]:%[^@]@%[^:]:%i/%199[^\n]",
  8268. protocol, user, password, host, &port, path);
  8269. }
  8270. sscanf(host,"%[^/]%s",host1, path1);
  8271. sprintf(ftppath,"%s", path1);
  8272. DEBUG_INFO("protocol =%s\n",protocol);
  8273. DEBUG_INFO("user =%s\n",user);
  8274. DEBUG_INFO("password =%s\n",password);
  8275. DEBUG_INFO("host1 =%s\n",host1);
  8276. DEBUG_INFO("port =%d\n",port);
  8277. DEBUG_INFO("path1 =%s\n",path1);
  8278. DEBUG_INFO("ftppath=%s\n",ftppath);
  8279. //ftpFile(host, user, password, port, ftppath, fname);
  8280. //download firmware pthred
  8281. if(port == 0)
  8282. {
  8283. port = 21;
  8284. }
  8285. //sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloading]);
  8286. do{
  8287. isSuccess = ftpDownLoadFile(host1, user, password, port, ftppath, filenametemp, locationstr);
  8288. sleep(retryIntervalInt);
  8289. }while((!isSuccess)&&(retriesInt > 0 && retriesInt --));
  8290. if(!isSuccess)
  8291. {
  8292. //BulldogUtil.sleepMs(interval*1000);
  8293. DEBUG_INFO("Update firmware request and download file fail.\n");
  8294. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_DownloadFailed]);
  8295. }
  8296. else
  8297. {
  8298. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  8299. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloaded]);
  8300. isUpdateRequest = TRUE;
  8301. }
  8302. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  8303. }
  8304. else
  8305. {
  8306. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_DownloadFailed]);
  8307. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  8308. }
  8309. pthread_exit(NULL);
  8310. }
  8311. //==========================================
  8312. // Handle server response routine
  8313. //==========================================
  8314. void handleAuthorizeResponse(char *payload, int gun_index)
  8315. {
  8316. mtrace();
  8317. char expiryDatestr[30]={0};
  8318. char parentIdTagstr[20]={0};
  8319. char statusstr[20]={0};
  8320. char expiryDatestrtemp[30]={0};
  8321. char parentIdTagstrtemp[20]={0};
  8322. char IdTagstrtemp[20]={0};
  8323. char statusstrtemp[20]={0};
  8324. int expiryDateISNULL=FALSE;
  8325. int parentIdTagISNULL=FALSE;
  8326. char sstr[160]={ 0 };
  8327. char* filename = AuthorizationCache_JSON;
  8328. char tempfile[] = "../Storage/OCPP/temp.json";
  8329. int c = 0;
  8330. char *loc;
  8331. int resultRename=0;
  8332. int responseIdTagInfoAsZero= 0;
  8333. char rmFileCmd[50]={0};
  8334. DEBUG_INFO("handleAuthorizeResponse ...\n");
  8335. //***********expiryDate*************/
  8336. loc = strstr(payload, "expiryDate");
  8337. memset(sstr ,0, sizeof(sstr) );
  8338. c = 0;
  8339. if(loc == NULL)
  8340. {
  8341. expiryDateISNULL = TRUE;
  8342. }
  8343. else
  8344. {
  8345. while ((loc != NULL)&&(loc[3+strlen("expiryDate")+c] != '\"'))
  8346. {
  8347. sstr[c] = loc[3+strlen("expiryDate")+c];
  8348. c++;
  8349. }
  8350. sstr[c] = '\0';
  8351. strcpy(expiryDatestr, sstr);
  8352. }
  8353. //***********parentIdTag*************/
  8354. loc = strstr(payload, "parentIdTag");
  8355. memset(sstr ,0, sizeof(sstr) );
  8356. c = 0;
  8357. if(loc == NULL)
  8358. {
  8359. parentIdTagISNULL = TRUE;
  8360. }
  8361. else
  8362. {
  8363. while ((loc != NULL)&&(loc[3+strlen("parentIdTag")+c] != '\"'))
  8364. {
  8365. sstr[c] = loc[3+strlen("parentIdTag")+c];
  8366. c++;
  8367. }
  8368. sstr[c] = '\0';
  8369. strcpy(parentIdTagstr, sstr);
  8370. }
  8371. //***********status*************/
  8372. loc = strstr(payload, "status");
  8373. memset(sstr ,0, sizeof(sstr) );
  8374. c = 0;
  8375. while (loc[3+strlen("status")+c] != '\"')
  8376. {
  8377. sstr[c] = loc[3+strlen("status")+c];
  8378. c++;
  8379. }
  8380. sstr[c] = '\0';
  8381. strcpy(statusstr, sstr);
  8382. //#ifdef SystemLogMessage
  8383. // if(expiryDateISNULL == FALSE)
  8384. // DEBUG_INFO("expiryDate: %s\n", expiryDatestr);
  8385. // if(parentIdTagISNULL == FALSE)
  8386. // DEBUG_INFO("parentIdTag: %s\n", parentIdTagstr);
  8387. // DEBUG_INFO("status: %s\n", statusstr);
  8388. //#endif
  8389. if(expiryDateISNULL == FALSE)
  8390. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate, expiryDatestr);
  8391. if(parentIdTagISNULL == FALSE)
  8392. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, parentIdTagstr);
  8393. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, statusstr);
  8394. //Update idTag information to authorization cache if supproted
  8395. if((strcmp((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "true") == 0) && (ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag != NULL) && (ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate != NULL) )
  8396. {
  8397. if((access(filename,F_OK))!=-1)
  8398. {
  8399. DEBUG_INFO("AuthorizationCache exist.\n");
  8400. }
  8401. else
  8402. {
  8403. DEBUG_INFO("AuthorizationCache not exist\n");
  8404. FILE *log = fopen(filename, "w+");
  8405. if(log == NULL)
  8406. {
  8407. DEBUG_INFO("log is NULL\n");
  8408. goto out;
  8409. }
  8410. else
  8411. {
  8412. fclose(log);
  8413. }
  8414. }
  8415. FILE *infile;
  8416. FILE *outfile;
  8417. // open file for writing
  8418. infile = fopen (filename, "r");
  8419. outfile = fopen (tempfile, "w");
  8420. //*检测到文件结束标识返回1,否则返回0。*/
  8421. //DEBUG_INFO("feof(infile) =%d\n",feof(infile));
  8422. int c;
  8423. c = fgetc(infile);
  8424. //DEBUG_INFO("c:%d\n",c);
  8425. rewind(infile);
  8426. if(c == EOF)
  8427. {
  8428. DEBUG_INFO("Orignal File is NULL\n");
  8429. if(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate != NULL)
  8430. {
  8431. strcpy(expiryDatestrtemp, (const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate);
  8432. }
  8433. else
  8434. {
  8435. strcpy(expiryDatestrtemp, "");
  8436. }
  8437. if(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag != NULL)
  8438. {
  8439. strcpy(parentIdTagstrtemp, (const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag);
  8440. }
  8441. else
  8442. {
  8443. //write Authorize IdTag
  8444. strcpy(parentIdTagstrtemp, (const char *)ShmOCPP16Data->Authorize.IdTag);
  8445. }
  8446. strcpy(statusstrtemp, (const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status);
  8447. fprintf(outfile,"[{\"idTag\":\"%s\",\"idTagInfo\":{\"expiryDate\":\"%s\",\"parentIdTag\":\"%s\",\"status\":\"%s\"}}]\n",ShmOCPP16Data->Authorize.IdTag, expiryDatestrtemp, parentIdTagstrtemp, statusstrtemp);
  8448. fclose(infile);
  8449. fclose(outfile);
  8450. sprintf(rmFileCmd,"rm -f %s",filename);
  8451. system(rmFileCmd);
  8452. resultRename = rename(tempfile, filename);
  8453. if(resultRename == 0)
  8454. {
  8455. DEBUG_INFO("File renamed successfully");
  8456. }
  8457. else
  8458. {
  8459. DEBUG_INFO("Error: unable to rename the file");
  8460. }
  8461. }
  8462. else
  8463. {
  8464. char buf[160]={0};
  8465. //DEBUG_INFO("Orignal File is not NULL\n");
  8466. while (fgets(buf, sizeof(buf), infile) != NULL)
  8467. {
  8468. //DEBUG_INFO("Orignal File is not NULL-1\n");
  8469. buf[strlen(buf) - 1] = '\0'; // eat the newline fgets() stores
  8470. memset(expiryDatestr, 0, sizeof(expiryDatestrtemp));
  8471. memset(parentIdTagstr,0, sizeof(parentIdTagstrtemp));
  8472. memset(statusstr, 0, sizeof(statusstrtemp));
  8473. memset(IdTagstrtemp, 0, sizeof(IdTagstrtemp));
  8474. memset(expiryDatestrtemp, 0, sizeof(expiryDatestrtemp));
  8475. memset(parentIdTagstrtemp, 0, sizeof(parentIdTagstrtemp));
  8476. memset(statusstrtemp, 0, sizeof(statusstrtemp));
  8477. //------------------IdTag-----------------------
  8478. loc = strstr(buf, "idTag");
  8479. memset(sstr ,0, sizeof(sstr) );
  8480. c = 0;
  8481. while (loc[3+strlen("idTag")+c] != '\"')
  8482. {
  8483. sstr[c] = loc[3+strlen("idTag")+c];
  8484. c++;
  8485. }
  8486. sstr[c] = '\0';
  8487. strcpy(IdTagstrtemp,sstr);
  8488. //*********************expiryDate***************/
  8489. loc = strstr(buf, "expiryDate");
  8490. memset(sstr ,0, sizeof(sstr) );
  8491. c = 0;
  8492. while (loc[3+strlen("expiryDate")+c] != '\"')
  8493. {
  8494. sstr[c] = loc[3+strlen("expiryDate")+c];
  8495. c++;
  8496. }
  8497. sstr[c] = '\0';
  8498. strcpy(expiryDatestr,sstr);
  8499. //*********************parentIdTag***************/
  8500. loc = strstr(buf, "parentIdTag");
  8501. memset(sstr ,0, sizeof(sstr) );
  8502. c = 0;
  8503. while (loc[3+strlen("parentIdTag")+c] != '\"')
  8504. {
  8505. sstr[c] = loc[3+strlen("parentIdTag")+c];
  8506. c++;
  8507. }
  8508. sstr[c] = '\0';
  8509. strcpy(parentIdTagstr,sstr);
  8510. //*********************status***************/
  8511. loc = strstr(buf, "status");
  8512. memset(sstr ,0, sizeof(sstr) );
  8513. c = 0;
  8514. while (loc[3+strlen("status")+c] != '\"')
  8515. {
  8516. sstr[c] = loc[3+strlen("status")+c];
  8517. c++;
  8518. }
  8519. sstr[c] = '\0';
  8520. strcpy(statusstr,sstr);
  8521. if(((ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag == NULL) || strcmp((const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, "") == 0) || (strcmp((const char *)ShmOCPP16Data->Authorize.IdTag, IdTagstrtemp) == 0))
  8522. {
  8523. DEBUG_INFO("ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag is NULL\n");
  8524. responseIdTagInfoAsZero = 1;
  8525. }
  8526. else
  8527. {
  8528. DEBUG_INFO("ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag=%s\n",ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag);
  8529. }
  8530. if((responseIdTagInfoAsZero == 0)&&((strcmp(parentIdTagstr,(const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag) == 0)|| (strcmp(IdTagstrtemp,(const char *)ShmOCPP16Data->Authorize.IdTag) == 0)))
  8531. {
  8532. //modify item
  8533. if(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate != NULL)
  8534. {
  8535. strcpy(expiryDatestrtemp,(const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate);
  8536. //json_object_object_add(temp_obj, "expiryDate", json_object_new_string(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate));
  8537. }
  8538. else
  8539. {
  8540. strcpy(expiryDatestrtemp, "");
  8541. //json_object_object_add(temp_obj, "expiryDate", json_object_new_string(""));
  8542. }
  8543. if(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag != NULL)
  8544. {
  8545. strcpy(parentIdTagstrtemp,(const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag);
  8546. //json_object_object_add(temp_obj, "parentIdTag", json_object_new_string(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag));
  8547. }
  8548. else
  8549. {
  8550. strcpy(parentIdTagstrtemp, parentIdTagstr);
  8551. //json_object_object_add(temp_obj, "parentIdTag", json_object_new_string(json_object_get_string(parentIdTagitem)));
  8552. }
  8553. strcpy(statusstrtemp,(const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status);
  8554. }
  8555. else
  8556. {
  8557. //wrie original item
  8558. strcpy(expiryDatestrtemp, expiryDatestr);
  8559. strcpy(parentIdTagstrtemp, parentIdTagstr);
  8560. strcpy(statusstrtemp, statusstr);
  8561. }
  8562. fprintf(outfile,"[{\"idTag\":\"%s\",\"idTagInfo\":{\"expiryDate\":\"%s\",\"parentIdTag\":\"%s\",\"status\":\"%s\"}}]\n",ShmOCPP16Data->Authorize.IdTag,expiryDatestrtemp, parentIdTagstrtemp, statusstrtemp);
  8563. }
  8564. fclose(infile);
  8565. fclose(outfile);
  8566. sprintf(rmFileCmd,"rm -f %s",filename);
  8567. system(rmFileCmd);
  8568. resultRename = rename(tempfile, filename);
  8569. if(resultRename == 0)
  8570. {
  8571. DEBUG_INFO("File renamed successfully");
  8572. }
  8573. else
  8574. {
  8575. DEBUG_INFO("Error: unable to rename the file");
  8576. }
  8577. }
  8578. }
  8579. out:
  8580. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  8581. ShmOCPP16Data->SpMsg.bits.AuthorizeConf = 1; // inform csu
  8582. authorizeRetryTimes = 0;
  8583. }
  8584. void handleBootNotificationResponse(char *payload, int gun_index)
  8585. {
  8586. mtrace();
  8587. char sstr[140]={ 0 };//sstr[200]={ 0 };
  8588. char statusStr[12]={0};
  8589. char currentTimeStr[30]={0};
  8590. char *loc;
  8591. int intervalInt = 0;
  8592. int c = 0;
  8593. //double diff_t;
  8594. struct tm tp;
  8595. char buf[28]={0};
  8596. char timebuf[50]={0};
  8597. DEBUG_INFO("handleBootNotificationResponse ...\n");
  8598. //*** interval ****/
  8599. c = 0;
  8600. loc = strstr(payload, "interval");
  8601. //printf("loc=%s\n",loc);
  8602. memset(sstr ,0, sizeof(sstr) );
  8603. while ((loc != NULL) &&(loc[strlen("interval")+2+c] != ',') &&(loc[strlen("interval")+2+c] != '}') )
  8604. {
  8605. sstr[c] = loc[strlen("interval")+2+c];
  8606. //printf("i=%d sstr=%c\n",c, sstr[c]);
  8607. c++;
  8608. }
  8609. sstr[c] = '\0';
  8610. //DEBUG_INFO("id=%d\n",atoi(sstr));
  8611. intervalInt = atoi(sstr);
  8612. //***status ****/
  8613. loc = strstr(payload, "status");
  8614. memset(sstr ,0, sizeof(sstr) );
  8615. c = 0;
  8616. while ((loc != NULL) &&(loc[3+strlen("status")+c] != '\"'))
  8617. {
  8618. sstr[c] = loc[3+strlen("status")+c];
  8619. c++;
  8620. }
  8621. sstr[c] = '\0';
  8622. strcpy(statusStr, sstr);
  8623. //***currentTime ****/
  8624. loc = strstr(payload, "currentTime");
  8625. //printf("loc=%s\n",loc);
  8626. memset(sstr ,0, sizeof(sstr) );
  8627. c = 0;
  8628. while ((loc != NULL) &&(loc[3+strlen("currentTime")+c] != '\"'))
  8629. {
  8630. sstr[c] = loc[3+strlen("currentTime")+c];
  8631. c++;
  8632. }
  8633. sstr[c] = '\0';
  8634. strcpy(currentTimeStr, sstr);
  8635. BootNotificationInterval = ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval = intervalInt;
  8636. HeartBeatWaitTime = BootNotificationInterval;
  8637. //#ifdef SystemLogMessage
  8638. // DEBUG_INFO("currentTime: %s\n", currentTimeStr);
  8639. // DEBUG_INFO("interval: %d\n", intervalInt);
  8640. // DEBUG_INFO("status: %s\n", statusStr);
  8641. //#endif
  8642. //write back to ShmOCPP16Data->BootNotification
  8643. strcpy((char *)ShmOCPP16Data->BootNotification.ResponseCurrentTime, currentTimeStr);
  8644. ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval = intervalInt;
  8645. strcpy((char *)ShmOCPP16Data->BootNotification.ResponseStatus, statusStr);
  8646. if((strcmp(statusStr, RegistrationStatusStr[RegistrationStatus_Accepted]) == 0 )/* ||
  8647. (strcmp(status, RegistrationStatusStr[RegistrationStatus_Pending]) == 0) ||
  8648. (strcmp(status, RegistrationStatusStr[RegistrationStatus_Rejected]) == 0)*/)
  8649. {
  8650. server_sign = TRUE;
  8651. server_pending =FALSE;
  8652. }
  8653. else if(strcmp(statusStr, RegistrationStatusStr[RegistrationStatus_Pending]) == 0)
  8654. {
  8655. server_pending = TRUE;
  8656. }
  8657. strptime((const char *)ShmOCPP16Data->BootNotification.ResponseCurrentTime, "%Y-%m-%dT%H:%M:%S", &tp);
  8658. tp.tm_isdst = -1;
  8659. //time_t utc = mktime(&tp);
  8660. strftime(buf, 28, "%Y-%m-%d %H:%M:%S", &tp);
  8661. memset(timebuf, 0, sizeof timebuf);
  8662. sprintf(timebuf,"date -s '%s'",buf);
  8663. //DEBUG_INFO("timebuf=%s\n",timebuf);
  8664. system(timebuf);
  8665. //==============================================
  8666. // RTC sync
  8667. //==============================================
  8668. system("/sbin/hwclock -w --systohc");
  8669. ShmOCPP16Data->OcppConnStatus = 1; ////0: disconnected, 1: connected
  8670. ShmOCPP16Data->SpMsg.bits.BootNotificationConf = 1;
  8671. }
  8672. void handleDataTransferResponse(char *payload, int gun_index)
  8673. {
  8674. char sstr[160]={0};//sstr[200]={ 0 };
  8675. int c = 0;
  8676. char *loc;
  8677. DEBUG_INFO("handleDataTransferResponse ...\n");
  8678. loc = strstr(payload, "status");
  8679. printf("loc=%s\n",loc);
  8680. c = 0;
  8681. while (loc[3+strlen("status")+c] != '\"')
  8682. {
  8683. sstr[c] = loc[3+strlen("status")+c];
  8684. //printf("i=%d sstr=%c\n",c, sstr[c]);
  8685. c++;
  8686. }
  8687. sstr[c] = '\0';
  8688. DEBUG_INFO(" DataTransferResponse=%s\n", sstr);
  8689. //#ifdef SystemLogMessage
  8690. //DEBUG_INFO("data: %s\n", payload);
  8691. //#endif
  8692. }
  8693. void handleDiagnosticsStatusNotificationResponse(char *payload, int gun_index)
  8694. {
  8695. DEBUG_INFO("handleDiagnosticsStatusNotificationResponse ...\n");
  8696. //struct json_object *obj;
  8697. // obj = json_tokener_parse(payload);
  8698. ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 0;
  8699. ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationConf = 1;
  8700. //No fields are defined.
  8701. }
  8702. void handleFirmwareStatusNotificationResponse(char *payload, int gun_index)
  8703. {
  8704. DEBUG_INFO("handleFirmwareStatusNotificationResponse ...\n");
  8705. //struct json_object *obj;
  8706. // obj = json_tokener_parse(payload);
  8707. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 0;
  8708. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationConf = 1;
  8709. //No fields are defined.
  8710. }
  8711. void handleHeartbeatResponse(char *payload, int gun_index)
  8712. {
  8713. mtrace();
  8714. //double diff_t;
  8715. struct tm tp;
  8716. char buf[28]={0};
  8717. char timebuf[50]={0};
  8718. char sstr[30]={ 0 };
  8719. int c = 0;
  8720. char *loc;
  8721. //[3,"9c2e3c41-ab34-409e-8902-f5f48b6de641",{"currentTime":"2018-09-06T02:22:57.171Z"}]
  8722. DEBUG_INFO("handleHeartbeatResponse ...\n");
  8723. c = 0;
  8724. loc = strstr(payload, "currentTime");
  8725. memset(sstr ,0, sizeof(sstr) );
  8726. while (loc[3+strlen("currentTime")+c] != '\"')
  8727. {
  8728. sstr[c] = loc[3+strlen("currentTime")+c];
  8729. c++;
  8730. }
  8731. sstr[c] = '\0';
  8732. strcpy((char *)ShmOCPP16Data->Heartbeat.ResponseCurrentTime,sstr);
  8733. #ifdef SystemLogMessage
  8734. DEBUG_INFO("currentTime: %s\n", ShmOCPP16Data->Heartbeat.ResponseCurrentTime);
  8735. #endif
  8736. strptime((const char *)ShmOCPP16Data->Heartbeat.ResponseCurrentTime, "%Y-%m-%dT%H:%M:%S", &tp);
  8737. tp.tm_isdst = -1;
  8738. //time_t utc = mktime(&tp);
  8739. strftime(buf, 28, "%Y-%m-%d %H:%M:%S", &tp);
  8740. memset(timebuf, 0, sizeof timebuf);
  8741. sprintf(timebuf,"date -s '%s'",buf);
  8742. system(timebuf);
  8743. //==============================================
  8744. // RTC sync
  8745. //==============================================
  8746. system("/sbin/hwclock -w --systohc");
  8747. if(FirstHeartBeat == 0)
  8748. {
  8749. FirstHeartBeat = 1;
  8750. }
  8751. }
  8752. void handleMeterValuesResponse(char *payload, int gun_index)
  8753. {
  8754. mtrace();
  8755. //struct json_object *obj;
  8756. DEBUG_INFO("handleMeterValuesResponse ...\n");
  8757. //No fields are defined.
  8758. }
  8759. void handleStartTransactionResponse(char *payload, int gun_index)
  8760. {
  8761. mtrace();
  8762. char sstr[30]={ 0 };
  8763. int c = 0;
  8764. char *loc;
  8765. int transactionIdInt = 0;
  8766. //[3,"f7da35db-9d9b-4362-841f-26424be1064f",{"idTagInfo":{"expiryDate":"2020-06-19T01:10:00.000Z","parentIdTag":"1UF1YvGvmNbLF17sP6LY","status":"Accepted"},"transactionId":2146754131}]
  8767. DEBUG_INFO("handleStartTransactionResponse\n");
  8768. //****************expiryDate********************/
  8769. loc = strstr(payload, "expiryDate");
  8770. if(loc == NULL)
  8771. {
  8772. strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ExpiryDate, "");
  8773. }
  8774. else
  8775. {
  8776. c = 0;
  8777. memset(sstr ,0, sizeof(sstr) );
  8778. while (loc[3+strlen("expiryDate")+c] != '\"')
  8779. {
  8780. sstr[c] = loc[3+strlen("expiryDate")+c];
  8781. c++;
  8782. }
  8783. sstr[c] = '\0';
  8784. sprintf((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ExpiryDate, "%s", sstr);
  8785. }
  8786. //****************parentIdTag********************/
  8787. loc = strstr(payload, "parentIdTag");
  8788. if(loc == NULL)
  8789. {
  8790. strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ParentIdTag, "");
  8791. }
  8792. else
  8793. {
  8794. c = 0;
  8795. memset(sstr ,0, sizeof(sstr) );
  8796. while (loc[3+strlen("parentIdTag")+c] != '\"')
  8797. {
  8798. sstr[c] = loc[3+strlen("parentIdTag")+c];
  8799. c++;
  8800. }
  8801. sstr[c] = '\0';
  8802. sprintf((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ParentIdTag, "%s", sstr);
  8803. }
  8804. //****************status********************/
  8805. loc = strstr(payload, "status");
  8806. if(loc == NULL)
  8807. {
  8808. strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.Status, "");
  8809. }
  8810. else
  8811. {
  8812. c = 0;
  8813. memset(sstr ,0, sizeof(sstr) );
  8814. while (loc[3+strlen("status")+c] != '\"')
  8815. {
  8816. sstr[c] = loc[3+strlen("status")+c];
  8817. c++;
  8818. }
  8819. sstr[c] = '\0';
  8820. sprintf((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.Status, "%s", sstr);
  8821. }
  8822. //****************transactionId********************/
  8823. c=0;
  8824. loc = strstr(payload, "transactionId");
  8825. memset(sstr ,0, sizeof(sstr) );
  8826. while ((loc[strlen("transactionId")+2+c] != '}') && (loc[strlen("transactionId")+2+c] != ','))
  8827. {
  8828. sstr[c] = loc[strlen("transactionId")+2+c];
  8829. c++;
  8830. }
  8831. sstr[c] = '\0';
  8832. ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId = atoi(sstr);
  8833. transactionIdInt = ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId;
  8834. ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionConf = 1;
  8835. ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq = 0;
  8836. #ifdef SystemLogMessage
  8837. DEBUG_INFO("idTagInfo-expiryDate: %s\n", ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ExpiryDate);
  8838. DEBUG_INFO("idTagInfo-parentIdTag: %s\n", ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ParentIdTag);
  8839. DEBUG_INFO("idTagInfo-status: %s\n", ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.Status);
  8840. DEBUG_INFO("transactionId: %d\n", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId);
  8841. #endif
  8842. if(strcmp((const char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.Status, "Accepted") == 0)
  8843. {
  8844. //add Charging Record
  8845. SettingChargingRecord(gun_index, transactionIdInt);
  8846. }
  8847. }
  8848. void handleStatusNotificationResponse(char *payload, int gun_index)
  8849. {
  8850. mtrace();
  8851. printf("handleStatusNotificationResponse\n");
  8852. cpinitateMsg.bits[gun_index].StatusNotificationReq = 0;
  8853. cpinitateMsg.bits[gun_index].StatusNotificationConf = 1;
  8854. }
  8855. void handleStopTransactionnResponse(char *payload, int gun_index)
  8856. {
  8857. mtrace();
  8858. char sstr[30]={ 0 };
  8859. int c = 0;
  8860. char *loc;
  8861. //[3,"e79c0728-dd4c-4038-a90e-bb0eb23e1ee0",{"idTagInfo":{"expiryDate":"2020-06-19T01:10:00.000Z","parentIdTag":"1UF1YvGvmNbLF17sP6LY","status":"Accepted"}}]
  8862. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionConf = 1;
  8863. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq = 0;
  8864. loc = strstr(payload, "idTagInfo");
  8865. //***********************idTagInfo************************/
  8866. if(loc != NULL)
  8867. {
  8868. //***********************expiryDate************************/
  8869. loc = strstr(payload, "expiryDate");
  8870. if(loc != NULL)
  8871. {
  8872. memset(sstr ,0, sizeof(sstr) );
  8873. c = 0;
  8874. while (loc[3+strlen("expiryDate")+c] != '\"')
  8875. {
  8876. sstr[c] = loc[3+strlen("expiryDate")+c];
  8877. c++;
  8878. }
  8879. sstr[c] = '\0';
  8880. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ExpiryDate, "%s", sstr);
  8881. }
  8882. //***********************parentIdTag************************/
  8883. loc = strstr(payload, "parentIdTag");
  8884. if(loc != NULL)
  8885. {
  8886. memset(sstr ,0, sizeof(sstr) );
  8887. c = 0;
  8888. while (loc[3+strlen("parentIdTag")+c] != '\"')
  8889. {
  8890. sstr[c] = loc[3+strlen("parentIdTag")+c];
  8891. c++;
  8892. }
  8893. sstr[c] = '\0';
  8894. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ParentIdTag, "%s", sstr);
  8895. }
  8896. //***********************status************************/
  8897. loc = strstr(payload, "status");
  8898. memset(sstr ,0, sizeof(sstr) );
  8899. c = 0;
  8900. while (loc[3+strlen("status")+c] != '\"')
  8901. {
  8902. sstr[c] = loc[3+strlen("status")+c];
  8903. c++;
  8904. }
  8905. sstr[c] = '\0';
  8906. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.Status, "%s", sstr);
  8907. }
  8908. #ifdef SystemLogMessage
  8909. DEBUG_INFO("idTagInfo-expiryDate: %s\n", ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ExpiryDate);
  8910. DEBUG_INFO("idTagInfo-parentIdTag: %s\n", ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ParentIdTag);
  8911. DEBUG_INFO("idTagInfo-status: %s\n", ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.Status);
  8912. #endif
  8913. }
  8914. //==========================================
  8915. // Handle Error routine
  8916. //==========================================
  8917. void handleError(char *id, char *errorCode, char *errorDescription,char *payload)
  8918. {
  8919. mtrace();
  8920. #ifdef SystemLogMessage
  8921. DEBUG_INFO("errorCode: %s\n", errorCode);
  8922. DEBUG_INFO("errorDescription: %s\n", errorDescription);
  8923. DEBUG_INFO("errorDetails: %s\n", payload);
  8924. #endif
  8925. }
  8926. //===============================================
  8927. // Common routine
  8928. //===============================================
  8929. int initialConfigurationTable(void)
  8930. {
  8931. printf("initialConfigurationTable \n");
  8932. memset(&(ShmOCPP16Data->ConfigurationTable), 0, sizeof(struct OCPP16ConfigurationTable) );
  8933. /*Core Profile*/
  8934. //AllowOfflineTxForUnknownId
  8935. ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility = 1;
  8936. printf("AllowoddlineTXForUnknownId type: %d \n", ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility);
  8937. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemName, "AllowOfflineTxForUnknownId");
  8938. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData, "TRUE" );
  8939. //AuthorizationCacheEnabled
  8940. ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility = 1;
  8941. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemName, "AuthorizationCacheEnabled");
  8942. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "FALSE" );
  8943. //AuthorizeRemoteTxRequests
  8944. ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility = 0;
  8945. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemName, "AuthorizeRemoteTxRequests");
  8946. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "TRUE" );
  8947. //BlinkRepeat
  8948. ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility = 1;
  8949. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemName, "BlinkRepeat");
  8950. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData, "0" );
  8951. //ClockAlignedDataInterval
  8952. ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility = 1;
  8953. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemName, "ClockAlignedDataInterval");
  8954. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData, "0" );
  8955. //ConnectionTimeOut
  8956. ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility = 1;
  8957. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemName, "ConnectionTimeOut");
  8958. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData, "60" );
  8959. //GetConfigurationMaxKeys
  8960. ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility =0;
  8961. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemName, "GetConfigurationMaxKeys");
  8962. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData, "43" );
  8963. // HeartbeatInterval
  8964. ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility = 1;
  8965. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemName, "HeartbeatInterval");
  8966. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "10" );
  8967. // LightIntensity
  8968. ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility = 1;
  8969. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemName, "LightIntensity");
  8970. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData, "0" );
  8971. // LocalAuthorizeOffline
  8972. ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility = 0;
  8973. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemName, "LocalAuthorizeOffline");
  8974. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "TRUE" );
  8975. // LocalPreAuthorize
  8976. ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility = 0;
  8977. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemName, "LocalPreAuthorize");
  8978. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "FALSE" );
  8979. // MaxEnergyOnInvalidId
  8980. ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility = 1;
  8981. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemName, "MaxEnergyOnInvalidId");
  8982. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData, "0" );
  8983. // MeterValuesAlignedData
  8984. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility = 1;
  8985. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemName, "MeterValuesAlignedData");
  8986. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "Current.Export,Energy.Active.Export.Interval,Power.Active.Export,Voltage,SOC" );
  8987. // MeterValuesAlignedDataMaxLength
  8988. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility = 0;
  8989. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemName, "MeterValuesAlignedDataMaxLength");
  8990. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData, "5" );
  8991. // MeterValuesSampledData
  8992. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility = 1;
  8993. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemName, "MeterValuesSampledData");
  8994. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "Current.Export,Energy.Active.Export.Interval,Power.Active.Export,Voltage,SOC" );
  8995. // MeterValuesSampledDataMaxLength
  8996. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility = 0;
  8997. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemName, "MeterValuesSampledDataMaxLength");
  8998. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData, "5" );
  8999. // MeterValueSampleInterval
  9000. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility = 1;
  9001. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemName, "MeterValueSampleInterval");
  9002. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData, "10" );
  9003. // MinimumStatusDuration
  9004. ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility = 1;
  9005. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemName, "MinimumStatusDuration");
  9006. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "0" );
  9007. // NumberOfConnectors
  9008. ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility = 0;
  9009. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemName, "NumberOfConnectors");
  9010. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "3" );
  9011. // ResetRetries
  9012. ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility = 1;
  9013. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemName, "ResetRetries");
  9014. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData, "3" );
  9015. // ConnectorPhaseRotation
  9016. ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility = 1;
  9017. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemName, "ConnectorPhaseRotation");
  9018. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "Unknown" );
  9019. // ConnectorPhaseRotationMaxLength
  9020. ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility = 0;
  9021. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemName, "ConnectorPhaseRotationMaxLength");
  9022. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData, "1" );
  9023. // StopTransactionOnEVSideDisconnect
  9024. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility = 0;
  9025. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemName, "StopTransactionOnEVSideDisconnect");
  9026. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData, "TRUE" );
  9027. // StopTransactionOnInvalidId
  9028. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility = 1;
  9029. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemName, "StopTransactionOnInvalidId");
  9030. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData, "FALSE" );
  9031. // StopTxnAlignedData
  9032. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility = 1;
  9033. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemName, "StopTxnAlignedData");
  9034. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData, "Energy.Active.Import.Register" );
  9035. // StopTxnAlignedDataMaxLength
  9036. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility = 0;
  9037. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemName, "StopTxnAlignedDataMaxLength");
  9038. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData, "0" );
  9039. // StopTxnSampledData
  9040. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility = 1;
  9041. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemName, "StopTxnSampledData");
  9042. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Energy.Active.Import.Register" );
  9043. // StopTxnSampledDataMaxLength
  9044. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility = 0;
  9045. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemName, "StopTxnSampledDataMaxLength");
  9046. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData, "0" );
  9047. // SupportedFeatureProfiles
  9048. ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility = 0;
  9049. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemName, "SupportedFeatureProfiles");
  9050. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData, "Core,FirmwareManagement,LocalAuthListManagement,Reservation,SmartCharging,RemoteTrigger" );
  9051. // SupportedFeatureProfilesMaxLength
  9052. ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility = 0;
  9053. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemName, "SupportedFeatureProfilesMaxLength");
  9054. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData, "6" );
  9055. // TransactionMessageAttempts
  9056. ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility = 1;
  9057. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemName, "TransactionMessageAttempts");
  9058. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData, "3" );
  9059. TransactionMessageAttemptsValue = atoi((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData);
  9060. // TransactionMessageRetryInterval
  9061. ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility = 1;
  9062. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemName, "TransactionMessageRetryInterval");
  9063. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData, "60" );
  9064. TransactionMessageRetryIntervalValue = atoi((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData);
  9065. // UnlockConnectorOnEVSideDisconnect
  9066. ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility = 0;
  9067. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemName, "UnlockConnectorOnEVSideDisconnect");
  9068. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData, "TRUE" );
  9069. // WebSocketPingInterval
  9070. ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility = 1;
  9071. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemName, "WebSocketPingInterval");
  9072. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "30" );
  9073. //* Local Auth List Management Profile*/
  9074. #if 0
  9075. //For OCTT Test Case
  9076. ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility = 1;
  9077. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemName, "LocalAuthorizationListEnabled");
  9078. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE" );
  9079. #endif
  9080. #if 1
  9081. //LocalAuthListEnabled
  9082. ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility = 1;
  9083. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemName, "LocalAuthListEnabled");
  9084. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE" );
  9085. #endif
  9086. //LocalAuthListMaxLength
  9087. ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility = 0;
  9088. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemName, "LocalAuthListMaxLength");
  9089. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData, "500" );
  9090. //SendLocalListMaxLength
  9091. ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility = 0;
  9092. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemName, "SendLocalListMaxLength");
  9093. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData, "500" );
  9094. //ReserveConnectorZeroSupported
  9095. ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility = 0;
  9096. strcpy((char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemName, "ReserveConnectorZeroSupported");
  9097. strcpy((char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData, "FALSE" );
  9098. //* Smart Charging Profile */
  9099. //ChargeProfileMaxStackLevel
  9100. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility = 0;
  9101. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemName, "ChargeProfileMaxStackLevel");
  9102. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData, "3" );
  9103. // ChargingScheduleAllowedChargingRateUnit
  9104. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility = 0;
  9105. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemName, "ChargingScheduleAllowedChargingRateUnit");
  9106. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData, "Current" );
  9107. // ChargingScheduleMaxPeriods
  9108. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility = 0;
  9109. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemName, "ChargingScheduleMaxPeriods");
  9110. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData, "10" );
  9111. // ConnectorSwitch3to1PhaseSupported
  9112. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility = 0;
  9113. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemName, "ConnectorSwitch3to1PhaseSupported");
  9114. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData, "TRUE" );
  9115. // MaxChargingProfilesInstalled
  9116. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility = 0;
  9117. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemName, "MaxChargingProfilesInstalled");
  9118. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData, "9" );
  9119. return 0;
  9120. }
  9121. void getKeyValue(char *keyReq)
  9122. {
  9123. int isEmpty = FALSE;
  9124. int isKnowKey = FALSE;
  9125. //int unKnowIndex = 0;
  9126. DEBUG_INFO("getKeyValue \n");
  9127. if((keyReq == NULL) || (strlen(keyReq) == 0))
  9128. isEmpty = TRUE;
  9129. if(isEmpty || strcmp(keyReq, "AllowOfflineTxForUnknownId") == 0)
  9130. {
  9131. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_AllowOfflineTxForUnknownId].Item, "AllowOfflineTxForUnknownId");
  9132. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].Key, "AllowOfflineTxForUnknownId");
  9133. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility == 1)
  9134. {
  9135. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].ReadOnly, "0"/*"FALSE"*/);
  9136. }
  9137. else
  9138. {
  9139. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].ReadOnly, "1"/*"TRUE"*/);
  9140. }
  9141. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData );
  9142. isKnowKey = TRUE;
  9143. }
  9144. if(isEmpty || strcmp(keyReq, "AuthorizationCacheEnabled") == 0 )
  9145. {
  9146. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_AuthorizationCacheEnabled].Item, "AuthorizationCacheEnabled");
  9147. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].Key, "AuthorizationCacheEnabled");
  9148. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility == 1)
  9149. {
  9150. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].ReadOnly, "0"/*"FALSE"*/);
  9151. }
  9152. else
  9153. {
  9154. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].ReadOnly, "1"/*"TRUE"*/);
  9155. }
  9156. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData );
  9157. isKnowKey = TRUE;
  9158. }
  9159. if(isEmpty || strcmp(keyReq, "AuthorizeRemoteTxRequests") == 0 )
  9160. {
  9161. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_AuthorizeRemoteTxRequests].Item, "AuthorizeRemoteTxRequests");
  9162. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].Key, "AuthorizeRemoteTxRequests");
  9163. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility == 1)
  9164. {
  9165. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].ReadOnly, "0"/*"FALSE"*/);
  9166. }
  9167. else
  9168. {
  9169. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].ReadOnly, "1"/*"TRUE"*/);
  9170. }
  9171. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData );
  9172. isKnowKey = TRUE;
  9173. }
  9174. if(isEmpty || strcmp(keyReq, "BlinkRepeat") == 0 )
  9175. {
  9176. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_BlinkRepeat].Item, "BlinkRepeat");
  9177. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].Key, "BlinkRepeat");
  9178. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility == 1)
  9179. {
  9180. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].ReadOnly, "0"/*"FALSE"*/);
  9181. }
  9182. else
  9183. {
  9184. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].ReadOnly, "1"/*"TRUE"*/);
  9185. }
  9186. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData );
  9187. isKnowKey = TRUE;
  9188. }
  9189. if(isEmpty || strcmp(keyReq, "ClockAlignedDataInterval") == 0 )
  9190. {
  9191. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ClockAlignedDataInterval].Item, "ClockAlignedDataInterval");
  9192. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].Key, "ClockAlignedDataInterval");
  9193. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility == 1)
  9194. {
  9195. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].ReadOnly, "0"/*"FALSE"*/);
  9196. }
  9197. else
  9198. {
  9199. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].ReadOnly, "1"/*"TRUE"*/);
  9200. }
  9201. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData );
  9202. isKnowKey = TRUE;
  9203. }
  9204. if(isEmpty || strcmp(keyReq, "ConnectionTimeOut") == 0 )
  9205. {
  9206. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectionTimeOut].Item, "ConnectionTimeOut");
  9207. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].Key, "ConnectionTimeOut");
  9208. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility == 1)
  9209. {
  9210. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].ReadOnly, "0"/*"FALSE"*/);
  9211. }
  9212. else
  9213. {
  9214. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].ReadOnly, "1"/*"TRUE"*/);
  9215. }
  9216. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData );
  9217. isKnowKey = TRUE;
  9218. }
  9219. if(isEmpty || strcmp(keyReq, "GetConfigurationMaxKeys") == 0 )
  9220. {
  9221. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_GetConfigurationMaxKeys].Item, "GetConfigurationMaxKeys");
  9222. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].Key, "GetConfigurationMaxKeys");
  9223. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility == 1)
  9224. {
  9225. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].ReadOnly, "0"/*"FALSE"*/);
  9226. }
  9227. else
  9228. {
  9229. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].ReadOnly, "1"/*"TRUE"*/);
  9230. }
  9231. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData );
  9232. isKnowKey = TRUE;
  9233. }
  9234. if(isEmpty || strcmp(keyReq, "HeartbeatInterval") == 0 )
  9235. {
  9236. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_HeartbeatInterval].Item, "HeartbeatInterval");
  9237. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].Key, "HeartbeatInterval");
  9238. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility == 1)
  9239. {
  9240. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].ReadOnly, "0"/*"FALSE"*/);
  9241. }
  9242. else
  9243. {
  9244. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].ReadOnly, "1"/*"TRUE"*/);
  9245. }
  9246. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData );
  9247. isKnowKey = TRUE;
  9248. }
  9249. if(isEmpty || strcmp(keyReq, "LightIntensity") == 0 )
  9250. {
  9251. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LightIntensity].Item, "LightIntensity");
  9252. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].Key, "LightIntensity");
  9253. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility == 1)
  9254. {
  9255. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].ReadOnly, "0"/*"FALSE"*/);
  9256. }
  9257. else
  9258. {
  9259. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].ReadOnly, "1"/*"TRUE"*/);
  9260. }
  9261. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData );
  9262. isKnowKey = TRUE;
  9263. }
  9264. if(isEmpty || strcmp(keyReq, "LocalAuthorizeOffline") == 0 )
  9265. {
  9266. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthorizeOffline].Item, "LocalAuthorizeOffline");
  9267. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].Key, "LocalAuthorizeOffline");
  9268. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility == 1)
  9269. {
  9270. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].ReadOnly, "0"/*"FALSE"*/);
  9271. }
  9272. else
  9273. {
  9274. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].ReadOnly, "1"/*"TRUE"*/);
  9275. }
  9276. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData );
  9277. isKnowKey = TRUE;
  9278. }
  9279. if(isEmpty || strcmp(keyReq, "LocalPreAuthorize") == 0 )
  9280. {
  9281. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalPreAuthorize].Item, "LocalPreAuthorize");
  9282. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].Key, "LocalPreAuthorize");
  9283. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility == 1)
  9284. {
  9285. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].ReadOnly, "0"/*"FALSE"*/);
  9286. }
  9287. else
  9288. {
  9289. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].ReadOnly, "1"/*"TRUE"*/);
  9290. }
  9291. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData );
  9292. isKnowKey = TRUE;
  9293. }
  9294. if(isEmpty || strcmp(keyReq, "MaxEnergyOnInvalidId") == 0 )
  9295. {
  9296. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MaxEnergyOnInvalidId].Item, "MaxEnergyOnInvalidId");
  9297. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].Key, "MaxEnergyOnInvalidId");
  9298. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility == 1)
  9299. {
  9300. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].ReadOnly, "0"/*"FALSE"*/);
  9301. }
  9302. else
  9303. {
  9304. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].ReadOnly, "1"/*"TRUE"*/);
  9305. }
  9306. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData );
  9307. isKnowKey = TRUE;
  9308. }
  9309. if(isEmpty || strcmp(keyReq, "MeterValuesAlignedData") == 0 )
  9310. {
  9311. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesAlignedData].Item, "MeterValuesAlignedData");
  9312. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].Key, "MeterValuesAlignedData");
  9313. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility == 1)
  9314. {
  9315. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].ReadOnly, "0"/*"FALSE"*/);
  9316. }
  9317. else
  9318. {
  9319. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].ReadOnly, "1"/*"TRUE"*/);
  9320. }
  9321. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData );
  9322. isKnowKey = TRUE;
  9323. }
  9324. if(isEmpty || strcmp(keyReq, "MeterValuesAlignedDataMaxLength") == 0 )
  9325. {
  9326. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesAlignedDataMaxLength].Item, "MeterValuesAlignedDataMaxLength");
  9327. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].Key, "MeterValuesAlignedDataMaxLength");
  9328. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility == 1)
  9329. {
  9330. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9331. }
  9332. else
  9333. {
  9334. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9335. }
  9336. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData );
  9337. isKnowKey = TRUE;
  9338. }
  9339. if(isEmpty || strcmp(keyReq, "MeterValuesSampledData") == 0 )
  9340. {
  9341. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesSampledData].Item, "MeterValuesSampledData");
  9342. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].Key, "MeterValuesSampledData");
  9343. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility == 1)
  9344. {
  9345. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].ReadOnly, "0"/*"FALSE"*/);
  9346. }
  9347. else
  9348. {
  9349. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].ReadOnly, "1"/*"TRUE"*/);
  9350. }
  9351. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData );
  9352. isKnowKey = TRUE;
  9353. }
  9354. if(isEmpty || strcmp(keyReq, "MeterValuesSampledDataMaxLength") == 0 )
  9355. {
  9356. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesSampledDataMaxLength].Item, "MeterValuesSampledDataMaxLength");
  9357. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].Key, "MeterValuesSampledDataMaxLength");
  9358. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility == 1)
  9359. {
  9360. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9361. }
  9362. else
  9363. {
  9364. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9365. }
  9366. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData );
  9367. isKnowKey = TRUE;
  9368. }
  9369. if(isEmpty || strcmp(keyReq, "MeterValueSampleInterval") == 0 )
  9370. {
  9371. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValueSampleInterval].Item, "MeterValueSampleInterval");
  9372. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].Key, "MeterValueSampleInterval");
  9373. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility == 1)
  9374. {
  9375. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].ReadOnly, "0"/*"FALSE"*/);
  9376. }
  9377. else
  9378. {
  9379. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].ReadOnly, "1"/*"TRUE"*/);
  9380. }
  9381. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData );
  9382. isKnowKey = TRUE;
  9383. }
  9384. if(isEmpty || strcmp(keyReq, "MinimumStatusDuration") == 0 )
  9385. {
  9386. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MinimumStatusDuration].Item, "MinimumStatusDuration");
  9387. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].Key, "MinimumStatusDuration");
  9388. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility == 1)
  9389. {
  9390. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].ReadOnly, "0"/*"FALSE"*/);
  9391. }
  9392. else
  9393. {
  9394. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].ReadOnly, "1"/*"TRUE"*/);
  9395. }
  9396. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[17].ItemData );
  9397. isKnowKey = TRUE;
  9398. }
  9399. if(isEmpty || strcmp(keyReq, "NumberOfConnectors") == 0 )
  9400. {
  9401. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_NumberOfConnectors].Item, "NumberOfConnectors");
  9402. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].Key, "NumberOfConnectors");
  9403. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility == 1)
  9404. {
  9405. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].ReadOnly, "0"/*"FALSE"*/);
  9406. }
  9407. else
  9408. {
  9409. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].ReadOnly, "1"/*"TRUE"*/);
  9410. }
  9411. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData );
  9412. isKnowKey = TRUE;
  9413. }
  9414. if(isEmpty || strcmp(keyReq, "ResetRetries") == 0 )
  9415. {
  9416. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ResetRetries].Item, "ResetRetries");
  9417. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].Key, "ResetRetries");
  9418. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility == 1)
  9419. {
  9420. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].ReadOnly, "0"/*"FALSE"*/);
  9421. }
  9422. else
  9423. {
  9424. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].ReadOnly, "1"/*"TRUE"*/);
  9425. }
  9426. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData );
  9427. isKnowKey = TRUE;
  9428. }
  9429. if(isEmpty || strcmp(keyReq, "ConnectorPhaseRotation") == 0 )
  9430. {
  9431. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectorPhaseRotation].Item, "ConnectorPhaseRotation");
  9432. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].Key, "ConnectorPhaseRotation");
  9433. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility == 1)
  9434. {
  9435. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].ReadOnly, "0"/*"FALSE"*/);
  9436. }
  9437. else
  9438. {
  9439. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].ReadOnly, "1"/*"TRUE"*/);
  9440. }
  9441. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData );
  9442. isKnowKey = TRUE;
  9443. }
  9444. if(isEmpty || strcmp(keyReq, "ConnectorPhaseRotationMaxLength") == 0 )
  9445. {
  9446. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectorPhaseRotationMaxLength].Item, "ConnectorPhaseRotationMaxLength");
  9447. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].Key, "ConnectorPhaseRotationMaxLength");
  9448. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility == 1)
  9449. {
  9450. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9451. }
  9452. else
  9453. {
  9454. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9455. }
  9456. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].Value,(const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData );
  9457. isKnowKey = TRUE;
  9458. }
  9459. if(isEmpty || strcmp(keyReq, "StopTransactionOnEVSideDisconnect") == 0 )
  9460. {
  9461. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTransactionOnEVSideDisconnect].Item, "StopTransactionOnEVSideDisconnect");
  9462. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].Key, "StopTransactionOnEVSideDisconnect");
  9463. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility == 1)
  9464. {
  9465. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].ReadOnly, "0"/*"FALSE"*/);
  9466. }
  9467. else
  9468. {
  9469. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].ReadOnly, "1"/*"TRUE"*/);
  9470. }
  9471. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData );
  9472. isKnowKey = TRUE;
  9473. }
  9474. if(isEmpty || strcmp(keyReq, "StopTransactionOnInvalidId") == 0 )
  9475. {
  9476. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTransactionOnInvalidId].Item, "StopTransactionOnInvalidId");
  9477. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].Key, "StopTransactionOnInvalidId");
  9478. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility == 1)
  9479. {
  9480. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].ReadOnly, "0"/*"FALSE"*/);
  9481. }
  9482. else
  9483. {
  9484. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].ReadOnly, "1"/*"TRUE"*/);
  9485. }
  9486. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData );
  9487. isKnowKey = TRUE;
  9488. }
  9489. if(isEmpty || strcmp(keyReq, "StopTxnAlignedData") == 0 )
  9490. {
  9491. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnAlignedData].Item, "StopTxnAlignedData");
  9492. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].Key, "StopTxnAlignedData");
  9493. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility == 1)
  9494. {
  9495. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].ReadOnly, "0"/*"FALSE"*/);
  9496. }
  9497. else
  9498. {
  9499. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].ReadOnly, "1"/*"TRUE"*/);
  9500. }
  9501. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].Value,(const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData );
  9502. isKnowKey = TRUE;
  9503. }
  9504. if(isEmpty || strcmp(keyReq, "StopTxnAlignedDataMaxLength") == 0 )
  9505. {
  9506. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnAlignedDataMaxLength].Item, "StopTxnAlignedDataMaxLength");
  9507. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].Key, "StopTxnAlignedDataMaxLength");
  9508. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility == 1)
  9509. {
  9510. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9511. }
  9512. else
  9513. {
  9514. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9515. }
  9516. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData );
  9517. isKnowKey = TRUE;
  9518. }
  9519. if(isEmpty || strcmp(keyReq, "StopTxnSampledData") == 0 )
  9520. {
  9521. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnSampledData].Item, "StopTxnSampledData");
  9522. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].Key, "StopTxnSampledData");
  9523. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility == 1)
  9524. {
  9525. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].ReadOnly, "0"/*"FALSE"*/);
  9526. }
  9527. else
  9528. {
  9529. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].ReadOnly, "1"/*"TRUE"*/);
  9530. }
  9531. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData );
  9532. isKnowKey = TRUE;
  9533. }
  9534. if(isEmpty || strcmp(keyReq, "StopTxnSampledDataMaxLength") == 0 )
  9535. {
  9536. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnSampledDataMaxLength].Item, "StopTxnSampledDataMaxLength");
  9537. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].Key, "StopTxnSampledDataMaxLength");
  9538. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility == 1)
  9539. {
  9540. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9541. }
  9542. else
  9543. {
  9544. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9545. }
  9546. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData );
  9547. isKnowKey = TRUE;
  9548. }
  9549. if(isEmpty || strcmp(keyReq, "SupportedFeatureProfiles") == 0 )
  9550. {
  9551. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_SupportedFeatureProfiles].Item, "SupportedFeatureProfiles");
  9552. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].Key, "SupportedFeatureProfiles");
  9553. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility == 1)
  9554. {
  9555. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].ReadOnly, "0"/*"FALSE"*/);
  9556. }
  9557. else
  9558. {
  9559. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].ReadOnly, "1"/*"TRUE"*/);
  9560. }
  9561. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData );
  9562. isKnowKey = TRUE;
  9563. }
  9564. if(isEmpty || strcmp(keyReq, "SupportedFeatureProfilesMaxLength") == 0 )
  9565. {
  9566. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_SupportedFeatureProfilesMaxLength].Item, "SupportedFeatureProfilesMaxLength");
  9567. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].Key, "SupportedFeatureProfilesMaxLength");
  9568. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility == 1)
  9569. {
  9570. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9571. }
  9572. else
  9573. {
  9574. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9575. }
  9576. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData );
  9577. isKnowKey = TRUE;
  9578. }
  9579. if(isEmpty || strcmp(keyReq, "TransactionMessageAttempts") == 0 )
  9580. {
  9581. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_TransactionMessageAttempts].Item, "TransactionMessageAttempts");
  9582. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].Key, "TransactionMessageAttempts");
  9583. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility == 1)
  9584. {
  9585. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].ReadOnly, "0"/*"FALSE"*/);
  9586. }
  9587. else
  9588. {
  9589. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].ReadOnly, "1"/*"TRUE"*/);
  9590. }
  9591. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData );
  9592. isKnowKey = TRUE;
  9593. }
  9594. if(isEmpty || strcmp(keyReq, "TransactionMessageRetryInterval") == 0 )
  9595. {
  9596. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_TransactionMessageRetryInterval].Item, "TransactionMessageRetryInterval");
  9597. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].Key, "TransactionMessageRetryInterval");
  9598. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility == 1)
  9599. {
  9600. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].ReadOnly, "0"/*"FALSE"*/);
  9601. }
  9602. else
  9603. {
  9604. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].ReadOnly, "1"/*"TRUE"*/);
  9605. }
  9606. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData );
  9607. isKnowKey = TRUE;
  9608. }
  9609. if(isEmpty || strcmp(keyReq, "UnlockConnectorOnEVSideDisconnect") == 0 )
  9610. {
  9611. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Item, "UnlockConnectorOnEVSideDisconnect");
  9612. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Key, "UnlockConnectorOnEVSideDisconnect");
  9613. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility == 1)
  9614. {
  9615. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].ReadOnly, "0"/*"FALSE"*/);
  9616. }
  9617. else
  9618. {
  9619. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].ReadOnly, "1"/*"TRUE"*/);
  9620. }
  9621. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData );
  9622. isKnowKey = TRUE;
  9623. }
  9624. if(isEmpty || strcmp(keyReq, "WebSocketPingInterval") == 0 )
  9625. {
  9626. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_WebSocketPingInterval].Item, "WebSocketPingInterval");
  9627. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].Key, "WebSocketPingInterval");
  9628. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility == 1)
  9629. {
  9630. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].ReadOnly, "0"/*"FALSE"*/);
  9631. }
  9632. else
  9633. {
  9634. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].ReadOnly, "1"/*"TRUE"*/);
  9635. }
  9636. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData );
  9637. isKnowKey = TRUE;
  9638. }
  9639. #if 0
  9640. //For OCTT Test Case
  9641. if(isEmpty || strcmp(keyReq, "LocalAuthorizationListEnabled") == 0 )
  9642. {
  9643. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthListEnabled].Item, "LocalAuthorizationListEnabled");
  9644. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Key, "LocalAuthorizationListEnabled");
  9645. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1)
  9646. {
  9647. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "0"/*"FALSE"*/);
  9648. }
  9649. else
  9650. {
  9651. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "1"/*"TRUE"*/);
  9652. }
  9653. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData );
  9654. isKnowKey = TRUE;
  9655. }
  9656. #endif
  9657. #if 1
  9658. if(isEmpty || strcmp(keyReq, "LocalAuthListEnabled") == 0 )
  9659. {
  9660. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthListEnabled].Item, "LocalAuthListEnabled");
  9661. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Key, "LocalAuthListEnabled");
  9662. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1)
  9663. {
  9664. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "0"/*"FALSE"*/);
  9665. }
  9666. else
  9667. {
  9668. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "1"/*"TRUE"*/);
  9669. }
  9670. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData );
  9671. isKnowKey = TRUE;
  9672. }
  9673. #endif
  9674. if(isEmpty || strcmp(keyReq, "LocalAuthListMaxLength") == 0 )
  9675. {
  9676. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthListMaxLength].Item, "LocalAuthListMaxLength");
  9677. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].Key, "LocalAuthListMaxLength");
  9678. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility == 1)
  9679. {
  9680. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9681. }
  9682. else
  9683. {
  9684. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9685. }
  9686. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData );
  9687. isKnowKey = TRUE;
  9688. }
  9689. if(isEmpty || strcmp(keyReq, "SendLocalListMaxLength") == 0 )
  9690. {
  9691. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_SendLocalListMaxLength].Item, "SendLocalListMaxLength");
  9692. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].Key, "SendLocalListMaxLength");
  9693. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility == 1)
  9694. {
  9695. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9696. }
  9697. else
  9698. {
  9699. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9700. }
  9701. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData );
  9702. isKnowKey = TRUE;
  9703. }
  9704. if(isEmpty || strcmp(keyReq, "ReserveConnectorZeroSupported") == 0 )
  9705. {
  9706. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ReserveConnectorZeroSupported].Item, "ReserveConnectorZeroSupported");
  9707. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].Key, "ReserveConnectorZeroSupported");
  9708. if(ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility == 1)
  9709. {
  9710. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].ReadOnly, "0"/*"FALSE"*/);
  9711. }
  9712. else
  9713. {
  9714. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].ReadOnly, "1"/*"TRUE"*/);
  9715. }
  9716. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].Value,(const char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData);
  9717. isKnowKey = TRUE;
  9718. }
  9719. if(isEmpty || strcmp(keyReq, "ChargeProfileMaxStackLevel") == 0 )
  9720. {
  9721. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ChargeProfileMaxStackLevel].Item, "ChargeProfileMaxStackLevel");
  9722. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].Key, "ChargeProfileMaxStackLevel");
  9723. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility == 1)
  9724. {
  9725. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].ReadOnly, "0"/*"FALSE"*/);
  9726. }
  9727. else
  9728. {
  9729. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].ReadOnly, "1"/*"TRUE"*/);
  9730. }
  9731. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData);
  9732. isKnowKey = TRUE;
  9733. }
  9734. if(isEmpty || strcmp(keyReq, "ChargingScheduleAllowedChargingRateUnit") == 0 )
  9735. {
  9736. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Item, "ChargingScheduleAllowedChargingRateUnit");
  9737. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Key, "ChargingScheduleAllowedChargingRateUnit");
  9738. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility == 1)
  9739. {
  9740. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].ReadOnly, "0"/*"FALSE"*/);
  9741. }
  9742. else
  9743. {
  9744. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].ReadOnly, "1"/*"TRUE"*/);
  9745. }
  9746. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData);
  9747. isKnowKey = TRUE;
  9748. }
  9749. if(isEmpty || strcmp(keyReq, "ChargingScheduleMaxPeriods") == 0 )
  9750. {
  9751. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ChargingScheduleMaxPeriods].Item, "ChargingScheduleMaxPeriods");
  9752. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].Key, "ChargingScheduleMaxPeriods");
  9753. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility == 1)
  9754. {
  9755. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].ReadOnly, "0"/*"FALSE"*/);
  9756. }
  9757. else
  9758. {
  9759. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].ReadOnly, "1"/*"TRUE"*/);
  9760. }
  9761. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData);
  9762. isKnowKey = TRUE;
  9763. }
  9764. if(isEmpty || strcmp(keyReq, "ConnectorSwitch3to1PhaseSupported") == 0 )
  9765. {
  9766. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Item, "ConnectorSwitch3to1PhaseSupported");
  9767. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Key, "ConnectorSwitch3to1PhaseSupported");
  9768. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility == 1)
  9769. {
  9770. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].ReadOnly, "0"/*"FALSE"*/);
  9771. }
  9772. else
  9773. {
  9774. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].ReadOnly, "1"/*"TRUE"*/);
  9775. }
  9776. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData);
  9777. isKnowKey = TRUE;
  9778. }
  9779. if(isEmpty || strcmp(keyReq, "MaxChargingProfilesInstalled") == 0 )
  9780. {
  9781. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MaxChargingProfilesInstalled].Item, "MaxChargingProfilesInstalled");
  9782. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].Key, "MaxChargingProfilesInstalled");
  9783. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility == 1)
  9784. {
  9785. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].ReadOnly, "0"/*"FLASE"*/);
  9786. }
  9787. else
  9788. {
  9789. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].ReadOnly, "1"/*"TRUE"*/);
  9790. }
  9791. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData);
  9792. isKnowKey = TRUE;
  9793. }
  9794. //=========================================================
  9795. if(!isEmpty && !isKnowKey)
  9796. {
  9797. DEBUG_INFO("unKnowIndex =%d\n", UnknownKeynum);
  9798. strcpy(unknownkey[UnknownKeynum], keyReq);
  9799. UnknownKeynum = UnknownKeynum + 1;
  9800. }
  9801. }
  9802. void processUnkownKey(void)
  9803. {
  9804. DEBUG_INFO("processUnkownKey\n");
  9805. memset(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey, 0 , sizeof(struct StructConfigurationKeyItems)* 10);
  9806. for(int index=0; index < UnknownKeynum; index++)
  9807. {
  9808. if(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[index].Item[0] == 0)
  9809. {
  9810. strcpy((char *)(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[index].Item), unknownkey[index]);
  9811. }
  9812. }
  9813. }
  9814. int setKeyValue(char *key, char *value)
  9815. {
  9816. int isSuccess = NotSupported;
  9817. int check_ascii=0;
  9818. #ifdef Debug
  9819. DEBUG_INFO(" setKeyValue key-value=%s %s\n",key,value);
  9820. #endif
  9821. if(strcmp(key, "AllowOfflineTxForUnknownId") == 0)
  9822. {
  9823. //Charger.AllowOfflineTxForUnknownId = (value.toLowerCase().equals("true")?true:false);
  9824. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility == 1)
  9825. {
  9826. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  9827. isSuccess = ConfigurationStatus_Accepted;
  9828. }
  9829. else
  9830. {
  9831. isSuccess = ConfigurationStatus_Rejected;
  9832. }
  9833. }
  9834. if(strcmp(key, "AuthorizationCacheEnabled") == 0)
  9835. {
  9836. //Charger.AuthorizationCacheEnabled = (value.toLowerCase().equals("true")?true:false);
  9837. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility == 1)
  9838. {
  9839. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "%s", value/*(strcmp(value, "true")==0) ?TRUE:FALSE*/ );
  9840. isSuccess = ConfigurationStatus_Accepted;
  9841. //updateSetting("AuthorizationCacheEnabled", (Charger.AuthorizationCacheEnabled?"1":"0"));
  9842. updateSetting("AuthorizationCacheEnabled",(char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[1].ItemData);
  9843. }
  9844. else
  9845. {
  9846. isSuccess = ConfigurationStatus_Rejected;
  9847. }
  9848. }
  9849. if(strcmp(key, "AuthorizeRemoteTxRequests") == 0)
  9850. {
  9851. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility == 1)
  9852. {
  9853. //Charger.AuthorizeRemoteTxRequests = (value.toLowerCase().equals("true")?true:false);
  9854. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  9855. isSuccess = ConfigurationStatus_Accepted;
  9856. }
  9857. else
  9858. {
  9859. isSuccess = ConfigurationStatus_Rejected;
  9860. }
  9861. }
  9862. if(strcmp(key, "BlinkRepeat") == 0)
  9863. {
  9864. //Charger.BlinkRepeat = Integer.parseInt(value);
  9865. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility == 1)
  9866. {
  9867. check_ascii = value[0];
  9868. if( (check_ascii < 48) || (check_ascii > 57) )
  9869. {
  9870. isSuccess = ConfigurationStatus_Rejected;
  9871. }
  9872. else
  9873. {
  9874. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData, "%d", atoi(value) );
  9875. isSuccess = ConfigurationStatus_Accepted;
  9876. }
  9877. }
  9878. else
  9879. {
  9880. isSuccess = ConfigurationStatus_Rejected;
  9881. }
  9882. }
  9883. if(strcmp(key, "ClockAlignedDataInterval") == 0)
  9884. {
  9885. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility == 1)
  9886. {
  9887. check_ascii = value[0];
  9888. if( (check_ascii < 48) || (check_ascii > 57) )
  9889. {
  9890. isSuccess = ConfigurationStatus_Rejected;
  9891. }
  9892. else
  9893. {
  9894. //Charger.ClockAlignedDataInterval = Integer.parseInt(value)*1000;
  9895. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData, "%d", atoi(value)*1000 );
  9896. isSuccess = ConfigurationStatus_Accepted;
  9897. }
  9898. }
  9899. else
  9900. {
  9901. isSuccess = ConfigurationStatus_Rejected;
  9902. }
  9903. }
  9904. if(strcmp(key, "ConnectionTimeOut") == 0 )
  9905. {
  9906. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility == 1)
  9907. {
  9908. check_ascii = value[0];
  9909. if( (check_ascii < 48) || (check_ascii > 57) )
  9910. {
  9911. isSuccess = ConfigurationStatus_Rejected;
  9912. }
  9913. else
  9914. {
  9915. //Charger.ConnectionTimeOut = Integer.parseInt(value)*1000;
  9916. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData, "%d", atoi(value));
  9917. isSuccess = ConfigurationStatus_Accepted;
  9918. }
  9919. }
  9920. else
  9921. {
  9922. isSuccess = ConfigurationStatus_Rejected;
  9923. }
  9924. }
  9925. if(strcmp(key, "HeartbeatInterval") == 0)
  9926. {
  9927. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility == 1)
  9928. {
  9929. check_ascii = value[0];
  9930. if( (check_ascii < 48) || (check_ascii > 57) )
  9931. {
  9932. isSuccess = ConfigurationStatus_Rejected;
  9933. }
  9934. else
  9935. {
  9936. //Charger.HeartbeatInterval = Integer.parseInt(value)*1000;
  9937. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "%d", atoi(value)/*atoi(value)*1000*/ );
  9938. HeartBeatWaitTime = atoi(value);
  9939. isSuccess = ConfigurationStatus_Accepted;
  9940. }
  9941. }
  9942. else
  9943. {
  9944. isSuccess = ConfigurationStatus_Rejected;
  9945. }
  9946. }
  9947. if(strcmp(key, "LightIntensity") == 0)
  9948. {
  9949. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility == 1)
  9950. {
  9951. check_ascii = value[0];
  9952. if( (check_ascii < 48) || (check_ascii > 57) )
  9953. {
  9954. isSuccess = ConfigurationStatus_Rejected;
  9955. }
  9956. else
  9957. {
  9958. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData, "%d", atoi(value) );
  9959. isSuccess = ConfigurationStatus_Accepted;
  9960. }
  9961. }
  9962. else
  9963. {
  9964. isSuccess = ConfigurationStatus_Rejected;
  9965. }
  9966. }
  9967. if(strcmp(key, "LocalAuthorizeOffline") == 0)
  9968. {
  9969. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility == 1)
  9970. {
  9971. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  9972. isSuccess = ConfigurationStatus_Accepted;
  9973. updateSetting("LocalAuthorizeOffline", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData);
  9974. }
  9975. else
  9976. {
  9977. isSuccess = ConfigurationStatus_Rejected;
  9978. }
  9979. }
  9980. if(strcmp(key, "LocalPreAuthorize") == 0)
  9981. {
  9982. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility == 1)
  9983. {
  9984. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  9985. isSuccess = ConfigurationStatus_Accepted;
  9986. }
  9987. else
  9988. {
  9989. isSuccess = ConfigurationStatus_Rejected;
  9990. }
  9991. }
  9992. if(strcmp(key, "MaxEnergyOnInvalidId") == 0)
  9993. {
  9994. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility == 1)
  9995. {
  9996. check_ascii = value[0];
  9997. if( (check_ascii < 48) || (check_ascii > 57) )
  9998. {
  9999. isSuccess = ConfigurationStatus_Rejected;
  10000. }
  10001. else
  10002. {
  10003. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData, "%d", atoi(value) );
  10004. isSuccess = ConfigurationStatus_Accepted;
  10005. }
  10006. }
  10007. else
  10008. {
  10009. isSuccess = ConfigurationStatus_Rejected;
  10010. }
  10011. }
  10012. if(strcmp(key, "MeterValuesAlignedData") == 0)
  10013. {
  10014. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility == 1)
  10015. {
  10016. //int valueLength = strlen(value);
  10017. for(int i = 0; value[i]; i++){
  10018. value[i] = tolower(value[i]);
  10019. }
  10020. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "%s", value );
  10021. isSuccess = ConfigurationStatus_Accepted;
  10022. }
  10023. else
  10024. {
  10025. isSuccess = ConfigurationStatus_Rejected;
  10026. }
  10027. }
  10028. if(strcmp(key, "MeterValuesSampledData") == 0 )
  10029. {
  10030. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility == 1)
  10031. {
  10032. //int valueLength = strlen(value);
  10033. for(int i = 0; value[i]; i++){
  10034. value[i] = tolower(value[i]);
  10035. }
  10036. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "%s", value );
  10037. isSuccess = ConfigurationStatus_Accepted;
  10038. }
  10039. else
  10040. {
  10041. isSuccess = ConfigurationStatus_Rejected;
  10042. }
  10043. }
  10044. if(strcmp(key, "MeterValueSampleInterval") == 0)
  10045. {
  10046. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility == 1)
  10047. {
  10048. check_ascii = value[0];
  10049. if( (check_ascii < 48) || (check_ascii > 57) )
  10050. {
  10051. isSuccess = ConfigurationStatus_Rejected;
  10052. }
  10053. else
  10054. {
  10055. //Charger.MeterValueSampleInterval = Integer.parseInt(value)*1000;
  10056. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData, "%d", atoi(value));
  10057. isSuccess = ConfigurationStatus_Accepted;
  10058. }
  10059. #ifdef Debug
  10060. DEBUG_INFO(" MeterValueSampleInterval is ConfigurationStatus_Accepted \n");
  10061. #endif
  10062. }
  10063. else
  10064. {
  10065. isSuccess = ConfigurationStatus_Rejected;
  10066. #ifdef Debug
  10067. DEBUG_INFO(" MeterValueSampleInterval is ConfigurationStatus_Rejected \n");
  10068. #endif
  10069. }
  10070. }
  10071. if(strcmp(key, "MinimumStatusDuration") == 0)
  10072. {
  10073. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility == 1)
  10074. {
  10075. check_ascii = value[0];
  10076. if( (check_ascii < 48) || (check_ascii > 57) )
  10077. {
  10078. isSuccess = ConfigurationStatus_Rejected;
  10079. }
  10080. else
  10081. {
  10082. //Charger.MinimumStatusDuration = Integer.parseInt(value);
  10083. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "%d", atoi(value) );
  10084. isSuccess = ConfigurationStatus_Accepted;
  10085. }
  10086. }
  10087. else
  10088. {
  10089. isSuccess = ConfigurationStatus_Rejected;
  10090. }
  10091. }
  10092. if(strcmp(key, "ResetRetries") == 0)
  10093. {
  10094. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility == 1)
  10095. {
  10096. check_ascii = value[0];
  10097. if( (check_ascii < 48) || (check_ascii > 57) )
  10098. {
  10099. isSuccess = ConfigurationStatus_Rejected;
  10100. }
  10101. else
  10102. {
  10103. //Charger.ResetRetries = Integer.parseInt(value);
  10104. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData, "%d", atoi(value) );
  10105. isSuccess = ConfigurationStatus_Accepted;
  10106. }
  10107. }
  10108. else
  10109. {
  10110. isSuccess = ConfigurationStatus_Rejected;
  10111. }
  10112. }
  10113. if(strcmp(key, "ConnectorPhaseRotation") == 0)
  10114. {
  10115. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility == 1)
  10116. {
  10117. //Charger.ConnectorPhaseRotation = value.toLowerCase();
  10118. //int valueLength = strlen(value);
  10119. for(int i = 0; value[i]; i++){
  10120. value[i] = tolower(value[i]);
  10121. }
  10122. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", value );
  10123. isSuccess = ConfigurationStatus_Accepted;
  10124. }
  10125. else
  10126. {
  10127. isSuccess = ConfigurationStatus_Rejected;
  10128. }
  10129. }
  10130. if(strcmp(key, "StopTransactionOnEVSideDisconnect") == 0)
  10131. {
  10132. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility == 1)
  10133. {
  10134. //Charger.StopTransactionOnEVSideDisconnect = (value.toLowerCase().equals("true")?true:false);
  10135. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  10136. isSuccess = ConfigurationStatus_Accepted;
  10137. }
  10138. else
  10139. {
  10140. isSuccess = ConfigurationStatus_Rejected;
  10141. }
  10142. }
  10143. if(strcmp(key, "StopTransactionOnInvalidId") == 0)
  10144. {
  10145. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility == 1)
  10146. {
  10147. //Charger.StopTransactionOnInvalidId = (value.toLowerCase().equals("true")?true:false);
  10148. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  10149. isSuccess = ConfigurationStatus_Accepted;
  10150. }
  10151. else
  10152. {
  10153. isSuccess = ConfigurationStatus_Rejected;
  10154. }
  10155. }
  10156. if(strcmp(key, "StopTxnAlignedData") == 0)
  10157. {
  10158. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility == 1)
  10159. {
  10160. //Charger.StopTxnAlignedData = value.toLowerCase();
  10161. //int valueLength = strlen(value);
  10162. for(int i = 0; value[i]; i++){
  10163. value[i] = tolower(value[i]);
  10164. }
  10165. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData, "%s", value );
  10166. isSuccess = ConfigurationStatus_Accepted;
  10167. }
  10168. else
  10169. {
  10170. isSuccess = ConfigurationStatus_Rejected;
  10171. }
  10172. }
  10173. if(strcmp(key, "StopTxnSampledData") == 0)
  10174. {
  10175. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility == 1)
  10176. {
  10177. //Charger.StopTxnSampledData = value.toLowerCase();
  10178. //int valueLength = strlen(value);
  10179. for(int i = 0; value[i]; i++){
  10180. value[i] = tolower(value[i]);
  10181. }
  10182. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "%s", value );
  10183. isSuccess = ConfigurationStatus_Accepted;
  10184. }
  10185. else
  10186. {
  10187. isSuccess = ConfigurationStatus_Rejected;
  10188. }
  10189. }
  10190. if(strcmp(key, "TransactionMessageAttempts") == 0)
  10191. {
  10192. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility == 1)
  10193. {
  10194. check_ascii = value[0];
  10195. if( (check_ascii < 48) || (check_ascii > 57) )
  10196. {
  10197. isSuccess = ConfigurationStatus_Rejected;
  10198. }
  10199. else
  10200. {
  10201. //Charger.TransactionMessageAttempts = Integer.parseInt(value);
  10202. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData, "%d", atoi(value) );
  10203. TransactionMessageAttemptsValue = atoi(value);
  10204. isSuccess = ConfigurationStatus_Accepted;
  10205. }
  10206. }
  10207. else
  10208. {
  10209. isSuccess = ConfigurationStatus_Rejected;
  10210. }
  10211. }
  10212. if(strcmp(key, "TransactionMessageRetryInterval") == 0)
  10213. {
  10214. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility == 1)
  10215. {
  10216. check_ascii = value[0];
  10217. if( (check_ascii < 48) || (check_ascii > 57) )
  10218. {
  10219. isSuccess = ConfigurationStatus_Rejected;
  10220. }
  10221. else
  10222. {
  10223. //Charger.TransactionMessageRetryInterval = Integer.parseInt(value)*1000;
  10224. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData, "%d", atoi(value) );
  10225. TransactionMessageRetryIntervalValue = atoi(value);
  10226. isSuccess = ConfigurationStatus_Accepted;
  10227. }
  10228. }
  10229. else
  10230. {
  10231. isSuccess = ConfigurationStatus_Rejected;
  10232. }
  10233. }
  10234. if(strcmp(key, "UnlockConnectorOnEVSideDisconnect") == 0)
  10235. {
  10236. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility == 1)
  10237. {
  10238. //Charger.UnlockConnectorOnEVSideDisconnect = (value.toLowerCase().equals("true")?true:false);
  10239. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  10240. isSuccess = ConfigurationStatus_Accepted;
  10241. }
  10242. else
  10243. {
  10244. isSuccess = ConfigurationStatus_Rejected;
  10245. }
  10246. }
  10247. if(strcmp(key, "WebSocketPingInterval") == 0)
  10248. {
  10249. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility == 1)
  10250. {
  10251. check_ascii = value[0];
  10252. if( (check_ascii < 48) || (check_ascii > 57) )
  10253. {
  10254. isSuccess = ConfigurationStatus_Rejected;
  10255. }
  10256. else
  10257. {
  10258. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "%d", atoi(value) );
  10259. isSuccess = ConfigurationStatus_Accepted;
  10260. }
  10261. }
  10262. else
  10263. {
  10264. isSuccess = ConfigurationStatus_Rejected;
  10265. }
  10266. }
  10267. #if 0
  10268. //For OCPP Test Case
  10269. if(strcmp(key, "LocalAuthorizationListEnabled") == 0)
  10270. {
  10271. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1)
  10272. {
  10273. sprintf((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  10274. isSuccess = ConfigurationStatus_Accepted;
  10275. //updateSetting("LocalAuthorizationListEnabled", (char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData);
  10276. }
  10277. else
  10278. {
  10279. isSuccess = ConfigurationStatus_Rejected;
  10280. }
  10281. }
  10282. #endif
  10283. #if 1
  10284. if(strcmp(key, "LocalAuthListEnabled") == 0)
  10285. {
  10286. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1)
  10287. {
  10288. sprintf((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  10289. isSuccess = ConfigurationStatus_Accepted;
  10290. updateSetting("LocalAuthListEnabled", (char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData);
  10291. }
  10292. else
  10293. {
  10294. isSuccess = ConfigurationStatus_Rejected;
  10295. }
  10296. }
  10297. #endif
  10298. return isSuccess;
  10299. }
  10300. int updateSetting(char *key, char *value)
  10301. {
  10302. mtrace();
  10303. int isSuccess = FALSE;
  10304. char string[1000]={0}, buffer[1000]={0};
  10305. char strtemp[50]={0};
  10306. char sstr[50]={ 0 };//sstr[200]={ 0 };
  10307. int pos, c = 0;
  10308. char *loc;
  10309. int pos1=0;
  10310. FILE *f = fopen("/var/www/settings1", "r");
  10311. if(f == NULL)
  10312. {
  10313. #ifdef Debug
  10314. DEBUG_ERROR("/var/www/settings1 does not exist!\n");
  10315. #endif
  10316. return isSuccess;
  10317. }
  10318. fseek(f, 0, SEEK_END);
  10319. long fsize = ftell(f);
  10320. fseek(f, 0, SEEK_SET); /* same as rewind(f); */
  10321. fread(string, 1, fsize, f);
  10322. fclose(f);
  10323. string[fsize] = 0;
  10324. loc = strstr(string, key);
  10325. if(loc != NULL)
  10326. {
  10327. DEBUG_INFO("key exist!\n");
  10328. pos = loc - string-1;
  10329. f = fopen("/var/www/settings1", "w");
  10330. strncpy(buffer, string, pos);
  10331. fprintf(f, "%s", buffer);
  10332. memset(sstr ,0, sizeof(sstr) );
  10333. c = 0;
  10334. while (loc[3+strlen(key/*"LocalAuthListEnabled"*/)+c] != '\"')
  10335. {
  10336. sstr[c] = loc[3+strlen(key/*"LocalAuthListEnabled"*/)+c];
  10337. //printf("i=%d sstr=%c\n",c, sstr[c]);
  10338. c++;
  10339. }
  10340. sstr[c] = '\0';
  10341. pos1 = fsize -pos -(3+strlen(key/*"LocalAuthListEnabled"*/)+c)-1;
  10342. sprintf(strtemp,"\"%s\":\"%s\"",key,value);
  10343. fprintf(f, "%s", strtemp /*"\"LocalAuthListEnabled\":\"fault\""*/);
  10344. memset(buffer ,0, sizeof(buffer) );
  10345. strncpy(buffer, loc+(3+strlen(key/*"LocalAuthListEnabled"*/)+c)+1, pos1);
  10346. //printf("buffer=%s",buffer);
  10347. fprintf(f, "%s", buffer);
  10348. fclose(f);
  10349. }
  10350. else
  10351. {
  10352. printf("key not exist!\n");
  10353. f = fopen("/var/www/settings1", "w+");
  10354. fputs(string, f);
  10355. fseek(f, -1, SEEK_CUR);
  10356. //fprintf(f, "%s", ",\"LocalAuthListEnabled\":\"true\"}");
  10357. sprintf(strtemp,",\"%s\":\"%s\"}",key,value);
  10358. fputs(strtemp/*",\"LocalAuthListEnabled\":\"true\"}"*/, f);
  10359. fclose(f);
  10360. }
  10361. isSuccess = TRUE;
  10362. return isSuccess;
  10363. }
  10364. int TransactionMessageAttemptsGet(void)
  10365. {
  10366. return TransactionMessageAttemptsValue;//atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData);
  10367. }
  10368. int FirstHeartBeatResponse(void)
  10369. {
  10370. return FirstHeartBeat;
  10371. }
  10372. int TransactionMessageRetryIntervalGet(void)
  10373. {
  10374. return TransactionMessageRetryIntervalValue;//atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData);
  10375. }
  10376. #define SA struct sockaddr
  10377. #define MAXBUF 1024
  10378. //static int m_socket_data;
  10379. //static int sockfd;
  10380. int ReadHttpStatus(int sock){
  10381. //char c;
  10382. char buff[1024]="",*ptr=buff+1;
  10383. int bytes_received, status;
  10384. DEBUG_INFO("Begin Response ..\n");
  10385. while((bytes_received = recv(sock, ptr, 1, 0))){
  10386. if(bytes_received==-1){
  10387. perror("ReadHttpStatus");
  10388. exit(1);
  10389. }
  10390. if((ptr[-1]=='\r') && (*ptr=='\n' )) break;
  10391. ptr++;
  10392. }
  10393. *ptr=0;
  10394. ptr=buff+1;
  10395. sscanf(ptr,"%*s %d ", &status);
  10396. DEBUG_INFO("%s\n",ptr);
  10397. DEBUG_INFO("status=%d\n",status);
  10398. DEBUG_INFO("End Response ..\n");
  10399. return (bytes_received>0)?status:0;
  10400. }
  10401. //the only filed that it parsed is 'Content-Length'
  10402. int ParseHeader(int sock){
  10403. //char c;
  10404. char buff[1024]="",*ptr=buff+4;
  10405. int bytes_received;
  10406. DEBUG_INFO("Begin HEADER ..\n");
  10407. while((bytes_received = recv(sock, ptr, 1, 0))){
  10408. if(bytes_received==-1){
  10409. perror("Parse Header");
  10410. exit(1);
  10411. }
  10412. if(
  10413. (ptr[-3]=='\r') && (ptr[-2]=='\n' ) &&
  10414. (ptr[-1]=='\r') && (*ptr=='\n' )
  10415. ) break;
  10416. ptr++;
  10417. }
  10418. *ptr=0;
  10419. ptr=buff+4;
  10420. //printf("%s",ptr);
  10421. if(bytes_received){
  10422. ptr=strstr(ptr,"Content-Length:");
  10423. if(ptr){
  10424. sscanf(ptr,"%*s %d",&bytes_received);
  10425. }else
  10426. bytes_received=-1; //unknown size
  10427. DEBUG_INFO("Content-Length: %d\n",bytes_received);
  10428. }
  10429. DEBUG_INFO("End HEADER ..\n");
  10430. return bytes_received ;
  10431. }
  10432. int httpDownLoadFile(char *location, char *path, char *filename,char *url)
  10433. {
  10434. char rmFileCmd[100]={0};
  10435. char ftpbuf[200];
  10436. int systemresult;
  10437. DEBUG_INFO("filename=%s\n",filename);
  10438. DEBUG_INFO("url=%s\n",url);
  10439. if((access(filename,F_OK))!=-1)
  10440. {
  10441. DEBUG_INFO("filename=%s exist.\n",filename);
  10442. sprintf(rmFileCmd,"rm -f %s",filename);
  10443. system(rmFileCmd);
  10444. }
  10445. memset(ftpbuf, 0, sizeof(ftpbuf));
  10446. sprintf(ftpbuf, "wget --tries=3 -O %s -c %s",filename, url);
  10447. //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
  10448. systemresult = system(ftpbuf);
  10449. DEBUG_INFO("systemresult=%d\n",systemresult);
  10450. if(systemresult != 0)
  10451. {
  10452. DEBUG_INFO("http DownLoad error!\n");
  10453. return FALSE;
  10454. }
  10455. return TRUE;
  10456. }
  10457. int ftpDownLoadFile(char *location, char *user, char *password, int port, char *path, char *filename,char *url)
  10458. {
  10459. char ftpbuf[200];
  10460. int systemresult;
  10461. //char temp[100];
  10462. #if 0
  10463. struct hostent* server;
  10464. char *IPbuffer;
  10465. server = gethostbyname(location);
  10466. // To convert an Internet network
  10467. // address into ASCII string
  10468. IPbuffer = inet_ntoa(*((struct in_addr*)
  10469. server->h_addr_list[0]));
  10470. #endif
  10471. memset(ftpbuf, 0, sizeof(ftpbuf));
  10472. sprintf(ftpbuf, "wget --tries=3 -O %s -c %s",filename, url);
  10473. //sprintf(ftpbuf, "ftpget -u %s -p %s %s -P %d %s %s%s",user,password,IPbuffer,port/*21*/,filename,path,filename); --- remove temporally
  10474. DEBUG_INFO("ftpbuf=%s\n",ftpbuf);
  10475. //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
  10476. systemresult = system(ftpbuf);
  10477. DEBUG_INFO("systemresult=%d\n",systemresult);
  10478. if(systemresult != 0)
  10479. {
  10480. printf("ftpget error!\n");
  10481. return FALSE;
  10482. }
  10483. return TRUE;
  10484. }
  10485. int ftpFile(char *location, char *user, char *password, int port, char *path, char *fnamePlusPath,char *filename)
  10486. {
  10487. struct hostent* server;
  10488. char *IPbuffer;
  10489. char ftpbuf[200];
  10490. int systemresult;
  10491. // To retrieve host information
  10492. server = gethostbyname(location);
  10493. // To convert an Internet network
  10494. // address into ASCII string
  10495. IPbuffer = inet_ntoa(*((struct in_addr*)
  10496. server->h_addr_list[0]));
  10497. memset(ftpbuf, 0, sizeof(ftpbuf));
  10498. /* format : ftpput -u username -p passwd IP target source*/
  10499. sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,port/*21*/,path,filename,fnamePlusPath);
  10500. DEBUG_INFO("ftpbuf=%s\n",ftpbuf);
  10501. //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
  10502. systemresult = system(ftpbuf);
  10503. DEBUG_INFO("systemresult=%d\n",systemresult);
  10504. if(systemresult != 0)
  10505. {
  10506. DEBUG_INFO("ftpput error!\n");
  10507. return FALSE;
  10508. }
  10509. return TRUE;
  10510. }
  10511. int SettingChargingRecord(int target, int transactionId)
  10512. {
  10513. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  10514. {
  10515. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  10516. {
  10517. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == target)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING))
  10518. {
  10519. addBuff(target, transactionId, 0);
  10520. return TRUE;
  10521. }
  10522. }
  10523. for (int index = 0; index < CCS_QUANTITY; index++)
  10524. {
  10525. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == target)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING))
  10526. {
  10527. addBuff(target, transactionId, 0);
  10528. return TRUE;
  10529. }
  10530. }
  10531. for (int index = 0; index < GB_QUANTITY; index++)
  10532. {
  10533. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == target)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING))
  10534. {
  10535. addBuff(target, transactionId, 0);
  10536. return TRUE;
  10537. }
  10538. }
  10539. }
  10540. else
  10541. {
  10542. for (int index = 0; index < AC_QUANTITY; index++)
  10543. {
  10544. if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == target)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING))
  10545. {
  10546. addBuff(target, transactionId, 0);
  10547. return TRUE;
  10548. }
  10549. }
  10550. }
  10551. return FALSE;
  10552. }
  10553. int addBuff(int gun_idx, int user_id, int cmd_sn)
  10554. {
  10555. int isSuccess = FALSE;
  10556. //char *query = NULL;
  10557. sqlite3_stmt *stmt;
  10558. int rc; // return code
  10559. char str[20];
  10560. sprintf(str,"%d",user_id);
  10561. sqlite3_prepare_v2(db, "insert into log_buffer (user_id, cmd_sn, charger_id, gun_type, gun_no, rfid_no, stime, etime, time_len, s_soc, e_soc, stop_reason, power, meter_before, meter_after, charge_price, reserve, surplus_before, surplus_after, service_price, is_pay ,charge_strategy, charge_parameter, vin, vehicle_no, start_method, card_type, is_upload, guid, is_buf2OK) values (?1,?2,?3,?4,?5,?6,?7,?8,?9,?10,?11,?12,?13,?14,?15,?16,?17,?18,?19,?20,?21,?22,?23,?24,?25,?26,?27,?28,?29,?30);", -1, &stmt, NULL); /* 1 */
  10562. sqlite3_bind_text(stmt, 1, str, -1, SQLITE_STATIC); /* 2 */
  10563. rc = sqlite3_step(stmt); /* 3 */
  10564. if (rc != SQLITE_DONE) {
  10565. printf("ERROR inserting data: %s\n", sqlite3_errmsg(db));
  10566. goto out;
  10567. }
  10568. sqlite3_finalize(stmt);
  10569. // free(query);
  10570. out:
  10571. //----------------------
  10572. // close SQLite database
  10573. //----------------------
  10574. sqlite3_close(db);
  10575. printf("database closed.\n");
  10576. return isSuccess;
  10577. }
  10578. /**
  10579. * Place the contents of the specified file into a memory buffer
  10580. *
  10581. * @param[in] filename The path and name of the file to read
  10582. * @param[out] filebuffer A pointer to the contents in memory
  10583. * @return status 0 success, 1 on failure
  10584. */
  10585. int get_file_contents(const char* filename, char** outbuffer) {
  10586. FILE* file = NULL;
  10587. long filesize;
  10588. const int blocksize = 1;
  10589. size_t readsize;
  10590. char* filebuffer;
  10591. // Open the file
  10592. file = fopen(filename, "r");
  10593. if (NULL == file)
  10594. {
  10595. printf("'%s' not opened\n", filename);
  10596. exit(EXIT_FAILURE);
  10597. }
  10598. // Determine the file size
  10599. fseek(file, 0, SEEK_END);
  10600. filesize = ftell(file);
  10601. rewind (file);
  10602. // Allocate memory for the file contents
  10603. filebuffer = (char*) malloc(sizeof(char) * filesize);
  10604. *outbuffer = filebuffer;
  10605. if (filebuffer == NULL)
  10606. {
  10607. fputs ("malloc out-of-memory", stderr);
  10608. exit(EXIT_FAILURE);
  10609. }
  10610. // Read in the file
  10611. readsize = fread(filebuffer, blocksize, filesize, file);
  10612. if (readsize != filesize)
  10613. {
  10614. fputs ("didn't read file completely",stderr);
  10615. exit(EXIT_FAILURE);
  10616. }
  10617. // Clean exit
  10618. fclose(file);
  10619. return EXIT_SUCCESS;
  10620. }
  10621. static int selectSqlCount = 0;
  10622. static int callback(void *data, int argc, char **argv, char **azColName){
  10623. int i;
  10624. printf("%s: ", (const char*)data);
  10625. selectSqlCount = argc;
  10626. for(i = 0; i<argc; i++){
  10627. printf("%s = %s\n", azColName[i], argv[i] ? argv[i] : "NULL");
  10628. }
  10629. printf("\n");
  10630. return 0;
  10631. }
  10632. static int versioncallback(void *data, int argc, char **argv, char **azColName){
  10633. //int i;
  10634. //printf("%s:\n", (const char*)data);
  10635. localversion = argv[5] ? atoi(argv[5]) : 0;
  10636. printf("localversion=%d\n", localversion);
  10637. return 0;
  10638. }
  10639. static int IdTagcallback(void *data, int argc, char **argv, char **azColName){
  10640. //int i;
  10641. //printf("%s:\n", (const char*)data);
  10642. //idTag
  10643. sprintf(idTagAuthorization,"%s", argv[1] ? argv[1] : "NULL");
  10644. sprintf(idTagQuery.idTagstr,"%s", argv[1] ? argv[1] : "NULL");
  10645. //parentIdTag
  10646. sprintf(idTagQuery.parentIdTag,"%s", argv[2] ? argv[2] : "NULL");
  10647. //expir_date
  10648. sprintf(idTagQuery.expiryDate,"%s", argv[3] ? argv[3] : "NULL");
  10649. //status
  10650. sprintf(idTagQuery.idTagstatus,"%s", argv[4] ? argv[4] : "NULL");
  10651. //version
  10652. idTagQuery.listVersionInt = atoi(argv[5]);
  10653. DEBUG_INFO("IdTag=%s\n", idTagAuthorization);
  10654. return 0;
  10655. }
  10656. static int deleteIdTagcallback(void *data, int argc, char **argv, char **azColName){
  10657. int i;
  10658. //printf("%s:\n", (const char*)data);
  10659. #if 1
  10660. for(i=0; i<argc; i++){
  10661. DEBUG_INFO("%s = %s", azColName[i], argv[i] ? argv[i] : "NULL");
  10662. }
  10663. //printf("");
  10664. #endif
  10665. // localversion = argv[5] ? atoi(argv[5]) : 0;
  10666. // printf("localversion=%d\n", localversion);
  10667. return 0;
  10668. }
  10669. /** sqlite3_exec的回调。
  10670. *
  10671. * 向控制台打印查询的结果。
  10672. *
  10673. * @param in data 传递给回调函数的数据。
  10674. * @param in n_columns sqlite3_exec执行结果集中列的数量。
  10675. * @param in col_values sqlite3_exec执行结果集中每一列的数据。
  10676. * @param in col_names sqlite3_exec执行结果集中每一列的名称。
  10677. * @return 状态码。
  10678. */
  10679. int sqlite3_exec_callback(void *data, int n_columns, char **col_values, char **col_names)
  10680. {
  10681. for (int i = 0; i < n_columns; i++)
  10682. {
  10683. DEBUG_INFO("%s/t", col_values[i]);
  10684. }
  10685. DEBUG_INFO("/n");
  10686. return 0;
  10687. }
  10688. void OCPP_getListVerion()
  10689. {
  10690. int rc = 0;
  10691. // const char* data = "Callback function called";
  10692. char sql[100];
  10693. char zErrMsg[100];
  10694. memset(sql, 0, 100);
  10695. memset(zErrMsg, 0, 100);
  10696. strcpy(sql, "select * from ocpp_auth_local order by idx desc");
  10697. /* Execute SQL statement */
  10698. rc = sqlite3_exec(db, sql, versioncallback, 0, (char **)&zErrMsg);
  10699. DEBUG_INFO("rc=%d\n",rc);
  10700. if( rc != SQLITE_OK ){
  10701. DEBUG_INFO("SQL error: %s", zErrMsg);
  10702. //sqlite3_free(zErrMsg);
  10703. }else{
  10704. DEBUG_INFO("Operation done successfully");
  10705. }
  10706. }
  10707. void OCPP_getIdTag(char *idTag)
  10708. {
  10709. int rc = 0;
  10710. // const char* data = "Callback function called";
  10711. char sql[100];
  10712. char zErrMsg[100];
  10713. memset(sql, 0, 100);
  10714. memset(zErrMsg, 0, 100);
  10715. memset(idTagAuthorization, 0, sizeof(idTagAuthorization));
  10716. memset(&idTagQuery, 0, sizeof(idTagQuery));
  10717. sprintf(sql,"select * from ocpp_auth_local where idtag='%s'", idTag);
  10718. /* Execute SQL statement */
  10719. rc = sqlite3_exec(db, sql, IdTagcallback, 0, (char **)&zErrMsg);
  10720. if( rc != SQLITE_OK ){
  10721. DEBUG_INFO("SQL error: %s", zErrMsg);
  10722. //sqlite3_free(zErrMsg);
  10723. }else{
  10724. printf("Operation done successfully");
  10725. }
  10726. //return ver;
  10727. }
  10728. void OCPP_get_TableAuthlocalAllData(void)
  10729. {
  10730. int rc = 0;
  10731. // const char* data = "Callback function called";
  10732. char sql[100];
  10733. char zErrMsg[100];
  10734. memset(sql, 0, 100);
  10735. memset(zErrMsg, 0, 100);
  10736. sprintf(sql,"select * from ocpp_auth_local ");
  10737. /* Execute SQL statement */
  10738. rc = sqlite3_exec(db, sql, &sqlite3_exec_callback, 0,(char **)&zErrMsg);
  10739. // rc = sqlite3_exec(db, sql, IdTagcallback, 0, &zErrMsg);
  10740. if( rc != SQLITE_OK ){
  10741. DEBUG_INFO("SQL error: %s", zErrMsg);
  10742. //sqlite3_free(zErrMsg);
  10743. }else{
  10744. DEBUG_INFO("Operation done successfully");
  10745. }
  10746. //return ver;
  10747. }
  10748. int OCPP_cleanLocalList()
  10749. {
  10750. char * sqlcleanLocalList = "delete from ocpp_auth_local";
  10751. char *errMsg = 0;
  10752. int rc =sqlite3_exec(db, sqlcleanLocalList, 0, 0, &errMsg);
  10753. if (SQLITE_OK != rc)
  10754. {
  10755. DEBUG_INFO("%s\n",errMsg);
  10756. return FALSE;
  10757. }
  10758. else
  10759. {
  10760. DEBUG_INFO("delete ocpp_auth_local table successfully\n");
  10761. }
  10762. return TRUE;
  10763. }
  10764. int OCPP_addLocalList_1(int version, char *idTag, char *parentTage, char *expiryDate, char *status)
  10765. {
  10766. int isSuccess = FALSE;
  10767. int ret = 0;
  10768. //const char* data = "Callback function called";
  10769. char sql[200];
  10770. char zErrMsg[100];
  10771. memset(sql, 0, 200);
  10772. memset(zErrMsg, 0, 100);
  10773. sprintf(sql,"insert or replace into ocpp_auth_local (idtag, parent_idtag, expir_date, status, version) " "VALUES ('%s', '%s', '%s', '%s', %d ); ""SELECT * from ocpp_auth_local", idTag, parentTage, expiryDate, status, version);
  10774. //* Execute SQL statement */
  10775. //zErrMsg = 0;
  10776. ret = sqlite3_exec(db, sql, callback, 0, (char **)&zErrMsg);
  10777. if( ret != SQLITE_OK ){
  10778. DEBUG_INFO("SQL error: %s\n", zErrMsg);
  10779. // free(zErrMsg);
  10780. // free(sql);
  10781. return isSuccess;
  10782. }
  10783. DEBUG_INFO("successfully Insert records created\n");
  10784. isSuccess = TRUE;
  10785. return isSuccess;
  10786. }
  10787. void OCPP_deleteIdTag(char *idTag)
  10788. {
  10789. //int ver = 0;
  10790. //int isSuccess = FALSE;
  10791. int rc = 0;
  10792. char sql[100];
  10793. char zErrMsg[100];
  10794. memset(sql, 0, 100);
  10795. memset(zErrMsg, 0, 100);
  10796. sprintf(sql,"DELETE from ocpp_auth_local where idtag='%s'; SELECT * from ocpp_auth_local;", idTag);
  10797. //* Execute SQL statement */
  10798. rc = sqlite3_exec(db, sql, deleteIdTagcallback, 0,(char **)&zErrMsg);
  10799. if( rc != SQLITE_OK ){
  10800. DEBUG_INFO("SQL error: %s", zErrMsg);
  10801. //sqlite3_free(zErrMsg);
  10802. }else{
  10803. DEBUG_INFO("Operation done successfully");
  10804. }
  10805. }
  10806. int OCPP_addLocalList(int version, char *idTag, char *parentTage, char *expiryDate, char *status)
  10807. {
  10808. int isSuccess = FALSE;
  10809. int ret = 0;
  10810. const char* data = "Callback function called";
  10811. char sql[200];
  10812. char zErrMsg[100];
  10813. memset(sql, 0, 200);
  10814. memset(zErrMsg, 0, 100);
  10815. //* selectFromTable */
  10816. // sql = select * from ocpp_auth_local where starring='Jodie Foster';
  10817. sprintf(sql,"select * from ocpp_auth_local where idtag='%s'", idTag);
  10818. //* Execute SQL statement */
  10819. selectSqlCount = 0;
  10820. ret = sqlite3_exec(db, sql, callback, (void*)data,(char **)&zErrMsg);
  10821. if( ret != SQLITE_OK ){
  10822. printf("Error SQL: %s\n", zErrMsg);
  10823. }
  10824. printf("successfully select operation done\n");
  10825. memset(sql, 0, 200);
  10826. memset(zErrMsg, 0, 100);
  10827. if(selectSqlCount == 0)
  10828. {
  10829. //Insert
  10830. //sql = "INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) " "VALUES (1, ? Paul?? 32, ? California?? 20000.00 ); ";
  10831. sprintf(sql,"INSERT INTO ocpp_auth_local (idtag, parent_idtag, expir_date, status, version) " "VALUES ('%s', '%s', '%s', '%s', %d ); ", idTag, parentTage, expiryDate, status, version);
  10832. DEBUG_INFO("sql:%s\n", sql);
  10833. //* Execute SQL statement */
  10834. //zErrMsg = 0;
  10835. ret = sqlite3_exec(db, sql, callback, 0,(char **)&zErrMsg);
  10836. if( ret != SQLITE_OK ){
  10837. printf("SQL error: %s\n", zErrMsg);
  10838. return isSuccess;
  10839. }
  10840. DEBUG_INFO("successfully Insert records created\n");
  10841. isSuccess = TRUE;
  10842. }
  10843. else
  10844. {
  10845. //Update
  10846. //* Create merged SQL statement */
  10847. sprintf(sql, "UPDATE ocpp_auth_local set parent_idtag = '%s', expir_date = '%s', status ='%s', version =%d where idtag='%s'; " "SELECT * from ocpp_auth_local", parentTage, expiryDate, status, version, idTag);
  10848. /* Execute SQL statement */
  10849. ret = sqlite3_exec(db, sql, callback, (void*)data,(char **)&zErrMsg);
  10850. if( ret != SQLITE_OK ){
  10851. printf("SQL error: %s\n", zErrMsg);
  10852. //sqlite3_free(zErrMsg);
  10853. //sqlite3_free(sql);
  10854. return isSuccess;
  10855. }
  10856. DEBUG_INFO("Successfully operation done \n");
  10857. isSuccess = TRUE;
  10858. }
  10859. return isSuccess;
  10860. }
  10861. char *GetOcppServerURL()
  10862. {
  10863. memset(OcppProtocol, 0, sizeof(OcppProtocol));
  10864. memset(OcppHost, 0, sizeof(OcppHost));
  10865. memset(OcppTempPath, 0, sizeof(OcppTempPath));
  10866. if((ShmSysConfigAndInfo->SysConfig.OcppServerURL != NULL) && (strcmp((const char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL,"") != 0) )
  10867. {
  10868. DEBUG_INFO("ShmSysConfigAndInfo->SysConfig.OcppServerURL =%s\n",ShmSysConfigAndInfo->SysConfig.OcppServerURL);
  10869. sscanf((const char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL,
  10870. "%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
  10871. OcppProtocol, OcppHost, &OcppPort, OcppTempPath);
  10872. DEBUG_INFO("OcppProtocol =%s\n",OcppProtocol);
  10873. DEBUG_INFO("OcppHost =%s\n",OcppHost);
  10874. DEBUG_INFO("OcppPort =%d\n",OcppPort);
  10875. DEBUG_INFO("OcppTempPath =%s\n",OcppTempPath);
  10876. goto End;
  10877. }
  10878. else if((ShmOCPP16Data->OcppServerURL != NULL) && (strcmp((const char *)ShmOCPP16Data->OcppServerURL,"") != 0))
  10879. {
  10880. DEBUG_INFO("ShmOCPP16Data->OcppServerURL =%s\n",ShmOCPP16Data->OcppServerURL);
  10881. sscanf((const char *)ShmOCPP16Data->OcppServerURL,
  10882. "%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
  10883. OcppProtocol, OcppHost, &OcppPort, OcppTempPath);
  10884. DEBUG_INFO("OcppProtocol =%s\n",OcppProtocol);
  10885. DEBUG_INFO("OcppHost =%s\n",OcppHost);
  10886. DEBUG_INFO("OcppPort =%d\n",OcppPort);
  10887. DEBUG_INFO("OcppTempPath =%s\n",OcppTempPath);
  10888. goto End;
  10889. }
  10890. else
  10891. {
  10892. strcpy(OcppHost,"");
  10893. }
  10894. End:
  10895. return OcppHost;
  10896. }
  10897. char *GetOcppPath()
  10898. {
  10899. if((ShmSysConfigAndInfo->SysConfig.ChargeBoxId != NULL) && (strcmp((const char *)ShmSysConfigAndInfo->SysConfig.ChargeBoxId,"") != 0) )
  10900. {
  10901. if(OcppTempPath == NULL)
  10902. {
  10903. sprintf(OcppPath,"/%s",ShmSysConfigAndInfo->SysConfig.ChargeBoxId);
  10904. }
  10905. else
  10906. {
  10907. sprintf(OcppPath,"/%s%s",OcppTempPath,ShmSysConfigAndInfo->SysConfig.ChargeBoxId);
  10908. }
  10909. goto End;
  10910. }
  10911. else if((ShmOCPP16Data->ChargeBoxId != NULL) && (strcmp((const char *)ShmOCPP16Data->ChargeBoxId,"") != 0))
  10912. {
  10913. if(OcppTempPath == NULL)
  10914. {
  10915. sprintf(OcppPath,"/%s",ShmOCPP16Data->ChargeBoxId);
  10916. }
  10917. else
  10918. {
  10919. sprintf(OcppPath,"/%s%s",OcppTempPath,ShmOCPP16Data->ChargeBoxId);
  10920. }
  10921. goto End;
  10922. }
  10923. else
  10924. {
  10925. strcpy(OcppHost,"");
  10926. }
  10927. End:
  10928. DEBUG_INFO("OcppPath=%s\n",OcppPath);
  10929. return OcppPath;
  10930. }
  10931. int GetOcppPort()
  10932. {
  10933. return OcppPort;
  10934. }
  10935. int GetOcppConnStatus(void)
  10936. {
  10937. return ShmOCPP16Data->OcppConnStatus;
  10938. }
  10939. void SetOcppConnStatus(uint8_t status)
  10940. {
  10941. ShmOCPP16Data->OcppConnStatus = status;
  10942. ShmSysConfigAndInfo->SysInfo.OcppConnStatus = status;
  10943. if(status == FALSE)
  10944. {
  10945. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  10946. {
  10947. SystemInitial = CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY;
  10948. }
  10949. else
  10950. {
  10951. SystemInitial = AC_QUANTITY;
  10952. }
  10953. }
  10954. }
  10955. #if 0
  10956. void Send(struct json_object *message)
  10957. {
  10958. printf("Send -1 \n");
  10959. printf("message=%s\n",json_object_to_json_string(message));
  10960. LWS_Send(json_object_to_json_string(message));
  10961. }
  10962. #endif
  10963. void LWS_Send(char * str)
  10964. {
  10965. #if 1
  10966. //=====================================================
  10967. // Check InternetConn 0: disconnected, 1: connected
  10968. //====================================================
  10969. if(ShmSysConfigAndInfo->SysInfo.InternetConn == 0)
  10970. {
  10971. DEBUG_INFO("\n offline now !!!\n");
  10972. return;
  10973. }
  10974. #endif
  10975. pthread_mutex_lock(&lock);
  10976. memset(SendBuffer,0,SendBufLen);
  10977. sprintf((char *)SendBuffer, "%s", str);
  10978. pthread_mutex_unlock(&lock);
  10979. lws_callback_on_writable(wsi_client);
  10980. lws_service(context, 10000);//timeout_ms
  10981. //usleep(10000); // 等 ?? ?微 ?
  10982. //DEBUG_INFO("Send message end\n");
  10983. }