MessageHandler.c 457 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021
  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"
  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 (ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') ? (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 + AC_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. static char CurrentChargingProfileScheduleStr[30]={0};
  122. //========================================
  123. // OCPP status/previous related variables
  124. //========================================
  125. static int GunStatusInterval = 10;
  126. int statusModeChage[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY] = {FALSE};
  127. static int ChademoPreviousSystemStatus[CHAdeMO_QUANTITY];
  128. static int CcsPreviousSystemStatus[CCS_QUANTITY];
  129. static int GbPreviousSystemStatus[GB_QUANTITY];
  130. static int AcPreviousSystemStatus[AC_QUANTITY];
  131. int TransactionMessageAttemptsValue = 0;
  132. int TransactionMessageRetryIntervalValue = 0;
  133. static struct OCPPAuthLocalElemet
  134. {
  135. int listVersionInt;
  136. char idTagstr[20];
  137. char parentIdTag[20];
  138. char expiryDate[30];
  139. char idTagstatus[16];
  140. }idTagQuery;
  141. //=============================================
  142. // OCPP HeartBeat Response Not Receive Counts
  143. //============================================
  144. static int HeartBeatWithNOResponse = 0;
  145. extern struct lws *wsi_client;
  146. extern struct lws_context *context;
  147. #if 0
  148. extern unsigned char *SendBuffer;
  149. #endif
  150. extern unsigned char SendBuffer[4096];
  151. extern int SendBufLen;
  152. //extern map_t hashMap;
  153. //extern data_struct_t* mapItem; --- remove for temporally
  154. //extern data_struct_t mapItem[0];
  155. extern char *random_uuid( char buf[37] );
  156. extern void split(char **arr, char *str, const char *del);
  157. extern pthread_mutex_t mutex1;
  158. extern struct Charger_Info Charger;
  159. extern sqlite3 *db;
  160. int TransactionMessageAttemptsGet(void);
  161. int TransactionMessageRetryIntervalGet(void);
  162. int GetOcppConnStatus(void);
  163. void SetOcppConnStatus(uint8_t status);
  164. int updateSetting(char *key, char *value);
  165. int setKeyValue(char *key, char *value);
  166. void OCPP_get_TableAuthlocalAllData(void);
  167. void processUnkownKey(void);
  168. //static char *querysql = "SELECT * FROM ocpp_auth_local;";
  169. struct StructOCPPMeterValue
  170. {
  171. unsigned char TimeStamp[28];
  172. struct StructSampledValue SampledValue[10];
  173. };
  174. struct ClientTime
  175. {
  176. unsigned int Heartbeat;
  177. unsigned int StatusNotification[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  178. unsigned int StartTransaction;
  179. unsigned int StopTransaction;
  180. unsigned int MeterValues[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  181. }clientTime;
  182. typedef union
  183. {
  184. //Operations Initiated by Central System
  185. unsigned char CsMsgValue[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  186. struct
  187. {
  188. //CsMsgValue[0]
  189. unsigned char StatusNotificationReq :1; //bit 0,
  190. unsigned char StatusNotificationConf :1; //bit 0,
  191. unsigned char :6; //bit 2~7
  192. }bits[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  193. }CpinitiateMsg;
  194. CpinitiateMsg cpinitateMsg;
  195. //==========================================
  196. // Init all Enumeration & Mapping String
  197. //==========================================
  198. /*ChargePointErrorCode*/
  199. typedef enum {
  200. ConnectorLockFailure,
  201. EVCommunicationError,
  202. GroundFailure,
  203. HighTemperature,
  204. InternalError,
  205. LocalListConflict,
  206. NoError,
  207. OtherError,
  208. OverCurrentFailure,
  209. OverVoltage,
  210. PowerMeterFailure,
  211. PowerSwitchFailure,
  212. ReaderFailure,
  213. ResetFailure,
  214. UnderVoltage,
  215. WeakSignal
  216. } ChargePointErrorCode;
  217. #if 0
  218. static char *ChargePointErrorCodeStr[] = {
  219. MACROSTR(ConnectorLockFailure),
  220. MACROSTR(EVCommunicationError),
  221. MACROSTR(GroundFailure),
  222. MACROSTR(HighTemperature),
  223. MACROSTR(InternalError),
  224. MACROSTR(LocalListConflict),
  225. MACROSTR(NoError),
  226. MACROSTR(OtherError),
  227. MACROSTR(OverCurrentFailure),
  228. MACROSTR(OverVoltage),
  229. MACROSTR(PowerMeterFailure),
  230. MACROSTR(PowerSwitchFailure),
  231. MACROSTR(ReaderFailure),
  232. MACROSTR(ResetFailure),
  233. MACROSTR(UnderVoltage),
  234. MACROSTR(WeakSignal)
  235. };
  236. #endif
  237. /*ChargePointStatus*/
  238. typedef enum {
  239. Available =0,
  240. Preparing,
  241. Charging,
  242. SuspendedEVSE,
  243. SuspendedEV,
  244. Finishing,
  245. Reserved,
  246. Unavailable,
  247. Faulted
  248. } ChargePointStatus;
  249. static char * ChargePointStatusStr[] = {
  250. MACROSTR(Available),
  251. MACROSTR(Preparing),
  252. MACROSTR(Charging),
  253. MACROSTR(SuspendedEVSE),
  254. MACROSTR(SuspendedEV),
  255. MACROSTR(Finishing),
  256. MACROSTR(Reserved),
  257. MACROSTR(Unavailable),
  258. MACROSTR(Faulted)
  259. };
  260. /*AvailabilityType*/
  261. typedef enum {
  262. RegistrationStatus_Accepted,
  263. RegistrationStatus_Pending,
  264. RegistrationStatus_Rejected
  265. } RegistrationStatus;
  266. static char *RegistrationStatusStr[] = {
  267. MACROSTR(Accepted),
  268. MACROSTR(Pending),
  269. MACROSTR(Rejected)
  270. };
  271. /*AvailabilityType*/
  272. typedef enum {
  273. Inoperative,
  274. Operative
  275. } AvailabilityType;
  276. static char *AvailabilityTypeStr[] = {
  277. MACROSTR(Inoperative),
  278. MACROSTR(Operative)
  279. };
  280. /*AvailabilityStatus*/
  281. typedef enum {
  282. Accepted,
  283. Rejected,
  284. Scheduled
  285. } AvailabilityStatus;
  286. static char *AvailabilityStatusStr[] = {
  287. MACROSTR(Accepted),
  288. MACROSTR(Rejected),
  289. MACROSTR(Scheduled)
  290. };
  291. /*ConfigurationStatus*/
  292. typedef enum {
  293. ConfigurationStatus_Accepted,
  294. ConfigurationStatus_Rejected,
  295. RebootRequired,
  296. NotSupported
  297. } ConfigurationStatus;
  298. static char *ConfigurationStatusStr[] = {
  299. MACROSTR(Accepted),
  300. MACROSTR(Rejected),
  301. MACROSTR(RebootRequired),
  302. MACROSTR(NotSupported)
  303. };
  304. /*ClearCacheStatus*/
  305. typedef enum {
  306. ClearCacheStatus_Accepted,
  307. ClearCacheStatus_Rejected
  308. } ClearCacheStatus;
  309. static char *ClearCacheStatusStr[] = {
  310. MACROSTR(Accepted),
  311. MACROSTR(Rejected)
  312. };
  313. /*ChargingProfilePurposeType*/
  314. typedef enum {
  315. ChargePointMaxProfile,
  316. TxDefaultProfile,
  317. TxProfile
  318. } ChargingProfilePurposeType;
  319. static char *ChargingProfilePurposeTypeStr[] = {
  320. MACROSTR(ChargePointMaxProfile),
  321. MACROSTR(TxDefaultProfile),
  322. MACROSTR(TxProfile)
  323. };
  324. /*ChargingProfileStatus*/
  325. typedef enum {
  326. ChargingProfileStatus_Accepted,
  327. ChargingProfileStatus_Rejected,
  328. ChargingProfileStatus_NotSupported
  329. } ChargingProfileStatus;
  330. static char *ChargingProfileStatusStr[] = {
  331. MACROSTR(Accepted),
  332. MACROSTR(Rejected),
  333. MACROSTR(NotSupported)
  334. };
  335. /*ClearChargingProfileStatus*/
  336. typedef enum {
  337. ClearChargingProfileStatus_Accepted,
  338. ClearChargingProfileStatus_Unknown
  339. } ClearChargingProfileStatus;
  340. static char *ClearChargingProfileStatusStr[] = {
  341. MACROSTR(Accepted),
  342. MACROSTR(Unknown)
  343. };
  344. /*GetCompositeScheduleStatus*/
  345. typedef enum {
  346. GetCompositeScheduleStatus_Accepted,
  347. GetCompositeScheduleStatus_Rejected
  348. } GetCompositeScheduleStatus;
  349. static char *GetCompositeScheduleStatusStr[] = {
  350. MACROSTR(Accepted),
  351. MACROSTR(Rejected)
  352. };
  353. /*ChargingRateUnitType*/
  354. typedef enum {
  355. ChargingRateUnitType_W,
  356. ChargingRateUnitType_A
  357. } ChargingRateUnitType;
  358. /*AuthorizationStatus*/
  359. typedef enum {
  360. AuthorizationStatus_Accepted ,
  361. AuthorizationStatus_Blocked ,
  362. AuthorizationStatus_Expired ,
  363. AuthorizationStatus_Invalid ,
  364. AuthorizationStatus_ConcurrentTx
  365. } AuthorizationStatus;
  366. /*UpdateType*/
  367. typedef enum {
  368. Differential ,
  369. Full
  370. } UpdateType;
  371. static char *UpdateTypeStr[] = {
  372. MACROSTR(Differential),
  373. MACROSTR(Full)
  374. };
  375. /*UpdateStatus*/
  376. typedef enum {
  377. UpdateStatus_Accepted ,
  378. UpdateStatus_Failed ,
  379. UpdateStatus_NotSupported ,
  380. UpdateStatus_VersionMismatch
  381. } UpdateStatus;
  382. static char *UpdateStatusStr[] = {
  383. MACROSTR(Accepted),
  384. MACROSTR(Failed),
  385. MACROSTR(NotSupported),
  386. MACROSTR(VersionMismatch)
  387. };
  388. /*RemoteStartStopStatus*/
  389. typedef enum {
  390. RemoteStartStopStatus_Accepted,
  391. RemoteStartStopStatus_Rejected
  392. } RemoteStartStopStatus;
  393. static char *RemoteStartStopStatusStr[] = {
  394. MACROSTR(Accepted),
  395. MACROSTR(Rejected)
  396. };
  397. /*ReservationStatus*/
  398. typedef enum {
  399. ReservationStatus_Accepted,
  400. ReservationStatus_Faulted,
  401. ReservationStatus_Occupied,
  402. ReservationStatus_Rejected,
  403. ReservationStatus_Unavailable
  404. } ReservationStatus;
  405. static char *ReservationStatusStr[] = {
  406. MACROSTR(Accepted),
  407. MACROSTR(Faulted),
  408. MACROSTR(Occupied),
  409. MACROSTR(Rejected),
  410. MACROSTR(Unavailable)
  411. };
  412. /*ResetType*/
  413. typedef enum {
  414. Hard,
  415. Soft
  416. } ResetType;
  417. static char *ResetTypeStr[] = {
  418. MACROSTR(Hard),
  419. MACROSTR(Soft)
  420. };
  421. /*ResetStatus*/
  422. typedef enum {
  423. ResetStatus_Accepted,
  424. ResetStatus_Rejected
  425. } ResetStatus;
  426. static char *ResetStatusStr[] = {
  427. MACROSTR(Accepted),
  428. MACROSTR(Rejected)
  429. };
  430. /*DiagnosticsStatus*/
  431. typedef enum {
  432. DiagnosticsStatus_Idle,
  433. DiagnosticsStatus_Uploaded,
  434. DiagnosticsStatus_UploadFailed,
  435. DiagnosticsStatus_Uploading
  436. } DiagnosticsStatus;
  437. static char * DiagnosticsStatusStr[] = {
  438. MACROSTR(Idle),
  439. MACROSTR(Uploaded),
  440. MACROSTR(UploadFailed),
  441. MACROSTR(Uploading)
  442. };
  443. /*FirmwareStatus*/
  444. typedef enum {
  445. FirmwareStatus_Downloaded,
  446. FirmwareStatus_DownloadFailed,
  447. FirmwareStatus_Downloading,
  448. FirmwareStatus_Idle,
  449. FirmwareStatus_InstallationFailed,
  450. FirmwareStatus_Installing,
  451. FirmwareStatus_Installed
  452. } FirmwareStatus;
  453. static char * FirmwareStatusStr[] = {
  454. MACROSTR(Downloaded),
  455. MACROSTR(DownloadFailed),
  456. MACROSTR(Downloading),
  457. MACROSTR(Idle),
  458. MACROSTR(InstallationFailed),
  459. MACROSTR(Installing),
  460. MACROSTR(Installed)
  461. };
  462. /*MessageTrigger*/
  463. typedef enum {
  464. BootNotification,
  465. DiagnosticsStatusNotification,
  466. FirmwareStatusNotification,
  467. Heartbeat,
  468. MeterValues,
  469. StatusNotification
  470. } MessageTrigger;
  471. static char * MessageTriggerStr[] = {
  472. MACROSTR(BootNotification),
  473. MACROSTR(DiagnosticsStatusNotification),
  474. MACROSTR(FirmwareStatusNotification),
  475. MACROSTR(Heartbeat),
  476. MACROSTR(MeterValues),
  477. MACROSTR(StatusNotification)
  478. };
  479. /*TriggerMessageStatus*/
  480. typedef enum {
  481. TriggerMessageStatus_Accepted ,
  482. TriggerMessageStatus_Rejected ,
  483. TriggerMessageStatus_NotImplemented
  484. } TriggerMessageStatus;
  485. static char * TriggerMessageStatusStr[] = {
  486. MACROSTR(Accepted),
  487. MACROSTR(Rejected),
  488. MACROSTR(NotImplemented)
  489. };
  490. /*UnlockStatus*/
  491. typedef enum {
  492. Unlocked,
  493. UnlockFailed,
  494. UnlockStatus_NotSupported
  495. } UnlockStatus;
  496. static char * UnlockStatusStr[] = {
  497. MACROSTR(Unlocked),
  498. MACROSTR(UnlockFailed),
  499. MACROSTR(NotSupported)
  500. };
  501. /*StopTransactionReason*/
  502. typedef enum {
  503. EmergencyStop,
  504. EVDisconnected,
  505. HardReset,
  506. Local,
  507. Other,
  508. PowerLoss,
  509. Reboot,
  510. Remote,
  511. SoftReset,
  512. UnlockCommand,
  513. DeAuthorized
  514. } StopTransactionReason;
  515. static char * StopTransactionReasonStr[] = {
  516. MACROSTR(EmergencyStop),
  517. MACROSTR(EVDisconnected),
  518. MACROSTR(HardReset),
  519. MACROSTR(Local),
  520. MACROSTR(Other),
  521. MACROSTR(PowerLoss),
  522. MACROSTR(Reboot),
  523. MACROSTR(Remote),
  524. MACROSTR(SoftReset),
  525. MACROSTR(UnlockCommand),
  526. MACROSTR(DeAuthorized)
  527. };
  528. /*CancelReservationStatus*/
  529. typedef enum {
  530. CancelReservationStatus_Accepted,
  531. CancelReservationStatus_Rejected
  532. } CancelReservationStatus;
  533. static char * CancelReservationStatusStr[] = {
  534. MACROSTR(Accepted),
  535. MACROSTR(Rejected)
  536. };
  537. /*ReadingContext*/
  538. typedef enum {
  539. ReadingContext_Interruption_Begin,
  540. ReadingContext_Interruption_End,
  541. ReadingContext_Other,
  542. ReadingContext_Sample_Clock,
  543. ReadingContext_Sample_Periodic ,
  544. ReadingContext_Transaction_Begin ,
  545. ReadingContext_Transaction_End,
  546. ReadingContext_Trigger
  547. } ReadingContext;
  548. static char * ReadingContextStr[] = {
  549. MACROSTR(Interruption.Begin),
  550. MACROSTR(Interruption.End),
  551. MACROSTR(Other),
  552. MACROSTR(Sample.Clock),
  553. MACROSTR(Sample.Periodic),
  554. MACROSTR(Transaction.Begin),
  555. MACROSTR(Transaction.End),
  556. MACROSTR(Trigger)
  557. };
  558. /*ValueFormat*/
  559. typedef enum {
  560. Raw,
  561. SignedData
  562. } ValueFormat;
  563. static char * ValueFormatStr[] = {
  564. MACROSTR(Raw),
  565. MACROSTR(SignedData)
  566. };
  567. /*Measurand*/
  568. typedef enum {
  569. Current_Export ,
  570. Current_Import,
  571. Current_Offered,
  572. Energy_Active_Export_Register,
  573. Energy_Active_Import_Register,
  574. Energy_Reactive_Export_Register,
  575. Energy_Reactive_Import_Register,
  576. Energy_Active_Export_Interval,
  577. Energy_Active_Import_Interval,
  578. Energy_Reactive_Export_Interval,
  579. Energy_Reactive_Import_Interval,
  580. Frequency,
  581. Power_Active_Export ,
  582. Power_Active_Import,
  583. Power_Factor,
  584. Power_Offered,
  585. Power_Reactive_Export,
  586. Power_Reactive_Import,
  587. RPM,
  588. SoC,
  589. Temperature ,
  590. Voltage
  591. } Measurand;
  592. static char * MeasurandStr[] = {
  593. MACROSTR(Current.Export),
  594. MACROSTR(Current.Import),
  595. MACROSTR(Current.Offered),
  596. MACROSTR(Energy.Active.Export.Register),
  597. MACROSTR(Energy.Active.Import.Register),
  598. MACROSTR(Energy.Reactive.Export.Register),
  599. MACROSTR(Energy.Reactive.Import.Register),
  600. MACROSTR(Energy.Active.Export.Interval),
  601. MACROSTR(Energy.Active.Import.Interval),
  602. MACROSTR(Energy.Reactive.Export.Interval),
  603. MACROSTR(Energy.Reactive.Import.Interval),
  604. MACROSTR(Frequency),
  605. MACROSTR(Power.Active.Export),
  606. MACROSTR(Power.Active.Import),
  607. MACROSTR(Power.Factor),
  608. MACROSTR(Power.Offered),
  609. MACROSTR(Power.Reactive.ExportMACROSTR),
  610. MACROSTR(Power.Reactive.Import),
  611. MACROSTR(RPM),
  612. MACROSTR(SoC),
  613. MACROSTR(Temperature),
  614. MACROSTR(Voltage)
  615. };
  616. /*Location*/
  617. typedef enum {
  618. Location_Body,
  619. Location_Cable,
  620. Location_EV,
  621. Location_Inlet ,
  622. Location_Outlet
  623. } Location;
  624. static char * LocationStr[] = {
  625. MACROSTR(Body),
  626. MACROSTR(Cable),
  627. MACROSTR(EV),
  628. MACROSTR(Inlet),
  629. MACROSTR(Outlet)
  630. };
  631. /*Phase*/
  632. typedef enum {
  633. L1,
  634. L2,
  635. L3,
  636. N,
  637. L1_N,
  638. L2_N,
  639. L3_N,
  640. L1_L2,
  641. L2_L3,
  642. L3_L1
  643. } Phase;
  644. static char * PhaseStr[] = {
  645. MACROSTR(L1),
  646. MACROSTR(L2),
  647. MACROSTR(L3),
  648. MACROSTR(N),
  649. MACROSTR(L1-N),
  650. MACROSTR(L2-N),
  651. MACROSTR(L3-N),
  652. MACROSTR(L1-L2),
  653. MACROSTR(L2-L3),
  654. MACROSTR(L3-L1)
  655. };
  656. /*UnitOfMeasure*/
  657. typedef enum {
  658. UnitOfMeasure_Wh,
  659. UnitOfMeasure_kWh ,
  660. UnitOfMeasure_varh ,
  661. UnitOfMeasure_kvarh ,
  662. UnitOfMeasure_W ,
  663. UnitOfMeasure_kW ,
  664. UnitOfMeasure_VA ,
  665. UnitOfMeasure_kVA ,
  666. UnitOfMeasure_var ,
  667. UnitOfMeasure_kvar ,
  668. UnitOfMeasure_A ,
  669. UnitOfMeasure_V ,
  670. UnitOfMeasure_Celsius ,
  671. UnitOfMeasure_Fahrenheit ,
  672. UnitOfMeasure_K ,
  673. UnitOfMeasure_Percent
  674. } UnitOfMeasure;
  675. static char * UnitOfMeasureStr[] = {
  676. MACROSTR(Wh),
  677. MACROSTR(kWh),
  678. MACROSTR(varh),
  679. MACROSTR(kvarh),
  680. MACROSTR(W),
  681. MACROSTR(kW),
  682. MACROSTR(VA),
  683. MACROSTR(kVA),
  684. MACROSTR(var),
  685. MACROSTR(kvar),
  686. MACROSTR(A),
  687. MACROSTR(V),
  688. MACROSTR(Celsius),
  689. MACROSTR(Fahrenheit),
  690. MACROSTR(K),
  691. MACROSTR(Percent)
  692. };
  693. /*Configuration enum*/
  694. enum CoreProfile {
  695. AllowOfflineTxForUnknownId=0,
  696. AuthorizationCacheEnabled,
  697. AuthorizeRemoteTxRequests,
  698. BlinkRepeat,
  699. ClockAlignedDataInterval,
  700. ConnectionTimeOut,
  701. GetConfigurationMaxKeys,
  702. HeartbeatInterval,
  703. LightIntensity,
  704. LocalAuthorizeOffline,
  705. LocalPreAuthorize,
  706. MaxEnergyOnInvalidId,
  707. MeterValuesAlignedData,
  708. MeterValuesAlignedDataMaxLength,
  709. MeterValuesSampledData,
  710. MeterValuesSampledDataMaxLength,
  711. MeterValueSampleInterval,
  712. MinimumStatusDuration,
  713. NumberOfConnectors,
  714. ResetRetries,
  715. ConnectorPhaseRotation,
  716. ConnectorPhaseRotationMaxLength,
  717. StopTransactionOnEVSideDisconnect,
  718. StopTransactionOnInvalidId,
  719. StopTxnAlignedData,
  720. StopTxnAlignedDataMaxLength,
  721. StopTxnSampledData,
  722. StopTxnSampledDataMaxLength,
  723. SupportedFeatureProfiles,
  724. SupportedFeatureProfilesMaxLength,
  725. TransactionMessageAttempts,
  726. TransactionMessageRetryInterval,
  727. UnlockConnectorOnEVSideDisconnect,
  728. WebSocketPingInterval,
  729. _CoreProfile_CNT
  730. };
  731. enum LocalAuthListManagementProfile{
  732. LocalAuthListEnabled=0,
  733. LocalAuthListMaxLength,
  734. SendLocalListMaxLength,
  735. _LocalAuthListManagementProfile_CNT
  736. };
  737. enum ReservationProfile{
  738. ReserveConnectorZeroSupported
  739. };
  740. enum SmartChargingProfile{
  741. ChargeProfileMaxStackLevel,
  742. ChargingScheduleAllowedChargingRateUnit,
  743. ChargingScheduleMaxPeriods,
  744. ConnectorSwitch3to1PhaseSupported,
  745. MaxChargingProfilesInstalled
  746. };
  747. enum ChargerSystemStatus{
  748. ChargerSystemStatus_Booting,
  749. ChargerSystemStatus_Idle,
  750. ChargerSystemStatus_Authorizing,
  751. ChargerSystemStatus_Preparing,
  752. ChargerSystemStatus_Charging,
  753. ChargerSystemStatus_Terminating,
  754. ChargerSystemStatus_Alarm,
  755. ChargerSystemStatus_Fault
  756. };
  757. enum GetConfigurationKey {
  758. GetConfiguration_AllowOfflineTxForUnknownId=0,
  759. GetConfiguration_AuthorizationCacheEnabled,
  760. GetConfiguration_AuthorizeRemoteTxRequests,
  761. GetConfiguration_BlinkRepeat,
  762. GetConfiguration_ClockAlignedDataInterval,
  763. GetConfiguration_ConnectionTimeOut,
  764. GetConfiguration_GetConfigurationMaxKeys,
  765. GetConfiguration_HeartbeatInterval,
  766. GetConfiguration_LightIntensity,
  767. GetConfiguration_LocalAuthorizeOffline,
  768. GetConfiguration_LocalPreAuthorize,
  769. GetConfiguration_MaxEnergyOnInvalidId,
  770. GetConfiguration_MeterValuesAlignedData,
  771. GetConfiguration_MeterValuesAlignedDataMaxLength,
  772. GetConfiguration_MeterValuesSampledData,
  773. GetConfiguration_MeterValuesSampledDataMaxLength,
  774. GetConfiguration_MeterValueSampleInterval,
  775. GetConfiguration_MinimumStatusDuration,
  776. GetConfiguration_NumberOfConnectors,
  777. GetConfiguration_ResetRetries,
  778. GetConfiguration_ConnectorPhaseRotation,
  779. GetConfiguration_ConnectorPhaseRotationMaxLength,
  780. GetConfiguration_StopTransactionOnEVSideDisconnect,
  781. GetConfiguration_StopTransactionOnInvalidId,
  782. GetConfiguration_StopTxnAlignedData,
  783. GetConfiguration_StopTxnAlignedDataMaxLength,
  784. GetConfiguration_StopTxnSampledData,
  785. GetConfiguration_StopTxnSampledDataMaxLength,
  786. GetConfiguration_SupportedFeatureProfiles,
  787. GetConfiguration_SupportedFeatureProfilesMaxLength,
  788. GetConfiguration_TransactionMessageAttempts,
  789. GetConfiguration_TransactionMessageRetryInterval,
  790. GetConfiguration_UnlockConnectorOnEVSideDisconnect,
  791. GetConfiguration_WebSocketPingInterval,
  792. GetConfiguration_LocalAuthListEnabled,
  793. GetConfiguration_LocalAuthListMaxLength,
  794. GetConfiguration_SendLocalListMaxLength,
  795. GetConfiguration_ReserveConnectorZeroSupported,
  796. GetConfiguration_ChargeProfileMaxStackLevel,
  797. GetConfiguration_ChargingScheduleAllowedChargingRateUnit,
  798. GetConfiguration_ChargingScheduleMaxPeriods,
  799. GetConfiguration_ConnectorSwitch3to1PhaseSupported,
  800. GetConfiguration_MaxChargingProfilesInstalled,
  801. };
  802. //GetConfiguration Array
  803. struct StructConfigurationKeyItems staticKeyArray[GetConfigurationMaxKeysNUM]={0};
  804. struct StructConfigurationKey staticResponseConfigurationKeyArray[GetConfigurationMaxKeysNUM]={0};
  805. struct StructConfigurationKeyItems staticResponseUnknownKey[10]={0};
  806. struct StructLocalAuthorizationList staticLocalAuthorizationList[500]={0};
  807. //==========================================
  808. // Init all share memory
  809. //==========================================
  810. int InitShareMemory()
  811. {
  812. int result = PASS;
  813. int MeterSMId;
  814. //printf("1\n");
  815. //creat ShmSysConfigAndInfo
  816. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  817. {
  818. #ifdef SystemLogMessage
  819. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  820. #endif
  821. result = FAIL;
  822. }
  823. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  824. {
  825. #ifdef SystemLogMessage
  826. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n");
  827. #endif
  828. result = FAIL;
  829. }
  830. else
  831. {}
  832. //printf("2\n");
  833. //creat ShmStatusCodeData
  834. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  835. {
  836. #ifdef SystemLogMessage
  837. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  838. #endif
  839. result = FAIL;
  840. }
  841. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  842. {
  843. #ifdef SystemLogMessage
  844. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  845. #endif
  846. result = FAIL;
  847. }
  848. else
  849. {}
  850. //printf("3\n");
  851. //creat ShmPsuData
  852. if ((MeterSMId = shmget(ShmPsuKey, sizeof(struct PsuData), 0777)) < 0)
  853. {
  854. #ifdef SystemLogMessage
  855. DEBUG_ERROR("shmget ShmPsuData NG\n");
  856. #endif
  857. result = FAIL;
  858. }
  859. else if ((ShmPsuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  860. {
  861. #ifdef SystemLogMessage
  862. DEBUG_ERROR("shmat ShmPsuData NG\n");
  863. #endif
  864. result = FAIL;
  865. }
  866. else
  867. {}
  868. //creat ShmOCPP16Data
  869. if ((MeterSMId = shmget(ShmOcppModuleKey, sizeof(struct OCPP16Data), 0777)) < 0)
  870. {
  871. #ifdef SystemLogMessage
  872. DEBUG_ERROR("shmget ShmOCPP16Data NG");
  873. #endif
  874. result = FAIL;
  875. }
  876. else if ((ShmOCPP16Data = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  877. {
  878. #ifdef SystemLogMessage
  879. DEBUG_ERROR("shmat ShmOCPP16Data NG");
  880. #endif
  881. result = FAIL;
  882. }
  883. else
  884. {}
  885. /****************************** For Initial Settings************************************************/
  886. gunTotalNumber = (ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') ? (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY): AC_QUANTITY;
  887. //memset(ShmOCPP16Data->StatusNotification,0,sizeof(struct StructStatusNotification)*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY));
  888. for(int gun_index=0; gun_index < gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/; gun_index++ )
  889. {
  890. cpinitateMsg.bits[gun_index].StatusNotificationReq = 0;
  891. cpinitateMsg.bits[gun_index].StatusNotificationConf = 0;
  892. clientTime.MeterValues[gun_index] = time((time_t*)NULL);
  893. }
  894. // Charger PRE_SYS_MODE
  895. memset(PRE_SYS_MODE, 0, sizeof(PRE_SYS_MODE));
  896. memset( (void *)unknownkey, 0, sizeof(unknownkey)/*sizeof(char)*10*20*/ );
  897. clientTime.Heartbeat=time((time_t*)NULL);
  898. for(int gun_index=0;gun_index < gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/ ;gun_index++)
  899. {
  900. clientTime.StatusNotification[gun_index] = time((time_t*)NULL);
  901. clientTime.MeterValues[gun_index] = time((time_t*)NULL);
  902. //strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode, "NoError");
  903. }
  904. //HeartBeatWaitTime = 10;
  905. ShmOCPP16Data->GetConfiguration.ResponseUnknownKey = NULL;
  906. ShmOCPP16Data->SendLocalList.LocalAuthorizationList = NULL;
  907. // allocate Configuration memory address
  908. ShmOCPP16Data->GetConfiguration.Key = staticKeyArray;
  909. ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey = staticResponseConfigurationKeyArray;
  910. ShmOCPP16Data->GetConfiguration.ResponseUnknownKey = staticResponseUnknownKey;
  911. ShmOCPP16Data->SendLocalList.LocalAuthorizationList = staticLocalAuthorizationList;
  912. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') // 'D' means DC
  913. {
  914. SystemInitial = CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY;
  915. DEBUG_INFO("DC ...\n");
  916. }
  917. else if (ShmSysConfigAndInfo->SysConfig.ModelName[0]=='A') //'A' means AC
  918. {
  919. SystemInitial = AC_QUANTITY;
  920. DEBUG_INFO("AC ...\n");
  921. }
  922. //Status Setting
  923. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  924. {
  925. ChademoPreviousSystemStatus[index]= ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PreviousSystemStatus;
  926. }
  927. for (int index = 0; index < CCS_QUANTITY; index++)
  928. {
  929. CcsPreviousSystemStatus[index]= ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PreviousSystemStatus;
  930. }
  931. for (int index = 0; index < GB_QUANTITY; index++)
  932. {
  933. GbPreviousSystemStatus[index]= ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PreviousSystemStatus;
  934. }
  935. for (int index = 0; index < AC_QUANTITY; index++)
  936. {
  937. AcPreviousSystemStatus[index]= ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PreviousSystemStatus;
  938. }
  939. //memset(unknownkey, 0, 10);
  940. return result;
  941. }
  942. int ProcessShareMemory()
  943. {
  944. if(InitShareMemory() == FAIL)
  945. {
  946. #ifdef SystemLogMessage
  947. DEBUG_ERROR("InitShareMemory NG\n");
  948. #endif
  949. if(ShmStatusCodeData!=NULL)
  950. {
  951. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=1;
  952. }
  953. sleep(5);
  954. return FAIL;
  955. }
  956. return PASS;
  957. }
  958. //---------------------------------------------
  959. // new:
  960. // enum SYSTEM_STATUS
  961. // {
  962. // SYS_MODE_BOOTING = 0,
  963. // SYS_MODE_IDLE = 1,
  964. // SYS_MODE_AUTHORIZING = 2,
  965. // SYS_MODE_PREPARING = 3,
  966. // SYS_MODE_CHARGING = 4,
  967. // SYS_MODE_TERMINATING = 5,
  968. // SYS_MODE_ALARM = 6,
  969. // SYS_MODE_FAULT = 7,
  970. // SYS_MODE_RESERVATION = 8,
  971. // SYS_MODE_BOOKING = 9,
  972. // SYS_MODE_MAINTAIN = 10,
  973. // SYS_MODE_DEBUG = 11,
  974. // SYS_MODE_REASSIGN_CHECK = 12,
  975. // SYS_MODE_REASSIGN = 13,
  976. // SYS_MODE_PRECHARGE = 14,
  977. // SYS_MODE_PREPARING_EV = 15,
  978. // SYS_MODE_PREPARING_EVSE = 16,
  979. // SYS_MODE_COMPLETE = 17
  980. // };
  981. //
  982. // old:
  983. // enum _SYSTEM_STATUS
  984. // {
  985. // S_BOOTING = 0,
  986. // S_IDLE, =1
  987. // S_AUTHORIZING, =2
  988. // S_REASSIGN_CHECK, =3
  989. // S_REASSIGN, =4
  990. // S_PRECHARGE, =5
  991. // S_PREPARING_FOR_EV, =6
  992. // S_PREPARING_FOR_EVSE, =7
  993. // S_CHARGING, =8
  994. // S_TERMINATING, =9
  995. // S_COMPLETE, =10
  996. // S_ALARM, =11
  997. // S_FAULT =12
  998. // };
  999. //
  1000. //-----------------------------------------
  1001. void CheckSystemValue(void)
  1002. {
  1003. int meterValueSend[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY]={0};
  1004. int IdleModeCnt = 0;
  1005. char filenmae[100]={0};
  1006. char str[100]={0};
  1007. //===============================
  1008. // send Heartbeat
  1009. //===============================
  1010. if((server_sign == TRUE) && (difftime(time((time_t*)NULL), clientTime.Heartbeat) >= HeartBeatWaitTime)/*((time((time_t*)NULL)-clientTime.Heartbeat)>= ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval)*/)
  1011. {
  1012. //parameter for test
  1013. sendHeartbeatRequest(0);
  1014. //==============================================
  1015. // Reset Waiting Time
  1016. //==============================================
  1017. clientTime.Heartbeat=time((time_t*)NULL);
  1018. HeartBeatWithNOResponse = HeartBeatWithNOResponse + 1;
  1019. }
  1020. //==============================================
  1021. // Update firmware request
  1022. //==============================================
  1023. if(isUpdateRequest == TRUE )
  1024. {
  1025. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  1026. {
  1027. for(int gun_index=0;gun_index < (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY) ;gun_index++)
  1028. {
  1029. //check SystemStatus
  1030. /*************************DC*******************************/
  1031. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1032. {
  1033. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE)) //S_IDLE
  1034. {
  1035. IdleModeCnt = IdleModeCnt + 1;
  1036. }
  1037. }
  1038. for (int index = 0; index < CCS_QUANTITY; index++)
  1039. {
  1040. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE)) //S_IDLE
  1041. {
  1042. IdleModeCnt = IdleModeCnt + 1;
  1043. }
  1044. }
  1045. for (int index = 0; index < GB_QUANTITY; index++)
  1046. {
  1047. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 1)) //S_IDLE
  1048. {
  1049. IdleModeCnt = IdleModeCnt + 1;
  1050. }
  1051. }
  1052. }
  1053. if(IdleModeCnt == (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY ))
  1054. {
  1055. //sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Installing]);
  1056. isUpdateRequest = FALSE;
  1057. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1; // trigger firmware upgrade
  1058. }
  1059. }
  1060. else
  1061. {
  1062. /*************************AC*******************************/
  1063. for (int index = 0; index < AC_QUANTITY; index++)
  1064. {
  1065. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 1) //S_IDLE
  1066. {
  1067. IdleModeCnt = IdleModeCnt + 1;
  1068. }
  1069. }
  1070. if(IdleModeCnt == AC_QUANTITY)
  1071. {
  1072. //sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Installing]);
  1073. isUpdateRequest = FALSE;
  1074. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1; // trigger firmware upgrade
  1075. }
  1076. }
  1077. }
  1078. //DEBUG_INFO("\n gunTotalNumber=%d\n",gunTotalNumber);
  1079. for(int gun_index=0;gun_index < gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY )*/ ;gun_index++)
  1080. {
  1081. //===============================
  1082. // CSU Trigger Reset Conf
  1083. //===============================
  1084. if((server_sign == TRUE) &&(ShmOCPP16Data->MsMsg.bits.ResetConf == 1))
  1085. {
  1086. sendResetConfirmation((char *)ShmOCPP16Data->Reset.guid, (char *)ShmOCPP16Data->Reset.ResponseStatus);
  1087. if(strcmp((const char *)ShmOCPP16Data->Reset.Type, "Soft") == 0)
  1088. {
  1089. server_sign = FALSE;
  1090. }
  1091. }
  1092. //===============================
  1093. // CSU Trigger Authorize Request
  1094. //===============================
  1095. if((server_sign == TRUE) && (ShmOCPP16Data->SpMsg.bits.AuthorizeReq == 1)&&(authorizeRetryTimes < 3)/*authenrequest == FALSE*/)
  1096. {
  1097. if(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "TRUE") == 0)// [If AuthorizeRemoteTxRequests = true
  1098. {
  1099. sendAuthorizeRequest(0);
  1100. authorizeRetryTimes = authorizeRetryTimes + 1;
  1101. // authenrequest = TRUE
  1102. if(authorizeRetryTimes < 3)
  1103. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  1104. }
  1105. }
  1106. else if((server_sign == TRUE) && (ShmOCPP16Data->SpMsg.bits.AuthorizeReq == 1)&&(authorizeRetryTimes >= 3))
  1107. {
  1108. authorizeRetryTimes = 0;
  1109. ShmOCPP16Data->OcppConnStatus = 0; // ocpp offline
  1110. server_sign = FALSE;
  1111. }
  1112. //==============================================
  1113. // Charger start transaction
  1114. //==============================================
  1115. if((server_sign == TRUE) && (ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq == 1))
  1116. {
  1117. sendStartTransactionRequest(gun_index);
  1118. ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq =0;
  1119. clientTime.StartTransaction = time((time_t*)NULL);
  1120. clientTime.MeterValues[gun_index] = time((time_t*)NULL);
  1121. }
  1122. //==============================================
  1123. // Charger stop transaction
  1124. //==============================================
  1125. if((server_sign == TRUE) && ((ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq == 1)))
  1126. {
  1127. sendStopTransactionRequest(gun_index);
  1128. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq =0;
  1129. clientTime.StopTransaction = time((time_t*)NULL);
  1130. }
  1131. //DEBUG_INFO("ShmSysConfigAndInfo->SysInfo.AcChargingData[0].SystemStatus=%d\n",ShmSysConfigAndInfo->SysInfo.AcChargingData[0].SystemStatus);
  1132. //==============================================
  1133. // Charger status report
  1134. //==============================================
  1135. /* Check Mode Change */
  1136. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  1137. {
  1138. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1139. {
  1140. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  1141. {
  1142. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != ChademoPreviousSystemStatus[index]/*PRE_SYS_MODE[gun_index]*/ )
  1143. {
  1144. PRE_SYS_MODE[gun_index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus;
  1145. ChademoPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus;
  1146. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  1147. statusModeChage[gun_index] = TRUE;
  1148. }
  1149. }
  1150. }
  1151. for (int index = 0; index < CCS_QUANTITY; index++)
  1152. {
  1153. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  1154. {
  1155. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != CcsPreviousSystemStatus[index]/*PRE_SYS_MODE[gun_index]*/ )
  1156. {
  1157. PRE_SYS_MODE[gun_index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus;
  1158. CcsPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus;
  1159. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  1160. statusModeChage[gun_index] = TRUE;
  1161. }
  1162. }
  1163. }
  1164. for (int index = 0; index < GB_QUANTITY; index++)
  1165. {
  1166. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)/*&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '4')*/)
  1167. {
  1168. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != GbPreviousSystemStatus[index]/*PRE_SYS_MODE[gun_index]*/ )
  1169. {
  1170. PRE_SYS_MODE[gun_index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus;
  1171. GbPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus;
  1172. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  1173. statusModeChage[gun_index] = TRUE;
  1174. }
  1175. }
  1176. }
  1177. }
  1178. else //AC
  1179. {
  1180. for (int index = 0; index < AC_QUANTITY; index++)
  1181. {
  1182. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  1183. {
  1184. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != AcPreviousSystemStatus[index]/*PRE_SYS_MODE[gun_index]*/ )
  1185. {
  1186. PRE_SYS_MODE[gun_index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus;
  1187. AcPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus;
  1188. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  1189. statusModeChage[gun_index] = TRUE;
  1190. }
  1191. }
  1192. }// END OF FOR
  1193. }// END OF ELSE
  1194. if(((SystemInitial != 0)&& (server_sign == TRUE))||
  1195. ((server_sign == TRUE) && ((statusModeChage[gun_index] == TRUE) ||
  1196. ((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > (server_cycle_Status + (GunStatusInterval*gun_index)))
  1197. || ((cpinitateMsg.bits[gun_index].StatusNotificationReq == 1)&&((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > 30)))))
  1198. {
  1199. if(SystemInitial != 0)
  1200. SystemInitial = SystemInitial -1;
  1201. //GunStatusInterval= GunStatusInterval* gun_index;
  1202. sendStatusNotificationRequest(gun_index);
  1203. clientTime.StatusNotification[gun_index] = time((time_t*)NULL);
  1204. //cpinitateMsg.bits[gun_index].StatusNotificationReq = 0;
  1205. statusModeChage[gun_index] = FALSE;
  1206. //sleep(30); // sleep for 30 seconds
  1207. }
  1208. //==============================================
  1209. // Meter report
  1210. //==============================================
  1211. if((server_sign == TRUE) && ((time((time_t*)NULL) - clientTime.MeterValues[gun_index])> (atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData)- 1 ) ) )
  1212. {
  1213. //check Transaction active
  1214. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  1215. {
  1216. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1217. {
  1218. // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  1219. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING))
  1220. {
  1221. meterValueSend[gun_index] =1;
  1222. }
  1223. if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // complete
  1224. {
  1225. sprintf(filenmae,"../Storage/OCPP/TxProfile_%d.json",(gun_index+1));
  1226. if((access(filenmae,F_OK))!=-1)
  1227. {
  1228. DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n");
  1229. sprintf(str,"rm -f %s",filenmae);
  1230. system(str);
  1231. }
  1232. }
  1233. }// End for CHAdeMO
  1234. for (int index = 0; index < CCS_QUANTITY; index++)
  1235. {
  1236. // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  1237. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING))
  1238. {
  1239. meterValueSend[gun_index] =1;
  1240. }
  1241. if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // complete
  1242. {
  1243. sprintf(filenmae,"../Storage/OCPP/TxProfile_%d.json",(gun_index+1));
  1244. if((access(filenmae,F_OK))!=-1)
  1245. {
  1246. DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n");
  1247. sprintf(str,"rm -f %s",filenmae);
  1248. system(str);
  1249. }
  1250. }
  1251. } // End for CCS
  1252. for (int index = 0; index < GB_QUANTITY; index++)
  1253. {
  1254. // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  1255. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING))
  1256. {
  1257. meterValueSend[gun_index] =1;
  1258. }
  1259. if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // complete
  1260. {
  1261. sprintf(filenmae,"../Storage/OCPP/TxProfile_%d.json",(gun_index+1));
  1262. if((access(filenmae,F_OK))!=-1)
  1263. {
  1264. DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n");
  1265. sprintf(str,"rm -f %s",filenmae);
  1266. system(str);
  1267. }
  1268. }
  1269. }// End for GB
  1270. }
  1271. else
  1272. {
  1273. for (int index = 0; index < AC_QUANTITY; index++)
  1274. {
  1275. // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  1276. if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING))
  1277. {
  1278. meterValueSend[gun_index] =1;
  1279. }
  1280. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // complete
  1281. {
  1282. sprintf(filenmae,"../Storage/OCPP/TxProfile_%d.json",(gun_index+1));
  1283. if((access(filenmae,F_OK))!=-1)
  1284. {
  1285. DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n");
  1286. sprintf(str,"rm -f %s",filenmae);
  1287. system(str);
  1288. }
  1289. }
  1290. }//End for AC
  1291. }//END OF ELSE
  1292. // sleep(1);
  1293. clientTime.MeterValues[gun_index] = time((time_t*)NULL);
  1294. if(meterValueSend[gun_index] == 1)
  1295. sendMeterValuesRequest(gun_index);
  1296. }
  1297. //==============================================
  1298. // Check Connector reserved
  1299. //==============================================
  1300. //===============================
  1301. // Check if Reserve is expired
  1302. //===============================
  1303. if((server_sign == TRUE) && (ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate[0] != 0) )
  1304. {
  1305. double diff_t;
  1306. struct tm tp;
  1307. // current time
  1308. time_t t = time(NULL);
  1309. // sprintf((char *)ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate, "%s", "2018-09-20T02:56:54.973Z");
  1310. strptime((char *)ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate, "%Y-%m-%dT%H:%M:%S", &tp);
  1311. tp.tm_isdst = -1;
  1312. time_t utc = mktime(&tp);
  1313. diff_t = difftime(utc, t);
  1314. //DEBUG_INFO("diff_t=%f\n",diff_t);
  1315. if(diff_t <= 0)
  1316. {
  1317. DEBUG_INFO("reserve expired !!! \n");
  1318. memset(ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate,0,sizeof(ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate));
  1319. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1320. }
  1321. else if((ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionConf == 1) &&
  1322. (ShmOCPP16Data->StartTransaction[gun_index].ReservationId == ShmOCPP16Data->ReserveNow[gun_index].ReservationId)&&
  1323. (strcmp((const char *)ShmOCPP16Data->StartTransaction[gun_index].IdTag,(const char *)ShmOCPP16Data->ReserveNow[gun_index].IdTag) ==0))
  1324. {
  1325. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1326. }
  1327. else
  1328. {
  1329. //check Transaction active
  1330. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  1331. {
  1332. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1333. {
  1334. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  1335. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index) &&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId !=0))
  1336. {
  1337. //if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '7') || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9') )
  1338. if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT) ) // S_ALARM, S_FAULT
  1339. {
  1340. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1341. }
  1342. }
  1343. }
  1344. for (int index = 0; index < CCS_QUANTITY; index++)
  1345. {
  1346. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  1347. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId !=0))
  1348. {
  1349. //if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '7') || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '9') )
  1350. if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_FAULT) ) // S_ALARM, S_FAULT
  1351. {
  1352. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1353. }
  1354. }
  1355. }
  1356. for (int index = 0; index < GB_QUANTITY; index++)
  1357. {
  1358. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  1359. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId !=0) )
  1360. {
  1361. //if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '7') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '9') )
  1362. if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_FAULT) ) // S_ALARM, S_FAULT
  1363. {
  1364. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1365. }
  1366. }
  1367. }
  1368. }
  1369. else //AC
  1370. {
  1371. for (int index = 0; index < AC_QUANTITY; index++)
  1372. {
  1373. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  1374. if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index) &&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId !=0))
  1375. {
  1376. //if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '7') || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9') )
  1377. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT) ) // S_ALARM, S_FAULT
  1378. {
  1379. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1380. }
  1381. }
  1382. }
  1383. }// END OF ELSE
  1384. }// END OF check Transaction active
  1385. }//END OF Check if Reserve is expired
  1386. //==========================================
  1387. // csu trigger FirmwareStatusNotificationReq
  1388. //==========================================
  1389. if((server_sign == TRUE) && (ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq == 1))
  1390. {
  1391. sendFirmwareStatusNotificationRequest((char *)ShmOCPP16Data->FirmwareStatusNotification.Status);
  1392. }
  1393. //==========================================
  1394. // csu trigger CancelReservationConf
  1395. //==========================================
  1396. if((server_sign == TRUE) && (ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationConf == 1))
  1397. {
  1398. //sendCancelReservationConfirmation(uuid, comfirmstr);
  1399. sendCancelReservationConfirmation((char *)ShmOCPP16Data->CancelReservation[gun_index].guid,(char *)ShmOCPP16Data->CancelReservation[gun_index].ResponseStatus);
  1400. }
  1401. //==========================================
  1402. // csu trigger ChangeAvailabilityConf
  1403. //==========================================
  1404. if((server_sign == TRUE) && (ShmOCPP16Data->CsMsg.bits[gun_index].ChangeAvailabilityConf == 1))
  1405. {
  1406. //sendChangeAvailabilityConfirmation(,(char *)ShmOCPP16Data->ChangeAvailability[gun_index].ResponseStatus);
  1407. }
  1408. //==========================================
  1409. // csu trigger UnlockConnectorConf
  1410. //==========================================
  1411. if((server_sign == TRUE) && (ShmOCPP16Data->CsMsg.bits[gun_index].UnlockConnectorConf == 1))
  1412. {
  1413. sendUnlockConnectorConfirmation((char *)ShmOCPP16Data->UnlockConnector[gun_index].guid, (char *)ShmOCPP16Data->UnlockConnector[gun_index].ResponseStatus);
  1414. ShmOCPP16Data->CsMsg.bits[gun_index].UnlockConnectorConf = 0;
  1415. }
  1416. //==========================================
  1417. // csu trigger ReserveNowConf
  1418. //==========================================
  1419. if((server_sign == TRUE) &&(ShmOCPP16Data->CsMsg.bits[gun_index].ReserveNowConf == 1))
  1420. {
  1421. sendReserveNowTransactionConfirmation((char *)ShmOCPP16Data->ReserveNow[gun_index].guid, (char *)ShmOCPP16Data->ReserveNow[gun_index].ResponseStatus);
  1422. ShmOCPP16Data->CsMsg.bits[gun_index].ReserveNowConf = 0;
  1423. }
  1424. //==========================================
  1425. // csu trigger DataTransferReq
  1426. //==========================================
  1427. if((server_sign == TRUE) &&(ShmOCPP16Data->CsMsg.bits[gun_index].DataTransferReq == 1))
  1428. {
  1429. sendDataTransferRequest(gun_index);
  1430. ShmOCPP16Data->CsMsg.bits[gun_index].DataTransferReq = 0;
  1431. }
  1432. }
  1433. }
  1434. //==========================================
  1435. // send request routine
  1436. //==========================================
  1437. int sendAuthorizeRequest(int gun_index)
  1438. {
  1439. mtrace();
  1440. int result = FAIL;
  1441. char message[100]={0};
  1442. char guid[37];
  1443. char tempdata[65]={0};
  1444. DEBUG_INFO("sendAuthorizeRequest \n");
  1445. //Local Authorize
  1446. if((strcmp((const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE") == 0)&&(ShmOCPP16Data->OcppConnStatus ==0))
  1447. {
  1448. OCPP_getIdTag((char *)ShmSysConfigAndInfo->SysConfig.UserId);
  1449. if((strcmp(idTagQuery.idTagstr,"") == 0) || (strcmp(idTagQuery.idTagstatus,"Accepted") != 0) )
  1450. {
  1451. DEBUG_INFO("Local Authorization Fail !!!!\n");
  1452. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate, "");
  1453. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId);
  1454. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, "Invalid");
  1455. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  1456. ShmOCPP16Data->SpMsg.bits.AuthorizeConf = 1; // inform csu
  1457. authorizeRetryTimes = 0;
  1458. return result;
  1459. }
  1460. else
  1461. {
  1462. DEBUG_INFO("Local Authorization Pass !!!!\n");
  1463. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate, idTagQuery.expiryDate);
  1464. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId);
  1465. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, idTagQuery.idTagstatus);
  1466. result = PASS;
  1467. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  1468. ShmOCPP16Data->SpMsg.bits.AuthorizeConf = 1; // inform csu
  1469. authorizeRetryTimes = 0;
  1470. return result;
  1471. }
  1472. }
  1473. //initailize struct Authorize
  1474. memset(&(ShmOCPP16Data->Authorize), 0 , sizeof(struct StructAuthorize));
  1475. //get data from shared memory
  1476. strcpy((char *)ShmOCPP16Data->Authorize.IdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId);
  1477. random_uuid(guid);
  1478. sprintf(message,"[ %d, \"%s\", \"Authorize\", { \"idTag\": \"%s\" } ]",MESSAGE_TYPE_CALL, guid, ShmOCPP16Data->Authorize.IdTag);
  1479. LWS_Send(message);
  1480. sprintf(tempdata, "Authorize,%d", gun_index);
  1481. if(hashmap_operation(0, guid, tempdata) == 1)
  1482. {
  1483. result = PASS;
  1484. DEBUG_ERROR("Authorize mapItem pass\n");
  1485. }
  1486. //#ifdef SystemLogMessage
  1487. //DEBUG_INFO(">>>>>Authorize request\n");
  1488. //DEBUG_INFO("Message: %s\n", SendBuffer);
  1489. //DEBUG_INFO("After push hash length: %d\n", hashmapForMessageLength()/*hashmap_length(hashMap)*/);
  1490. //#endif
  1491. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  1492. return result;
  1493. }
  1494. int sendBootNotificationRequest(void)
  1495. {
  1496. mtrace();
  1497. int result = FAIL;
  1498. char message[500]={0}, payload[700]={0};
  1499. char guid[37]={0};
  1500. char tempdata[65]={0};
  1501. int IsGunCharging = FALSE;
  1502. //check Transaction active
  1503. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  1504. {
  1505. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1506. {
  1507. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) //S_CHARGING
  1508. {
  1509. IsGunCharging = TRUE;
  1510. }
  1511. }
  1512. for (int index = 0; index < CCS_QUANTITY; index++)
  1513. {
  1514. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) //S_CHARGING
  1515. {
  1516. IsGunCharging = TRUE;
  1517. }
  1518. }
  1519. for (int index = 0; index < GB_QUANTITY; index++)
  1520. {
  1521. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) //S_CHARGING
  1522. {
  1523. IsGunCharging = TRUE;
  1524. }
  1525. }
  1526. }
  1527. else
  1528. {
  1529. for (int index = 0; index < AC_QUANTITY; index++)
  1530. {
  1531. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) //S_CHARGING
  1532. {
  1533. IsGunCharging = TRUE;
  1534. }
  1535. }
  1536. }
  1537. if(IsGunCharging == TRUE)
  1538. {
  1539. server_sign = TRUE;
  1540. return result;
  1541. }
  1542. // Fill BootNotification fields
  1543. strcpy((char *)ShmOCPP16Data->BootNotification.CbSN,(const char *)ShmOCPP16Data->ChargeBoxId);
  1544. strcpy((char *)ShmOCPP16Data->BootNotification.CpModel,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName);
  1545. strcpy((char *)ShmOCPP16Data->BootNotification.CpSN,(const char *)ShmSysConfigAndInfo->SysConfig.SerialNumber);
  1546. strcpy((char *)ShmOCPP16Data->BootNotification.CpVendor,(const char *)ShmSysConfigAndInfo->SysConfig.chargePointVendor);
  1547. sprintf(payload, "{ \"chargeBoxSerialNumber\": \"%s\", \"chargePointModel\": \"%s\", \"chargePointSerialNumber\": \"%s\", \"chargePointVendor\": \"%s\", \"firmwareVersion\": \"%s\", \"iccid\": \"%s\", \"imsi\": \"%s\", \"meterSerialNumber\": \"%s\", \"meterType\": \"%s\"} ",
  1548. ShmOCPP16Data->ChargeBoxId
  1549. ,ShmSysConfigAndInfo->SysConfig.ModelName
  1550. ,ShmSysConfigAndInfo->SysConfig.SerialNumber
  1551. ,ShmSysConfigAndInfo->SysConfig.chargePointVendor
  1552. ,ShmOCPP16Data->BootNotification.CpFwVersion
  1553. ,ShmOCPP16Data->BootNotification.CpIccid
  1554. ,ShmOCPP16Data->BootNotification.CpImsi
  1555. ,ShmOCPP16Data->BootNotification.CpMeterSerialNumber
  1556. ,ShmOCPP16Data->BootNotification.CpMeterType);
  1557. random_uuid(guid);
  1558. sprintf(message,"[ %d, \"%s\", \"%s\", %s ]",MESSAGE_TYPE_CALL, guid, "BootNotification", payload);
  1559. LWS_Send(message);
  1560. sprintf(tempdata, "BootNotification,0");
  1561. 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*/)
  1562. {
  1563. result = PASS;
  1564. }
  1565. memset(queuedata, 0, sizeof(queuedata));
  1566. strcpy(queuedata,message);
  1567. //#ifdef SystemLogMessage
  1568. //DEBUG_INFO(">>>>>BootNotification request\n");
  1569. //DEBUG_INFO("Message: %s\n", SendBuffer);
  1570. //#endif
  1571. return result;
  1572. }
  1573. int sendDataTransferRequest(int gun_index)
  1574. {
  1575. mtrace();
  1576. char message[1000]={0};
  1577. char guid[37]={0};
  1578. char tempdata[65]={0};
  1579. int result = FAIL;
  1580. //[2,"696e8a35-f394-45e3-a0c7-7098b86f38a6","DataTransfer",{"vendorId":"Phihong","messageId":"FeePerKWH","data":"1"}]
  1581. random_uuid(guid);
  1582. sprintf(message,"[%d,\"%s\",\"DataTransfer\",{\"vendorId\":\"%s\",\"messageId\":\"%s\",\"data\":\"%s\"}]",
  1583. MESSAGE_TYPE_CALL,
  1584. guid,
  1585. ShmOCPP16Data->DataTransfer[gun_index].VendorId,
  1586. ShmOCPP16Data->DataTransfer[gun_index].MessageId,
  1587. ShmOCPP16Data->DataTransfer[gun_index].Data);
  1588. LWS_Send(message);
  1589. sprintf(tempdata, "DataTransfer,%d", (gun_index + 1));
  1590. 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*/)
  1591. {
  1592. result = PASS;
  1593. DEBUG_ERROR("DataTransfer mapItem pass\n");
  1594. }
  1595. //#ifdef SystemLogMessage
  1596. //DEBUG_INFO(">>>>>DataTransfer request\n");
  1597. //DEBUG_INFO("Message: %s\n", SendBuffer);
  1598. //#endif
  1599. return result;
  1600. }
  1601. int sendDiagnosticsStatusNotificationRequest(char *status)
  1602. {
  1603. mtrace();
  1604. int result = FAIL;
  1605. char message[110]={0};
  1606. char guid[37]={0};
  1607. char tempdata[65]={0};
  1608. //[ 2, "9f7bced1-b8b1-40ec-b3bb-2e15630e3cdc", "DiagnosticsStatusNotification", { "status": "Idle" } ]
  1609. DEBUG_INFO("sendDiagnosticsStatusNotificationRequest \n");
  1610. sprintf((char *)ShmOCPP16Data->DiagnosticsStatusNotification.Status,"%s",(const char *)status);
  1611. random_uuid(guid);
  1612. sprintf(message,"[%d,\"%s\",\"DiagnosticsStatusNotification\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALL, guid,status);
  1613. LWS_Send(message);
  1614. sprintf(tempdata, "DiagnosticsStatusNotification,%d", 0);
  1615. if(hashmap_operation(0, guid, tempdata) == 1)
  1616. {
  1617. result = PASS;
  1618. //DEBUG_INFO("DiagnosticsStatusNotification mapItem pass\n");
  1619. }
  1620. //#ifdef SystemLogMessage
  1621. //DEBUG_INFO(">>>>>DiagnosticsStatusNotification request\n");
  1622. //DEBUG_INFO("Message: %s\n", SendBuffer);
  1623. //DEBUG_INFO("After push hash length: %d\n", hashmapForMessageLength()/*hashmap_length(hashMap)*/);
  1624. //#endif
  1625. ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 0;
  1626. ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationConf = 0;
  1627. //record status
  1628. if(strcmp(status,"Idle")==0)
  1629. {
  1630. DiagnosticsStatusNotificationStatus = 0;
  1631. }
  1632. else if(strcmp(status,"Uploaded")==0)
  1633. {
  1634. DiagnosticsStatusNotificationStatus = 1;
  1635. }
  1636. else if(strcmp(status,"UploadFailed")==0)
  1637. {
  1638. DiagnosticsStatusNotificationStatus = 2;
  1639. }
  1640. else if(strcmp(status,"Uploading")==0)
  1641. {
  1642. DiagnosticsStatusNotificationStatus = 3;
  1643. }
  1644. return result;
  1645. }
  1646. int sendFirmwareStatusNotificationRequest(char *status)
  1647. {
  1648. mtrace();
  1649. int result = FAIL;
  1650. char message[110]={0};
  1651. char guid[37]={0};
  1652. char tempdata[65]={0};
  1653. // [ 2, "eb841424-ae56-42b0-8c84-d5296018c33c", "FirmwareStatusNotification", { "status": "Downloaded" } ]
  1654. DEBUG_INFO("sendFirmwareStatusNotificationRequest \n");
  1655. sprintf((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s", (const char *)status);
  1656. random_uuid(guid);
  1657. sprintf(message,"[%d,\"%s\",\"FirmwareStatusNotification\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALL, guid, status);
  1658. LWS_Send(message);
  1659. sprintf(tempdata, "FirmwareStatusNotification,%d", 0);
  1660. 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*/)
  1661. {
  1662. result = PASS;
  1663. DEBUG_INFO("FirmwareStatusNotification mapItem pass\n");
  1664. }
  1665. //#ifdef SystemLogMessage
  1666. //DEBUG_INFO(">>>>>FirmwareStatusNotification request\n");
  1667. //DEBUG_INFO("Message: %s\n", SendBuffer);
  1668. //#endif
  1669. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 0;
  1670. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationConf = 0;
  1671. //record status
  1672. if(strcmp(status,"Downloaded")==0)
  1673. {
  1674. FirmwareStatusNotificationStatus = 0;
  1675. }
  1676. else if(strcmp(status,"DownloadFailed")==0)
  1677. {
  1678. FirmwareStatusNotificationStatus = 1;
  1679. }
  1680. else if(strcmp(status,"Downloading")==0)
  1681. {
  1682. FirmwareStatusNotificationStatus = 2;
  1683. }
  1684. else if(strcmp(status,"Idle")==0)
  1685. {
  1686. FirmwareStatusNotificationStatus = 3;
  1687. }
  1688. else if(strcmp(status,"InstallationFailed")==0)
  1689. {
  1690. FirmwareStatusNotificationStatus = 4;
  1691. }
  1692. else if(strcmp(status,"Installing")==0)
  1693. {
  1694. FirmwareStatusNotificationStatus = 5;
  1695. }
  1696. else if(strcmp(status,"Installed")==0)
  1697. {
  1698. FirmwareStatusNotificationStatus = 6;
  1699. }
  1700. return result;
  1701. }
  1702. int sendHeartbeatRequest(int gun_index)
  1703. {
  1704. mtrace();
  1705. int result = FAIL;
  1706. char message[80]={0};
  1707. char guid[37]={0};
  1708. char tempdata[65]={0};
  1709. random_uuid(guid);
  1710. sprintf(message, "[%d,\"%s\",\"Heartbeat\",{ }]"
  1711. , MESSAGE_TYPE_CALL
  1712. , guid );
  1713. LWS_Send(message);
  1714. sprintf(tempdata, "Heartbeat,%d", 0);
  1715. 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*/)
  1716. {
  1717. result = PASS;
  1718. //DEBUG_ERROR("Heartbeat mapItem pass\n");
  1719. }
  1720. //#ifdef SystemLogMessage
  1721. //DEBUG_INFO(">>>>>Heartbeat request\n");
  1722. //DEBUG_INFO("Message: %s\n", SendBuffer);
  1723. //#endif
  1724. return result;
  1725. }
  1726. int sendStartTransactionRequest(int gun_index)
  1727. {
  1728. mtrace();
  1729. int result = FAIL;
  1730. char message[250]={0};
  1731. char guid[37]={0};
  1732. struct timeval tmnow;
  1733. struct tm *tm;
  1734. char buf[30];//, usec_buf[6];
  1735. char tempdata[65]={0};
  1736. DEBUG_INFO("sendStartTransactionRequest...");
  1737. gettimeofday(&tmnow, NULL);
  1738. time_t t;
  1739. t = time(NULL);
  1740. /*UTC time and date*/
  1741. tm = gmtime(&t);
  1742. strftime(buf,30,"%Y-%m-%dT%H:%M:%SZ", tm);
  1743. #if 0 // remove temporally
  1744. strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
  1745. strcat(buf,".");
  1746. sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
  1747. strcat(buf,usec_buf);
  1748. #endif
  1749. //printf("Start Charging Time :%s",buf);
  1750. // set value
  1751. //if(ShmOCPP16Data->OcppConnStatus == 1 )
  1752. //{
  1753. //memset(&ShmOCPP16Data->StartTransaction[gun_index], 0, sizeof(ShmOCPP16Data->StartTransaction[gun_index])); // Clear StartTransaction Value
  1754. //}
  1755. ShmOCPP16Data->StartTransaction[gun_index].ConnectorId = gun_index +1 ; // gun start from 1~
  1756. strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].Timestamp, buf);
  1757. //strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].IdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId);
  1758. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  1759. {
  1760. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1761. {
  1762. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  1763. {
  1764. ShmOCPP16Data->StartTransaction[gun_index].MeterStart = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy;
  1765. ShmOCPP16Data->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId;
  1766. }
  1767. }
  1768. for (int index = 0; index < CCS_QUANTITY; index++)
  1769. {
  1770. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  1771. {
  1772. ShmOCPP16Data->StartTransaction[gun_index].MeterStart = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy;
  1773. ShmOCPP16Data->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId;
  1774. }
  1775. }
  1776. for (int index = 0; index < GB_QUANTITY; index++)
  1777. {
  1778. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  1779. {
  1780. ShmOCPP16Data->StartTransaction[gun_index].MeterStart = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy;
  1781. ShmOCPP16Data->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId;
  1782. }
  1783. }
  1784. }
  1785. else
  1786. {
  1787. for (int index = 0; index < AC_QUANTITY; index++)
  1788. {
  1789. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  1790. {
  1791. ShmOCPP16Data->StartTransaction[gun_index].MeterStart = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy;
  1792. ShmOCPP16Data->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId;
  1793. }
  1794. }
  1795. }//END OF ELSE
  1796. random_uuid(guid);
  1797. sprintf(message, "[%d,\"%s\",\"StartTransaction\",{\"connectorId\":%d,\"idTag\":\"%s\",\"meterStart\":%d,\"reservationId\":%d,\"timestamp\":\"%s\"}]"
  1798. , MESSAGE_TYPE_CALL
  1799. , guid
  1800. , ShmOCPP16Data->StartTransaction[gun_index].ConnectorId
  1801. , ShmOCPP16Data->StartTransaction[gun_index].IdTag
  1802. , ShmOCPP16Data->StartTransaction[gun_index].MeterStart
  1803. , ShmOCPP16Data->StartTransaction[gun_index].ReservationId
  1804. , ShmOCPP16Data->StartTransaction[gun_index].Timestamp );
  1805. LWS_Send(message);
  1806. sprintf(tempdata, "StartTransaction,%d", (gun_index));
  1807. 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*/)
  1808. {
  1809. result = PASS;
  1810. }
  1811. strcpy(queuedata, message);
  1812. queue_operation(4, guid, queuedata );//addq(guid, queuedata); ---> remove temporally
  1813. //#ifdef SystemLogMessage
  1814. //DEBUG_INFO(">>>>>StartTransaction request\n");
  1815. //DEBUG_INFO("Message: %s\n", SendBuffer);
  1816. //#endif
  1817. return result;
  1818. }
  1819. int sendStatusNotificationRequest(int gun_index)
  1820. {
  1821. mtrace();
  1822. int result = FAIL;
  1823. char message[600]={0};
  1824. char guid[37];
  1825. int currentStatus = 0;
  1826. struct timeval tmnow;
  1827. struct tm *tm;
  1828. char buf[30];//, usec_buf[6];
  1829. char tempdata[65]={0};
  1830. gettimeofday(&tmnow, NULL);
  1831. time_t t;
  1832. t = time(NULL);
  1833. /*UTC time and date*/
  1834. tm = gmtime(&t);
  1835. strftime(buf,30,"%Y-%m-%dT%H:%M:%SZ", tm);
  1836. #if 0 // remove temporally
  1837. strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
  1838. strcat(buf,".");
  1839. sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
  1840. strcat(buf,usec_buf);
  1841. #endif
  1842. printf("%s",buf);
  1843. ShmOCPP16Data->StatusNotification[gun_index].ConnectorId = (gun_index + 1);
  1844. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].ErrorCode, "NoError"); --- CSU Setting
  1845. // it's option
  1846. strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].Info, "");
  1847. /*
  1848. enum _SYSTEM_STATUS
  1849. {
  1850. S_BOOTING = 0,
  1851. S_IDLE, = 1
  1852. S_AUTHORIZING, =2
  1853. S_REASSIGN_CHECK, =3
  1854. S_REASSIGN, =4
  1855. S_PRECHARGE, =5
  1856. S_PREPARING_FOR_EV, =6
  1857. S_PREPARING_FOR_EVSE, =7
  1858. S_CHARGING, =8
  1859. S_TERMINATING, =9
  1860. S_COMPLETE, =10
  1861. S_ALARM, =11
  1862. S_FAULT =12
  1863. }
  1864. */
  1865. //check Transaction active
  1866. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  1867. {
  1868. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1869. {
  1870. //printf("gun_index=%d\n",gun_index);
  1871. //printf("ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus=%d\n",ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus);
  1872. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE)) //S_IDLE
  1873. {
  1874. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Available");
  1875. currentStatus = 0; //OCPP Status
  1876. }
  1877. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_PREPARING)) //S_PRECHARGE
  1878. {
  1879. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Preparing");
  1880. currentStatus = 1; //OCPP Status
  1881. }
  1882. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING)) //S_CHARGING
  1883. {
  1884. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging");
  1885. currentStatus = 2; //OCPP Status
  1886. }
  1887. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) //S_COMPLETE
  1888. {
  1889. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Finishing");
  1890. currentStatus = 5; //OCPP Status
  1891. }
  1892. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_ALARM)) //S_ALARM ---> SuspendedEV
  1893. {
  1894. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1895. currentStatus = 4; //OCPP Status
  1896. }
  1897. 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
  1898. {
  1899. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1900. currentStatus = 7; //OCPP Status: Unavailable
  1901. }
  1902. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT)) //S_FAULT ---> Faulted
  1903. {
  1904. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1905. currentStatus = 8; //OCPP Status: Faulted
  1906. }
  1907. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_RESERVATION)) // ---> Reserved
  1908. {
  1909. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1910. currentStatus = 6; //OCPP Status: Reserved
  1911. }
  1912. }//end of for CHAdeMO_QUANTITY
  1913. for (int index = 0; index < CCS_QUANTITY; index++)
  1914. {
  1915. //printf("ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].SystemStatus=%d\n",ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].SystemStatus);
  1916. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE)) //S_IDLE
  1917. {
  1918. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Available");
  1919. currentStatus = 0; //OCPP Status
  1920. }
  1921. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_PREPARING)) //S_PRECHARGE
  1922. {
  1923. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Preparing");
  1924. currentStatus = 1; //OCPP Status
  1925. }
  1926. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING)) //S_CHARGING
  1927. {
  1928. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging");
  1929. currentStatus = 2; //OCPP Status
  1930. }
  1931. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) //S_COMPLETE
  1932. {
  1933. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Finishing");
  1934. currentStatus = 5; //OCPP Status
  1935. }
  1936. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_ALARM)) //S_ALARM ---> SuspendedEV
  1937. {
  1938. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1939. currentStatus = 4; //OCPP Status
  1940. }
  1941. 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
  1942. {
  1943. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1944. currentStatus = 7; //OCPP Status
  1945. }
  1946. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_FAULT)) //S_FAULT ---> Faulted
  1947. {
  1948. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1949. currentStatus = 8; //OCPP Status
  1950. }
  1951. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_RESERVATION)) // ---> Reserved
  1952. {
  1953. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1954. currentStatus = 6; //OCPP Status
  1955. }
  1956. }
  1957. for (int index = 0; index < GB_QUANTITY; index++)
  1958. {
  1959. //printf("ShmSysConfigAndInfo->SysInfo.GbChargingData[0].SystemStatus=%d\n",ShmSysConfigAndInfo->SysInfo.GbChargingData[0].SystemStatus);
  1960. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index) &&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_IDLE)) //S_IDLE
  1961. {
  1962. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Available");
  1963. currentStatus = 0; //OCPP Status
  1964. }
  1965. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index) &&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_PREPARING)) //S_PRECHARGE
  1966. {
  1967. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Preparing");
  1968. currentStatus = 1; //OCPP Status
  1969. }
  1970. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING)) //S_CHARGING
  1971. {
  1972. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging");
  1973. currentStatus = 2; //OCPP Status
  1974. }
  1975. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) //S_COMPLETE
  1976. {
  1977. // strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Finishing");
  1978. currentStatus = 5; //OCPP Status
  1979. }
  1980. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_ALARM)) //S_ALARM ---> SuspendedEV
  1981. {
  1982. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1983. currentStatus = 4; //OCPP Status
  1984. }
  1985. 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
  1986. {
  1987. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1988. currentStatus = 7; //OCPP Status: Unavailable
  1989. }
  1990. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_FAULT)) //S_FAULT ---> Faulted
  1991. {
  1992. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1993. currentStatus = 8; //OCPP Status: Faulted
  1994. }
  1995. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_RESERVATION)) // ---> Reserved
  1996. {
  1997. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1998. currentStatus = 6; //OCPP Status: Faulted
  1999. }
  2000. }
  2001. }
  2002. else
  2003. {
  2004. for (int index = 0; index < AC_QUANTITY; index++)
  2005. {
  2006. //printf("gun_index=%d\n",gun_index);
  2007. //printf("ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus=%d\n",ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus);
  2008. if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE)) //S_IDLE
  2009. {
  2010. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Available");
  2011. currentStatus = 0; //OCPP Status
  2012. }
  2013. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING)) //S_PRECHARGE
  2014. {
  2015. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Preparing");
  2016. currentStatus = 1; //OCPP Status
  2017. }
  2018. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING)) //S_CHARGING
  2019. {
  2020. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging");
  2021. currentStatus = 2; //OCPP Status
  2022. }
  2023. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) //S_COMPLETE
  2024. {
  2025. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Finishing");
  2026. currentStatus = 5; //OCPP Status
  2027. }
  2028. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_ALARM)) //S_ALARM ---> SuspendedEV
  2029. {
  2030. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  2031. currentStatus = 4; //OCPP Status
  2032. }
  2033. 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
  2034. {
  2035. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  2036. currentStatus = 7; //OCPP Status: Unavailable
  2037. }
  2038. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT)) //S_FAULT ---> Faulted
  2039. {
  2040. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  2041. currentStatus = 8; //OCPP Status: Faulted
  2042. }
  2043. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_RESERVATION)) // ---> Reserved
  2044. {
  2045. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  2046. currentStatus = 6; //OCPP Status: Reserved
  2047. }
  2048. }//end of for AC_QUANTITY
  2049. }//END OF ELSE
  2050. //it's option
  2051. strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].Timestamp, buf);
  2052. strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].VendorId, "PhihongTechnology");
  2053. strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode, "000000");
  2054. strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[currentStatus]);
  2055. random_uuid(guid);
  2056. sprintf(message, "[%d,\"%s\",\"StatusNotification\",{\"connectorId\":%d,\"errorCode\":\"%s\",\"info\":\"%s\",\"status\":\"%s\",\"timestamp\":\"%s\",\"vendorId\":\"%s\",\"vendorErrorCode\":\"%s\"}]"
  2057. , MESSAGE_TYPE_CALL
  2058. , guid
  2059. , ShmOCPP16Data->StatusNotification[gun_index].ConnectorId
  2060. , ShmOCPP16Data->StatusNotification[gun_index].ErrorCode
  2061. , ShmOCPP16Data->StatusNotification[gun_index].Info
  2062. , ShmOCPP16Data->StatusNotification[gun_index].Status
  2063. , ShmOCPP16Data->StatusNotification[gun_index].Timestamp
  2064. , ShmOCPP16Data->StatusNotification[gun_index].VendorId
  2065. , ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode);
  2066. LWS_Send(message);
  2067. sprintf(tempdata, "StatusNotification,%d", (gun_index));
  2068. 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*/)
  2069. {
  2070. //DEBUG_ERROR("statusNotification mapitem pass");
  2071. result = PASS;
  2072. }
  2073. //#ifdef SystemLogMessage
  2074. //DEBUG_INFO(">>>>>StatusNotification request\n");
  2075. //DEBUG_INFO("Message: %s\n", SendBuffer);
  2076. //#endif
  2077. return result;
  2078. }
  2079. int sendStopTransactionRequest(int gun_index)
  2080. {
  2081. mtrace();
  2082. int result = FAIL;
  2083. char message[1500]={0};
  2084. char guid[37]={0};
  2085. char tempdata[65]={0};
  2086. int idx_sample=0;
  2087. DEBUG_ERROR("sendStopTransactionRequest \n");
  2088. //memset(&(ShmOCPP16Data->StopTransaction[gun_index].TransactionData), 0, sizeof(struct StructMeterValue));
  2089. //strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].IdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId/*ShmOCPP16Data->Authorize.IdTag*/);
  2090. //ENERGY_ACTIVE_IMPORT_REGISTER
  2091. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  2092. {
  2093. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2094. {
  2095. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2096. {
  2097. ShmOCPP16Data->StopTransaction[gun_index].MeterStop = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy;
  2098. //Check Status
  2099. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_ALARM) // S_ALARM (Temporally for SuspendedEV )
  2100. {
  2101. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[EVDisconnected]); //
  2102. }
  2103. //sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%s" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );
  2104. }
  2105. }// END OF CHAdeMO_QUANTITY
  2106. for (int index = 0; index < CCS_QUANTITY; index++)
  2107. {
  2108. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2109. {
  2110. //for test
  2111. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy = 100.0;
  2112. ShmOCPP16Data->StopTransaction[gun_index].MeterStop = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy;
  2113. //Check Status
  2114. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_ALARM) // S_ALARM (Temporally for SuspendedEV )
  2115. {
  2116. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[EVDisconnected]); //
  2117. }
  2118. else
  2119. {
  2120. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[Local]); //
  2121. }
  2122. //sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%s" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy );
  2123. }
  2124. }// END OF CCS_QUANTITY
  2125. for (int index = 0; index < GB_QUANTITY; index++)
  2126. {
  2127. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2128. {
  2129. // for test
  2130. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy = 100.0;
  2131. ShmOCPP16Data->StopTransaction[gun_index].MeterStop = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy;
  2132. //Check Status
  2133. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_ALARM) // S_ALARM (Temporally for SuspendedEV )
  2134. {
  2135. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[EVDisconnected]); //
  2136. }
  2137. else
  2138. {
  2139. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[Local]); //
  2140. }
  2141. //sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy);
  2142. }
  2143. }// END OF GB_QUANTITY
  2144. }
  2145. else
  2146. {
  2147. for (int index = 0; index < AC_QUANTITY; index++)
  2148. {
  2149. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2150. {
  2151. ShmOCPP16Data->StopTransaction[gun_index].MeterStop = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy;
  2152. //Check Status
  2153. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_ALARM) // S_ALARM (Temporally for SuspendedEV )
  2154. {
  2155. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[EVDisconnected]); //
  2156. }
  2157. //sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%s" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );
  2158. }
  2159. }// END OF AC_QUANTITY
  2160. }//END OF ELSE
  2161. //Stop Transaction Time
  2162. struct timeval tmnow;
  2163. struct tm *tm;
  2164. char buf[30];//, usec_buf[6];
  2165. gettimeofday(&tmnow, NULL);
  2166. time_t t;
  2167. t = time(NULL);
  2168. /*UTC time and date*/
  2169. tm = gmtime(&t);
  2170. strftime(buf,30,"%Y-%m-%dT%H:%M:%SZ", tm);
  2171. #if 0 // remove temporally
  2172. strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
  2173. strcat(buf,".");
  2174. sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
  2175. strcat(buf,usec_buf);
  2176. #endif
  2177. printf("StopTransaction Time %s\n",buf);
  2178. //strcpy(ShmOCPP16Data->StopTransaction[gun_index].Timestamp,"2019-05-04T18:15:33Z");
  2179. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].Timestamp,buf);
  2180. ShmOCPP16Data->StopTransaction[gun_index].TransactionId = ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId;
  2181. random_uuid(guid);
  2182. sprintf(message,"[%d,\"%s\",\"StopTransaction\",{\"idTag\":\"%s\",\"meterStop\":%d,\"timestamp\":\"%s\",\"transactionId\":%d,\"reason\":\"%s\",\"transactionData\":"
  2183. ,MESSAGE_TYPE_CALL
  2184. ,guid
  2185. ,ShmOCPP16Data->StopTransaction[gun_index].IdTag
  2186. ,ShmOCPP16Data->StopTransaction[gun_index].MeterStop
  2187. ,ShmOCPP16Data->StopTransaction[gun_index].Timestamp
  2188. ,ShmOCPP16Data->StopTransaction[gun_index].TransactionId
  2189. ,ShmOCPP16Data->StopTransaction[gun_index].StopReason);
  2190. /***********************************transactionData******************************************************/
  2191. //ShmOCPP16Data->StopTransaction[gun_index].TransactionData = (struct StructMeterValue *)malloc(sizeof(struct StructMeterValue));
  2192. //ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue = (struct StructSampledValue *)malloc(sizeof(struct StructSampledValue)*10);
  2193. for(int idx_transaction=0;idx_transaction<1;idx_transaction++)
  2194. {
  2195. //transactionData = json_object_new_object();
  2196. //json_object_object_add(transactionData, "timestamp", json_object_new_string("2019-05-04T18:15:33Z"));
  2197. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].TimeStamp, buf/*"2019-05-04T18:15:33Z"*/);
  2198. sprintf(message + strlen(message), "[{\"timestamp\":\"%s\",\"sampledValue\":[", (const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].TimeStamp);
  2199. //=================================
  2200. // Transaction_Begin
  2201. //=================================
  2202. // Energy.Active.Export.Interval
  2203. idx_sample=0;
  2204. 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
  2205. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,ReadingContextStr[ReadingContext_Transaction_Begin]);
  2206. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,ValueFormatStr[Raw]);
  2207. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,MeasurandStr[Energy_Active_Export_Interval/*Energy_Reactive_Export_Register*/]);
  2208. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,PhaseStr[L1_N]);
  2209. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,LocationStr[Location_Outlet]);
  2210. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_Wh/*UnitOfMeasure_kWh*/]);
  2211. sprintf(message + strlen(message), "{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\" }",
  2212. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value,
  2213. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,
  2214. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,
  2215. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,
  2216. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,
  2217. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,
  2218. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit
  2219. );
  2220. //=================================
  2221. // Transaction_End
  2222. //=================================
  2223. //Current.Export
  2224. idx_sample=1;
  2225. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  2226. {
  2227. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2228. {
  2229. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2230. {
  2231. 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
  2232. }
  2233. }
  2234. for (int index = 0; index < CCS_QUANTITY; index++)
  2235. {
  2236. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2237. {
  2238. 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
  2239. }
  2240. }
  2241. for (int index = 0; index < GB_QUANTITY; index++)
  2242. {
  2243. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2244. {
  2245. 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
  2246. }
  2247. }
  2248. }
  2249. else
  2250. {
  2251. for (int index = 0; index < AC_QUANTITY; index++)
  2252. {
  2253. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2254. {
  2255. 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
  2256. }
  2257. }
  2258. }// END FOR AC ELSE
  2259. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,ReadingContextStr[ReadingContext_Transaction_End]);
  2260. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,ValueFormatStr[Raw]);
  2261. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,MeasurandStr[Current_Export/*Energy_Reactive_Export_Register*/]);
  2262. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,PhaseStr[L1_N]);
  2263. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,LocationStr[Location_Outlet]);
  2264. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_A/*UnitOfMeasure_kWh*/]);
  2265. sprintf(message + strlen(message), ",{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\" }",
  2266. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value,
  2267. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,
  2268. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,
  2269. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,
  2270. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,
  2271. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,
  2272. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit
  2273. );
  2274. //Energy.Active.Export.Interval
  2275. idx_sample=2;
  2276. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  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].PresentChargedEnergy*1000 );// PresentChargedEnergy is 0~6553.5 kWh
  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].PresentChargedEnergy*1000 );// PresentChargedEnergy is 0~6553.5 kWh
  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].PresentChargedEnergy*1000 );// PresentChargedEnergy is 0~6553.5 kWh
  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].PresentChargedEnergy*1000 );// PresentChargedEnergy is 0~6553.5 kWh
  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[Energy_Active_Export_Interval/*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_Wh/*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. //Power.Active.Export
  2326. idx_sample=3;
  2327. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  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].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW
  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].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW
  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].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW
  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].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW
  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[Power_Active_Export/*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_kW/*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. //Voltage
  2377. idx_sample=4;
  2378. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  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].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt
  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].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt
  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].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt
  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].PresentChargingCurrent );//AcChargingVoltage is 0~6553.5 volt for AC EVSE
  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. //SoC
  2428. idx_sample=5;
  2429. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  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, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatterySoc );// 0~100%
  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, "%d" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatterySoc );// 0~100%
  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, "%d" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatterySoc );// 0~100%
  2450. }
  2451. }
  2452. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,ReadingContextStr[ReadingContext_Transaction_End]);
  2453. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,ValueFormatStr[Raw]);
  2454. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,MeasurandStr[SoC/*Energy_Reactive_Export_Register*/]);
  2455. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,PhaseStr[L1_N]);
  2456. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,LocationStr[Location_Outlet]);
  2457. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_Percent/*UnitOfMeasure_kWh*/]);
  2458. sprintf(message + strlen(message), ",{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\" }",
  2459. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value,
  2460. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,
  2461. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,
  2462. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,
  2463. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,
  2464. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,
  2465. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit
  2466. );
  2467. } // END FOR DC CASE
  2468. sprintf(message + strlen(message)," ] } ] } ]");
  2469. //free(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue);
  2470. //free(ShmOCPP16Data->StopTransaction[gun_index].TransactionData);
  2471. }
  2472. LWS_Send(message);
  2473. sprintf(tempdata, "StopTransaction,%d", (gun_index));
  2474. if(hashmap_operation(0, guid, tempdata) == 1)
  2475. {
  2476. result = PASS;
  2477. DEBUG_INFO("StopTransaction mapitem pass\n");
  2478. }
  2479. strcpy(queuedata, message);
  2480. queue_operation(4, guid, queuedata );//addq(guid, queuedata); ---> remove temporally
  2481. //#ifdef SystemLogMessage
  2482. //DEBUG_INFO(">>>>>StopTransaction request\n");
  2483. //DEBUG_INFO("Message: %s\n", SendBuffer);
  2484. //#endif
  2485. //for test
  2486. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq = 0;
  2487. return result;
  2488. }
  2489. int sendMeterValuesRequest(int gun_index)
  2490. {
  2491. mtrace();
  2492. int result = FAIL;
  2493. char message[1500]={0};
  2494. char guid[37]={0};
  2495. int idx_sample=0;
  2496. //int length = 0;
  2497. char tempdata[65]={0};
  2498. DEBUG_ERROR("sendMeterValuesRequest ...\n");
  2499. DEBUG_ERROR("gun_index =%d\n",gun_index);
  2500. if((ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId == 0)&&(ShmOCPP16Data->CsMsg.bits[gun_index].TriggerMessageReq == 0)) // no TransactionId
  2501. {
  2502. DEBUG_INFO("NOT SENT METER Vlaue\n");
  2503. DEBUG_ERROR("ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId =%d\n",ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId);
  2504. DEBUG_ERROR("ShmOCPP16Data->CsMsg.bits[gun_index].TriggerMessageReq =%d\n",ShmOCPP16Data->CsMsg.bits[gun_index].TriggerMessageReq);
  2505. return result;
  2506. }
  2507. if(ShmOCPP16Data->CsMsg.bits[gun_index].TriggerMessageReq == 1)
  2508. {
  2509. ShmOCPP16Data->CsMsg.bits[gun_index].TriggerMessageReq = 0;
  2510. }
  2511. //set value
  2512. ShmOCPP16Data->MeterValues[gun_index].ConnectorId = gun_index + 1; // gun start from 1~
  2513. ShmOCPP16Data->MeterValues[gun_index].TransactionId = ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId;
  2514. random_uuid(guid);
  2515. sprintf(message,"[%d,\"%s\",\"MeterValues\",{\"connectorId\":%d,\"transactionId\":%d,\"meterValue\":"
  2516. ,MESSAGE_TYPE_CALL
  2517. ,guid
  2518. ,ShmOCPP16Data->MeterValues[gun_index].ConnectorId
  2519. ,ShmOCPP16Data->MeterValues[gun_index].TransactionId);
  2520. //,comfirmpayload);
  2521. for(int idx_transaction=0;idx_transaction<1;idx_transaction++)
  2522. {
  2523. //allocate memory space
  2524. //ShmOCPP16Data->MeterValues[gun_index].MeterValue = (struct StructMeterValue *)malloc(sizeof(struct StructMeterValue));
  2525. //UTC Date time
  2526. struct timeval tmnow;
  2527. struct tm *tm;
  2528. char buf[30];//, usec_buf[6];
  2529. gettimeofday(&tmnow, NULL);
  2530. time_t t;
  2531. t = time(NULL);
  2532. /*UTC time and date*/
  2533. tm = gmtime(&t);
  2534. strftime(buf,30,"%Y-%m-%dT%H:%M:%SZ", tm);
  2535. #if 0 // remove temporally
  2536. strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
  2537. strcat(buf,".");
  2538. sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
  2539. strcat(buf,usec_buf);
  2540. #endif
  2541. // printf("%s",buf);
  2542. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].TimeStamp, buf);
  2543. //allocate memory space
  2544. //ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue = (struct StructSampledValue *)malloc(sizeof(struct StructSampledValue)*6);
  2545. sprintf(message + strlen(message),"[{\"timestamp\":\"%s\",\"sampledValue\":[",(const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].TimeStamp);
  2546. idx_sample=0;
  2547. //********************************(1)Current.Export************************************************/
  2548. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  2549. {
  2550. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2551. {
  2552. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2553. {
  2554. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingCurrent );
  2555. }
  2556. }
  2557. for (int index = 0; index < CCS_QUANTITY; index++)
  2558. {
  2559. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2560. {
  2561. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingCurrent );
  2562. }
  2563. }
  2564. for (int index = 0; index < GB_QUANTITY; index++)
  2565. {
  2566. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2567. {
  2568. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingCurrent );
  2569. }
  2570. }
  2571. }
  2572. else
  2573. {
  2574. for (int index = 0; index < AC_QUANTITY; index++)
  2575. {
  2576. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2577. {
  2578. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrent );
  2579. }
  2580. }
  2581. }// END FOR AC ELSE
  2582. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2583. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2584. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Current_Export]);
  2585. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1_N]);
  2586. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2587. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_A]);
  2588. sprintf(message + strlen(message),"{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\"},",
  2589. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value,
  2590. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context,
  2591. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format,
  2592. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand,
  2593. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase,
  2594. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location,
  2595. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit
  2596. );
  2597. #if 0
  2598. idx_sample=1;
  2599. //****************************************************(2)Energy.Active.Export.Register*********************************************/
  2600. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  2601. {
  2602. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2603. {
  2604. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2605. {
  2606. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );
  2607. }
  2608. }
  2609. for (int index = 0; index < CCS_QUANTITY; index++)
  2610. {
  2611. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2612. {
  2613. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy );
  2614. }
  2615. }
  2616. for (int index = 0; index < GB_QUANTITY; index++)
  2617. {
  2618. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2619. {
  2620. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy = 100.0;
  2621. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy);
  2622. }
  2623. }
  2624. }
  2625. else
  2626. {
  2627. for (int index = 0; index < AC_QUANTITY; index++)
  2628. {
  2629. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2630. {
  2631. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy );
  2632. }
  2633. }
  2634. }// END FOR AC ELSE
  2635. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2636. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2637. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Energy_Active_Export_Register]);
  2638. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1]);
  2639. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2640. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_kWh]);
  2641. sprintf(message + strlen(message),"{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\"},",
  2642. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value,
  2643. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context,
  2644. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format,
  2645. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand,
  2646. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase,
  2647. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location,
  2648. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit
  2649. );
  2650. #endif
  2651. idx_sample=1;
  2652. //****************************************************(3)Energy.Active.Export.Interval*********************************************/
  2653. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  2654. {
  2655. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2656. {
  2657. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2658. {
  2659. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );
  2660. }
  2661. }
  2662. for (int index = 0; index < CCS_QUANTITY; index++)
  2663. {
  2664. // printf("ShmSysConfigAndInfo->SysInfo.CcsChargingData[%d].Index=%d\n",index, ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index );
  2665. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2666. {
  2667. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy = 100.0;
  2668. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy );
  2669. }
  2670. }
  2671. for (int index = 0; index < GB_QUANTITY; index++)
  2672. {
  2673. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2674. {
  2675. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy);
  2676. }
  2677. }
  2678. }
  2679. else
  2680. {
  2681. for (int index = 0; index < AC_QUANTITY; index++)
  2682. {
  2683. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2684. {
  2685. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy );
  2686. }
  2687. }
  2688. }//END FOR AC ELSE
  2689. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2690. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2691. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Energy_Active_Export_Interval]);
  2692. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1]);
  2693. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2694. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_kWh]);
  2695. sprintf(message + strlen(message),"{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\"},",
  2696. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value,
  2697. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context,
  2698. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format,
  2699. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand,
  2700. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase,
  2701. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location,
  2702. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit
  2703. );
  2704. idx_sample=2;
  2705. //********************************(4)Power.Active.Export************************************************/
  2706. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  2707. {
  2708. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2709. {
  2710. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2711. {
  2712. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingPower);
  2713. }
  2714. }
  2715. for (int index = 0; index < CCS_QUANTITY; index++)
  2716. {
  2717. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2718. {
  2719. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingPower);
  2720. }
  2721. }
  2722. for (int index = 0; index < GB_QUANTITY; index++)
  2723. {
  2724. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2725. {
  2726. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower = 100.0;
  2727. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower);
  2728. }
  2729. }
  2730. }
  2731. else
  2732. {
  2733. for (int index = 0; index < AC_QUANTITY; index++)
  2734. {
  2735. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2736. {
  2737. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingPower);
  2738. }
  2739. }
  2740. }// END FOR AC ELSE
  2741. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2742. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2743. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Power_Active_Export]);
  2744. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1_N]);
  2745. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2746. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_kW]);
  2747. sprintf(message + strlen(message),"{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\"},",
  2748. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value,
  2749. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context,
  2750. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format,
  2751. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand,
  2752. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase,
  2753. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location,
  2754. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit
  2755. );
  2756. idx_sample=3;
  2757. //***********************************************(5)VOLTAGE******************************************************/
  2758. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  2759. {
  2760. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2761. {
  2762. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2763. {
  2764. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingVoltage );
  2765. }
  2766. }
  2767. for (int index = 0; index < CCS_QUANTITY; index++)
  2768. {
  2769. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2770. {
  2771. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingVoltage );
  2772. }
  2773. }
  2774. for (int index = 0; index < GB_QUANTITY; index++)
  2775. {
  2776. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2777. {
  2778. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingVoltage );
  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].PresentChargingVoltage );
  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[Voltage]);
  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_V]);
  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. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  2808. {
  2809. idx_sample=4;
  2810. //sampledValue = NULL;
  2811. //***********************************************(6)SOC******************************************************/
  2812. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2813. {
  2814. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2815. {
  2816. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatterySoc );
  2817. }
  2818. }
  2819. for (int index = 0; index < CCS_QUANTITY; index++)
  2820. {
  2821. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2822. {
  2823. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatterySoc );
  2824. }
  2825. }
  2826. for (int index = 0; index < GB_QUANTITY; index++)
  2827. {
  2828. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2829. {
  2830. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatterySoc );
  2831. }
  2832. }
  2833. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2834. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2835. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[SoC]);
  2836. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1_N]);
  2837. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2838. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_Percent]);
  2839. sprintf(message + strlen(message),",{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\"}",
  2840. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value,
  2841. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context,
  2842. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format,
  2843. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand,
  2844. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase,
  2845. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location,
  2846. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit
  2847. );
  2848. }
  2849. //}
  2850. sprintf(message + strlen(message)," ] } ] } ]");
  2851. //free(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue);
  2852. }
  2853. LWS_Send(message);
  2854. //memset(mapItem, 0, sizeof(data_struct_t));
  2855. // Put request guid to hash map
  2856. sprintf(tempdata, "MeterValues,%d", (gun_index));
  2857. 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*/)
  2858. {
  2859. result = PASS;
  2860. DEBUG_INFO("MeterValues mapitem pass\n");
  2861. }
  2862. strcpy(queuedata, message);
  2863. queue_operation(4, guid, queuedata );//addq(guid, queuedata); ---> remove temporally
  2864. //#ifdef SystemLogMessage
  2865. //DEBUG_INFO(">>>>>MeerValues request\n");
  2866. //DEBUG_INFO("Message: %s\n", SendBuffer);
  2867. //#endif
  2868. return result;
  2869. }
  2870. //==========================================
  2871. // send confirm routine
  2872. //==========================================
  2873. int sendCancelReservationConfirmation(char *uuid,char *payload)
  2874. {
  2875. mtrace();
  2876. int result = FAIL;
  2877. char message[100]={0};
  2878. DEBUG_ERROR("handle sendCancelReservationConfirmation\n");
  2879. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT,uuid, payload);
  2880. LWS_Send(message);
  2881. result = TRUE;
  2882. ShmOCPP16Data->CsMsg.bits[0].CancelReservationConf = 0;
  2883. return result;
  2884. }
  2885. int sendChangeAvailabilityConfirmation(char *uuid,char *payload)
  2886. {
  2887. mtrace();
  2888. int result = FAIL;
  2889. char message[100]={0};
  2890. DEBUG_ERROR("handle sendChangeAvailabilityConfirmation\n");
  2891. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT,uuid, payload);
  2892. LWS_Send(message);
  2893. result = TRUE;
  2894. return result;
  2895. }
  2896. int sendChangeConfigurationConfirmation(char *uuid,char *payload)
  2897. {
  2898. mtrace();
  2899. int result = FAIL;
  2900. char message[100]={0};
  2901. DEBUG_ERROR("handle sendChangeConfigurationConfirmation\n");
  2902. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT,uuid, payload);
  2903. LWS_Send(message);
  2904. result = TRUE;
  2905. return result;
  2906. }
  2907. int sendClearCacheConfirmation(char *uuid,char *payload)
  2908. {
  2909. mtrace();
  2910. int result = FAIL;
  2911. char message[500]={0};
  2912. // int count = 0;
  2913. // int gun_index = 0;
  2914. // char guid[37];
  2915. // [ 3, "1570592744204", { "status": "Accepted" } ]
  2916. DEBUG_ERROR("sendClearCacheConfirmation\n");
  2917. sprintf(message,"[ %d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "status", payload);
  2918. LWS_Send(message);
  2919. return result;
  2920. }
  2921. int sendClearChargingProfileConfirmation(char *uuid,char *payload)
  2922. {
  2923. mtrace();
  2924. int result = FAIL;
  2925. char message[500]={0};
  2926. // [ 3, "1571284268200", { "status": "Unknown" } ]
  2927. DEBUG_ERROR("sendClearChargingProfileConfirmation\n");
  2928. sprintf(message,"[ %d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "status", payload);
  2929. LWS_Send(message);
  2930. return result;
  2931. }
  2932. int sendDataTransferConfirmation(char *uuid,char *payload)
  2933. {
  2934. mtrace();
  2935. char statusStr[20]={0};
  2936. char dataStr[10]={0};
  2937. char sstr[20]={0};
  2938. int c = 0;
  2939. char *loc;
  2940. int result = FAIL;
  2941. // [3,"792bc950-b279-49e3-ab8f-429e02a2f9a7",{"status":"Accepted","data":"True"}]
  2942. DEBUG_ERROR("sendDataTransferConfirmation ...\n");
  2943. /**********************status**************************/
  2944. loc = strstr(payload, "status");
  2945. memset(sstr ,0, sizeof(sstr) );
  2946. c = 0;
  2947. while (loc[3+strlen("status")+c] != '\"')
  2948. {
  2949. sstr[c] = loc[3+strlen("status")+c];
  2950. c++;
  2951. }
  2952. sstr[c] = '\0';
  2953. strcpy(statusStr, sstr);
  2954. /**********************data**************************/
  2955. loc = strstr(payload, "data");
  2956. memset(sstr ,0, sizeof(sstr) );
  2957. c = 0;
  2958. while (loc[3+strlen("data")+c] != '\"')
  2959. {
  2960. sstr[c] = loc[3+strlen("data")+c];
  2961. c++;
  2962. }
  2963. sstr[c] = '\0';
  2964. strcpy(dataStr, sstr);
  2965. return result;
  2966. }
  2967. int sendGetCompositeScheduleConfirmation(char *uuid,char *payload, int connectorIdInt,int nPeriod)
  2968. {
  2969. mtrace();
  2970. int result = FAIL;
  2971. char message[1000]={0};
  2972. double diff_f = 0.0;
  2973. int diff_i = 0;
  2974. int diffSeconds = 0;
  2975. struct tm tp;
  2976. int TimeZero = FALSE;
  2977. int CompositeScheduleIndex = 0;
  2978. DEBUG_INFO("handle sendGetCompositeScheduleConfirmation ...\n");
  2979. #if 0
  2980. if(connectorIdInt > 0)
  2981. {
  2982. if((ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.StartSchedule == NULL)||(strcmp((const char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.StartSchedule,"")==0))
  2983. {
  2984. TimeZero = TRUE;
  2985. }
  2986. else
  2987. {
  2988. strptime((const char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.StartSchedule, "%Y-%m-%dT%H:%M:%S", &tp);
  2989. }
  2990. }
  2991. else
  2992. {
  2993. if((ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.StartSchedule == NULL)||(strcmp((const char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.StartSchedule,"")==0))
  2994. {
  2995. TimeZero = TRUE;
  2996. }
  2997. else
  2998. {
  2999. strptime((const char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.StartSchedule, "%Y-%m-%dT%H:%M:%S", &tp);
  3000. }
  3001. }
  3002. DEBUG_INFO("ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.StartSchedule=%s\n",ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.StartSchedule);
  3003. #endif
  3004. if((CurrentChargingProfileScheduleStr == NULL)||(strcmp((const char *)CurrentChargingProfileScheduleStr,"")==0))
  3005. {
  3006. TimeZero = TRUE;
  3007. }
  3008. else
  3009. {
  3010. strptime((const char *)CurrentChargingProfileScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  3011. }
  3012. if(TimeZero == FALSE)
  3013. {
  3014. tp.tm_isdst = -1;
  3015. time_t utc = mktime(&tp);
  3016. time_t t = time(NULL);
  3017. diff_f = difftime(t, utc);
  3018. diff_i = (int)diff_f;
  3019. diffSeconds = diff_i % 86400;//86400 seconds/day
  3020. }
  3021. DEBUG_INFO("\n diff_f=%f \n",diff_f);
  3022. CompositeScheduleIndex = (connectorIdInt > 0) ?(connectorIdInt -1) : 0;
  3023. #if 0 //remove temporally
  3024. 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}"
  3025. ,MESSAGE_TYPE_CALLRESULT
  3026. ,uuid
  3027. ,payload
  3028. ,connectorIdInt
  3029. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule
  3030. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.Duration
  3031. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule
  3032. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit);
  3033. #endif
  3034. if(nPeriod == 0)
  3035. {
  3036. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"connectorId\":%d,\"scheduleStart\":\"%s\"}]"
  3037. ,MESSAGE_TYPE_CALLRESULT
  3038. ,uuid
  3039. ,payload
  3040. ,connectorIdInt
  3041. ,ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.StartSchedule);
  3042. }
  3043. else
  3044. {
  3045. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"connectorId\":%d,\"scheduleStart\":\"%s\",\"chargingSchedule\":{\"duration\":%d,\"startSchedule\":\"%s\",\"chargingRateUnit\":\"%s\",\"chargingSchedulePeriod\":["
  3046. ,MESSAGE_TYPE_CALLRESULT
  3047. ,uuid
  3048. ,payload
  3049. ,connectorIdInt
  3050. ,ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.StartSchedule
  3051. ,ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.Duration
  3052. ,ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.StartSchedule
  3053. ,ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingRateUnit);
  3054. //int len = nPeriod;//sizeof(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod)/sizeof(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0]);
  3055. #if 1 // remove temporally
  3056. int len = nPeriod;//sizeof(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod)/sizeof(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0]);
  3057. if(ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[len -1].StartPeriod < diffSeconds)
  3058. {
  3059. sprintf(message + strlen(message), "{\"startPeriod\":%d,\"limit\":%.1f,\"numberPhases\":%d}"
  3060. , 0
  3061. , ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[len -1].Limit
  3062. , ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[len -1].NumberPhases );
  3063. }
  3064. else
  3065. {
  3066. for(int idx_sample=0;idx_sample< len;idx_sample++)
  3067. {
  3068. if((ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].StartPeriod < diffSeconds) || (ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample + 1].StartPeriod > diffSeconds))//if (idx_sample == 0)
  3069. {
  3070. sprintf(message + strlen(message), "{\"startPeriod\":%d,\"limit\":%.1f,\"numberPhases\":%d}"
  3071. , 0 /*ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].StartPeriod*/
  3072. , ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].Limit
  3073. , ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].NumberPhases );
  3074. }
  3075. else
  3076. {
  3077. sprintf(message + strlen(message), ",{\"startPeriod\":%d,\"limit\":%.1f,\"numberPhases\":%d}"
  3078. , (((ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].StartPeriod - diffSeconds /*-1*/) <= 0)?(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].StartPeriod):(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].StartPeriod - diffSeconds /*-1*/))
  3079. , ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].Limit
  3080. , ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].NumberPhases );
  3081. }
  3082. }
  3083. }
  3084. #endif
  3085. sprintf(message + strlen(message), "]}}]");
  3086. }
  3087. LWS_Send(message);
  3088. result = TRUE;
  3089. return result;
  3090. }
  3091. int sendGetConfigurationConfirmation(char *uuid)
  3092. {
  3093. mtrace();
  3094. int result = FAIL;
  3095. int MaxKeySupported = 0;
  3096. int sentConfigurationNumber= 0;
  3097. int sentunConfigurationNumber= 0;
  3098. char message[4000]={0};
  3099. DEBUG_ERROR("handle sendGetConfigurationConfirmation ...\n");
  3100. MaxKeySupported = atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData);
  3101. sprintf(message,"[%d,\"%s\",{\"configurationKey\":[ "
  3102. ,MESSAGE_TYPE_CALLRESULT
  3103. ,uuid );
  3104. //configuration key
  3105. for(int idx_sample=0;idx_sample< MaxKeySupported/*43*/;idx_sample++)
  3106. {
  3107. if(strcmp((const char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Key, "")!= 0)
  3108. {
  3109. if (sentConfigurationNumber == 0)
  3110. {
  3111. sprintf(message + strlen(message), "{\"key\":\"%s\",\"readonly\": %s,\"value\":\"%s\"}"
  3112. , ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Key
  3113. , atoi((const char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].ReadOnly) == 1 ? "true":"false"
  3114. , ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Value );
  3115. }
  3116. else
  3117. {
  3118. sprintf(message + strlen(message), ", {\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}"
  3119. , ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Key
  3120. , atoi((const char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].ReadOnly) == 1 ? "true":"false"
  3121. , ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Value );
  3122. }
  3123. sentConfigurationNumber = sentConfigurationNumber + 1;
  3124. }
  3125. }
  3126. sprintf(message + strlen(message), "]");
  3127. if(UnknownKeynum != 0)
  3128. {
  3129. sprintf(message + strlen(message), ",\"unknownKey\":[");
  3130. //unkown key
  3131. for(int idx_sample=0;idx_sample< UnknownKeynum ;idx_sample++)
  3132. {
  3133. // json_object *jstring1 = json_object_new_string((const char *)((ShmOCPP16Data->GetConfiguration.ResponseUnknownKey + idx_sample)->Item));
  3134. DEBUG_INFO("unkown key:%s\n", ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[idx_sample].Item);
  3135. if(sentunConfigurationNumber == 0)
  3136. {
  3137. sprintf(message + strlen(message), "\"%s\""
  3138. , ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[idx_sample].Item );
  3139. }
  3140. else
  3141. {
  3142. sprintf(message + strlen(message), ",\"%s\""
  3143. , ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[idx_sample].Item );
  3144. }
  3145. sentunConfigurationNumber = sentunConfigurationNumber + 1;
  3146. }
  3147. sprintf(message + strlen(message), "]");
  3148. }
  3149. sprintf(message + strlen(message), "} ]");
  3150. LWS_Send(message);
  3151. #if 0
  3152. printf("error 1-0\n");
  3153. if(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey != NULL)
  3154. free(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey);
  3155. #endif
  3156. return result;
  3157. }
  3158. int sendGetDiagnosticsConfirmation(char *uuid,char *payload)
  3159. {
  3160. mtrace();
  3161. int result = FAIL;
  3162. char message[400]={0};
  3163. DEBUG_ERROR("handle sendGetDiagnosticsConfirmation ...\n");
  3164. if(strcmp(payload,"")==0)
  3165. {
  3166. sprintf(message,"[%d,\"%s\",{}]",MESSAGE_TYPE_CALLRESULT, uuid);
  3167. }
  3168. else
  3169. {
  3170. sprintf(message,"[%d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "fileName", payload);
  3171. }
  3172. LWS_Send(message);
  3173. result = TRUE;
  3174. return result;
  3175. }
  3176. int sendGetLocalListVersionConfirmation(char *uuid,char *payload)
  3177. {
  3178. mtrace();
  3179. int result = FAIL;
  3180. char message[80]={0};
  3181. //[ 3, "4f0141fb-f3a0-4634-9179-b1379b514d3c", { "listVersion": 1 } ]
  3182. DEBUG_ERROR("handle GetLocalListVersionRequest ...\n");
  3183. sprintf(message,"[%d,\"%s\",{\"listVersion\":%d}]",MESSAGE_TYPE_CALLRESULT, uuid, ShmOCPP16Data->GetLocalListVersion.ResponseListVersion);
  3184. LWS_Send(message);
  3185. result = TRUE;
  3186. return result;
  3187. }
  3188. int sendRemoteStartConfirmation(char *uuid,char *payload)
  3189. {
  3190. mtrace();
  3191. int result = FAIL;
  3192. char message[80]={0};
  3193. //[3,"26f6b7bc-a6e8-48a8-bdc5-a541bf8f9e27",{"status":"Accepted"}]
  3194. DEBUG_ERROR("handleRemoteStartRequest ...\n");
  3195. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  3196. LWS_Send(message);
  3197. result = TRUE;
  3198. return result;
  3199. }
  3200. int sendRemoteStopTransactionConfirmation(char *uuid,char *payload)
  3201. {
  3202. mtrace();
  3203. int result = FAIL;
  3204. char message[80]={0};
  3205. // [3,"287d837d-809e-41ea-8385-fdab7f72a01c",{"status":"Accepted"}]
  3206. DEBUG_ERROR("sendRemoteStopTransactionConfirmation ...\n");
  3207. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  3208. LWS_Send(message);
  3209. result = TRUE;
  3210. return result;
  3211. }
  3212. int sendReserveNowTransactionConfirmation(char *uuid,char *payload)
  3213. {
  3214. mtrace();
  3215. int result = FAIL;
  3216. char message[80]={0};
  3217. // [3,"287d837d-809e-41ea-8385-fdab7f72a01c",{"status":"Accepted"}]
  3218. DEBUG_ERROR("sendReserveNowTransactionConfirmation\n");
  3219. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  3220. LWS_Send(message);
  3221. result = TRUE;
  3222. return result;
  3223. }
  3224. int sendResetConfirmation(char *uuid,char *payload)
  3225. {
  3226. mtrace();
  3227. int result = FAIL;
  3228. //[ 3, "6f88d461-4d17-462c-a69b-1f7a8c5b12df", { "status": 0 } ]
  3229. char message[80]={0};
  3230. ShmOCPP16Data->MsMsg.bits.ResetConf = 0;
  3231. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  3232. LWS_Send(message);
  3233. result = TRUE;
  3234. return result;
  3235. }
  3236. int sendSendLocalListConfirmation(char *uuid,char *payload)
  3237. {
  3238. mtrace();
  3239. int result = FAIL;
  3240. char message[500]={0};
  3241. // [ 3, "1571284266109", { "status": "Accepted" } ]
  3242. sprintf(message,"[%d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "status", payload);
  3243. LWS_Send(message);
  3244. result = TRUE;
  3245. return result;
  3246. }
  3247. int sendSetChargingProfileConfirmation(char *uuid,char *payload)
  3248. {
  3249. mtrace();
  3250. int result = FAIL;
  3251. //[3,"5748585f-8524-4fa6-9b4f-4a7eca750b90",{"status":"NotSupported"}]
  3252. char message[80]={0};
  3253. DEBUG_ERROR("handleSetChargingProfileRequest\n");
  3254. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  3255. LWS_Send(message);
  3256. result = TRUE;
  3257. return result;
  3258. }
  3259. int sendTriggerMessageConfirmation(char *uuid,char *payload)
  3260. {
  3261. mtrace();
  3262. int result = FAIL;
  3263. char message[80]={0};
  3264. DEBUG_ERROR("sendTriggerMessageConfirmation\n");
  3265. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  3266. LWS_Send(message);
  3267. result = TRUE;
  3268. return result;
  3269. }
  3270. int sendUnlockConnectorConfirmation(char *uuid,char *payload)
  3271. {
  3272. mtrace();
  3273. int result = FAIL;
  3274. char message[80]={0};
  3275. //[ 3, "ba1cbd49-2a76-493a-8f76-fa23e7606532", { "status": "Unlocked" } ]
  3276. DEBUG_ERROR("sendUnlockConnectorConfirmation\n");
  3277. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  3278. LWS_Send(message);
  3279. result = TRUE;
  3280. return result;
  3281. }
  3282. int sendUpdateFirmwareConfirmation(char *uuid)
  3283. {
  3284. mtrace();
  3285. int result = FAIL;
  3286. char message[60]={0};
  3287. //[ 3, "ba1cbd49-2a76-493a-8f76-fa23e7606532", { "status": "Unlocked" } ]
  3288. DEBUG_ERROR("sendUpdateFirmwareConfirmation\n");
  3289. sprintf(message,"[%d,\"%s\",{}]",MESSAGE_TYPE_CALLRESULT, uuid);
  3290. LWS_Send(message);
  3291. result = TRUE;
  3292. return result;
  3293. }
  3294. //==========================================
  3295. // send CallError routine
  3296. //==========================================
  3297. void SendCallError(char *uniqueId, char *action, char *errorCode, char *errorDescription)
  3298. {
  3299. mtrace();
  3300. //int result = FAIL;
  3301. char message[220]={0};
  3302. // [4,"f1c52ff5-e65d-4070-b7d4-6c70bc1e8970","PropertyConstraintViolation","Payload is syntactically correct but at least one field contains an invalid value",{}]
  3303. #ifdef SystemLogMessage
  3304. DEBUG_INFO("An error occurred. Sending this information: uniqueId {}: action: {}, errorCore: {}, errorDescription: {}\n",
  3305. uniqueId, action, errorCode, errorDescription);
  3306. #endif
  3307. sprintf(message,"[%d,\"%s\",\"%s\",\"%s\",{}]",MESSAGE_TYPE_CALLERROR, uniqueId, errorCode, errorDescription);
  3308. LWS_Send(message);
  3309. //result = TRUE;
  3310. }
  3311. //==========================================
  3312. // Handle server request routine Start
  3313. //==========================================
  3314. #define GUN_NUM 1
  3315. int handleCancelReservationRequest(char *uuid, char *payload)
  3316. {
  3317. mtrace();
  3318. int result = FAIL;
  3319. int gunNO = 0;
  3320. int reservationIdInt =0;
  3321. char comfirmstr[20];
  3322. int c = 0;
  3323. char *loc;
  3324. char sstr[100]={0};
  3325. DEBUG_INFO("handle CancelReservationRequest\n");
  3326. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  3327. c = 0;
  3328. loc = strstr(payload, "reservationId");
  3329. memset(sstr ,0, sizeof(sstr) );
  3330. while (loc[strlen("reservationId")+2+c] != '}')
  3331. {
  3332. sstr[c] = loc[strlen("reservationId")+2+c];
  3333. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3334. c++;
  3335. }
  3336. sstr[c] = '\0';
  3337. reservationIdInt = atoi(sstr);
  3338. memset(comfirmstr, 0, sizeof comfirmstr);
  3339. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Rejected]);
  3340. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  3341. //check Transaction active
  3342. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  3343. {
  3344. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  3345. {
  3346. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId == reservationIdInt)
  3347. {
  3348. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
  3349. sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index].ResponseStatus, "%s", comfirmstr );
  3350. gunNO = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index;
  3351. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  3352. goto end;
  3353. }
  3354. }
  3355. for (int index = 0; index < CCS_QUANTITY; index++)
  3356. {
  3357. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId == reservationIdInt)
  3358. {
  3359. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
  3360. sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index].ResponseStatus, "%s", comfirmstr );
  3361. gunNO = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index;
  3362. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  3363. goto end;
  3364. }
  3365. }
  3366. for (int index = 0; index < GB_QUANTITY; index++)
  3367. {
  3368. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId == reservationIdInt)
  3369. {
  3370. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
  3371. sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index].ResponseStatus, "%s", comfirmstr );
  3372. gunNO = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index;
  3373. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  3374. goto end;
  3375. }
  3376. }
  3377. }
  3378. else
  3379. {
  3380. for (int index = 0; index < AC_QUANTITY; index++)
  3381. {
  3382. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId == reservationIdInt)
  3383. {
  3384. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
  3385. sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index].ResponseStatus, "%s", comfirmstr );
  3386. gunNO = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index;
  3387. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  3388. goto end;
  3389. }
  3390. }
  3391. }// END FOR AC ELSE
  3392. //The reservationId does NOT match the reservationId
  3393. sendCancelReservationConfirmation(uuid, comfirmstr);
  3394. end:
  3395. // Fill in ocpp packet uuid
  3396. strcpy((char *)ShmOCPP16Data->CancelReservation[gunNO].guid, uuid);
  3397. return result;
  3398. }
  3399. int handleChangeAvailabilityRequest(char *uuid, char *payload)
  3400. {
  3401. mtrace();
  3402. int result = FAIL;
  3403. int gunIndex = 0;
  3404. char sstr[90]={0};
  3405. char typeStr[16]={0};
  3406. char comfirmstr[20];
  3407. int specificId = FALSE;
  3408. DEBUG_ERROR("handle ChangeAvailabilityRequest\n");
  3409. char *loc;
  3410. //int intervalInt = 0;
  3411. int c = 0;
  3412. /*** connectorId ****/
  3413. c = 0;
  3414. loc = strstr(payload, "connectorId");
  3415. memset(sstr ,0, sizeof(sstr) );
  3416. while ((loc != NULL) &&(loc[strlen("connectorId")+2+c] != ',') &&(loc[strlen("connectorId")+2+c] != '}') )
  3417. {
  3418. sstr[c] = loc[strlen("connectorId")+2+c];
  3419. c++;
  3420. }
  3421. sstr[c] = '\0';
  3422. gunIndex = atoi(sstr);
  3423. /***type ****/
  3424. loc = strstr(payload, "type");
  3425. memset(sstr ,0, sizeof(sstr) );
  3426. c = 0;
  3427. while ((loc != NULL) &&(loc[3+strlen("type")+c] != '\"'))
  3428. {
  3429. sstr[c] = loc[3+strlen("type")+c];
  3430. c++;
  3431. }
  3432. sstr[c] = '\0';
  3433. strcpy(typeStr, sstr);
  3434. if(gunIndex != 0)
  3435. {
  3436. ShmOCPP16Data->ChangeAvailability[gunIndex - 1].ConnectorId= gunIndex;
  3437. sprintf((char *)ShmOCPP16Data->ChangeAvailability[gunIndex - 1].Type, "%s", typeStr);
  3438. }
  3439. else
  3440. {
  3441. ShmOCPP16Data->ChangeAvailability[0].ConnectorId= gunIndex;
  3442. sprintf((char *)ShmOCPP16Data->ChangeAvailability[0].Type, "%s", typeStr);
  3443. }
  3444. memset(comfirmstr, 0, sizeof comfirmstr);
  3445. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3446. if((gunIndex == 0) || ((gunIndex - 1) < gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/))
  3447. {
  3448. specificId = TRUE;
  3449. }
  3450. if(specificId == FALSE)
  3451. goto end;
  3452. if(gunIndex != 0)
  3453. {
  3454. ShmOCPP16Data->CsMsg.bits[gunIndex - 1].ChangeAvailabilityReq = 1;
  3455. }
  3456. else
  3457. {
  3458. for(int i=0; i < gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/; i++)
  3459. ShmOCPP16Data->CsMsg.bits[i].ChangeAvailabilityReq = 1;
  3460. }
  3461. /*
  3462. enum _SYSTEM_STATUS
  3463. {
  3464. S_BOOTING = 0,
  3465. S_IDLE, = 1
  3466. S_AUTHORIZING, =2
  3467. S_REASSIGN_CHECK, =3
  3468. S_REASSIGN, =4
  3469. S_PRECHARGE, =5
  3470. S_PREPARING_FOR_EV, =6
  3471. S_PREPARING_FOR_EVSE, =7
  3472. S_CHARGING, =8
  3473. S_TERMINATING, =9
  3474. S_COMPLETE, =10
  3475. S_ALARM, =11
  3476. S_FAULT =12
  3477. }
  3478. */
  3479. if(strcmp((const char *)typeStr, AvailabilityTypeStr[Inoperative]) == 0)
  3480. {
  3481. //check Transaction active
  3482. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  3483. {
  3484. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  3485. {
  3486. if ((gunIndex == 0) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (gunIndex - 1)))
  3487. {
  3488. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_PREPARING) // S_PRECHARGE
  3489. {
  3490. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3491. }
  3492. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  3493. {
  3494. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
  3495. }
  3496. else
  3497. {
  3498. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3499. }
  3500. goto end;
  3501. }
  3502. }//END FOR CHAdeMO_QUANTITY
  3503. for (int index = 0; index < CCS_QUANTITY; index++)
  3504. {
  3505. if ((gunIndex == 0)|| (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (gunIndex - 1)))
  3506. {
  3507. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_PREPARING)// S_PRECHARGE
  3508. {
  3509. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3510. }
  3511. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  3512. {
  3513. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
  3514. }
  3515. else
  3516. {
  3517. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3518. }
  3519. goto end;
  3520. }
  3521. }//END FOR CCS_QUANTITY
  3522. for (int index = 0; index < GB_QUANTITY; index++)
  3523. {
  3524. if ((gunIndex == 0)||(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (gunIndex - 1)))
  3525. {
  3526. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_PREPARING) // S_PRECHARGE
  3527. {
  3528. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3529. }
  3530. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  3531. {
  3532. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
  3533. }
  3534. else
  3535. {
  3536. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3537. }
  3538. goto end;
  3539. }
  3540. }// END FOR GB_QUANTITY
  3541. }
  3542. else
  3543. {
  3544. for (int index = 0; index < AC_QUANTITY; index++)
  3545. {
  3546. if ((gunIndex == 0) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == (gunIndex - 1)))
  3547. {
  3548. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING) // S_PRECHARGE
  3549. {
  3550. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3551. }
  3552. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  3553. {
  3554. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
  3555. }
  3556. else
  3557. {
  3558. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3559. }
  3560. goto end;
  3561. }
  3562. }//END FOR AC_QUANTITY
  3563. }// END FOR AC ELSE
  3564. }//END FOR AvailabilityTypeStr[Inoperative]
  3565. if(strcmp((const char *)typeStr, AvailabilityTypeStr[Operative]) == 0)
  3566. {
  3567. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  3568. //check Transaction active
  3569. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  3570. {
  3571. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  3572. {
  3573. if (((gunIndex == 0)|| (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (gunIndex - 1))) &&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT
  3574. {
  3575. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3576. goto end;
  3577. }
  3578. }//END FOR CHAdeMO_QUANTITY
  3579. for (int index = 0; index < CCS_QUANTITY; index++)
  3580. {
  3581. if (((gunIndex == 0)|| (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (gunIndex - 1)))&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT
  3582. {
  3583. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3584. goto end;
  3585. }
  3586. }//END FOR CCS_QUANTITY
  3587. for (int index = 0; index < GB_QUANTITY; index++)
  3588. {
  3589. if (((gunIndex == 0)||(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (gunIndex - 1)))&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT
  3590. {
  3591. ShmOCPP16Data->CsMsg.bits[gunIndex - 1].ChangeAvailabilityReq = 1;
  3592. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3593. goto end;
  3594. }
  3595. }// END FOR GB_QUANTITY
  3596. //sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3597. }
  3598. else
  3599. {
  3600. for (int index = 0; index < AC_QUANTITY; index++)
  3601. {
  3602. if (((gunIndex == 0)|| (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == (gunIndex - 1))) &&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT
  3603. {
  3604. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3605. goto end;
  3606. }
  3607. }//END FOR CHAdeMO_QUANTITY
  3608. }//END FOR AC ELSE
  3609. }//END FOR AvailabilityTypeStr[Operative]
  3610. end:
  3611. if(gunIndex != 0)
  3612. {
  3613. sprintf((char *)ShmOCPP16Data->ChangeAvailability[gunIndex - 1].ResponseStatus, "%s", comfirmstr );
  3614. }
  3615. else
  3616. {
  3617. sprintf((char *)ShmOCPP16Data->ChangeAvailability[0].ResponseStatus, "%s", comfirmstr );
  3618. }
  3619. sendChangeAvailabilityConfirmation(uuid, comfirmstr);
  3620. //ShmOCPP16Data->CsMsg.bits[gunIndex - 1].ChangeAvailabilityConf = 1;
  3621. return result;
  3622. }
  3623. int handleChangeConfigurationRequest(char *uuid, char *payload)
  3624. {
  3625. mtrace();
  3626. int result = FAIL;
  3627. char sstr[100]={0};
  3628. char keystr[40]={0};
  3629. char valuestr[16]={0};
  3630. char *loc;
  3631. int c = 0;
  3632. char comfirmstr[20];
  3633. DEBUG_ERROR("handle ChangeConfigurationRequest\n");
  3634. /***key ****/
  3635. loc = strstr(payload, "key");
  3636. memset(sstr ,0, sizeof(sstr) );
  3637. c = 0;
  3638. while ((loc != NULL) &&(loc[3+strlen("key")+c] != '\"'))
  3639. {
  3640. sstr[c] = loc[3+strlen("key")+c];
  3641. c++;
  3642. }
  3643. sstr[c] = '\0';
  3644. strcpy(keystr, sstr);
  3645. /***value ****/
  3646. loc = strstr(payload, "value");
  3647. memset(sstr ,0, sizeof(sstr) );
  3648. c = 0;
  3649. while ((loc != NULL) &&(loc[3+strlen("value")+c] != '\"'))
  3650. {
  3651. sstr[c] = loc[3+strlen("value")+c];
  3652. c++;
  3653. }
  3654. sstr[c] = '\0';
  3655. strcpy(valuestr, sstr);
  3656. if((uuid==NULL) || (payload ==NULL) )
  3657. {
  3658. #ifdef Debug
  3659. DEBUG_INFO("payload is null\n");
  3660. #endif
  3661. sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Rejected] );
  3662. }
  3663. else
  3664. {
  3665. int status = setKeyValue(keystr, valuestr);
  3666. switch(status)
  3667. {
  3668. case ConfigurationStatus_Accepted:
  3669. sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Accepted]);
  3670. ShmOCPP16Data->MsMsg.bits.ChangeConfigurationReq = 1;
  3671. break;
  3672. case ConfigurationStatus_Rejected:
  3673. sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Rejected] );
  3674. break;
  3675. case RebootRequired:
  3676. sprintf(comfirmstr, "%s", ConfigurationStatusStr[RebootRequired]);
  3677. break;
  3678. case NotSupported:
  3679. sprintf(comfirmstr, "%s", ConfigurationStatusStr[NotSupported] );
  3680. break;
  3681. default:
  3682. break;
  3683. }
  3684. }
  3685. //confirmation.setStatus(ConfigurationStatus.Rejected);
  3686. sendChangeConfigurationConfirmation(uuid, comfirmstr);
  3687. ShmOCPP16Data->MsMsg.bits.ChangeConfigurationConf = 1;
  3688. return result;
  3689. }
  3690. int handleClearCacheRequest(char *uuid, char *payload)
  3691. {
  3692. mtrace();
  3693. int result = FAIL;
  3694. char comfirmstr[20];
  3695. int fd;
  3696. char rmFileCmd[100]={0};
  3697. struct stat stats;
  3698. DEBUG_ERROR("handle ClearCacheRequest\n");
  3699. stat("../Storage/OCPP", &stats);
  3700. // Check for directory existence
  3701. if (S_ISDIR(stats.st_mode) == 1)
  3702. {
  3703. //DEBUG_ERROR("\n OCPP directory exist \n");
  3704. }
  3705. else
  3706. {
  3707. DEBUG_ERROR("\n OCPP directory not exist, create dir \n");
  3708. sprintf(rmFileCmd,"mkdir -p %s","../Storage/OCPP");
  3709. system(rmFileCmd);
  3710. }
  3711. memset(&rmFileCmd, 0, sizeof rmFileCmd);
  3712. if((access(AuthorizationCache_JSON,F_OK))!=-1)
  3713. {
  3714. DEBUG_ERROR("AuthorizationCache file exist.\n");
  3715. }
  3716. else
  3717. {
  3718. DEBUG_ERROR("AuthorizationCache file not exist\n");
  3719. FILE *log = fopen(AuthorizationCache_JSON, "w+");
  3720. if(log == NULL)
  3721. {
  3722. DEBUG_ERROR("AuthorizationCache file is NULL\n");
  3723. sprintf(comfirmstr, "%s", ClearCacheStatusStr[ClearCacheStatus_Rejected] );
  3724. goto end;
  3725. }
  3726. else
  3727. {
  3728. fclose(log);
  3729. }
  3730. }
  3731. fd = open(AuthorizationCache_JSON,O_RDWR);
  3732. if(fd < 0)
  3733. {
  3734. DEBUG_ERROR("open AuthorizationCache file failed\n");
  3735. sprintf(comfirmstr, "%s", ClearCacheStatusStr[ClearCacheStatus_Rejected] );
  3736. }
  3737. else
  3738. {
  3739. DEBUG_ERROR("open AuthorizationCache file successful\n");
  3740. //* 清空?�件 */
  3741. ftruncate(fd,0);
  3742. //* ?�新设置?�件?�移??*/
  3743. lseek(fd,0,SEEK_SET);
  3744. close(fd);
  3745. sprintf(comfirmstr, "%s", ClearCacheStatusStr[ClearCacheStatus_Accepted] );
  3746. //ShmOCPP16Data->MsMsg.bits.ClearCacheReq = 1; //OCPP handle byself
  3747. }
  3748. end:
  3749. sendClearCacheConfirmation(uuid, comfirmstr);
  3750. //ShmOCPP16Data->MsMsg.bits.ClearCacheConf = 1; //OCPP handle byself
  3751. return result;
  3752. }
  3753. int handleClearChargingProfileRequest(char *uuid, char *payload)
  3754. {
  3755. mtrace();
  3756. int result = FAIL;
  3757. int resultRename;
  3758. int connectorIdInt, chargingProfileIdInt, stackLevelInt;
  3759. char chargingProfilePurposeStr[26]={0};
  3760. int tempconnectorIdInt, tempchargingProfileIdInt, tempstackLevelInt;
  3761. char tempchargingProfilePurposeStr[26]={0};
  3762. char sstr[160]={0};//sstr[200]={ 0 };
  3763. char str[100]={0};
  3764. int c = 0;
  3765. //int i = 0;
  3766. //char * pch;
  3767. char *loc;
  3768. char fname[200];
  3769. char comfirmstr[20]={0};
  3770. char word[1000]={0};
  3771. int clearflag = FALSE;
  3772. int chargingProfileIdIsNULL = FALSE;
  3773. int connectorIsNULL = FALSE;
  3774. int chargingProfilePurposeIsNULL = FALSE;
  3775. int stackLevelIsNULL = FALSE;
  3776. FILE *fptr1, *fptr2;
  3777. char temp[] = "../Storage/OCPP/ClearChargingProfiletemp.json";
  3778. int n_chargingProfile=0;
  3779. char sLineWord[1060]={0};
  3780. DEBUG_ERROR("handle ClearChargingProfileRequest\n");
  3781. connectorIdInt= chargingProfileIdInt= stackLevelInt =0;
  3782. //***id ****/
  3783. c = 0;
  3784. loc = strstr(payload, "id");
  3785. memset(sstr ,0, sizeof(sstr) );
  3786. if(loc == NULL)
  3787. {
  3788. chargingProfileIdIsNULL = TRUE;
  3789. }
  3790. else
  3791. {
  3792. while ((loc != NULL) &&((loc[strlen("id")+2+c] != ',')&& (loc[strlen("id")+2+c] != '}')))
  3793. {
  3794. sstr[c] = loc[strlen("id")+2+c];
  3795. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3796. c++;
  3797. }
  3798. sstr[c] = '\0';
  3799. chargingProfileIdInt = atoi(sstr);
  3800. }
  3801. //***connectorId ****/
  3802. c=0;
  3803. loc = strstr(payload, "connectorId");
  3804. memset(sstr ,0, sizeof(sstr) );
  3805. if(loc == NULL)
  3806. {
  3807. connectorIsNULL = TRUE;
  3808. }
  3809. else
  3810. {
  3811. while ((loc != NULL) &&((loc[strlen("connectorId")+2+c] != ',')&&(loc[strlen("connectorId")+2+c] != '}')))
  3812. {
  3813. sstr[c] = loc[strlen("connectorId")+2+c];
  3814. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3815. c++;
  3816. }
  3817. sstr[c] = '\0';
  3818. connectorIdInt = atoi(sstr);
  3819. }
  3820. //***chargingProfilePurpose ****/
  3821. loc = strstr(payload, "chargingProfilePurpose");
  3822. memset(sstr ,0, sizeof(sstr) );
  3823. c = 0;
  3824. if(loc == NULL)
  3825. {
  3826. chargingProfilePurposeIsNULL = TRUE;
  3827. }
  3828. else
  3829. {
  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. }
  3838. //***stackLevel ****/
  3839. c=0;
  3840. loc = strstr(payload, "stackLevel");
  3841. memset(sstr ,0, sizeof(sstr) );
  3842. if(loc == NULL)
  3843. {
  3844. stackLevelIsNULL = TRUE;
  3845. }
  3846. else
  3847. {
  3848. while ((loc != NULL) &&((loc[strlen("stackLevel")+2+c] != '}') && (loc[strlen("stackLevel")+2+c] != ',')))
  3849. {
  3850. sstr[c] = loc[strlen("stackLevel")+2+c];
  3851. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3852. c++;
  3853. }
  3854. sstr[c] = '\0';
  3855. stackLevelInt = atoi(sstr);
  3856. }
  3857. if(connectorIsNULL == FALSE)
  3858. {
  3859. switch(connectorIdInt)
  3860. {
  3861. case 0:
  3862. if((chargingProfilePurposeIsNULL == TRUE)||((chargingProfilePurposeIsNULL == FALSE)&&(strcmp(chargingProfilePurposeStr,"ChargePointMaxProfile")==0)))
  3863. {
  3864. strcpy(fname, ChargePointMaxProfile_JSON);
  3865. }
  3866. // else
  3867. // {
  3868. // strcpy(fname, TxDefaultProfile_0_JSON);
  3869. // }
  3870. break;
  3871. case 1:
  3872. if((chargingProfilePurposeIsNULL == TRUE)||((chargingProfilePurposeIsNULL == FALSE)&&(strcmp(chargingProfilePurposeStr,"TxDefaultProfile")==0)))
  3873. {
  3874. strcpy(fname, TxDefaultProfile_1_JSON);
  3875. }
  3876. // else
  3877. // {
  3878. // strcpy(fname, TxProfile_1_JSON);
  3879. // }
  3880. break;
  3881. case 2:
  3882. if((chargingProfilePurposeIsNULL == TRUE)||((chargingProfilePurposeIsNULL == FALSE)&&(strcmp(chargingProfilePurposeStr,"TxDefaultProfile")==0)))
  3883. {
  3884. strcpy(fname, TxDefaultProfile_2_JSON);
  3885. }
  3886. // else
  3887. // {
  3888. // strcpy(fname, TxProfile_2_JSON);
  3889. // }
  3890. break;
  3891. default:
  3892. strcpy(fname, ChargePointMaxProfile_JSON );
  3893. break;
  3894. }
  3895. }
  3896. else
  3897. {
  3898. strcpy(fname, ChargePointMaxProfile_JSON );
  3899. }
  3900. fptr1 = fopen(fname, "r");
  3901. if (!fptr1)
  3902. {
  3903. //file not exist
  3904. DEBUG_ERROR("Unable to open the input file!!\n");
  3905. fptr1 = fopen(fname, "w+");
  3906. }
  3907. fclose(fptr1);
  3908. if(connectorIsNULL == FALSE && (connectorIdInt != 0) && ( (connectorIdInt-1) > gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/ ) )
  3909. {
  3910. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Unknown] );
  3911. goto end;
  3912. }
  3913. if((connectorIsNULL == FALSE) && (connectorIdInt == 0) )
  3914. {
  3915. //clear the whole contents of a file in C
  3916. fclose(fopen(ChargePointMaxProfile_JSON, "w"));
  3917. fclose(fopen(TxDefaultProfile_0_JSON, "w"));
  3918. fclose(fopen(TxDefaultProfile_1_JSON, "w"));
  3919. fclose(fopen(TxDefaultProfile_2_JSON, "w"));
  3920. fclose(fopen(TxProfile_1_JSON, "w"));
  3921. fclose(fopen(TxProfile_2_JSON, "w"));
  3922. #if 0
  3923. fclose(fopen(ChargingProfile_0_JSON, "w"));
  3924. fclose(fopen(ChargingProfile_1_JSON, "w"));
  3925. fclose(fopen(ChargingProfile_2_JSON, "w"));
  3926. #endif
  3927. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
  3928. }
  3929. else
  3930. {
  3931. fptr1 = fopen(fname, "r");
  3932. fptr2 = fopen(temp, "w+");
  3933. while(fscanf(fptr1, "%s", word) != EOF)
  3934. {
  3935. //DEBUG_INFO("word=%s\n",word);
  3936. if(strcmp(word, "chargingProfileId") == 0)
  3937. {
  3938. n_chargingProfile = n_chargingProfile + 1;
  3939. DEBUG_INFO("chargingProfileId Found\n");
  3940. }
  3941. }
  3942. rewind(fptr1);
  3943. //search Charging Profile Element
  3944. //int i= 0;
  3945. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL )
  3946. {
  3947. //*************************tempconnectorIdInt*********************************/
  3948. loc = strstr(sLineWord, "connectorId");
  3949. c = 0;
  3950. memset(sstr ,0, sizeof(sstr) );
  3951. while (loc[strlen("connectorId")+2+c] != ',')
  3952. {
  3953. sstr[c] = loc[strlen("connectorId")+2+c];
  3954. c++;
  3955. }
  3956. sstr[c] = '\0';
  3957. tempconnectorIdInt = atoi(sstr);
  3958. //chargingProfileId
  3959. c = 0;
  3960. loc = strstr(sLineWord, "chargingProfileId");
  3961. memset(sstr ,0, sizeof(sstr) );
  3962. while (loc[strlen("chargingProfileId")+2+c] != ',')
  3963. {
  3964. sstr[c] = loc[strlen("chargingProfileId")+2+c];
  3965. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3966. c++;
  3967. }
  3968. sstr[c] = '\0';
  3969. tempchargingProfileIdInt = atoi(sstr);
  3970. //stackLevel
  3971. c = 0;
  3972. loc = strstr(sLineWord, "stackLevel");
  3973. memset(sstr ,0, sizeof(sstr) );
  3974. while (loc[strlen("stackLevel")+2+c] != ',')
  3975. {
  3976. sstr[c] = loc[strlen("stackLevel")+2+c];
  3977. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3978. c++;
  3979. }
  3980. sstr[c] = '\0';
  3981. tempstackLevelInt = atoi(sstr);
  3982. c = 0;
  3983. loc = strstr(sLineWord, "chargingProfilePurpose");
  3984. memset(sstr ,0, sizeof(sstr) );
  3985. while (loc[3+strlen("chargingProfilePurpose")+c] != '\"')
  3986. {
  3987. sstr[c] = loc[3+strlen("chargingProfilePurpose")+c];
  3988. c++;
  3989. }
  3990. sstr[c] = '\0';
  3991. strcpy(tempchargingProfilePurposeStr, sstr);
  3992. if(chargingProfileIdIsNULL == FALSE)
  3993. {
  3994. if(tempchargingProfileIdInt == chargingProfileIdInt)
  3995. {
  3996. //DEBUG_INFO("\n OCPP clear 0-1 !!!\n");
  3997. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
  3998. clearflag = TRUE;
  3999. continue;
  4000. }
  4001. else
  4002. {
  4003. //DEBUG_INFO("\n OCPP clear 0-2 !!!\n");
  4004. //json_object_array_add(newHeatMap, jsonitem);
  4005. fprintf(fptr2, sLineWord);//writing data into file
  4006. }
  4007. }
  4008. else
  4009. {
  4010. if((connectorIsNULL == FALSE) && (connectorIdInt != 0) && ( connectorIdInt == tempconnectorIdInt))
  4011. {
  4012. if((stackLevelIsNULL == TRUE)||((stackLevelIsNULL == FALSE)&& (tempstackLevelInt == stackLevelInt)))
  4013. {
  4014. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
  4015. clearflag = TRUE;
  4016. continue;
  4017. }
  4018. }
  4019. else if((connectorIsNULL == TRUE) && ((tempstackLevelInt == stackLevelInt) || (strcmp(tempchargingProfilePurposeStr, chargingProfilePurposeStr) == 0)))
  4020. {
  4021. if((stackLevelIsNULL == FALSE)|| (chargingProfilePurposeIsNULL == FALSE))
  4022. {
  4023. if( ((stackLevelIsNULL == FALSE) &&(tempstackLevelInt == stackLevelInt)) ||
  4024. ((chargingProfilePurposeIsNULL == FALSE)&&(strcmp(tempchargingProfilePurposeStr, chargingProfilePurposeStr) == 0)) )
  4025. {
  4026. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
  4027. clearflag = TRUE;
  4028. continue;
  4029. }
  4030. }
  4031. }
  4032. else
  4033. {
  4034. //json_object_array_add(newHeatMap, jsonitem);
  4035. fprintf(fptr2, sLineWord);//writing data into file
  4036. }
  4037. }
  4038. memset(sLineWord, 0, sizeof sLineWord);
  4039. }
  4040. if(clearflag == FALSE)
  4041. {
  4042. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Unknown] );
  4043. goto end;
  4044. }
  4045. fclose(fptr1);
  4046. fclose(fptr2);
  4047. sprintf(str,"rm -f %s",fname);
  4048. system(str);
  4049. resultRename = rename(temp, fname);
  4050. if(resultRename == 0)
  4051. {
  4052. DEBUG_ERROR("File ChargingProfile renamed successfully");
  4053. }
  4054. else
  4055. {
  4056. DEBUG_ERROR("Error: unable to rename the ChargingProfile file");
  4057. }
  4058. }
  4059. end:
  4060. sendClearChargingProfileConfirmation(uuid, comfirmstr);
  4061. return result;
  4062. }
  4063. int handleDataTransferRequest(char *uuid, char *payload)
  4064. {
  4065. mtrace();
  4066. int result = FAIL;
  4067. //Payload={"vendorId":"Phihong","messageId":"MSGID","data":"Data1"}
  4068. char tempvendorId[255]={0};
  4069. char tempmessageId[50]={0};
  4070. char tempdata[50]={0};
  4071. char sstr[160]={0};//sstr[200]={ 0 };
  4072. char message[80]={0};
  4073. int c = 0;
  4074. char *loc;
  4075. DEBUG_INFO("handle DataTransferRequest\n");
  4076. if((uuid != NULL) && (payload != NULL))
  4077. {
  4078. //===============================
  4079. // vendorId
  4080. //===============================
  4081. c = 0;
  4082. loc = strstr(payload, "vendorId");
  4083. while (loc[strlen("vendorId")+3+c] != '\"')
  4084. {
  4085. sstr[c] = loc[strlen("vendorId")+3+c];
  4086. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4087. c++;
  4088. }
  4089. sstr[c] = '\0';
  4090. strcpy(tempvendorId,sstr);
  4091. //===============================
  4092. // messageId
  4093. //===============================
  4094. memset(sstr ,0, sizeof(sstr) );
  4095. c = 0;
  4096. loc = strstr(payload, "messageId");
  4097. while (loc[strlen("messageId")+3+c] != '\"')
  4098. {
  4099. sstr[c] = loc[strlen("messageId")+3+c];
  4100. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4101. c++;
  4102. }
  4103. sstr[c] = '\0';
  4104. strcpy(tempmessageId,sstr);
  4105. //===============================
  4106. // data
  4107. //===============================
  4108. memset(sstr ,0, sizeof(sstr) );
  4109. c = 0;
  4110. loc = strstr(payload, "data");
  4111. printf("loc=%s\n",loc);
  4112. while (loc[strlen("data")+3+c] != '\"')
  4113. {
  4114. sstr[c] = loc[strlen("data")+3+c];
  4115. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4116. c++;
  4117. }
  4118. sstr[c] = '\0';
  4119. strcpy(tempdata,sstr);
  4120. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"data\":\"vendorId-%s messageId-%s data-%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "Rejected", tempvendorId, tempmessageId, tempdata );
  4121. }
  4122. else
  4123. {
  4124. char guid[37]={0};
  4125. random_uuid(guid);
  4126. //[2,"1577349264923","DataTransfer",{"vendorId":"Phihong","messageId":"MSGID","data":"Data1"}]
  4127. sprintf(message,"[%d,\"%s\",\"%s\",{\"vendorId\":\"Phihong\",\"messageId\":\"MSGID\",\"data\":\"Data1\"}]",MESSAGE_TYPE_CALL, guid, "DataTransfer");
  4128. }
  4129. LWS_Send(message);
  4130. return result;
  4131. }
  4132. #if 0
  4133. long long diff_tm(struct tm *a, struct tm *b) {
  4134. return a->tm_sec - b->tm_sec
  4135. + 60LL * (a->tm_min - b->tm_min)
  4136. + 3600LL * (a->tm_hour - b->tm_hour)
  4137. + 86400LL * (a->tm_yday - b->tm_yday)
  4138. + (a->tm_year - 70) * 31536000LL
  4139. - (a->tm_year - 69) / 4 * 86400LL
  4140. + (a->tm_year - 1) / 100 * 86400LL
  4141. - (a->tm_year + 299) / 400 * 86400LL
  4142. - (b->tm_year - 70) * 31536000LL
  4143. + (b->tm_year - 69) / 4 * 86400LL
  4144. - (b->tm_year - 1) / 100 * 86400LL
  4145. + (b->tm_year + 299) /400 * 86400LL;
  4146. }
  4147. #endif
  4148. int handleGetCompositeScheduleRequest(char *uuid, char *payload)
  4149. {
  4150. mtrace();
  4151. int result = FAIL;
  4152. int connectorIdInt, durationInt;
  4153. char chargingRateUnitStr[4]={0};
  4154. //int tempconnectorIdInt,
  4155. int tempdurationInt;
  4156. float tempminChargingRateFloat = 0.0;
  4157. char tempvalidFromStr[30]={0},tempchargingRateUnitStr[4]={0}, tempstartScheduleStr[30]={0};
  4158. int tempStartPeriodInt=0;
  4159. float tempLimitInt=0.0;//0.1;
  4160. int tempNumberPhasesInt=0;
  4161. char fname[200];
  4162. char comfirmstr[20];
  4163. //float totallimit =0.0;
  4164. float MinChargingRate =0.0;
  4165. double diff_t;
  4166. struct tm tp;
  4167. //int clearflag = FALSE;
  4168. FILE *fptr1;//, *fptr2;
  4169. //char temp[] = "../Storage/OCPP/temp.json";
  4170. int c = 0;
  4171. //int i = 0;
  4172. char * pch;
  4173. char *loc;
  4174. char sstr[200]={ 0 };
  4175. int n_chargingProfile = 0;
  4176. int n_SchedulePeriods = 0;
  4177. char SchedulePeriodList[10][200]={0};
  4178. char sLineWord[800]={0};
  4179. //int n_periods = 0;
  4180. char word[1000]={0};
  4181. int confirmPeriods = 0;
  4182. struct StructProfile ChargePointMaxProfile;
  4183. struct StructProfile TxDefaultProfile;
  4184. struct StructProfile TxProfile;
  4185. struct StructProfile TxDefaultProfiletemp[2]={0};
  4186. int TxDefaultProfileFileIsNull=FALSE;
  4187. int ChargePointMaxProfileIsNull=FALSE;
  4188. int TxProfileIsNull=FALSE;
  4189. int CompositeSceduleIndex = 0;
  4190. char ChargePointMaxProfileScheduleStr[30]={0};
  4191. char TxDefaultProfileScheduleStr[30]={0};
  4192. char TxProfileScheduleStr[30]={0};
  4193. memset(&ChargePointMaxProfile,0,sizeof(struct StructProfile));
  4194. memset(&TxDefaultProfile,0,sizeof(struct StructProfile));
  4195. memset(&TxProfile,0,sizeof(struct StructProfile));
  4196. DEBUG_INFO("handleGetCompositeScheduleRequest\n");
  4197. c=0;
  4198. loc = strstr(payload, "connectorId");
  4199. memset(sstr ,0, sizeof(sstr) );
  4200. while ((loc[strlen("connectorId")+2+c] != '}') && (loc[strlen("connectorId")+2+c] != ','))
  4201. {
  4202. sstr[c] = loc[strlen("connectorId")+2+c];
  4203. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4204. c++;
  4205. }
  4206. sstr[c] = '\0';
  4207. connectorIdInt = atoi(sstr);
  4208. c=0;
  4209. loc = strstr(payload, "duration");
  4210. memset(sstr ,0, sizeof(sstr) );
  4211. while ((loc[strlen("duration")+2+c] != '}') && (loc[strlen("duration")+2+c] != ','))
  4212. {
  4213. sstr[c] = loc[strlen("duration")+2+c];
  4214. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4215. c++;
  4216. }
  4217. sstr[c] = '\0';
  4218. durationInt = atoi(sstr);
  4219. c = 0;
  4220. loc = strstr(payload, "chargingRateUnit");
  4221. memset(sstr ,0, sizeof(sstr) );
  4222. if(loc == NULL)
  4223. {
  4224. }
  4225. else
  4226. {
  4227. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  4228. {
  4229. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  4230. c++;
  4231. }
  4232. sstr[c] = '\0';
  4233. strcpy(chargingRateUnitStr, sstr);
  4234. }
  4235. CompositeSceduleIndex = (connectorIdInt > 0) ?(connectorIdInt -1) :0;
  4236. memset(ShmOCPP16Data->GetCompositeSchedule, 0, sizeof(struct StructChargingSchedulePeriod)*gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/ );
  4237. if(connectorIdInt==0) // connectorId is 0
  4238. {
  4239. //******************************ChargePointMaxProfile*****************************************************/
  4240. strcpy(fname, ChargePointMaxProfile_JSON );
  4241. char word[30]={0};
  4242. char sLineWord[1060]={0};
  4243. int n_chargingProfile=0;
  4244. ChargePointMaxProfileIsNull=TRUE;
  4245. if((access(fname,F_OK))!=-1)
  4246. {
  4247. fptr1 = fopen(fname, "r");
  4248. int c;
  4249. c = fgetc(fptr1);
  4250. //DEBUG_INFO("c:%d\n",c);
  4251. rewind(fptr1);
  4252. if(c == EOF)
  4253. {
  4254. DEBUG_INFO("\n End of file ChargingProfile reached.");
  4255. ChargePointMaxProfileIsNull=TRUE;
  4256. fclose(fptr1);
  4257. }
  4258. else
  4259. {
  4260. ChargePointMaxProfileIsNull=FALSE;
  4261. while(fscanf(fptr1, "%s", word) != EOF)
  4262. {
  4263. if(strcmp(word, "chargingProfileId") == 0)
  4264. {
  4265. n_chargingProfile = n_chargingProfile + 1;
  4266. printf("Found\n");
  4267. }
  4268. }
  4269. rewind(fptr1);
  4270. //search Charging Profile Element
  4271. int i= 0;
  4272. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
  4273. #if 0
  4274. /***********connectorId****************/
  4275. c = 0;
  4276. loc = strstr(sLineWord, "connectorId");
  4277. // printf("loc=%s\n",loc);
  4278. memset(sstr ,0, sizeof(sstr) );
  4279. while (loc[strlen("connectorId")+2+c] != ',')
  4280. {
  4281. sstr[c] = loc[strlen("connectorId")+2+c];
  4282. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4283. c++;
  4284. }
  4285. sstr[c] = '\0';
  4286. tempconnectorIdInt = atoi(sstr);
  4287. #endif
  4288. //***********validFrom**************/
  4289. c = 0;
  4290. loc = strstr(sLineWord, "validFrom");
  4291. //DEBUG_INFO("loc=%s\n",loc);
  4292. memset(sstr ,0, sizeof(sstr) );
  4293. if(loc != NULL)
  4294. {
  4295. while (loc[3+strlen("validFrom")+c] != '\"')
  4296. {
  4297. sstr[c] = loc[3+strlen("validFrom")+c];
  4298. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4299. c++;
  4300. }
  4301. sstr[c] = '\0';
  4302. DEBUG_INFO("validFrom=%s\n",sstr);
  4303. strcpy(tempvalidFromStr,sstr);
  4304. }
  4305. else
  4306. {
  4307. strcpy(tempvalidFromStr,"");
  4308. }
  4309. //**********startSchedule**********/
  4310. c = 0;
  4311. loc = strstr(sLineWord, "startSchedule");
  4312. //DEBUG_INFO("loc=%s\n",loc);
  4313. memset(sstr ,0, sizeof(sstr) );
  4314. while (loc[3+strlen("startSchedule")+c] != '\"')
  4315. {
  4316. sstr[c] = loc[3+strlen("startSchedule")+c];
  4317. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4318. c++;
  4319. }
  4320. sstr[c] = '\0';
  4321. strcpy(tempstartScheduleStr, sstr);
  4322. strcpy(ChargePointMaxProfileScheduleStr, sstr);
  4323. //**********chargingRateUnit**********/
  4324. c = 0;
  4325. loc = strstr(sLineWord, "chargingRateUnit");
  4326. memset(sstr ,0, sizeof(sstr) );
  4327. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  4328. {
  4329. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  4330. c++;
  4331. }
  4332. sstr[c] = '\0';
  4333. strcpy(tempchargingRateUnitStr, sstr);
  4334. //**********minChargingRate*******/
  4335. c = 0;
  4336. loc = strstr(sLineWord, "minChargingRate");
  4337. //printf("loc=%s\n",loc);
  4338. if(loc != NULL)
  4339. {
  4340. memset(sstr ,0, sizeof(sstr) );
  4341. while ((loc[2+strlen("minChargingRate")+c] != ',')&&(loc[2+strlen("minChargingRate")+c] != '}'))
  4342. {
  4343. sstr[c] = loc[2+strlen("minChargingRate")+c];
  4344. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4345. c++;
  4346. }
  4347. sstr[c] = '\0';
  4348. tempminChargingRateFloat = atof(sstr);
  4349. }
  4350. else
  4351. {
  4352. tempminChargingRateFloat = 0.0;
  4353. }
  4354. //
  4355. strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  4356. tp.tm_isdst = -1;
  4357. time_t utc = mktime(&tp);
  4358. // current time
  4359. time_t t = time(NULL);
  4360. diff_t = difftime(t, utc);
  4361. //parsing strings to words
  4362. i = 0;
  4363. loc = strstr(sLineWord, "chargingSchedulePeriod");
  4364. loc = loc+3+strlen("chargingSchedulePeriod");
  4365. pch = strtok(loc ,"{");
  4366. while (pch != NULL)
  4367. {
  4368. strcpy(SchedulePeriodList[i], pch);
  4369. //printf ("SchedulePeriodList[%d]:%s\n",i,SchedulePeriodList[i]);
  4370. //printf ("%s\n",pch);
  4371. pch = strtok (NULL, "{");
  4372. i = i + 1;
  4373. }
  4374. n_SchedulePeriods = i;
  4375. for(int i=0;i<n_SchedulePeriods;i++)
  4376. {
  4377. //*************startPeriod****************/
  4378. c = 0;
  4379. loc = strstr(SchedulePeriodList[i], "startPeriod");
  4380. memset(sstr ,0, sizeof(sstr) );
  4381. while (loc[strlen("startPeriod")+2+c] != ',')
  4382. {
  4383. sstr[c] = loc[strlen("startPeriod")+2+c];
  4384. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4385. c++;
  4386. }
  4387. sstr[c] = '\0';
  4388. tempStartPeriodInt = atoi(sstr);
  4389. //*************limit****************/
  4390. c = 0;
  4391. loc = strstr(SchedulePeriodList[i], "limit");
  4392. memset(sstr ,0, sizeof(sstr) );
  4393. while (loc[strlen("limit")+2+c] != ',')
  4394. {
  4395. sstr[c] = loc[strlen("limit")+2+c];
  4396. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4397. c++;
  4398. }
  4399. sstr[c] = '\0';
  4400. tempLimitInt = atof(sstr);
  4401. //*************numberPhases****************/
  4402. c = 0;
  4403. loc = strstr(SchedulePeriodList[i], "numberPhases");
  4404. memset(sstr ,0, sizeof(sstr) );
  4405. while ((loc[strlen("numberPhases")+2+c] != ',')&&(loc[strlen("numberPhases")+2+c] != '}'))
  4406. {
  4407. sstr[c] = loc[strlen("numberPhases")+2+c];
  4408. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4409. c++;
  4410. }
  4411. sstr[c] = '\0';
  4412. tempNumberPhasesInt = atoi(sstr);
  4413. ChargePointMaxProfile.Duration = durationInt;
  4414. ChargePointMaxProfile.TotalPeriod = n_SchedulePeriods;
  4415. ChargePointMaxProfile.Period[i].Limit = tempLimitInt;
  4416. ChargePointMaxProfile.Period[i].NumberPhases = tempNumberPhasesInt;
  4417. ChargePointMaxProfile.Period[i].StartPeriod = tempStartPeriodInt;
  4418. }
  4419. if(MinChargingRate < tempminChargingRateFloat)
  4420. MinChargingRate = tempminChargingRateFloat;
  4421. }
  4422. }// End of file ChargingProfile
  4423. } //THE END OF ACCESS ChargePointMaxProfile
  4424. //******************************TxDefaultProfile***********************************************/
  4425. strcpy(fname, TxDefaultProfile_0_JSON);
  4426. memset(word, 0, 30);
  4427. memset(sLineWord, 0, 1060);
  4428. //char word[30]={0};
  4429. //char sLineWord[1060]={0};
  4430. n_chargingProfile=0;
  4431. TxDefaultProfileFileIsNull=TRUE;
  4432. if((access(fname,F_OK))!=-1)
  4433. {
  4434. fptr1 = fopen(fname, "r");
  4435. c = 0;
  4436. c = fgetc(fptr1);
  4437. //DEBUG_INFO("c:%d\n",c);
  4438. rewind(fptr1);
  4439. if(c == EOF)
  4440. {
  4441. DEBUG_INFO("\n End of file ChargingProfile reached.");
  4442. TxDefaultProfileFileIsNull=TRUE;
  4443. fclose(fptr1);
  4444. }
  4445. else
  4446. {
  4447. TxDefaultProfileFileIsNull=FALSE;
  4448. while(fscanf(fptr1, "%s", word) != EOF)
  4449. {
  4450. if(strcmp(word, "chargingProfileId") == 0)
  4451. {
  4452. n_chargingProfile = n_chargingProfile + 1;
  4453. printf("Found\n");
  4454. }
  4455. }
  4456. rewind(fptr1);
  4457. //search Charging Profile Element
  4458. int i= 0;
  4459. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
  4460. #if 0
  4461. /***********connectorId****************/
  4462. c = 0;
  4463. loc = strstr(sLineWord, "connectorId");
  4464. // printf("loc=%s\n",loc);
  4465. memset(sstr ,0, sizeof(sstr) );
  4466. while (loc[strlen("connectorId")+2+c] != ',')
  4467. {
  4468. sstr[c] = loc[strlen("connectorId")+2+c];
  4469. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4470. c++;
  4471. }
  4472. sstr[c] = '\0';
  4473. DEBUG_INFO("connectorId=%d\n",atoi(sstr));
  4474. tempconnectorIdInt = atoi(sstr);
  4475. #endif
  4476. //***********validFrom**************/
  4477. c = 0;
  4478. loc = strstr(sLineWord, "validFrom");
  4479. //DEBUG_INFO("loc=%s\n",loc);
  4480. memset(sstr ,0, sizeof(sstr) );
  4481. if(loc != NULL)
  4482. {
  4483. while (loc[3+strlen("validFrom")+c] != '\"')
  4484. {
  4485. sstr[c] = loc[3+strlen("validFrom")+c];
  4486. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4487. c++;
  4488. }
  4489. sstr[c] = '\0';
  4490. DEBUG_INFO("validFrom=%s\n",sstr);
  4491. strcpy(tempvalidFromStr,sstr);
  4492. }
  4493. else
  4494. {
  4495. strcpy(tempvalidFromStr,"");
  4496. }
  4497. //**********startSchedule**********/
  4498. c = 0;
  4499. loc = strstr(sLineWord, "startSchedule");
  4500. //DEBUG_INFO("loc=%s\n",loc);
  4501. memset(sstr ,0, sizeof(sstr) );
  4502. while (loc[3+strlen("startSchedule")+c] != '\"')
  4503. {
  4504. sstr[c] = loc[3+strlen("startSchedule")+c];
  4505. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4506. c++;
  4507. }
  4508. sstr[c] = '\0';
  4509. strcpy(tempstartScheduleStr, sstr);
  4510. strcpy(TxDefaultProfileScheduleStr, sstr);
  4511. DEBUG_INFO(" debug 3-1\n");
  4512. //**********chargingRateUnit**********/
  4513. c = 0;
  4514. loc = strstr(sLineWord, "chargingRateUnit");
  4515. memset(sstr ,0, sizeof(sstr) );
  4516. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  4517. {
  4518. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  4519. c++;
  4520. }
  4521. sstr[c] = '\0';
  4522. strcpy(tempchargingRateUnitStr, sstr);
  4523. //**********minChargingRate*******/
  4524. c = 0;
  4525. loc = strstr(sLineWord, "minChargingRate");
  4526. //printf("loc=%s\n",loc);
  4527. if(loc != NULL)
  4528. {
  4529. memset(sstr ,0, sizeof(sstr) );
  4530. while ((loc[2+strlen("minChargingRate")+c] != ',')&&(loc[2+strlen("minChargingRate")+c] != '}'))
  4531. {
  4532. sstr[c] = loc[2+strlen("minChargingRate")+c];
  4533. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4534. c++;
  4535. }
  4536. sstr[c] = '\0';
  4537. tempminChargingRateFloat = atof(sstr);
  4538. }
  4539. else
  4540. {
  4541. tempminChargingRateFloat = 0.0;
  4542. }
  4543. //
  4544. strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  4545. tp.tm_isdst = -1;
  4546. time_t utc = mktime(&tp);
  4547. // current time
  4548. time_t t = time(NULL);
  4549. diff_t = difftime(t, utc);
  4550. //parsing strings to words
  4551. i = 0;
  4552. loc = strstr(sLineWord, "chargingSchedulePeriod");
  4553. loc = loc+3+strlen("chargingSchedulePeriod");
  4554. pch = strtok(loc ,"{");
  4555. while (pch != NULL)
  4556. {
  4557. strcpy(SchedulePeriodList[i], pch);
  4558. //printf ("SchedulePeriodList[%d]:%s\n",i,SchedulePeriodList[i]);
  4559. //printf ("%s\n",pch);
  4560. pch = strtok (NULL, "{");
  4561. i = i + 1;
  4562. }
  4563. n_SchedulePeriods = i;
  4564. for(int i=0;i<n_SchedulePeriods;i++)
  4565. {
  4566. //*************startPeriod****************/
  4567. c = 0;
  4568. loc = strstr(SchedulePeriodList[i], "startPeriod");
  4569. memset(sstr ,0, sizeof(sstr) );
  4570. while (loc[strlen("startPeriod")+2+c] != ',')
  4571. {
  4572. sstr[c] = loc[strlen("startPeriod")+2+c];
  4573. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4574. c++;
  4575. }
  4576. sstr[c] = '\0';
  4577. tempStartPeriodInt = atoi(sstr);
  4578. //*************limit****************/
  4579. c = 0;
  4580. loc = strstr(SchedulePeriodList[i], "limit");
  4581. memset(sstr ,0, sizeof(sstr) );
  4582. while (loc[strlen("limit")+2+c] != ',')
  4583. {
  4584. sstr[c] = loc[strlen("limit")+2+c];
  4585. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4586. c++;
  4587. }
  4588. sstr[c] = '\0';
  4589. tempLimitInt = atof(sstr);
  4590. //*************numberPhases****************/
  4591. c = 0;
  4592. loc = strstr(SchedulePeriodList[i], "numberPhases");
  4593. memset(sstr ,0, sizeof(sstr) );
  4594. while ((loc[strlen("numberPhases")+2+c] != ',')&&(loc[strlen("numberPhases")+2+c] != '}'))
  4595. {
  4596. sstr[c] = loc[strlen("numberPhases")+2+c];
  4597. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4598. c++;
  4599. }
  4600. sstr[c] = '\0';
  4601. tempNumberPhasesInt = atoi(sstr);
  4602. TxDefaultProfile.Duration = durationInt;
  4603. TxDefaultProfile.TotalPeriod = n_SchedulePeriods;
  4604. TxDefaultProfile.Period[i].Limit = tempLimitInt;
  4605. TxDefaultProfile.Period[i].NumberPhases = tempNumberPhasesInt;
  4606. TxDefaultProfile.Period[i].StartPeriod = tempStartPeriodInt;
  4607. }
  4608. if(MinChargingRate < tempminChargingRateFloat)
  4609. MinChargingRate = tempminChargingRateFloat;
  4610. }
  4611. }
  4612. }// the end of ACCESS TxDefaultProfile
  4613. // Composite Schedule
  4614. if((ChargePointMaxProfileIsNull==FALSE)&&(TxDefaultProfileFileIsNull==FALSE))
  4615. {
  4616. strcpy(CurrentChargingProfileScheduleStr, TxDefaultProfileScheduleStr);
  4617. for(int index=0; index < TxDefaultProfile.TotalPeriod ; index++)
  4618. {
  4619. if(ChargePointMaxProfile.Period[0].Limit > TxDefaultProfile.Period[index].Limit)
  4620. {
  4621. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[index].Limit = TxDefaultProfile.Period[index].Limit;
  4622. }
  4623. else
  4624. {
  4625. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[index].Limit = ChargePointMaxProfile.Period[0].Limit;
  4626. }
  4627. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[index].NumberPhases = TxDefaultProfile.Period[index].NumberPhases; //for discussion
  4628. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[index].StartPeriod = TxDefaultProfile.Period[index].StartPeriod;
  4629. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.Duration = TxDefaultProfile.Duration;
  4630. }
  4631. }
  4632. //* Define temporary variables */
  4633. struct tm *gtime;
  4634. time_t now;
  4635. char buf[28];
  4636. /* Read the current system time */
  4637. time(&now);
  4638. /* Convert the system time to GMT (now UTC) */
  4639. gtime = gmtime(&now);
  4640. strftime(buf, 28, "%Y-%m-%dT%H:%M:%SZ", gtime);
  4641. // make .conf
  4642. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.StartSchedule,buf);
  4643. //MaxChargingProfilesInstalled is 10
  4644. // ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod = (struct StructChargingSchedulePeriod *) malloc(sizeof(struct StructChargingSchedulePeriod)* 9);
  4645. memset(ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod, 0, sizeof(struct StructChargingSchedulePeriod)* 9);
  4646. //nPeriod = 1;
  4647. if(chargingRateUnitStr[0] != 0)
  4648. {
  4649. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingRateUnit, chargingRateUnitStr );
  4650. }
  4651. else
  4652. {
  4653. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingRateUnit, "" );
  4654. }
  4655. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.MinChargingRate = MinChargingRate;
  4656. sprintf(comfirmstr, "%s", GetCompositeScheduleStatusStr[GetCompositeScheduleStatus_Accepted] );
  4657. confirmPeriods = 1;
  4658. }
  4659. else if ((connectorIdInt > 0)&&((connectorIdInt -1) < gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/) )
  4660. {
  4661. //*****************************ChargePointMaxProfile******************************************/
  4662. strcpy(fname, ChargePointMaxProfile_JSON);
  4663. ChargePointMaxProfileIsNull=TRUE;
  4664. if((access(ChargePointMaxProfile_JSON,F_OK))!=-1)
  4665. {
  4666. fptr1 = fopen(fname, "r");
  4667. int c;
  4668. c = fgetc(fptr1);
  4669. //DEBUG_INFO("c:%d\n",c);
  4670. rewind(fptr1);
  4671. if(c == EOF)
  4672. {
  4673. DEBUG_INFO("\n End of file reached.");
  4674. ChargePointMaxProfileIsNull=TRUE;
  4675. fclose(fptr1);
  4676. }
  4677. else
  4678. {
  4679. ChargePointMaxProfileIsNull=FALSE;
  4680. while(fscanf(fptr1, "%s", word) != EOF)
  4681. {
  4682. if(strcmp(word, "chargingProfileId") == 0)
  4683. {
  4684. n_chargingProfile = n_chargingProfile + 1;
  4685. }
  4686. }
  4687. rewind(fptr1);
  4688. //search Charging Profile Element
  4689. int i = 0;
  4690. int j = 0;
  4691. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
  4692. #if 0
  4693. /***********connectorId****************/
  4694. c = 0;
  4695. loc = strstr(sLineWord, "connectorId");
  4696. memset(sstr ,0, sizeof(sstr) );
  4697. while (loc[strlen("connectorId")+2+c] != ',')
  4698. {
  4699. sstr[c] = loc[strlen("connectorId")+2+c];
  4700. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4701. c++;
  4702. }
  4703. sstr[c] = '\0';
  4704. tempconnectorIdInt = atoi(sstr);
  4705. #endif
  4706. //***********validFrom**************/
  4707. c = 0;
  4708. loc = strstr(sLineWord, "validFrom");
  4709. if(loc != NULL)
  4710. {
  4711. memset(sstr ,0, sizeof(sstr) );
  4712. while (loc[3+strlen("validFrom")+c] != '\"')
  4713. {
  4714. sstr[c] = loc[3+strlen("validFrom")+c];
  4715. c++;
  4716. }
  4717. sstr[c] = '\0';
  4718. strcpy(tempvalidFromStr,sstr);
  4719. }
  4720. else
  4721. {
  4722. strcpy(tempvalidFromStr,"");
  4723. }
  4724. //***********validFrom**************/
  4725. c = 0;
  4726. loc = strstr(sLineWord, "duration");
  4727. if(loc != NULL)
  4728. {
  4729. memset(sstr ,0, sizeof(sstr) );
  4730. while (loc[2+strlen("duration")+c] != ',')
  4731. {
  4732. sstr[c] = loc[2+strlen("duration")+c];
  4733. c++;
  4734. }
  4735. sstr[c] = '\0';
  4736. tempdurationInt = atoi(sstr);
  4737. }
  4738. else
  4739. {
  4740. tempdurationInt = 0;
  4741. }
  4742. //**********startSchedule**********/
  4743. c = 0;
  4744. loc = strstr(sLineWord, "startSchedule");
  4745. memset(sstr ,0, sizeof(sstr) );
  4746. while (loc[3+strlen("startSchedule")+c] != '\"')
  4747. {
  4748. sstr[c] = loc[3+strlen("startSchedule")+c];
  4749. c++;
  4750. }
  4751. sstr[c] = '\0';
  4752. strcpy(tempstartScheduleStr, sstr);
  4753. strcpy(ChargePointMaxProfileScheduleStr, sstr);
  4754. //**********chargingRateUnit**********/
  4755. c = 0;
  4756. loc = strstr(sLineWord, "chargingRateUnit");
  4757. memset(sstr ,0, sizeof(sstr) );
  4758. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  4759. {
  4760. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  4761. c++;
  4762. }
  4763. sstr[c] = '\0';
  4764. strcpy(tempchargingRateUnitStr, sstr);
  4765. //**********minChargingRate*******/
  4766. c = 0;
  4767. loc = strstr(sLineWord, "minChargingRate");
  4768. if(loc != NULL)
  4769. {
  4770. memset(sstr ,0, sizeof(sstr) );
  4771. while ((loc[2+strlen("minChargingRate")+c] != ',')&&(loc[2+strlen("minChargingRate")+c] != '}'))
  4772. {
  4773. sstr[c] = loc[2+strlen("minChargingRate")+c];
  4774. c++;
  4775. }
  4776. sstr[c] = '\0';
  4777. tempminChargingRateFloat = atof(sstr);
  4778. }
  4779. else
  4780. {
  4781. tempminChargingRateFloat = 0.0;
  4782. }
  4783. //
  4784. strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  4785. tp.tm_isdst = -1;
  4786. time_t utc = mktime(&tp);
  4787. time_t t = time(NULL);
  4788. diff_t = difftime(t, utc);
  4789. DEBUG_INFO("diff_t=%f\n",diff_t);
  4790. DEBUG_INFO(" debug 5 -1\n");
  4791. //parsing strings to words
  4792. i = 0;
  4793. loc = strstr(sLineWord, "chargingSchedulePeriod");
  4794. loc = loc+3+strlen("chargingSchedulePeriod");
  4795. pch = strtok(loc ,"{");
  4796. while (pch != NULL)
  4797. {
  4798. strcpy(SchedulePeriodList[i], pch);
  4799. pch = strtok (NULL, "{");
  4800. i = i + 1;
  4801. }
  4802. n_SchedulePeriods = i;
  4803. for(int i=0;i<n_SchedulePeriods;i++)
  4804. {
  4805. //*************startPeriod****************/
  4806. c = 0;
  4807. loc = strstr(SchedulePeriodList[i], "startPeriod");
  4808. memset(sstr ,0, sizeof(sstr) );
  4809. while (loc[strlen("startPeriod")+2+c] != ',')
  4810. {
  4811. sstr[c] = loc[strlen("startPeriod")+2+c];
  4812. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4813. c++;
  4814. }
  4815. sstr[c] = '\0';
  4816. tempStartPeriodInt = atoi(sstr);
  4817. //*************limit****************/
  4818. c = 0;
  4819. loc = strstr(SchedulePeriodList[i], "limit");
  4820. memset(sstr ,0, sizeof(sstr) );
  4821. while (loc[strlen("limit")+2+c] != ',')
  4822. {
  4823. sstr[c] = loc[strlen("limit")+2+c];
  4824. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4825. c++;
  4826. }
  4827. sstr[c] = '\0';
  4828. tempLimitInt = atof(sstr);
  4829. //*************numberPhases****************/
  4830. c = 0;
  4831. loc = strstr(SchedulePeriodList[i], "numberPhases");
  4832. memset(sstr ,0, sizeof(sstr) );
  4833. while (loc[strlen("numberPhases")+2+c] != '}')
  4834. {
  4835. sstr[c] = loc[strlen("numberPhases")+2+c];
  4836. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4837. c++;
  4838. }
  4839. sstr[c] = '\0';
  4840. tempNumberPhasesInt = atoi(sstr);
  4841. if(j == 0)
  4842. {
  4843. ChargePointMaxProfile.Duration = tempdurationInt;
  4844. ChargePointMaxProfile.TotalPeriod = n_SchedulePeriods;
  4845. ChargePointMaxProfile.Period[i].Limit = tempLimitInt;
  4846. ChargePointMaxProfile.Period[i].NumberPhases = tempNumberPhasesInt;
  4847. ChargePointMaxProfile.Period[i].StartPeriod = tempStartPeriodInt;
  4848. }
  4849. }
  4850. if(MinChargingRate < tempminChargingRateFloat)
  4851. {
  4852. MinChargingRate = tempminChargingRateFloat;
  4853. }
  4854. if(confirmPeriods < n_SchedulePeriods)
  4855. {
  4856. confirmPeriods = n_SchedulePeriods;
  4857. }
  4858. j = j + 1;
  4859. }
  4860. fclose(fptr1);
  4861. }
  4862. }// the end of access file ChargePointMaxProfile
  4863. //****************************TxDefaultProfile************************************************/
  4864. switch(connectorIdInt)
  4865. {
  4866. case 0:
  4867. break;
  4868. case 1:
  4869. strcpy(fname, TxDefaultProfile_1_JSON );
  4870. break;
  4871. case 2:
  4872. strcpy(fname, TxDefaultProfile_2_JSON );
  4873. break;
  4874. default:
  4875. strcpy(fname, TxDefaultProfile_1_JSON );
  4876. break;
  4877. }
  4878. TxDefaultProfileFileIsNull=TRUE;
  4879. if((access(fname,F_OK))!=-1)
  4880. {
  4881. fptr1 = fopen(fname, "r");
  4882. c = 0;
  4883. c = fgetc(fptr1);
  4884. //DEBUG_INFO("c:%d\n",c);
  4885. rewind(fptr1);
  4886. if(c == EOF)
  4887. {
  4888. DEBUG_INFO("\n End of file reached.");
  4889. TxDefaultProfileFileIsNull=TRUE;
  4890. fclose(fptr1);
  4891. }
  4892. else
  4893. {
  4894. TxDefaultProfileFileIsNull=FALSE;
  4895. while(fscanf(fptr1, "%s", word) != EOF)
  4896. {
  4897. if(strcmp(word, "chargingProfileId") == 0)
  4898. {
  4899. n_chargingProfile = n_chargingProfile + 1;
  4900. }
  4901. }
  4902. rewind(fptr1);
  4903. //search Charging Profile Element
  4904. int i = 0;
  4905. int j = 0;
  4906. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
  4907. #if 0
  4908. /***********connectorId****************/
  4909. c = 0;
  4910. loc = strstr(sLineWord, "connectorId");
  4911. memset(sstr ,0, sizeof(sstr) );
  4912. while (loc[strlen("connectorId")+2+c] != ',')
  4913. {
  4914. sstr[c] = loc[strlen("connectorId")+2+c];
  4915. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4916. c++;
  4917. }
  4918. sstr[c] = '\0';
  4919. tempconnectorIdInt = atoi(sstr);
  4920. #endif
  4921. //***********validFrom**************/
  4922. c = 0;
  4923. loc = strstr(sLineWord, "validFrom");
  4924. if(loc != NULL)
  4925. {
  4926. memset(sstr ,0, sizeof(sstr) );
  4927. while (loc[3+strlen("validFrom")+c] != '\"')
  4928. {
  4929. sstr[c] = loc[3+strlen("validFrom")+c];
  4930. c++;
  4931. }
  4932. sstr[c] = '\0';
  4933. strcpy(tempvalidFromStr,sstr);
  4934. }
  4935. else
  4936. {
  4937. strcpy(tempvalidFromStr,"");
  4938. }
  4939. //***********validFrom**************/
  4940. c = 0;
  4941. loc = strstr(sLineWord, "duration");
  4942. if(loc != NULL)
  4943. {
  4944. memset(sstr ,0, sizeof(sstr) );
  4945. while (loc[2+strlen("duration")+c] != ',')
  4946. {
  4947. sstr[c] = loc[2+strlen("duration")+c];
  4948. c++;
  4949. }
  4950. sstr[c] = '\0';
  4951. tempdurationInt = atoi(sstr);
  4952. }
  4953. else
  4954. {
  4955. tempdurationInt = 0;
  4956. }
  4957. //**********startSchedule**********/
  4958. c = 0;
  4959. loc = strstr(sLineWord, "startSchedule");
  4960. memset(sstr ,0, sizeof(sstr) );
  4961. while (loc[3+strlen("startSchedule")+c] != '\"')
  4962. {
  4963. sstr[c] = loc[3+strlen("startSchedule")+c];
  4964. c++;
  4965. }
  4966. sstr[c] = '\0';
  4967. strcpy(tempstartScheduleStr, sstr);
  4968. strcpy(TxDefaultProfileScheduleStr, sstr);
  4969. //**********chargingRateUnit**********/
  4970. c = 0;
  4971. loc = strstr(sLineWord, "chargingRateUnit");
  4972. memset(sstr ,0, sizeof(sstr) );
  4973. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  4974. {
  4975. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  4976. c++;
  4977. }
  4978. sstr[c] = '\0';
  4979. strcpy(tempchargingRateUnitStr, sstr);
  4980. //**********minChargingRate*******/
  4981. c = 0;
  4982. loc = strstr(sLineWord, "minChargingRate");
  4983. if(loc != NULL)
  4984. {
  4985. memset(sstr ,0, sizeof(sstr) );
  4986. while ((loc[2+strlen("minChargingRate")+c] != ',')&&(loc[2+strlen("minChargingRate")+c] != '}'))
  4987. {
  4988. sstr[c] = loc[2+strlen("minChargingRate")+c];
  4989. c++;
  4990. }
  4991. sstr[c] = '\0';
  4992. tempminChargingRateFloat = atof(sstr);
  4993. }
  4994. else
  4995. {
  4996. tempminChargingRateFloat = 0.0;
  4997. }
  4998. //
  4999. strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  5000. tp.tm_isdst = -1;
  5001. time_t utc = mktime(&tp);
  5002. time_t t = time(NULL);
  5003. diff_t = difftime(t, utc);
  5004. DEBUG_INFO("diff_t=%f\n",diff_t);
  5005. //parsing strings to words
  5006. i = 0;
  5007. loc = strstr(sLineWord, "chargingSchedulePeriod");
  5008. loc = loc+3+strlen("chargingSchedulePeriod");
  5009. pch = strtok(loc ,"{");
  5010. while (pch != NULL)
  5011. {
  5012. strcpy(SchedulePeriodList[i], pch);
  5013. pch = strtok (NULL, "{");
  5014. i = i + 1;
  5015. }
  5016. n_SchedulePeriods = i;
  5017. for(int i=0;i<n_SchedulePeriods;i++)
  5018. {
  5019. //*************startPeriod****************/
  5020. c = 0;
  5021. loc = strstr(SchedulePeriodList[i], "startPeriod");
  5022. memset(sstr ,0, sizeof(sstr) );
  5023. while (loc[strlen("startPeriod")+2+c] != ',')
  5024. {
  5025. sstr[c] = loc[strlen("startPeriod")+2+c];
  5026. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5027. c++;
  5028. }
  5029. sstr[c] = '\0';
  5030. tempStartPeriodInt = atoi(sstr);
  5031. //*************limit****************/
  5032. c = 0;
  5033. loc = strstr(SchedulePeriodList[i], "limit");
  5034. memset(sstr ,0, sizeof(sstr) );
  5035. while (loc[strlen("limit")+2+c] != ',')
  5036. {
  5037. sstr[c] = loc[strlen("limit")+2+c];
  5038. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5039. c++;
  5040. }
  5041. sstr[c] = '\0';
  5042. tempLimitInt = atof(sstr);
  5043. //*************numberPhases****************/
  5044. c = 0;
  5045. loc = strstr(SchedulePeriodList[i], "numberPhases");
  5046. memset(sstr ,0, sizeof(sstr) );
  5047. while (loc[strlen("numberPhases")+2+c] != '}')
  5048. {
  5049. sstr[c] = loc[strlen("numberPhases")+2+c];
  5050. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5051. c++;
  5052. }
  5053. sstr[c] = '\0';
  5054. tempNumberPhasesInt = atoi(sstr);
  5055. if(j == 0)
  5056. {
  5057. TxDefaultProfile.Duration = tempdurationInt;
  5058. TxDefaultProfile.TotalPeriod = n_SchedulePeriods;
  5059. TxDefaultProfile.Period[i].Limit = tempLimitInt;
  5060. TxDefaultProfile.Period[i].NumberPhases = tempNumberPhasesInt;
  5061. TxDefaultProfile.Period[i].StartPeriod = tempStartPeriodInt;
  5062. }
  5063. else
  5064. {
  5065. //other stack level charging Profile
  5066. TxDefaultProfiletemp[j-1].Period[i].Limit = tempLimitInt;
  5067. TxDefaultProfiletemp[j-1].Period[i].NumberPhases = tempNumberPhasesInt;
  5068. TxDefaultProfiletemp[j-1].Period[i].StartPeriod = tempStartPeriodInt;
  5069. TxDefaultProfiletemp[j-1].Duration = tempdurationInt;
  5070. TxDefaultProfiletemp[j-1].TotalPeriod = n_SchedulePeriods;
  5071. }
  5072. }
  5073. if(MinChargingRate < tempminChargingRateFloat)
  5074. MinChargingRate = tempminChargingRateFloat;
  5075. if(confirmPeriods < n_SchedulePeriods)
  5076. confirmPeriods = n_SchedulePeriods;
  5077. j = j + 1;
  5078. }
  5079. fclose(fptr1);
  5080. //Stacking Charging Profiles
  5081. for(int l=0; l <(j-1) ;l++)
  5082. {
  5083. for(int k=0; k < TxDefaultProfiletemp[l].TotalPeriod; k++)
  5084. {
  5085. if(TxDefaultProfiletemp[l].Period[k].StartPeriod > TxDefaultProfile.Duration)
  5086. {
  5087. if((k >0) && ((TxDefaultProfiletemp[l].Period[k-1].StartPeriod < TxDefaultProfile.Duration) &&(TxDefaultProfiletemp[l].Period[k-1].StartPeriod >= TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod-1].StartPeriod )))
  5088. {
  5089. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].Limit = TxDefaultProfiletemp[l].Period[k-1].Limit;
  5090. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].NumberPhases = TxDefaultProfiletemp[l].Period[k-1].NumberPhases;
  5091. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].StartPeriod = TxDefaultProfile.Duration;
  5092. TxDefaultProfile.TotalPeriod = TxDefaultProfile.TotalPeriod + 1;
  5093. TxDefaultProfile.Duration = TxDefaultProfiletemp[l].Duration;
  5094. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].Limit = TxDefaultProfiletemp[l].Period[k].Limit;
  5095. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].NumberPhases = TxDefaultProfiletemp[l].Period[k].NumberPhases;
  5096. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].StartPeriod = TxDefaultProfiletemp[l].Period[k].StartPeriod;
  5097. TxDefaultProfile.TotalPeriod = TxDefaultProfile.TotalPeriod + 1;
  5098. TxDefaultProfile.Duration = TxDefaultProfiletemp[l].Duration;
  5099. }
  5100. else
  5101. {
  5102. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].Limit = TxDefaultProfiletemp[l].Period[k].Limit;
  5103. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].NumberPhases = TxDefaultProfiletemp[l].Period[k].NumberPhases;
  5104. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].StartPeriod = TxDefaultProfiletemp[l].Period[k].StartPeriod;
  5105. TxDefaultProfile.TotalPeriod = TxDefaultProfile.TotalPeriod + 1;
  5106. TxDefaultProfile.Duration = TxDefaultProfiletemp[l].Duration;
  5107. }
  5108. }
  5109. }
  5110. }
  5111. //end of Stacking Charging Profiles
  5112. }
  5113. }// the end of ACCESS TxDefaultProfile
  5114. //****************************TxProfile************************************************/
  5115. switch(connectorIdInt)
  5116. {
  5117. case 0:
  5118. break;
  5119. case 1:
  5120. strcpy(fname, TxProfile_1_JSON );
  5121. break;
  5122. case 2:
  5123. strcpy(fname, TxProfile_2_JSON );
  5124. break;
  5125. default:
  5126. strcpy(fname, TxProfile_1_JSON );
  5127. break;
  5128. }
  5129. TxProfileIsNull=TRUE;
  5130. if((access(fname,F_OK))!=-1)
  5131. {
  5132. fptr1 = fopen(fname, "r");
  5133. c = 0;
  5134. c = fgetc(fptr1);
  5135. //DEBUG_INFO("c:%d\n",c);
  5136. rewind(fptr1);
  5137. if(c == EOF)
  5138. {
  5139. DEBUG_INFO("\n End of file reached.");
  5140. TxProfileIsNull=TRUE;
  5141. fclose(fptr1);
  5142. }
  5143. else
  5144. {
  5145. TxProfileIsNull=FALSE;
  5146. while(fscanf(fptr1, "%s", word) != EOF)
  5147. {
  5148. if(strcmp(word, "chargingProfileId") == 0)
  5149. {
  5150. n_chargingProfile = n_chargingProfile + 1;
  5151. }
  5152. }
  5153. rewind(fptr1);
  5154. //search Charging Profile Element
  5155. int i= 0;
  5156. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
  5157. #if 0
  5158. /***********connectorId****************/
  5159. c = 0;
  5160. loc = strstr(sLineWord, "connectorId");
  5161. memset(sstr ,0, sizeof(sstr) );
  5162. while (loc[strlen("connectorId")+2+c] != ',')
  5163. {
  5164. sstr[c] = loc[strlen("connectorId")+2+c];
  5165. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5166. c++;
  5167. }
  5168. sstr[c] = '\0';
  5169. tempconnectorIdInt = atoi(sstr);
  5170. #endif
  5171. //***********validFrom**************/
  5172. c = 0;
  5173. loc = strstr(sLineWord, "validFrom");
  5174. if(loc != NULL)
  5175. {
  5176. memset(sstr ,0, sizeof(sstr) );
  5177. while (loc[3+strlen("validFrom")+c] != '\"')
  5178. {
  5179. sstr[c] = loc[3+strlen("validFrom")+c];
  5180. c++;
  5181. }
  5182. sstr[c] = '\0';
  5183. strcpy(tempvalidFromStr,sstr);
  5184. }
  5185. else
  5186. {
  5187. strcpy(tempvalidFromStr,"");
  5188. }
  5189. //**********startSchedule**********/
  5190. c = 0;
  5191. loc = strstr(sLineWord, "startSchedule");
  5192. memset(sstr ,0, sizeof(sstr) );
  5193. while (loc[3+strlen("startSchedule")+c] != '\"')
  5194. {
  5195. sstr[c] = loc[3+strlen("startSchedule")+c];
  5196. c++;
  5197. }
  5198. sstr[c] = '\0';
  5199. strcpy(tempstartScheduleStr, sstr);
  5200. strcpy(TxProfileScheduleStr, sstr);
  5201. //**********chargingRateUnit**********/
  5202. c = 0;
  5203. loc = strstr(sLineWord, "chargingRateUnit");
  5204. memset(sstr ,0, sizeof(sstr) );
  5205. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  5206. {
  5207. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  5208. c++;
  5209. }
  5210. sstr[c] = '\0';
  5211. strcpy(tempchargingRateUnitStr, sstr);
  5212. //**********minChargingRate*******/
  5213. c = 0;
  5214. loc = strstr(sLineWord, "minChargingRate");
  5215. if(loc != NULL)
  5216. {
  5217. memset(sstr ,0, sizeof(sstr) );
  5218. while ((loc[2+strlen("minChargingRate")+c] != ',')&&(loc[2+strlen("minChargingRate")+c] != '}'))
  5219. {
  5220. sstr[c] = loc[2+strlen("minChargingRate")+c];
  5221. c++;
  5222. }
  5223. sstr[c] = '\0';
  5224. tempminChargingRateFloat = atof(sstr);
  5225. }
  5226. else
  5227. {
  5228. tempminChargingRateFloat = 0.0;
  5229. }
  5230. //
  5231. strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  5232. tp.tm_isdst = -1;
  5233. time_t utc = mktime(&tp);
  5234. time_t t = time(NULL);
  5235. diff_t = difftime(t, utc);
  5236. DEBUG_INFO("diff_t=%f\n",diff_t);
  5237. //parsing strings to words
  5238. i = 0;
  5239. loc = strstr(sLineWord, "chargingSchedulePeriod");
  5240. loc = loc+3+strlen("chargingSchedulePeriod");
  5241. pch = strtok(loc ,"{");
  5242. while (pch != NULL)
  5243. {
  5244. strcpy(SchedulePeriodList[i], pch);
  5245. pch = strtok (NULL, "{");
  5246. i = i + 1;
  5247. }
  5248. n_SchedulePeriods = i;
  5249. for(int i=0;i<n_SchedulePeriods;i++)
  5250. {
  5251. //*************startPeriod****************/
  5252. c = 0;
  5253. loc = strstr(SchedulePeriodList[i], "startPeriod");
  5254. memset(sstr ,0, sizeof(sstr) );
  5255. while (loc[strlen("startPeriod")+2+c] != ',')
  5256. {
  5257. sstr[c] = loc[strlen("startPeriod")+2+c];
  5258. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5259. c++;
  5260. }
  5261. sstr[c] = '\0';
  5262. tempStartPeriodInt = atoi(sstr);
  5263. //*************limit****************/
  5264. c = 0;
  5265. loc = strstr(SchedulePeriodList[i], "limit");
  5266. memset(sstr ,0, sizeof(sstr) );
  5267. while (loc[strlen("limit")+2+c] != ',')
  5268. {
  5269. sstr[c] = loc[strlen("limit")+2+c];
  5270. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5271. c++;
  5272. }
  5273. sstr[c] = '\0';
  5274. tempLimitInt = atof(sstr);
  5275. //*************numberPhases****************/
  5276. c = 0;
  5277. loc = strstr(SchedulePeriodList[i], "numberPhases");
  5278. memset(sstr ,0, sizeof(sstr) );
  5279. while (loc[strlen("numberPhases")+2+c] != '}')
  5280. {
  5281. sstr[c] = loc[strlen("numberPhases")+2+c];
  5282. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5283. c++;
  5284. }
  5285. sstr[c] = '\0';
  5286. tempNumberPhasesInt = atoi(sstr);
  5287. TxProfile.Duration = durationInt;
  5288. TxProfile.TotalPeriod = n_SchedulePeriods;
  5289. TxProfile.Period[i].Limit = tempLimitInt;
  5290. TxProfile.Period[i].NumberPhases = tempNumberPhasesInt;
  5291. TxProfile.Period[i].StartPeriod = tempStartPeriodInt;
  5292. }
  5293. if(MinChargingRate < tempminChargingRateFloat)
  5294. MinChargingRate = tempminChargingRateFloat;
  5295. if(confirmPeriods < n_SchedulePeriods)
  5296. confirmPeriods = n_SchedulePeriods;
  5297. }
  5298. fclose(fptr1);
  5299. }
  5300. }// the end of ACCESS TxProfile
  5301. //CompositeSchedule
  5302. int period=0;
  5303. if((TxDefaultProfileFileIsNull==FALSE) && (ChargePointMaxProfileIsNull==FALSE) && (TxProfileIsNull==FALSE) )
  5304. {
  5305. strcpy(CurrentChargingProfileScheduleStr,TxProfileScheduleStr);
  5306. for(int k=0; k < TxProfile.TotalPeriod;k++)
  5307. {
  5308. if(TxProfile.Period[k].Limit < ChargePointMaxProfile.Period[0].Limit)
  5309. {
  5310. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = TxProfile.Period[k].Limit;
  5311. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = TxProfile.Period[k].NumberPhases;
  5312. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxProfile.Period[k].StartPeriod;
  5313. period = period + 1;
  5314. }
  5315. else
  5316. {
  5317. if( (TxProfile.Period[k-1].Limit >= ChargePointMaxProfile.Period[0].Limit) && (TxProfile.Period[k].Limit >= ChargePointMaxProfile.Period[0].Limit))
  5318. {
  5319. }
  5320. else
  5321. {
  5322. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = ChargePointMaxProfile.Period[0].Limit;
  5323. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = TxProfile.Period[k].NumberPhases;
  5324. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxProfile.Period[k].StartPeriod;
  5325. period = period + 1;
  5326. }
  5327. }
  5328. }
  5329. for(int l=0; l < TxDefaultProfile.TotalPeriod;l++)
  5330. {
  5331. if((TxDefaultProfile.Period[l].StartPeriod < durationInt)&&(TxDefaultProfile.Period[l].StartPeriod > ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period-1].StartPeriod))
  5332. {
  5333. if(TxDefaultProfile.Period[l].Limit < ChargePointMaxProfile.Period[0].Limit)
  5334. {
  5335. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = TxDefaultProfile.Period[l].Limit;
  5336. }
  5337. else
  5338. {
  5339. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = ChargePointMaxProfile.Period[0].Limit;
  5340. }
  5341. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
  5342. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
  5343. period = period + 1;
  5344. }
  5345. }
  5346. if((TxDefaultProfile.Duration < durationInt) && (ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period-1].Limit) < ChargePointMaxProfile.Period[0].Limit)
  5347. {
  5348. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = ChargePointMaxProfile.Period[0].Limit;
  5349. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period-1].NumberPhases;
  5350. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxDefaultProfile.Duration;
  5351. period = period + 1;
  5352. }
  5353. }
  5354. else if((TxDefaultProfileFileIsNull==FALSE) && (ChargePointMaxProfileIsNull==FALSE) && (TxProfileIsNull==TRUE) )
  5355. {
  5356. strcpy(CurrentChargingProfileScheduleStr,TxDefaultProfileScheduleStr);
  5357. for(int l=0; l < TxDefaultProfile.TotalPeriod;l++)
  5358. {
  5359. if(TxProfile.Period[l].Limit < ChargePointMaxProfile.Period[0].Limit)
  5360. {
  5361. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].Limit = TxDefaultProfile.Period[l].Limit;
  5362. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
  5363. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
  5364. period = period + 1;
  5365. }
  5366. else
  5367. {
  5368. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].Limit = ChargePointMaxProfile.Period[0].Limit;
  5369. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
  5370. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
  5371. period = period + 1;
  5372. }
  5373. }
  5374. }
  5375. else if((TxDefaultProfileFileIsNull==FALSE) && (ChargePointMaxProfileIsNull==TRUE) && (TxProfileIsNull==TRUE) )
  5376. {
  5377. strcpy(CurrentChargingProfileScheduleStr,TxDefaultProfileScheduleStr);
  5378. for(int l=0; l < TxDefaultProfile.TotalPeriod;l++)
  5379. {
  5380. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].Limit = TxDefaultProfile.Period[l].Limit;
  5381. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
  5382. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
  5383. period = period + 1;
  5384. }
  5385. }
  5386. confirmPeriods = period;
  5387. //DEBUG_INFO("confirmPeriods=%d\n",confirmPeriods);
  5388. //* Define temporary variables */
  5389. struct tm *gtime;
  5390. time_t now;
  5391. char buf[28];
  5392. //* Read the current system time */
  5393. time(&now);
  5394. //* Convert the system time to GMT (now UTC) */
  5395. gtime = gmtime(&now);
  5396. strftime(buf, 28, "%Y-%m-%dT%H:%M:%SZ", gtime);
  5397. // make .conf
  5398. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.StartSchedule,buf);
  5399. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.Duration = durationInt;
  5400. //DEBUG_INFO(" debug 11\n");
  5401. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingRateUnit, tempchargingRateUnitStr );
  5402. ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.MinChargingRate = MinChargingRate;
  5403. sprintf(comfirmstr, "%s", GetCompositeScheduleStatusStr[GetCompositeScheduleStatus_Accepted] );
  5404. }
  5405. else
  5406. {
  5407. sprintf(comfirmstr, "%s", GetCompositeScheduleStatusStr[GetCompositeScheduleStatus_Accepted] );
  5408. }
  5409. sendGetCompositeScheduleConfirmation(uuid,comfirmstr, connectorIdInt, confirmPeriods);
  5410. return result;
  5411. }
  5412. int handleGetConfigurationRequest(char *uuid, char *payload)
  5413. {
  5414. mtrace();
  5415. int result = FAIL;
  5416. // struct json_object *obj=NULL, *key=NULL;// *jsonitem;
  5417. //struct json_object *jsonitem;
  5418. int MaxKeySupported = 0;
  5419. int n_keys = 0;
  5420. char requestKey[43][50]={0};
  5421. char search[]="[";
  5422. char sstr[500]={ 0 };
  5423. //int pos;
  5424. int l, c = 0;
  5425. int i = 0;
  5426. char *delim = "\",\"";
  5427. char * pch;
  5428. char *loc = strstr(payload, search);
  5429. //********************* Parsing String ***********************************/
  5430. if(loc == NULL) {
  5431. DEBUG_INFO("no key match in Configuration \n");
  5432. }
  5433. else {
  5434. //pos = loc - payload;
  5435. l = strlen(loc)-4;
  5436. while (c < l)
  5437. {
  5438. sstr[c] = loc[c+2];
  5439. c++;
  5440. }
  5441. sstr[c] = '\0';
  5442. //parsing strings to words
  5443. pch = strtok(sstr,delim);
  5444. if(pch == NULL)
  5445. {
  5446. strcpy(requestKey[0], sstr);
  5447. }
  5448. else
  5449. {
  5450. while (pch != NULL)
  5451. {
  5452. strcpy(requestKey[i], pch);
  5453. pch = strtok (NULL, delim);
  5454. i = i + 1;
  5455. }
  5456. n_keys = i;
  5457. }
  5458. }
  5459. UnknownKeynum = 0;
  5460. memset( (void *)unknownkey, 0, sizeof(unknownkey)/*sizeof(char)*10*20*/ );
  5461. MaxKeySupported = GetConfigurationMaxKeysNUM;//atoi(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData);
  5462. memset(ShmOCPP16Data->GetConfiguration.Key, 0 ,sizeof(struct StructConfigurationKeyItems)*MaxKeySupported);
  5463. memset(ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey, 0, sizeof(struct StructConfigurationKey)*MaxKeySupported);
  5464. if(n_keys != 0)
  5465. {
  5466. for(int i=0;i<n_keys;i++)
  5467. {
  5468. getKeyValue(requestKey[i]);
  5469. //json_object_put(jsonitem);
  5470. }
  5471. }
  5472. else
  5473. {
  5474. DEBUG_INFO("There is no key in Message, get all configuration\n");
  5475. getKeyValue("");
  5476. }
  5477. processUnkownKey();
  5478. sendGetConfigurationConfirmation(uuid);
  5479. return result;
  5480. }
  5481. int handleGetDiagnosticsRequest(char *uuid, char *payload)
  5482. {
  5483. mtrace();
  5484. int result = FAIL;
  5485. //void *ret; //
  5486. char fnamePlusPath[50]="";
  5487. char fname[16]="";
  5488. pthread_t t; // pthread 變數
  5489. time_t rawtime;
  5490. struct tm * timeinfo;
  5491. //system("exec /root/Module_WebService 'log' 6"); // for OCTT TEST
  5492. system("exec /root/logPackTools 'log' 6");
  5493. //char buffer [128];
  5494. time (&rawtime);
  5495. //printf("%ld\n", rawtime);
  5496. timeinfo = localtime (&rawtime);
  5497. strftime (fnamePlusPath,sizeof(fnamePlusPath),"../mnt/%4Y-%2m.zip",timeinfo);
  5498. DEBUG_INFO("fnamePlusPath =%s\n",fnamePlusPath);
  5499. if((access(fnamePlusPath,F_OK))!=-1)
  5500. {
  5501. DEBUG_INFO("fnamePlusPath exist.\n");
  5502. strftime (fname,sizeof(fname),"%4Y-%2m.zip",timeinfo);
  5503. }
  5504. else
  5505. {
  5506. DEBUG_INFO("fnamePlusPath not exist!\n");
  5507. }
  5508. sendGetDiagnosticsConfirmation(uuid,fname/*(char*) ret*/);
  5509. pthread_create(&t, NULL, GetDiagnosticsProcess, payload);
  5510. pthread_join(t, NULL/*&ret*/);
  5511. return result;
  5512. }
  5513. void* GetDiagnosticsProcess(void* data)
  5514. {
  5515. mtrace();
  5516. int retriesInt=0, retryIntervalInt=0;
  5517. char locationstr[100]={0}, startTimestr[30]={0}, stopTimestr[30]={0} ;
  5518. int retriesIsNULL,retryIntervalIsNULL, startTimeIsNULL, stopTimeIsNULL;
  5519. 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};
  5520. int port=0;
  5521. char fnamePlusPath[50]="";//="00000_2019-06-09_160902_CSULog.zip";
  5522. char fname[16]="";
  5523. char sstr[260]={ 0 };//sstr[200]={ 0 };
  5524. int c = 0;
  5525. char *loc;
  5526. int isSuccess = FALSE;
  5527. char ftpbuf[200]={0};
  5528. //char temp[100]={0};
  5529. char * pch;
  5530. // [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"}]
  5531. char *str = (char*) data; // ?��?輸入資�?
  5532. retriesIsNULL = retryIntervalIsNULL = startTimeIsNULL = stopTimeIsNULL = FALSE;
  5533. DEBUG_INFO("sendDiagnosticsStatusNotificationRequest 1\n");
  5534. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_Uploading]);
  5535. //****************location*******************/
  5536. c = 0;
  5537. memset(sstr ,0, sizeof(sstr) );
  5538. loc = strstr(str, "location");
  5539. while (loc[3+strlen("location")+c] != '\"')
  5540. {
  5541. sstr[c] = loc[3+strlen("location")+c];
  5542. c++;
  5543. }
  5544. sstr[c] = '\0';
  5545. strcpy(locationstr,sstr);
  5546. if(strcmp(locationstr,"")==0)
  5547. {
  5548. DEBUG_INFO("location is <Empty>!\n");
  5549. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
  5550. goto end;
  5551. }
  5552. //****************retries*******************/
  5553. c = 0;
  5554. loc = strstr(str, "retries");
  5555. if(loc == NULL)
  5556. {
  5557. retriesIsNULL = TRUE;
  5558. }
  5559. else
  5560. {
  5561. while (loc[strlen("retries")+2+c] != ',')
  5562. {
  5563. sstr[c] = loc[strlen("retries")+2+c];
  5564. c++;
  5565. }
  5566. sstr[c] = '\0';
  5567. retriesInt = atoi(sstr);
  5568. }
  5569. if(retriesIsNULL == TRUE)
  5570. {
  5571. retriesInt = 0;
  5572. }
  5573. //****************retryInterval*******************/
  5574. c = 0;
  5575. loc = strstr(str, "retryInterval");
  5576. if(loc == NULL)
  5577. {
  5578. retryIntervalIsNULL = TRUE;
  5579. }
  5580. else
  5581. {
  5582. while (loc[strlen("retryInterval")+2+c] != ',')
  5583. {
  5584. sstr[c] = loc[strlen("retryInterval")+2+c];
  5585. c++;
  5586. }
  5587. sstr[c] = '\0';
  5588. retryIntervalInt = atoi(sstr);
  5589. }
  5590. //****************startTime*******************/
  5591. c = 0;
  5592. memset(sstr ,0, sizeof(sstr) );
  5593. loc = strstr(str, "startTime");
  5594. if(loc == NULL)
  5595. {
  5596. startTimeIsNULL = TRUE;
  5597. }
  5598. else
  5599. {
  5600. while (loc[3+strlen("startTime")+c] != '\"')
  5601. {
  5602. sstr[c] = loc[3+strlen("startTime")+c];
  5603. c++;
  5604. }
  5605. sstr[c] = '\0';
  5606. strcpy(startTimestr,sstr);
  5607. }
  5608. //****************stopTime*******************/
  5609. c = 0;
  5610. memset(sstr ,0, sizeof(sstr) );
  5611. loc = strstr(str, "stopTime");
  5612. if(loc == NULL)
  5613. {
  5614. stopTimeIsNULL = TRUE;
  5615. }
  5616. else
  5617. {
  5618. while (loc[3+strlen("stopTime")+c] != '\"')
  5619. {
  5620. sstr[c] = loc[3+strlen("stopTime")+c];
  5621. c++;
  5622. }
  5623. sstr[c] = '\0';
  5624. strcpy(stopTimestr,sstr);
  5625. }
  5626. memset(protocol, 0, sizeof(protocol));
  5627. memset(user, 0, sizeof(user) );
  5628. memset(password, 0, sizeof(password));
  5629. memset(host, 0, sizeof(host));
  5630. memset(path, 0, sizeof(path));
  5631. memset(ftppath, 0, sizeof(ftppath));
  5632. memset(host1, 0, sizeof(host1));
  5633. memset(path1, 0, sizeof(path1));
  5634. /*location: ftp://user:password@host:port/path*/
  5635. //sscanf(locationstr,"%[^:]:%*2[/]%[^:]:%[^@]@%[^:]%d[^/]/%[a-zA-Z0-9._/-]",
  5636. // protocol, user, password, host, &port, path);
  5637. #if 0 // remove for temporally
  5638. //zip files in /Storage
  5639. system("exec /root/logPackTools 'log' 6");
  5640. #endif
  5641. // system("exec /root/Module_WebService 'log' 6");
  5642. time_t rawtime;
  5643. struct tm * timeinfo;
  5644. //char buffer [128];
  5645. time (&rawtime);
  5646. //printf("%ld\n", rawtime);
  5647. timeinfo = localtime (&rawtime);
  5648. strftime (fnamePlusPath,sizeof(fnamePlusPath),"../mnt/%4Y-%2m.zip",timeinfo);
  5649. strftime (fname,sizeof(fname),"%4Y-%2m.zip",timeinfo);
  5650. DEBUG_INFO("fnamePlusPath =%s\n",fnamePlusPath);
  5651. if((access(fnamePlusPath,F_OK))!=-1)
  5652. {
  5653. DEBUG_INFO("fnamePlusPath exist.\n");
  5654. }
  5655. else
  5656. {
  5657. DEBUG_INFO("fnamePlusPath not exist!\n");
  5658. goto end;
  5659. }
  5660. pch=strchr(locationstr,'@');
  5661. if(pch==NULL)
  5662. {
  5663. sscanf(locationstr,
  5664. "%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
  5665. protocol, host, &port, path);
  5666. strcpy(user,"anonymous");
  5667. strcpy(password,"");
  5668. }
  5669. else
  5670. {
  5671. DEBUG_INFO("pch=%s\n", pch);
  5672. sscanf(locationstr,"%[^:]:%*2[/]%[^:]:%[^@]@%[^:]:%i/%199[^\n]",
  5673. protocol, user, password, host, &port, path);
  5674. }
  5675. if(strcmp(protocol,"ftp")!=0)
  5676. {
  5677. DEBUG_INFO("protocol is not ftp!\n");
  5678. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
  5679. goto end;
  5680. }
  5681. sscanf(host,"%[^/]%s",host1, path1);
  5682. sprintf(ftppath,"%s", path1);
  5683. DEBUG_INFO("protocol =%s\n",protocol);
  5684. DEBUG_INFO("user =%s\n",user);
  5685. DEBUG_INFO("password =%s\n",password);
  5686. DEBUG_INFO("host1 =%s\n",host1);
  5687. DEBUG_INFO("port =%d\n",port);
  5688. DEBUG_INFO("path1 =%s\n",path1);
  5689. DEBUG_INFO("ftppath=%s\n",ftppath);
  5690. int ftppathlen=strlen(ftppath);
  5691. int i=1;
  5692. char filenametemp[50];
  5693. while(i < ftppathlen)
  5694. {
  5695. int len=ftppathlen-i;
  5696. if(ftppath[len]== 47) // '/' ascll code: 47
  5697. {
  5698. DEBUG_INFO("find '/' all right\n");
  5699. break;
  5700. }
  5701. i=i+1;
  5702. }
  5703. memset(filenametemp, 0, sizeof(filenametemp));
  5704. strncpy(filenametemp, ftppath+(ftppathlen-i+1), i+1);
  5705. filenametemp[i+1] = 0;
  5706. //httpDownLoadFile(host, ftppath, fname);
  5707. memset(ftpbuf, 0, sizeof(ftpbuf));
  5708. if(port == 0)
  5709. port = 21;
  5710. //isSuccess = httpDownLoadFile(host1, ftppath, filenametemp, "http://evsocket.phihong.com.tw/UploadFiles/SW/C81FBD4A740F69286B276C68B5074373.jar");
  5711. do{
  5712. isSuccess = ftpFile(/*"test.evsocket.phihong.com.cn","phihong","y42j/4cj84",21,"/",fname*/host1, user, password, port, ftppath, fnamePlusPath, fname);
  5713. sleep(retryIntervalInt);
  5714. }while((!isSuccess)&&(retriesInt > 0 && retriesInt --));
  5715. if(!isSuccess)
  5716. {
  5717. //BulldogUtil.sleepMs(interval*1000);
  5718. DEBUG_INFO("Diagnostics fail.\n");
  5719. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
  5720. }
  5721. else
  5722. {
  5723. DEBUG_INFO("sendDiagnosticsStatusNotificationRequest Uploaded\n");
  5724. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_Uploaded]);
  5725. //isUpdateRequest = TRUE;
  5726. }
  5727. end:
  5728. // json_object_put(obj);
  5729. DiagnosticsStatusNotificationStatus = 0; //Idle
  5730. pthread_exit(NULL/*(void *) fname*/); // ?��?子執行�?
  5731. }
  5732. int handleGetLocalListVersionRequest(char *uuid, char *payload)
  5733. {
  5734. mtrace();
  5735. int result = FAIL;
  5736. DEBUG_INFO("handle GetLocalListVersionRequest\n");
  5737. if(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "FALSE") == 0)
  5738. {
  5739. DEBUG_INFO("LocalAuthListEnabled is FALSE \n");
  5740. localversion = -1;
  5741. }
  5742. else
  5743. {
  5744. DEBUG_INFO("handle GetLocalListVersionRequest OCPP_getListVerion \n");
  5745. OCPP_getListVerion();
  5746. }
  5747. //from db.OCPP_getListVerion
  5748. ShmOCPP16Data->GetLocalListVersion.ResponseListVersion = localversion;
  5749. //ShmOCPP16Data->MsMsg.bits.GetLocalListVersionReq = 1;
  5750. sendGetLocalListVersionConfirmation(uuid,"");
  5751. //ShmOCPP16Data->MsMsg.bits.GetLocalListVersionConf = 1;
  5752. return result;
  5753. }
  5754. int handleRemoteStartRequest(char *uuid, char *payload)
  5755. {
  5756. mtrace();
  5757. int result = FAIL;
  5758. int connectorIdInt=0, chargingProfileIdInt=0, transactionIdInt=0, stackLevelInt=0,
  5759. durationInt=0, startPeriodInt[10]={0}, numberPhasesInt[10]={0};
  5760. char idTagstr[20]={0}, chargingProfilePurposestr[30]={0}, chargingProfileKindstr[14]={0}, recurrencyKindstr[10]={0},
  5761. validFromstr[30]={0}, validTostr[30]={0}, startSchedulestr[30]={0}, chargingRateUnitstr[4]={0};
  5762. int connectorIdIsNULL,chargingProfileIsNULL,transactionIdIsNULL,recurrencyKindIsNULL,validFromIsNULL,validToIsNULL,durationIsNULL,startScheduleIsNULL,minChargingRateIsNULL,numberPhasesIsNULL;
  5763. float minChargingRateflaot=0.0, limitflaot[10]={0.0};
  5764. int chargingSchedulePeriodCount = 0;
  5765. char sstr[30]={ 0 };//sstr[200]={ 0 };
  5766. int c = 0;
  5767. char *loc;
  5768. char comfirmstr[20]={0};
  5769. DEBUG_INFO("handleRemoteStartRequest ...\n");
  5770. if(server_pending == TRUE)
  5771. {
  5772. return 0;
  5773. }
  5774. connectorIdIsNULL = chargingProfileIsNULL = transactionIdIsNULL = recurrencyKindIsNULL = validFromIsNULL = validToIsNULL = durationIsNULL = startScheduleIsNULL = minChargingRateIsNULL = numberPhasesIsNULL= FALSE;
  5775. //**********connectorId****************/
  5776. c = 0;
  5777. memset(sstr ,0, sizeof(sstr) );
  5778. loc = strstr(payload, "connectorId");
  5779. if(loc == NULL)
  5780. {
  5781. connectorIdIsNULL = TRUE;
  5782. }
  5783. else
  5784. {
  5785. while ((loc[strlen("connectorId")+2+c] != '}') && (loc[strlen("connectorId")+2+c] != ','))
  5786. {
  5787. sstr[c] = loc[strlen("connectorId")+2+c];
  5788. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5789. c++;
  5790. }
  5791. sstr[c] = '\0';
  5792. connectorIdInt = atoi(sstr);
  5793. }
  5794. if(connectorIdIsNULL == TRUE) // need to discussion
  5795. {
  5796. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  5797. goto end;
  5798. }
  5799. //****************idTag*******************/
  5800. c = 0;
  5801. memset(sstr ,0, sizeof(sstr) );
  5802. loc = strstr(payload, "idTag");
  5803. while (loc[3+strlen("idTag")+c] != '\"')
  5804. {
  5805. sstr[c] = loc[3+strlen("idTag")+c];
  5806. c++;
  5807. }
  5808. sstr[c] = '\0';
  5809. strcpy(idTagstr,sstr);
  5810. //****************chargingProfile*******************/
  5811. c = 0;
  5812. memset(sstr ,0, sizeof(sstr) );
  5813. loc = strstr(payload, "chargingProfile");
  5814. if(loc == NULL)
  5815. {
  5816. chargingProfileIsNULL = TRUE;
  5817. }
  5818. else
  5819. {
  5820. //****************chargingProfileId*******************/
  5821. c=0;
  5822. loc = strstr(payload, "chargingProfileId");
  5823. memset(sstr ,0, sizeof(sstr) );
  5824. while ((loc[strlen("chargingProfileId")+2+c] != '}') && (loc[strlen("chargingProfileId")+2+c] != ','))
  5825. {
  5826. sstr[c] = loc[strlen("chargingProfileId")+2+c];
  5827. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5828. c++;
  5829. }
  5830. sstr[c] = '\0';
  5831. chargingProfileIdInt = atoi(sstr);
  5832. //****************transactionId*******************/
  5833. loc = strstr(payload, "transactionId");
  5834. if(loc == NULL)
  5835. {
  5836. transactionIdIsNULL = TRUE;
  5837. }
  5838. else
  5839. {
  5840. c=0;
  5841. memset(sstr ,0, sizeof(sstr) );
  5842. while ((loc[strlen("transactionId")+2+c] != '}') && (loc[strlen("transactionId")+2+c] != ','))
  5843. {
  5844. sstr[c] = loc[strlen("transactionId")+2+c];
  5845. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5846. c++;
  5847. }
  5848. sstr[c] = '\0';
  5849. transactionIdInt = atoi(sstr);
  5850. }
  5851. //****************stackLevel*******************/
  5852. c=0;
  5853. loc = strstr(payload, "stackLevel");
  5854. memset(sstr ,0, sizeof(sstr) );
  5855. while ((loc[strlen("stackLevel")+2+c] != '}') && (loc[strlen("stackLevel")+2+c] != ','))
  5856. {
  5857. sstr[c] = loc[strlen("stackLevel")+2+c];
  5858. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5859. c++;
  5860. }
  5861. sstr[c] = '\0';
  5862. stackLevelInt = atoi(sstr);
  5863. //****************chargingProfilePurpose*******************/
  5864. c = 0;
  5865. memset(sstr ,0, sizeof(sstr) );
  5866. loc = strstr(payload, "chargingProfilePurpose");
  5867. while (loc[3+strlen("chargingProfilePurpose")+c] != '\"')
  5868. {
  5869. sstr[c] = loc[3+strlen("chargingProfilePurpose")+c];
  5870. c++;
  5871. }
  5872. sstr[c] = '\0';
  5873. strcpy(chargingProfilePurposestr,sstr);
  5874. //****************chargingProfileKind*******************/
  5875. c = 0;
  5876. memset(sstr ,0, sizeof(sstr) );
  5877. loc = strstr(payload, "chargingProfileKind");
  5878. while (loc[3+strlen("chargingProfileKind")+c] != '\"')
  5879. {
  5880. sstr[c] = loc[3+strlen("chargingProfileKind")+c];
  5881. c++;
  5882. }
  5883. sstr[c] = '\0';
  5884. strcpy(chargingProfileKindstr,sstr);
  5885. //****************recurrencyKind*******************/
  5886. loc = strstr(payload, "recurrencyKind");
  5887. if(loc == NULL)
  5888. {
  5889. recurrencyKindIsNULL = TRUE;
  5890. }
  5891. else
  5892. {
  5893. c = 0;
  5894. memset(sstr ,0, sizeof(sstr) );
  5895. while (loc[3+strlen("recurrencyKind")+c] != '\"')
  5896. {
  5897. sstr[c] = loc[3+strlen("recurrencyKind")+c];
  5898. c++;
  5899. }
  5900. sstr[c] = '\0';
  5901. strcpy(recurrencyKindstr,sstr);
  5902. }
  5903. //****************validFrom*******************/
  5904. loc = strstr(payload, "validFrom");
  5905. if(loc == NULL)
  5906. {
  5907. validFromIsNULL = TRUE;
  5908. }
  5909. else
  5910. {
  5911. c = 0;
  5912. memset(sstr ,0, sizeof(sstr) );
  5913. while (loc[3+strlen("validFrom")+c] != '\"')
  5914. {
  5915. sstr[c] = loc[3+strlen("validFrom")+c];
  5916. c++;
  5917. }
  5918. sstr[c] = '\0';
  5919. strcpy(validFromstr,sstr);
  5920. }
  5921. //****************validTo*******************/
  5922. loc = strstr(payload, "validTo");
  5923. if(loc == NULL)
  5924. {
  5925. validToIsNULL = TRUE;
  5926. }
  5927. else
  5928. {
  5929. c = 0;
  5930. memset(sstr ,0, sizeof(sstr) );
  5931. while (loc[3+strlen("validTo")+c] != '\"')
  5932. {
  5933. sstr[c] = loc[3+strlen("validTo")+c];
  5934. c++;
  5935. }
  5936. sstr[c] = '\0';
  5937. strcpy(validTostr,sstr);
  5938. }
  5939. //****************chargingSchedule*******************/
  5940. loc = strstr(payload, "chargingSchedule");
  5941. if(loc != NULL)
  5942. {
  5943. //****************duration*******************/
  5944. loc = strstr(payload, "duration");
  5945. if(loc == NULL)
  5946. {
  5947. durationIsNULL = TRUE;
  5948. }
  5949. else
  5950. {
  5951. c=0;
  5952. memset(sstr ,0, sizeof(sstr) );
  5953. while ((loc[strlen("duration")+2+c] != '}') && (loc[strlen("duration")+2+c] != ','))
  5954. {
  5955. sstr[c] = loc[strlen("duration")+2+c];
  5956. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5957. c++;
  5958. }
  5959. sstr[c] = '\0';
  5960. durationInt = atoi(sstr);
  5961. }
  5962. //****************startSchedule******************/
  5963. loc = strstr(payload, "startSchedule");
  5964. if(loc == NULL)
  5965. {
  5966. startScheduleIsNULL = TRUE;
  5967. }
  5968. else
  5969. {
  5970. c = 0;
  5971. memset(sstr ,0, sizeof(sstr) );
  5972. while (loc[3+strlen("startSchedule")+c] != '\"')
  5973. {
  5974. sstr[c] = loc[3+strlen("startSchedule")+c];
  5975. c++;
  5976. }
  5977. sstr[c] = '\0';
  5978. strcpy(startSchedulestr,sstr);
  5979. }
  5980. //****************chargingRateUnit*******************/
  5981. c = 0;
  5982. memset(sstr ,0, sizeof(sstr) );
  5983. loc = strstr(payload, "chargingRateUnit");
  5984. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  5985. {
  5986. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  5987. c++;
  5988. }
  5989. sstr[c] = '\0';
  5990. strcpy(chargingRateUnitstr,sstr);
  5991. //****************minChargingRate*******************/
  5992. loc = strstr(payload, "minChargingRate");
  5993. if(loc == NULL)
  5994. {
  5995. minChargingRateIsNULL = TRUE;
  5996. }
  5997. else
  5998. {
  5999. c=0;
  6000. memset(sstr ,0, sizeof(sstr) );
  6001. while ((loc[strlen("minChargingRate")+2+c] != '}') && (loc[strlen("minChargingRate")+2+c] != ','))
  6002. {
  6003. sstr[c] = loc[strlen("minChargingRate")+2+c];
  6004. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6005. c++;
  6006. }
  6007. sstr[c] = '\0';
  6008. minChargingRateflaot = atof(sstr);
  6009. }
  6010. //****************chargingSchedulePeriod count*******************/
  6011. int what_len = strlen("startPeriod");
  6012. char *where = payload;
  6013. while ((where = strstr(where, "startPeriod"))) {
  6014. where += what_len;
  6015. chargingSchedulePeriodCount++;
  6016. }
  6017. where = payload;
  6018. for(int periodNums=0; periodNums < chargingSchedulePeriodCount; periodNums++)
  6019. {
  6020. //****************startPeriod*******************/
  6021. c=0;
  6022. loc = strstr(where, "startPeriod");
  6023. memset(sstr ,0, sizeof(sstr) );
  6024. while ((loc[strlen("startPeriod")+2+c] != '}') && (loc[strlen("startPeriod")+2+c] != ','))
  6025. {
  6026. sstr[c] = loc[strlen("startPeriod")+2+c];
  6027. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6028. c++;
  6029. }
  6030. sstr[c] = '\0';
  6031. startPeriodInt[periodNums] = atoi(sstr);
  6032. //****************limit*******************/
  6033. c=0;
  6034. loc = strstr(where, "limit");
  6035. memset(sstr ,0, sizeof(sstr) );
  6036. while ((loc[strlen("limit")+2+c] != '}') && (loc[strlen("limit")+2+c] != ','))
  6037. {
  6038. sstr[c] = loc[strlen("limit")+2+c];
  6039. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6040. c++;
  6041. }
  6042. sstr[c] = '\0';
  6043. limitflaot[periodNums] = atof(sstr);
  6044. //****************numberPhases*******************/
  6045. loc = strstr(where, "numberPhases");
  6046. if(loc == NULL)
  6047. {
  6048. numberPhasesIsNULL = TRUE;
  6049. }
  6050. else
  6051. {
  6052. c=0;
  6053. memset(sstr ,0, sizeof(sstr) );
  6054. while ((loc[strlen("numberPhases")+2+c] != '}') && (loc[strlen("numberPhases")+2+c] != ','))
  6055. {
  6056. sstr[c] = loc[strlen("numberPhases")+2+c];
  6057. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6058. c++;
  6059. }
  6060. sstr[c] = '\0';
  6061. numberPhasesInt[periodNums] = atoi(sstr);
  6062. }
  6063. where = loc;
  6064. }
  6065. }
  6066. }
  6067. /*
  6068. enum _SYSTEM_STATUS
  6069. {
  6070. S_BOOTING = 0,
  6071. S_IDLE, = 1
  6072. S_AUTHORIZING, =2
  6073. S_REASSIGN_CHECK, =3
  6074. S_REASSIGN, =4
  6075. S_PRECHARGE, =5
  6076. S_PREPARING_FOR_EV, =6
  6077. S_PREPARING_FOR_EVSE, =7
  6078. S_CHARGING, =8
  6079. S_TERMINATING, =9
  6080. S_COMPLETE, =10
  6081. S_ALARM, =11
  6082. S_FAULT =12
  6083. }
  6084. */
  6085. if((connectorIdIsNULL == FALSE)&&(connectorIdInt > 0) && ((connectorIdInt -1) <= gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/))
  6086. {
  6087. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag, "%s" , idTagstr);
  6088. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.TransactionId = transactionIdInt;
  6089. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault 8: Reserved
  6090. //check Transaction active
  6091. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  6092. {
  6093. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6094. {
  6095. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (connectorIdInt -1))
  6096. {
  6097. if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) == 0))
  6098. {
  6099. //Reserved
  6100. DEBUG_INFO("Reserved now !!!The idTag matches the idTag of Reservation!!!\n");
  6101. }
  6102. else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) != 0))
  6103. {
  6104. //Reserved
  6105. DEBUG_INFO("Reserved now !!! The idTag does NOT match the idTag of Reservation!!! Reject it!!!\n");
  6106. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6107. goto end;
  6108. }
  6109. else
  6110. {
  6111. if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
  6112. && (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_PREPARING ) //S_PRECHARGE
  6113. && (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EV ) //S_PREPARING_FOR_EV
  6114. && (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EVSE )) // S_PREPARING_FOR_EVSE
  6115. {
  6116. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6117. goto end;
  6118. }
  6119. }//END FOR ELSE
  6120. }
  6121. }// END FOR CHAdeMO_QUANTITY
  6122. for (int index = 0; index < CCS_QUANTITY; index++)
  6123. {
  6124. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (connectorIdInt -1))
  6125. {
  6126. if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) == 0))
  6127. {
  6128. //Reserved
  6129. DEBUG_INFO("Reserved now !!!The idTag matches the idTag of Reservation!!!\n");
  6130. }
  6131. else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) != 0))
  6132. {
  6133. //Reserved
  6134. DEBUG_INFO("Reserved now !!! The idTag does NOT match the idTag of Reservation!!! Reject it!!!\n");
  6135. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6136. goto end;
  6137. }
  6138. else
  6139. {
  6140. if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
  6141. && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_PREPARING) //S_PRECHARGE
  6142. && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EV) //S_PREPARING_FOR_EV
  6143. && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EVSE)) // S_PREPARING_FOR_EVSE
  6144. {
  6145. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6146. goto end;
  6147. }
  6148. }// END FOR ELSE
  6149. }
  6150. }// END FOR CCS_QUANTITY
  6151. for (int index = 0; index < GB_QUANTITY; index++)
  6152. {
  6153. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (connectorIdInt -1))
  6154. {
  6155. if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) == 0))
  6156. {
  6157. //Reserved
  6158. DEBUG_INFO("Reserved now !!!The idTag matches the idTag of Reservation!!!\n");
  6159. }
  6160. else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) != 0))
  6161. {
  6162. //Reserved
  6163. DEBUG_INFO("Reserved now !!! The idTag does NOT match the idTag of Reservation!!! Reject it!!!\n");
  6164. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6165. goto end;
  6166. }
  6167. else
  6168. {
  6169. if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
  6170. && (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_PREPARING) //S_PRECHARGE
  6171. && (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EV) //S_PREPARING_FOR_EV
  6172. && (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EVSE)) // S_PREPARING_FOR_EVSE
  6173. {
  6174. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6175. goto end;
  6176. }
  6177. }// END FOR ELSE
  6178. }
  6179. } // END FOR GB_QUANTITY
  6180. }
  6181. else
  6182. {
  6183. for (int index = 0; index < AC_QUANTITY; index++)
  6184. {
  6185. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == (connectorIdInt -1))
  6186. {
  6187. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) == 0))
  6188. {
  6189. //Reserved
  6190. DEBUG_INFO("Reserved now !!!The idTag matches the idTag of Reservation!!!\n");
  6191. }
  6192. else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) != 0))
  6193. {
  6194. //Reserved
  6195. DEBUG_INFO("Reserved now !!! The idTag does NOT match the idTag of Reservation!!! Reject it!!!\n");
  6196. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6197. goto end;
  6198. }
  6199. else
  6200. {
  6201. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
  6202. && (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_PREPARING) //S_PRECHARGE
  6203. && (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EV) //S_PREPARING_FOR_EV
  6204. && (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EVSE)) // S_PREPARING_FOR_EVSE
  6205. {
  6206. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6207. goto end;
  6208. }
  6209. }//END FOR ELSE
  6210. }
  6211. }// END FOR AC_QUANTITY
  6212. }
  6213. if(chargingProfileIsNULL == FALSE)
  6214. {
  6215. //ChargingProfile
  6216. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileId = chargingProfileIdInt;
  6217. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileKind, "%s" ,chargingProfileKindstr);
  6218. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfilePurpose, "%s" ,chargingProfilePurposestr);
  6219. if(recurrencyKindIsNULL == FALSE) //OPTION
  6220. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.RecurrencyKind, "%s" ,recurrencyKindstr);
  6221. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.StackLevel = stackLevelInt;
  6222. if(transactionIdIsNULL == FALSE) // OPTION
  6223. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.TransactionId = transactionIdInt;
  6224. if(validFromIsNULL == FALSE) // OPTION
  6225. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ValidFrom, "%s" ,validFromstr);
  6226. if(validToIsNULL == FALSE) //OPTION
  6227. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ValidTo, "%s" ,validTostr);
  6228. //ChargingSchedule
  6229. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingRateUnit, "%s" ,chargingRateUnitstr);
  6230. if(durationIsNULL == FALSE) //OPTION
  6231. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.Duration = durationInt;
  6232. if(minChargingRateIsNULL == FALSE) //OPTION
  6233. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.MinChargingRate = minChargingRateflaot;
  6234. if(startScheduleIsNULL == FALSE) //OPTION
  6235. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.StartSchedule, "%s" ,startSchedulestr);
  6236. for(int periodNums=0; periodNums < chargingSchedulePeriodCount; periodNums++)
  6237. {
  6238. //ChargingSchedulePeriod
  6239. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].Limit = limitflaot[periodNums] ;
  6240. if(numberPhasesIsNULL == FALSE)
  6241. {
  6242. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].NumberPhases = numberPhasesInt[periodNums];
  6243. }
  6244. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].StartPeriod = startPeriodInt[periodNums];
  6245. }
  6246. if(strcmp(chargingProfilePurposestr, ChargingProfilePurposeTypeStr[TxProfile]) == 0)
  6247. {
  6248. ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1;
  6249. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]);
  6250. //memset idTag
  6251. memset((char *)ShmOCPP16Data->StartTransaction[connectorIdInt -1].IdTag,0, sizeof(ShmOCPP16Data->StartTransaction[connectorIdInt -1].IdTag));
  6252. strcpy((char *)ShmOCPP16Data->StartTransaction[connectorIdInt -1].IdTag, idTagstr);
  6253. memset((char *)ShmOCPP16Data->StopTransaction[connectorIdInt -1].IdTag,0, sizeof(ShmOCPP16Data->StopTransaction[connectorIdInt -1].IdTag));
  6254. strcpy((char *)ShmOCPP16Data->StopTransaction[connectorIdInt -1].IdTag, idTagstr);
  6255. }
  6256. else
  6257. {
  6258. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6259. }
  6260. }
  6261. else
  6262. {
  6263. ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1;
  6264. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]);
  6265. //memset idTag
  6266. memset((char *)ShmOCPP16Data->StartTransaction[connectorIdInt -1].IdTag,0, sizeof(ShmOCPP16Data->StartTransaction[connectorIdInt -1].IdTag));
  6267. strcpy((char *)ShmOCPP16Data->StartTransaction[connectorIdInt -1].IdTag, idTagstr);
  6268. memset((char *)ShmOCPP16Data->StopTransaction[connectorIdInt -1].IdTag,0, sizeof(ShmOCPP16Data->StopTransaction[connectorIdInt -1].IdTag));
  6269. strcpy((char *)ShmOCPP16Data->StopTransaction[connectorIdInt -1].IdTag, idTagstr);
  6270. }
  6271. }
  6272. else
  6273. {
  6274. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6275. //sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ResponseStatus, "%s" ,comfirmstr);
  6276. }
  6277. end:
  6278. if(connectorIdIsNULL == FALSE)
  6279. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ConnectorId = connectorIdInt;
  6280. strcpy((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag, idTagstr);
  6281. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ResponseStatus, "%s" ,comfirmstr);
  6282. //OCPP send RemoteStartConfirmation by first.
  6283. sendRemoteStartConfirmation(uuid, comfirmstr);
  6284. return result;
  6285. }
  6286. int handleRemoteStopTransactionRequest(char *uuid, char *payload)
  6287. {
  6288. mtrace();
  6289. int result = FAIL;
  6290. int match = FALSE;
  6291. int GunNO = 0;
  6292. int transactionIdInt=0;
  6293. int transactionIdIsNULL= FALSE;
  6294. char sstr[16]={ 0 };//sstr[200]={ 0 };
  6295. int c = 0;
  6296. char *loc;
  6297. char comfirmstr[20];
  6298. //[2,"ff522854-0dea-436e-87ba-23a229269994","RemoteStopTransaction",{"transactionId":1373618380}]
  6299. DEBUG_INFO("handleRemoteStopTransactionRequest...\n");
  6300. if(server_pending == TRUE)
  6301. {
  6302. return 0;
  6303. }
  6304. c=0;
  6305. loc = strstr(payload, "transactionId");
  6306. if(loc == NULL)
  6307. {
  6308. transactionIdIsNULL= TRUE;
  6309. }
  6310. else
  6311. {
  6312. memset(sstr ,0, sizeof(sstr) );
  6313. while ((loc[strlen("transactionId")+2+c] != '}') && (loc[strlen("transactionId")+2+c] != ','))
  6314. {
  6315. sstr[c] = loc[strlen("transactionId")+2+c];
  6316. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6317. c++;
  6318. }
  6319. sstr[c] = '\0';
  6320. transactionIdInt = atoi(sstr);
  6321. }
  6322. if(transactionIdIsNULL == FALSE)
  6323. {
  6324. for(int gun_index=0;gun_index < gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/;gun_index++)
  6325. {
  6326. if(ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId == transactionIdInt)
  6327. {
  6328. //check Transaction active
  6329. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  6330. {
  6331. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6332. {
  6333. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  6334. {
  6335. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  6336. {
  6337. match = TRUE;
  6338. GunNO = gun_index;
  6339. }
  6340. }
  6341. }// END FOR CHAdeMO_QUANTITY
  6342. for (int index = 0; index < CCS_QUANTITY; index++)
  6343. {
  6344. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  6345. {
  6346. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  6347. {
  6348. match = TRUE;
  6349. GunNO = gun_index;
  6350. }
  6351. }
  6352. }// END FOR CCS_QUANTITY
  6353. for (int index = 0; index < GB_QUANTITY; index++)
  6354. {
  6355. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  6356. {
  6357. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  6358. {
  6359. match = TRUE;
  6360. GunNO = gun_index;
  6361. }
  6362. }
  6363. }// END FOR GB_QUANTITY
  6364. }
  6365. else
  6366. {
  6367. for (int index = 0; index < AC_QUANTITY; index++)
  6368. {
  6369. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  6370. {
  6371. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  6372. {
  6373. match = TRUE;
  6374. GunNO = gun_index;
  6375. }
  6376. }
  6377. }// END FOR CHAdeMO_QUANTITY
  6378. }// END FOR AC ELSE
  6379. }// CHECK IF ResponseTransactionId == transactionIdInt
  6380. }//END FOR
  6381. if( match == TRUE)
  6382. {
  6383. ShmOCPP16Data->CsMsg.bits[GunNO].RemoteStopTransactionReq = 1; // inform csu of StopTransaction
  6384. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]);
  6385. sprintf((char *)ShmOCPP16Data->RemoteStopTransaction[GunNO].ResponseStatus, "%s" ,comfirmstr);
  6386. }
  6387. else
  6388. {
  6389. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6390. }
  6391. }
  6392. sendRemoteStopTransactionConfirmation(uuid, comfirmstr);
  6393. return result;
  6394. }
  6395. int handleReserveNowTransactionRequest(char *uuid, char *payload)
  6396. {
  6397. mtrace();
  6398. int result = FAIL;
  6399. int connectorIdInt=0, reservationIdInt=0;
  6400. char expiryDatestr[30]={0}, idTagstr[20]={0},parentIdTagstr[20]={0};
  6401. char comfirmstr[20]={0};
  6402. char sstr[180]={ 0 };
  6403. int c = 0;
  6404. char *loc;
  6405. //char *ptr;
  6406. //[2,"1571898416054","ReserveNow",{"connectorId":1,"expiryDate":"2020-06-19T09:10:00.000Z","idTag":"B014EA9C","reservationId":1}]
  6407. //***(1)connectorId ****/
  6408. c=0;
  6409. loc = strstr(payload, "connectorId");
  6410. memset(sstr ,0, sizeof(sstr) );
  6411. while ((loc != NULL) &&(loc[strlen("connectorId")+2+c] != ','))
  6412. {
  6413. sstr[c] = loc[strlen("connectorId")+2+c];
  6414. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6415. c++;
  6416. }
  6417. sstr[c] = '\0';
  6418. connectorIdInt = atoi(sstr);
  6419. //***(2)expiryDate ****/
  6420. loc = strstr(payload, "expiryDate");
  6421. memset(sstr ,0, sizeof(sstr) );
  6422. c = 0;
  6423. while ((loc != NULL) &&(loc[3+strlen("expiryDate")+c] != '\"'))
  6424. {
  6425. sstr[c] = loc[3+strlen("expiryDate")+c];
  6426. c++;
  6427. }
  6428. sstr[c] = '\0';
  6429. strcpy(expiryDatestr, sstr);
  6430. //***(3)idTag ****/
  6431. loc = strstr(payload, "idTag");
  6432. memset(sstr ,0, sizeof(sstr) );
  6433. c = 0;
  6434. while ((loc != NULL) &&(loc[3+strlen("idTag")+c] != '\"'))
  6435. {
  6436. sstr[c] = loc[3+strlen("idTag")+c];
  6437. c++;
  6438. }
  6439. sstr[c] = '\0';
  6440. strcpy(idTagstr, sstr);
  6441. //***(4)parentIdTag ****/
  6442. loc = strstr(payload, "parentIdTag");
  6443. memset(sstr ,0, sizeof(sstr) );
  6444. c = 0;
  6445. while ((loc != NULL) &&(loc[3+strlen("parentIdTag")+c] != '\"'))
  6446. {
  6447. sstr[c] = loc[3+strlen("parentIdTag")+c];
  6448. c++;
  6449. }
  6450. sstr[c] = '\0';
  6451. strcpy(parentIdTagstr, sstr);
  6452. //***(5)reservationId ****/
  6453. c=0;
  6454. loc = strstr(payload, "reservationId");
  6455. memset(sstr ,0, sizeof(sstr) );
  6456. while ((loc != NULL) &&((loc[strlen("reservationId")+2+c] != '}') && (loc[strlen("reservationId")+2+c] != ',')))
  6457. {
  6458. sstr[c] = loc[strlen("reservationId")+2+c];
  6459. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6460. c++;
  6461. }
  6462. sstr[c] = '\0';
  6463. reservationIdInt = atoi(sstr);
  6464. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6465. /*
  6466. enum _SYSTEM_STATUS
  6467. {
  6468. S_BOOTING = 0,
  6469. S_IDLE, = 1
  6470. S_AUTHORIZING, =2
  6471. S_REASSIGN_CHECK, =3
  6472. S_REASSIGN, =4
  6473. S_PRECHARGE, =5
  6474. S_PREPARING_FOR_EV, =6
  6475. S_PREPARING_FOR_EVSE, =7
  6476. S_CHARGING, =8
  6477. S_TERMINATING, =9
  6478. S_COMPLETE, =10
  6479. S_ALARM, =11
  6480. S_FAULT =12
  6481. }
  6482. */
  6483. if((connectorIdInt == 0) &&(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData, "FALSE") == 0)) //For OCTT Test case
  6484. {
  6485. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6486. goto end;
  6487. }
  6488. if((connectorIdInt > 0) && ((connectorIdInt -1) <= gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/))
  6489. {
  6490. //check Transaction active
  6491. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  6492. {
  6493. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6494. {
  6495. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (connectorIdInt -1))
  6496. {
  6497. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId)
  6498. {
  6499. //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  6500. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_FAULT) //S_FAULT
  6501. {
  6502. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE
  6503. {
  6504. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6505. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6506. }
  6507. 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'))
  6508. {
  6509. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6510. }
  6511. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
  6512. {
  6513. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6514. }
  6515. else
  6516. {
  6517. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6518. }
  6519. }
  6520. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT
  6521. {
  6522. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6523. }
  6524. }
  6525. else
  6526. {
  6527. //replace reservation
  6528. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6529. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6530. }
  6531. }
  6532. } // END FOR CHAdeMO_QUANTITY
  6533. for (int index = 0; index < CCS_QUANTITY; index++)
  6534. {
  6535. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (connectorIdInt -1))
  6536. {
  6537. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId)
  6538. {
  6539. //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  6540. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_FAULT) //S_FAULT
  6541. {
  6542. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE
  6543. {
  6544. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6545. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6546. }
  6547. 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'))
  6548. {
  6549. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6550. }
  6551. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
  6552. {
  6553. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6554. }
  6555. else
  6556. {
  6557. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6558. }
  6559. }
  6560. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus ==SYS_MODE_FAULT) //S_FAULT
  6561. {
  6562. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6563. }
  6564. }
  6565. else
  6566. {
  6567. //replace reservation
  6568. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6569. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6570. }
  6571. }
  6572. } // END FOR CCS_QUANTITY
  6573. for (int index = 0; index < GB_QUANTITY; index++)
  6574. {
  6575. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (connectorIdInt - 1))
  6576. {
  6577. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId)
  6578. {
  6579. //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  6580. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_FAULT) //S_FAULT
  6581. {
  6582. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE
  6583. {
  6584. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6585. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6586. }
  6587. 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'))
  6588. {
  6589. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6590. }
  6591. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
  6592. {
  6593. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6594. }
  6595. else
  6596. {
  6597. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6598. }
  6599. }
  6600. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==SYS_MODE_FAULT) //S_FAULT
  6601. {
  6602. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6603. }
  6604. }
  6605. else
  6606. {
  6607. //replace reservation
  6608. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6609. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6610. }
  6611. }
  6612. }// END FOR GB_QUANTITY
  6613. }
  6614. else
  6615. {
  6616. for (int index = 0; index < AC_QUANTITY; index++)
  6617. {
  6618. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == (connectorIdInt -1))
  6619. {
  6620. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId)
  6621. {
  6622. //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  6623. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_FAULT) //S_FAULT
  6624. {
  6625. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE
  6626. {
  6627. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6628. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6629. }
  6630. 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'))
  6631. {
  6632. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6633. }
  6634. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
  6635. {
  6636. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6637. }
  6638. else
  6639. {
  6640. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6641. }
  6642. }
  6643. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT
  6644. {
  6645. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6646. }
  6647. }
  6648. else
  6649. {
  6650. //replace reservation
  6651. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6652. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6653. }
  6654. }
  6655. } // END FOR AC_QUANTITY
  6656. }//END FOR AC ELSE
  6657. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ResponseStatus, "%s" ,comfirmstr);
  6658. }
  6659. else if(connectorIdInt == 0)
  6660. {
  6661. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  6662. {
  6663. //check Transaction active
  6664. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6665. {
  6666. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId)
  6667. {
  6668. 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'))
  6669. {
  6670. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6671. goto end;
  6672. }
  6673. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
  6674. {
  6675. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6676. goto end;
  6677. }
  6678. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT
  6679. {
  6680. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6681. goto end;
  6682. }
  6683. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
  6684. {
  6685. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6686. goto end;
  6687. }
  6688. }
  6689. }// END FOR CHAdeMO_QUANTITY
  6690. for (int index = 0; index < CCS_QUANTITY; index++)
  6691. {
  6692. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId)
  6693. {
  6694. 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'))
  6695. {
  6696. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6697. }
  6698. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
  6699. {
  6700. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6701. }
  6702. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus ==SYS_MODE_FAULT) //S_FAULT
  6703. {
  6704. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6705. }
  6706. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
  6707. {
  6708. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6709. }
  6710. }
  6711. } // END FOR CCS_QUANTITY
  6712. for (int index = 0; index < GB_QUANTITY; index++)
  6713. {
  6714. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId)
  6715. {
  6716. 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'))
  6717. {
  6718. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6719. }
  6720. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
  6721. {
  6722. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6723. }
  6724. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==SYS_MODE_FAULT) //S_FAULT
  6725. {
  6726. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6727. }
  6728. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
  6729. {
  6730. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6731. }
  6732. }
  6733. } // END FOR GB_QUANTITY
  6734. }
  6735. else
  6736. {
  6737. for (int index = 0; index < AC_QUANTITY; index++)
  6738. {
  6739. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId)
  6740. {
  6741. 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'))
  6742. {
  6743. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6744. goto end;
  6745. }
  6746. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE
  6747. {
  6748. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6749. goto end;
  6750. }
  6751. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT
  6752. {
  6753. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6754. goto end;
  6755. }
  6756. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE
  6757. {
  6758. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6759. goto end;
  6760. }
  6761. }
  6762. }// END FOR AC_QUANTITY
  6763. }
  6764. //The connectorId is 0
  6765. ShmOCPP16Data->CsMsg.bits[0].ReserveNowReq = 1;
  6766. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6767. sprintf((char *)ShmOCPP16Data->ReserveNow[0].ResponseStatus, "%s" ,comfirmstr);
  6768. ShmOCPP16Data->ReserveNow[0].ConnectorId = connectorIdInt;
  6769. sprintf((char *)ShmOCPP16Data->ReserveNow[0].ExpiryDate, "%s" , expiryDatestr);
  6770. sprintf((char *)ShmOCPP16Data->ReserveNow[0].IdTag, "%s" , idTagstr);
  6771. sprintf((char *)ShmOCPP16Data->ReserveNow[0].ParentIdTag, "%s" , parentIdTagstr);
  6772. ShmOCPP16Data->ReserveNow[0].ReservationId = reservationIdInt;
  6773. strcpy((char *)ShmOCPP16Data->ReserveNow[0].guid, uuid);
  6774. result = TRUE;
  6775. return result;
  6776. }
  6777. else
  6778. {
  6779. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6780. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ResponseStatus, "%s" ,comfirmstr);
  6781. }
  6782. if(strcmp(comfirmstr,"Accepted") == 0)
  6783. {
  6784. ShmOCPP16Data->ReserveNow[connectorIdInt-1].ConnectorId = connectorIdInt;
  6785. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ExpiryDate, "%s" , expiryDatestr);
  6786. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].IdTag, "%s" , idTagstr);
  6787. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ParentIdTag, "%s" , parentIdTagstr);
  6788. ShmOCPP16Data->ReserveNow[connectorIdInt-1].ReservationId = reservationIdInt;
  6789. strcpy((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].guid, uuid);
  6790. result = TRUE;
  6791. return result;
  6792. }
  6793. end:
  6794. sendReserveNowTransactionConfirmation(uuid,comfirmstr);
  6795. //ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowConf = 1;
  6796. return result;
  6797. }
  6798. int handleResetRequest(char *uuid, char *payload)
  6799. {
  6800. mtrace();
  6801. int result = FAIL;
  6802. char sstr[10]={0};
  6803. char typestr[10]={0};
  6804. char comfirmstr[20]={0};
  6805. int c = 0;
  6806. char *loc;
  6807. //[2,"6f88d461-4d17-462c-a69b-1f7a8c5b12df","Reset",{"type":"Hard"}]
  6808. DEBUG_INFO("handleResetRequest ...\n");
  6809. loc = strstr(payload, "type");
  6810. memset(sstr ,0, sizeof(sstr) );
  6811. c = 0;
  6812. while (loc[3+strlen("type")+c] != '\"')
  6813. {
  6814. sstr[c] = loc[3+strlen("type")+c];
  6815. c++;
  6816. }
  6817. sstr[c] = '\0';
  6818. strcpy(typestr,sstr);
  6819. sprintf((char *)ShmOCPP16Data->Reset.Type, "%s" ,typestr);
  6820. //strcpy(ShmOCPP16Data->Reset.Type, typestr);
  6821. if(strcmp(typestr, ResetTypeStr[Hard])==0)
  6822. {
  6823. //check Transaction active
  6824. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  6825. {
  6826. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6827. {
  6828. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING)
  6829. {
  6830. //0: unplug, 1: Plug-in
  6831. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn = 0;
  6832. }
  6833. }
  6834. for (int index = 0; index < CCS_QUANTITY; index++)
  6835. {
  6836. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING)
  6837. {
  6838. //0: unplug, 1: Plug-in
  6839. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn = 0;
  6840. }
  6841. }
  6842. for (int index = 0; index < GB_QUANTITY; index++)
  6843. {
  6844. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING)
  6845. {
  6846. //0: unplug, 1: Plug-in
  6847. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn = 0;
  6848. }
  6849. }
  6850. }
  6851. else
  6852. {
  6853. for (int index = 0; index < AC_QUANTITY; index++)
  6854. {
  6855. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING)
  6856. {
  6857. //0: unplug, 1: Plug-in
  6858. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn = 0;
  6859. }
  6860. }
  6861. }// END FOR AC ELSE
  6862. ShmOCPP16Data->MsMsg.bits.ResetReq = 1;
  6863. strcpy((char *)ShmOCPP16Data->Reset.guid, uuid);
  6864. result = TRUE;
  6865. return result;
  6866. }
  6867. else if(strcmp(typestr, ResetTypeStr[Soft])==0)
  6868. {
  6869. //check Transaction active
  6870. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  6871. {
  6872. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6873. {
  6874. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING)
  6875. {
  6876. //0: unplug, 1: Plug-in
  6877. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn = 0;
  6878. }
  6879. }
  6880. for (int index = 0; index < CCS_QUANTITY; index++)
  6881. {
  6882. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING)
  6883. {
  6884. //0: unplug, 1: Plug-in
  6885. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn = 0;
  6886. }
  6887. }
  6888. for (int index = 0; index < GB_QUANTITY; index++)
  6889. {
  6890. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING)
  6891. {
  6892. //0: unplug, 1: Plug-in
  6893. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn = 0;
  6894. }
  6895. }
  6896. }
  6897. else
  6898. {
  6899. for (int index = 0; index < AC_QUANTITY; index++)
  6900. {
  6901. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING)
  6902. {
  6903. //0: unplug, 1: Plug-in
  6904. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn = 0;
  6905. }
  6906. }
  6907. }// END FOR AC ELSE
  6908. ShmOCPP16Data->MsMsg.bits.ResetReq = 1;
  6909. strcpy((char *)ShmOCPP16Data->Reset.guid, uuid);
  6910. result = TRUE;
  6911. return result;
  6912. }
  6913. else
  6914. {
  6915. strcpy(comfirmstr, ResetStatusStr[ResetStatus_Rejected]);
  6916. sprintf((char *)ShmOCPP16Data->Reset.ResponseStatus, "%s" ,comfirmstr);
  6917. goto errorend;
  6918. }
  6919. errorend:
  6920. sendResetConfirmation(uuid, comfirmstr);
  6921. return result;
  6922. }
  6923. int handleSendLocalListRequest(char *uuid, char *payload)
  6924. {
  6925. mtrace();
  6926. int result = FAIL;
  6927. int listVersionInt;
  6928. //char *updateTypestr, *idTagstr, *expiryDatestr, *parentIdTagstr, *statusstr;
  6929. char listsearch[]="listVersion";
  6930. char updateTypesearch[]="updateType";
  6931. char localAuthorizationListsearch[]="localAuthorizationList";
  6932. char sstr[60500]={ 0 };//sstr[200]={ 0 };
  6933. char CardList[500][160]={0};
  6934. char updateTypestr[15]={0};
  6935. char idTagstr[20]={0};
  6936. char parentIdTag[20]={0};
  6937. char expiryDate[30]={0};
  6938. char idTagstatus[16]={0};
  6939. int c = 0;
  6940. int i = 0;
  6941. char *delim1 = "}";
  6942. char * pch;
  6943. char *loc;
  6944. //char *ptr;
  6945. char comfirmstr[20];
  6946. //int n_localAuthorizations = 0;
  6947. int checkState_Faulted = FALSE;
  6948. DEBUG_INFO("handleSendLocalListRequest\n");
  6949. if(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "FALSE") == 0) //For OCTT Test case
  6950. {
  6951. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_NotSupported]);
  6952. goto end;
  6953. }
  6954. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  6955. {
  6956. //check Charge Point state
  6957. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6958. {
  6959. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT ---> Faulted
  6960. {
  6961. checkState_Faulted = TRUE; //OCPP Status: Faulted
  6962. }
  6963. }
  6964. for (int index = 0; index < CCS_QUANTITY; index++)
  6965. {
  6966. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT ---> Faulted
  6967. {
  6968. checkState_Faulted = TRUE; //OCPP Status
  6969. }
  6970. }
  6971. for (int index = 0; index < GB_QUANTITY; index++)
  6972. {
  6973. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT ---> Faulted
  6974. {
  6975. checkState_Faulted = TRUE; //OCPP Status: Faulted
  6976. }
  6977. }
  6978. }
  6979. else
  6980. {
  6981. //check Charge Point state
  6982. for (int index = 0; index < AC_QUANTITY; index++)
  6983. {
  6984. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT ---> Faulted
  6985. {
  6986. checkState_Faulted = TRUE; //OCPP Status: Faulted
  6987. }
  6988. }
  6989. }// END FOR AC ELSE
  6990. if(checkState_Faulted == TRUE)
  6991. {
  6992. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Failed]);
  6993. goto end;
  6994. }
  6995. //listVersion
  6996. c = 0;
  6997. loc = strstr(payload, listsearch);
  6998. while (loc[strlen("listVersion")+2+c] != ',')
  6999. {
  7000. sstr[c] = loc[strlen("listVersion")+2+c];
  7001. c++;
  7002. }
  7003. sstr[c] = '\0';
  7004. listVersionInt = atoi(sstr);
  7005. ShmOCPP16Data->SendLocalList.ListVersion = listVersionInt;
  7006. //updateType
  7007. loc = strstr(payload, updateTypesearch);
  7008. c = 0;
  7009. while (loc[3+strlen(updateTypesearch)+c] != '\"')
  7010. {
  7011. sstr[c] = loc[3+strlen(updateTypesearch)+c];
  7012. c++;
  7013. }
  7014. sstr[c] = '\0';
  7015. strcpy(updateTypestr, sstr);
  7016. sprintf((char *)ShmOCPP16Data->SendLocalList.UpdateType, "%s", updateTypestr);
  7017. //localAuthorizationList
  7018. memset(sstr ,0, sizeof(sstr) );
  7019. loc = strstr(payload, localAuthorizationListsearch);
  7020. if(loc != NULL) // localAuthorizationList is not NULL
  7021. {
  7022. //Check UpdateType
  7023. if(strcmp(updateTypestr, UpdateTypeStr[Full]) == 0)
  7024. {
  7025. //Local list full update
  7026. printf("Local list full update.\n");
  7027. OCPP_cleanLocalList();
  7028. }
  7029. else if(strcmp(updateTypestr, UpdateTypeStr[Differential]) == 0)
  7030. {
  7031. //Local list different update
  7032. printf("Local list different update.\n");
  7033. OCPP_getListVerion();
  7034. if(listVersionInt < localversion )//if(listVersionInt <= localversion ) for OCTT Case ---remove temporally
  7035. {
  7036. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_VersionMismatch]);
  7037. goto end;
  7038. }
  7039. }
  7040. else
  7041. {
  7042. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_NotSupported]);
  7043. goto end;
  7044. }
  7045. c = 0;
  7046. while (loc[3+strlen(localAuthorizationListsearch)+c] != ']')
  7047. {
  7048. sstr[c] = loc[3+strlen(localAuthorizationListsearch)+c];
  7049. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7050. c++;
  7051. }
  7052. sstr[c] = '\0';
  7053. //parsing strings to words
  7054. i = 0;
  7055. pch = strtok(sstr,delim1);
  7056. while (pch != NULL)
  7057. {
  7058. strcpy(CardList[i], pch);
  7059. pch = strtok (NULL, delim1);
  7060. i = i + 1;
  7061. }
  7062. //local Authorizations List Numbers
  7063. //n_localAuthorizations = i;
  7064. ShmOCPP16Data->SendLocalList.ListVersion = listVersionInt;
  7065. memset(ShmOCPP16Data->SendLocalList.LocalAuthorizationList, 0 , sizeof(struct StructLocalAuthorizationList)* 500);
  7066. c= 0;
  7067. while(c < i)
  7068. {
  7069. //Search "IdToken"
  7070. memset(sstr ,0, sizeof(sstr) );
  7071. loc = strstr(CardList[c], "idTag");
  7072. int j = 0;
  7073. while (loc[3+strlen("idTag")+j] != '\"')
  7074. {
  7075. sstr[j] = loc[3+strlen("idTag")+j];
  7076. //printf("i=%d sstr=%c\n",c, sstr[j]);
  7077. j++;
  7078. }
  7079. sstr[j] = '\0';
  7080. strcpy(idTagstr, sstr);
  7081. //Search "expiryDate"
  7082. memset(sstr ,0, sizeof(sstr) );
  7083. loc = strstr(CardList[c], "expiryDate");
  7084. j = 0;
  7085. while (loc[3+strlen("expiryDate")+j] != '\"')
  7086. {
  7087. sstr[j] = loc[3+strlen("expiryDate")+j];
  7088. //printf("i=%d sstr=%c\n",c, sstr[j]);
  7089. j++;
  7090. }
  7091. sstr[j] = '\0';
  7092. strcpy(expiryDate, sstr);
  7093. //Search "parentIdTag"
  7094. memset(sstr ,0, sizeof(sstr) );
  7095. loc = strstr(CardList[c], "parentIdTag");
  7096. j = 0;
  7097. while (loc[3+strlen("parentIdTag")+j] != '\"')
  7098. {
  7099. sstr[j] = loc[3+strlen("parentIdTag")+j];
  7100. //printf("i=%d sstr=%c\n",c, sstr[j]);
  7101. j++;
  7102. }
  7103. sstr[j] = '\0';
  7104. strcpy(parentIdTag, sstr);
  7105. //Search "status"
  7106. memset(sstr ,0, sizeof(sstr) );
  7107. loc = strstr(CardList[c], "status");
  7108. j = 0;
  7109. while (loc[3+strlen("status")+j] != '\"')
  7110. {
  7111. sstr[j] = loc[3+strlen("status")+j];
  7112. //printf("i=%d sstr=%c\n",c, sstr[j]);
  7113. j++;
  7114. }
  7115. sstr[j] = '\0';
  7116. strcpy(idTagstatus, sstr);
  7117. OCPP_getIdTag(idTagstr);
  7118. //OCPP_getIdTag("test"); For Test
  7119. DEBUG_INFO("idTagAuthorization=%s\n",idTagAuthorization);
  7120. if(strcmp(updateTypestr, UpdateTypeStr[Full]) == 0)
  7121. {
  7122. //Local list full update
  7123. DEBUG_INFO("Local list full update.\n");
  7124. // update list
  7125. OCPP_addLocalList_1(listVersionInt, idTagstr, parentIdTag, expiryDate, idTagstatus);
  7126. OCPP_get_TableAuthlocalAllData();
  7127. }
  7128. else if(strcmp(updateTypestr, UpdateTypeStr[Differential]) == 0)
  7129. {
  7130. if((strcmp(idTagstr, idTagAuthorization) == 0) && (parentIdTag[0] != '\0'))
  7131. {
  7132. OCPP_addLocalList_1(listVersionInt, idTagstr, parentIdTag, expiryDate, idTagstatus);
  7133. }
  7134. else if((strcmp(idTagstr, idTagAuthorization) == 0) && (parentIdTag[0] == '\0'))
  7135. {
  7136. OCPP_deleteIdTag(idTagstr);
  7137. }
  7138. else if((strcmp(idTagstr, idTagAuthorization) != 0) && (parentIdTag[0] != '\0'))
  7139. {
  7140. OCPP_addLocalList_1(listVersionInt, idTagstr, parentIdTag, expiryDate, idTagstatus);
  7141. }
  7142. }
  7143. strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[c].IdTag, idTagstr);
  7144. strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[c].IdTagInfo.ExpiryDate, expiryDate);
  7145. strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[c].IdTagInfo.ParentIdTag, parentIdTag);
  7146. strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[c].IdTagInfo.Status, idTagstatus);
  7147. c++;
  7148. }
  7149. }
  7150. else
  7151. {
  7152. if(strcmp(updateTypestr, UpdateTypeStr[Differential]) == 0)
  7153. {
  7154. //Local list different update
  7155. DEBUG_INFO("Local list different update.\n");
  7156. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Accepted]);
  7157. goto end;
  7158. }
  7159. }
  7160. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Accepted]);
  7161. end:
  7162. sendSendLocalListConfirmation(uuid, comfirmstr);
  7163. //ShmOCPP16Data->MsMsg.bits.SendLocalListConf = 1;
  7164. #if 0
  7165. if(ShmOCPP16Data->SendLocalList.LocalAuthorizationList != NULL)
  7166. free(ShmOCPP16Data->SendLocalList.LocalAuthorizationList);
  7167. #endif
  7168. return result;
  7169. }
  7170. /*
  7171. enum _SYSTEM_STATUS
  7172. {
  7173. S_BOOTING = 0,
  7174. S_IDLE, =1
  7175. S_AUTHORIZING, =2
  7176. S_REASSIGN_CHECK, =3
  7177. S_REASSIGN, =4
  7178. S_PRECHARGE, =5
  7179. S_PREPARING_FOR_EV, =6
  7180. S_PREPARING_FOR_EVSE, =7
  7181. S_CHARGING, =8
  7182. S_TERMINATING, =9
  7183. S_COMPLETE, =10
  7184. S_ALARM, =11
  7185. S_FAULT =12
  7186. };
  7187. */
  7188. #define MAX 200
  7189. int handleSetChargingProfileRequest(char *uuid, char *payload)
  7190. {
  7191. mtrace();
  7192. int result = FAIL;
  7193. int connectorIdInt=0, chargingProfileIdInt=0, transactionIdInt=0,stackLevelInt=0, durationInt=0, startPeriodInt[10]={0}, numberPhasesInt[10]={0};
  7194. int tempconnectorIdInt=0, tempchargingProfileIdInt=0, tempstackLevelInt=0;
  7195. char chargingProfilePurposeStr[30]={0};
  7196. char chargingProfileKindStr[16]={0};
  7197. char recurrencyKindStr[10]={0};
  7198. char validFromStr[30]={0}, validToStr[30]={0}, startScheduleStr[30]={0}, chargingRateUnitStr[6]={0};
  7199. float minChargingRateFloat = 0.0, limitflaot[10] = {0.0};
  7200. int chargingSchedulePeriodCount = 0;
  7201. //int updateflag = FALSE;
  7202. char comfirmstr[20]={0};
  7203. int meet= FALSE;
  7204. char sstr[10]={0};
  7205. int c = 0;
  7206. char *loc;
  7207. FILE *fptr1;//, *fptr2;
  7208. //int lno=0;//, linectr = 0;
  7209. //int modifyflag = FALSE;
  7210. char filename[MAX]={0};
  7211. char tempfile[] = "../Storage/OCPP/temp.json";
  7212. int resultRename=0;
  7213. char rmFileCmd[50]={0};
  7214. char tempchargingProfilePurposeStr[30]={0};
  7215. //[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}}}]
  7216. DEBUG_INFO("handleSetChargingProfileRequest\n");
  7217. connectorIdInt = chargingProfileIdInt = transactionIdInt = stackLevelInt = 0;
  7218. //*********************connectorId***************************/
  7219. loc = strstr(payload, "connectorId");
  7220. c = 0;
  7221. memset(sstr ,0, sizeof(sstr) );
  7222. while (loc[strlen("connectorId")+2+c] != ',')
  7223. {
  7224. sstr[c] = loc[strlen("connectorId")+2+c];
  7225. c++;
  7226. }
  7227. sstr[c] = '\0';
  7228. connectorIdInt = atoi(sstr);
  7229. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7230. {
  7231. ShmOCPP16Data->SetChargingProfile[0].ConnectorId = connectorIdInt;
  7232. }
  7233. else
  7234. {
  7235. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ConnectorId = connectorIdInt;
  7236. }
  7237. //DEBUG_INFO("handleSetChargingProfileRequest -1\n");
  7238. //*********************chargingProfileId***************************/
  7239. loc = strstr(payload, "chargingProfileId");
  7240. c = 0;
  7241. memset(sstr ,0, sizeof(sstr) );
  7242. while (loc[strlen("chargingProfileId")+2+c] != ',')
  7243. {
  7244. sstr[c] = loc[strlen("chargingProfileId")+2+c];
  7245. c++;
  7246. }
  7247. sstr[c] = '\0';
  7248. chargingProfileIdInt = atoi(sstr);
  7249. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7250. {
  7251. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingProfileId = chargingProfileIdInt;
  7252. }
  7253. else
  7254. {
  7255. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingProfileId = chargingProfileIdInt;
  7256. }
  7257. //DEBUG_INFO("handleSetChargingProfileRequest -2\n");
  7258. //*********************transactionId***************************/
  7259. loc = strstr(payload, "transactionId");
  7260. if(loc != NULL)
  7261. {
  7262. c = 0;
  7263. memset(sstr ,0, sizeof(sstr) );
  7264. while (loc[strlen("transactionId")+2+c] != ',')
  7265. {
  7266. sstr[c] = loc[strlen("transactionId")+2+c];
  7267. c++;
  7268. }
  7269. sstr[c] = '\0';
  7270. transactionIdInt = atoi(sstr);
  7271. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7272. {
  7273. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.TransactionId = transactionIdInt;
  7274. }
  7275. else
  7276. {
  7277. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.TransactionId = transactionIdInt;
  7278. }
  7279. }
  7280. //DEBUG_INFO("handleSetChargingProfileRequest -3\n");
  7281. //*********************stackLevel***************************/
  7282. loc = strstr(payload, "stackLevel");
  7283. c = 0;
  7284. memset(sstr ,0, sizeof(sstr) );
  7285. while (loc[strlen("stackLevel")+2+c] != ',')
  7286. {
  7287. sstr[c] = loc[strlen("stackLevel")+2+c];
  7288. c++;
  7289. }
  7290. sstr[c] = '\0';
  7291. stackLevelInt = atoi(sstr);
  7292. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7293. {
  7294. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.StackLevel = stackLevelInt;
  7295. }
  7296. else
  7297. {
  7298. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.StackLevel = stackLevelInt;
  7299. }
  7300. //DEBUG_INFO("handleSetChargingProfileRequest -4\n");
  7301. //*********************chargingProfilePurpose***************************/
  7302. loc = strstr(payload, "chargingProfilePurpose");
  7303. c = 0;
  7304. memset(sstr ,0, sizeof(sstr) );
  7305. while (loc[3+strlen("chargingProfilePurpose")+c] != '\"')
  7306. {
  7307. sstr[c] = loc[3+strlen("chargingProfilePurpose")+c];
  7308. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7309. c++;
  7310. }
  7311. sstr[c] = '\0';
  7312. strcpy(chargingProfilePurposeStr,sstr);
  7313. //DEBUG_INFO("chargingProfilePurposeStr=%s\n",chargingProfilePurposeStr);
  7314. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7315. {
  7316. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingProfilePurpose, chargingProfilePurposeStr);
  7317. }
  7318. else
  7319. {
  7320. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingProfilePurpose, chargingProfilePurposeStr);
  7321. }
  7322. //DEBUG_INFO("handleSetChargingProfileRequest -6\n");
  7323. //*********************chargingProfileKind***************************/
  7324. loc = strstr(payload, "chargingProfileKind");
  7325. c = 0;
  7326. memset(sstr ,0, sizeof(sstr) );
  7327. while (loc[3+strlen("chargingProfileKind")+c] != '\"')
  7328. {
  7329. sstr[c] = loc[3+strlen("chargingProfileKind")+c];
  7330. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7331. c++;
  7332. }
  7333. sstr[c] = '\0';
  7334. strcpy(chargingProfileKindStr,sstr);
  7335. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7336. {
  7337. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingProfileKind, chargingProfileKindStr);
  7338. }
  7339. else
  7340. {
  7341. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingProfileKind, chargingProfileKindStr);
  7342. }
  7343. //DEBUG_INFO("handleSetChargingProfileRequest -7\n");
  7344. //*********************recurrencyKind***************************/
  7345. loc = strstr(payload, "recurrencyKind");
  7346. if(loc != NULL)
  7347. {
  7348. c = 0;
  7349. memset(sstr ,0, sizeof(sstr) );
  7350. while (loc[3+strlen("recurrencyKind")+c] != '\"')
  7351. {
  7352. sstr[c] = loc[3+strlen("recurrencyKind")+c];
  7353. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7354. c++;
  7355. }
  7356. sstr[c] = '\0';
  7357. strcpy(recurrencyKindStr,sstr);
  7358. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7359. {
  7360. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.RecurrencyKind, recurrencyKindStr);
  7361. }
  7362. else
  7363. {
  7364. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.RecurrencyKind, recurrencyKindStr);
  7365. }
  7366. }
  7367. //DEBUG_INFO("handleSetChargingProfileRequest -8\n");
  7368. //*********************validFrom***************************/
  7369. loc = strstr(payload, "validFrom");
  7370. if(loc != NULL)
  7371. {
  7372. c = 0;
  7373. memset(sstr ,0, sizeof(sstr) );
  7374. while (loc[3+strlen("validFrom")+c] != '\"')
  7375. {
  7376. sstr[c] = loc[3+strlen("validFrom")+c];
  7377. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7378. c++;
  7379. }
  7380. sstr[c] = '\0';
  7381. strcpy(validFromStr,sstr);
  7382. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7383. {
  7384. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ValidFrom, validFromStr);
  7385. }
  7386. else
  7387. {
  7388. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ValidFrom, validFromStr);
  7389. }
  7390. }
  7391. //DEBUG_INFO("handleSetChargingProfileRequest -9\n");
  7392. //*********************validTo***************************/
  7393. loc = strstr(payload, "validTo");
  7394. if(loc != NULL)
  7395. {
  7396. c = 0;
  7397. memset(sstr ,0, sizeof(sstr) );
  7398. while (loc[3+strlen("validTo")+c] != '\"')
  7399. {
  7400. sstr[c] = loc[3+strlen("validTo")+c];
  7401. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7402. c++;
  7403. }
  7404. sstr[c] = '\0';
  7405. strcpy(validToStr,sstr);
  7406. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7407. {
  7408. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ValidTo, validToStr);
  7409. }
  7410. else
  7411. {
  7412. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ValidTo, validToStr);
  7413. }
  7414. }
  7415. //DEBUG_INFO("handleSetChargingProfileRequest -10\n");
  7416. //*********************duration***************************/
  7417. loc = strstr(payload, "duration");
  7418. if(loc != NULL)
  7419. {
  7420. c = 0;
  7421. memset(sstr ,0, sizeof(sstr) );
  7422. while (loc[strlen("duration")+2+c] != ',')
  7423. {
  7424. sstr[c] = loc[strlen("duration")+2+c];
  7425. c++;
  7426. }
  7427. sstr[c] = '\0';
  7428. durationInt = atoi(sstr);
  7429. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7430. {
  7431. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.Duration = durationInt;
  7432. }
  7433. else
  7434. {
  7435. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.Duration = durationInt;
  7436. }
  7437. }
  7438. //DEBUG_INFO("handleSetChargingProfileRequest -11\n");
  7439. //*********************startSchedule***************************/
  7440. loc = strstr(payload, "startSchedule");
  7441. if(loc != NULL)
  7442. {
  7443. c = 0;
  7444. memset(sstr ,0, sizeof(sstr) );
  7445. while (loc[3+strlen("startSchedule")+c] != '\"')
  7446. {
  7447. sstr[c] = loc[3+strlen("startSchedule")+c];
  7448. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7449. c++;
  7450. }
  7451. sstr[c] = '\0';
  7452. strcpy(startScheduleStr,sstr);
  7453. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7454. {
  7455. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.StartSchedule,startScheduleStr);
  7456. }
  7457. else
  7458. {
  7459. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.StartSchedule,startScheduleStr);
  7460. }
  7461. }
  7462. //DEBUG_INFO("handleSetChargingProfileRequest -12\n");
  7463. //*********************chargingRateUnit***************************/
  7464. loc = strstr(payload, "chargingRateUnit");
  7465. if(loc != NULL)
  7466. {
  7467. c = 0;
  7468. memset(sstr ,0, sizeof(sstr) );
  7469. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  7470. {
  7471. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  7472. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7473. c++;
  7474. }
  7475. sstr[c] = '\0';
  7476. strcpy(chargingRateUnitStr,sstr);
  7477. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7478. {
  7479. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingRateUnit,chargingRateUnitStr);
  7480. }
  7481. else
  7482. {
  7483. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingRateUnit,chargingRateUnitStr);
  7484. }
  7485. }
  7486. //DEBUG_INFO("handleSetChargingProfileRequest -13\n");
  7487. //****************chargingSchedulePeriod count start*******************/
  7488. int what_len = strlen("startPeriod");
  7489. char *where = payload;
  7490. if (what_len)
  7491. while ((where = strstr(where, "startPeriod"))) {
  7492. where += what_len;
  7493. chargingSchedulePeriodCount++;
  7494. }
  7495. //DEBUG_INFO("chargingSchedulePeriodCount=%d\n",chargingSchedulePeriodCount);
  7496. //DEBUG_INFO("handleSetChargingProfileRequest -13 -1\n");
  7497. where = payload;
  7498. for(int periodNums=0; periodNums < chargingSchedulePeriodCount; periodNums++)
  7499. {
  7500. //****************startPeriod*******************/
  7501. c=0;
  7502. loc = strstr(where, "startPeriod");
  7503. memset(sstr ,0, sizeof(sstr) );
  7504. while ((loc[strlen("startPeriod")+2+c] != '}') && (loc[strlen("startPeriod")+2+c] != ','))
  7505. {
  7506. sstr[c] = loc[strlen("startPeriod")+2+c];
  7507. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7508. c++;
  7509. }
  7510. sstr[c] = '\0';
  7511. startPeriodInt[periodNums] = atoi(sstr);
  7512. //DEBUG_INFO("sstr=%d\n",atoi(sstr));
  7513. //DEBUG_INFO("handleSetChargingProfileRequest -13 -1 -1\n");
  7514. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7515. {
  7516. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].StartPeriod = startPeriodInt[periodNums];
  7517. }
  7518. else
  7519. {
  7520. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].StartPeriod = startPeriodInt[periodNums];
  7521. }
  7522. //DEBUG_INFO("handleSetChargingProfileRequest -13 -2\n");
  7523. //****************limit*******************/
  7524. c=0;
  7525. loc = strstr(where, "limit");
  7526. memset(sstr ,0, sizeof(sstr) );
  7527. while ((loc[strlen("limit")+2+c] != '}') && (loc[strlen("limit")+2+c] != ','))
  7528. {
  7529. sstr[c] = loc[strlen("limit")+2+c];
  7530. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7531. c++;
  7532. }
  7533. sstr[c] = '\0';
  7534. limitflaot[periodNums] = atof(sstr);
  7535. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7536. {
  7537. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].Limit = limitflaot[periodNums];
  7538. }
  7539. else
  7540. {
  7541. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].Limit = limitflaot[periodNums];
  7542. }
  7543. //DEBUG_INFO("handleSetChargingProfileRequest -13 -3\n");
  7544. //****************numberPhases*******************/
  7545. loc = strstr(where, "numberPhases");
  7546. if(loc != NULL)
  7547. {
  7548. c=0;
  7549. memset(sstr ,0, sizeof(sstr) );
  7550. while ((loc[strlen("numberPhases")+2+c] != '}') && (loc[strlen("numberPhases")+2+c] != ','))
  7551. {
  7552. sstr[c] = loc[strlen("numberPhases")+2+c];
  7553. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7554. c++;
  7555. }
  7556. sstr[c] = '\0';
  7557. numberPhasesInt[periodNums] = atoi(sstr);
  7558. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7559. {
  7560. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].NumberPhases = numberPhasesInt[periodNums];
  7561. }
  7562. else
  7563. {
  7564. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].NumberPhases = numberPhasesInt[periodNums];
  7565. }
  7566. }
  7567. where = loc;
  7568. }
  7569. //DEBUG_INFO("handleSetChargingProfileRequest -14\n");
  7570. //****************chargingSchedulePeriod count end*******************/
  7571. //*********************minChargingRate***************************/
  7572. loc = strstr(payload, "minChargingRate");
  7573. if(loc != NULL)
  7574. {
  7575. c = 0;
  7576. memset(sstr ,0, sizeof(sstr) );
  7577. while ((loc[strlen("minChargingRate")+2+c] != ',')&&(loc[strlen("minChargingRate")+2+c] != '}'))
  7578. {
  7579. sstr[c] = loc[strlen("minChargingRate")+2+c];
  7580. c++;
  7581. }
  7582. sstr[c] = '\0';
  7583. minChargingRateFloat = atof(sstr);
  7584. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7585. {
  7586. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.MinChargingRate = minChargingRateFloat;
  7587. }
  7588. else
  7589. {
  7590. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.MinChargingRate = minChargingRateFloat;
  7591. }
  7592. }
  7593. DEBUG_INFO("\n\n Replace a specific line in a text file with a new text :\n");
  7594. DEBUG_INFO("-------------------------------------------------------------\n");
  7595. DEBUG_INFO(" Input the file name to be opened : ");
  7596. //fgets(fname, MAX, stdin);
  7597. //fname[strlen(fname) - 1] = '\0';
  7598. #if 0
  7599. switch(connectorIdInt)
  7600. {
  7601. case 0:
  7602. strcpy(filename, ChargingProfile_0_JSON );
  7603. break;
  7604. case 1:
  7605. strcpy(filename, ChargingProfile_1_JSON );
  7606. break;
  7607. case 2:
  7608. strcpy(filename, ChargingProfile_2_JSON );
  7609. break;
  7610. default:
  7611. strcpy(filename, ChargingProfile_0_JSON );
  7612. break;
  7613. }
  7614. fptr1 = fopen(filename, "r");
  7615. if (!fptr1)
  7616. {
  7617. //file not exist
  7618. DEBUG_INFO("Unable to open the input file!!\n");
  7619. fptr1 = fopen(filename, "w+");
  7620. }
  7621. fclose(fptr1);
  7622. #endif
  7623. //DEBUG_INFO("chargingProfilePurposeStr=%s\n",chargingProfilePurposeStr);
  7624. //DEBUG_INFO(" ChargingProfilePurposeTypeStr[TxProfile]=%s\n", ChargingProfilePurposeTypeStr[TxProfile]);
  7625. if(strcmp(chargingProfilePurposeStr, ChargingProfilePurposeTypeStr[ChargePointMaxProfile]) == 0)
  7626. {
  7627. //printf("set chargingProfile 1-2\n");
  7628. DEBUG_INFO("chargingProfilePurposeStr is ChargePointMaxProfile !!! \n");
  7629. if(connectorIdInt != 0)
  7630. {
  7631. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  7632. goto end;
  7633. }
  7634. strcpy(filename, ChargePointMaxProfile_JSON );
  7635. fptr1 = fopen(filename, "r");
  7636. if (!fptr1)
  7637. {
  7638. //file not exist
  7639. DEBUG_INFO("Unable to open the input file!!\n");
  7640. fptr1 = fopen(filename, "w+");
  7641. }
  7642. fclose(fptr1);
  7643. }
  7644. else if(strcmp(chargingProfilePurposeStr, ChargingProfilePurposeTypeStr[TxDefaultProfile]) == 0)
  7645. {
  7646. //printf("set chargingProfile 1-3\n");
  7647. DEBUG_INFO("chargingProfilePurposeStr is TxDefaultProfile !!! \n");
  7648. if((connectorIdInt != 0) && (connectorIdInt > gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/))
  7649. {
  7650. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  7651. goto end;
  7652. }
  7653. switch(connectorIdInt)
  7654. {
  7655. case 0:
  7656. strcpy(filename, TxDefaultProfile_0_JSON );
  7657. break;
  7658. case 1:
  7659. strcpy(filename, TxDefaultProfile_1_JSON );
  7660. break;
  7661. case 2:
  7662. strcpy(filename, TxDefaultProfile_2_JSON );
  7663. break;
  7664. default:
  7665. strcpy(filename, TxDefaultProfile_0_JSON );
  7666. break;
  7667. }
  7668. fptr1 = fopen(filename, "r");
  7669. if (!fptr1)
  7670. {
  7671. //file not exist
  7672. DEBUG_INFO("Unable to open the input file!!\n");
  7673. fptr1 = fopen(filename, "w+");
  7674. }
  7675. fclose(fptr1);
  7676. }
  7677. else if(strcmp(chargingProfilePurposeStr, ChargingProfilePurposeTypeStr[TxProfile]) == 0)
  7678. {
  7679. //printf("set chargingProfile 1-4\n");
  7680. DEBUG_INFO("chargingProfilePurposeStr is TxProfile !!! \n");
  7681. //check Transaction active
  7682. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  7683. {
  7684. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (connectorIdInt -1))
  7685. {
  7686. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  7687. {
  7688. if(transactionIdInt == ShmOCPP16Data->StartTransaction[connectorIdInt -1].ResponseTransactionId)
  7689. {
  7690. meet = TRUE;
  7691. break;
  7692. }
  7693. }
  7694. }
  7695. }
  7696. for (int index = 0; index < CCS_QUANTITY; index++)
  7697. {
  7698. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (connectorIdInt -1))
  7699. {
  7700. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  7701. {
  7702. if(transactionIdInt == ShmOCPP16Data->StartTransaction[connectorIdInt -1].ResponseTransactionId)
  7703. {
  7704. meet = TRUE;
  7705. break;
  7706. }
  7707. }
  7708. }
  7709. }
  7710. for (int index = 0; index < GB_QUANTITY; index++)
  7711. {
  7712. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (connectorIdInt -1))
  7713. {
  7714. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) // S_CHARGING
  7715. {
  7716. if(transactionIdInt == ShmOCPP16Data->StartTransaction[connectorIdInt -1].ResponseTransactionId)
  7717. {
  7718. meet = TRUE;
  7719. break;
  7720. }
  7721. }
  7722. }
  7723. }
  7724. if(meet == FALSE)
  7725. {
  7726. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  7727. goto end;
  7728. }
  7729. if((connectorIdInt != 0) && (connectorIdInt > gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/))
  7730. {
  7731. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  7732. goto end;
  7733. }
  7734. switch(connectorIdInt)
  7735. {
  7736. case 0:
  7737. break;
  7738. case 1:
  7739. strcpy(filename, TxProfile_1_JSON);
  7740. break;
  7741. case 2:
  7742. strcpy(filename, TxProfile_2_JSON);
  7743. break;
  7744. default:
  7745. strcpy(filename, TxProfile_1_JSON);
  7746. break;
  7747. }
  7748. fptr1 = fopen(filename, "r");
  7749. if (!fptr1)
  7750. {
  7751. //file not exist
  7752. DEBUG_INFO("Unable to open the input file!!\n");
  7753. fptr1 = fopen(filename, "w+");
  7754. }
  7755. fclose(fptr1);
  7756. }
  7757. //**********************************Write to File********************************************************/
  7758. FILE *infile;
  7759. FILE *outfile;
  7760. // open file for writing
  7761. infile = fopen (filename, "r");
  7762. outfile = fopen (tempfile, "w");
  7763. int d =0;
  7764. d = fgetc(infile);
  7765. DEBUG_INFO("d:%d\n",d);
  7766. rewind(infile);
  7767. //*检测到文件结束标识返回1,否则返回0。*/
  7768. if(d == EOF)
  7769. {
  7770. DEBUG_INFO("ChargingProfile content is NULL\n");
  7771. fprintf(outfile,"[%s]\n",payload);
  7772. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Accepted] );
  7773. fclose(infile);
  7774. fclose(outfile);
  7775. sprintf(rmFileCmd,"rm -f %s",filename);
  7776. system(rmFileCmd);
  7777. resultRename = rename(tempfile, filename);
  7778. if(resultRename == 0)
  7779. {
  7780. DEBUG_INFO("File chargingProfile renamed successfully");
  7781. }
  7782. else
  7783. {
  7784. DEBUG_INFO("Error: unable to rename the chargingProfile file");
  7785. }
  7786. //sprintf(rmFileCmd,"rm -f %s",tempfile);
  7787. //system(rmFileCmd);
  7788. }
  7789. else
  7790. {
  7791. char buf[1000]={0};
  7792. while (fgets(buf, sizeof(buf), infile) != NULL)
  7793. {
  7794. buf[strlen(buf) - 1] = '\0'; // eat the newline fgets() stores
  7795. //*************************tempconnectorIdInt*********************************/
  7796. loc = strstr(buf, "connectorId");
  7797. c = 0;
  7798. memset(sstr ,0, sizeof(sstr) );
  7799. while (loc[strlen("connectorId")+2+c] != ',')
  7800. {
  7801. sstr[c] = loc[strlen("connectorId")+2+c];
  7802. c++;
  7803. }
  7804. sstr[c] = '\0';
  7805. tempconnectorIdInt = atoi(sstr);
  7806. //*************************tempchargingProfileIdInt*********************************/
  7807. loc = strstr(buf, "chargingProfileId");
  7808. c = 0;
  7809. memset(sstr ,0, sizeof(sstr) );
  7810. while (loc[strlen("chargingProfileId")+2+c] != ',')
  7811. {
  7812. sstr[c] = loc[strlen("chargingProfileId")+2+c];
  7813. c++;
  7814. }
  7815. sstr[c] = '\0';
  7816. tempchargingProfileIdInt = atoi(sstr);
  7817. //*************************tempstackLevelInt*********************************/
  7818. loc = strstr(buf, "stackLevel");
  7819. c = 0;
  7820. memset(sstr ,0, sizeof(sstr) );
  7821. while (loc[strlen("stackLevel")+2+c] != ',')
  7822. {
  7823. sstr[c] = loc[strlen("stackLevel")+2+c];
  7824. c++;
  7825. }
  7826. sstr[c] = '\0';
  7827. tempstackLevelInt = atoi(sstr);
  7828. //*************************tempchargingProfilePurposeStr*********************************/
  7829. loc = strstr(payload, "chargingProfilePurpose");
  7830. c = 0;
  7831. memset(sstr ,0, sizeof(sstr) );
  7832. while (loc[3+strlen("chargingProfilePurpose")+c] != '\"')
  7833. {
  7834. sstr[c] = loc[3+strlen("chargingProfilePurpose")+c];
  7835. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7836. c++;
  7837. }
  7838. sstr[c] = '\0';
  7839. strcpy(tempchargingProfilePurposeStr,sstr);
  7840. if((tempconnectorIdInt == connectorIdInt) && (tempchargingProfileIdInt == chargingProfileIdInt))
  7841. {
  7842. if((tempstackLevelInt == stackLevelInt) && (strcmp(tempchargingProfilePurposeStr, chargingProfilePurposeStr) == 0))
  7843. {
  7844. //DEBUG_INFO("update set chargingProfile to file -0\n");
  7845. fprintf(outfile,"[%s]\n",payload);
  7846. }
  7847. else
  7848. {
  7849. //DEBUG_INFO("update set chargingProfile to file -1\n");
  7850. if(tempstackLevelInt < stackLevelInt)
  7851. {
  7852. //DEBUG_INFO("update set chargingProfile to file -2\n");
  7853. fprintf(outfile,"[%s]\n",payload);
  7854. fprintf(outfile,"[%s]\n",buf);
  7855. }
  7856. else
  7857. {
  7858. fprintf(outfile,"[%s]\n",buf);
  7859. fprintf(outfile,"[%s]\n",payload);
  7860. }
  7861. }
  7862. DEBUG_INFO("update set chargingProfile to file\n");
  7863. }
  7864. else
  7865. {
  7866. if(tempchargingProfileIdInt < chargingProfileIdInt)
  7867. {
  7868. fprintf(outfile,"[%s]\n",payload);
  7869. fprintf(outfile,"[%s]\n",buf);
  7870. }
  7871. else if(tempstackLevelInt < stackLevelInt)
  7872. {
  7873. fprintf(outfile,"[%s]\n",payload);
  7874. fprintf(outfile,"[%s]\n",buf);
  7875. }
  7876. else
  7877. {
  7878. fprintf(outfile,"[%s]\n",buf);
  7879. fprintf(outfile,"[%s]\n",payload);
  7880. }
  7881. fprintf(outfile,"[%s]\n",buf);
  7882. DEBUG_INFO("add set chargingProfile to file\n");
  7883. }
  7884. } // end of while loop
  7885. fclose(infile);
  7886. fclose(outfile);
  7887. sprintf(rmFileCmd,"rm -f %s",filename);
  7888. system(rmFileCmd);
  7889. resultRename = rename(tempfile, filename);
  7890. if(resultRename == 0)
  7891. {
  7892. DEBUG_INFO("File chargingProfile renamed successfully");
  7893. }
  7894. else
  7895. {
  7896. DEBUG_INFO("Error: unable to rename the chargingProfile file");
  7897. }
  7898. result = TRUE;
  7899. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Accepted] );
  7900. }
  7901. end:
  7902. sendSetChargingProfileConfirmation(uuid, comfirmstr);
  7903. return result;
  7904. return result;
  7905. }
  7906. int handleTriggerMessageRequest(char *uuid, char *payload)
  7907. {
  7908. mtrace();
  7909. int result = FAIL;
  7910. int connectorIdIsNULL = FALSE;
  7911. int connectorIdInt =0;
  7912. char sstr[40]={0};
  7913. char requestedMessagestr[40]={0};
  7914. char comfirmstr[20]={0};
  7915. int c = 0;
  7916. char *loc;
  7917. DEBUG_INFO("handleTriggerMessageRequest\n");
  7918. //[2,"266e23f4-27a4-41cf-84cb-aadf56b9523f","TriggerMessage",{"requestedMessage":"DiagnosticsStatusNotification","connectorId":1}]
  7919. c = 0;
  7920. loc = strstr(payload, "requestedMessage");
  7921. while (loc[3+strlen("requestedMessage")+c] != '\"')
  7922. {
  7923. sstr[c] = loc[3+strlen("requestedMessage")+c];
  7924. c++;
  7925. }
  7926. sstr[c] = '\0';
  7927. strcpy(requestedMessagestr, sstr);
  7928. c = 0;
  7929. loc = strstr(payload, "connectorId");
  7930. if(loc == NULL)
  7931. {
  7932. connectorIdIsNULL = TRUE;
  7933. }
  7934. else
  7935. {
  7936. memset(sstr ,0, sizeof(sstr) );
  7937. while ((loc[strlen("connectorId")+2+c] != ',')&&(loc[strlen("connectorId")+2+c] != '}'))
  7938. {
  7939. sstr[c] = loc[strlen("connectorId")+2+c];
  7940. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7941. c++;
  7942. }
  7943. sstr[c] = '\0';
  7944. connectorIdInt = atoi(sstr);
  7945. }
  7946. if(connectorIdIsNULL == FALSE && ((connectorIdInt > 0) && (connectorIdInt <= gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/ )))
  7947. {
  7948. //connectorIdInt = json_object_get_int(connectorId);
  7949. sprintf((char *)ShmOCPP16Data->TriggerMessage[connectorIdInt -1].RequestedMessage, "%s" ,requestedMessagestr);
  7950. ShmOCPP16Data->TriggerMessage[connectorIdInt -1].ConnectorId = connectorIdInt;
  7951. //ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].TriggerMessageReq = 1;
  7952. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7953. sendTriggerMessageConfirmation(uuid,comfirmstr);
  7954. }
  7955. else if(connectorIdIsNULL == FALSE && ((connectorIdInt <= 0) || (connectorIdInt > gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/) ))
  7956. {
  7957. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Rejected] );
  7958. sendTriggerMessageConfirmation(uuid,comfirmstr);
  7959. return TRUE;
  7960. }
  7961. if((strcmp(requestedMessagestr, MessageTriggerStr[FirmwareStatusNotification]) != 0) &&
  7962. (strcmp(requestedMessagestr, MessageTriggerStr[DiagnosticsStatusNotification]) != 0) &&
  7963. (strcmp(requestedMessagestr, MessageTriggerStr[BootNotification]) != 0 ) &&
  7964. (strcmp(requestedMessagestr, MessageTriggerStr[Heartbeat]) != 0) &&
  7965. (strcmp(requestedMessagestr, MessageTriggerStr[MeterValues]) != 0) &&
  7966. (strcmp(requestedMessagestr, MessageTriggerStr[StatusNotification]) != 0 ))
  7967. {
  7968. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_NotImplemented] );
  7969. sendTriggerMessageConfirmation(uuid,comfirmstr);
  7970. return TRUE;
  7971. }
  7972. else
  7973. {
  7974. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7975. sendTriggerMessageConfirmation(uuid,comfirmstr);
  7976. }
  7977. if( strcmp(requestedMessagestr, MessageTriggerStr[FirmwareStatusNotification]) == 0)
  7978. {
  7979. if((FirmwareStatusNotificationStatus != 2) && (FirmwareStatusNotificationStatus != 3) && (FirmwareStatusNotificationStatus != 5) )
  7980. {
  7981. FirmwareStatusNotificationStatus = 3;
  7982. }
  7983. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatusNotificationStatus]);
  7984. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7985. }
  7986. else if(strcmp(requestedMessagestr, MessageTriggerStr[DiagnosticsStatusNotification]) == 0 )
  7987. {
  7988. //printf("DiagnosticsStatusStr[DiagnosticsStatus_Idle] =%s\n",DiagnosticsStatusStr[DiagnosticsStatus_Idle]);
  7989. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatusNotificationStatus]);
  7990. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7991. }
  7992. else if(strcmp(requestedMessagestr, MessageTriggerStr[BootNotification]) == 0 )
  7993. {
  7994. sendBootNotificationRequest();
  7995. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7996. }
  7997. else if(strcmp(requestedMessagestr, MessageTriggerStr[Heartbeat]) == 0 )
  7998. {
  7999. sendHeartbeatRequest(connectorIdInt);
  8000. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  8001. }
  8002. else if (strcmp(requestedMessagestr, MessageTriggerStr[MeterValues]) == 0 )
  8003. {
  8004. if(connectorIdIsNULL == FALSE)
  8005. {
  8006. if((connectorIdInt > 0) && ((connectorIdInt -1) < gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/))
  8007. {
  8008. ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].TriggerMessageReq = 1;
  8009. sendMeterValuesRequest(connectorIdInt -1);
  8010. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  8011. }
  8012. }
  8013. else
  8014. {
  8015. for(int idx=0;idx< gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/;idx++)
  8016. {
  8017. ShmOCPP16Data->CsMsg.bits[idx].TriggerMessageReq = 1;
  8018. sendMeterValuesRequest(idx);
  8019. }
  8020. }
  8021. }
  8022. else if(strcmp(requestedMessagestr, MessageTriggerStr[StatusNotification]) == 0 )
  8023. {
  8024. if(connectorIdIsNULL == FALSE)
  8025. {
  8026. if((connectorIdInt > 0) && ((connectorIdInt -1) < gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/))
  8027. {
  8028. sendStatusNotificationRequest(connectorIdInt -1);
  8029. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  8030. }
  8031. }
  8032. else
  8033. {
  8034. for(int idx=0;idx< gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/;idx++)
  8035. sendStatusNotificationRequest(idx);
  8036. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  8037. }
  8038. }
  8039. return result;
  8040. }
  8041. int handleUnlockConnectorRequest(char *uuid, char *payload)
  8042. {
  8043. mtrace();
  8044. int result = FAIL;
  8045. char sstr[6]={0};
  8046. int connectorIdInt =0;
  8047. char comfirmstr[20]={0};
  8048. int c = 0;
  8049. char *loc;
  8050. //[2,"ba1cbd49-2a76-493a-8f76-fa23e7606532","UnlockConnector",{"connectorId":1}]
  8051. DEBUG_INFO("handleUnlockConnectorRequest ...\n");
  8052. c = 0;
  8053. loc = strstr(payload, "connectorId");
  8054. memset(sstr ,0, sizeof(sstr) );
  8055. while (loc[strlen("connectorId")+2+c] != '}')
  8056. {
  8057. sstr[c] = loc[strlen("connectorId")+2+c];
  8058. //printf("i=%d sstr=%c\n",c, sstr[c]);
  8059. c++;
  8060. }
  8061. sstr[c] = '\0';
  8062. connectorIdInt = atoi(sstr);
  8063. DEBUG_INFO("\n unlock connectorIdInt=%d\n",connectorIdInt);
  8064. if(/*CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY*/gunTotalNumber == 0)
  8065. {
  8066. sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockStatus_NotSupported] );
  8067. goto end;
  8068. }
  8069. else if((connectorIdInt > gunTotalNumber/*CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY*/) || (connectorIdInt <= 0))
  8070. {
  8071. //sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockStatus_NotSupported] );
  8072. sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockStatus_NotSupported] );
  8073. goto end;
  8074. }
  8075. else
  8076. {
  8077. //check Transaction active
  8078. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  8079. {
  8080. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  8081. {
  8082. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (connectorIdInt-1) ) && ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE) ))
  8083. {
  8084. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
  8085. }
  8086. }
  8087. for (int index = 0; index < CCS_QUANTITY; index++)
  8088. {
  8089. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (connectorIdInt-1) ) && ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE) ))
  8090. {
  8091. //stop Transaction
  8092. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
  8093. }
  8094. }
  8095. for (int index = 0; index < GB_QUANTITY; index++)
  8096. {
  8097. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (connectorIdInt-1) ) &&((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING)||(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_IDLE)))
  8098. {
  8099. //stop Transaction
  8100. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
  8101. }
  8102. }
  8103. }
  8104. else
  8105. {
  8106. for (int index = 0; index < AC_QUANTITY; index++)
  8107. {
  8108. if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == (connectorIdInt-1) ) && ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE) ))
  8109. {
  8110. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
  8111. }
  8112. }
  8113. }// END FOR AC ELSE
  8114. ShmOCPP16Data->UnlockConnector[connectorIdInt-1].ConnectorId = connectorIdInt;
  8115. strcpy((char *)ShmOCPP16Data->UnlockConnector[connectorIdInt-1].guid, uuid);
  8116. result = TRUE;
  8117. return result;
  8118. }
  8119. end:
  8120. //json_object_put(obj); --- remove temporally
  8121. sendUnlockConnectorConfirmation(uuid, comfirmstr);
  8122. return result;
  8123. }
  8124. int handleUpdateFirmwareRequest(char *uuid, char *payload)
  8125. {
  8126. mtrace();
  8127. int result = FAIL;
  8128. pthread_t t;
  8129. sendUpdateFirmwareConfirmation(uuid);
  8130. pthread_create(&t, NULL, UpdateFirmwareProcess, payload);
  8131. ////pthread_join(t, NULL); //
  8132. pthread_detach(t);
  8133. //sendUpdateFirmwareConfirmation(uuid);
  8134. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareConf =1;
  8135. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  8136. return result;
  8137. }
  8138. void *UpdateFirmwareProcess(void *data)
  8139. {
  8140. mtrace();
  8141. int retriesInt =0, retryIntervalInt=0;
  8142. char protocol[10], user[50],password[50],host[50], path[50], ftppath[60],host1[50],path1[20];
  8143. int port=0;
  8144. char locationstr[160]={0}, retrieveDatestr[30]={0};
  8145. //char fname[50]="00000_2018-09-07 160902_CSULog.zip";
  8146. //char comfirmstr[20];
  8147. int isSuccess = 0;
  8148. char ftpbuf[200];
  8149. char temp[100];
  8150. char * pch;
  8151. int retriesISNULL=FALSE;
  8152. int retryInterval=FALSE;
  8153. int c = 0;
  8154. //int i = 0;
  8155. char *loc;
  8156. char sstr[300]={ 0 };
  8157. char *str = (char*) data; // ?��?輸入資�?
  8158. DEBUG_INFO("handleUpdateFirmwareRequest ...\n");
  8159. //***************location **************/
  8160. loc = strstr(str, "location");
  8161. memset(sstr ,0, sizeof(sstr) );
  8162. c = 0;
  8163. while (loc[3+strlen("location")+c] != '\"')
  8164. {
  8165. sstr[c] = loc[3+strlen("location")+c];
  8166. c++;
  8167. }
  8168. sstr[c] = '\0';
  8169. strcpy(locationstr, sstr);
  8170. //***************retries**************/
  8171. c = 0;
  8172. loc = strstr(str, "retries");
  8173. if(loc == NULL)
  8174. {
  8175. retriesISNULL=TRUE;
  8176. }
  8177. else
  8178. {
  8179. memset(sstr ,0, sizeof(sstr) );
  8180. while (loc[strlen("retries")+2+c] != ',')
  8181. {
  8182. sstr[c] = loc[strlen("retries")+2+c];
  8183. //printf("i=%d sstr=%c\n",c, sstr[c]);
  8184. c++;
  8185. }
  8186. sstr[c] = '\0';
  8187. }
  8188. if(retriesISNULL == FALSE)
  8189. {
  8190. retriesInt = atoi(sstr);
  8191. }
  8192. //***************retrieveDate **************/
  8193. loc = strstr(str, "retrieveDate");
  8194. memset(sstr ,0, sizeof(sstr) );
  8195. c = 0;
  8196. while (loc[3+strlen("retrieveDate")+c] != '\"')
  8197. {
  8198. sstr[c] = loc[3+strlen("retrieveDate")+c];
  8199. c++;
  8200. }
  8201. sstr[c] = '\0';
  8202. strcpy(retrieveDatestr, sstr);
  8203. //***************retryInterval **************/
  8204. c = 0;
  8205. loc = strstr(str, "retryInterval");
  8206. memset(sstr ,0, sizeof(sstr) );
  8207. if(loc == NULL)
  8208. {
  8209. retryInterval=TRUE;
  8210. }
  8211. else
  8212. {
  8213. while ((loc[strlen("retryInterval")+2+c] != ',') && (loc[strlen("retryInterval")+2+c] != '}'))
  8214. {
  8215. sstr[c] = loc[strlen("retryInterval")+2+c];
  8216. DEBUG_INFO("i=%d sstr=%c\n",c, sstr[c]);
  8217. c++;
  8218. }
  8219. sstr[c] = '\0';
  8220. }
  8221. if(retryInterval==FALSE)
  8222. {
  8223. retryIntervalInt = atoi(sstr);
  8224. }
  8225. memset(ftppath, 0, sizeof(ftppath));
  8226. memset(path, 0, sizeof(path));
  8227. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloading]);
  8228. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  8229. if(strncmp(locationstr,"http", 4) == 0)
  8230. {
  8231. sscanf(locationstr,"%[^:]:%*2[/]%[^/]/%199[^\n]",
  8232. protocol, host, path);
  8233. //sscanf(locationstr,"%[^:]:%*2[/]%[^:]:%[^@]@%[^/]%199[^\n]",
  8234. // protocol, user, password, host, path);
  8235. sprintf(ftppath,"/%s", path);
  8236. DEBUG_INFO("protocol =%s\n",protocol);
  8237. DEBUG_INFO("host =%s\n",host);
  8238. DEBUG_INFO("path =%s\n",path);
  8239. DEBUG_INFO("ftppath=%s\n",ftppath);
  8240. int ftppathlen=strlen(ftppath);
  8241. int i=1;
  8242. char filenametemp[50];
  8243. while(i < ftppathlen)
  8244. {
  8245. int len=ftppathlen-i;
  8246. if(ftppath[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, ftppath+(ftppathlen-i+1), i+1);
  8255. filenametemp[i+1] = 0;
  8256. //sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloading]);
  8257. do{
  8258. isSuccess = httpDownLoadFile(host, ftppath, filenametemp, locationstr);
  8259. sleep(retryIntervalInt);
  8260. }while((isSuccess == 0)&&(retriesInt > 0 && retriesInt --));
  8261. // isSuccess = httpDownLoadFile(host, ftppath, filenametemp, locationstr);
  8262. if(!isSuccess)
  8263. {
  8264. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_DownloadFailed]);
  8265. }
  8266. else
  8267. {
  8268. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  8269. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloaded]);
  8270. isUpdateRequest = TRUE;
  8271. }
  8272. }
  8273. else if(strncmp(locationstr,"ftp", 3) == 0) // ftp
  8274. {
  8275. memset(ftpbuf, 0, sizeof(ftpbuf));
  8276. memset(temp, 0, sizeof(temp));
  8277. DEBUG_INFO("locationstr=%s\n",locationstr);
  8278. strcpy(ftpbuf, locationstr/*"ftp://ipc_ui:pht2016@ftp.phihong.com.tw/DC/log/DemoDC1_2018-07-13_185011_PSULog.zip"*/ );
  8279. int ftppathlen=strlen(ftpbuf);
  8280. int i=1;
  8281. char filenametemp[50];
  8282. while(i < ftppathlen)
  8283. {
  8284. int len=ftppathlen-i;
  8285. if(ftpbuf[len]== 47) // '/' ascll code: 47
  8286. {
  8287. DEBUG_INFO(" compare '/' all right\n");
  8288. break;
  8289. }
  8290. i=i+1;
  8291. }
  8292. memset(filenametemp, 0, sizeof(filenametemp));
  8293. strncpy(filenametemp, ftpbuf+(ftppathlen-i+1), i+1);
  8294. filenametemp[i+1] = 0;
  8295. strncpy(temp, ftpbuf, ftppathlen-i+1);
  8296. pch=strchr(temp,'@');
  8297. if(pch==NULL)
  8298. {
  8299. sscanf(temp,"%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
  8300. protocol, host, &port, path);
  8301. strcpy(user,"anonymous");
  8302. strcpy(password,"");
  8303. }
  8304. else
  8305. {
  8306. sscanf(temp,"%[^:]:%*2[/]%[^:]:%[^@]@%[^:]:%i/%199[^\n]",
  8307. protocol, user, password, host, &port, path);
  8308. }
  8309. sscanf(host,"%[^/]%s",host1, path1);
  8310. sprintf(ftppath,"%s", path1);
  8311. DEBUG_INFO("protocol =%s\n",protocol);
  8312. DEBUG_INFO("user =%s\n",user);
  8313. DEBUG_INFO("password =%s\n",password);
  8314. DEBUG_INFO("host1 =%s\n",host1);
  8315. DEBUG_INFO("port =%d\n",port);
  8316. DEBUG_INFO("path1 =%s\n",path1);
  8317. DEBUG_INFO("ftppath=%s\n",ftppath);
  8318. //ftpFile(host, user, password, port, ftppath, fname);
  8319. //download firmware pthred
  8320. if(port == 0)
  8321. {
  8322. port = 21;
  8323. }
  8324. //sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloading]);
  8325. do{
  8326. isSuccess = ftpDownLoadFile(host1, user, password, port, ftppath, filenametemp, locationstr);
  8327. sleep(retryIntervalInt);
  8328. }while((!isSuccess)&&(retriesInt > 0 && retriesInt --));
  8329. if(!isSuccess)
  8330. {
  8331. //BulldogUtil.sleepMs(interval*1000);
  8332. DEBUG_INFO("Update firmware request and download file fail.\n");
  8333. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_DownloadFailed]);
  8334. }
  8335. else
  8336. {
  8337. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  8338. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloaded]);
  8339. isUpdateRequest = TRUE;
  8340. }
  8341. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  8342. }
  8343. else
  8344. {
  8345. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_DownloadFailed]);
  8346. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  8347. }
  8348. pthread_exit(NULL);
  8349. }
  8350. //==========================================
  8351. // Handle server response routine
  8352. //==========================================
  8353. void handleAuthorizeResponse(char *payload, int gun_index)
  8354. {
  8355. mtrace();
  8356. char expiryDatestr[30]={0};
  8357. char parentIdTagstr[20]={0};
  8358. char statusstr[20]={0};
  8359. char expiryDatestrtemp[30]={0};
  8360. char parentIdTagstrtemp[20]={0};
  8361. char IdTagstrtemp[20]={0};
  8362. char statusstrtemp[20]={0};
  8363. int expiryDateISNULL=FALSE;
  8364. int parentIdTagISNULL=FALSE;
  8365. char sstr[160]={ 0 };
  8366. char* filename = AuthorizationCache_JSON;
  8367. char tempfile[] = "../Storage/OCPP/temp.json";
  8368. int c = 0;
  8369. char *loc;
  8370. int resultRename=0;
  8371. int responseIdTagInfoAsZero= 0;
  8372. char rmFileCmd[50]={0};
  8373. DEBUG_INFO("handleAuthorizeResponse ...\n");
  8374. //***********expiryDate*************/
  8375. loc = strstr(payload, "expiryDate");
  8376. memset(sstr ,0, sizeof(sstr) );
  8377. c = 0;
  8378. if(loc == NULL)
  8379. {
  8380. expiryDateISNULL = TRUE;
  8381. }
  8382. else
  8383. {
  8384. while ((loc != NULL)&&(loc[3+strlen("expiryDate")+c] != '\"'))
  8385. {
  8386. sstr[c] = loc[3+strlen("expiryDate")+c];
  8387. c++;
  8388. }
  8389. sstr[c] = '\0';
  8390. strcpy(expiryDatestr, sstr);
  8391. }
  8392. //***********parentIdTag*************/
  8393. loc = strstr(payload, "parentIdTag");
  8394. memset(sstr ,0, sizeof(sstr) );
  8395. c = 0;
  8396. if(loc == NULL)
  8397. {
  8398. parentIdTagISNULL = TRUE;
  8399. }
  8400. else
  8401. {
  8402. while ((loc != NULL)&&(loc[3+strlen("parentIdTag")+c] != '\"'))
  8403. {
  8404. sstr[c] = loc[3+strlen("parentIdTag")+c];
  8405. c++;
  8406. }
  8407. sstr[c] = '\0';
  8408. strcpy(parentIdTagstr, sstr);
  8409. }
  8410. //***********status*************/
  8411. loc = strstr(payload, "status");
  8412. memset(sstr ,0, sizeof(sstr) );
  8413. c = 0;
  8414. while (loc[3+strlen("status")+c] != '\"')
  8415. {
  8416. sstr[c] = loc[3+strlen("status")+c];
  8417. c++;
  8418. }
  8419. sstr[c] = '\0';
  8420. strcpy(statusstr, sstr);
  8421. //#ifdef SystemLogMessage
  8422. // if(expiryDateISNULL == FALSE)
  8423. // DEBUG_INFO("expiryDate: %s\n", expiryDatestr);
  8424. // if(parentIdTagISNULL == FALSE)
  8425. // DEBUG_INFO("parentIdTag: %s\n", parentIdTagstr);
  8426. // DEBUG_INFO("status: %s\n", statusstr);
  8427. //#endif
  8428. if(expiryDateISNULL == FALSE)
  8429. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate, expiryDatestr);
  8430. if(parentIdTagISNULL == FALSE)
  8431. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, parentIdTagstr);
  8432. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, statusstr);
  8433. //Update idTag information to authorization cache if supproted
  8434. if((strcmp((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "true") == 0) && (ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag != NULL) && (ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate != NULL) )
  8435. {
  8436. if((access(filename,F_OK))!=-1)
  8437. {
  8438. DEBUG_INFO("AuthorizationCache exist.\n");
  8439. }
  8440. else
  8441. {
  8442. DEBUG_INFO("AuthorizationCache not exist\n");
  8443. FILE *log = fopen(filename, "w+");
  8444. if(log == NULL)
  8445. {
  8446. DEBUG_INFO("log is NULL\n");
  8447. goto out;
  8448. }
  8449. else
  8450. {
  8451. fclose(log);
  8452. }
  8453. }
  8454. FILE *infile;
  8455. FILE *outfile;
  8456. // open file for writing
  8457. infile = fopen (filename, "r");
  8458. outfile = fopen (tempfile, "w");
  8459. //*检测到文件结束标识返回1,否则返回0。*/
  8460. //DEBUG_INFO("feof(infile) =%d\n",feof(infile));
  8461. int c;
  8462. c = fgetc(infile);
  8463. //DEBUG_INFO("c:%d\n",c);
  8464. rewind(infile);
  8465. if(c == EOF)
  8466. {
  8467. DEBUG_INFO("Orignal File is NULL\n");
  8468. if(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate != NULL)
  8469. {
  8470. strcpy(expiryDatestrtemp, (const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate);
  8471. }
  8472. else
  8473. {
  8474. strcpy(expiryDatestrtemp, "");
  8475. }
  8476. if(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag != NULL)
  8477. {
  8478. strcpy(parentIdTagstrtemp, (const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag);
  8479. }
  8480. else
  8481. {
  8482. //write Authorize IdTag
  8483. strcpy(parentIdTagstrtemp, (const char *)ShmOCPP16Data->Authorize.IdTag);
  8484. }
  8485. strcpy(statusstrtemp, (const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status);
  8486. fprintf(outfile,"[{\"idTag\":\"%s\",\"idTagInfo\":{\"expiryDate\":\"%s\",\"parentIdTag\":\"%s\",\"status\":\"%s\"}}]\n",ShmOCPP16Data->Authorize.IdTag, expiryDatestrtemp, parentIdTagstrtemp, statusstrtemp);
  8487. fclose(infile);
  8488. fclose(outfile);
  8489. sprintf(rmFileCmd,"rm -f %s",filename);
  8490. system(rmFileCmd);
  8491. resultRename = rename(tempfile, filename);
  8492. if(resultRename == 0)
  8493. {
  8494. DEBUG_INFO("File renamed successfully");
  8495. }
  8496. else
  8497. {
  8498. DEBUG_INFO("Error: unable to rename the file");
  8499. }
  8500. }
  8501. else
  8502. {
  8503. char buf[160]={0};
  8504. //DEBUG_INFO("Orignal File is not NULL\n");
  8505. while (fgets(buf, sizeof(buf), infile) != NULL)
  8506. {
  8507. //DEBUG_INFO("Orignal File is not NULL-1\n");
  8508. buf[strlen(buf) - 1] = '\0'; // eat the newline fgets() stores
  8509. memset(expiryDatestr, 0, sizeof(expiryDatestrtemp));
  8510. memset(parentIdTagstr,0, sizeof(parentIdTagstrtemp));
  8511. memset(statusstr, 0, sizeof(statusstrtemp));
  8512. memset(IdTagstrtemp, 0, sizeof(IdTagstrtemp));
  8513. memset(expiryDatestrtemp, 0, sizeof(expiryDatestrtemp));
  8514. memset(parentIdTagstrtemp, 0, sizeof(parentIdTagstrtemp));
  8515. memset(statusstrtemp, 0, sizeof(statusstrtemp));
  8516. //------------------IdTag-----------------------
  8517. loc = strstr(buf, "idTag");
  8518. memset(sstr ,0, sizeof(sstr) );
  8519. c = 0;
  8520. while (loc[3+strlen("idTag")+c] != '\"')
  8521. {
  8522. sstr[c] = loc[3+strlen("idTag")+c];
  8523. c++;
  8524. }
  8525. sstr[c] = '\0';
  8526. strcpy(IdTagstrtemp,sstr);
  8527. //*********************expiryDate***************/
  8528. loc = strstr(buf, "expiryDate");
  8529. memset(sstr ,0, sizeof(sstr) );
  8530. c = 0;
  8531. while (loc[3+strlen("expiryDate")+c] != '\"')
  8532. {
  8533. sstr[c] = loc[3+strlen("expiryDate")+c];
  8534. c++;
  8535. }
  8536. sstr[c] = '\0';
  8537. strcpy(expiryDatestr,sstr);
  8538. //*********************parentIdTag***************/
  8539. loc = strstr(buf, "parentIdTag");
  8540. memset(sstr ,0, sizeof(sstr) );
  8541. c = 0;
  8542. while (loc[3+strlen("parentIdTag")+c] != '\"')
  8543. {
  8544. sstr[c] = loc[3+strlen("parentIdTag")+c];
  8545. c++;
  8546. }
  8547. sstr[c] = '\0';
  8548. strcpy(parentIdTagstr,sstr);
  8549. //*********************status***************/
  8550. loc = strstr(buf, "status");
  8551. memset(sstr ,0, sizeof(sstr) );
  8552. c = 0;
  8553. while (loc[3+strlen("status")+c] != '\"')
  8554. {
  8555. sstr[c] = loc[3+strlen("status")+c];
  8556. c++;
  8557. }
  8558. sstr[c] = '\0';
  8559. strcpy(statusstr,sstr);
  8560. if(((ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag == NULL) || strcmp((const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, "") == 0) || (strcmp((const char *)ShmOCPP16Data->Authorize.IdTag, IdTagstrtemp) == 0))
  8561. {
  8562. DEBUG_INFO("ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag is NULL\n");
  8563. responseIdTagInfoAsZero = 1;
  8564. }
  8565. else
  8566. {
  8567. DEBUG_INFO("ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag=%s\n",ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag);
  8568. }
  8569. if((responseIdTagInfoAsZero == 0)&&((strcmp(parentIdTagstr,(const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag) == 0)|| (strcmp(IdTagstrtemp,(const char *)ShmOCPP16Data->Authorize.IdTag) == 0)))
  8570. {
  8571. //modify item
  8572. if(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate != NULL)
  8573. {
  8574. strcpy(expiryDatestrtemp,(const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate);
  8575. //json_object_object_add(temp_obj, "expiryDate", json_object_new_string(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate));
  8576. }
  8577. else
  8578. {
  8579. strcpy(expiryDatestrtemp, "");
  8580. //json_object_object_add(temp_obj, "expiryDate", json_object_new_string(""));
  8581. }
  8582. if(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag != NULL)
  8583. {
  8584. strcpy(parentIdTagstrtemp,(const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag);
  8585. //json_object_object_add(temp_obj, "parentIdTag", json_object_new_string(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag));
  8586. }
  8587. else
  8588. {
  8589. strcpy(parentIdTagstrtemp, parentIdTagstr);
  8590. //json_object_object_add(temp_obj, "parentIdTag", json_object_new_string(json_object_get_string(parentIdTagitem)));
  8591. }
  8592. strcpy(statusstrtemp,(const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status);
  8593. }
  8594. else
  8595. {
  8596. //wrie original item
  8597. strcpy(expiryDatestrtemp, expiryDatestr);
  8598. strcpy(parentIdTagstrtemp, parentIdTagstr);
  8599. strcpy(statusstrtemp, statusstr);
  8600. }
  8601. fprintf(outfile,"[{\"idTag\":\"%s\",\"idTagInfo\":{\"expiryDate\":\"%s\",\"parentIdTag\":\"%s\",\"status\":\"%s\"}}]\n",ShmOCPP16Data->Authorize.IdTag,expiryDatestrtemp, parentIdTagstrtemp, statusstrtemp);
  8602. }
  8603. fclose(infile);
  8604. fclose(outfile);
  8605. sprintf(rmFileCmd,"rm -f %s",filename);
  8606. system(rmFileCmd);
  8607. resultRename = rename(tempfile, filename);
  8608. if(resultRename == 0)
  8609. {
  8610. DEBUG_INFO("File renamed successfully");
  8611. }
  8612. else
  8613. {
  8614. DEBUG_INFO("Error: unable to rename the file");
  8615. }
  8616. }
  8617. }
  8618. out:
  8619. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  8620. ShmOCPP16Data->SpMsg.bits.AuthorizeConf = 1; // inform csu
  8621. authorizeRetryTimes = 0;
  8622. }
  8623. void handleBootNotificationResponse(char *payload, int gun_index)
  8624. {
  8625. mtrace();
  8626. char sstr[140]={ 0 };//sstr[200]={ 0 };
  8627. char statusStr[12]={0};
  8628. char currentTimeStr[30]={0};
  8629. char *loc;
  8630. int intervalInt = 0;
  8631. int c = 0;
  8632. //double diff_t;
  8633. struct tm tp;
  8634. char buf[28]={0};
  8635. char timebuf[50]={0};
  8636. DEBUG_INFO("handleBootNotificationResponse ...\n");
  8637. //*** interval ****/
  8638. c = 0;
  8639. loc = strstr(payload, "interval");
  8640. //printf("loc=%s\n",loc);
  8641. memset(sstr ,0, sizeof(sstr) );
  8642. while ((loc != NULL) &&(loc[strlen("interval")+2+c] != ',') &&(loc[strlen("interval")+2+c] != '}') )
  8643. {
  8644. sstr[c] = loc[strlen("interval")+2+c];
  8645. //printf("i=%d sstr=%c\n",c, sstr[c]);
  8646. c++;
  8647. }
  8648. sstr[c] = '\0';
  8649. //DEBUG_INFO("id=%d\n",atoi(sstr));
  8650. intervalInt = atoi(sstr);
  8651. //***status ****/
  8652. loc = strstr(payload, "status");
  8653. memset(sstr ,0, sizeof(sstr) );
  8654. c = 0;
  8655. while ((loc != NULL) &&(loc[3+strlen("status")+c] != '\"'))
  8656. {
  8657. sstr[c] = loc[3+strlen("status")+c];
  8658. c++;
  8659. }
  8660. sstr[c] = '\0';
  8661. strcpy(statusStr, sstr);
  8662. //***currentTime ****/
  8663. loc = strstr(payload, "currentTime");
  8664. //printf("loc=%s\n",loc);
  8665. memset(sstr ,0, sizeof(sstr) );
  8666. c = 0;
  8667. while ((loc != NULL) &&(loc[3+strlen("currentTime")+c] != '\"'))
  8668. {
  8669. sstr[c] = loc[3+strlen("currentTime")+c];
  8670. c++;
  8671. }
  8672. sstr[c] = '\0';
  8673. strcpy(currentTimeStr, sstr);
  8674. BootNotificationInterval = ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval = intervalInt;
  8675. HeartBeatWaitTime = BootNotificationInterval;
  8676. //#ifdef SystemLogMessage
  8677. // DEBUG_INFO("currentTime: %s\n", currentTimeStr);
  8678. // DEBUG_INFO("interval: %d\n", intervalInt);
  8679. // DEBUG_INFO("status: %s\n", statusStr);
  8680. //#endif
  8681. //write back to ShmOCPP16Data->BootNotification
  8682. strcpy((char *)ShmOCPP16Data->BootNotification.ResponseCurrentTime, currentTimeStr);
  8683. ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval = intervalInt;
  8684. strcpy((char *)ShmOCPP16Data->BootNotification.ResponseStatus, statusStr);
  8685. if((strcmp(statusStr, RegistrationStatusStr[RegistrationStatus_Accepted]) == 0 )/* ||
  8686. (strcmp(status, RegistrationStatusStr[RegistrationStatus_Pending]) == 0) ||
  8687. (strcmp(status, RegistrationStatusStr[RegistrationStatus_Rejected]) == 0)*/)
  8688. {
  8689. server_sign = TRUE;
  8690. server_pending =FALSE;
  8691. }
  8692. else if(strcmp(statusStr, RegistrationStatusStr[RegistrationStatus_Pending]) == 0)
  8693. {
  8694. server_pending = TRUE;
  8695. }
  8696. strptime((const char *)ShmOCPP16Data->BootNotification.ResponseCurrentTime, "%Y-%m-%dT%H:%M:%S", &tp);
  8697. tp.tm_isdst = -1;
  8698. //time_t utc = mktime(&tp);
  8699. strftime(buf, 28, "%Y-%m-%d %H:%M:%S", &tp);
  8700. memset(timebuf, 0, sizeof timebuf);
  8701. sprintf(timebuf,"date -s '%s'",buf);
  8702. //DEBUG_INFO("timebuf=%s\n",timebuf);
  8703. system(timebuf);
  8704. //==============================================
  8705. // RTC sync
  8706. //==============================================
  8707. system("/sbin/hwclock -w --systohc");
  8708. ShmOCPP16Data->OcppConnStatus = 1; ////0: disconnected, 1: connected
  8709. ShmOCPP16Data->SpMsg.bits.BootNotificationConf = 1;
  8710. }
  8711. void handleDataTransferResponse(char *payload, int gun_index)
  8712. {
  8713. char sstr[160]={0};//sstr[200]={ 0 };
  8714. int c = 0;
  8715. char *loc;
  8716. DEBUG_INFO("handleDataTransferResponse ...\n");
  8717. loc = strstr(payload, "status");
  8718. printf("loc=%s\n",loc);
  8719. c = 0;
  8720. while (loc[3+strlen("status")+c] != '\"')
  8721. {
  8722. sstr[c] = loc[3+strlen("status")+c];
  8723. //printf("i=%d sstr=%c\n",c, sstr[c]);
  8724. c++;
  8725. }
  8726. sstr[c] = '\0';
  8727. DEBUG_INFO(" DataTransferResponse=%s\n", sstr);
  8728. //#ifdef SystemLogMessage
  8729. //DEBUG_INFO("data: %s\n", payload);
  8730. //#endif
  8731. }
  8732. void handleDiagnosticsStatusNotificationResponse(char *payload, int gun_index)
  8733. {
  8734. DEBUG_INFO("handleDiagnosticsStatusNotificationResponse ...\n");
  8735. //struct json_object *obj;
  8736. // obj = json_tokener_parse(payload);
  8737. ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 0;
  8738. ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationConf = 1;
  8739. //No fields are defined.
  8740. }
  8741. void handleFirmwareStatusNotificationResponse(char *payload, int gun_index)
  8742. {
  8743. DEBUG_INFO("handleFirmwareStatusNotificationResponse ...\n");
  8744. //struct json_object *obj;
  8745. // obj = json_tokener_parse(payload);
  8746. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 0;
  8747. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationConf = 1;
  8748. //No fields are defined.
  8749. }
  8750. void handleHeartbeatResponse(char *payload, int gun_index)
  8751. {
  8752. mtrace();
  8753. //double diff_t;
  8754. struct tm tp;
  8755. char buf[28]={0};
  8756. char timebuf[50]={0};
  8757. char sstr[30]={ 0 };
  8758. int c = 0;
  8759. char *loc;
  8760. //[3,"9c2e3c41-ab34-409e-8902-f5f48b6de641",{"currentTime":"2018-09-06T02:22:57.171Z"}]
  8761. DEBUG_INFO("handleHeartbeatResponse ...\n");
  8762. c = 0;
  8763. loc = strstr(payload, "currentTime");
  8764. memset(sstr ,0, sizeof(sstr) );
  8765. while (loc[3+strlen("currentTime")+c] != '\"')
  8766. {
  8767. sstr[c] = loc[3+strlen("currentTime")+c];
  8768. c++;
  8769. }
  8770. sstr[c] = '\0';
  8771. strcpy((char *)ShmOCPP16Data->Heartbeat.ResponseCurrentTime,sstr);
  8772. // #ifdef SystemLogMessage
  8773. // DEBUG_INFO("currentTime: %s\n", ShmOCPP16Data->Heartbeat.ResponseCurrentTime);
  8774. // #endif
  8775. strptime((const char *)ShmOCPP16Data->Heartbeat.ResponseCurrentTime, "%Y-%m-%dT%H:%M:%S", &tp);
  8776. tp.tm_isdst = -1;
  8777. //time_t utc = mktime(&tp);
  8778. strftime(buf, 28, "%Y-%m-%d %H:%M:%S", &tp);
  8779. memset(timebuf, 0, sizeof timebuf);
  8780. sprintf(timebuf,"date -s '%s'",buf);
  8781. system(timebuf);
  8782. //==============================================
  8783. // RTC sync
  8784. //==============================================
  8785. system("/sbin/hwclock -w --systohc");
  8786. if(FirstHeartBeat == 0)
  8787. {
  8788. FirstHeartBeat = 1;
  8789. }
  8790. HeartBeatWithNOResponse = 0;
  8791. }
  8792. void handleMeterValuesResponse(char *payload, int gun_index)
  8793. {
  8794. mtrace();
  8795. //struct json_object *obj;
  8796. DEBUG_INFO("handleMeterValuesResponse ...\n");
  8797. //No fields are defined.
  8798. }
  8799. void handleStartTransactionResponse(char *payload, int gun_index)
  8800. {
  8801. mtrace();
  8802. char sstr[30]={ 0 };
  8803. int c = 0;
  8804. char *loc;
  8805. int transactionIdInt = 0;
  8806. //[3,"f7da35db-9d9b-4362-841f-26424be1064f",{"idTagInfo":{"expiryDate":"2020-06-19T01:10:00.000Z","parentIdTag":"1UF1YvGvmNbLF17sP6LY","status":"Accepted"},"transactionId":2146754131}]
  8807. DEBUG_INFO("handleStartTransactionResponse\n");
  8808. //****************expiryDate********************/
  8809. loc = strstr(payload, "expiryDate");
  8810. if(loc == NULL)
  8811. {
  8812. strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ExpiryDate, "");
  8813. }
  8814. else
  8815. {
  8816. c = 0;
  8817. memset(sstr ,0, sizeof(sstr) );
  8818. while (loc[3+strlen("expiryDate")+c] != '\"')
  8819. {
  8820. sstr[c] = loc[3+strlen("expiryDate")+c];
  8821. c++;
  8822. }
  8823. sstr[c] = '\0';
  8824. sprintf((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ExpiryDate, "%s", sstr);
  8825. }
  8826. //****************parentIdTag********************/
  8827. loc = strstr(payload, "parentIdTag");
  8828. if(loc == NULL)
  8829. {
  8830. strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ParentIdTag, "");
  8831. }
  8832. else
  8833. {
  8834. c = 0;
  8835. memset(sstr ,0, sizeof(sstr) );
  8836. while (loc[3+strlen("parentIdTag")+c] != '\"')
  8837. {
  8838. sstr[c] = loc[3+strlen("parentIdTag")+c];
  8839. c++;
  8840. }
  8841. sstr[c] = '\0';
  8842. sprintf((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ParentIdTag, "%s", sstr);
  8843. }
  8844. //****************status********************/
  8845. loc = strstr(payload, "status");
  8846. if(loc == NULL)
  8847. {
  8848. strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.Status, "");
  8849. }
  8850. else
  8851. {
  8852. c = 0;
  8853. memset(sstr ,0, sizeof(sstr) );
  8854. while (loc[3+strlen("status")+c] != '\"')
  8855. {
  8856. sstr[c] = loc[3+strlen("status")+c];
  8857. c++;
  8858. }
  8859. sstr[c] = '\0';
  8860. sprintf((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.Status, "%s", sstr);
  8861. }
  8862. //****************transactionId********************/
  8863. c=0;
  8864. loc = strstr(payload, "transactionId");
  8865. memset(sstr ,0, sizeof(sstr) );
  8866. while ((loc[strlen("transactionId")+2+c] != '}') && (loc[strlen("transactionId")+2+c] != ','))
  8867. {
  8868. sstr[c] = loc[strlen("transactionId")+2+c];
  8869. c++;
  8870. }
  8871. sstr[c] = '\0';
  8872. ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId = atoi(sstr);
  8873. transactionIdInt = ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId;
  8874. ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionConf = 1;
  8875. ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq = 0;
  8876. #ifdef SystemLogMessage
  8877. DEBUG_INFO("idTagInfo-expiryDate: %s\n", ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ExpiryDate);
  8878. DEBUG_INFO("idTagInfo-parentIdTag: %s\n", ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ParentIdTag);
  8879. DEBUG_INFO("idTagInfo-status: %s\n", ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.Status);
  8880. DEBUG_INFO("transactionId: %d\n", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId);
  8881. #endif
  8882. if(strcmp((const char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.Status, "Accepted") == 0)
  8883. {
  8884. //add Charging Record
  8885. SettingChargingRecord(gun_index, transactionIdInt);
  8886. }
  8887. }
  8888. void handleStatusNotificationResponse(char *payload, int gun_index)
  8889. {
  8890. mtrace();
  8891. printf("handleStatusNotificationResponse\n");
  8892. cpinitateMsg.bits[gun_index].StatusNotificationReq = 0;
  8893. cpinitateMsg.bits[gun_index].StatusNotificationConf = 1;
  8894. }
  8895. void handleStopTransactionnResponse(char *payload, int gun_index)
  8896. {
  8897. mtrace();
  8898. char sstr[30]={ 0 };
  8899. int c = 0;
  8900. char *loc;
  8901. //[3,"e79c0728-dd4c-4038-a90e-bb0eb23e1ee0",{"idTagInfo":{"expiryDate":"2020-06-19T01:10:00.000Z","parentIdTag":"1UF1YvGvmNbLF17sP6LY","status":"Accepted"}}]
  8902. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionConf = 1;
  8903. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq = 0;
  8904. loc = strstr(payload, "idTagInfo");
  8905. //***********************idTagInfo************************/
  8906. if(loc != NULL)
  8907. {
  8908. //***********************expiryDate************************/
  8909. loc = strstr(payload, "expiryDate");
  8910. if(loc != NULL)
  8911. {
  8912. memset(sstr ,0, sizeof(sstr) );
  8913. c = 0;
  8914. while (loc[3+strlen("expiryDate")+c] != '\"')
  8915. {
  8916. sstr[c] = loc[3+strlen("expiryDate")+c];
  8917. c++;
  8918. }
  8919. sstr[c] = '\0';
  8920. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ExpiryDate, "%s", sstr);
  8921. }
  8922. //***********************parentIdTag************************/
  8923. loc = strstr(payload, "parentIdTag");
  8924. if(loc != NULL)
  8925. {
  8926. memset(sstr ,0, sizeof(sstr) );
  8927. c = 0;
  8928. while (loc[3+strlen("parentIdTag")+c] != '\"')
  8929. {
  8930. sstr[c] = loc[3+strlen("parentIdTag")+c];
  8931. c++;
  8932. }
  8933. sstr[c] = '\0';
  8934. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ParentIdTag, "%s", sstr);
  8935. }
  8936. //***********************status************************/
  8937. loc = strstr(payload, "status");
  8938. memset(sstr ,0, sizeof(sstr) );
  8939. c = 0;
  8940. while (loc[3+strlen("status")+c] != '\"')
  8941. {
  8942. sstr[c] = loc[3+strlen("status")+c];
  8943. c++;
  8944. }
  8945. sstr[c] = '\0';
  8946. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.Status, "%s", sstr);
  8947. }
  8948. #ifdef SystemLogMessage
  8949. DEBUG_INFO("idTagInfo-expiryDate: %s\n", ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ExpiryDate);
  8950. DEBUG_INFO("idTagInfo-parentIdTag: %s\n", ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ParentIdTag);
  8951. DEBUG_INFO("idTagInfo-status: %s\n", ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.Status);
  8952. #endif
  8953. }
  8954. //==========================================
  8955. // Handle Error routine
  8956. //==========================================
  8957. void handleError(char *id, char *errorCode, char *errorDescription,char *payload)
  8958. {
  8959. mtrace();
  8960. #ifdef SystemLogMessage
  8961. DEBUG_INFO("errorCode: %s\n", errorCode);
  8962. DEBUG_INFO("errorDescription: %s\n", errorDescription);
  8963. DEBUG_INFO("errorDetails: %s\n", payload);
  8964. #endif
  8965. }
  8966. //===============================================
  8967. // Common routine
  8968. //===============================================
  8969. int initialConfigurationTable(void)
  8970. {
  8971. printf("initialConfigurationTable \n");
  8972. memset(&(ShmOCPP16Data->ConfigurationTable), 0, sizeof(struct OCPP16ConfigurationTable) );
  8973. /*Core Profile*/
  8974. //AllowOfflineTxForUnknownId
  8975. ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility = 1;
  8976. printf("AllowoddlineTXForUnknownId type: %d \n", ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility);
  8977. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemName, "AllowOfflineTxForUnknownId");
  8978. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData, "TRUE" );
  8979. //AuthorizationCacheEnabled
  8980. ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility = 1;
  8981. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemName, "AuthorizationCacheEnabled");
  8982. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "FALSE" );
  8983. //AuthorizeRemoteTxRequests
  8984. ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility = 0;
  8985. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemName, "AuthorizeRemoteTxRequests");
  8986. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "TRUE" );
  8987. //BlinkRepeat
  8988. ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility = 1;
  8989. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemName, "BlinkRepeat");
  8990. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData, "0" );
  8991. //ClockAlignedDataInterval
  8992. ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility = 1;
  8993. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemName, "ClockAlignedDataInterval");
  8994. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData, "0" );
  8995. //ConnectionTimeOut
  8996. ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility = 1;
  8997. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemName, "ConnectionTimeOut");
  8998. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData, "60" );
  8999. //GetConfigurationMaxKeys
  9000. ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility =0;
  9001. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemName, "GetConfigurationMaxKeys");
  9002. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData, "43" );
  9003. // HeartbeatInterval
  9004. ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility = 1;
  9005. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemName, "HeartbeatInterval");
  9006. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "10" );
  9007. // LightIntensity
  9008. ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility = 1;
  9009. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemName, "LightIntensity");
  9010. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData, "0" );
  9011. // LocalAuthorizeOffline
  9012. ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility = 0;
  9013. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemName, "LocalAuthorizeOffline");
  9014. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "TRUE" );
  9015. // LocalPreAuthorize
  9016. ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility = 0;
  9017. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemName, "LocalPreAuthorize");
  9018. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "FALSE" );
  9019. // MaxEnergyOnInvalidId
  9020. ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility = 1;
  9021. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemName, "MaxEnergyOnInvalidId");
  9022. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData, "0" );
  9023. // MeterValuesAlignedData
  9024. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility = 1;
  9025. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemName, "MeterValuesAlignedData");
  9026. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "Current.Export,Energy.Active.Export.Interval,Power.Active.Export,Voltage,SOC" );
  9027. // MeterValuesAlignedDataMaxLength
  9028. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility = 0;
  9029. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemName, "MeterValuesAlignedDataMaxLength");
  9030. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData, "5" );
  9031. // MeterValuesSampledData
  9032. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility = 1;
  9033. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemName, "MeterValuesSampledData");
  9034. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "Current.Export,Energy.Active.Export.Interval,Power.Active.Export,Voltage,SOC" );
  9035. // MeterValuesSampledDataMaxLength
  9036. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility = 0;
  9037. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemName, "MeterValuesSampledDataMaxLength");
  9038. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData, "5" );
  9039. // MeterValueSampleInterval
  9040. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility = 1;
  9041. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemName, "MeterValueSampleInterval");
  9042. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData, "10" );
  9043. // MinimumStatusDuration
  9044. ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility = 1;
  9045. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemName, "MinimumStatusDuration");
  9046. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "0" );
  9047. // NumberOfConnectors
  9048. ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility = 0;
  9049. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemName, "NumberOfConnectors");
  9050. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "3" );
  9051. // ResetRetries
  9052. ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility = 1;
  9053. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemName, "ResetRetries");
  9054. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData, "3" );
  9055. // ConnectorPhaseRotation
  9056. ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility = 1;
  9057. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemName, "ConnectorPhaseRotation");
  9058. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "Unknown" );
  9059. // ConnectorPhaseRotationMaxLength
  9060. ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility = 0;
  9061. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemName, "ConnectorPhaseRotationMaxLength");
  9062. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData, "1" );
  9063. // StopTransactionOnEVSideDisconnect
  9064. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility = 0;
  9065. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemName, "StopTransactionOnEVSideDisconnect");
  9066. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData, "TRUE" );
  9067. // StopTransactionOnInvalidId
  9068. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility = 1;
  9069. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemName, "StopTransactionOnInvalidId");
  9070. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData, "FALSE" );
  9071. // StopTxnAlignedData
  9072. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility = 1;
  9073. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemName, "StopTxnAlignedData");
  9074. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData, "Energy.Active.Import.Register" );
  9075. // StopTxnAlignedDataMaxLength
  9076. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility = 0;
  9077. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemName, "StopTxnAlignedDataMaxLength");
  9078. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData, "0" );
  9079. // StopTxnSampledData
  9080. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility = 1;
  9081. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemName, "StopTxnSampledData");
  9082. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Energy.Active.Import.Register" );
  9083. // StopTxnSampledDataMaxLength
  9084. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility = 0;
  9085. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemName, "StopTxnSampledDataMaxLength");
  9086. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData, "0" );
  9087. // SupportedFeatureProfiles
  9088. ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility = 0;
  9089. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemName, "SupportedFeatureProfiles");
  9090. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData, "Core,FirmwareManagement,LocalAuthListManagement,Reservation,SmartCharging,RemoteTrigger" );
  9091. // SupportedFeatureProfilesMaxLength
  9092. ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility = 0;
  9093. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemName, "SupportedFeatureProfilesMaxLength");
  9094. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData, "6" );
  9095. // TransactionMessageAttempts
  9096. ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility = 1;
  9097. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemName, "TransactionMessageAttempts");
  9098. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData, "3" );
  9099. TransactionMessageAttemptsValue = atoi((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData);
  9100. // TransactionMessageRetryInterval
  9101. ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility = 1;
  9102. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemName, "TransactionMessageRetryInterval");
  9103. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData, "60" );
  9104. TransactionMessageRetryIntervalValue = atoi((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData);
  9105. // UnlockConnectorOnEVSideDisconnect
  9106. ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility = 0;
  9107. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemName, "UnlockConnectorOnEVSideDisconnect");
  9108. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData, "TRUE" );
  9109. // WebSocketPingInterval
  9110. ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility = 1;
  9111. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemName, "WebSocketPingInterval");
  9112. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "30" );
  9113. //* Local Auth List Management Profile*/
  9114. #if 0
  9115. //For OCTT Test Case
  9116. ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility = 1;
  9117. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemName, "LocalAuthorizationListEnabled");
  9118. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE" );
  9119. #endif
  9120. #if 1
  9121. //LocalAuthListEnabled
  9122. ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility = 1;
  9123. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemName, "LocalAuthListEnabled");
  9124. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE" );
  9125. #endif
  9126. //LocalAuthListMaxLength
  9127. ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility = 0;
  9128. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemName, "LocalAuthListMaxLength");
  9129. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData, "500" );
  9130. //SendLocalListMaxLength
  9131. ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility = 0;
  9132. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemName, "SendLocalListMaxLength");
  9133. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData, "500" );
  9134. //ReserveConnectorZeroSupported
  9135. ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility = 0;
  9136. strcpy((char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemName, "ReserveConnectorZeroSupported");
  9137. strcpy((char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData, "FALSE" );
  9138. //* Smart Charging Profile */
  9139. //ChargeProfileMaxStackLevel
  9140. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility = 0;
  9141. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemName, "ChargeProfileMaxStackLevel");
  9142. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData, "3" );
  9143. // ChargingScheduleAllowedChargingRateUnit
  9144. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility = 0;
  9145. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemName, "ChargingScheduleAllowedChargingRateUnit");
  9146. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData, "Current" );
  9147. // ChargingScheduleMaxPeriods
  9148. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility = 0;
  9149. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemName, "ChargingScheduleMaxPeriods");
  9150. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData, "10" );
  9151. // ConnectorSwitch3to1PhaseSupported
  9152. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility = 0;
  9153. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemName, "ConnectorSwitch3to1PhaseSupported");
  9154. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData, "TRUE" );
  9155. // MaxChargingProfilesInstalled
  9156. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility = 0;
  9157. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemName, "MaxChargingProfilesInstalled");
  9158. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData, "9" );
  9159. return 0;
  9160. }
  9161. void getKeyValue(char *keyReq)
  9162. {
  9163. int isEmpty = FALSE;
  9164. int isKnowKey = FALSE;
  9165. //int unKnowIndex = 0;
  9166. DEBUG_INFO("getKeyValue \n");
  9167. if((keyReq == NULL) || (strlen(keyReq) == 0))
  9168. isEmpty = TRUE;
  9169. if(isEmpty || strcmp(keyReq, "AllowOfflineTxForUnknownId") == 0)
  9170. {
  9171. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_AllowOfflineTxForUnknownId].Item, "AllowOfflineTxForUnknownId");
  9172. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].Key, "AllowOfflineTxForUnknownId");
  9173. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility == 1)
  9174. {
  9175. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].ReadOnly, "0"/*"FALSE"*/);
  9176. }
  9177. else
  9178. {
  9179. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].ReadOnly, "1"/*"TRUE"*/);
  9180. }
  9181. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData );
  9182. isKnowKey = TRUE;
  9183. }
  9184. if(isEmpty || strcmp(keyReq, "AuthorizationCacheEnabled") == 0 )
  9185. {
  9186. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_AuthorizationCacheEnabled].Item, "AuthorizationCacheEnabled");
  9187. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].Key, "AuthorizationCacheEnabled");
  9188. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility == 1)
  9189. {
  9190. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].ReadOnly, "0"/*"FALSE"*/);
  9191. }
  9192. else
  9193. {
  9194. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].ReadOnly, "1"/*"TRUE"*/);
  9195. }
  9196. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData );
  9197. isKnowKey = TRUE;
  9198. }
  9199. if(isEmpty || strcmp(keyReq, "AuthorizeRemoteTxRequests") == 0 )
  9200. {
  9201. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_AuthorizeRemoteTxRequests].Item, "AuthorizeRemoteTxRequests");
  9202. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].Key, "AuthorizeRemoteTxRequests");
  9203. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility == 1)
  9204. {
  9205. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].ReadOnly, "0"/*"FALSE"*/);
  9206. }
  9207. else
  9208. {
  9209. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].ReadOnly, "1"/*"TRUE"*/);
  9210. }
  9211. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData );
  9212. isKnowKey = TRUE;
  9213. }
  9214. if(isEmpty || strcmp(keyReq, "BlinkRepeat") == 0 )
  9215. {
  9216. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_BlinkRepeat].Item, "BlinkRepeat");
  9217. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].Key, "BlinkRepeat");
  9218. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility == 1)
  9219. {
  9220. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].ReadOnly, "0"/*"FALSE"*/);
  9221. }
  9222. else
  9223. {
  9224. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].ReadOnly, "1"/*"TRUE"*/);
  9225. }
  9226. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData );
  9227. isKnowKey = TRUE;
  9228. }
  9229. if(isEmpty || strcmp(keyReq, "ClockAlignedDataInterval") == 0 )
  9230. {
  9231. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ClockAlignedDataInterval].Item, "ClockAlignedDataInterval");
  9232. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].Key, "ClockAlignedDataInterval");
  9233. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility == 1)
  9234. {
  9235. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].ReadOnly, "0"/*"FALSE"*/);
  9236. }
  9237. else
  9238. {
  9239. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].ReadOnly, "1"/*"TRUE"*/);
  9240. }
  9241. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData );
  9242. isKnowKey = TRUE;
  9243. }
  9244. if(isEmpty || strcmp(keyReq, "ConnectionTimeOut") == 0 )
  9245. {
  9246. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectionTimeOut].Item, "ConnectionTimeOut");
  9247. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].Key, "ConnectionTimeOut");
  9248. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility == 1)
  9249. {
  9250. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].ReadOnly, "0"/*"FALSE"*/);
  9251. }
  9252. else
  9253. {
  9254. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].ReadOnly, "1"/*"TRUE"*/);
  9255. }
  9256. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData );
  9257. isKnowKey = TRUE;
  9258. }
  9259. if(isEmpty || strcmp(keyReq, "GetConfigurationMaxKeys") == 0 )
  9260. {
  9261. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_GetConfigurationMaxKeys].Item, "GetConfigurationMaxKeys");
  9262. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].Key, "GetConfigurationMaxKeys");
  9263. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility == 1)
  9264. {
  9265. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].ReadOnly, "0"/*"FALSE"*/);
  9266. }
  9267. else
  9268. {
  9269. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].ReadOnly, "1"/*"TRUE"*/);
  9270. }
  9271. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData );
  9272. isKnowKey = TRUE;
  9273. }
  9274. if(isEmpty || strcmp(keyReq, "HeartbeatInterval") == 0 )
  9275. {
  9276. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_HeartbeatInterval].Item, "HeartbeatInterval");
  9277. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].Key, "HeartbeatInterval");
  9278. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility == 1)
  9279. {
  9280. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].ReadOnly, "0"/*"FALSE"*/);
  9281. }
  9282. else
  9283. {
  9284. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].ReadOnly, "1"/*"TRUE"*/);
  9285. }
  9286. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData );
  9287. isKnowKey = TRUE;
  9288. }
  9289. if(isEmpty || strcmp(keyReq, "LightIntensity") == 0 )
  9290. {
  9291. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LightIntensity].Item, "LightIntensity");
  9292. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].Key, "LightIntensity");
  9293. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility == 1)
  9294. {
  9295. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].ReadOnly, "0"/*"FALSE"*/);
  9296. }
  9297. else
  9298. {
  9299. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].ReadOnly, "1"/*"TRUE"*/);
  9300. }
  9301. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData );
  9302. isKnowKey = TRUE;
  9303. }
  9304. if(isEmpty || strcmp(keyReq, "LocalAuthorizeOffline") == 0 )
  9305. {
  9306. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthorizeOffline].Item, "LocalAuthorizeOffline");
  9307. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].Key, "LocalAuthorizeOffline");
  9308. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility == 1)
  9309. {
  9310. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].ReadOnly, "0"/*"FALSE"*/);
  9311. }
  9312. else
  9313. {
  9314. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].ReadOnly, "1"/*"TRUE"*/);
  9315. }
  9316. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData );
  9317. isKnowKey = TRUE;
  9318. }
  9319. if(isEmpty || strcmp(keyReq, "LocalPreAuthorize") == 0 )
  9320. {
  9321. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalPreAuthorize].Item, "LocalPreAuthorize");
  9322. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].Key, "LocalPreAuthorize");
  9323. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility == 1)
  9324. {
  9325. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].ReadOnly, "0"/*"FALSE"*/);
  9326. }
  9327. else
  9328. {
  9329. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].ReadOnly, "1"/*"TRUE"*/);
  9330. }
  9331. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData );
  9332. isKnowKey = TRUE;
  9333. }
  9334. if(isEmpty || strcmp(keyReq, "MaxEnergyOnInvalidId") == 0 )
  9335. {
  9336. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MaxEnergyOnInvalidId].Item, "MaxEnergyOnInvalidId");
  9337. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].Key, "MaxEnergyOnInvalidId");
  9338. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility == 1)
  9339. {
  9340. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].ReadOnly, "0"/*"FALSE"*/);
  9341. }
  9342. else
  9343. {
  9344. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].ReadOnly, "1"/*"TRUE"*/);
  9345. }
  9346. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData );
  9347. isKnowKey = TRUE;
  9348. }
  9349. if(isEmpty || strcmp(keyReq, "MeterValuesAlignedData") == 0 )
  9350. {
  9351. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesAlignedData].Item, "MeterValuesAlignedData");
  9352. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].Key, "MeterValuesAlignedData");
  9353. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility == 1)
  9354. {
  9355. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].ReadOnly, "0"/*"FALSE"*/);
  9356. }
  9357. else
  9358. {
  9359. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].ReadOnly, "1"/*"TRUE"*/);
  9360. }
  9361. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData );
  9362. isKnowKey = TRUE;
  9363. }
  9364. if(isEmpty || strcmp(keyReq, "MeterValuesAlignedDataMaxLength") == 0 )
  9365. {
  9366. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesAlignedDataMaxLength].Item, "MeterValuesAlignedDataMaxLength");
  9367. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].Key, "MeterValuesAlignedDataMaxLength");
  9368. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility == 1)
  9369. {
  9370. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9371. }
  9372. else
  9373. {
  9374. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9375. }
  9376. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData );
  9377. isKnowKey = TRUE;
  9378. }
  9379. if(isEmpty || strcmp(keyReq, "MeterValuesSampledData") == 0 )
  9380. {
  9381. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesSampledData].Item, "MeterValuesSampledData");
  9382. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].Key, "MeterValuesSampledData");
  9383. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility == 1)
  9384. {
  9385. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].ReadOnly, "0"/*"FALSE"*/);
  9386. }
  9387. else
  9388. {
  9389. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].ReadOnly, "1"/*"TRUE"*/);
  9390. }
  9391. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData );
  9392. isKnowKey = TRUE;
  9393. }
  9394. if(isEmpty || strcmp(keyReq, "MeterValuesSampledDataMaxLength") == 0 )
  9395. {
  9396. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesSampledDataMaxLength].Item, "MeterValuesSampledDataMaxLength");
  9397. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].Key, "MeterValuesSampledDataMaxLength");
  9398. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility == 1)
  9399. {
  9400. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9401. }
  9402. else
  9403. {
  9404. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9405. }
  9406. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData );
  9407. isKnowKey = TRUE;
  9408. }
  9409. if(isEmpty || strcmp(keyReq, "MeterValueSampleInterval") == 0 )
  9410. {
  9411. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValueSampleInterval].Item, "MeterValueSampleInterval");
  9412. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].Key, "MeterValueSampleInterval");
  9413. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility == 1)
  9414. {
  9415. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].ReadOnly, "0"/*"FALSE"*/);
  9416. }
  9417. else
  9418. {
  9419. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].ReadOnly, "1"/*"TRUE"*/);
  9420. }
  9421. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData );
  9422. isKnowKey = TRUE;
  9423. }
  9424. if(isEmpty || strcmp(keyReq, "MinimumStatusDuration") == 0 )
  9425. {
  9426. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MinimumStatusDuration].Item, "MinimumStatusDuration");
  9427. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].Key, "MinimumStatusDuration");
  9428. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility == 1)
  9429. {
  9430. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].ReadOnly, "0"/*"FALSE"*/);
  9431. }
  9432. else
  9433. {
  9434. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].ReadOnly, "1"/*"TRUE"*/);
  9435. }
  9436. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[17].ItemData );
  9437. isKnowKey = TRUE;
  9438. }
  9439. if(isEmpty || strcmp(keyReq, "NumberOfConnectors") == 0 )
  9440. {
  9441. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_NumberOfConnectors].Item, "NumberOfConnectors");
  9442. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].Key, "NumberOfConnectors");
  9443. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility == 1)
  9444. {
  9445. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].ReadOnly, "0"/*"FALSE"*/);
  9446. }
  9447. else
  9448. {
  9449. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].ReadOnly, "1"/*"TRUE"*/);
  9450. }
  9451. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData );
  9452. isKnowKey = TRUE;
  9453. }
  9454. if(isEmpty || strcmp(keyReq, "ResetRetries") == 0 )
  9455. {
  9456. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ResetRetries].Item, "ResetRetries");
  9457. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].Key, "ResetRetries");
  9458. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility == 1)
  9459. {
  9460. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].ReadOnly, "0"/*"FALSE"*/);
  9461. }
  9462. else
  9463. {
  9464. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].ReadOnly, "1"/*"TRUE"*/);
  9465. }
  9466. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData );
  9467. isKnowKey = TRUE;
  9468. }
  9469. if(isEmpty || strcmp(keyReq, "ConnectorPhaseRotation") == 0 )
  9470. {
  9471. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectorPhaseRotation].Item, "ConnectorPhaseRotation");
  9472. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].Key, "ConnectorPhaseRotation");
  9473. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility == 1)
  9474. {
  9475. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].ReadOnly, "0"/*"FALSE"*/);
  9476. }
  9477. else
  9478. {
  9479. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].ReadOnly, "1"/*"TRUE"*/);
  9480. }
  9481. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData );
  9482. isKnowKey = TRUE;
  9483. }
  9484. if(isEmpty || strcmp(keyReq, "ConnectorPhaseRotationMaxLength") == 0 )
  9485. {
  9486. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectorPhaseRotationMaxLength].Item, "ConnectorPhaseRotationMaxLength");
  9487. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].Key, "ConnectorPhaseRotationMaxLength");
  9488. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility == 1)
  9489. {
  9490. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9491. }
  9492. else
  9493. {
  9494. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9495. }
  9496. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].Value,(const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData );
  9497. isKnowKey = TRUE;
  9498. }
  9499. if(isEmpty || strcmp(keyReq, "StopTransactionOnEVSideDisconnect") == 0 )
  9500. {
  9501. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTransactionOnEVSideDisconnect].Item, "StopTransactionOnEVSideDisconnect");
  9502. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].Key, "StopTransactionOnEVSideDisconnect");
  9503. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility == 1)
  9504. {
  9505. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].ReadOnly, "0"/*"FALSE"*/);
  9506. }
  9507. else
  9508. {
  9509. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].ReadOnly, "1"/*"TRUE"*/);
  9510. }
  9511. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData );
  9512. isKnowKey = TRUE;
  9513. }
  9514. if(isEmpty || strcmp(keyReq, "StopTransactionOnInvalidId") == 0 )
  9515. {
  9516. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTransactionOnInvalidId].Item, "StopTransactionOnInvalidId");
  9517. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].Key, "StopTransactionOnInvalidId");
  9518. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility == 1)
  9519. {
  9520. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].ReadOnly, "0"/*"FALSE"*/);
  9521. }
  9522. else
  9523. {
  9524. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].ReadOnly, "1"/*"TRUE"*/);
  9525. }
  9526. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData );
  9527. isKnowKey = TRUE;
  9528. }
  9529. if(isEmpty || strcmp(keyReq, "StopTxnAlignedData") == 0 )
  9530. {
  9531. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnAlignedData].Item, "StopTxnAlignedData");
  9532. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].Key, "StopTxnAlignedData");
  9533. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility == 1)
  9534. {
  9535. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].ReadOnly, "0"/*"FALSE"*/);
  9536. }
  9537. else
  9538. {
  9539. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].ReadOnly, "1"/*"TRUE"*/);
  9540. }
  9541. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].Value,(const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData );
  9542. isKnowKey = TRUE;
  9543. }
  9544. if(isEmpty || strcmp(keyReq, "StopTxnAlignedDataMaxLength") == 0 )
  9545. {
  9546. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnAlignedDataMaxLength].Item, "StopTxnAlignedDataMaxLength");
  9547. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].Key, "StopTxnAlignedDataMaxLength");
  9548. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility == 1)
  9549. {
  9550. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9551. }
  9552. else
  9553. {
  9554. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9555. }
  9556. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData );
  9557. isKnowKey = TRUE;
  9558. }
  9559. if(isEmpty || strcmp(keyReq, "StopTxnSampledData") == 0 )
  9560. {
  9561. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnSampledData].Item, "StopTxnSampledData");
  9562. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].Key, "StopTxnSampledData");
  9563. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility == 1)
  9564. {
  9565. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].ReadOnly, "0"/*"FALSE"*/);
  9566. }
  9567. else
  9568. {
  9569. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].ReadOnly, "1"/*"TRUE"*/);
  9570. }
  9571. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData );
  9572. isKnowKey = TRUE;
  9573. }
  9574. if(isEmpty || strcmp(keyReq, "StopTxnSampledDataMaxLength") == 0 )
  9575. {
  9576. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnSampledDataMaxLength].Item, "StopTxnSampledDataMaxLength");
  9577. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].Key, "StopTxnSampledDataMaxLength");
  9578. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility == 1)
  9579. {
  9580. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9581. }
  9582. else
  9583. {
  9584. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9585. }
  9586. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData );
  9587. isKnowKey = TRUE;
  9588. }
  9589. if(isEmpty || strcmp(keyReq, "SupportedFeatureProfiles") == 0 )
  9590. {
  9591. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_SupportedFeatureProfiles].Item, "SupportedFeatureProfiles");
  9592. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].Key, "SupportedFeatureProfiles");
  9593. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility == 1)
  9594. {
  9595. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].ReadOnly, "0"/*"FALSE"*/);
  9596. }
  9597. else
  9598. {
  9599. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].ReadOnly, "1"/*"TRUE"*/);
  9600. }
  9601. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData );
  9602. isKnowKey = TRUE;
  9603. }
  9604. if(isEmpty || strcmp(keyReq, "SupportedFeatureProfilesMaxLength") == 0 )
  9605. {
  9606. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_SupportedFeatureProfilesMaxLength].Item, "SupportedFeatureProfilesMaxLength");
  9607. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].Key, "SupportedFeatureProfilesMaxLength");
  9608. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility == 1)
  9609. {
  9610. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9611. }
  9612. else
  9613. {
  9614. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9615. }
  9616. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData );
  9617. isKnowKey = TRUE;
  9618. }
  9619. if(isEmpty || strcmp(keyReq, "TransactionMessageAttempts") == 0 )
  9620. {
  9621. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_TransactionMessageAttempts].Item, "TransactionMessageAttempts");
  9622. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].Key, "TransactionMessageAttempts");
  9623. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility == 1)
  9624. {
  9625. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].ReadOnly, "0"/*"FALSE"*/);
  9626. }
  9627. else
  9628. {
  9629. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].ReadOnly, "1"/*"TRUE"*/);
  9630. }
  9631. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData );
  9632. isKnowKey = TRUE;
  9633. }
  9634. if(isEmpty || strcmp(keyReq, "TransactionMessageRetryInterval") == 0 )
  9635. {
  9636. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_TransactionMessageRetryInterval].Item, "TransactionMessageRetryInterval");
  9637. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].Key, "TransactionMessageRetryInterval");
  9638. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility == 1)
  9639. {
  9640. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].ReadOnly, "0"/*"FALSE"*/);
  9641. }
  9642. else
  9643. {
  9644. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].ReadOnly, "1"/*"TRUE"*/);
  9645. }
  9646. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData );
  9647. isKnowKey = TRUE;
  9648. }
  9649. if(isEmpty || strcmp(keyReq, "UnlockConnectorOnEVSideDisconnect") == 0 )
  9650. {
  9651. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Item, "UnlockConnectorOnEVSideDisconnect");
  9652. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Key, "UnlockConnectorOnEVSideDisconnect");
  9653. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility == 1)
  9654. {
  9655. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].ReadOnly, "0"/*"FALSE"*/);
  9656. }
  9657. else
  9658. {
  9659. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].ReadOnly, "1"/*"TRUE"*/);
  9660. }
  9661. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData );
  9662. isKnowKey = TRUE;
  9663. }
  9664. if(isEmpty || strcmp(keyReq, "WebSocketPingInterval") == 0 )
  9665. {
  9666. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_WebSocketPingInterval].Item, "WebSocketPingInterval");
  9667. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].Key, "WebSocketPingInterval");
  9668. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility == 1)
  9669. {
  9670. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].ReadOnly, "0"/*"FALSE"*/);
  9671. }
  9672. else
  9673. {
  9674. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].ReadOnly, "1"/*"TRUE"*/);
  9675. }
  9676. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData );
  9677. isKnowKey = TRUE;
  9678. }
  9679. #if 0
  9680. //For OCTT Test Case
  9681. if(isEmpty || strcmp(keyReq, "LocalAuthorizationListEnabled") == 0 )
  9682. {
  9683. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthListEnabled].Item, "LocalAuthorizationListEnabled");
  9684. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Key, "LocalAuthorizationListEnabled");
  9685. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1)
  9686. {
  9687. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "0"/*"FALSE"*/);
  9688. }
  9689. else
  9690. {
  9691. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "1"/*"TRUE"*/);
  9692. }
  9693. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData );
  9694. isKnowKey = TRUE;
  9695. }
  9696. #endif
  9697. #if 1
  9698. if(isEmpty || strcmp(keyReq, "LocalAuthListEnabled") == 0 )
  9699. {
  9700. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthListEnabled].Item, "LocalAuthListEnabled");
  9701. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Key, "LocalAuthListEnabled");
  9702. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1)
  9703. {
  9704. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "0"/*"FALSE"*/);
  9705. }
  9706. else
  9707. {
  9708. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "1"/*"TRUE"*/);
  9709. }
  9710. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData );
  9711. isKnowKey = TRUE;
  9712. }
  9713. #endif
  9714. if(isEmpty || strcmp(keyReq, "LocalAuthListMaxLength") == 0 )
  9715. {
  9716. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthListMaxLength].Item, "LocalAuthListMaxLength");
  9717. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].Key, "LocalAuthListMaxLength");
  9718. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility == 1)
  9719. {
  9720. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9721. }
  9722. else
  9723. {
  9724. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9725. }
  9726. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData );
  9727. isKnowKey = TRUE;
  9728. }
  9729. if(isEmpty || strcmp(keyReq, "SendLocalListMaxLength") == 0 )
  9730. {
  9731. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_SendLocalListMaxLength].Item, "SendLocalListMaxLength");
  9732. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].Key, "SendLocalListMaxLength");
  9733. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility == 1)
  9734. {
  9735. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9736. }
  9737. else
  9738. {
  9739. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9740. }
  9741. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData );
  9742. isKnowKey = TRUE;
  9743. }
  9744. if(isEmpty || strcmp(keyReq, "ReserveConnectorZeroSupported") == 0 )
  9745. {
  9746. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ReserveConnectorZeroSupported].Item, "ReserveConnectorZeroSupported");
  9747. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].Key, "ReserveConnectorZeroSupported");
  9748. if(ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility == 1)
  9749. {
  9750. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].ReadOnly, "0"/*"FALSE"*/);
  9751. }
  9752. else
  9753. {
  9754. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].ReadOnly, "1"/*"TRUE"*/);
  9755. }
  9756. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].Value,(const char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData);
  9757. isKnowKey = TRUE;
  9758. }
  9759. if(isEmpty || strcmp(keyReq, "ChargeProfileMaxStackLevel") == 0 )
  9760. {
  9761. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ChargeProfileMaxStackLevel].Item, "ChargeProfileMaxStackLevel");
  9762. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].Key, "ChargeProfileMaxStackLevel");
  9763. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility == 1)
  9764. {
  9765. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].ReadOnly, "0"/*"FALSE"*/);
  9766. }
  9767. else
  9768. {
  9769. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].ReadOnly, "1"/*"TRUE"*/);
  9770. }
  9771. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData);
  9772. isKnowKey = TRUE;
  9773. }
  9774. if(isEmpty || strcmp(keyReq, "ChargingScheduleAllowedChargingRateUnit") == 0 )
  9775. {
  9776. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Item, "ChargingScheduleAllowedChargingRateUnit");
  9777. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Key, "ChargingScheduleAllowedChargingRateUnit");
  9778. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility == 1)
  9779. {
  9780. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].ReadOnly, "0"/*"FALSE"*/);
  9781. }
  9782. else
  9783. {
  9784. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].ReadOnly, "1"/*"TRUE"*/);
  9785. }
  9786. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData);
  9787. isKnowKey = TRUE;
  9788. }
  9789. if(isEmpty || strcmp(keyReq, "ChargingScheduleMaxPeriods") == 0 )
  9790. {
  9791. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ChargingScheduleMaxPeriods].Item, "ChargingScheduleMaxPeriods");
  9792. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].Key, "ChargingScheduleMaxPeriods");
  9793. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility == 1)
  9794. {
  9795. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].ReadOnly, "0"/*"FALSE"*/);
  9796. }
  9797. else
  9798. {
  9799. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].ReadOnly, "1"/*"TRUE"*/);
  9800. }
  9801. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData);
  9802. isKnowKey = TRUE;
  9803. }
  9804. if(isEmpty || strcmp(keyReq, "ConnectorSwitch3to1PhaseSupported") == 0 )
  9805. {
  9806. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Item, "ConnectorSwitch3to1PhaseSupported");
  9807. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Key, "ConnectorSwitch3to1PhaseSupported");
  9808. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility == 1)
  9809. {
  9810. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].ReadOnly, "0"/*"FALSE"*/);
  9811. }
  9812. else
  9813. {
  9814. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].ReadOnly, "1"/*"TRUE"*/);
  9815. }
  9816. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData);
  9817. isKnowKey = TRUE;
  9818. }
  9819. if(isEmpty || strcmp(keyReq, "MaxChargingProfilesInstalled") == 0 )
  9820. {
  9821. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MaxChargingProfilesInstalled].Item, "MaxChargingProfilesInstalled");
  9822. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].Key, "MaxChargingProfilesInstalled");
  9823. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility == 1)
  9824. {
  9825. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].ReadOnly, "0"/*"FLASE"*/);
  9826. }
  9827. else
  9828. {
  9829. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].ReadOnly, "1"/*"TRUE"*/);
  9830. }
  9831. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData);
  9832. isKnowKey = TRUE;
  9833. }
  9834. //=========================================================
  9835. if(!isEmpty && !isKnowKey)
  9836. {
  9837. DEBUG_INFO("unKnowIndex =%d\n", UnknownKeynum);
  9838. strcpy(unknownkey[UnknownKeynum], keyReq);
  9839. UnknownKeynum = UnknownKeynum + 1;
  9840. }
  9841. }
  9842. void processUnkownKey(void)
  9843. {
  9844. DEBUG_INFO("processUnkownKey\n");
  9845. memset(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey, 0 , sizeof(struct StructConfigurationKeyItems)* 10);
  9846. for(int index=0; index < UnknownKeynum; index++)
  9847. {
  9848. if(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[index].Item[0] == 0)
  9849. {
  9850. strcpy((char *)(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[index].Item), unknownkey[index]);
  9851. }
  9852. }
  9853. }
  9854. int setKeyValue(char *key, char *value)
  9855. {
  9856. int isSuccess = NotSupported;
  9857. int check_ascii=0;
  9858. #ifdef Debug
  9859. DEBUG_INFO(" setKeyValue key-value=%s %s\n",key,value);
  9860. #endif
  9861. if(strcmp(key, "AllowOfflineTxForUnknownId") == 0)
  9862. {
  9863. //Charger.AllowOfflineTxForUnknownId = (value.toLowerCase().equals("true")?true:false);
  9864. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility == 1)
  9865. {
  9866. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  9867. isSuccess = ConfigurationStatus_Accepted;
  9868. }
  9869. else
  9870. {
  9871. isSuccess = ConfigurationStatus_Rejected;
  9872. }
  9873. }
  9874. if(strcmp(key, "AuthorizationCacheEnabled") == 0)
  9875. {
  9876. //Charger.AuthorizationCacheEnabled = (value.toLowerCase().equals("true")?true:false);
  9877. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility == 1)
  9878. {
  9879. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "%s", value/*(strcmp(value, "true")==0) ?TRUE:FALSE*/ );
  9880. isSuccess = ConfigurationStatus_Accepted;
  9881. //updateSetting("AuthorizationCacheEnabled", (Charger.AuthorizationCacheEnabled?"1":"0"));
  9882. updateSetting("AuthorizationCacheEnabled",(char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[1].ItemData);
  9883. }
  9884. else
  9885. {
  9886. isSuccess = ConfigurationStatus_Rejected;
  9887. }
  9888. }
  9889. if(strcmp(key, "AuthorizeRemoteTxRequests") == 0)
  9890. {
  9891. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility == 1)
  9892. {
  9893. //Charger.AuthorizeRemoteTxRequests = (value.toLowerCase().equals("true")?true:false);
  9894. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  9895. isSuccess = ConfigurationStatus_Accepted;
  9896. }
  9897. else
  9898. {
  9899. isSuccess = ConfigurationStatus_Rejected;
  9900. }
  9901. }
  9902. if(strcmp(key, "BlinkRepeat") == 0)
  9903. {
  9904. //Charger.BlinkRepeat = Integer.parseInt(value);
  9905. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility == 1)
  9906. {
  9907. check_ascii = value[0];
  9908. if( (check_ascii < 48) || (check_ascii > 57) )
  9909. {
  9910. isSuccess = ConfigurationStatus_Rejected;
  9911. }
  9912. else
  9913. {
  9914. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData, "%d", atoi(value) );
  9915. isSuccess = ConfigurationStatus_Accepted;
  9916. }
  9917. }
  9918. else
  9919. {
  9920. isSuccess = ConfigurationStatus_Rejected;
  9921. }
  9922. }
  9923. if(strcmp(key, "ClockAlignedDataInterval") == 0)
  9924. {
  9925. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility == 1)
  9926. {
  9927. check_ascii = value[0];
  9928. if( (check_ascii < 48) || (check_ascii > 57) )
  9929. {
  9930. isSuccess = ConfigurationStatus_Rejected;
  9931. }
  9932. else
  9933. {
  9934. //Charger.ClockAlignedDataInterval = Integer.parseInt(value)*1000;
  9935. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData, "%d", atoi(value)*1000 );
  9936. isSuccess = ConfigurationStatus_Accepted;
  9937. }
  9938. }
  9939. else
  9940. {
  9941. isSuccess = ConfigurationStatus_Rejected;
  9942. }
  9943. }
  9944. if(strcmp(key, "ConnectionTimeOut") == 0 )
  9945. {
  9946. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility == 1)
  9947. {
  9948. check_ascii = value[0];
  9949. if( (check_ascii < 48) || (check_ascii > 57) )
  9950. {
  9951. isSuccess = ConfigurationStatus_Rejected;
  9952. }
  9953. else
  9954. {
  9955. //Charger.ConnectionTimeOut = Integer.parseInt(value)*1000;
  9956. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData, "%d", atoi(value));
  9957. isSuccess = ConfigurationStatus_Accepted;
  9958. }
  9959. }
  9960. else
  9961. {
  9962. isSuccess = ConfigurationStatus_Rejected;
  9963. }
  9964. }
  9965. if(strcmp(key, "HeartbeatInterval") == 0)
  9966. {
  9967. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility == 1)
  9968. {
  9969. check_ascii = value[0];
  9970. if( (check_ascii < 48) || (check_ascii > 57) )
  9971. {
  9972. isSuccess = ConfigurationStatus_Rejected;
  9973. }
  9974. else
  9975. {
  9976. //Charger.HeartbeatInterval = Integer.parseInt(value)*1000;
  9977. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "%d", atoi(value)/*atoi(value)*1000*/ );
  9978. HeartBeatWaitTime = atoi(value);
  9979. isSuccess = ConfigurationStatus_Accepted;
  9980. }
  9981. }
  9982. else
  9983. {
  9984. isSuccess = ConfigurationStatus_Rejected;
  9985. }
  9986. }
  9987. if(strcmp(key, "LightIntensity") == 0)
  9988. {
  9989. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility == 1)
  9990. {
  9991. check_ascii = value[0];
  9992. if( (check_ascii < 48) || (check_ascii > 57) )
  9993. {
  9994. isSuccess = ConfigurationStatus_Rejected;
  9995. }
  9996. else
  9997. {
  9998. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData, "%d", atoi(value) );
  9999. isSuccess = ConfigurationStatus_Accepted;
  10000. }
  10001. }
  10002. else
  10003. {
  10004. isSuccess = ConfigurationStatus_Rejected;
  10005. }
  10006. }
  10007. if(strcmp(key, "LocalAuthorizeOffline") == 0)
  10008. {
  10009. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility == 1)
  10010. {
  10011. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  10012. isSuccess = ConfigurationStatus_Accepted;
  10013. updateSetting("LocalAuthorizeOffline", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData);
  10014. }
  10015. else
  10016. {
  10017. isSuccess = ConfigurationStatus_Rejected;
  10018. }
  10019. }
  10020. if(strcmp(key, "LocalPreAuthorize") == 0)
  10021. {
  10022. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility == 1)
  10023. {
  10024. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  10025. isSuccess = ConfigurationStatus_Accepted;
  10026. }
  10027. else
  10028. {
  10029. isSuccess = ConfigurationStatus_Rejected;
  10030. }
  10031. }
  10032. if(strcmp(key, "MaxEnergyOnInvalidId") == 0)
  10033. {
  10034. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility == 1)
  10035. {
  10036. check_ascii = value[0];
  10037. if( (check_ascii < 48) || (check_ascii > 57) )
  10038. {
  10039. isSuccess = ConfigurationStatus_Rejected;
  10040. }
  10041. else
  10042. {
  10043. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData, "%d", atoi(value) );
  10044. isSuccess = ConfigurationStatus_Accepted;
  10045. }
  10046. }
  10047. else
  10048. {
  10049. isSuccess = ConfigurationStatus_Rejected;
  10050. }
  10051. }
  10052. if(strcmp(key, "MeterValuesAlignedData") == 0)
  10053. {
  10054. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility == 1)
  10055. {
  10056. //int valueLength = strlen(value);
  10057. for(int i = 0; value[i]; i++){
  10058. value[i] = tolower(value[i]);
  10059. }
  10060. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "%s", value );
  10061. isSuccess = ConfigurationStatus_Accepted;
  10062. }
  10063. else
  10064. {
  10065. isSuccess = ConfigurationStatus_Rejected;
  10066. }
  10067. }
  10068. if(strcmp(key, "MeterValuesSampledData") == 0 )
  10069. {
  10070. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility == 1)
  10071. {
  10072. //int valueLength = strlen(value);
  10073. for(int i = 0; value[i]; i++){
  10074. value[i] = tolower(value[i]);
  10075. }
  10076. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "%s", value );
  10077. isSuccess = ConfigurationStatus_Accepted;
  10078. }
  10079. else
  10080. {
  10081. isSuccess = ConfigurationStatus_Rejected;
  10082. }
  10083. }
  10084. if(strcmp(key, "MeterValueSampleInterval") == 0)
  10085. {
  10086. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility == 1)
  10087. {
  10088. check_ascii = value[0];
  10089. if( (check_ascii < 48) || (check_ascii > 57) )
  10090. {
  10091. isSuccess = ConfigurationStatus_Rejected;
  10092. }
  10093. else
  10094. {
  10095. //Charger.MeterValueSampleInterval = Integer.parseInt(value)*1000;
  10096. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData, "%d", atoi(value));
  10097. isSuccess = ConfigurationStatus_Accepted;
  10098. }
  10099. #ifdef Debug
  10100. DEBUG_INFO(" MeterValueSampleInterval is ConfigurationStatus_Accepted \n");
  10101. #endif
  10102. }
  10103. else
  10104. {
  10105. isSuccess = ConfigurationStatus_Rejected;
  10106. #ifdef Debug
  10107. DEBUG_INFO(" MeterValueSampleInterval is ConfigurationStatus_Rejected \n");
  10108. #endif
  10109. }
  10110. }
  10111. if(strcmp(key, "MinimumStatusDuration") == 0)
  10112. {
  10113. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility == 1)
  10114. {
  10115. check_ascii = value[0];
  10116. if( (check_ascii < 48) || (check_ascii > 57) )
  10117. {
  10118. isSuccess = ConfigurationStatus_Rejected;
  10119. }
  10120. else
  10121. {
  10122. //Charger.MinimumStatusDuration = Integer.parseInt(value);
  10123. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "%d", atoi(value) );
  10124. isSuccess = ConfigurationStatus_Accepted;
  10125. }
  10126. }
  10127. else
  10128. {
  10129. isSuccess = ConfigurationStatus_Rejected;
  10130. }
  10131. }
  10132. if(strcmp(key, "ResetRetries") == 0)
  10133. {
  10134. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility == 1)
  10135. {
  10136. check_ascii = value[0];
  10137. if( (check_ascii < 48) || (check_ascii > 57) )
  10138. {
  10139. isSuccess = ConfigurationStatus_Rejected;
  10140. }
  10141. else
  10142. {
  10143. //Charger.ResetRetries = Integer.parseInt(value);
  10144. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData, "%d", atoi(value) );
  10145. isSuccess = ConfigurationStatus_Accepted;
  10146. }
  10147. }
  10148. else
  10149. {
  10150. isSuccess = ConfigurationStatus_Rejected;
  10151. }
  10152. }
  10153. if(strcmp(key, "ConnectorPhaseRotation") == 0)
  10154. {
  10155. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility == 1)
  10156. {
  10157. //Charger.ConnectorPhaseRotation = value.toLowerCase();
  10158. //int valueLength = strlen(value);
  10159. for(int i = 0; value[i]; i++){
  10160. value[i] = tolower(value[i]);
  10161. }
  10162. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", value );
  10163. isSuccess = ConfigurationStatus_Accepted;
  10164. }
  10165. else
  10166. {
  10167. isSuccess = ConfigurationStatus_Rejected;
  10168. }
  10169. }
  10170. if(strcmp(key, "StopTransactionOnEVSideDisconnect") == 0)
  10171. {
  10172. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility == 1)
  10173. {
  10174. //Charger.StopTransactionOnEVSideDisconnect = (value.toLowerCase().equals("true")?true:false);
  10175. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  10176. isSuccess = ConfigurationStatus_Accepted;
  10177. }
  10178. else
  10179. {
  10180. isSuccess = ConfigurationStatus_Rejected;
  10181. }
  10182. }
  10183. if(strcmp(key, "StopTransactionOnInvalidId") == 0)
  10184. {
  10185. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility == 1)
  10186. {
  10187. //Charger.StopTransactionOnInvalidId = (value.toLowerCase().equals("true")?true:false);
  10188. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  10189. isSuccess = ConfigurationStatus_Accepted;
  10190. }
  10191. else
  10192. {
  10193. isSuccess = ConfigurationStatus_Rejected;
  10194. }
  10195. }
  10196. if(strcmp(key, "StopTxnAlignedData") == 0)
  10197. {
  10198. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility == 1)
  10199. {
  10200. //Charger.StopTxnAlignedData = value.toLowerCase();
  10201. //int valueLength = strlen(value);
  10202. for(int i = 0; value[i]; i++){
  10203. value[i] = tolower(value[i]);
  10204. }
  10205. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData, "%s", value );
  10206. isSuccess = ConfigurationStatus_Accepted;
  10207. }
  10208. else
  10209. {
  10210. isSuccess = ConfigurationStatus_Rejected;
  10211. }
  10212. }
  10213. if(strcmp(key, "StopTxnSampledData") == 0)
  10214. {
  10215. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility == 1)
  10216. {
  10217. //Charger.StopTxnSampledData = value.toLowerCase();
  10218. //int valueLength = strlen(value);
  10219. for(int i = 0; value[i]; i++){
  10220. value[i] = tolower(value[i]);
  10221. }
  10222. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "%s", value );
  10223. isSuccess = ConfigurationStatus_Accepted;
  10224. }
  10225. else
  10226. {
  10227. isSuccess = ConfigurationStatus_Rejected;
  10228. }
  10229. }
  10230. if(strcmp(key, "TransactionMessageAttempts") == 0)
  10231. {
  10232. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility == 1)
  10233. {
  10234. check_ascii = value[0];
  10235. if( (check_ascii < 48) || (check_ascii > 57) )
  10236. {
  10237. isSuccess = ConfigurationStatus_Rejected;
  10238. }
  10239. else
  10240. {
  10241. //Charger.TransactionMessageAttempts = Integer.parseInt(value);
  10242. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData, "%d", atoi(value) );
  10243. TransactionMessageAttemptsValue = atoi(value);
  10244. isSuccess = ConfigurationStatus_Accepted;
  10245. }
  10246. }
  10247. else
  10248. {
  10249. isSuccess = ConfigurationStatus_Rejected;
  10250. }
  10251. }
  10252. if(strcmp(key, "TransactionMessageRetryInterval") == 0)
  10253. {
  10254. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility == 1)
  10255. {
  10256. check_ascii = value[0];
  10257. if( (check_ascii < 48) || (check_ascii > 57) )
  10258. {
  10259. isSuccess = ConfigurationStatus_Rejected;
  10260. }
  10261. else
  10262. {
  10263. //Charger.TransactionMessageRetryInterval = Integer.parseInt(value)*1000;
  10264. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData, "%d", atoi(value) );
  10265. TransactionMessageRetryIntervalValue = atoi(value);
  10266. isSuccess = ConfigurationStatus_Accepted;
  10267. }
  10268. }
  10269. else
  10270. {
  10271. isSuccess = ConfigurationStatus_Rejected;
  10272. }
  10273. }
  10274. if(strcmp(key, "UnlockConnectorOnEVSideDisconnect") == 0)
  10275. {
  10276. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility == 1)
  10277. {
  10278. //Charger.UnlockConnectorOnEVSideDisconnect = (value.toLowerCase().equals("true")?true:false);
  10279. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  10280. isSuccess = ConfigurationStatus_Accepted;
  10281. }
  10282. else
  10283. {
  10284. isSuccess = ConfigurationStatus_Rejected;
  10285. }
  10286. }
  10287. if(strcmp(key, "WebSocketPingInterval") == 0)
  10288. {
  10289. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility == 1)
  10290. {
  10291. check_ascii = value[0];
  10292. if( (check_ascii < 48) || (check_ascii > 57) )
  10293. {
  10294. isSuccess = ConfigurationStatus_Rejected;
  10295. }
  10296. else
  10297. {
  10298. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "%d", atoi(value) );
  10299. isSuccess = ConfigurationStatus_Accepted;
  10300. }
  10301. }
  10302. else
  10303. {
  10304. isSuccess = ConfigurationStatus_Rejected;
  10305. }
  10306. }
  10307. #if 0
  10308. //For OCPP Test Case
  10309. if(strcmp(key, "LocalAuthorizationListEnabled") == 0)
  10310. {
  10311. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1)
  10312. {
  10313. sprintf((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  10314. isSuccess = ConfigurationStatus_Accepted;
  10315. //updateSetting("LocalAuthorizationListEnabled", (char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData);
  10316. }
  10317. else
  10318. {
  10319. isSuccess = ConfigurationStatus_Rejected;
  10320. }
  10321. }
  10322. #endif
  10323. #if 1
  10324. if(strcmp(key, "LocalAuthListEnabled") == 0)
  10325. {
  10326. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1)
  10327. {
  10328. sprintf((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  10329. isSuccess = ConfigurationStatus_Accepted;
  10330. updateSetting("LocalAuthListEnabled", (char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData);
  10331. }
  10332. else
  10333. {
  10334. isSuccess = ConfigurationStatus_Rejected;
  10335. }
  10336. }
  10337. #endif
  10338. return isSuccess;
  10339. }
  10340. int updateSetting(char *key, char *value)
  10341. {
  10342. mtrace();
  10343. int isSuccess = FALSE;
  10344. char string[1000]={0}, buffer[1000]={0};
  10345. char strtemp[50]={0};
  10346. char sstr[50]={ 0 };//sstr[200]={ 0 };
  10347. int pos, c = 0;
  10348. char *loc;
  10349. int pos1=0;
  10350. FILE *f = fopen("/var/www/settings1", "r");
  10351. if(f == NULL)
  10352. {
  10353. #ifdef Debug
  10354. DEBUG_ERROR("/var/www/settings1 does not exist!\n");
  10355. #endif
  10356. return isSuccess;
  10357. }
  10358. fseek(f, 0, SEEK_END);
  10359. long fsize = ftell(f);
  10360. fseek(f, 0, SEEK_SET); /* same as rewind(f); */
  10361. fread(string, 1, fsize, f);
  10362. fclose(f);
  10363. string[fsize] = 0;
  10364. loc = strstr(string, key);
  10365. if(loc != NULL)
  10366. {
  10367. DEBUG_INFO("key exist!\n");
  10368. pos = loc - string-1;
  10369. f = fopen("/var/www/settings1", "w");
  10370. strncpy(buffer, string, pos);
  10371. fprintf(f, "%s", buffer);
  10372. memset(sstr ,0, sizeof(sstr) );
  10373. c = 0;
  10374. while (loc[3+strlen(key/*"LocalAuthListEnabled"*/)+c] != '\"')
  10375. {
  10376. sstr[c] = loc[3+strlen(key/*"LocalAuthListEnabled"*/)+c];
  10377. //printf("i=%d sstr=%c\n",c, sstr[c]);
  10378. c++;
  10379. }
  10380. sstr[c] = '\0';
  10381. pos1 = fsize -pos -(3+strlen(key/*"LocalAuthListEnabled"*/)+c)-1;
  10382. sprintf(strtemp,"\"%s\":\"%s\"",key,value);
  10383. fprintf(f, "%s", strtemp /*"\"LocalAuthListEnabled\":\"fault\""*/);
  10384. memset(buffer ,0, sizeof(buffer) );
  10385. strncpy(buffer, loc+(3+strlen(key/*"LocalAuthListEnabled"*/)+c)+1, pos1);
  10386. //printf("buffer=%s",buffer);
  10387. fprintf(f, "%s", buffer);
  10388. fclose(f);
  10389. }
  10390. else
  10391. {
  10392. printf("key not exist!\n");
  10393. f = fopen("/var/www/settings1", "w+");
  10394. fputs(string, f);
  10395. fseek(f, -1, SEEK_CUR);
  10396. //fprintf(f, "%s", ",\"LocalAuthListEnabled\":\"true\"}");
  10397. sprintf(strtemp,",\"%s\":\"%s\"}",key,value);
  10398. fputs(strtemp/*",\"LocalAuthListEnabled\":\"true\"}"*/, f);
  10399. fclose(f);
  10400. }
  10401. isSuccess = TRUE;
  10402. return isSuccess;
  10403. }
  10404. int TransactionMessageAttemptsGet(void)
  10405. {
  10406. return TransactionMessageAttemptsValue;//atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData);
  10407. }
  10408. int FirstHeartBeatResponse(void)
  10409. {
  10410. return FirstHeartBeat;
  10411. }
  10412. int TransactionMessageRetryIntervalGet(void)
  10413. {
  10414. return TransactionMessageRetryIntervalValue;//atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData);
  10415. }
  10416. #define SA struct sockaddr
  10417. #define MAXBUF 1024
  10418. //static int m_socket_data;
  10419. //static int sockfd;
  10420. int ReadHttpStatus(int sock){
  10421. //char c;
  10422. char buff[1024]="",*ptr=buff+1;
  10423. int bytes_received, status;
  10424. DEBUG_INFO("Begin Response ..\n");
  10425. while((bytes_received = recv(sock, ptr, 1, 0))){
  10426. if(bytes_received==-1){
  10427. perror("ReadHttpStatus");
  10428. exit(1);
  10429. }
  10430. if((ptr[-1]=='\r') && (*ptr=='\n' )) break;
  10431. ptr++;
  10432. }
  10433. *ptr=0;
  10434. ptr=buff+1;
  10435. sscanf(ptr,"%*s %d ", &status);
  10436. DEBUG_INFO("%s\n",ptr);
  10437. DEBUG_INFO("status=%d\n",status);
  10438. DEBUG_INFO("End Response ..\n");
  10439. return (bytes_received>0)?status:0;
  10440. }
  10441. //the only filed that it parsed is 'Content-Length'
  10442. int ParseHeader(int sock){
  10443. //char c;
  10444. char buff[1024]="",*ptr=buff+4;
  10445. int bytes_received;
  10446. DEBUG_INFO("Begin HEADER ..\n");
  10447. while((bytes_received = recv(sock, ptr, 1, 0))){
  10448. if(bytes_received==-1){
  10449. perror("Parse Header");
  10450. exit(1);
  10451. }
  10452. if(
  10453. (ptr[-3]=='\r') && (ptr[-2]=='\n' ) &&
  10454. (ptr[-1]=='\r') && (*ptr=='\n' )
  10455. ) break;
  10456. ptr++;
  10457. }
  10458. *ptr=0;
  10459. ptr=buff+4;
  10460. //printf("%s",ptr);
  10461. if(bytes_received){
  10462. ptr=strstr(ptr,"Content-Length:");
  10463. if(ptr){
  10464. sscanf(ptr,"%*s %d",&bytes_received);
  10465. }else
  10466. bytes_received=-1; //unknown size
  10467. DEBUG_INFO("Content-Length: %d\n",bytes_received);
  10468. }
  10469. DEBUG_INFO("End HEADER ..\n");
  10470. return bytes_received ;
  10471. }
  10472. int httpDownLoadFile(char *location, char *path, char *filename,char *url)
  10473. {
  10474. char rmFileCmd[100]={0};
  10475. char FilePath[100]={0};
  10476. char ftpbuf[200];
  10477. int systemresult;
  10478. DEBUG_INFO("filename=%s\n",filename);
  10479. DEBUG_INFO("url=%s\n",url);
  10480. sprintf(FilePath,"../mnt/%s",filename);
  10481. if((access(FilePath,F_OK))!=-1)
  10482. {
  10483. DEBUG_INFO("filename=%s exist.\n",FilePath);
  10484. sprintf(rmFileCmd,"rm -f %s",FilePath);
  10485. system(rmFileCmd);
  10486. }
  10487. memset(ftpbuf, 0, sizeof(ftpbuf));
  10488. sprintf(ftpbuf, "wget --tries=3 -O ../mnt/%s -c %s",filename, url);
  10489. //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
  10490. systemresult = system(ftpbuf);
  10491. DEBUG_INFO("systemresult=%d\n",systemresult);
  10492. if(systemresult != 0)
  10493. {
  10494. DEBUG_INFO("http DownLoad error!\n");
  10495. return FALSE;
  10496. }
  10497. return TRUE;
  10498. }
  10499. int ftpDownLoadFile(char *location, char *user, char *password, int port, char *path, char *filename,char *url)
  10500. {
  10501. char rmFileCmd[100]={0};
  10502. char FilePath[100]={0};
  10503. char ftpbuf[200];
  10504. int systemresult;
  10505. //char temp[100];
  10506. #if 0
  10507. struct hostent* server;
  10508. char *IPbuffer;
  10509. server = gethostbyname(location);
  10510. // To convert an Internet network
  10511. // address into ASCII string
  10512. IPbuffer = inet_ntoa(*((struct in_addr*)
  10513. server->h_addr_list[0]));
  10514. #endif
  10515. sprintf(FilePath,"../mnt/%s",filename);
  10516. if((access(FilePath,F_OK))!=-1)
  10517. {
  10518. DEBUG_INFO("filename=%s exist.\n",FilePath);
  10519. sprintf(rmFileCmd,"rm -f %s",FilePath);
  10520. system(rmFileCmd);
  10521. }
  10522. memset(ftpbuf, 0, sizeof(ftpbuf));
  10523. sprintf(ftpbuf, "wget --tries=3 -O ../mnt/%s -c %s",filename, url);
  10524. //sprintf(ftpbuf, "ftpget -u %s -p %s %s -P %d %s %s%s",user,password,IPbuffer,port/*21*/,filename,path,filename); --- remove temporally
  10525. DEBUG_INFO("ftpbuf=%s\n",ftpbuf);
  10526. //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
  10527. systemresult = system(ftpbuf);
  10528. DEBUG_INFO("systemresult=%d\n",systemresult);
  10529. if(systemresult != 0)
  10530. {
  10531. printf("ftpget error!\n");
  10532. return FALSE;
  10533. }
  10534. return TRUE;
  10535. }
  10536. int ftpFile(char *location, char *user, char *password, int port, char *path, char *fnamePlusPath,char *filename)
  10537. {
  10538. struct hostent* server;
  10539. char *IPbuffer;
  10540. char ftpbuf[200];
  10541. int systemresult;
  10542. // To retrieve host information
  10543. server = gethostbyname(location);
  10544. // To convert an Internet network
  10545. // address into ASCII string
  10546. IPbuffer = inet_ntoa(*((struct in_addr*)
  10547. server->h_addr_list[0]));
  10548. memset(ftpbuf, 0, sizeof(ftpbuf));
  10549. /* format : ftpput -u username -p passwd IP target source*/
  10550. sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,port/*21*/,path,filename,fnamePlusPath);
  10551. DEBUG_INFO("ftpbuf=%s\n",ftpbuf);
  10552. //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
  10553. systemresult = system(ftpbuf);
  10554. DEBUG_INFO("systemresult=%d\n",systemresult);
  10555. if(systemresult != 0)
  10556. {
  10557. DEBUG_INFO("ftpput error!\n");
  10558. return FALSE;
  10559. }
  10560. return TRUE;
  10561. }
  10562. int SettingChargingRecord(int target, int transactionId)
  10563. {
  10564. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  10565. {
  10566. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  10567. {
  10568. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == target)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING))
  10569. {
  10570. addBuff(target, transactionId, 0);
  10571. return TRUE;
  10572. }
  10573. }
  10574. for (int index = 0; index < CCS_QUANTITY; index++)
  10575. {
  10576. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == target)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING))
  10577. {
  10578. addBuff(target, transactionId, 0);
  10579. return TRUE;
  10580. }
  10581. }
  10582. for (int index = 0; index < GB_QUANTITY; index++)
  10583. {
  10584. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == target)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING))
  10585. {
  10586. addBuff(target, transactionId, 0);
  10587. return TRUE;
  10588. }
  10589. }
  10590. }
  10591. else
  10592. {
  10593. for (int index = 0; index < AC_QUANTITY; index++)
  10594. {
  10595. if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == target)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING))
  10596. {
  10597. addBuff(target, transactionId, 0);
  10598. return TRUE;
  10599. }
  10600. }
  10601. }
  10602. return FALSE;
  10603. }
  10604. int addBuff(int gun_idx, int user_id, int cmd_sn)
  10605. {
  10606. int isSuccess = FALSE;
  10607. //char *query = NULL;
  10608. sqlite3_stmt *stmt;
  10609. int rc; // return code
  10610. char str[20];
  10611. sprintf(str,"%d",user_id);
  10612. 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 */
  10613. sqlite3_bind_text(stmt, 1, str, -1, SQLITE_STATIC); /* 2 */
  10614. rc = sqlite3_step(stmt); /* 3 */
  10615. if (rc != SQLITE_DONE) {
  10616. printf("ERROR inserting data: %s\n", sqlite3_errmsg(db));
  10617. goto out;
  10618. }
  10619. sqlite3_finalize(stmt);
  10620. // free(query);
  10621. out:
  10622. //----------------------
  10623. // close SQLite database
  10624. //----------------------
  10625. sqlite3_close(db);
  10626. printf("database closed.\n");
  10627. return isSuccess;
  10628. }
  10629. /**
  10630. * Place the contents of the specified file into a memory buffer
  10631. *
  10632. * @param[in] filename The path and name of the file to read
  10633. * @param[out] filebuffer A pointer to the contents in memory
  10634. * @return status 0 success, 1 on failure
  10635. */
  10636. int get_file_contents(const char* filename, char** outbuffer) {
  10637. FILE* file = NULL;
  10638. long filesize;
  10639. const int blocksize = 1;
  10640. size_t readsize;
  10641. char* filebuffer;
  10642. // Open the file
  10643. file = fopen(filename, "r");
  10644. if (NULL == file)
  10645. {
  10646. printf("'%s' not opened\n", filename);
  10647. exit(EXIT_FAILURE);
  10648. }
  10649. // Determine the file size
  10650. fseek(file, 0, SEEK_END);
  10651. filesize = ftell(file);
  10652. rewind (file);
  10653. // Allocate memory for the file contents
  10654. filebuffer = (char*) malloc(sizeof(char) * filesize);
  10655. *outbuffer = filebuffer;
  10656. if (filebuffer == NULL)
  10657. {
  10658. fputs ("malloc out-of-memory", stderr);
  10659. exit(EXIT_FAILURE);
  10660. }
  10661. // Read in the file
  10662. readsize = fread(filebuffer, blocksize, filesize, file);
  10663. if (readsize != filesize)
  10664. {
  10665. fputs ("didn't read file completely",stderr);
  10666. exit(EXIT_FAILURE);
  10667. }
  10668. // Clean exit
  10669. fclose(file);
  10670. return EXIT_SUCCESS;
  10671. }
  10672. static int selectSqlCount = 0;
  10673. static int callback(void *data, int argc, char **argv, char **azColName){
  10674. int i;
  10675. printf("%s: ", (const char*)data);
  10676. selectSqlCount = argc;
  10677. for(i = 0; i<argc; i++){
  10678. printf("%s = %s\n", azColName[i], argv[i] ? argv[i] : "NULL");
  10679. }
  10680. printf("\n");
  10681. return 0;
  10682. }
  10683. static int versioncallback(void *data, int argc, char **argv, char **azColName){
  10684. //int i;
  10685. //printf("%s:\n", (const char*)data);
  10686. localversion = argv[5] ? atoi(argv[5]) : 0;
  10687. printf("localversion=%d\n", localversion);
  10688. return 0;
  10689. }
  10690. static int IdTagcallback(void *data, int argc, char **argv, char **azColName){
  10691. //int i;
  10692. //printf("%s:\n", (const char*)data);
  10693. //idTag
  10694. sprintf(idTagAuthorization,"%s", argv[1] ? argv[1] : "NULL");
  10695. sprintf(idTagQuery.idTagstr,"%s", argv[1] ? argv[1] : "NULL");
  10696. //parentIdTag
  10697. sprintf(idTagQuery.parentIdTag,"%s", argv[2] ? argv[2] : "NULL");
  10698. //expir_date
  10699. sprintf(idTagQuery.expiryDate,"%s", argv[3] ? argv[3] : "NULL");
  10700. //status
  10701. sprintf(idTagQuery.idTagstatus,"%s", argv[4] ? argv[4] : "NULL");
  10702. //version
  10703. idTagQuery.listVersionInt = atoi(argv[5]);
  10704. DEBUG_INFO("IdTag=%s\n", idTagAuthorization);
  10705. return 0;
  10706. }
  10707. static int deleteIdTagcallback(void *data, int argc, char **argv, char **azColName){
  10708. int i;
  10709. //printf("%s:\n", (const char*)data);
  10710. #if 1
  10711. for(i=0; i<argc; i++){
  10712. DEBUG_INFO("%s = %s", azColName[i], argv[i] ? argv[i] : "NULL");
  10713. }
  10714. //printf("");
  10715. #endif
  10716. // localversion = argv[5] ? atoi(argv[5]) : 0;
  10717. // printf("localversion=%d\n", localversion);
  10718. return 0;
  10719. }
  10720. /** sqlite3_exec的回调。
  10721. *
  10722. * 向控制台打印查询的结果。
  10723. *
  10724. * @param in data 传递给回调函数的数据。
  10725. * @param in n_columns sqlite3_exec执行结果集中列的数量。
  10726. * @param in col_values sqlite3_exec执行结果集中每一列的数据。
  10727. * @param in col_names sqlite3_exec执行结果集中每一列的名称。
  10728. * @return 状态码。
  10729. */
  10730. int sqlite3_exec_callback(void *data, int n_columns, char **col_values, char **col_names)
  10731. {
  10732. for (int i = 0; i < n_columns; i++)
  10733. {
  10734. DEBUG_INFO("%s/t", col_values[i]);
  10735. }
  10736. DEBUG_INFO("/n");
  10737. return 0;
  10738. }
  10739. void OCPP_getListVerion()
  10740. {
  10741. int rc = 0;
  10742. // const char* data = "Callback function called";
  10743. char sql[100];
  10744. char zErrMsg[100];
  10745. memset(sql, 0, 100);
  10746. memset(zErrMsg, 0, 100);
  10747. strcpy(sql, "select * from ocpp_auth_local order by idx desc");
  10748. /* Execute SQL statement */
  10749. rc = sqlite3_exec(db, sql, versioncallback, 0, (char **)&zErrMsg);
  10750. DEBUG_INFO("rc=%d\n",rc);
  10751. if( rc != SQLITE_OK ){
  10752. DEBUG_INFO("SQL error: %s", zErrMsg);
  10753. //sqlite3_free(zErrMsg);
  10754. }else{
  10755. DEBUG_INFO("Operation done successfully");
  10756. }
  10757. }
  10758. void OCPP_getIdTag(char *idTag)
  10759. {
  10760. int rc = 0;
  10761. // const char* data = "Callback function called";
  10762. char sql[100];
  10763. char zErrMsg[100];
  10764. memset(sql, 0, 100);
  10765. memset(zErrMsg, 0, 100);
  10766. memset(idTagAuthorization, 0, sizeof(idTagAuthorization));
  10767. memset(&idTagQuery, 0, sizeof(idTagQuery));
  10768. sprintf(sql,"select * from ocpp_auth_local where idtag='%s'", idTag);
  10769. /* Execute SQL statement */
  10770. rc = sqlite3_exec(db, sql, IdTagcallback, 0, (char **)&zErrMsg);
  10771. if( rc != SQLITE_OK ){
  10772. DEBUG_INFO("SQL error: %s", zErrMsg);
  10773. //sqlite3_free(zErrMsg);
  10774. }else{
  10775. printf("Operation done successfully");
  10776. }
  10777. //return ver;
  10778. }
  10779. void OCPP_get_TableAuthlocalAllData(void)
  10780. {
  10781. int rc = 0;
  10782. // const char* data = "Callback function called";
  10783. char sql[100];
  10784. char zErrMsg[100];
  10785. memset(sql, 0, 100);
  10786. memset(zErrMsg, 0, 100);
  10787. sprintf(sql,"select * from ocpp_auth_local ");
  10788. /* Execute SQL statement */
  10789. rc = sqlite3_exec(db, sql, &sqlite3_exec_callback, 0,(char **)&zErrMsg);
  10790. // rc = sqlite3_exec(db, sql, IdTagcallback, 0, &zErrMsg);
  10791. if( rc != SQLITE_OK ){
  10792. DEBUG_INFO("SQL error: %s", zErrMsg);
  10793. //sqlite3_free(zErrMsg);
  10794. }else{
  10795. DEBUG_INFO("Operation done successfully");
  10796. }
  10797. //return ver;
  10798. }
  10799. int OCPP_cleanLocalList()
  10800. {
  10801. char * sqlcleanLocalList = "delete from ocpp_auth_local";
  10802. char *errMsg = 0;
  10803. int rc =sqlite3_exec(db, sqlcleanLocalList, 0, 0, &errMsg);
  10804. if (SQLITE_OK != rc)
  10805. {
  10806. DEBUG_INFO("%s\n",errMsg);
  10807. return FALSE;
  10808. }
  10809. else
  10810. {
  10811. DEBUG_INFO("delete ocpp_auth_local table successfully\n");
  10812. }
  10813. return TRUE;
  10814. }
  10815. int OCPP_addLocalList_1(int version, char *idTag, char *parentTage, char *expiryDate, char *status)
  10816. {
  10817. int isSuccess = FALSE;
  10818. int ret = 0;
  10819. //const char* data = "Callback function called";
  10820. char sql[200];
  10821. char zErrMsg[100];
  10822. memset(sql, 0, 200);
  10823. memset(zErrMsg, 0, 100);
  10824. 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);
  10825. //* Execute SQL statement */
  10826. //zErrMsg = 0;
  10827. ret = sqlite3_exec(db, sql, callback, 0, (char **)&zErrMsg);
  10828. if( ret != SQLITE_OK ){
  10829. DEBUG_INFO("SQL error: %s\n", zErrMsg);
  10830. // free(zErrMsg);
  10831. // free(sql);
  10832. return isSuccess;
  10833. }
  10834. DEBUG_INFO("successfully Insert records created\n");
  10835. isSuccess = TRUE;
  10836. return isSuccess;
  10837. }
  10838. void OCPP_deleteIdTag(char *idTag)
  10839. {
  10840. //int ver = 0;
  10841. //int isSuccess = FALSE;
  10842. int rc = 0;
  10843. char sql[100];
  10844. char zErrMsg[100];
  10845. memset(sql, 0, 100);
  10846. memset(zErrMsg, 0, 100);
  10847. sprintf(sql,"DELETE from ocpp_auth_local where idtag='%s'; SELECT * from ocpp_auth_local;", idTag);
  10848. //* Execute SQL statement */
  10849. rc = sqlite3_exec(db, sql, deleteIdTagcallback, 0,(char **)&zErrMsg);
  10850. if( rc != SQLITE_OK ){
  10851. DEBUG_INFO("SQL error: %s", zErrMsg);
  10852. //sqlite3_free(zErrMsg);
  10853. }else{
  10854. DEBUG_INFO("Operation done successfully");
  10855. }
  10856. }
  10857. int OCPP_addLocalList(int version, char *idTag, char *parentTage, char *expiryDate, char *status)
  10858. {
  10859. int isSuccess = FALSE;
  10860. int ret = 0;
  10861. const char* data = "Callback function called";
  10862. char sql[200];
  10863. char zErrMsg[100];
  10864. memset(sql, 0, 200);
  10865. memset(zErrMsg, 0, 100);
  10866. //* selectFromTable */
  10867. // sql = select * from ocpp_auth_local where starring='Jodie Foster';
  10868. sprintf(sql,"select * from ocpp_auth_local where idtag='%s'", idTag);
  10869. //* Execute SQL statement */
  10870. selectSqlCount = 0;
  10871. ret = sqlite3_exec(db, sql, callback, (void*)data,(char **)&zErrMsg);
  10872. if( ret != SQLITE_OK ){
  10873. printf("Error SQL: %s\n", zErrMsg);
  10874. }
  10875. printf("successfully select operation done\n");
  10876. memset(sql, 0, 200);
  10877. memset(zErrMsg, 0, 100);
  10878. if(selectSqlCount == 0)
  10879. {
  10880. //Insert
  10881. //sql = "INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) " "VALUES (1, ?�Paul?? 32, ?�California?? 20000.00 ); ";
  10882. 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);
  10883. DEBUG_INFO("sql:%s\n", sql);
  10884. //* Execute SQL statement */
  10885. //zErrMsg = 0;
  10886. ret = sqlite3_exec(db, sql, callback, 0,(char **)&zErrMsg);
  10887. if( ret != SQLITE_OK ){
  10888. printf("SQL error: %s\n", zErrMsg);
  10889. return isSuccess;
  10890. }
  10891. DEBUG_INFO("successfully Insert records created\n");
  10892. isSuccess = TRUE;
  10893. }
  10894. else
  10895. {
  10896. //Update
  10897. //* Create merged SQL statement */
  10898. 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);
  10899. /* Execute SQL statement */
  10900. ret = sqlite3_exec(db, sql, callback, (void*)data,(char **)&zErrMsg);
  10901. if( ret != SQLITE_OK ){
  10902. printf("SQL error: %s\n", zErrMsg);
  10903. //sqlite3_free(zErrMsg);
  10904. //sqlite3_free(sql);
  10905. return isSuccess;
  10906. }
  10907. DEBUG_INFO("Successfully operation done \n");
  10908. isSuccess = TRUE;
  10909. }
  10910. return isSuccess;
  10911. }
  10912. char *GetOcppServerURL()
  10913. {
  10914. memset(OcppProtocol, 0, sizeof(OcppProtocol));
  10915. memset(OcppHost, 0, sizeof(OcppHost));
  10916. memset(OcppTempPath, 0, sizeof(OcppTempPath));
  10917. if((ShmSysConfigAndInfo->SysConfig.OcppServerURL != NULL) && (strcmp((const char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL,"") != 0) )
  10918. {
  10919. DEBUG_INFO("ShmSysConfigAndInfo->SysConfig.OcppServerURL =%s\n",ShmSysConfigAndInfo->SysConfig.OcppServerURL);
  10920. sscanf((const char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL,
  10921. "%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
  10922. OcppProtocol, OcppHost, &OcppPort, OcppTempPath);
  10923. // DEBUG_INFO("OcppProtocol =%s\n",OcppProtocol);
  10924. // DEBUG_INFO("OcppHost =%s\n",OcppHost);
  10925. // DEBUG_INFO("OcppPort =%d\n",OcppPort);
  10926. // DEBUG_INFO("OcppTempPath =%s\n",OcppTempPath);
  10927. goto End;
  10928. }
  10929. else if((ShmOCPP16Data->OcppServerURL != NULL) && (strcmp((const char *)ShmOCPP16Data->OcppServerURL,"") != 0))
  10930. {
  10931. DEBUG_INFO("ShmOCPP16Data->OcppServerURL =%s\n",ShmOCPP16Data->OcppServerURL);
  10932. sscanf((const char *)ShmOCPP16Data->OcppServerURL,
  10933. "%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
  10934. OcppProtocol, OcppHost, &OcppPort, OcppTempPath);
  10935. // DEBUG_INFO("OcppProtocol =%s\n",OcppProtocol);
  10936. // DEBUG_INFO("OcppHost =%s\n",OcppHost);
  10937. // DEBUG_INFO("OcppPort =%d\n",OcppPort);
  10938. // DEBUG_INFO("OcppTempPath =%s\n",OcppTempPath);
  10939. goto End;
  10940. }
  10941. else
  10942. {
  10943. strcpy(OcppHost,"");
  10944. }
  10945. End:
  10946. return OcppHost;
  10947. }
  10948. char *GetOcppPath()
  10949. {
  10950. if((ShmSysConfigAndInfo->SysConfig.ChargeBoxId != NULL) && (strcmp((const char *)ShmSysConfigAndInfo->SysConfig.ChargeBoxId,"") != 0) )
  10951. {
  10952. if(OcppTempPath == NULL)
  10953. {
  10954. sprintf(OcppPath,"/%s",ShmSysConfigAndInfo->SysConfig.ChargeBoxId);
  10955. }
  10956. else
  10957. {
  10958. sprintf(OcppPath,"/%s%s",OcppTempPath,ShmSysConfigAndInfo->SysConfig.ChargeBoxId);
  10959. }
  10960. goto End;
  10961. }
  10962. else if((ShmOCPP16Data->ChargeBoxId != NULL) && (strcmp((const char *)ShmOCPP16Data->ChargeBoxId,"") != 0))
  10963. {
  10964. if(OcppTempPath == NULL)
  10965. {
  10966. sprintf(OcppPath,"/%s",ShmOCPP16Data->ChargeBoxId);
  10967. }
  10968. else
  10969. {
  10970. sprintf(OcppPath,"/%s%s",OcppTempPath,ShmOCPP16Data->ChargeBoxId);
  10971. }
  10972. goto End;
  10973. }
  10974. else
  10975. {
  10976. strcpy(OcppHost,"");
  10977. }
  10978. End:
  10979. DEBUG_INFO("OcppPath=%s\n",OcppPath);
  10980. return OcppPath;
  10981. }
  10982. int GetOcppPort()
  10983. {
  10984. return OcppPort;
  10985. }
  10986. int GetOcppConnStatus(void)
  10987. {
  10988. return ShmOCPP16Data->OcppConnStatus;
  10989. }
  10990. void SetOcppConnStatus(uint8_t status)
  10991. {
  10992. ShmOCPP16Data->OcppConnStatus = status;
  10993. ShmSysConfigAndInfo->SysInfo.OcppConnStatus = status;
  10994. if(status == FALSE)
  10995. {
  10996. if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')
  10997. {
  10998. SystemInitial = CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY;
  10999. }
  11000. else
  11001. {
  11002. SystemInitial = AC_QUANTITY;
  11003. }
  11004. }
  11005. }
  11006. int GetHeartBeatWithNOResponse(void)
  11007. {
  11008. return HeartBeatWithNOResponse;
  11009. }
  11010. void SetHeartBeatWithNOResponse(void)
  11011. {
  11012. HeartBeatWithNOResponse = 0;
  11013. }
  11014. int InternetDisconnect(void)
  11015. {
  11016. //DEBUG_INFO("ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectVia4Gi=%d\n",ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectVia4Gi);
  11017. //DEBUG_INFO("ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaEthernet=%d\n",ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaEthernet);
  11018. //DEBUG_INFO("ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=%d\n",ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi);
  11019. return (ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectVia4Gi && ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaEthernet && ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi );
  11020. }
  11021. #if 0
  11022. void Send(struct json_object *message)
  11023. {
  11024. printf("Send -1 \n");
  11025. printf("message=%s\n",json_object_to_json_string(message));
  11026. LWS_Send(json_object_to_json_string(message));
  11027. }
  11028. #endif
  11029. void LWS_Send(char * str)
  11030. {
  11031. #if 1
  11032. //=====================================================
  11033. // Check InternetConn 0: disconnected, 1: connected
  11034. //====================================================
  11035. if(ShmSysConfigAndInfo->SysInfo.InternetConn == 0)
  11036. {
  11037. DEBUG_INFO("\n offline now !!!\n");
  11038. return;
  11039. }
  11040. #endif
  11041. pthread_mutex_lock(&lock);
  11042. memset(SendBuffer,0,SendBufLen);
  11043. sprintf((char *)SendBuffer, "%s", str);
  11044. pthread_mutex_unlock(&lock);
  11045. lws_callback_on_writable(wsi_client);
  11046. lws_service(context, 10000);//timeout_ms
  11047. //usleep(10000); // 等�??��?微�?
  11048. //DEBUG_INFO("Send message end\n");
  11049. }