MessageHandler.c 429 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490
  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 "./json-c/JsonParser.h"
  21. #include "hashmap.h"
  22. #include "ShareMemory.h"
  23. #include "TransactionQueue.h"
  24. #include "SystemLogMessage.h"
  25. #include "../../Projects/define.h"
  26. #include "ShareMemory.h"
  27. #include "SystemLogMessage.h"
  28. //#include "config.h"
  29. #include <sys/socket.h>
  30. #include <netinet/in.h>
  31. #include <stdlib.h>
  32. /*for sendfile()*/
  33. #include <sys/sendfile.h>
  34. /*for O_RDONLY*/
  35. #include <fcntl.h>
  36. #include "sqlite3.h"
  37. #include <arpa/inet.h>
  38. //#define _GNU_SOURCE
  39. #include <time.h>
  40. #include "MessageHandler.h"
  41. #include <assert.h>
  42. #include <pthread.h>
  43. #include <mcheck.h>
  44. #define PASS 1
  45. #define FAIL -1
  46. #define FALSE 0
  47. #define TRUE 1 // Option 1
  48. //ChargePointMaxProfile
  49. #define ChargePointMaxProfile_JSON "../Storage/OCPP/ChargePointMaxProfile.json"
  50. //TxDefaultProfile
  51. #define TxDefaultProfile_0_JSON "../Storage/OCPP/TxDefaultProfile_0.json"
  52. #define TxDefaultProfile_1_JSON "../Storage/OCPP/TxDefaultProfile_1.json"
  53. #define TxDefaultProfile_2_JSON "../Storage/OCPP/TxDefaultProfile_2.json"
  54. //TxProfile
  55. #define TxProfile_1_JSON "../Storage/OCPP/TxProfile_1.json"
  56. #define TxProfile_2_JSON "../Storage/OCPP/TxProfile_2.json"
  57. #define ChargingProfile_0_JSON "../Storage/OCPP/chargingprofile_0.json"
  58. #define ChargingProfile_1_JSON "../Storage/OCPP/chargingprofile_1.json"
  59. #define ChargingProfile_2_JSON "../Storage/OCPP/chargingprofile_2.json"
  60. #define AuthorizationCache_JSON "../Storage/OCPP/AuthorizationCache.json"
  61. #define LocalAuthorizationList_JSON "../Storage/OCPP/LocalAuthorizationList.json"
  62. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  63. struct StatusCodeData *ShmStatusCodeData;
  64. struct PsuData *ShmPsuData ;
  65. struct OCPP16Data *ShmOCPP16Data;
  66. // define Macro
  67. #define SystemLogMessage
  68. // OCPP Message Type
  69. #define MESSAGE_TYPE_CALL 2
  70. #define MESSAGE_TYPE_CALLRESULT 3
  71. #define MESSAGE_TYPE_CALLERROR 4
  72. //
  73. #define server_cycle_Status 120
  74. #define MACROSTR(k) #k
  75. //ConfigurationMaxKeys
  76. #define GetConfigurationMaxKeysNUM 43
  77. //char guid[37];
  78. pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
  79. char queuedata[2000]={0};
  80. //===============================
  81. // Configuration: unknownkey
  82. //===============================
  83. static char unknownkey[10][20]={0};
  84. static int UnknownKeynum = 0;
  85. //===============================
  86. // Gun Total Numbers
  87. //===============================
  88. //#define gunTotalNumber (strstr(ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL) ? (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY): AC_QUANTITY
  89. static int gunTotalNumber=0;
  90. static int localversion=0;
  91. static char idTagAuthorization[32]={0};
  92. char OcppPath[160]={};
  93. char OcppProtocol[10]={0},OcppHost[50]={0}, OcppTempPath[50]={0};
  94. int OcppPort=0;
  95. int server_sign = FALSE;
  96. int server_pending = FALSE;
  97. int authenrequest = FALSE;
  98. int PRE_SYS_MODE[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
  99. int BootNotificationInterval = 0;
  100. static int SystemInitial = CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY; // System Boot UP
  101. int authorizeRetryTimes = 0; //number of Retry times
  102. int isUpdateRequest = FALSE;
  103. int statusModeChage[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY] = {FALSE};
  104. static int HeartBeatWaitTime = 10;
  105. static int GunStatusInterval = 10;
  106. static int FirstHeartBeat = 0;
  107. static int FirmwareStatusNotificationStatus = 3; // Idle
  108. static int DiagnosticsStatusNotificationStatus = 0; // Idle
  109. int TransactionMessageAttemptsValue = 0;
  110. int TransactionMessageRetryIntervalValue = 0;
  111. static struct OCPPAuthLocalElemet
  112. {
  113. int listVersionInt;
  114. char idTagstr[20];
  115. char parentIdTag[20];
  116. char expiryDate[30];
  117. char idTagstatus[16];
  118. }idTagQuery;
  119. extern struct lws *wsi_client;
  120. extern struct lws_context *context;
  121. #if 0
  122. extern unsigned char *SendBuffer;
  123. #endif
  124. extern unsigned char SendBuffer[4096];
  125. extern int SendBufLen;
  126. //extern map_t hashMap;
  127. //extern data_struct_t* mapItem; --- remove for temporally
  128. //extern data_struct_t mapItem[0];
  129. extern char *random_uuid( char buf[37] );
  130. extern void split(char **arr, char *str, const char *del);
  131. extern pthread_mutex_t mutex1;
  132. extern struct Charger_Info Charger;
  133. extern sqlite3 *db;
  134. int TransactionMessageAttemptsGet(void);
  135. int TransactionMessageRetryIntervalGet(void);
  136. int GetOcppConnStatus(void);
  137. int updateSetting(char *key, char *value);
  138. int setKeyValue(char *key, char *value);
  139. void OCPP_get_TableAuthlocalAllData(void);
  140. void processUnkownKey(void);
  141. //static char *querysql = "SELECT * FROM ocpp_auth_local;";
  142. struct ClientTime
  143. {
  144. unsigned int Heartbeat;
  145. unsigned int StatusNotification[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
  146. unsigned int StartTransaction;
  147. unsigned int StopTransaction;
  148. unsigned int MeterValues[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
  149. }clientTime;
  150. typedef union
  151. {
  152. //Operations Initiated by Central System
  153. unsigned char CsMsgValue[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  154. struct
  155. {
  156. //CsMsgValue[0]
  157. unsigned char StatusNotificationReq :1; //bit 0,
  158. unsigned char StatusNotificationConf :1; //bit 0,
  159. unsigned char :6; //bit 2~7
  160. }bits[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  161. }CpinitiateMsg;
  162. CpinitiateMsg cpinitateMsg;
  163. //==========================================
  164. // Init all Enumeration & Mapping String
  165. //==========================================
  166. /*ChargePointErrorCode*/
  167. typedef enum {
  168. ConnectorLockFailure,
  169. EVCommunicationError,
  170. GroundFailure,
  171. HighTemperature,
  172. InternalError,
  173. LocalListConflict,
  174. NoError,
  175. OtherError,
  176. OverCurrentFailure,
  177. OverVoltage,
  178. PowerMeterFailure,
  179. PowerSwitchFailure,
  180. ReaderFailure,
  181. ResetFailure,
  182. UnderVoltage,
  183. WeakSignal
  184. } ChargePointErrorCode;
  185. #if 0
  186. static char *ChargePointErrorCodeStr[] = {
  187. MACROSTR(ConnectorLockFailure),
  188. MACROSTR(EVCommunicationError),
  189. MACROSTR(GroundFailure),
  190. MACROSTR(HighTemperature),
  191. MACROSTR(InternalError),
  192. MACROSTR(LocalListConflict),
  193. MACROSTR(NoError),
  194. MACROSTR(OtherError),
  195. MACROSTR(OverCurrentFailure),
  196. MACROSTR(OverVoltage),
  197. MACROSTR(PowerMeterFailure),
  198. MACROSTR(PowerSwitchFailure),
  199. MACROSTR(ReaderFailure),
  200. MACROSTR(ResetFailure),
  201. MACROSTR(UnderVoltage),
  202. MACROSTR(WeakSignal)
  203. };
  204. #endif
  205. /*ChargePointStatus*/
  206. typedef enum {
  207. Available =0,
  208. Preparing,
  209. Charging,
  210. SuspendedEVSE,
  211. SuspendedEV,
  212. Finishing,
  213. Reserved,
  214. Unavailable,
  215. Faulted
  216. } ChargePointStatus;
  217. static char * ChargePointStatusStr[] = {
  218. MACROSTR(Available),
  219. MACROSTR(Preparing),
  220. MACROSTR(Charging),
  221. MACROSTR(SuspendedEVSE),
  222. MACROSTR(SuspendedEV),
  223. MACROSTR(Finishing),
  224. MACROSTR(Reserved),
  225. MACROSTR(Unavailable),
  226. MACROSTR(Faulted)
  227. };
  228. /*AvailabilityType*/
  229. typedef enum {
  230. RegistrationStatus_Accepted,
  231. RegistrationStatus_Pending,
  232. RegistrationStatus_Rejected
  233. } RegistrationStatus;
  234. static char *RegistrationStatusStr[] = {
  235. MACROSTR(Accepted),
  236. MACROSTR(Pending),
  237. MACROSTR(Rejected)
  238. };
  239. /*AvailabilityType*/
  240. typedef enum {
  241. Inoperative,
  242. Operative
  243. } AvailabilityType;
  244. static char *AvailabilityTypeStr[] = {
  245. MACROSTR(Inoperative),
  246. MACROSTR(Operative)
  247. };
  248. /*AvailabilityStatus*/
  249. typedef enum {
  250. Accepted,
  251. Rejected,
  252. Scheduled
  253. } AvailabilityStatus;
  254. static char *AvailabilityStatusStr[] = {
  255. MACROSTR(Accepted),
  256. MACROSTR(Rejected),
  257. MACROSTR(Scheduled)
  258. };
  259. /*ConfigurationStatus*/
  260. typedef enum {
  261. ConfigurationStatus_Accepted,
  262. ConfigurationStatus_Rejected,
  263. RebootRequired,
  264. NotSupported
  265. } ConfigurationStatus;
  266. static char *ConfigurationStatusStr[] = {
  267. MACROSTR(Accepted),
  268. MACROSTR(Rejected),
  269. MACROSTR(RebootRequired),
  270. MACROSTR(NotSupported)
  271. };
  272. /*ClearCacheStatus*/
  273. typedef enum {
  274. ClearCacheStatus_Accepted,
  275. ClearCacheStatus_Rejected
  276. } ClearCacheStatus;
  277. static char *ClearCacheStatusStr[] = {
  278. MACROSTR(Accepted),
  279. MACROSTR(Rejected)
  280. };
  281. /*ChargingProfilePurposeType*/
  282. typedef enum {
  283. ChargePointMaxProfile,
  284. TxDefaultProfile,
  285. TxProfile
  286. } ChargingProfilePurposeType;
  287. static char *ChargingProfilePurposeTypeStr[] = {
  288. MACROSTR(ChargePointMaxProfile),
  289. MACROSTR(TxDefaultProfile),
  290. MACROSTR(TxProfile)
  291. };
  292. /*ChargingProfileStatus*/
  293. typedef enum {
  294. ChargingProfileStatus_Accepted,
  295. ChargingProfileStatus_Rejected,
  296. ChargingProfileStatus_NotSupported
  297. } ChargingProfileStatus;
  298. static char *ChargingProfileStatusStr[] = {
  299. MACROSTR(Accepted),
  300. MACROSTR(Rejected),
  301. MACROSTR(NotSupported)
  302. };
  303. /*ClearChargingProfileStatus*/
  304. typedef enum {
  305. ClearChargingProfileStatus_Accepted,
  306. ClearChargingProfileStatus_Unknown
  307. } ClearChargingProfileStatus;
  308. static char *ClearChargingProfileStatusStr[] = {
  309. MACROSTR(Accepted),
  310. MACROSTR(Unknown)
  311. };
  312. /*GetCompositeScheduleStatus*/
  313. typedef enum {
  314. GetCompositeScheduleStatus_Accepted,
  315. GetCompositeScheduleStatus_Rejected
  316. } GetCompositeScheduleStatus;
  317. static char *GetCompositeScheduleStatusStr[] = {
  318. MACROSTR(Accepted),
  319. MACROSTR(Rejected)
  320. };
  321. /*ChargingRateUnitType*/
  322. typedef enum {
  323. ChargingRateUnitType_W,
  324. ChargingRateUnitType_A
  325. } ChargingRateUnitType;
  326. /*AuthorizationStatus*/
  327. typedef enum {
  328. AuthorizationStatus_Accepted ,
  329. AuthorizationStatus_Blocked ,
  330. AuthorizationStatus_Expired ,
  331. AuthorizationStatus_Invalid ,
  332. AuthorizationStatus_ConcurrentTx
  333. } AuthorizationStatus;
  334. /*UpdateType*/
  335. typedef enum {
  336. Differential ,
  337. Full
  338. } UpdateType;
  339. static char *UpdateTypeStr[] = {
  340. MACROSTR(Differential),
  341. MACROSTR(Full)
  342. };
  343. /*UpdateStatus*/
  344. typedef enum {
  345. UpdateStatus_Accepted ,
  346. UpdateStatus_Failed ,
  347. UpdateStatus_NotSupported ,
  348. UpdateStatus_VersionMismatch
  349. } UpdateStatus;
  350. static char *UpdateStatusStr[] = {
  351. MACROSTR(Accepted),
  352. MACROSTR(Failed),
  353. MACROSTR(NotSupported),
  354. MACROSTR(VersionMismatch)
  355. };
  356. /*RemoteStartStopStatus*/
  357. typedef enum {
  358. RemoteStartStopStatus_Accepted,
  359. RemoteStartStopStatus_Rejected
  360. } RemoteStartStopStatus;
  361. static char *RemoteStartStopStatusStr[] = {
  362. MACROSTR(Accepted),
  363. MACROSTR(Rejected)
  364. };
  365. /*ReservationStatus*/
  366. typedef enum {
  367. ReservationStatus_Accepted,
  368. ReservationStatus_Faulted,
  369. ReservationStatus_Occupied,
  370. ReservationStatus_Rejected,
  371. ReservationStatus_Unavailable
  372. } ReservationStatus;
  373. static char *ReservationStatusStr[] = {
  374. MACROSTR(Accepted),
  375. MACROSTR(Faulted),
  376. MACROSTR(Occupied),
  377. MACROSTR(Rejected),
  378. MACROSTR(Unavailable)
  379. };
  380. /*ResetType*/
  381. typedef enum {
  382. Hard,
  383. Soft
  384. } ResetType;
  385. static char *ResetTypeStr[] = {
  386. MACROSTR(Hard),
  387. MACROSTR(Soft)
  388. };
  389. /*ResetStatus*/
  390. typedef enum {
  391. ResetStatus_Accepted,
  392. ResetStatus_Rejected
  393. } ResetStatus;
  394. static char *ResetStatusStr[] = {
  395. MACROSTR(Accepted),
  396. MACROSTR(Rejected)
  397. };
  398. /*DiagnosticsStatus*/
  399. typedef enum {
  400. DiagnosticsStatus_Idle,
  401. DiagnosticsStatus_Uploaded,
  402. DiagnosticsStatus_UploadFailed,
  403. DiagnosticsStatus_Uploading
  404. } DiagnosticsStatus;
  405. static char * DiagnosticsStatusStr[] = {
  406. MACROSTR(Idle),
  407. MACROSTR(Uploaded),
  408. MACROSTR(UploadFailed),
  409. MACROSTR(Uploading)
  410. };
  411. /*FirmwareStatus*/
  412. typedef enum {
  413. FirmwareStatus_Downloaded,
  414. FirmwareStatus_DownloadFailed,
  415. FirmwareStatus_Downloading,
  416. FirmwareStatus_Idle,
  417. FirmwareStatus_InstallationFailed,
  418. FirmwareStatus_Installing,
  419. FirmwareStatus_Installed
  420. } FirmwareStatus;
  421. static char * FirmwareStatusStr[] = {
  422. MACROSTR(Downloaded),
  423. MACROSTR(DownloadFailed),
  424. MACROSTR(Downloading),
  425. MACROSTR(Idle),
  426. MACROSTR(InstallationFailed),
  427. MACROSTR(Installing),
  428. MACROSTR(Installed)
  429. };
  430. /*MessageTrigger*/
  431. typedef enum {
  432. BootNotification,
  433. DiagnosticsStatusNotification,
  434. FirmwareStatusNotification,
  435. Heartbeat,
  436. MeterValues,
  437. StatusNotification
  438. } MessageTrigger;
  439. static char * MessageTriggerStr[] = {
  440. MACROSTR(BootNotification),
  441. MACROSTR(DiagnosticsStatusNotification),
  442. MACROSTR(FirmwareStatusNotification),
  443. MACROSTR(Heartbeat),
  444. MACROSTR(MeterValues),
  445. MACROSTR(StatusNotification)
  446. };
  447. /*TriggerMessageStatus*/
  448. typedef enum {
  449. TriggerMessageStatus_Accepted ,
  450. TriggerMessageStatus_Rejected ,
  451. TriggerMessageStatus_NotImplemented
  452. } TriggerMessageStatus;
  453. static char * TriggerMessageStatusStr[] = {
  454. MACROSTR(Accepted),
  455. MACROSTR(Rejected),
  456. MACROSTR(NotImplemented)
  457. };
  458. /*UnlockStatus*/
  459. typedef enum {
  460. Unlocked,
  461. UnlockFailed,
  462. UnlockStatus_NotSupported
  463. } UnlockStatus;
  464. static char * UnlockStatusStr[] = {
  465. MACROSTR(Unlocked),
  466. MACROSTR(UnlockFailed),
  467. MACROSTR(NotSupported)
  468. };
  469. /*StopTransactionReason*/
  470. typedef enum {
  471. EmergencyStop,
  472. EVDisconnected,
  473. HardReset,
  474. Local,
  475. Other,
  476. PowerLoss,
  477. Reboot,
  478. Remote,
  479. SoftReset,
  480. UnlockCommand,
  481. DeAuthorized
  482. } StopTransactionReason;
  483. static char * StopTransactionReasonStr[] = {
  484. MACROSTR(EmergencyStop),
  485. MACROSTR(EVDisconnected),
  486. MACROSTR(HardReset),
  487. MACROSTR(Local),
  488. MACROSTR(Other),
  489. MACROSTR(PowerLoss),
  490. MACROSTR(Reboot),
  491. MACROSTR(Remote),
  492. MACROSTR(SoftReset),
  493. MACROSTR(UnlockCommand),
  494. MACROSTR(DeAuthorized)
  495. };
  496. /*CancelReservationStatus*/
  497. typedef enum {
  498. CancelReservationStatus_Accepted,
  499. CancelReservationStatus_Rejected
  500. } CancelReservationStatus;
  501. static char * CancelReservationStatusStr[] = {
  502. MACROSTR(Accepted),
  503. MACROSTR(Rejected)
  504. };
  505. /*ReadingContext*/
  506. typedef enum {
  507. ReadingContext_Interruption_Begin,
  508. ReadingContext_Interruption_End,
  509. ReadingContext_Other,
  510. ReadingContext_Sample_Clock,
  511. ReadingContext_Sample_Periodic ,
  512. ReadingContext_Transaction_Begin ,
  513. ReadingContext_Transaction_End,
  514. ReadingContext_Trigger
  515. } ReadingContext;
  516. static char * ReadingContextStr[] = {
  517. MACROSTR(Interruption.Begin),
  518. MACROSTR(Interruption.End),
  519. MACROSTR(Other),
  520. MACROSTR(Sample.Clock),
  521. MACROSTR(Sample.Periodic),
  522. MACROSTR(Transaction.Begin),
  523. MACROSTR(Transaction.End),
  524. MACROSTR(Trigger)
  525. };
  526. /*ValueFormat*/
  527. typedef enum {
  528. Raw,
  529. SignedData
  530. } ValueFormat;
  531. static char * ValueFormatStr[] = {
  532. MACROSTR(Raw),
  533. MACROSTR(SignedData)
  534. };
  535. /*Measurand*/
  536. typedef enum {
  537. Current_Export ,
  538. Current_Import,
  539. Current_Offered,
  540. Energy_Active_Export_Register,
  541. Energy_Active_Import_Register,
  542. Energy_Reactive_Export_Register,
  543. Energy_Reactive_Import_Register,
  544. Energy_Active_Export_Interval,
  545. Energy_Active_Import_Interval,
  546. Energy_Reactive_Export_Interval,
  547. Energy_Reactive_Import_Interval,
  548. Frequency,
  549. Power_Active_Export ,
  550. Power_Active_Import,
  551. Power_Factor,
  552. Power_Offered,
  553. Power_Reactive_Export,
  554. Power_Reactive_Import,
  555. RPM,
  556. SoC,
  557. Temperature ,
  558. Voltage
  559. } Measurand;
  560. static char * MeasurandStr[] = {
  561. MACROSTR(Current.Export),
  562. MACROSTR(Current.Import),
  563. MACROSTR(Current.Offered),
  564. MACROSTR(Energy.Active.Export.Register),
  565. MACROSTR(Energy.Active.Import.Register),
  566. MACROSTR(Energy.Reactive.Export.Register),
  567. MACROSTR(Energy.Reactive.Import.Register),
  568. MACROSTR(Energy.Active.Export.Interval),
  569. MACROSTR(Energy.Active.Import.Interval),
  570. MACROSTR(Energy.Reactive.Export.Interval),
  571. MACROSTR(Energy.Reactive.Import.Interval),
  572. MACROSTR(Frequency),
  573. MACROSTR(Power.Active.Export),
  574. MACROSTR(Power.Active.Import),
  575. MACROSTR(Power.Factor),
  576. MACROSTR(Power.Offered),
  577. MACROSTR(Power.Reactive.ExportMACROSTR),
  578. MACROSTR(Power.Reactive.Import),
  579. MACROSTR(RPM),
  580. MACROSTR(SoC),
  581. MACROSTR(Temperature),
  582. MACROSTR(Voltage)
  583. };
  584. /*Location*/
  585. typedef enum {
  586. Location_Body,
  587. Location_Cable,
  588. Location_EV,
  589. Location_Inlet ,
  590. Location_Outlet
  591. } Location;
  592. static char * LocationStr[] = {
  593. MACROSTR(Body),
  594. MACROSTR(Cable),
  595. MACROSTR(EV),
  596. MACROSTR(Inlet),
  597. MACROSTR(Outlet)
  598. };
  599. /*Phase*/
  600. typedef enum {
  601. L1,
  602. L2,
  603. L3,
  604. N,
  605. L1_N,
  606. L2_N,
  607. L3_N,
  608. L1_L2,
  609. L2_L3,
  610. L3_L1
  611. } Phase;
  612. static char * PhaseStr[] = {
  613. MACROSTR(L1),
  614. MACROSTR(L2),
  615. MACROSTR(L3),
  616. MACROSTR(N),
  617. MACROSTR(L1-N),
  618. MACROSTR(L2-N),
  619. MACROSTR(L3-N),
  620. MACROSTR(L1-L2),
  621. MACROSTR(L2-L3),
  622. MACROSTR(L3-L1)
  623. };
  624. /*UnitOfMeasure*/
  625. typedef enum {
  626. UnitOfMeasure_Wh,
  627. UnitOfMeasure_kWh ,
  628. UnitOfMeasure_varh ,
  629. UnitOfMeasure_kvarh ,
  630. UnitOfMeasure_W ,
  631. UnitOfMeasure_kW ,
  632. UnitOfMeasure_VA ,
  633. UnitOfMeasure_kVA ,
  634. UnitOfMeasure_var ,
  635. UnitOfMeasure_kvar ,
  636. UnitOfMeasure_A ,
  637. UnitOfMeasure_V ,
  638. UnitOfMeasure_Celsius ,
  639. UnitOfMeasure_Fahrenheit ,
  640. UnitOfMeasure_K ,
  641. UnitOfMeasure_Percent
  642. } UnitOfMeasure;
  643. static char * UnitOfMeasureStr[] = {
  644. MACROSTR(Wh),
  645. MACROSTR(kWh),
  646. MACROSTR(varh),
  647. MACROSTR(kvarh),
  648. MACROSTR(W),
  649. MACROSTR(kW),
  650. MACROSTR(VA),
  651. MACROSTR(kVA),
  652. MACROSTR(var),
  653. MACROSTR(kvar),
  654. MACROSTR(A),
  655. MACROSTR(V),
  656. MACROSTR(Celsius),
  657. MACROSTR(Fahrenheit),
  658. MACROSTR(K),
  659. MACROSTR(Percent)
  660. };
  661. /*Configuration enum*/
  662. enum CoreProfile {
  663. AllowOfflineTxForUnknownId=0,
  664. AuthorizationCacheEnabled,
  665. AuthorizeRemoteTxRequests,
  666. BlinkRepeat,
  667. ClockAlignedDataInterval,
  668. ConnectionTimeOut,
  669. GetConfigurationMaxKeys,
  670. HeartbeatInterval,
  671. LightIntensity,
  672. LocalAuthorizeOffline,
  673. LocalPreAuthorize,
  674. MaxEnergyOnInvalidId,
  675. MeterValuesAlignedData,
  676. MeterValuesAlignedDataMaxLength,
  677. MeterValuesSampledData,
  678. MeterValuesSampledDataMaxLength,
  679. MeterValueSampleInterval,
  680. MinimumStatusDuration,
  681. NumberOfConnectors,
  682. ResetRetries,
  683. ConnectorPhaseRotation,
  684. ConnectorPhaseRotationMaxLength,
  685. StopTransactionOnEVSideDisconnect,
  686. StopTransactionOnInvalidId,
  687. StopTxnAlignedData,
  688. StopTxnAlignedDataMaxLength,
  689. StopTxnSampledData,
  690. StopTxnSampledDataMaxLength,
  691. SupportedFeatureProfiles,
  692. SupportedFeatureProfilesMaxLength,
  693. TransactionMessageAttempts,
  694. TransactionMessageRetryInterval,
  695. UnlockConnectorOnEVSideDisconnect,
  696. WebSocketPingInterval,
  697. _CoreProfile_CNT
  698. };
  699. enum LocalAuthListManagementProfile{
  700. LocalAuthListEnabled=0,
  701. LocalAuthListMaxLength,
  702. SendLocalListMaxLength,
  703. _LocalAuthListManagementProfile_CNT
  704. };
  705. enum ReservationProfile{
  706. ReserveConnectorZeroSupported
  707. };
  708. enum SmartChargingProfile{
  709. ChargeProfileMaxStackLevel,
  710. ChargingScheduleAllowedChargingRateUnit,
  711. ChargingScheduleMaxPeriods,
  712. ConnectorSwitch3to1PhaseSupported,
  713. MaxChargingProfilesInstalled
  714. };
  715. enum ChargerSystemStatus{
  716. ChargerSystemStatus_Booting,
  717. ChargerSystemStatus_Idle,
  718. ChargerSystemStatus_Authorizing,
  719. ChargerSystemStatus_Preparing,
  720. ChargerSystemStatus_Charging,
  721. ChargerSystemStatus_Terminating,
  722. ChargerSystemStatus_Alarm,
  723. ChargerSystemStatus_Fault
  724. };
  725. enum GetConfigurationKey {
  726. GetConfiguration_AllowOfflineTxForUnknownId=0,
  727. GetConfiguration_AuthorizationCacheEnabled,
  728. GetConfiguration_AuthorizeRemoteTxRequests,
  729. GetConfiguration_BlinkRepeat,
  730. GetConfiguration_ClockAlignedDataInterval,
  731. GetConfiguration_ConnectionTimeOut,
  732. GetConfiguration_GetConfigurationMaxKeys,
  733. GetConfiguration_HeartbeatInterval,
  734. GetConfiguration_LightIntensity,
  735. GetConfiguration_LocalAuthorizeOffline,
  736. GetConfiguration_LocalPreAuthorize,
  737. GetConfiguration_MaxEnergyOnInvalidId,
  738. GetConfiguration_MeterValuesAlignedData,
  739. GetConfiguration_MeterValuesAlignedDataMaxLength,
  740. GetConfiguration_MeterValuesSampledData,
  741. GetConfiguration_MeterValuesSampledDataMaxLength,
  742. GetConfiguration_MeterValueSampleInterval,
  743. GetConfiguration_MinimumStatusDuration,
  744. GetConfiguration_NumberOfConnectors,
  745. GetConfiguration_ResetRetries,
  746. GetConfiguration_ConnectorPhaseRotation,
  747. GetConfiguration_ConnectorPhaseRotationMaxLength,
  748. GetConfiguration_StopTransactionOnEVSideDisconnect,
  749. GetConfiguration_StopTransactionOnInvalidId,
  750. GetConfiguration_StopTxnAlignedData,
  751. GetConfiguration_StopTxnAlignedDataMaxLength,
  752. GetConfiguration_StopTxnSampledData,
  753. GetConfiguration_StopTxnSampledDataMaxLength,
  754. GetConfiguration_SupportedFeatureProfiles,
  755. GetConfiguration_SupportedFeatureProfilesMaxLength,
  756. GetConfiguration_TransactionMessageAttempts,
  757. GetConfiguration_TransactionMessageRetryInterval,
  758. GetConfiguration_UnlockConnectorOnEVSideDisconnect,
  759. GetConfiguration_WebSocketPingInterval,
  760. GetConfiguration_LocalAuthListEnabled,
  761. GetConfiguration_LocalAuthListMaxLength,
  762. GetConfiguration_SendLocalListMaxLength,
  763. GetConfiguration_ReserveConnectorZeroSupported,
  764. GetConfiguration_ChargeProfileMaxStackLevel,
  765. GetConfiguration_ChargingScheduleAllowedChargingRateUnit,
  766. GetConfiguration_ChargingScheduleMaxPeriods,
  767. GetConfiguration_ConnectorSwitch3to1PhaseSupported,
  768. GetConfiguration_MaxChargingProfilesInstalled,
  769. };
  770. //GetConfiguration Array
  771. struct StructConfigurationKeyItems staticKeyArray[GetConfigurationMaxKeysNUM]={0};
  772. struct StructConfigurationKey staticResponseConfigurationKeyArray[GetConfigurationMaxKeysNUM]={0};
  773. struct StructConfigurationKeyItems staticResponseUnknownKey[10]={0};
  774. struct StructLocalAuthorizationList staticLocalAuthorizationList[500]={0};
  775. struct StructChargingSchedulePeriod staticCHAdeMOChargingSchedulePeriod[10]={0};
  776. struct StructChargingSchedulePeriod staticCCSChargingSchedulePeriod[10]={0};
  777. struct StructChargingSchedulePeriod staticGBChargingSchedulePeriod[10]={0};
  778. struct StructChargingSchedulePeriod staticACChargingSchedulePeriod[10]={0};
  779. struct StructChargingSchedulePeriod staticCHAdeMOCompositeChargingSchedulePeriod[10]={0};
  780. struct StructChargingSchedulePeriod staticCCSCompositeChargingSchedulePeriod[10]={0};
  781. struct StructChargingSchedulePeriod staticGBCompositeChargingSchedulePeriod[10]={0};
  782. struct StructChargingSchedulePeriod staticACCompositeChargingSchedulePeriod[10]={0};
  783. struct StructChargingSchedulePeriod staticCHAdeMORemoteStartTransactionChargingSchedulePeriod[10]={0};
  784. struct StructChargingSchedulePeriod staticCCSRemoteStartTransactionChargingSchedulePeriod[10]={0};
  785. struct StructChargingSchedulePeriod staticGBRemoteStartTransactionChargingSchedulePeriod[10]={0};
  786. struct StructChargingSchedulePeriod staticACRemoteStartTransactionChargingSchedulePeriod[10]={0};
  787. //==========================================
  788. // Init all share memory
  789. //==========================================
  790. int InitShareMemory()
  791. {
  792. int result = PASS;
  793. int MeterSMId;
  794. //printf("1\n");
  795. //creat ShmSysConfigAndInfo
  796. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  797. {
  798. #ifdef SystemLogMessage
  799. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  800. #endif
  801. result = FAIL;
  802. }
  803. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  804. {
  805. #ifdef SystemLogMessage
  806. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n");
  807. #endif
  808. result = FAIL;
  809. }
  810. else
  811. {}
  812. //printf("2\n");
  813. //creat ShmStatusCodeData
  814. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  815. {
  816. #ifdef SystemLogMessage
  817. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  818. #endif
  819. result = FAIL;
  820. }
  821. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  822. {
  823. #ifdef SystemLogMessage
  824. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  825. #endif
  826. result = FAIL;
  827. }
  828. else
  829. {}
  830. //printf("3\n");
  831. //creat ShmPsuData
  832. if ((MeterSMId = shmget(ShmPsuKey, sizeof(struct PsuData), 0777)) < 0)
  833. {
  834. #ifdef SystemLogMessage
  835. DEBUG_ERROR("shmget ShmPsuData NG\n");
  836. #endif
  837. result = FAIL;
  838. }
  839. else if ((ShmPsuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  840. {
  841. #ifdef SystemLogMessage
  842. DEBUG_ERROR("shmat ShmPsuData NG\n");
  843. #endif
  844. result = FAIL;
  845. }
  846. else
  847. {}
  848. //creat ShmOCPP16Data
  849. if ((MeterSMId = shmget(ShmOcppModuleKey, sizeof(struct OCPP16Data), 0777)) < 0)
  850. {
  851. #ifdef SystemLogMessage
  852. DEBUG_ERROR("shmget ShmOCPP16Data NG");
  853. #endif
  854. result = FAIL;
  855. }
  856. else if ((ShmOCPP16Data = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  857. {
  858. #ifdef SystemLogMessage
  859. DEBUG_ERROR("shmat ShmOCPP16Data NG");
  860. #endif
  861. result = FAIL;
  862. }
  863. else
  864. {}
  865. /****************************** For TEST ************************************************/
  866. //inital settings
  867. gunTotalNumber = (strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL) ? (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY): AC_QUANTITY;
  868. memset(ShmOCPP16Data->StatusNotification,0,sizeof(struct StructStatusNotification)*gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/);
  869. for(int gun_index=0; gun_index < gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/; gun_index++ )
  870. {
  871. cpinitateMsg.bits[gun_index].StatusNotificationReq = 0;
  872. cpinitateMsg.bits[gun_index].StatusNotificationConf = 0;
  873. clientTime.MeterValues[gun_index] = time((time_t*)NULL);
  874. }
  875. // Charger PRE_SYS_MODE
  876. memset(PRE_SYS_MODE, 0, sizeof(PRE_SYS_MODE));
  877. memset( (void *)unknownkey, 0, sizeof(unknownkey)/*sizeof(char)*10*20*/ );
  878. clientTime.Heartbeat=time((time_t*)NULL);
  879. for(int gun_index=0;gun_index < gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/ ;gun_index++)
  880. {
  881. clientTime.StatusNotification[gun_index] = time((time_t*)NULL);
  882. clientTime.MeterValues[gun_index] = time((time_t*)NULL);
  883. strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode, "NoError");
  884. }
  885. //HeartBeatWaitTime = 10;
  886. ShmOCPP16Data->GetConfiguration.ResponseUnknownKey = NULL;
  887. ShmOCPP16Data->SendLocalList.LocalAuthorizationList = NULL;
  888. // GetConfiguration
  889. ShmOCPP16Data->GetConfiguration.Key = staticKeyArray;
  890. ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey = staticResponseConfigurationKeyArray;
  891. ShmOCPP16Data->GetConfiguration.ResponseUnknownKey = staticResponseUnknownKey;
  892. ShmOCPP16Data->SendLocalList.LocalAuthorizationList = staticLocalAuthorizationList;
  893. ShmOCPP16Data->OcppConnStatus = 1;
  894. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  895. {
  896. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod = staticCHAdeMOChargingSchedulePeriod;
  897. ShmOCPP16Data->SetChargingProfile[1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod = staticCCSChargingSchedulePeriod;
  898. ShmOCPP16Data->SetChargingProfile[2].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod = staticGBChargingSchedulePeriod;
  899. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod = staticCHAdeMOCompositeChargingSchedulePeriod;
  900. ShmOCPP16Data->GetCompositeSchedule[1].ResponseChargingSchedule.ChargingSchedulePeriod = staticCCSCompositeChargingSchedulePeriod;
  901. ShmOCPP16Data->GetCompositeSchedule[2].ResponseChargingSchedule.ChargingSchedulePeriod = staticGBCompositeChargingSchedulePeriod;
  902. ShmOCPP16Data->RemoteStartTransaction[0].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod = staticCHAdeMORemoteStartTransactionChargingSchedulePeriod;
  903. ShmOCPP16Data->RemoteStartTransaction[1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod = staticCCSRemoteStartTransactionChargingSchedulePeriod;
  904. ShmOCPP16Data->RemoteStartTransaction[2].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod = staticGBRemoteStartTransactionChargingSchedulePeriod;
  905. SystemInitial = CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY;
  906. DEBUG_INFO("DC ...\n");
  907. }
  908. else
  909. {
  910. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod = staticACChargingSchedulePeriod;
  911. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod = staticACCompositeChargingSchedulePeriod;
  912. ShmOCPP16Data->RemoteStartTransaction[0].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod = staticACRemoteStartTransactionChargingSchedulePeriod;
  913. SystemInitial = AC_QUANTITY;
  914. DEBUG_INFO("AC ...\n");
  915. DEBUG_INFO("gunTotalNumber=%d\n",gunTotalNumber);
  916. }
  917. //memset(unknownkey, 0, 10);
  918. return result;
  919. }
  920. int ProcessShareMemory()
  921. {
  922. if(InitShareMemory() == FAIL)
  923. {
  924. #ifdef SystemLogMessage
  925. DEBUG_ERROR("InitShareMemory NG\n");
  926. #endif
  927. if(ShmStatusCodeData!=NULL)
  928. {
  929. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=1;
  930. }
  931. sleep(5);
  932. return FAIL;
  933. }
  934. return PASS;
  935. }
  936. void CheckSystemValue(void)
  937. {
  938. printf("CheckSystemValue \n");
  939. int meterValueSend[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY]={0};
  940. int IdleModeCnt = 0;
  941. //===============================
  942. // send Heartbeat
  943. //===============================
  944. if((server_sign == TRUE) && (difftime(time((time_t*)NULL), clientTime.Heartbeat) >= HeartBeatWaitTime)/*((time((time_t*)NULL)-clientTime.Heartbeat)>= ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval)*/)
  945. {
  946. //parameter for test
  947. sendHeartbeatRequest(0);
  948. //==============================================
  949. // Reset Waiting Time
  950. //==============================================
  951. clientTime.Heartbeat=time((time_t*)NULL);
  952. }
  953. //=====================================================
  954. // Check InternetConn 0: disconnected, 1: connected
  955. //====================================================
  956. if(ShmSysConfigAndInfo->SysInfo.InternetConn == 0 )
  957. {
  958. ShmOCPP16Data->OcppConnStatus = 0;
  959. }
  960. else
  961. {
  962. ShmOCPP16Data->OcppConnStatus = 1;
  963. }
  964. //==============================================
  965. // Update firmware request
  966. //==============================================
  967. if(isUpdateRequest == TRUE )
  968. {
  969. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  970. {
  971. for(int gun_index=0;gun_index < (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY) ;gun_index++)
  972. {
  973. //check SystemStatus
  974. /*************************DC*******************************/
  975. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  976. {
  977. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 1)) //S_IDLE
  978. {
  979. IdleModeCnt = IdleModeCnt + 1;
  980. }
  981. }
  982. for (int index = 0; index < CCS_QUANTITY; index++)
  983. {
  984. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 1)) //S_IDLE
  985. {
  986. IdleModeCnt = IdleModeCnt + 1;
  987. }
  988. }
  989. for (int index = 0; index < GB_QUANTITY; index++)
  990. {
  991. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 1)) //S_IDLE
  992. {
  993. IdleModeCnt = IdleModeCnt + 1;
  994. }
  995. }
  996. }
  997. if(IdleModeCnt == (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY ))
  998. {
  999. //sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Installing]);
  1000. isUpdateRequest = FALSE;
  1001. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1; // trigger firmware upgrade
  1002. }
  1003. }
  1004. else
  1005. {
  1006. /*************************AC*******************************/
  1007. for (int index = 0; index < AC_QUANTITY; index++)
  1008. {
  1009. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 1) //S_IDLE
  1010. {
  1011. IdleModeCnt = IdleModeCnt + 1;
  1012. }
  1013. }
  1014. if(IdleModeCnt == AC_QUANTITY)
  1015. {
  1016. //sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Installing]);
  1017. isUpdateRequest = FALSE;
  1018. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1; // trigger firmware upgrade
  1019. }
  1020. }
  1021. }
  1022. DEBUG_INFO("\n gunTotalNumber=%d\n",gunTotalNumber);
  1023. for(int gun_index=0;gun_index < gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY )*/ ;gun_index++)
  1024. {
  1025. //===============================
  1026. // CSU Trigger Reset Conf
  1027. //===============================
  1028. if((server_sign == TRUE) &&(ShmOCPP16Data->MsMsg.bits.ResetConf == 1))
  1029. {
  1030. sendResetConfirmation((char *)ShmOCPP16Data->Reset.guid, (char *)ShmOCPP16Data->Reset.ResponseStatus);
  1031. if(strcmp((const char *)ShmOCPP16Data->Reset.Type, "Soft") == 0)
  1032. {
  1033. server_sign = FALSE;
  1034. }
  1035. }
  1036. //===============================
  1037. // CSU Trigger Authorize Request
  1038. //===============================
  1039. if((server_sign == TRUE) && (ShmOCPP16Data->SpMsg.bits.AuthorizeReq == 1)&&(authorizeRetryTimes < 3)/*authenrequest == FALSE*/)
  1040. {
  1041. if(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "TRUE") == 0)// [If AuthorizeRemoteTxRequests = true
  1042. {
  1043. sendAuthorizeRequest(0);
  1044. authorizeRetryTimes = authorizeRetryTimes + 1;
  1045. // authenrequest = TRUE
  1046. if(authorizeRetryTimes < 3)
  1047. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  1048. }
  1049. }
  1050. else if((server_sign == TRUE) && (ShmOCPP16Data->SpMsg.bits.AuthorizeReq == 1)&&(authorizeRetryTimes >= 3))
  1051. {
  1052. authorizeRetryTimes = 0;
  1053. ShmOCPP16Data->OcppConnStatus = 0; // ocpp offline
  1054. }
  1055. //==============================================
  1056. // Charger start transaction
  1057. //==============================================
  1058. if((server_sign == TRUE) && (ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq == 1))
  1059. {
  1060. sendStartTransactionRequest(gun_index);
  1061. ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq =0;
  1062. clientTime.StartTransaction = time((time_t*)NULL);
  1063. clientTime.MeterValues[gun_index] = time((time_t*)NULL);
  1064. }
  1065. //==============================================
  1066. // Charger stop transaction
  1067. //==============================================
  1068. if((server_sign == TRUE) && ((ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq == 1)))
  1069. {
  1070. sendStopTransactionRequest(gun_index);
  1071. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq =0;
  1072. clientTime.StopTransaction = time((time_t*)NULL);
  1073. }
  1074. //==============================================
  1075. // Charger status report
  1076. //==============================================
  1077. /* Check Mode Change */
  1078. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  1079. {
  1080. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1081. {
  1082. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  1083. {
  1084. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PreviousSystemStatus/*PRE_SYS_MODE[gun_index]*/ )
  1085. {
  1086. PRE_SYS_MODE[gun_index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus;
  1087. ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PreviousSystemStatus = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus;
  1088. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  1089. statusModeChage[gun_index] = TRUE;
  1090. }
  1091. }
  1092. }
  1093. for (int index = 0; index < CCS_QUANTITY; index++)
  1094. {
  1095. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  1096. {
  1097. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PreviousSystemStatus/*PRE_SYS_MODE[gun_index]*/ )
  1098. {
  1099. PRE_SYS_MODE[gun_index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus;
  1100. ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PreviousSystemStatus = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus;
  1101. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  1102. statusModeChage[gun_index] = TRUE;
  1103. }
  1104. }
  1105. }
  1106. for (int index = 0; index < GB_QUANTITY; index++)
  1107. {
  1108. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)/*&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '4')*/)
  1109. {
  1110. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PreviousSystemStatus/*PRE_SYS_MODE[gun_index]*/ )
  1111. {
  1112. PRE_SYS_MODE[gun_index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus;
  1113. ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PreviousSystemStatus = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus;
  1114. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  1115. statusModeChage[gun_index] = TRUE;
  1116. }
  1117. }
  1118. }
  1119. }
  1120. else //AC
  1121. {
  1122. for (int index = 0; index < AC_QUANTITY; index++)
  1123. {
  1124. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  1125. {
  1126. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PreviousSystemStatus/*PRE_SYS_MODE[gun_index]*/ )
  1127. {
  1128. PRE_SYS_MODE[gun_index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus;
  1129. ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PreviousSystemStatus = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus;
  1130. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  1131. statusModeChage[gun_index] = TRUE;
  1132. }
  1133. }
  1134. }// END OF FOR
  1135. }// END OF ELSE
  1136. if((SystemInitial != 0)||
  1137. ((server_sign == TRUE) && ((statusModeChage[gun_index] == TRUE) ||
  1138. ((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > (server_cycle_Status + (GunStatusInterval*gun_index)))
  1139. || ((cpinitateMsg.bits[gun_index].StatusNotificationReq == 1)&&((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > 30)))))
  1140. {
  1141. if(SystemInitial != 0)
  1142. SystemInitial = SystemInitial -1;
  1143. //GunStatusInterval= GunStatusInterval* gun_index;
  1144. sendStatusNotificationRequest(gun_index);
  1145. clientTime.StatusNotification[gun_index] = time((time_t*)NULL);
  1146. //cpinitateMsg.bits[gun_index].StatusNotificationReq = 0;
  1147. statusModeChage[gun_index] = FALSE;
  1148. //sleep(30); // sleep for 30 seconds
  1149. }
  1150. printf("ShmSysConfigAndInfo->SysInfo.AcChargingData[0].SystemStatus = %d \n",(int)(ShmSysConfigAndInfo->SysInfo.AcChargingData[0].SystemStatus));
  1151. // printf("ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].SystemStatus = %d \n",(int)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].SystemStatus));
  1152. //==============================================
  1153. // Meter report
  1154. //==============================================
  1155. if((server_sign == TRUE) && ((time((time_t*)NULL) - clientTime.MeterValues[gun_index])> (atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData)- 1 ) ) )
  1156. {
  1157. //check Transaction active
  1158. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  1159. {
  1160. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1161. {
  1162. // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  1163. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 8))
  1164. {
  1165. meterValueSend[gun_index] =1;
  1166. }
  1167. }
  1168. for (int index = 0; index < CCS_QUANTITY; index++)
  1169. {
  1170. // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  1171. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 8))
  1172. {
  1173. meterValueSend[gun_index] =1;
  1174. }
  1175. }
  1176. for (int index = 0; index < GB_QUANTITY; index++)
  1177. {
  1178. // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  1179. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8))
  1180. {
  1181. meterValueSend[gun_index] =1;
  1182. }
  1183. }
  1184. }
  1185. else
  1186. {
  1187. for (int index = 0; index < AC_QUANTITY; index++)
  1188. {
  1189. // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  1190. if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 8))
  1191. {
  1192. meterValueSend[gun_index] =1;
  1193. }
  1194. }
  1195. }//END OF ELSE
  1196. // sleep(1);
  1197. clientTime.MeterValues[gun_index] = time((time_t*)NULL);
  1198. if(meterValueSend[gun_index] == 1)
  1199. sendMeterValuesRequest(gun_index);
  1200. }
  1201. //==============================================
  1202. // Check Connector reserved
  1203. //==============================================
  1204. /*
  1205. enum _SYSTEM_STATUS
  1206. {
  1207. S_BOOTING = 0,
  1208. S_IDLE, =1
  1209. S_AUTHORIZING, =2
  1210. S_REASSIGN_CHECK, =3
  1211. S_REASSIGN, =4
  1212. S_PRECHARGE, =5
  1213. S_PREPARING_FOR_EV, =6
  1214. S_PREPARING_FOR_EVSE, =7
  1215. S_CHARGING, =8
  1216. S_TERMINATING, =9
  1217. S_COMPLETE, =10
  1218. S_ALARM, =11
  1219. S_FAULT =12
  1220. };
  1221. */
  1222. //===============================
  1223. // Check if Reserve is expired
  1224. //===============================
  1225. if((server_sign == TRUE) && (ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate[0] != 0) )
  1226. {
  1227. double diff_t;
  1228. struct tm tp;
  1229. // current time
  1230. time_t t = time(NULL);
  1231. // sprintf((char *)ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate, "%s", "2018-09-20T02:56:54.973Z");
  1232. strptime((char *)ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate, "%Y-%m-%dT%H:%M:%S", &tp);
  1233. tp.tm_isdst = -1;
  1234. time_t utc = mktime(&tp);
  1235. diff_t = difftime(utc, t);
  1236. //DEBUG_INFO("diff_t=%f\n",diff_t);
  1237. if(diff_t <= 0)
  1238. {
  1239. DEBUG_INFO("reserve expired !!! \n");
  1240. memset(ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate,0,sizeof(ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate));
  1241. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1242. }
  1243. else if((ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionConf == 1) &&
  1244. (ShmOCPP16Data->StartTransaction[gun_index].ReservationId == ShmOCPP16Data->ReserveNow[gun_index].ReservationId)&&
  1245. (strcmp((const char *)ShmOCPP16Data->StartTransaction[gun_index].IdTag,(const char *)ShmOCPP16Data->ReserveNow[gun_index].IdTag) ==0))
  1246. {
  1247. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1248. }
  1249. else
  1250. {
  1251. //check Transaction active
  1252. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  1253. {
  1254. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1255. {
  1256. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  1257. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index) &&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId !=0))
  1258. {
  1259. //if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '7') || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9') )
  1260. if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 12) ) // S_ALARM, S_FAULT
  1261. {
  1262. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1263. }
  1264. }
  1265. }
  1266. for (int index = 0; index < CCS_QUANTITY; index++)
  1267. {
  1268. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  1269. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId !=0))
  1270. {
  1271. //if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '7') || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '9') )
  1272. if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 12) ) // S_ALARM, S_FAULT
  1273. {
  1274. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1275. }
  1276. }
  1277. }
  1278. for (int index = 0; index < GB_QUANTITY; index++)
  1279. {
  1280. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  1281. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId !=0) )
  1282. {
  1283. //if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '7') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '9') )
  1284. if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 12) ) // S_ALARM, S_FAULT
  1285. {
  1286. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1287. }
  1288. }
  1289. }
  1290. }
  1291. else //AC
  1292. {
  1293. for (int index = 0; index < AC_QUANTITY; index++)
  1294. {
  1295. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  1296. if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index) &&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId !=0))
  1297. {
  1298. //if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '7') || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9') )
  1299. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 12) ) // S_ALARM, S_FAULT
  1300. {
  1301. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1302. }
  1303. }
  1304. }
  1305. }// END OF ELSE
  1306. }// END OF check Transaction active
  1307. }//END OF Check if Reserve is expired
  1308. //==========================================
  1309. // csu trigger FirmwareStatusNotificationReq
  1310. //==========================================
  1311. if((server_sign == TRUE) && (ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq == 1))
  1312. {
  1313. sendFirmwareStatusNotificationRequest((char *)ShmOCPP16Data->FirmwareStatusNotification.Status);
  1314. }
  1315. //==========================================
  1316. // csu trigger CancelReservationConf
  1317. //==========================================
  1318. if((server_sign == TRUE) && (ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationConf == 1))
  1319. {
  1320. //sendCancelReservationConfirmation(uuid, comfirmstr);
  1321. sendCancelReservationConfirmation((char *)ShmOCPP16Data->CancelReservation[gun_index].guid,(char *)ShmOCPP16Data->CancelReservation[gun_index].ResponseStatus);
  1322. }
  1323. //==========================================
  1324. // csu trigger ChangeAvailabilityConf
  1325. //==========================================
  1326. if((server_sign == TRUE) && (ShmOCPP16Data->CsMsg.bits[gun_index].ChangeAvailabilityConf == 1))
  1327. {
  1328. //sendChangeAvailabilityConfirmation(,(char *)ShmOCPP16Data->ChangeAvailability[gun_index].ResponseStatus);
  1329. }
  1330. //==========================================
  1331. // csu trigger UnlockConnectorConf
  1332. //==========================================
  1333. if((server_sign == TRUE) && (ShmOCPP16Data->CsMsg.bits[gun_index].UnlockConnectorConf == 1))
  1334. {
  1335. sendUnlockConnectorConfirmation((char *)ShmOCPP16Data->UnlockConnector[gun_index].guid, (char *)ShmOCPP16Data->UnlockConnector[gun_index].ResponseStatus);
  1336. ShmOCPP16Data->CsMsg.bits[gun_index].UnlockConnectorConf = 0;
  1337. }
  1338. //==========================================
  1339. // csu trigger ReserveNowConf
  1340. //==========================================
  1341. if((server_sign == TRUE) &&(ShmOCPP16Data->CsMsg.bits[gun_index].ReserveNowConf == 1))
  1342. {
  1343. sendReserveNowTransactionConfirmation((char *)ShmOCPP16Data->ReserveNow[gun_index].guid, (char *)ShmOCPP16Data->ReserveNow[gun_index].ResponseStatus);
  1344. ShmOCPP16Data->CsMsg.bits[gun_index].ReserveNowConf = 0;
  1345. }
  1346. //==========================================
  1347. // csu trigger DataTransferReq
  1348. //==========================================
  1349. if((server_sign == TRUE) &&(ShmOCPP16Data->CsMsg.bits[gun_index].DataTransferReq == 1))
  1350. {
  1351. sendDataTransferRequest(gun_index);
  1352. ShmOCPP16Data->CsMsg.bits[gun_index].DataTransferReq = 0;
  1353. }
  1354. }
  1355. }
  1356. //==========================================
  1357. // send request routine
  1358. //==========================================
  1359. int sendAuthorizeRequest(int gun_index)
  1360. {
  1361. mtrace();
  1362. int result = FAIL;
  1363. char message[100]={0};
  1364. char guid[37];
  1365. char tempdata[65]={0};
  1366. DEBUG_INFO("sendAuthorizeRequest \n");
  1367. //Local Authorize
  1368. if((strcmp((const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE") == 0)&&(ShmOCPP16Data->OcppConnStatus ==0))
  1369. {
  1370. OCPP_getIdTag((char *)ShmSysConfigAndInfo->SysConfig.UserId);
  1371. if((strcmp(idTagQuery.idTagstr,"") == 0) || (strcmp(idTagQuery.idTagstatus,"Accepted") != 0) )
  1372. {
  1373. DEBUG_INFO("Local Authorization Fail !!!!\n");
  1374. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate, "");
  1375. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId);
  1376. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, "Invalid");
  1377. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  1378. ShmOCPP16Data->SpMsg.bits.AuthorizeConf = 1; // inform csu
  1379. authorizeRetryTimes = 0;
  1380. return result;
  1381. }
  1382. else
  1383. {
  1384. DEBUG_INFO("Local Authorization Pass !!!!\n");
  1385. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate, idTagQuery.expiryDate);
  1386. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId);
  1387. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, idTagQuery.idTagstatus);
  1388. result = PASS;
  1389. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  1390. ShmOCPP16Data->SpMsg.bits.AuthorizeConf = 1; // inform csu
  1391. authorizeRetryTimes = 0;
  1392. return result;
  1393. }
  1394. }
  1395. //initailize struct Authorize
  1396. memset(&(ShmOCPP16Data->Authorize), 0 , sizeof(struct StructAuthorize));
  1397. //get data from shared memory
  1398. strcpy((char *)ShmOCPP16Data->Authorize.IdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId);
  1399. random_uuid(guid);
  1400. sprintf(message,"[ %d, \"%s\", \"Authorize\", { \"idTag\": \"%s\" } ]",MESSAGE_TYPE_CALL, guid, ShmOCPP16Data->Authorize.IdTag);
  1401. LWS_Send(message);
  1402. sprintf(tempdata, "Authorize,%d", gun_index);
  1403. if(hashmap_operation(0, guid, tempdata) == 1)
  1404. {
  1405. result = PASS;
  1406. DEBUG_ERROR("Authorize mapItem pass\n");
  1407. }
  1408. #ifdef SystemLogMessage
  1409. DEBUG_INFO(">>>>>Authorize request\n");
  1410. DEBUG_INFO("Message: %s\n", SendBuffer);
  1411. //DEBUG_INFO("After push hash length: %d\n", hashmapForMessageLength()/*hashmap_length(hashMap)*/);
  1412. #endif
  1413. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  1414. return result;
  1415. }
  1416. int sendBootNotificationRequest(void)
  1417. {
  1418. mtrace();
  1419. int result = FAIL;
  1420. char message[500]={0}, payload[700]={0};
  1421. char guid[37]={0};
  1422. char tempdata[65]={0};
  1423. int IsGunCharging = FALSE;
  1424. //check Transaction active
  1425. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  1426. {
  1427. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1428. {
  1429. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 8) //S_CHARGING
  1430. {
  1431. IsGunCharging = TRUE;
  1432. }
  1433. }
  1434. for (int index = 0; index < CCS_QUANTITY; index++)
  1435. {
  1436. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 8) //S_CHARGING
  1437. {
  1438. IsGunCharging = TRUE;
  1439. }
  1440. }
  1441. for (int index = 0; index < GB_QUANTITY; index++)
  1442. {
  1443. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8) //S_CHARGING
  1444. {
  1445. IsGunCharging = TRUE;
  1446. }
  1447. }
  1448. }
  1449. else
  1450. {
  1451. for (int index = 0; index < AC_QUANTITY; index++)
  1452. {
  1453. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 8) //S_CHARGING
  1454. {
  1455. IsGunCharging = TRUE;
  1456. }
  1457. }
  1458. }
  1459. if(IsGunCharging == TRUE)
  1460. {
  1461. server_sign = TRUE;
  1462. return result;
  1463. }
  1464. // Fill BootNotification fields
  1465. strcpy((char *)ShmOCPP16Data->BootNotification.CbSN,(const char *)ShmOCPP16Data->ChargeBoxId);
  1466. strcpy((char *)ShmOCPP16Data->BootNotification.CpModel,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName);
  1467. strcpy((char *)ShmOCPP16Data->BootNotification.CpSN,(const char *)ShmSysConfigAndInfo->SysConfig.SerialNumber);
  1468. strcpy((char *)ShmOCPP16Data->BootNotification.CpVendor,(const char *)ShmSysConfigAndInfo->SysConfig.chargePointVendor);
  1469. sprintf(payload, "{ \"chargeBoxSerialNumber\": \"%s\", \"chargePointModel\": \"%s\", \"chargePointSerialNumber\": \"%s\", \"chargePointVendor\": \"%s\", \"firmwareVersion\": \"%s\", \"iccid\": \"%s\", \"imsi\": \"%s\", \"meterSerialNumber\": \"%s\", \"meterType\": \"%s\"} ",
  1470. ShmOCPP16Data->ChargeBoxId
  1471. ,ShmSysConfigAndInfo->SysConfig.ModelName
  1472. ,ShmSysConfigAndInfo->SysConfig.SerialNumber
  1473. ,ShmSysConfigAndInfo->SysConfig.chargePointVendor
  1474. ,ShmOCPP16Data->BootNotification.CpFwVersion
  1475. ,ShmOCPP16Data->BootNotification.CpIccid
  1476. ,ShmOCPP16Data->BootNotification.CpImsi
  1477. ,ShmOCPP16Data->BootNotification.CpMeterSerialNumber
  1478. ,ShmOCPP16Data->BootNotification.CpMeterType);
  1479. random_uuid(guid);
  1480. sprintf(message,"[ %d, \"%s\", \"%s\", %s ]",MESSAGE_TYPE_CALL, guid, "BootNotification", payload);
  1481. LWS_Send(message);
  1482. sprintf(tempdata, "BootNotification,0");
  1483. 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*/)
  1484. {
  1485. result = PASS;
  1486. }
  1487. memset(queuedata, 0, sizeof(queuedata));
  1488. strcpy(queuedata,message);
  1489. #ifdef SystemLogMessage
  1490. DEBUG_INFO(">>>>>BootNotification request\n");
  1491. DEBUG_INFO("Message: %s\n", SendBuffer);
  1492. #endif
  1493. return result;
  1494. }
  1495. int sendDataTransferRequest(int gun_index)
  1496. {
  1497. mtrace();
  1498. char message[1000]={0};
  1499. char guid[37]={0};
  1500. char tempdata[65]={0};
  1501. int result = FAIL;
  1502. //[2,"696e8a35-f394-45e3-a0c7-7098b86f38a6","DataTransfer",{"vendorId":"Phihong","messageId":"FeePerKWH","data":"1"}]
  1503. random_uuid(guid);
  1504. sprintf(message,"[%d,\"%s\",\"DataTransfer\",{\"vendorId\":\"%s\",\"messageId\":\"%s\",\"data\":\"%s\"}]",
  1505. MESSAGE_TYPE_CALL,
  1506. guid,
  1507. ShmOCPP16Data->DataTransfer[gun_index].VendorId,
  1508. ShmOCPP16Data->DataTransfer[gun_index].MessageId,
  1509. ShmOCPP16Data->DataTransfer[gun_index].Data);
  1510. LWS_Send(message);
  1511. sprintf(tempdata, "DataTransfer,%d", (gun_index + 1));
  1512. 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*/)
  1513. {
  1514. result = PASS;
  1515. DEBUG_ERROR("DataTransfer mapItem pass\n");
  1516. }
  1517. #ifdef SystemLogMessage
  1518. DEBUG_INFO(">>>>>DataTransfer request\n");
  1519. DEBUG_INFO("Message: %s\n", SendBuffer);
  1520. #endif
  1521. return result;
  1522. }
  1523. int sendDiagnosticsStatusNotificationRequest(char *status)
  1524. {
  1525. mtrace();
  1526. int result = FAIL;
  1527. char message[110]={0};
  1528. char guid[37]={0};
  1529. char tempdata[65]={0};
  1530. //[ 2, "9f7bced1-b8b1-40ec-b3bb-2e15630e3cdc", "DiagnosticsStatusNotification", { "status": "Idle" } ]
  1531. DEBUG_INFO("sendDiagnosticsStatusNotificationRequest \n");
  1532. sprintf((char *)ShmOCPP16Data->DiagnosticsStatusNotification.Status,"%s",(const char *)status);
  1533. random_uuid(guid);
  1534. sprintf(message,"[%d,\"%s\",\"DiagnosticsStatusNotification\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALL, guid,status);
  1535. LWS_Send(message);
  1536. sprintf(tempdata, "DiagnosticsStatusNotification,%d", 0);
  1537. if(hashmap_operation(0, guid, tempdata) == 1)
  1538. {
  1539. result = PASS;
  1540. printf("DiagnosticsStatusNotification mapItem pass\n");
  1541. }
  1542. #ifdef SystemLogMessage
  1543. DEBUG_INFO(">>>>>DiagnosticsStatusNotification request\n");
  1544. DEBUG_INFO("Message: %s\n", SendBuffer);
  1545. //DEBUG_INFO("After push hash length: %d\n", hashmapForMessageLength()/*hashmap_length(hashMap)*/);
  1546. #endif
  1547. ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 0;
  1548. ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationConf = 0;
  1549. //record status
  1550. if(strcmp(status,"Idle")==0)
  1551. {
  1552. DiagnosticsStatusNotificationStatus = 0;
  1553. }
  1554. else if(strcmp(status,"Uploaded")==0)
  1555. {
  1556. DiagnosticsStatusNotificationStatus = 1;
  1557. }
  1558. else if(strcmp(status,"UploadFailed")==0)
  1559. {
  1560. DiagnosticsStatusNotificationStatus = 2;
  1561. }
  1562. else if(strcmp(status,"Uploading")==0)
  1563. {
  1564. DiagnosticsStatusNotificationStatus = 3;
  1565. }
  1566. return result;
  1567. }
  1568. int sendFirmwareStatusNotificationRequest(char *status)
  1569. {
  1570. mtrace();
  1571. int result = FAIL;
  1572. char message[110]={0};
  1573. char guid[37]={0};
  1574. char tempdata[65]={0};
  1575. // [ 2, "eb841424-ae56-42b0-8c84-d5296018c33c", "FirmwareStatusNotification", { "status": "Downloaded" } ]
  1576. DEBUG_INFO("sendFirmwareStatusNotificationRequest \n");
  1577. sprintf((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s", (const char *)status);
  1578. random_uuid(guid);
  1579. sprintf(message,"[%d,\"%s\",\"FirmwareStatusNotification\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALL, guid, status);
  1580. LWS_Send(message);
  1581. sprintf(tempdata, "FirmwareStatusNotification,%d", 0);
  1582. 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*/)
  1583. {
  1584. result = PASS;
  1585. DEBUG_INFO("FirmwareStatusNotification mapItem pass\n");
  1586. }
  1587. #ifdef SystemLogMessage
  1588. DEBUG_INFO(">>>>>FirmwareStatusNotification request\n");
  1589. DEBUG_INFO("Message: %s\n", SendBuffer);
  1590. #endif
  1591. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 0;
  1592. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationConf = 0;
  1593. //record status
  1594. if(strcmp(status,"Downloaded")==0)
  1595. {
  1596. FirmwareStatusNotificationStatus = 0;
  1597. }
  1598. else if(strcmp(status,"DownloadFailed")==0)
  1599. {
  1600. FirmwareStatusNotificationStatus = 1;
  1601. }
  1602. else if(strcmp(status,"Downloading")==0)
  1603. {
  1604. FirmwareStatusNotificationStatus = 2;
  1605. }
  1606. else if(strcmp(status,"Idle")==0)
  1607. {
  1608. FirmwareStatusNotificationStatus = 3;
  1609. }
  1610. else if(strcmp(status,"InstallationFailed")==0)
  1611. {
  1612. FirmwareStatusNotificationStatus = 4;
  1613. }
  1614. else if(strcmp(status,"Installing")==0)
  1615. {
  1616. FirmwareStatusNotificationStatus = 5;
  1617. }
  1618. else if(strcmp(status,"Installed")==0)
  1619. {
  1620. FirmwareStatusNotificationStatus = 6;
  1621. }
  1622. return result;
  1623. }
  1624. int sendHeartbeatRequest(int gun_index)
  1625. {
  1626. mtrace();
  1627. int result = FAIL;
  1628. char message[80]={0};
  1629. char guid[37]={0};
  1630. char tempdata[65]={0};
  1631. random_uuid(guid);
  1632. sprintf(message, "[%d,\"%s\",\"Heartbeat\",{ }]"
  1633. , MESSAGE_TYPE_CALL
  1634. , guid );
  1635. LWS_Send(message);
  1636. sprintf(tempdata, "Heartbeat,%d", 0);
  1637. 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*/)
  1638. {
  1639. result = PASS;
  1640. DEBUG_ERROR("Heartbeat mapItem pass\n");
  1641. }
  1642. #ifdef SystemLogMessage
  1643. DEBUG_INFO(">>>>>Heartbeat request\n");
  1644. DEBUG_INFO("Message: %s\n", SendBuffer);
  1645. #endif
  1646. return result;
  1647. }
  1648. int sendStartTransactionRequest(int gun_index)
  1649. {
  1650. mtrace();
  1651. int result = FAIL;
  1652. char message[250]={0};
  1653. char guid[37]={0};
  1654. struct timeval tmnow;
  1655. struct tm *tm;
  1656. char buf[30];//, usec_buf[6];
  1657. char tempdata[65]={0};
  1658. DEBUG_INFO("sendStartTransactionRequest...");
  1659. gettimeofday(&tmnow, NULL);
  1660. time_t t;
  1661. t = time(NULL);
  1662. /*UTC time and date*/
  1663. tm = gmtime(&t);
  1664. strftime(buf,30,"%Y-%m-%dT%H:%M:%SZ", tm);
  1665. #if 0 // remove temporally
  1666. strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
  1667. strcat(buf,".");
  1668. sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
  1669. strcat(buf,usec_buf);
  1670. #endif
  1671. //printf("Start Charging Time :%s",buf);
  1672. // set value
  1673. if(ShmOCPP16Data->OcppConnStatus == 1 )
  1674. {
  1675. memset(&ShmOCPP16Data->StartTransaction[gun_index], 0, sizeof(ShmOCPP16Data->StartTransaction[gun_index])); // Clear StartTransaction Value
  1676. }
  1677. ShmOCPP16Data->StartTransaction[gun_index].ConnectorId = gun_index +1 ; // gun start from 1~
  1678. strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].Timestamp, buf);
  1679. strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].IdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId);
  1680. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  1681. {
  1682. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1683. {
  1684. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  1685. {
  1686. ShmOCPP16Data->StartTransaction[gun_index].MeterStart = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy;
  1687. ShmOCPP16Data->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId;
  1688. }
  1689. }
  1690. for (int index = 0; index < CCS_QUANTITY; index++)
  1691. {
  1692. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  1693. {
  1694. ShmOCPP16Data->StartTransaction[gun_index].MeterStart = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy;
  1695. ShmOCPP16Data->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId;
  1696. }
  1697. }
  1698. for (int index = 0; index < GB_QUANTITY; index++)
  1699. {
  1700. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  1701. {
  1702. ShmOCPP16Data->StartTransaction[gun_index].MeterStart = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy;
  1703. ShmOCPP16Data->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId;
  1704. }
  1705. }
  1706. }
  1707. else
  1708. {
  1709. for (int index = 0; index < AC_QUANTITY; index++)
  1710. {
  1711. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  1712. {
  1713. ShmOCPP16Data->StartTransaction[gun_index].MeterStart = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy;
  1714. ShmOCPP16Data->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId;
  1715. }
  1716. }
  1717. }//END OF ELSE
  1718. random_uuid(guid);
  1719. sprintf(message, "[%d,\"%s\",\"StartTransaction\",{\"connectorId\":%d,\"idTag\":\"%s\",\"meterStart\":%d,\"reservationId\":%d,\"timestamp\":\"%s\"}]"
  1720. , MESSAGE_TYPE_CALL
  1721. , guid
  1722. , ShmOCPP16Data->StartTransaction[gun_index].ConnectorId
  1723. , ShmOCPP16Data->StartTransaction[gun_index].IdTag
  1724. , ShmOCPP16Data->StartTransaction[gun_index].MeterStart
  1725. , ShmOCPP16Data->StartTransaction[gun_index].ReservationId
  1726. , ShmOCPP16Data->StartTransaction[gun_index].Timestamp );
  1727. LWS_Send(message);
  1728. sprintf(tempdata, "StartTransaction,%d", (gun_index));
  1729. 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*/)
  1730. {
  1731. result = PASS;
  1732. }
  1733. strcpy(queuedata, message);
  1734. queue_operation(4, guid, queuedata );//addq(guid, queuedata); ---> remove temporally
  1735. #ifdef SystemLogMessage
  1736. //DEBUG_INFO(">>>>>StartTransaction request\n");
  1737. DEBUG_INFO("Message: %s\n", SendBuffer);
  1738. #endif
  1739. return result;
  1740. }
  1741. int sendStatusNotificationRequest(int gun_index)
  1742. {
  1743. mtrace();
  1744. int result = FAIL;
  1745. char message[600]={0};
  1746. char guid[37];
  1747. int currentStatus = 0;
  1748. struct timeval tmnow;
  1749. struct tm *tm;
  1750. char buf[30];//, usec_buf[6];
  1751. char tempdata[65]={0};
  1752. gettimeofday(&tmnow, NULL);
  1753. time_t t;
  1754. t = time(NULL);
  1755. /*UTC time and date*/
  1756. tm = gmtime(&t);
  1757. strftime(buf,30,"%Y-%m-%dT%H:%M:%SZ", tm);
  1758. #if 0 // remove temporally
  1759. strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
  1760. strcat(buf,".");
  1761. sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
  1762. strcat(buf,usec_buf);
  1763. #endif
  1764. printf("%s",buf);
  1765. ShmOCPP16Data->StatusNotification[gun_index].ConnectorId = (gun_index + 1);
  1766. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].ErrorCode, "NoError"); --- CSU Setting
  1767. // it's option
  1768. strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].Info, "");
  1769. /*
  1770. enum _SYSTEM_STATUS
  1771. {
  1772. S_BOOTING = 0,
  1773. S_IDLE, = 1
  1774. S_AUTHORIZING, =2
  1775. S_REASSIGN_CHECK, =3
  1776. S_REASSIGN, =4
  1777. S_PRECHARGE, =5
  1778. S_PREPARING_FOR_EV, =6
  1779. S_PREPARING_FOR_EVSE, =7
  1780. S_CHARGING, =8
  1781. S_TERMINATING, =9
  1782. S_COMPLETE, =10
  1783. S_ALARM, =11
  1784. S_FAULT =12
  1785. }
  1786. */
  1787. //check Transaction active
  1788. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  1789. {
  1790. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1791. {
  1792. //printf("gun_index=%d\n",gun_index);
  1793. //printf("ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus=%d\n",ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus);
  1794. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 1)) //S_IDLE
  1795. {
  1796. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Available");
  1797. currentStatus = 0; //OCPP Status
  1798. }
  1799. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 5)) //S_PRECHARGE
  1800. {
  1801. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Preparing");
  1802. currentStatus = 1; //OCPP Status
  1803. }
  1804. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 8)) //S_CHARGING
  1805. {
  1806. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging");
  1807. currentStatus = 2; //OCPP Status
  1808. }
  1809. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 10)) //S_COMPLETE
  1810. {
  1811. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Finishing");
  1812. currentStatus = 5; //OCPP Status
  1813. }
  1814. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11)) //S_ALARM ---> SuspendedEV
  1815. {
  1816. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1817. currentStatus = 4; //OCPP Status
  1818. }
  1819. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 9)) //S_TERMINATING ---> Unavailable
  1820. {
  1821. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1822. currentStatus = 7; //OCPP Status: Unavailable
  1823. }
  1824. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 12)) //S_FAULT ---> Faulted
  1825. {
  1826. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1827. currentStatus = 8; //OCPP Status: Faulted
  1828. }
  1829. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 13)) // ---> Reserved
  1830. {
  1831. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1832. currentStatus = 6; //OCPP Status: Reserved
  1833. }
  1834. }//end of for CHAdeMO_QUANTITY
  1835. for (int index = 0; index < CCS_QUANTITY; index++)
  1836. {
  1837. //printf("ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].SystemStatus=%d\n",ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].SystemStatus);
  1838. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 1)) //S_IDLE
  1839. {
  1840. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Available");
  1841. currentStatus = 0; //OCPP Status
  1842. }
  1843. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 5)) //S_PRECHARGE
  1844. {
  1845. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Preparing");
  1846. currentStatus = 1; //OCPP Status
  1847. }
  1848. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 8)) //S_CHARGING
  1849. {
  1850. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging");
  1851. currentStatus = 2; //OCPP Status
  1852. }
  1853. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 10)) //S_COMPLETE
  1854. {
  1855. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Finishing");
  1856. currentStatus = 5; //OCPP Status
  1857. }
  1858. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 11)) //S_ALARM ---> SuspendedEV
  1859. {
  1860. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1861. currentStatus = 4; //OCPP Status
  1862. }
  1863. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 9)) //S_TERMINATING ---> Unavailable
  1864. {
  1865. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1866. currentStatus = 7; //OCPP Status
  1867. }
  1868. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 12)) //S_FAULT ---> Faulted
  1869. {
  1870. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1871. currentStatus = 8; //OCPP Status
  1872. }
  1873. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 13)) // ---> Reserved
  1874. {
  1875. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1876. currentStatus = 6; //OCPP Status
  1877. }
  1878. }
  1879. for (int index = 0; index < GB_QUANTITY; index++)
  1880. {
  1881. //printf("ShmSysConfigAndInfo->SysInfo.GbChargingData[0].SystemStatus=%d\n",ShmSysConfigAndInfo->SysInfo.GbChargingData[0].SystemStatus);
  1882. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index) &&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 1)) //S_IDLE
  1883. {
  1884. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Available");
  1885. currentStatus = 0; //OCPP Status
  1886. }
  1887. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index) &&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 5)) //S_PRECHARGE
  1888. {
  1889. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Preparing");
  1890. currentStatus = 1; //OCPP Status
  1891. }
  1892. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8)) //S_CHARGING
  1893. {
  1894. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging");
  1895. currentStatus = 2; //OCPP Status
  1896. }
  1897. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8)) //S_COMPLETE
  1898. {
  1899. // strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Finishing");
  1900. currentStatus = 5; //OCPP Status
  1901. }
  1902. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 11)) //S_ALARM ---> SuspendedEV
  1903. {
  1904. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1905. currentStatus = 4; //OCPP Status
  1906. }
  1907. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 9)) //S_TERMINATING ---> Unavailable
  1908. {
  1909. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1910. currentStatus = 7; //OCPP Status: Unavailable
  1911. }
  1912. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 12)) //S_FAULT ---> Faulted
  1913. {
  1914. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1915. currentStatus = 8; //OCPP Status: Faulted
  1916. }
  1917. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 13)) // ---> Reserved
  1918. {
  1919. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1920. currentStatus = 6; //OCPP Status: Faulted
  1921. }
  1922. }
  1923. }
  1924. else
  1925. {
  1926. for (int index = 0; index < AC_QUANTITY; index++)
  1927. {
  1928. //printf("gun_index=%d\n",gun_index);
  1929. //printf("ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus=%d\n",ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus);
  1930. if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 1)) //S_IDLE
  1931. {
  1932. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Available");
  1933. currentStatus = 0; //OCPP Status
  1934. }
  1935. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 5)) //S_PRECHARGE
  1936. {
  1937. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Preparing");
  1938. currentStatus = 1; //OCPP Status
  1939. }
  1940. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 8)) //S_CHARGING
  1941. {
  1942. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging");
  1943. currentStatus = 2; //OCPP Status
  1944. }
  1945. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 10)) //S_COMPLETE
  1946. {
  1947. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Finishing");
  1948. currentStatus = 5; //OCPP Status
  1949. }
  1950. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 11)) //S_ALARM ---> SuspendedEV
  1951. {
  1952. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1953. currentStatus = 4; //OCPP Status
  1954. }
  1955. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 9)) //S_TERMINATING ---> Unavailable
  1956. {
  1957. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1958. currentStatus = 7; //OCPP Status: Unavailable
  1959. }
  1960. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 12)) //S_FAULT ---> Faulted
  1961. {
  1962. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1963. currentStatus = 8; //OCPP Status: Faulted
  1964. }
  1965. else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 13)) // ---> Reserved
  1966. {
  1967. //strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[SuspendedEV]);
  1968. currentStatus = 6; //OCPP Status: Reserved
  1969. }
  1970. }//end of for AC_QUANTITY
  1971. }//END OF ELSE
  1972. //it's option
  1973. strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].Timestamp, buf);
  1974. strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].VendorId, "PhihongTechnology");
  1975. strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode, "000000");
  1976. strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[currentStatus]);
  1977. random_uuid(guid);
  1978. sprintf(message, "[%d,\"%s\",\"StatusNotification\",{\"connectorId\":%d,\"errorCode\":\"%s\",\"info\":\"%s\",\"status\":\"%s\",\"timestamp\":\"%s\",\"vendorId\":\"%s\",\"vendorErrorCode\":\"%s\"}]"
  1979. , MESSAGE_TYPE_CALL
  1980. , guid
  1981. , ShmOCPP16Data->StatusNotification[gun_index].ConnectorId
  1982. , ShmOCPP16Data->StatusNotification[gun_index].ErrorCode
  1983. , ShmOCPP16Data->StatusNotification[gun_index].Info
  1984. , ShmOCPP16Data->StatusNotification[gun_index].Status
  1985. , ShmOCPP16Data->StatusNotification[gun_index].Timestamp
  1986. , ShmOCPP16Data->StatusNotification[gun_index].VendorId
  1987. , ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode);
  1988. LWS_Send(message);
  1989. sprintf(tempdata, "StatusNotification,%d", (gun_index));
  1990. 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*/)
  1991. {
  1992. DEBUG_ERROR("statusNotification mapitem pass");
  1993. result = PASS;
  1994. }
  1995. #ifdef SystemLogMessage
  1996. DEBUG_INFO(">>>>>StatusNotification request\n");
  1997. DEBUG_INFO("Message: %s\n", SendBuffer);
  1998. #endif
  1999. return result;
  2000. }
  2001. int sendStopTransactionRequest(int gun_index)
  2002. {
  2003. mtrace();
  2004. int result = FAIL;
  2005. char message[700]={0};
  2006. char guid[37]={0};
  2007. char tempdata[65]={0};
  2008. int idx_sample=0;
  2009. DEBUG_ERROR("sendStopTransactionRequest \n");
  2010. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].IdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId/*ShmOCPP16Data->Authorize.IdTag*/);
  2011. //ENERGY_ACTIVE_IMPORT_REGISTER
  2012. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2013. {
  2014. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2015. {
  2016. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2017. {
  2018. ShmOCPP16Data->StopTransaction[gun_index].MeterStop = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy;
  2019. //Check Status
  2020. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) // S_ALARM (Temporally for SuspendedEV )
  2021. {
  2022. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[EVDisconnected]); //
  2023. }
  2024. //sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%s" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );
  2025. }
  2026. }// END OF CHAdeMO_QUANTITY
  2027. for (int index = 0; index < CCS_QUANTITY; index++)
  2028. {
  2029. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2030. {
  2031. //for test
  2032. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy = 100.0;
  2033. ShmOCPP16Data->StopTransaction[gun_index].MeterStop = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy;
  2034. //Check Status
  2035. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 11) // S_ALARM (Temporally for SuspendedEV )
  2036. {
  2037. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[EVDisconnected]); //
  2038. }
  2039. else
  2040. {
  2041. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[Local]); //
  2042. }
  2043. //sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%s" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy );
  2044. }
  2045. }// END OF CCS_QUANTITY
  2046. for (int index = 0; index < GB_QUANTITY; index++)
  2047. {
  2048. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2049. {
  2050. // for test
  2051. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy = 100.0;
  2052. ShmOCPP16Data->StopTransaction[gun_index].MeterStop = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy;
  2053. //Check Status
  2054. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 11) // S_ALARM (Temporally for SuspendedEV )
  2055. {
  2056. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[EVDisconnected]); //
  2057. }
  2058. else
  2059. {
  2060. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[Local]); //
  2061. }
  2062. //sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy);
  2063. }
  2064. }// END OF GB_QUANTITY
  2065. }
  2066. else
  2067. {
  2068. for (int index = 0; index < AC_QUANTITY; index++)
  2069. {
  2070. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2071. {
  2072. ShmOCPP16Data->StopTransaction[gun_index].MeterStop = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy;
  2073. //Check Status
  2074. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 11) // S_ALARM (Temporally for SuspendedEV )
  2075. {
  2076. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[EVDisconnected]); //
  2077. }
  2078. //sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%s" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );
  2079. }
  2080. }// END OF AC_QUANTITY
  2081. }//END OF ELSE
  2082. //Stop Transaction Time
  2083. struct timeval tmnow;
  2084. struct tm *tm;
  2085. char buf[30];//, usec_buf[6];
  2086. gettimeofday(&tmnow, NULL);
  2087. time_t t;
  2088. t = time(NULL);
  2089. /*UTC time and date*/
  2090. tm = gmtime(&t);
  2091. strftime(buf,30,"%Y-%m-%dT%H:%M:%SZ", tm);
  2092. #if 0 // remove temporally
  2093. strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
  2094. strcat(buf,".");
  2095. sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
  2096. strcat(buf,usec_buf);
  2097. #endif
  2098. printf("StopTransaction Time %s\n",buf);
  2099. //strcpy(ShmOCPP16Data->StopTransaction[gun_index].Timestamp,"2019-05-04T18:15:33Z");
  2100. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].Timestamp,buf);
  2101. ShmOCPP16Data->StopTransaction[gun_index].TransactionId = ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId;
  2102. random_uuid(guid);
  2103. sprintf(message,"[%d,\"%s\",\"StopTransaction\",{\"idTag\":\"%s\",\"meterStop\":%d,\"timestamp\":\"%s\",\"transactionId\":%d,\"reason\":\"%s\",\"transactionData\":"
  2104. ,MESSAGE_TYPE_CALL
  2105. ,guid
  2106. ,ShmOCPP16Data->StopTransaction[gun_index].IdTag
  2107. ,ShmOCPP16Data->StopTransaction[gun_index].MeterStop
  2108. ,ShmOCPP16Data->StopTransaction[gun_index].Timestamp
  2109. ,ShmOCPP16Data->StopTransaction[gun_index].TransactionId
  2110. ,ShmOCPP16Data->StopTransaction[gun_index].StopReason);
  2111. /***********************************transactionData******************************************************/
  2112. ShmOCPP16Data->StopTransaction[gun_index].TransactionData = (struct StructMeterValue *)malloc(sizeof(struct StructMeterValue));
  2113. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue = (struct StructSampledValue *)malloc(sizeof(struct StructSampledValue)*3);
  2114. for(int idx_transaction=0;idx_transaction<1;idx_transaction++)
  2115. {
  2116. //transactionData = json_object_new_object();
  2117. //json_object_object_add(transactionData, "timestamp", json_object_new_string("2019-05-04T18:15:33Z"));
  2118. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].TimeStamp, buf/*"2019-05-04T18:15:33Z"*/);
  2119. sprintf(message + strlen(message), "[{\"timestamp\":\"%s\",\"sampledValue\":[", (const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].TimeStamp);
  2120. //Transaction_Begin
  2121. idx_sample=0;
  2122. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f",(float)(ShmOCPP16Data->StartTransaction[gun_index].MeterStart));
  2123. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,ReadingContextStr[ReadingContext_Transaction_Begin]);
  2124. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,ValueFormatStr[Raw]);
  2125. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,MeasurandStr[Energy_Reactive_Export_Register]);
  2126. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,PhaseStr[L1_N]);
  2127. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,LocationStr[Location_Outlet]);
  2128. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_Wh/*UnitOfMeasure_kWh*/]);
  2129. sprintf(message + strlen(message), "{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\" }",
  2130. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value,
  2131. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,
  2132. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,
  2133. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,
  2134. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,
  2135. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,
  2136. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit
  2137. );
  2138. //Transaction_End
  2139. idx_sample=1;
  2140. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2141. {
  2142. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2143. {
  2144. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2145. {
  2146. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );
  2147. }
  2148. }
  2149. for (int index = 0; index < CCS_QUANTITY; index++)
  2150. {
  2151. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2152. {
  2153. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy );
  2154. }
  2155. }
  2156. for (int index = 0; index < GB_QUANTITY; index++)
  2157. {
  2158. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2159. {
  2160. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy );
  2161. }
  2162. }
  2163. }
  2164. else
  2165. {
  2166. for (int index = 0; index < AC_QUANTITY; index++)
  2167. {
  2168. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2169. {
  2170. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy );
  2171. }
  2172. }
  2173. }// END FOR AC ELSE
  2174. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,ReadingContextStr[ReadingContext_Transaction_End]);
  2175. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,ValueFormatStr[Raw]);
  2176. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,MeasurandStr[Energy_Reactive_Export_Register]);
  2177. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,PhaseStr[L1_N]);
  2178. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,LocationStr[Location_Outlet]);
  2179. strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_Wh/*UnitOfMeasure_kWh*/]);
  2180. sprintf(message + strlen(message), ",{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\" }",
  2181. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value,
  2182. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,
  2183. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,
  2184. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,
  2185. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,
  2186. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,
  2187. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit
  2188. );
  2189. sprintf(message + strlen(message)," ] } ] } ]");
  2190. free(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue);
  2191. free(ShmOCPP16Data->StopTransaction[gun_index].TransactionData);
  2192. }
  2193. LWS_Send(message);
  2194. sprintf(tempdata, "StopTransaction,%d", (gun_index));
  2195. if(hashmap_operation(0, guid, tempdata) == 1)
  2196. {
  2197. result = PASS;
  2198. DEBUG_INFO("StopTransaction mapitem pass\n");
  2199. }
  2200. strcpy(queuedata, message);
  2201. queue_operation(4, guid, queuedata );//addq(guid, queuedata); ---> remove temporally
  2202. #ifdef SystemLogMessage
  2203. DEBUG_INFO(">>>>>StopTransaction request\n");
  2204. DEBUG_INFO("Message: %s\n", SendBuffer);
  2205. #endif
  2206. //for test
  2207. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq = 0;
  2208. return result;
  2209. }
  2210. int sendMeterValuesRequest(int gun_index)
  2211. {
  2212. mtrace();
  2213. int result = FAIL;
  2214. char message[1500]={0};
  2215. char guid[37]={0};
  2216. int idx_sample=0;
  2217. //int length = 0;
  2218. char tempdata[65]={0};
  2219. DEBUG_ERROR("sendMeterValuesRequest ...\n");
  2220. DEBUG_ERROR("gun_index =%d\n",gun_index);
  2221. if((ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId == 0)&&(ShmOCPP16Data->CsMsg.bits[gun_index].TriggerMessageReq == 0)) // no TransactionId
  2222. {
  2223. DEBUG_INFO("NOT SENT METER Vlaue\n");
  2224. DEBUG_ERROR("ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId =%d\n",ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId);
  2225. DEBUG_ERROR("ShmOCPP16Data->CsMsg.bits[gun_index].TriggerMessageReq =%d\n",ShmOCPP16Data->CsMsg.bits[gun_index].TriggerMessageReq);
  2226. return result;
  2227. }
  2228. if(ShmOCPP16Data->CsMsg.bits[gun_index].TriggerMessageReq == 1)
  2229. {
  2230. ShmOCPP16Data->CsMsg.bits[gun_index].TriggerMessageReq = 0;
  2231. }
  2232. //set value
  2233. ShmOCPP16Data->MeterValues[gun_index].ConnectorId = gun_index + 1; // gun start from 1~
  2234. ShmOCPP16Data->MeterValues[gun_index].TransactionId = ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId;
  2235. random_uuid(guid);
  2236. sprintf(message,"[%d,\"%s\",\"MeterValues\",{\"connectorId\":%d,\"transactionId\":%d,\"meterValue\":"
  2237. ,MESSAGE_TYPE_CALL
  2238. ,guid
  2239. ,ShmOCPP16Data->MeterValues[gun_index].ConnectorId
  2240. ,ShmOCPP16Data->MeterValues[gun_index].TransactionId);
  2241. //,comfirmpayload);
  2242. for(int idx_transaction=0;idx_transaction<1;idx_transaction++)
  2243. {
  2244. //allocate memory space
  2245. ShmOCPP16Data->MeterValues[gun_index].MeterValue = (struct StructMeterValue *)malloc(sizeof(struct StructMeterValue));
  2246. //UTC Date time
  2247. struct timeval tmnow;
  2248. struct tm *tm;
  2249. char buf[30];//, usec_buf[6];
  2250. gettimeofday(&tmnow, NULL);
  2251. time_t t;
  2252. t = time(NULL);
  2253. /*UTC time and date*/
  2254. tm = gmtime(&t);
  2255. strftime(buf,30,"%Y-%m-%dT%H:%M:%SZ", tm);
  2256. #if 0 // remove temporally
  2257. strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
  2258. strcat(buf,".");
  2259. sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
  2260. strcat(buf,usec_buf);
  2261. #endif
  2262. // printf("%s",buf);
  2263. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].TimeStamp, buf);
  2264. //allocate memory space
  2265. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue = (struct StructSampledValue *)malloc(sizeof(struct StructSampledValue)*6);
  2266. sprintf(message + strlen(message),"[{\"timestamp\":\"%s\",\"sampledValue\":[",(const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].TimeStamp);
  2267. idx_sample=0;
  2268. //********************************(1)Current.Export************************************************/
  2269. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2270. {
  2271. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2272. {
  2273. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2274. {
  2275. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingCurrent );
  2276. }
  2277. }
  2278. for (int index = 0; index < CCS_QUANTITY; index++)
  2279. {
  2280. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2281. {
  2282. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingCurrent );
  2283. }
  2284. }
  2285. for (int index = 0; index < GB_QUANTITY; index++)
  2286. {
  2287. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2288. {
  2289. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingCurrent );
  2290. }
  2291. }
  2292. }
  2293. else
  2294. {
  2295. for (int index = 0; index < AC_QUANTITY; index++)
  2296. {
  2297. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2298. {
  2299. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrent );
  2300. }
  2301. }
  2302. }// END FOR AC ELSE
  2303. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2304. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2305. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Current_Export]);
  2306. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1_N]);
  2307. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2308. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_A]);
  2309. sprintf(message + strlen(message),"{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\"},",
  2310. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value,
  2311. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context,
  2312. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format,
  2313. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand,
  2314. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase,
  2315. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location,
  2316. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit
  2317. );
  2318. idx_sample=1;
  2319. //****************************************************(2)Energy.Active.Export.Register*********************************************/
  2320. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2321. {
  2322. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2323. {
  2324. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2325. {
  2326. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );
  2327. }
  2328. }
  2329. for (int index = 0; index < CCS_QUANTITY; index++)
  2330. {
  2331. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2332. {
  2333. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy );
  2334. }
  2335. }
  2336. for (int index = 0; index < GB_QUANTITY; index++)
  2337. {
  2338. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2339. {
  2340. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy = 100.0;
  2341. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy);
  2342. }
  2343. }
  2344. }
  2345. else
  2346. {
  2347. for (int index = 0; index < AC_QUANTITY; index++)
  2348. {
  2349. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2350. {
  2351. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy );
  2352. }
  2353. }
  2354. }// END FOR AC ELSE
  2355. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2356. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2357. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Energy_Active_Export_Register]);
  2358. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1]);
  2359. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2360. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_kWh]);
  2361. sprintf(message + strlen(message),"{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\"},",
  2362. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value,
  2363. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context,
  2364. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format,
  2365. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand,
  2366. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase,
  2367. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location,
  2368. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit
  2369. );
  2370. idx_sample=2;
  2371. //****************************************************(3)Energy.Active.Export.Interval*********************************************/
  2372. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2373. {
  2374. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2375. {
  2376. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2377. {
  2378. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );
  2379. }
  2380. }
  2381. for (int index = 0; index < CCS_QUANTITY; index++)
  2382. {
  2383. // printf("ShmSysConfigAndInfo->SysInfo.CcsChargingData[%d].Index=%d\n",index, ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index );
  2384. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2385. {
  2386. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy = 100.0;
  2387. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy );
  2388. }
  2389. }
  2390. for (int index = 0; index < GB_QUANTITY; index++)
  2391. {
  2392. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2393. {
  2394. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy);
  2395. }
  2396. }
  2397. }
  2398. else
  2399. {
  2400. for (int index = 0; index < AC_QUANTITY; index++)
  2401. {
  2402. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2403. {
  2404. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy );
  2405. }
  2406. }
  2407. }//END FOR AC ELSE
  2408. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2409. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2410. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Energy_Active_Export_Interval]);
  2411. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1]);
  2412. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2413. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_kWh]);
  2414. sprintf(message + strlen(message),"{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\"},",
  2415. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value,
  2416. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context,
  2417. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format,
  2418. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand,
  2419. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase,
  2420. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location,
  2421. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit
  2422. );
  2423. idx_sample=3;
  2424. //********************************(4)Power.Active.Export************************************************/
  2425. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2426. {
  2427. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2428. {
  2429. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2430. {
  2431. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingPower);
  2432. }
  2433. }
  2434. for (int index = 0; index < CCS_QUANTITY; index++)
  2435. {
  2436. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2437. {
  2438. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingPower);
  2439. }
  2440. }
  2441. for (int index = 0; index < GB_QUANTITY; index++)
  2442. {
  2443. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2444. {
  2445. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower = 100.0;
  2446. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower);
  2447. }
  2448. }
  2449. }
  2450. else
  2451. {
  2452. for (int index = 0; index < AC_QUANTITY; index++)
  2453. {
  2454. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2455. {
  2456. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingPower);
  2457. }
  2458. }
  2459. }// END FOR AC ELSE
  2460. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2461. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2462. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Power_Active_Export]);
  2463. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1_N]);
  2464. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2465. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_kW]);
  2466. sprintf(message + strlen(message),"{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\"},",
  2467. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value,
  2468. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context,
  2469. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format,
  2470. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand,
  2471. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase,
  2472. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location,
  2473. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit
  2474. );
  2475. idx_sample=4;
  2476. //***********************************************(5)VOLTAGE******************************************************/
  2477. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2478. {
  2479. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2480. {
  2481. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2482. {
  2483. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingVoltage );
  2484. }
  2485. }
  2486. for (int index = 0; index < CCS_QUANTITY; index++)
  2487. {
  2488. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2489. {
  2490. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingVoltage );
  2491. }
  2492. }
  2493. for (int index = 0; index < GB_QUANTITY; index++)
  2494. {
  2495. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2496. {
  2497. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingVoltage );
  2498. }
  2499. }
  2500. }
  2501. else
  2502. {
  2503. for (int index = 0; index < AC_QUANTITY; index++)
  2504. {
  2505. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  2506. {
  2507. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltage );
  2508. }
  2509. }
  2510. }//END FOR AC ELSE
  2511. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2512. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2513. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Voltage]);
  2514. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1_N]);
  2515. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2516. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_V]);
  2517. sprintf(message + strlen(message),"{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\"}",
  2518. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value,
  2519. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context,
  2520. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format,
  2521. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand,
  2522. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase,
  2523. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location,
  2524. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit
  2525. );
  2526. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2527. {
  2528. idx_sample=5;
  2529. //sampledValue = NULL;
  2530. //***********************************************(6)SOC******************************************************/
  2531. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  2532. {
  2533. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2534. {
  2535. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2536. {
  2537. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatterySoc );
  2538. }
  2539. }
  2540. for (int index = 0; index < CCS_QUANTITY; index++)
  2541. {
  2542. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2543. {
  2544. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatterySoc );
  2545. }
  2546. }
  2547. for (int index = 0; index < GB_QUANTITY; index++)
  2548. {
  2549. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2550. {
  2551. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatterySoc );
  2552. }
  2553. }
  2554. }
  2555. else
  2556. {
  2557. for (int index = 0; index < AC_QUANTITY; index++)
  2558. {
  2559. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2560. {
  2561. sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatterySoc );
  2562. }
  2563. }
  2564. }//END FOR AC ELSE
  2565. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2566. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2567. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[SoC]);
  2568. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1_N]);
  2569. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2570. strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_Percent]);
  2571. sprintf(message + strlen(message),",{\"value\":\"%s\",\"context\":\"%s\",\"format\":\"%s\",\"measurand\":\"%s\",\"phase\":\"%s\",\"location\":\"%s\",\"unit\":\"%s\"}",
  2572. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value,
  2573. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context,
  2574. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format,
  2575. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand,
  2576. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase,
  2577. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location,
  2578. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit
  2579. );
  2580. }
  2581. //}
  2582. sprintf(message + strlen(message)," ] } ] } ]");
  2583. free(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue);
  2584. }
  2585. LWS_Send(message);
  2586. //memset(mapItem, 0, sizeof(data_struct_t));
  2587. // Put request guid to hash map
  2588. sprintf(tempdata, "MeterValues,%d", (gun_index));
  2589. 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*/)
  2590. {
  2591. result = PASS;
  2592. DEBUG_INFO("MeterValues mapitem pass\n");
  2593. }
  2594. strcpy(queuedata, message);
  2595. queue_operation(4, guid, queuedata );//addq(guid, queuedata); ---> remove temporally
  2596. #ifdef SystemLogMessage
  2597. DEBUG_INFO(">>>>>MeerValues request\n");
  2598. DEBUG_INFO("Message: %s\n", SendBuffer);
  2599. #endif
  2600. return result;
  2601. }
  2602. //==========================================
  2603. // send confirm routine
  2604. //==========================================
  2605. int sendCancelReservationConfirmation(char *uuid,char *payload)
  2606. {
  2607. mtrace();
  2608. int result = FAIL;
  2609. char message[100]={0};
  2610. DEBUG_ERROR("handle sendCancelReservationConfirmation\n");
  2611. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT,uuid, payload);
  2612. LWS_Send(message);
  2613. result = TRUE;
  2614. ShmOCPP16Data->CsMsg.bits[0].CancelReservationConf = 0;
  2615. return result;
  2616. }
  2617. int sendChangeAvailabilityConfirmation(char *uuid,char *payload)
  2618. {
  2619. mtrace();
  2620. int result = FAIL;
  2621. char message[100]={0};
  2622. DEBUG_ERROR("handle sendChangeAvailabilityConfirmation\n");
  2623. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT,uuid, payload);
  2624. LWS_Send(message);
  2625. result = TRUE;
  2626. return result;
  2627. }
  2628. int sendChangeConfigurationConfirmation(char *uuid,char *payload)
  2629. {
  2630. mtrace();
  2631. int result = FAIL;
  2632. char message[100]={0};
  2633. DEBUG_ERROR("handle sendChangeConfigurationConfirmation\n");
  2634. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT,uuid, payload);
  2635. LWS_Send(message);
  2636. result = TRUE;
  2637. return result;
  2638. }
  2639. int sendClearCacheConfirmation(char *uuid,char *payload)
  2640. {
  2641. mtrace();
  2642. int result = FAIL;
  2643. char message[500]={0};
  2644. // int count = 0;
  2645. // int gun_index = 0;
  2646. // char guid[37];
  2647. // [ 3, "1570592744204", { "status": "Accepted" } ]
  2648. DEBUG_ERROR("sendClearCacheConfirmation\n");
  2649. sprintf(message,"[ %d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "status", payload);
  2650. LWS_Send(message);
  2651. return result;
  2652. }
  2653. int sendClearChargingProfileConfirmation(char *uuid,char *payload)
  2654. {
  2655. mtrace();
  2656. int result = FAIL;
  2657. char message[500]={0};
  2658. // [ 3, "1571284268200", { "status": "Unknown" } ]
  2659. DEBUG_ERROR("sendClearChargingProfileConfirmation\n");
  2660. sprintf(message,"[ %d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "status", payload);
  2661. LWS_Send(message);
  2662. return result;
  2663. }
  2664. int sendDataTransferConfirmation(char *uuid,char *payload)
  2665. {
  2666. mtrace();
  2667. char statusStr[20]={0};
  2668. char dataStr[10]={0};
  2669. char sstr[20]={0};
  2670. int c = 0;
  2671. char *loc;
  2672. int result = FAIL;
  2673. // [3,"792bc950-b279-49e3-ab8f-429e02a2f9a7",{"status":"Accepted","data":"True"}]
  2674. DEBUG_ERROR("sendDataTransferConfirmation ...\n");
  2675. /**********************status**************************/
  2676. loc = strstr(payload, "status");
  2677. memset(sstr ,0, sizeof(sstr) );
  2678. c = 0;
  2679. while (loc[3+strlen("status")+c] != '\"')
  2680. {
  2681. sstr[c] = loc[3+strlen("status")+c];
  2682. c++;
  2683. }
  2684. sstr[c] = '\0';
  2685. strcpy(statusStr, sstr);
  2686. /**********************data**************************/
  2687. loc = strstr(payload, "data");
  2688. memset(sstr ,0, sizeof(sstr) );
  2689. c = 0;
  2690. while (loc[3+strlen("data")+c] != '\"')
  2691. {
  2692. sstr[c] = loc[3+strlen("data")+c];
  2693. c++;
  2694. }
  2695. sstr[c] = '\0';
  2696. strcpy(dataStr, sstr);
  2697. return result;
  2698. }
  2699. int sendGetCompositeScheduleConfirmation(char *uuid,char *payload, int connectorIdInt,int nPeriod)
  2700. {
  2701. mtrace();
  2702. int result = FAIL;
  2703. char message[1000]={0};
  2704. double diff_f = 0.0;
  2705. int diff_i = 0;
  2706. struct tm tp;
  2707. DEBUG_ERROR("handle sendGetCompositeScheduleConfirmation ...\n");
  2708. strptime((const char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.StartSchedule, "%Y-%m-%dT%H:%M:%S", &tp);
  2709. tp.tm_isdst = -1;
  2710. time_t utc = mktime(&tp);
  2711. time_t t = time(NULL);
  2712. diff_f = difftime(t, utc);
  2713. diff_i = (int)diff_f;
  2714. DEBUG_INFO("\n diff_f=%f \n",diff_f);
  2715. #if 0 //remove temporally
  2716. 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}"
  2717. ,MESSAGE_TYPE_CALLRESULT
  2718. ,uuid
  2719. ,payload
  2720. ,connectorIdInt
  2721. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule
  2722. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.Duration
  2723. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule
  2724. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit);
  2725. #endif
  2726. if(nPeriod == 0)
  2727. {
  2728. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"connectorId\":%d,\"scheduleStart\":\"%s\"}]"
  2729. ,MESSAGE_TYPE_CALLRESULT
  2730. ,uuid
  2731. ,payload
  2732. ,connectorIdInt
  2733. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule);
  2734. }
  2735. else
  2736. {
  2737. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"connectorId\":%d,\"scheduleStart\":\"%s\",\"chargingSchedule\":{\"duration\":%d,\"startSchedule\":\"%s\",\"chargingRateUnit\":\"%s\",\"chargingSchedulePeriod\":["
  2738. ,MESSAGE_TYPE_CALLRESULT
  2739. ,uuid
  2740. ,payload
  2741. ,connectorIdInt
  2742. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule
  2743. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.Duration
  2744. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule
  2745. ,ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit);
  2746. //int len = nPeriod;//sizeof(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod)/sizeof(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0]);
  2747. #if 1 // remove temporally
  2748. int len = nPeriod;//sizeof(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod)/sizeof(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0]);
  2749. for(int idx_sample=0;idx_sample< len;idx_sample++)
  2750. {
  2751. if (idx_sample == 0)
  2752. {
  2753. sprintf(message + strlen(message), "{\"startPeriod\":%d,\"limit\":%.1f,\"numberPhases\":%d}"
  2754. , ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].StartPeriod
  2755. , ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].Limit
  2756. , ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].NumberPhases );
  2757. }
  2758. else
  2759. {
  2760. sprintf(message + strlen(message), ",{\"startPeriod\":%d,\"limit\":%.1f,\"numberPhases\":%d}"
  2761. , (ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].StartPeriod - diff_i /*-1*/)
  2762. , ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].Limit
  2763. , ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].NumberPhases );
  2764. }
  2765. }
  2766. #endif
  2767. sprintf(message + strlen(message), "]}}]");
  2768. }
  2769. LWS_Send(message);
  2770. result = TRUE;
  2771. return result;
  2772. }
  2773. int sendGetConfigurationConfirmation(char *uuid)
  2774. {
  2775. mtrace();
  2776. int result = FAIL;
  2777. int MaxKeySupported = 0;
  2778. int sentConfigurationNumber= 0;
  2779. int sentunConfigurationNumber= 0;
  2780. char message[4000]={0};
  2781. DEBUG_ERROR("handle sendGetConfigurationConfirmation ...\n");
  2782. MaxKeySupported = atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData);
  2783. sprintf(message,"[%d,\"%s\",{\"configurationKey\":[ "
  2784. ,MESSAGE_TYPE_CALLRESULT
  2785. ,uuid );
  2786. //configuration key
  2787. for(int idx_sample=0;idx_sample< MaxKeySupported/*43*/;idx_sample++)
  2788. {
  2789. if(strcmp((const char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Key, "")!= 0)
  2790. {
  2791. if (sentConfigurationNumber == 0)
  2792. {
  2793. sprintf(message + strlen(message), "{\"key\":\"%s\",\"readonly\": %s,\"value\":\"%s\"}"
  2794. , ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Key
  2795. , atoi((const char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].ReadOnly) == 1 ? "true":"false"
  2796. , ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Value );
  2797. }
  2798. else
  2799. {
  2800. sprintf(message + strlen(message), ", {\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}"
  2801. , ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Key
  2802. , atoi((const char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].ReadOnly) == 1 ? "true":"false"
  2803. , ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Value );
  2804. }
  2805. sentConfigurationNumber = sentConfigurationNumber + 1;
  2806. }
  2807. }
  2808. sprintf(message + strlen(message), "]");
  2809. if(UnknownKeynum != 0)
  2810. {
  2811. sprintf(message + strlen(message), ",\"unknownKey\":[");
  2812. //unkown key
  2813. for(int idx_sample=0;idx_sample< UnknownKeynum ;idx_sample++)
  2814. {
  2815. // json_object *jstring1 = json_object_new_string((const char *)((ShmOCPP16Data->GetConfiguration.ResponseUnknownKey + idx_sample)->Item));
  2816. DEBUG_INFO("unkown key:%s\n", ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[idx_sample].Item);
  2817. if(sentunConfigurationNumber == 0)
  2818. {
  2819. sprintf(message + strlen(message), "\"%s\""
  2820. , ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[idx_sample].Item );
  2821. }
  2822. else
  2823. {
  2824. sprintf(message + strlen(message), ",\"%s\""
  2825. , ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[idx_sample].Item );
  2826. }
  2827. sentunConfigurationNumber = sentunConfigurationNumber + 1;
  2828. }
  2829. sprintf(message + strlen(message), "]");
  2830. }
  2831. sprintf(message + strlen(message), "} ]");
  2832. LWS_Send(message);
  2833. #if 0
  2834. printf("error 1-0\n");
  2835. if(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey != NULL)
  2836. free(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey);
  2837. #endif
  2838. return result;
  2839. }
  2840. int sendGetDiagnosticsConfirmation(char *uuid,char *payload)
  2841. {
  2842. mtrace();
  2843. int result = FAIL;
  2844. char message[400]={0};
  2845. DEBUG_ERROR("handle sendGetDiagnosticsConfirmation ...\n");
  2846. if(strcmp(payload,"")==0)
  2847. {
  2848. sprintf(message,"[%d,\"%s\",{}]",MESSAGE_TYPE_CALLRESULT, uuid);
  2849. }
  2850. else
  2851. {
  2852. sprintf(message,"[%d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "fileName", payload);
  2853. }
  2854. LWS_Send(message);
  2855. result = TRUE;
  2856. return result;
  2857. }
  2858. int sendGetLocalListVersionConfirmation(char *uuid,char *payload)
  2859. {
  2860. mtrace();
  2861. int result = FAIL;
  2862. char message[80]={0};
  2863. //[ 3, "4f0141fb-f3a0-4634-9179-b1379b514d3c", { "listVersion": 1 } ]
  2864. DEBUG_ERROR("handle GetLocalListVersionRequest ...\n");
  2865. sprintf(message,"[%d,\"%s\",{\"listVersion\":%d}]",MESSAGE_TYPE_CALLRESULT, uuid, ShmOCPP16Data->GetLocalListVersion.ResponseListVersion);
  2866. LWS_Send(message);
  2867. result = TRUE;
  2868. return result;
  2869. }
  2870. int sendRemoteStartConfirmation(char *uuid,char *payload)
  2871. {
  2872. mtrace();
  2873. int result = FAIL;
  2874. char message[80]={0};
  2875. //[3,"26f6b7bc-a6e8-48a8-bdc5-a541bf8f9e27",{"status":"Accepted"}]
  2876. DEBUG_ERROR("handleRemoteStartRequest ...\n");
  2877. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  2878. LWS_Send(message);
  2879. result = TRUE;
  2880. return result;
  2881. }
  2882. int sendRemoteStopTransactionConfirmation(char *uuid,char *payload)
  2883. {
  2884. mtrace();
  2885. int result = FAIL;
  2886. char message[80]={0};
  2887. // [3,"287d837d-809e-41ea-8385-fdab7f72a01c",{"status":"Accepted"}]
  2888. DEBUG_ERROR("sendRemoteStopTransactionConfirmation ...\n");
  2889. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  2890. LWS_Send(message);
  2891. result = TRUE;
  2892. return result;
  2893. }
  2894. int sendReserveNowTransactionConfirmation(char *uuid,char *payload)
  2895. {
  2896. mtrace();
  2897. int result = FAIL;
  2898. char message[80]={0};
  2899. // [3,"287d837d-809e-41ea-8385-fdab7f72a01c",{"status":"Accepted"}]
  2900. DEBUG_ERROR("sendReserveNowTransactionConfirmation\n");
  2901. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  2902. LWS_Send(message);
  2903. result = TRUE;
  2904. return result;
  2905. }
  2906. int sendResetConfirmation(char *uuid,char *payload)
  2907. {
  2908. mtrace();
  2909. int result = FAIL;
  2910. //[ 3, "6f88d461-4d17-462c-a69b-1f7a8c5b12df", { "status": 0 } ]
  2911. char message[80]={0};
  2912. ShmOCPP16Data->MsMsg.bits.ResetConf = 0;
  2913. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  2914. LWS_Send(message);
  2915. result = TRUE;
  2916. return result;
  2917. }
  2918. int sendSendLocalListConfirmation(char *uuid,char *payload)
  2919. {
  2920. mtrace();
  2921. int result = FAIL;
  2922. char message[500]={0};
  2923. // [ 3, "1571284266109", { "status": "Accepted" } ]
  2924. sprintf(message,"[%d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "status", payload);
  2925. LWS_Send(message);
  2926. result = TRUE;
  2927. return result;
  2928. }
  2929. int sendSetChargingProfileConfirmation(char *uuid,char *payload)
  2930. {
  2931. mtrace();
  2932. int result = FAIL;
  2933. //[3,"5748585f-8524-4fa6-9b4f-4a7eca750b90",{"status":"NotSupported"}]
  2934. char message[80]={0};
  2935. DEBUG_ERROR("handleSetChargingProfileRequest\n");
  2936. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  2937. LWS_Send(message);
  2938. result = TRUE;
  2939. return result;
  2940. }
  2941. int sendTriggerMessageConfirmation(char *uuid,char *payload)
  2942. {
  2943. mtrace();
  2944. int result = FAIL;
  2945. char message[80]={0};
  2946. DEBUG_ERROR("sendTriggerMessageConfirmation\n");
  2947. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  2948. LWS_Send(message);
  2949. result = TRUE;
  2950. return result;
  2951. }
  2952. int sendUnlockConnectorConfirmation(char *uuid,char *payload)
  2953. {
  2954. mtrace();
  2955. int result = FAIL;
  2956. char message[80]={0};
  2957. //[ 3, "ba1cbd49-2a76-493a-8f76-fa23e7606532", { "status": "Unlocked" } ]
  2958. DEBUG_ERROR("sendUnlockConnectorConfirmation\n");
  2959. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload);
  2960. LWS_Send(message);
  2961. result = TRUE;
  2962. return result;
  2963. }
  2964. int sendUpdateFirmwareConfirmation(char *uuid)
  2965. {
  2966. mtrace();
  2967. int result = FAIL;
  2968. char message[60]={0};
  2969. //[ 3, "ba1cbd49-2a76-493a-8f76-fa23e7606532", { "status": "Unlocked" } ]
  2970. DEBUG_ERROR("sendUpdateFirmwareConfirmation\n");
  2971. sprintf(message,"[%d,\"%s\",{}]",MESSAGE_TYPE_CALLRESULT, uuid);
  2972. LWS_Send(message);
  2973. result = TRUE;
  2974. return result;
  2975. }
  2976. //==========================================
  2977. // send CallError routine
  2978. //==========================================
  2979. void SendCallError(char *uniqueId, char *action, char *errorCode, char *errorDescription)
  2980. {
  2981. mtrace();
  2982. //int result = FAIL;
  2983. char message[220]={0};
  2984. // [4,"f1c52ff5-e65d-4070-b7d4-6c70bc1e8970","PropertyConstraintViolation","Payload is syntactically correct but at least one field contains an invalid value",{}]
  2985. #ifdef SystemLogMessage
  2986. DEBUG_INFO("An error occurred. Sending this information: uniqueId {}: action: {}, errorCore: {}, errorDescription: {}\n",
  2987. uniqueId, action, errorCode, errorDescription);
  2988. #endif
  2989. sprintf(message,"[%d,\"%s\",\"%s\",\"%s\",{}]",MESSAGE_TYPE_CALLERROR, uniqueId, errorCode, errorDescription);
  2990. LWS_Send(message);
  2991. //result = TRUE;
  2992. }
  2993. //==========================================
  2994. // Handle server request routine Start
  2995. //==========================================
  2996. #define GUN_NUM 1
  2997. int handleCancelReservationRequest(char *uuid, char *payload)
  2998. {
  2999. mtrace();
  3000. int result = FAIL;
  3001. int gunNO = 0;
  3002. int reservationIdInt =0;
  3003. char comfirmstr[20];
  3004. int c = 0;
  3005. char *loc;
  3006. char sstr[100]={0};
  3007. DEBUG_INFO("handle CancelReservationRequest\n");
  3008. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  3009. c = 0;
  3010. loc = strstr(payload, "reservationId");
  3011. memset(sstr ,0, sizeof(sstr) );
  3012. while (loc[strlen("reservationId")+2+c] != '}')
  3013. {
  3014. sstr[c] = loc[strlen("reservationId")+2+c];
  3015. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3016. c++;
  3017. }
  3018. sstr[c] = '\0';
  3019. reservationIdInt = atoi(sstr);
  3020. memset(comfirmstr, 0, sizeof comfirmstr);
  3021. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Rejected]);
  3022. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  3023. //check Transaction active
  3024. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  3025. {
  3026. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  3027. {
  3028. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId == reservationIdInt)
  3029. {
  3030. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
  3031. sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index].ResponseStatus, "%s", comfirmstr );
  3032. gunNO = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index;
  3033. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  3034. goto end;
  3035. }
  3036. }
  3037. for (int index = 0; index < CCS_QUANTITY; index++)
  3038. {
  3039. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId == reservationIdInt)
  3040. {
  3041. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
  3042. sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index].ResponseStatus, "%s", comfirmstr );
  3043. gunNO = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index;
  3044. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  3045. goto end;
  3046. }
  3047. }
  3048. for (int index = 0; index < GB_QUANTITY; index++)
  3049. {
  3050. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId == reservationIdInt)
  3051. {
  3052. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
  3053. sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index].ResponseStatus, "%s", comfirmstr );
  3054. gunNO = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index;
  3055. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  3056. goto end;
  3057. }
  3058. }
  3059. }
  3060. else
  3061. {
  3062. for (int index = 0; index < AC_QUANTITY; index++)
  3063. {
  3064. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId == reservationIdInt)
  3065. {
  3066. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
  3067. sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index].ResponseStatus, "%s", comfirmstr );
  3068. gunNO = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index;
  3069. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  3070. goto end;
  3071. }
  3072. }
  3073. }// END FOR AC ELSE
  3074. //The reservationId does NOT match the reservationId
  3075. sendCancelReservationConfirmation(uuid, comfirmstr);
  3076. end:
  3077. // Fill in ocpp packet uuid
  3078. strcpy((char *)ShmOCPP16Data->CancelReservation[gunNO].guid, uuid);
  3079. return result;
  3080. }
  3081. int handleChangeAvailabilityRequest(char *uuid, char *payload)
  3082. {
  3083. mtrace();
  3084. int result = FAIL;
  3085. int gunIndex = 0;
  3086. char sstr[90]={0};
  3087. char typeStr[16]={0};
  3088. char comfirmstr[20];
  3089. int specificId = FALSE;
  3090. DEBUG_ERROR("handle ChangeAvailabilityRequest\n");
  3091. char *loc;
  3092. //int intervalInt = 0;
  3093. int c = 0;
  3094. /*** connectorId ****/
  3095. c = 0;
  3096. loc = strstr(payload, "connectorId");
  3097. memset(sstr ,0, sizeof(sstr) );
  3098. while ((loc != NULL) &&(loc[strlen("connectorId")+2+c] != ',') &&(loc[strlen("connectorId")+2+c] != '}') )
  3099. {
  3100. sstr[c] = loc[strlen("connectorId")+2+c];
  3101. c++;
  3102. }
  3103. sstr[c] = '\0';
  3104. gunIndex = atoi(sstr);
  3105. /***type ****/
  3106. loc = strstr(payload, "type");
  3107. memset(sstr ,0, sizeof(sstr) );
  3108. c = 0;
  3109. while ((loc != NULL) &&(loc[3+strlen("type")+c] != '\"'))
  3110. {
  3111. sstr[c] = loc[3+strlen("type")+c];
  3112. c++;
  3113. }
  3114. sstr[c] = '\0';
  3115. strcpy(typeStr, sstr);
  3116. if(gunIndex != 0)
  3117. {
  3118. ShmOCPP16Data->ChangeAvailability[gunIndex - 1].ConnectorId= gunIndex;
  3119. sprintf((char *)ShmOCPP16Data->ChangeAvailability[gunIndex - 1].Type, "%s", typeStr);
  3120. }
  3121. else
  3122. {
  3123. ShmOCPP16Data->ChangeAvailability[0].ConnectorId= gunIndex;
  3124. sprintf((char *)ShmOCPP16Data->ChangeAvailability[0].Type, "%s", typeStr);
  3125. }
  3126. memset(comfirmstr, 0, sizeof comfirmstr);
  3127. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3128. if((gunIndex == 0) || ((gunIndex - 1) < gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/))
  3129. {
  3130. specificId = TRUE;
  3131. }
  3132. if(specificId == FALSE)
  3133. goto end;
  3134. if(gunIndex != 0)
  3135. {
  3136. ShmOCPP16Data->CsMsg.bits[gunIndex - 1].ChangeAvailabilityReq = 1;
  3137. }
  3138. else
  3139. {
  3140. for(int i=0; i < gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/; i++)
  3141. ShmOCPP16Data->CsMsg.bits[i].ChangeAvailabilityReq = 1;
  3142. }
  3143. /*
  3144. enum _SYSTEM_STATUS
  3145. {
  3146. S_BOOTING = 0,
  3147. S_IDLE, = 1
  3148. S_AUTHORIZING, =2
  3149. S_REASSIGN_CHECK, =3
  3150. S_REASSIGN, =4
  3151. S_PRECHARGE, =5
  3152. S_PREPARING_FOR_EV, =6
  3153. S_PREPARING_FOR_EVSE, =7
  3154. S_CHARGING, =8
  3155. S_TERMINATING, =9
  3156. S_COMPLETE, =10
  3157. S_ALARM, =11
  3158. S_FAULT =12
  3159. }
  3160. */
  3161. if(strcmp((const char *)typeStr, AvailabilityTypeStr[Inoperative]) == 0)
  3162. {
  3163. //check Transaction active
  3164. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  3165. {
  3166. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  3167. {
  3168. if ((gunIndex == 0) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (gunIndex - 1)))
  3169. {
  3170. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 5) // S_PRECHARGE
  3171. {
  3172. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3173. }
  3174. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 8) // S_CHARGING
  3175. {
  3176. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
  3177. }
  3178. else
  3179. {
  3180. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3181. }
  3182. goto end;
  3183. }
  3184. }//END FOR CHAdeMO_QUANTITY
  3185. for (int index = 0; index < CCS_QUANTITY; index++)
  3186. {
  3187. if ((gunIndex == 0)|| (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (gunIndex - 1)))
  3188. {
  3189. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 5)// S_PRECHARGE
  3190. {
  3191. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3192. }
  3193. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 8) // S_CHARGING
  3194. {
  3195. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
  3196. }
  3197. else
  3198. {
  3199. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3200. }
  3201. goto end;
  3202. }
  3203. }//END FOR CCS_QUANTITY
  3204. for (int index = 0; index < GB_QUANTITY; index++)
  3205. {
  3206. if ((gunIndex == 0)||(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (gunIndex - 1)))
  3207. {
  3208. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 5) // S_PRECHARGE
  3209. {
  3210. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3211. }
  3212. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8) // S_CHARGING
  3213. {
  3214. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
  3215. }
  3216. else
  3217. {
  3218. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3219. }
  3220. goto end;
  3221. }
  3222. }// END FOR GB_QUANTITY
  3223. }
  3224. else
  3225. {
  3226. for (int index = 0; index < AC_QUANTITY; index++)
  3227. {
  3228. if ((gunIndex == 0) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == (gunIndex - 1)))
  3229. {
  3230. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 5) // S_PRECHARGE
  3231. {
  3232. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3233. }
  3234. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 8) // S_CHARGING
  3235. {
  3236. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
  3237. }
  3238. else
  3239. {
  3240. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3241. }
  3242. goto end;
  3243. }
  3244. }//END FOR AC_QUANTITY
  3245. }// END FOR AC ELSE
  3246. }//END FOR AvailabilityTypeStr[Inoperative]
  3247. if(strcmp((const char *)typeStr, AvailabilityTypeStr[Operative]) == 0)
  3248. {
  3249. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  3250. //check Transaction active
  3251. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  3252. {
  3253. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  3254. {
  3255. if (((gunIndex == 0)|| (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (gunIndex - 1))) &&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != 12)) //S_FAULT
  3256. {
  3257. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3258. goto end;
  3259. }
  3260. }//END FOR CHAdeMO_QUANTITY
  3261. for (int index = 0; index < CCS_QUANTITY; index++)
  3262. {
  3263. if (((gunIndex == 0)|| (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (gunIndex - 1)))&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != 12)) //S_FAULT
  3264. {
  3265. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3266. goto end;
  3267. }
  3268. }//END FOR CCS_QUANTITY
  3269. for (int index = 0; index < GB_QUANTITY; index++)
  3270. {
  3271. if (((gunIndex == 0)||(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (gunIndex - 1)))&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != 12)) //S_FAULT
  3272. {
  3273. ShmOCPP16Data->CsMsg.bits[gunIndex - 1].ChangeAvailabilityReq = 1;
  3274. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3275. goto end;
  3276. }
  3277. }// END FOR GB_QUANTITY
  3278. //sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3279. }
  3280. else
  3281. {
  3282. for (int index = 0; index < AC_QUANTITY; index++)
  3283. {
  3284. if (((gunIndex == 0)|| (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == (gunIndex - 1))) &&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != 12)) //S_FAULT
  3285. {
  3286. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3287. goto end;
  3288. }
  3289. }//END FOR CHAdeMO_QUANTITY
  3290. }//END FOR AC ELSE
  3291. }//END FOR AvailabilityTypeStr[Operative]
  3292. end:
  3293. if(gunIndex != 0)
  3294. {
  3295. sprintf((char *)ShmOCPP16Data->ChangeAvailability[gunIndex - 1].ResponseStatus, "%s", comfirmstr );
  3296. }
  3297. else
  3298. {
  3299. sprintf((char *)ShmOCPP16Data->ChangeAvailability[0].ResponseStatus, "%s", comfirmstr );
  3300. }
  3301. sendChangeAvailabilityConfirmation(uuid, comfirmstr);
  3302. //ShmOCPP16Data->CsMsg.bits[gunIndex - 1].ChangeAvailabilityConf = 1;
  3303. return result;
  3304. }
  3305. int handleChangeConfigurationRequest(char *uuid, char *payload)
  3306. {
  3307. mtrace();
  3308. int result = FAIL;
  3309. char sstr[100]={0};
  3310. char keystr[40]={0};
  3311. char valuestr[16]={0};
  3312. char *loc;
  3313. int c = 0;
  3314. char comfirmstr[20];
  3315. DEBUG_ERROR("handle ChangeConfigurationRequest\n");
  3316. /***key ****/
  3317. loc = strstr(payload, "key");
  3318. memset(sstr ,0, sizeof(sstr) );
  3319. c = 0;
  3320. while ((loc != NULL) &&(loc[3+strlen("key")+c] != '\"'))
  3321. {
  3322. sstr[c] = loc[3+strlen("key")+c];
  3323. c++;
  3324. }
  3325. sstr[c] = '\0';
  3326. strcpy(keystr, sstr);
  3327. /***value ****/
  3328. loc = strstr(payload, "value");
  3329. memset(sstr ,0, sizeof(sstr) );
  3330. c = 0;
  3331. while ((loc != NULL) &&(loc[3+strlen("value")+c] != '\"'))
  3332. {
  3333. sstr[c] = loc[3+strlen("value")+c];
  3334. c++;
  3335. }
  3336. sstr[c] = '\0';
  3337. strcpy(valuestr, sstr);
  3338. if((uuid==NULL) || (payload ==NULL) )
  3339. {
  3340. #ifdef Debug
  3341. DEBUG_INFO("payload is null\n");
  3342. #endif
  3343. sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Rejected] );
  3344. }
  3345. else
  3346. {
  3347. int status = setKeyValue(keystr, valuestr);
  3348. switch(status)
  3349. {
  3350. case ConfigurationStatus_Accepted:
  3351. sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Accepted]);
  3352. ShmOCPP16Data->MsMsg.bits.ChangeConfigurationReq = 1;
  3353. break;
  3354. case ConfigurationStatus_Rejected:
  3355. sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Rejected] );
  3356. break;
  3357. case RebootRequired:
  3358. sprintf(comfirmstr, "%s", ConfigurationStatusStr[RebootRequired]);
  3359. break;
  3360. case NotSupported:
  3361. sprintf(comfirmstr, "%s", ConfigurationStatusStr[NotSupported] );
  3362. break;
  3363. default:
  3364. break;
  3365. }
  3366. }
  3367. //confirmation.setStatus(ConfigurationStatus.Rejected);
  3368. sendChangeConfigurationConfirmation(uuid, comfirmstr);
  3369. ShmOCPP16Data->MsMsg.bits.ChangeConfigurationConf = 1;
  3370. return result;
  3371. }
  3372. int handleClearCacheRequest(char *uuid, char *payload)
  3373. {
  3374. mtrace();
  3375. int result = FAIL;
  3376. char comfirmstr[20];
  3377. int fd;
  3378. char rmFileCmd[100]={0};
  3379. struct stat stats;
  3380. DEBUG_ERROR("handle ClearCacheRequest\n");
  3381. stat("../Storage/OCPP", &stats);
  3382. // Check for directory existence
  3383. if (S_ISDIR(stats.st_mode) == 1)
  3384. {
  3385. DEBUG_ERROR("\n OCPP directory exist \n");
  3386. }
  3387. else
  3388. {
  3389. DEBUG_ERROR("\n OCPP directory not exist, create dir \n");
  3390. sprintf(rmFileCmd,"mkdir -p %s","../Storage/OCPP");
  3391. system(rmFileCmd);
  3392. }
  3393. memset(&rmFileCmd, 0, sizeof rmFileCmd);
  3394. if((access(AuthorizationCache_JSON,F_OK))!=-1)
  3395. {
  3396. DEBUG_ERROR("AuthorizationCache file exist.\n");
  3397. }
  3398. else
  3399. {
  3400. DEBUG_ERROR("AuthorizationCache file not exist\n");
  3401. FILE *log = fopen(AuthorizationCache_JSON, "w+");
  3402. if(log == NULL)
  3403. {
  3404. DEBUG_ERROR("AuthorizationCache file is NULL\n");
  3405. sprintf(comfirmstr, "%s", ClearCacheStatusStr[ClearCacheStatus_Rejected] );
  3406. goto end;
  3407. }
  3408. else
  3409. {
  3410. fclose(log);
  3411. }
  3412. }
  3413. fd = open(AuthorizationCache_JSON,O_RDWR);
  3414. if(fd < 0)
  3415. {
  3416. DEBUG_ERROR("open AuthorizationCache file failed\n");
  3417. sprintf(comfirmstr, "%s", ClearCacheStatusStr[ClearCacheStatus_Rejected] );
  3418. }
  3419. else
  3420. {
  3421. DEBUG_ERROR("open AuthorizationCache file successful\n");
  3422. //* 清空?�件 */
  3423. ftruncate(fd,0);
  3424. //* ?�新设置?�件?�移??*/
  3425. lseek(fd,0,SEEK_SET);
  3426. close(fd);
  3427. sprintf(comfirmstr, "%s", ClearCacheStatusStr[ClearCacheStatus_Accepted] );
  3428. //ShmOCPP16Data->MsMsg.bits.ClearCacheReq = 1; //OCPP handle byself
  3429. }
  3430. end:
  3431. sendClearCacheConfirmation(uuid, comfirmstr);
  3432. //ShmOCPP16Data->MsMsg.bits.ClearCacheConf = 1; //OCPP handle byself
  3433. return result;
  3434. }
  3435. int handleClearChargingProfileRequest(char *uuid, char *payload)
  3436. {
  3437. mtrace();
  3438. int result = FAIL;
  3439. int resultRename;
  3440. int connectorIdInt, chargingProfileIdInt, stackLevelInt;
  3441. char chargingProfilePurposeStr[26]={0};
  3442. int tempconnectorIdInt, tempchargingProfileIdInt, tempstackLevelInt;
  3443. char tempchargingProfilePurposeStr[26]={0};
  3444. char sstr[160]={0};//sstr[200]={ 0 };
  3445. char str[100]={0};
  3446. int c = 0;
  3447. //int i = 0;
  3448. //char * pch;
  3449. char *loc;
  3450. char fname[200];
  3451. char comfirmstr[20]={0};
  3452. char word[1000]={0};
  3453. int clearflag = FALSE;
  3454. int chargingProfileIdIsNULL = FALSE;
  3455. int connectorIsNULL = FALSE;
  3456. FILE *fptr1, *fptr2;
  3457. char temp[] = "../Storage/OCPP/ClearChargingProfiletemp.json";
  3458. int n_chargingProfile=0;
  3459. char sLineWord[1060]={0};
  3460. DEBUG_ERROR("handle ClearChargingProfileRequest\n");
  3461. connectorIdInt= chargingProfileIdInt= stackLevelInt =0;
  3462. //***id ****/
  3463. c = 0;
  3464. loc = strstr(payload, "id");
  3465. memset(sstr ,0, sizeof(sstr) );
  3466. if(loc == NULL)
  3467. {
  3468. chargingProfileIdIsNULL = TRUE;
  3469. }
  3470. while ((loc != NULL) &&(loc[strlen("id")+2+c] != ',') )
  3471. {
  3472. sstr[c] = loc[strlen("id")+2+c];
  3473. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3474. c++;
  3475. }
  3476. sstr[c] = '\0';
  3477. chargingProfileIdInt = atoi(sstr);
  3478. //***connectorId ****/
  3479. c=0;
  3480. loc = strstr(payload, "connectorId");
  3481. memset(sstr ,0, sizeof(sstr) );
  3482. if(loc == NULL)
  3483. {
  3484. connectorIsNULL = TRUE;
  3485. }
  3486. while ((loc != NULL) &&(loc[strlen("connectorId")+2+c] != ','))
  3487. {
  3488. sstr[c] = loc[strlen("connectorId")+2+c];
  3489. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3490. c++;
  3491. }
  3492. sstr[c] = '\0';
  3493. connectorIdInt = atoi(sstr);
  3494. //***chargingProfilePurpose ****/
  3495. loc = strstr(payload, "chargingProfilePurpose");
  3496. memset(sstr ,0, sizeof(sstr) );
  3497. c = 0;
  3498. while ((loc != NULL) &&(loc[3+strlen("chargingProfilePurpose")+c] != '\"'))
  3499. {
  3500. sstr[c] = loc[3+strlen("chargingProfilePurpose")+c];
  3501. c++;
  3502. }
  3503. sstr[c] = '\0';
  3504. strcpy(chargingProfilePurposeStr, sstr);
  3505. //***stackLevel ****/
  3506. c=0;
  3507. loc = strstr(payload, "stackLevel");
  3508. memset(sstr ,0, sizeof(sstr) );
  3509. while ((loc != NULL) &&((loc[strlen("stackLevel")+2+c] != '}') && (loc[strlen("stackLevel")+2+c] != ',')))
  3510. {
  3511. sstr[c] = loc[strlen("stackLevel")+2+c];
  3512. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3513. c++;
  3514. }
  3515. sstr[c] = '\0';
  3516. stackLevelInt = atoi(sstr);
  3517. if(connectorIsNULL == FALSE)
  3518. {
  3519. switch(connectorIdInt)
  3520. {
  3521. case 0:
  3522. if(strcmp(chargingProfilePurposeStr,"ChargePointMaxProfile")==0)
  3523. {
  3524. strcpy(fname, ChargePointMaxProfile_JSON);
  3525. }
  3526. else
  3527. {
  3528. strcpy(fname, TxDefaultProfile_0_JSON);
  3529. }
  3530. break;
  3531. case 1:
  3532. if(strcmp(chargingProfilePurposeStr,"TxDefaultProfile")==0)
  3533. {
  3534. strcpy(fname, TxDefaultProfile_1_JSON);
  3535. }
  3536. else
  3537. {
  3538. strcpy(fname, TxProfile_1_JSON);
  3539. }
  3540. break;
  3541. case 2:
  3542. if(strcmp(chargingProfilePurposeStr,"TxDefaultProfile")==0)
  3543. {
  3544. strcpy(fname, TxDefaultProfile_2_JSON);
  3545. }
  3546. else
  3547. {
  3548. strcpy(fname, TxProfile_2_JSON);
  3549. }
  3550. break;
  3551. default:
  3552. strcpy(fname, ChargePointMaxProfile_JSON );
  3553. break;
  3554. }
  3555. }
  3556. else
  3557. {
  3558. strcpy(fname, ChargePointMaxProfile_JSON );
  3559. }
  3560. fptr1 = fopen(fname, "r");
  3561. if (!fptr1)
  3562. {
  3563. //file not exist
  3564. DEBUG_ERROR("Unable to open the input file!!\n");
  3565. fptr1 = fopen(fname, "w+");
  3566. }
  3567. fclose(fptr1);
  3568. if(connectorIsNULL == FALSE && (connectorIdInt != 0) && ( (connectorIdInt-1) > gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/ ) )
  3569. {
  3570. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Unknown] );
  3571. goto end;
  3572. }
  3573. if((connectorIsNULL == FALSE) && (connectorIdInt == 0) )
  3574. {
  3575. //clear the whole contents of a file in C
  3576. fclose(fopen(ChargePointMaxProfile_JSON, "w"));
  3577. fclose(fopen(TxDefaultProfile_0_JSON, "w"));
  3578. fclose(fopen(TxDefaultProfile_1_JSON, "w"));
  3579. fclose(fopen(TxDefaultProfile_2_JSON, "w"));
  3580. fclose(fopen(TxProfile_1_JSON, "w"));
  3581. fclose(fopen(TxProfile_2_JSON, "w"));
  3582. #if 0
  3583. fclose(fopen(ChargingProfile_0_JSON, "w"));
  3584. fclose(fopen(ChargingProfile_1_JSON, "w"));
  3585. fclose(fopen(ChargingProfile_2_JSON, "w"));
  3586. #endif
  3587. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
  3588. }
  3589. else
  3590. {
  3591. fptr1 = fopen(fname, "r");
  3592. fptr2 = fopen(temp, "w+");
  3593. while(fscanf(fptr1, "%s", word) != EOF)
  3594. {
  3595. DEBUG_INFO("word=%s\n",word);
  3596. if(strcmp(word, "chargingProfileId") == 0)
  3597. {
  3598. n_chargingProfile = n_chargingProfile + 1;
  3599. printf("Found\n");
  3600. }
  3601. }
  3602. rewind(fptr1);
  3603. //search Charging Profile Element
  3604. //int i= 0;
  3605. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL )
  3606. {
  3607. //*************************tempconnectorIdInt*********************************/
  3608. loc = strstr(sLineWord, "connectorId");
  3609. c = 0;
  3610. memset(sstr ,0, sizeof(sstr) );
  3611. while (loc[strlen("connectorId")+2+c] != ',')
  3612. {
  3613. sstr[c] = loc[strlen("connectorId")+2+c];
  3614. c++;
  3615. }
  3616. sstr[c] = '\0';
  3617. tempconnectorIdInt = atoi(sstr);
  3618. //chargingProfileId
  3619. c = 0;
  3620. loc = strstr(sLineWord, "chargingProfileId");
  3621. memset(sstr ,0, sizeof(sstr) );
  3622. while (loc[strlen("chargingProfileId")+2+c] != ',')
  3623. {
  3624. sstr[c] = loc[strlen("chargingProfileId")+2+c];
  3625. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3626. c++;
  3627. }
  3628. sstr[c] = '\0';
  3629. tempchargingProfileIdInt = atoi(sstr);
  3630. //stackLevel
  3631. c = 0;
  3632. loc = strstr(sLineWord, "stackLevel");
  3633. memset(sstr ,0, sizeof(sstr) );
  3634. while (loc[strlen("stackLevel")+2+c] != ',')
  3635. {
  3636. sstr[c] = loc[strlen("stackLevel")+2+c];
  3637. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3638. c++;
  3639. }
  3640. sstr[c] = '\0';
  3641. tempstackLevelInt = atoi(sstr);
  3642. c = 0;
  3643. loc = strstr(sLineWord, "chargingProfilePurpose");
  3644. memset(sstr ,0, sizeof(sstr) );
  3645. while (loc[3+strlen("chargingProfilePurpose")+c] != '\"')
  3646. {
  3647. sstr[c] = loc[3+strlen("chargingProfilePurpose")+c];
  3648. c++;
  3649. }
  3650. sstr[c] = '\0';
  3651. strcpy(tempchargingProfilePurposeStr, sstr);
  3652. if(chargingProfileIdIsNULL == FALSE)
  3653. {
  3654. DEBUG_INFO("\n OCPP clear 0 !!!\n");
  3655. if(tempchargingProfileIdInt == chargingProfileIdInt)
  3656. {
  3657. DEBUG_INFO("\n OCPP clear 0-1 !!!\n");
  3658. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
  3659. clearflag = TRUE;
  3660. break;//continue;
  3661. }
  3662. else
  3663. {
  3664. DEBUG_INFO("\n OCPP clear 0-2 !!!\n");
  3665. //json_object_array_add(newHeatMap, jsonitem);
  3666. fprintf(fptr2, sLineWord);//writing data into file
  3667. }
  3668. }
  3669. else
  3670. {
  3671. if((connectorIsNULL == FALSE) && (connectorIdInt != 0) && ( connectorIdInt == tempconnectorIdInt) && (tempstackLevelInt == stackLevelInt))
  3672. {
  3673. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
  3674. clearflag = TRUE;
  3675. break;//continue;
  3676. }
  3677. else if((connectorIsNULL == TRUE) && ((tempstackLevelInt == stackLevelInt) || (strcmp(tempchargingProfilePurposeStr, chargingProfilePurposeStr) == 0)))
  3678. {
  3679. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
  3680. clearflag = TRUE;
  3681. break;//continue;
  3682. }
  3683. else
  3684. {
  3685. //json_object_array_add(newHeatMap, jsonitem);
  3686. fprintf(fptr2, sLineWord);//writing data into file
  3687. }
  3688. }
  3689. memset(sLineWord, 0, sizeof sLineWord);
  3690. }
  3691. if(clearflag == FALSE)
  3692. {
  3693. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Unknown] );
  3694. goto end;
  3695. }
  3696. fclose(fptr1);
  3697. fclose(fptr2);
  3698. sprintf(str,"rm -f %s",fname);
  3699. system(str);
  3700. resultRename = rename(temp, fname);
  3701. if(resultRename == 0)
  3702. {
  3703. DEBUG_ERROR("File ChargingProfile renamed successfully");
  3704. }
  3705. else
  3706. {
  3707. DEBUG_ERROR("Error: unable to rename the ChargingProfile file");
  3708. }
  3709. }
  3710. end:
  3711. sendClearChargingProfileConfirmation(uuid, comfirmstr);
  3712. return result;
  3713. }
  3714. int handleDataTransferRequest(char *uuid, char *payload)
  3715. {
  3716. mtrace();
  3717. int result = FAIL;
  3718. //Payload={"vendorId":"Phihong","messageId":"MSGID","data":"Data1"}
  3719. char tempvendorId[255]={0};
  3720. char tempmessageId[50]={0};
  3721. char tempdata[50]={0};
  3722. char sstr[160]={0};//sstr[200]={ 0 };
  3723. char message[80]={0};
  3724. int c = 0;
  3725. char *loc;
  3726. DEBUG_INFO("handle DataTransferRequest\n");
  3727. if((uuid != NULL) && (payload != NULL))
  3728. {
  3729. //===============================
  3730. // vendorId
  3731. //===============================
  3732. c = 0;
  3733. loc = strstr(payload, "vendorId");
  3734. while (loc[strlen("vendorId")+3+c] != '\"')
  3735. {
  3736. sstr[c] = loc[strlen("vendorId")+3+c];
  3737. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3738. c++;
  3739. }
  3740. sstr[c] = '\0';
  3741. strcpy(tempvendorId,sstr);
  3742. //===============================
  3743. // messageId
  3744. //===============================
  3745. memset(sstr ,0, sizeof(sstr) );
  3746. c = 0;
  3747. loc = strstr(payload, "messageId");
  3748. while (loc[strlen("messageId")+3+c] != '\"')
  3749. {
  3750. sstr[c] = loc[strlen("messageId")+3+c];
  3751. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3752. c++;
  3753. }
  3754. sstr[c] = '\0';
  3755. strcpy(tempmessageId,sstr);
  3756. //===============================
  3757. // data
  3758. //===============================
  3759. memset(sstr ,0, sizeof(sstr) );
  3760. c = 0;
  3761. loc = strstr(payload, "data");
  3762. printf("loc=%s\n",loc);
  3763. while (loc[strlen("data")+3+c] != '\"')
  3764. {
  3765. sstr[c] = loc[strlen("data")+3+c];
  3766. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3767. c++;
  3768. }
  3769. sstr[c] = '\0';
  3770. strcpy(tempdata,sstr);
  3771. sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"data\":\"vendorId-%s messageId-%s data-%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "Rejected", tempvendorId, tempmessageId, tempdata );
  3772. }
  3773. else
  3774. {
  3775. char guid[37]={0};
  3776. random_uuid(guid);
  3777. //[2,"1577349264923","DataTransfer",{"vendorId":"Phihong","messageId":"MSGID","data":"Data1"}]
  3778. sprintf(message,"[%d,\"%s\",\"%s\",{\"vendorId\":\"Phihong\",\"messageId\":\"MSGID\",\"data\":\"Data1\"}]",MESSAGE_TYPE_CALL, guid, "DataTransfer");
  3779. }
  3780. LWS_Send(message);
  3781. return result;
  3782. }
  3783. #if 0
  3784. long long diff_tm(struct tm *a, struct tm *b) {
  3785. return a->tm_sec - b->tm_sec
  3786. + 60LL * (a->tm_min - b->tm_min)
  3787. + 3600LL * (a->tm_hour - b->tm_hour)
  3788. + 86400LL * (a->tm_yday - b->tm_yday)
  3789. + (a->tm_year - 70) * 31536000LL
  3790. - (a->tm_year - 69) / 4 * 86400LL
  3791. + (a->tm_year - 1) / 100 * 86400LL
  3792. - (a->tm_year + 299) / 400 * 86400LL
  3793. - (b->tm_year - 70) * 31536000LL
  3794. + (b->tm_year - 69) / 4 * 86400LL
  3795. - (b->tm_year - 1) / 100 * 86400LL
  3796. + (b->tm_year + 299) /400 * 86400LL;
  3797. }
  3798. #endif
  3799. int handleGetCompositeScheduleRequest(char *uuid, char *payload)
  3800. {
  3801. mtrace();
  3802. int result = FAIL;
  3803. int connectorIdInt, durationInt;
  3804. char chargingRateUnitStr[4]={0};
  3805. //int tempconnectorIdInt,
  3806. int tempdurationInt;
  3807. float tempminChargingRateFloat = 0.0;
  3808. char tempvalidFromStr[30]={0},tempchargingRateUnitStr[4]={0}, tempstartScheduleStr[30]={0};
  3809. int tempStartPeriodInt=0;
  3810. float tempLimitInt=0.0;//0.1;
  3811. int tempNumberPhasesInt=0;
  3812. char fname[200];
  3813. char comfirmstr[20];
  3814. //float totallimit =0.0;
  3815. float MinChargingRate =0.0;
  3816. double diff_t;
  3817. struct tm tp;
  3818. //int clearflag = FALSE;
  3819. FILE *fptr1;//, *fptr2;
  3820. //char temp[] = "../Storage/OCPP/temp.json";
  3821. int c = 0;
  3822. //int i = 0;
  3823. char * pch;
  3824. char *loc;
  3825. char sstr[200]={ 0 };
  3826. int n_chargingProfile = 0;
  3827. int n_SchedulePeriods = 0;
  3828. char SchedulePeriodList[10][200]={0};
  3829. char sLineWord[800]={0};
  3830. //int n_periods = 0;
  3831. char word[1000]={0};
  3832. int confirmPeriods = 0;
  3833. struct StructProfile ChargePointMaxProfile;
  3834. struct StructProfile TxDefaultProfile;
  3835. struct StructProfile TxProfile;
  3836. struct StructProfile TxDefaultProfiletemp[2]={0};
  3837. int TxDefaultProfileFileIsNull=FALSE;
  3838. int ChargePointMaxProfileIsNull=FALSE;
  3839. int TxProfileIsNull=FALSE;
  3840. memset(&ChargePointMaxProfile,0,sizeof(struct StructProfile));
  3841. memset(&TxDefaultProfile,0,sizeof(struct StructProfile));
  3842. memset(&TxProfile,0,sizeof(struct StructProfile));
  3843. c=0;
  3844. loc = strstr(payload, "connectorId");
  3845. memset(sstr ,0, sizeof(sstr) );
  3846. while ((loc[strlen("connectorId")+2+c] != '}') && (loc[strlen("connectorId")+2+c] != ','))
  3847. {
  3848. sstr[c] = loc[strlen("connectorId")+2+c];
  3849. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3850. c++;
  3851. }
  3852. sstr[c] = '\0';
  3853. connectorIdInt = atoi(sstr);
  3854. c=0;
  3855. loc = strstr(payload, "duration");
  3856. memset(sstr ,0, sizeof(sstr) );
  3857. while ((loc[strlen("duration")+2+c] != '}') && (loc[strlen("duration")+2+c] != ','))
  3858. {
  3859. sstr[c] = loc[strlen("duration")+2+c];
  3860. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3861. c++;
  3862. }
  3863. sstr[c] = '\0';
  3864. durationInt = atoi(sstr);
  3865. c = 0;
  3866. loc = strstr(payload, "chargingRateUnit");
  3867. memset(sstr ,0, sizeof(sstr) );
  3868. if(loc == NULL)
  3869. {
  3870. }
  3871. else
  3872. {
  3873. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  3874. {
  3875. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  3876. c++;
  3877. }
  3878. sstr[c] = '\0';
  3879. strcpy(chargingRateUnitStr, sstr);
  3880. }
  3881. memset(ShmOCPP16Data->GetCompositeSchedule, 0, sizeof(struct StructChargingSchedulePeriod)*gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/ );
  3882. if(connectorIdInt==0) // connectorId is 0
  3883. {
  3884. //******************************ChargePointMaxProfile*****************************************************/
  3885. strcpy(fname, ChargePointMaxProfile_JSON );
  3886. char word[30]={0};
  3887. char sLineWord[1060]={0};
  3888. int n_chargingProfile=0;
  3889. ChargePointMaxProfileIsNull=TRUE;
  3890. if((access(fname,F_OK))!=-1)
  3891. {
  3892. fptr1 = fopen(fname, "r");
  3893. int c;
  3894. c = fgetc(fptr1);
  3895. DEBUG_INFO("c:%d\n",c);
  3896. rewind(fptr1);
  3897. if(c == EOF)
  3898. {
  3899. DEBUG_INFO("\n End of file ChargingProfile reached.");
  3900. ChargePointMaxProfileIsNull=TRUE;
  3901. fclose(fptr1);
  3902. }
  3903. else
  3904. {
  3905. ChargePointMaxProfileIsNull=FALSE;
  3906. while(fscanf(fptr1, "%s", word) != EOF)
  3907. {
  3908. if(strcmp(word, "chargingProfileId") == 0)
  3909. {
  3910. n_chargingProfile = n_chargingProfile + 1;
  3911. printf("Found\n");
  3912. }
  3913. }
  3914. rewind(fptr1);
  3915. //search Charging Profile Element
  3916. int i= 0;
  3917. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
  3918. #if 0
  3919. /***********connectorId****************/
  3920. c = 0;
  3921. loc = strstr(sLineWord, "connectorId");
  3922. // printf("loc=%s\n",loc);
  3923. memset(sstr ,0, sizeof(sstr) );
  3924. while (loc[strlen("connectorId")+2+c] != ',')
  3925. {
  3926. sstr[c] = loc[strlen("connectorId")+2+c];
  3927. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3928. c++;
  3929. }
  3930. sstr[c] = '\0';
  3931. tempconnectorIdInt = atoi(sstr);
  3932. #endif
  3933. //***********validFrom**************/
  3934. c = 0;
  3935. loc = strstr(sLineWord, "validFrom");
  3936. //DEBUG_INFO("loc=%s\n",loc);
  3937. memset(sstr ,0, sizeof(sstr) );
  3938. if(loc != NULL)
  3939. {
  3940. while (loc[3+strlen("validFrom")+c] != '\"')
  3941. {
  3942. sstr[c] = loc[3+strlen("validFrom")+c];
  3943. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3944. c++;
  3945. }
  3946. sstr[c] = '\0';
  3947. DEBUG_INFO("validFrom=%s\n",sstr);
  3948. strcpy(tempvalidFromStr,sstr);
  3949. }
  3950. else
  3951. {
  3952. strcpy(tempvalidFromStr,"");
  3953. }
  3954. //**********startSchedule**********/
  3955. c = 0;
  3956. loc = strstr(sLineWord, "startSchedule");
  3957. //DEBUG_INFO("loc=%s\n",loc);
  3958. memset(sstr ,0, sizeof(sstr) );
  3959. while (loc[3+strlen("startSchedule")+c] != '\"')
  3960. {
  3961. sstr[c] = loc[3+strlen("startSchedule")+c];
  3962. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3963. c++;
  3964. }
  3965. sstr[c] = '\0';
  3966. strcpy(tempstartScheduleStr, sstr);
  3967. //**********startSchedule**********/
  3968. c = 0;
  3969. loc = strstr(sLineWord, "chargingRateUnit");
  3970. memset(sstr ,0, sizeof(sstr) );
  3971. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  3972. {
  3973. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  3974. c++;
  3975. }
  3976. sstr[c] = '\0';
  3977. strcpy(tempchargingRateUnitStr, sstr);
  3978. //**********minChargingRate*******/
  3979. c = 0;
  3980. loc = strstr(sLineWord, "minChargingRate");
  3981. //printf("loc=%s\n",loc);
  3982. if(loc != NULL)
  3983. {
  3984. memset(sstr ,0, sizeof(sstr) );
  3985. while (loc[3+strlen("minChargingRate")+c] != '\"')
  3986. {
  3987. sstr[c] = loc[3+strlen("minChargingRate")+c];
  3988. //printf("i=%d sstr=%c\n",c, sstr[c]);
  3989. c++;
  3990. }
  3991. sstr[c] = '\0';
  3992. tempminChargingRateFloat = atof(sstr);
  3993. }
  3994. else
  3995. {
  3996. tempminChargingRateFloat = 0.0;
  3997. }
  3998. //
  3999. strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  4000. tp.tm_isdst = -1;
  4001. time_t utc = mktime(&tp);
  4002. // current time
  4003. time_t t = time(NULL);
  4004. diff_t = difftime(t, utc);
  4005. //parsing strings to words
  4006. i = 0;
  4007. loc = strstr(sLineWord, "chargingSchedulePeriod");
  4008. loc = loc+3+strlen("chargingSchedulePeriod");
  4009. pch = strtok(loc ,"{");
  4010. while (pch != NULL)
  4011. {
  4012. strcpy(SchedulePeriodList[i], pch);
  4013. //printf ("SchedulePeriodList[%d]:%s\n",i,SchedulePeriodList[i]);
  4014. //printf ("%s\n",pch);
  4015. pch = strtok (NULL, "{");
  4016. i = i + 1;
  4017. }
  4018. n_SchedulePeriods = i;
  4019. for(int i=0;i<n_SchedulePeriods;i++)
  4020. {
  4021. //*************startPeriod****************/
  4022. c = 0;
  4023. loc = strstr(SchedulePeriodList[i], "startPeriod");
  4024. memset(sstr ,0, sizeof(sstr) );
  4025. while (loc[strlen("startPeriod")+2+c] != ',')
  4026. {
  4027. sstr[c] = loc[strlen("startPeriod")+2+c];
  4028. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4029. c++;
  4030. }
  4031. sstr[c] = '\0';
  4032. tempStartPeriodInt = atoi(sstr);
  4033. //*************limit****************/
  4034. c = 0;
  4035. loc = strstr(SchedulePeriodList[i], "limit");
  4036. memset(sstr ,0, sizeof(sstr) );
  4037. while (loc[strlen("limit")+2+c] != ',')
  4038. {
  4039. sstr[c] = loc[strlen("limit")+2+c];
  4040. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4041. c++;
  4042. }
  4043. sstr[c] = '\0';
  4044. tempLimitInt = atof(sstr);
  4045. //*************numberPhases****************/
  4046. c = 0;
  4047. loc = strstr(SchedulePeriodList[i], "numberPhases");
  4048. memset(sstr ,0, sizeof(sstr) );
  4049. while (loc[strlen("numberPhases")+2+c] != ',')
  4050. {
  4051. sstr[c] = loc[strlen("numberPhases")+2+c];
  4052. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4053. c++;
  4054. }
  4055. sstr[c] = '\0';
  4056. tempNumberPhasesInt = atoi(sstr);
  4057. ChargePointMaxProfile.Duration = durationInt;
  4058. ChargePointMaxProfile.TotalPeriod = n_SchedulePeriods;
  4059. ChargePointMaxProfile.Period[i].Limit = tempLimitInt;
  4060. ChargePointMaxProfile.Period[i].NumberPhases = tempNumberPhasesInt;
  4061. ChargePointMaxProfile.Period[i].StartPeriod = tempStartPeriodInt;
  4062. }
  4063. if(MinChargingRate < tempminChargingRateFloat)
  4064. MinChargingRate = tempminChargingRateFloat;
  4065. }
  4066. }// End of file ChargingProfile
  4067. } //THE END OF ACCESS ChargePointMaxProfile
  4068. //******************************TxDefaultProfile***********************************************/
  4069. strcpy(fname, TxDefaultProfile_0_JSON);
  4070. memset(word, 0, 30);
  4071. memset(sLineWord, 0, 1060);
  4072. //char word[30]={0};
  4073. //char sLineWord[1060]={0};
  4074. n_chargingProfile=0;
  4075. TxDefaultProfileFileIsNull=TRUE;
  4076. if((access(fname,F_OK))!=-1)
  4077. {
  4078. fptr1 = fopen(fname, "r");
  4079. c = 0;
  4080. c = fgetc(fptr1);
  4081. DEBUG_INFO("c:%d\n",c);
  4082. rewind(fptr1);
  4083. if(c == EOF)
  4084. {
  4085. DEBUG_INFO("\n End of file ChargingProfile reached.");
  4086. TxDefaultProfileFileIsNull=TRUE;
  4087. fclose(fptr1);
  4088. }
  4089. else
  4090. {
  4091. TxDefaultProfileFileIsNull=FALSE;
  4092. while(fscanf(fptr1, "%s", word) != EOF)
  4093. {
  4094. if(strcmp(word, "chargingProfileId") == 0)
  4095. {
  4096. n_chargingProfile = n_chargingProfile + 1;
  4097. printf("Found\n");
  4098. }
  4099. }
  4100. rewind(fptr1);
  4101. //search Charging Profile Element
  4102. int i= 0;
  4103. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
  4104. #if 0
  4105. /***********connectorId****************/
  4106. c = 0;
  4107. loc = strstr(sLineWord, "connectorId");
  4108. // printf("loc=%s\n",loc);
  4109. memset(sstr ,0, sizeof(sstr) );
  4110. while (loc[strlen("connectorId")+2+c] != ',')
  4111. {
  4112. sstr[c] = loc[strlen("connectorId")+2+c];
  4113. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4114. c++;
  4115. }
  4116. sstr[c] = '\0';
  4117. DEBUG_INFO("connectorId=%d\n",atoi(sstr));
  4118. tempconnectorIdInt = atoi(sstr);
  4119. #endif
  4120. //***********validFrom**************/
  4121. c = 0;
  4122. loc = strstr(sLineWord, "validFrom");
  4123. //DEBUG_INFO("loc=%s\n",loc);
  4124. memset(sstr ,0, sizeof(sstr) );
  4125. if(loc != NULL)
  4126. {
  4127. while (loc[3+strlen("validFrom")+c] != '\"')
  4128. {
  4129. sstr[c] = loc[3+strlen("validFrom")+c];
  4130. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4131. c++;
  4132. }
  4133. sstr[c] = '\0';
  4134. DEBUG_INFO("validFrom=%s\n",sstr);
  4135. strcpy(tempvalidFromStr,sstr);
  4136. }
  4137. else
  4138. {
  4139. strcpy(tempvalidFromStr,"");
  4140. }
  4141. //**********startSchedule**********/
  4142. c = 0;
  4143. loc = strstr(sLineWord, "startSchedule");
  4144. //DEBUG_INFO("loc=%s\n",loc);
  4145. memset(sstr ,0, sizeof(sstr) );
  4146. while (loc[3+strlen("startSchedule")+c] != '\"')
  4147. {
  4148. sstr[c] = loc[3+strlen("startSchedule")+c];
  4149. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4150. c++;
  4151. }
  4152. sstr[c] = '\0';
  4153. strcpy(tempstartScheduleStr, sstr);
  4154. DEBUG_INFO(" debug 3-1\n");
  4155. //**********startSchedule**********/
  4156. c = 0;
  4157. loc = strstr(sLineWord, "chargingRateUnit");
  4158. memset(sstr ,0, sizeof(sstr) );
  4159. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  4160. {
  4161. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  4162. c++;
  4163. }
  4164. sstr[c] = '\0';
  4165. strcpy(tempchargingRateUnitStr, sstr);
  4166. //**********minChargingRate*******/
  4167. c = 0;
  4168. loc = strstr(sLineWord, "minChargingRate");
  4169. //printf("loc=%s\n",loc);
  4170. if(loc != NULL)
  4171. {
  4172. memset(sstr ,0, sizeof(sstr) );
  4173. while (loc[3+strlen("minChargingRate")+c] != '\"')
  4174. {
  4175. sstr[c] = loc[3+strlen("minChargingRate")+c];
  4176. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4177. c++;
  4178. }
  4179. sstr[c] = '\0';
  4180. tempminChargingRateFloat = atof(sstr);
  4181. }
  4182. else
  4183. {
  4184. tempminChargingRateFloat = 0.0;
  4185. }
  4186. //
  4187. strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  4188. tp.tm_isdst = -1;
  4189. time_t utc = mktime(&tp);
  4190. // current time
  4191. time_t t = time(NULL);
  4192. diff_t = difftime(t, utc);
  4193. //parsing strings to words
  4194. i = 0;
  4195. loc = strstr(sLineWord, "chargingSchedulePeriod");
  4196. loc = loc+3+strlen("chargingSchedulePeriod");
  4197. pch = strtok(loc ,"{");
  4198. while (pch != NULL)
  4199. {
  4200. strcpy(SchedulePeriodList[i], pch);
  4201. //printf ("SchedulePeriodList[%d]:%s\n",i,SchedulePeriodList[i]);
  4202. //printf ("%s\n",pch);
  4203. pch = strtok (NULL, "{");
  4204. i = i + 1;
  4205. }
  4206. n_SchedulePeriods = i;
  4207. for(int i=0;i<n_SchedulePeriods;i++)
  4208. {
  4209. //*************startPeriod****************/
  4210. c = 0;
  4211. loc = strstr(SchedulePeriodList[i], "startPeriod");
  4212. memset(sstr ,0, sizeof(sstr) );
  4213. while (loc[strlen("startPeriod")+2+c] != ',')
  4214. {
  4215. sstr[c] = loc[strlen("startPeriod")+2+c];
  4216. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4217. c++;
  4218. }
  4219. sstr[c] = '\0';
  4220. tempStartPeriodInt = atoi(sstr);
  4221. //*************limit****************/
  4222. c = 0;
  4223. loc = strstr(SchedulePeriodList[i], "limit");
  4224. memset(sstr ,0, sizeof(sstr) );
  4225. while (loc[strlen("limit")+2+c] != ',')
  4226. {
  4227. sstr[c] = loc[strlen("limit")+2+c];
  4228. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4229. c++;
  4230. }
  4231. sstr[c] = '\0';
  4232. tempLimitInt = atof(sstr);
  4233. //*************numberPhases****************/
  4234. c = 0;
  4235. loc = strstr(SchedulePeriodList[i], "numberPhases");
  4236. memset(sstr ,0, sizeof(sstr) );
  4237. while (loc[strlen("numberPhases")+2+c] != ',')
  4238. {
  4239. sstr[c] = loc[strlen("numberPhases")+2+c];
  4240. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4241. c++;
  4242. }
  4243. sstr[c] = '\0';
  4244. tempNumberPhasesInt = atoi(sstr);
  4245. TxDefaultProfile.Duration = durationInt;
  4246. TxDefaultProfile.TotalPeriod = n_SchedulePeriods;
  4247. TxDefaultProfile.Period[i].Limit = tempLimitInt;
  4248. TxDefaultProfile.Period[i].NumberPhases = tempNumberPhasesInt;
  4249. TxDefaultProfile.Period[i].StartPeriod = tempStartPeriodInt;
  4250. }
  4251. if(MinChargingRate < tempminChargingRateFloat)
  4252. MinChargingRate = tempminChargingRateFloat;
  4253. }
  4254. }
  4255. }// the end of ACCESS TxDefaultProfile
  4256. // Composite Schedule
  4257. if((ChargePointMaxProfileIsNull==FALSE)&&(TxDefaultProfileFileIsNull==FALSE))
  4258. {
  4259. for(int index=0; index < TxDefaultProfile.TotalPeriod ; index++)
  4260. {
  4261. if(ChargePointMaxProfile.Period[0].Limit > TxDefaultProfile.Period[index].Limit)
  4262. {
  4263. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[index].Limit = TxDefaultProfile.Period[index].Limit;
  4264. }
  4265. else
  4266. {
  4267. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[index].Limit = ChargePointMaxProfile.Period[0].Limit;
  4268. }
  4269. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[index].NumberPhases = TxDefaultProfile.Period[index].NumberPhases; //for discussion
  4270. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[index].StartPeriod = TxDefaultProfile.Period[index].StartPeriod;
  4271. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.Duration = TxDefaultProfile.Duration;
  4272. }
  4273. }
  4274. //* Define temporary variables */
  4275. struct tm *gtime;
  4276. time_t now;
  4277. char buf[28];
  4278. /* Read the current system time */
  4279. time(&now);
  4280. /* Convert the system time to GMT (now UTC) */
  4281. gtime = gmtime(&now);
  4282. strftime(buf, 28, "%Y-%m-%dT%H:%M:%SZ", gtime);
  4283. // make .conf
  4284. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule,buf);
  4285. //MaxChargingProfilesInstalled is 10
  4286. // ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod = (struct StructChargingSchedulePeriod *) malloc(sizeof(struct StructChargingSchedulePeriod)* 9);
  4287. memset(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod, 0, sizeof(struct StructChargingSchedulePeriod)* 9);
  4288. //nPeriod = 1;
  4289. if(chargingRateUnitStr[0] != 0)
  4290. {
  4291. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit, chargingRateUnitStr );
  4292. }
  4293. else
  4294. {
  4295. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit, "" );
  4296. }
  4297. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.MinChargingRate = MinChargingRate;
  4298. sprintf(comfirmstr, "%s", GetCompositeScheduleStatusStr[GetCompositeScheduleStatus_Accepted] );
  4299. confirmPeriods = 1;
  4300. }
  4301. else if ((connectorIdInt > 0)&&((connectorIdInt -1) < gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/) )
  4302. {
  4303. //*****************************ChargePointMaxProfile******************************************/
  4304. strcpy(fname, ChargePointMaxProfile_JSON);
  4305. ChargePointMaxProfileIsNull=TRUE;
  4306. if((access(ChargePointMaxProfile_JSON,F_OK))!=-1)
  4307. {
  4308. fptr1 = fopen(fname, "r");
  4309. int c;
  4310. c = fgetc(fptr1);
  4311. DEBUG_INFO("c:%d\n",c);
  4312. rewind(fptr1);
  4313. if(c == EOF)
  4314. {
  4315. DEBUG_INFO("\n End of file reached.");
  4316. ChargePointMaxProfileIsNull=TRUE;
  4317. fclose(fptr1);
  4318. }
  4319. else
  4320. {
  4321. ChargePointMaxProfileIsNull=FALSE;
  4322. while(fscanf(fptr1, "%s", word) != EOF)
  4323. {
  4324. if(strcmp(word, "chargingProfileId") == 0)
  4325. {
  4326. n_chargingProfile = n_chargingProfile + 1;
  4327. }
  4328. }
  4329. rewind(fptr1);
  4330. //search Charging Profile Element
  4331. int i = 0;
  4332. int j = 0;
  4333. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
  4334. #if 0
  4335. /***********connectorId****************/
  4336. c = 0;
  4337. loc = strstr(sLineWord, "connectorId");
  4338. memset(sstr ,0, sizeof(sstr) );
  4339. while (loc[strlen("connectorId")+2+c] != ',')
  4340. {
  4341. sstr[c] = loc[strlen("connectorId")+2+c];
  4342. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4343. c++;
  4344. }
  4345. sstr[c] = '\0';
  4346. tempconnectorIdInt = atoi(sstr);
  4347. #endif
  4348. //***********validFrom**************/
  4349. c = 0;
  4350. loc = strstr(sLineWord, "validFrom");
  4351. if(loc != NULL)
  4352. {
  4353. memset(sstr ,0, sizeof(sstr) );
  4354. while (loc[3+strlen("validFrom")+c] != '\"')
  4355. {
  4356. sstr[c] = loc[3+strlen("validFrom")+c];
  4357. c++;
  4358. }
  4359. sstr[c] = '\0';
  4360. strcpy(tempvalidFromStr,sstr);
  4361. }
  4362. else
  4363. {
  4364. strcpy(tempvalidFromStr,"");
  4365. }
  4366. //***********validFrom**************/
  4367. c = 0;
  4368. loc = strstr(sLineWord, "duration");
  4369. if(loc != NULL)
  4370. {
  4371. memset(sstr ,0, sizeof(sstr) );
  4372. while (loc[2+strlen("duration")+c] != ',')
  4373. {
  4374. sstr[c] = loc[2+strlen("duration")+c];
  4375. c++;
  4376. }
  4377. sstr[c] = '\0';
  4378. tempdurationInt = atoi(sstr);
  4379. }
  4380. else
  4381. {
  4382. tempdurationInt = 0;
  4383. }
  4384. //**********startSchedule**********/
  4385. c = 0;
  4386. loc = strstr(sLineWord, "startSchedule");
  4387. memset(sstr ,0, sizeof(sstr) );
  4388. while (loc[3+strlen("startSchedule")+c] != '\"')
  4389. {
  4390. sstr[c] = loc[3+strlen("startSchedule")+c];
  4391. c++;
  4392. }
  4393. sstr[c] = '\0';
  4394. strcpy(tempstartScheduleStr, sstr);
  4395. //**********startSchedule**********/
  4396. c = 0;
  4397. loc = strstr(sLineWord, "chargingRateUnit");
  4398. memset(sstr ,0, sizeof(sstr) );
  4399. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  4400. {
  4401. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  4402. c++;
  4403. }
  4404. sstr[c] = '\0';
  4405. strcpy(tempchargingRateUnitStr, sstr);
  4406. //**********minChargingRate*******/
  4407. c = 0;
  4408. loc = strstr(sLineWord, "minChargingRate");
  4409. if(loc != NULL)
  4410. {
  4411. memset(sstr ,0, sizeof(sstr) );
  4412. while (loc[3+strlen("minChargingRate")+c] != '\"')
  4413. {
  4414. sstr[c] = loc[3+strlen("minChargingRate")+c];
  4415. c++;
  4416. }
  4417. sstr[c] = '\0';
  4418. tempminChargingRateFloat = atof(sstr);
  4419. }
  4420. else
  4421. {
  4422. tempminChargingRateFloat = 0.0;
  4423. }
  4424. //
  4425. strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  4426. tp.tm_isdst = -1;
  4427. time_t utc = mktime(&tp);
  4428. time_t t = time(NULL);
  4429. diff_t = difftime(t, utc);
  4430. DEBUG_INFO("diff_t=%f\n",diff_t);
  4431. DEBUG_INFO(" debug 5 -1\n");
  4432. //parsing strings to words
  4433. i = 0;
  4434. loc = strstr(sLineWord, "chargingSchedulePeriod");
  4435. loc = loc+3+strlen("chargingSchedulePeriod");
  4436. pch = strtok(loc ,"{");
  4437. while (pch != NULL)
  4438. {
  4439. strcpy(SchedulePeriodList[i], pch);
  4440. pch = strtok (NULL, "{");
  4441. i = i + 1;
  4442. }
  4443. n_SchedulePeriods = i;
  4444. for(int i=0;i<n_SchedulePeriods;i++)
  4445. {
  4446. //*************startPeriod****************/
  4447. c = 0;
  4448. loc = strstr(SchedulePeriodList[i], "startPeriod");
  4449. memset(sstr ,0, sizeof(sstr) );
  4450. while (loc[strlen("startPeriod")+2+c] != ',')
  4451. {
  4452. sstr[c] = loc[strlen("startPeriod")+2+c];
  4453. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4454. c++;
  4455. }
  4456. sstr[c] = '\0';
  4457. tempStartPeriodInt = atoi(sstr);
  4458. //*************limit****************/
  4459. c = 0;
  4460. loc = strstr(SchedulePeriodList[i], "limit");
  4461. memset(sstr ,0, sizeof(sstr) );
  4462. while (loc[strlen("limit")+2+c] != ',')
  4463. {
  4464. sstr[c] = loc[strlen("limit")+2+c];
  4465. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4466. c++;
  4467. }
  4468. sstr[c] = '\0';
  4469. tempLimitInt = atof(sstr);
  4470. //*************numberPhases****************/
  4471. c = 0;
  4472. loc = strstr(SchedulePeriodList[i], "numberPhases");
  4473. memset(sstr ,0, sizeof(sstr) );
  4474. while (loc[strlen("numberPhases")+2+c] != '}')
  4475. {
  4476. sstr[c] = loc[strlen("numberPhases")+2+c];
  4477. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4478. c++;
  4479. }
  4480. sstr[c] = '\0';
  4481. tempNumberPhasesInt = atoi(sstr);
  4482. if(j == 0)
  4483. {
  4484. ChargePointMaxProfile.Duration = tempdurationInt;
  4485. ChargePointMaxProfile.TotalPeriod = n_SchedulePeriods;
  4486. ChargePointMaxProfile.Period[i].Limit = tempLimitInt;
  4487. ChargePointMaxProfile.Period[i].NumberPhases = tempNumberPhasesInt;
  4488. ChargePointMaxProfile.Period[i].StartPeriod = tempStartPeriodInt;
  4489. }
  4490. }
  4491. if(MinChargingRate < tempminChargingRateFloat)
  4492. {
  4493. MinChargingRate = tempminChargingRateFloat;
  4494. }
  4495. if(confirmPeriods < n_SchedulePeriods)
  4496. {
  4497. confirmPeriods = n_SchedulePeriods;
  4498. }
  4499. j = j + 1;
  4500. }
  4501. fclose(fptr1);
  4502. }
  4503. }// the end of access file ChargePointMaxProfile
  4504. //****************************TxDefaultProfile************************************************/
  4505. switch(connectorIdInt)
  4506. {
  4507. case 0:
  4508. break;
  4509. case 1:
  4510. strcpy(fname, TxDefaultProfile_1_JSON );
  4511. break;
  4512. case 2:
  4513. strcpy(fname, TxDefaultProfile_2_JSON );
  4514. break;
  4515. default:
  4516. strcpy(fname, TxDefaultProfile_1_JSON );
  4517. break;
  4518. }
  4519. TxDefaultProfileFileIsNull=TRUE;
  4520. if((access(fname,F_OK))!=-1)
  4521. {
  4522. fptr1 = fopen(fname, "r");
  4523. c = 0;
  4524. c = fgetc(fptr1);
  4525. DEBUG_INFO("c:%d\n",c);
  4526. rewind(fptr1);
  4527. if(c == EOF)
  4528. {
  4529. DEBUG_INFO("\n End of file reached.");
  4530. TxDefaultProfileFileIsNull=TRUE;
  4531. fclose(fptr1);
  4532. }
  4533. else
  4534. {
  4535. TxDefaultProfileFileIsNull=FALSE;
  4536. while(fscanf(fptr1, "%s", word) != EOF)
  4537. {
  4538. if(strcmp(word, "chargingProfileId") == 0)
  4539. {
  4540. n_chargingProfile = n_chargingProfile + 1;
  4541. }
  4542. }
  4543. rewind(fptr1);
  4544. //search Charging Profile Element
  4545. int i = 0;
  4546. int j = 0;
  4547. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
  4548. #if 0
  4549. /***********connectorId****************/
  4550. c = 0;
  4551. loc = strstr(sLineWord, "connectorId");
  4552. memset(sstr ,0, sizeof(sstr) );
  4553. while (loc[strlen("connectorId")+2+c] != ',')
  4554. {
  4555. sstr[c] = loc[strlen("connectorId")+2+c];
  4556. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4557. c++;
  4558. }
  4559. sstr[c] = '\0';
  4560. tempconnectorIdInt = atoi(sstr);
  4561. #endif
  4562. //***********validFrom**************/
  4563. c = 0;
  4564. loc = strstr(sLineWord, "validFrom");
  4565. if(loc != NULL)
  4566. {
  4567. memset(sstr ,0, sizeof(sstr) );
  4568. while (loc[3+strlen("validFrom")+c] != '\"')
  4569. {
  4570. sstr[c] = loc[3+strlen("validFrom")+c];
  4571. c++;
  4572. }
  4573. sstr[c] = '\0';
  4574. strcpy(tempvalidFromStr,sstr);
  4575. }
  4576. else
  4577. {
  4578. strcpy(tempvalidFromStr,"");
  4579. }
  4580. //***********validFrom**************/
  4581. c = 0;
  4582. loc = strstr(sLineWord, "duration");
  4583. if(loc != NULL)
  4584. {
  4585. memset(sstr ,0, sizeof(sstr) );
  4586. while (loc[2+strlen("duration")+c] != ',')
  4587. {
  4588. sstr[c] = loc[2+strlen("duration")+c];
  4589. c++;
  4590. }
  4591. sstr[c] = '\0';
  4592. tempdurationInt = atoi(sstr);
  4593. }
  4594. else
  4595. {
  4596. tempdurationInt = 0;
  4597. }
  4598. //**********startSchedule**********/
  4599. c = 0;
  4600. loc = strstr(sLineWord, "startSchedule");
  4601. memset(sstr ,0, sizeof(sstr) );
  4602. while (loc[3+strlen("startSchedule")+c] != '\"')
  4603. {
  4604. sstr[c] = loc[3+strlen("startSchedule")+c];
  4605. c++;
  4606. }
  4607. sstr[c] = '\0';
  4608. strcpy(tempstartScheduleStr, sstr);
  4609. //**********startSchedule**********/
  4610. c = 0;
  4611. loc = strstr(sLineWord, "chargingRateUnit");
  4612. memset(sstr ,0, sizeof(sstr) );
  4613. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  4614. {
  4615. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  4616. c++;
  4617. }
  4618. sstr[c] = '\0';
  4619. strcpy(tempchargingRateUnitStr, sstr);
  4620. //**********minChargingRate*******/
  4621. c = 0;
  4622. loc = strstr(sLineWord, "minChargingRate");
  4623. if(loc != NULL)
  4624. {
  4625. memset(sstr ,0, sizeof(sstr) );
  4626. while (loc[3+strlen("minChargingRate")+c] != '\"')
  4627. {
  4628. sstr[c] = loc[3+strlen("minChargingRate")+c];
  4629. c++;
  4630. }
  4631. sstr[c] = '\0';
  4632. tempminChargingRateFloat = atof(sstr);
  4633. }
  4634. else
  4635. {
  4636. tempminChargingRateFloat = 0.0;
  4637. }
  4638. //
  4639. strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  4640. tp.tm_isdst = -1;
  4641. time_t utc = mktime(&tp);
  4642. time_t t = time(NULL);
  4643. diff_t = difftime(t, utc);
  4644. DEBUG_INFO("diff_t=%f\n",diff_t);
  4645. DEBUG_INFO(" debug 5 -1\n");
  4646. //parsing strings to words
  4647. i = 0;
  4648. loc = strstr(sLineWord, "chargingSchedulePeriod");
  4649. loc = loc+3+strlen("chargingSchedulePeriod");
  4650. pch = strtok(loc ,"{");
  4651. while (pch != NULL)
  4652. {
  4653. strcpy(SchedulePeriodList[i], pch);
  4654. pch = strtok (NULL, "{");
  4655. i = i + 1;
  4656. }
  4657. n_SchedulePeriods = i;
  4658. for(int i=0;i<n_SchedulePeriods;i++)
  4659. {
  4660. //*************startPeriod****************/
  4661. c = 0;
  4662. loc = strstr(SchedulePeriodList[i], "startPeriod");
  4663. memset(sstr ,0, sizeof(sstr) );
  4664. while (loc[strlen("startPeriod")+2+c] != ',')
  4665. {
  4666. sstr[c] = loc[strlen("startPeriod")+2+c];
  4667. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4668. c++;
  4669. }
  4670. sstr[c] = '\0';
  4671. tempStartPeriodInt = atoi(sstr);
  4672. //*************limit****************/
  4673. c = 0;
  4674. loc = strstr(SchedulePeriodList[i], "limit");
  4675. memset(sstr ,0, sizeof(sstr) );
  4676. while (loc[strlen("limit")+2+c] != ',')
  4677. {
  4678. sstr[c] = loc[strlen("limit")+2+c];
  4679. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4680. c++;
  4681. }
  4682. sstr[c] = '\0';
  4683. tempLimitInt = atof(sstr);
  4684. //*************numberPhases****************/
  4685. c = 0;
  4686. loc = strstr(SchedulePeriodList[i], "numberPhases");
  4687. memset(sstr ,0, sizeof(sstr) );
  4688. while (loc[strlen("numberPhases")+2+c] != '}')
  4689. {
  4690. sstr[c] = loc[strlen("numberPhases")+2+c];
  4691. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4692. c++;
  4693. }
  4694. sstr[c] = '\0';
  4695. tempNumberPhasesInt = atoi(sstr);
  4696. if(j == 0)
  4697. {
  4698. TxDefaultProfile.Duration = tempdurationInt;
  4699. TxDefaultProfile.TotalPeriod = n_SchedulePeriods;
  4700. TxDefaultProfile.Period[i].Limit = tempLimitInt;
  4701. TxDefaultProfile.Period[i].NumberPhases = tempNumberPhasesInt;
  4702. TxDefaultProfile.Period[i].StartPeriod = tempStartPeriodInt;
  4703. }
  4704. else
  4705. {
  4706. //other stack level charging Profile
  4707. TxDefaultProfiletemp[j-1].Period[i].Limit = tempLimitInt;
  4708. TxDefaultProfiletemp[j-1].Period[i].NumberPhases = tempNumberPhasesInt;
  4709. TxDefaultProfiletemp[j-1].Period[i].StartPeriod = tempStartPeriodInt;
  4710. TxDefaultProfiletemp[j-1].Duration = tempdurationInt;
  4711. TxDefaultProfiletemp[j-1].TotalPeriod = n_SchedulePeriods;
  4712. }
  4713. }
  4714. if(MinChargingRate < tempminChargingRateFloat)
  4715. MinChargingRate = tempminChargingRateFloat;
  4716. if(confirmPeriods < n_SchedulePeriods)
  4717. confirmPeriods = n_SchedulePeriods;
  4718. j = j + 1;
  4719. }
  4720. fclose(fptr1);
  4721. //Stacking Charging Profiles
  4722. for(int l=0; l <(j-1) ;l++)
  4723. {
  4724. for(int k=0; k < TxDefaultProfiletemp[l].TotalPeriod; k++)
  4725. {
  4726. if(TxDefaultProfiletemp[l].Period[k].StartPeriod > TxDefaultProfile.Duration)
  4727. {
  4728. if((k >0) && ((TxDefaultProfiletemp[l].Period[k-1].StartPeriod < TxDefaultProfile.Duration) &&(TxDefaultProfiletemp[l].Period[k-1].StartPeriod >= TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod-1].StartPeriod )))
  4729. {
  4730. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].Limit = TxDefaultProfiletemp[l].Period[k-1].Limit;
  4731. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].NumberPhases = TxDefaultProfiletemp[l].Period[k-1].NumberPhases;
  4732. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].StartPeriod = TxDefaultProfile.Duration;
  4733. TxDefaultProfile.TotalPeriod = TxDefaultProfile.TotalPeriod + 1;
  4734. TxDefaultProfile.Duration = TxDefaultProfiletemp[l].Duration;
  4735. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].Limit = TxDefaultProfiletemp[l].Period[k].Limit;
  4736. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].NumberPhases = TxDefaultProfiletemp[l].Period[k].NumberPhases;
  4737. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].StartPeriod = TxDefaultProfiletemp[l].Period[k].StartPeriod;
  4738. TxDefaultProfile.TotalPeriod = TxDefaultProfile.TotalPeriod + 1;
  4739. TxDefaultProfile.Duration = TxDefaultProfiletemp[l].Duration;
  4740. }
  4741. else
  4742. {
  4743. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].Limit = TxDefaultProfiletemp[l].Period[k].Limit;
  4744. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].NumberPhases = TxDefaultProfiletemp[l].Period[k].NumberPhases;
  4745. TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].StartPeriod = TxDefaultProfiletemp[l].Period[k].StartPeriod;
  4746. TxDefaultProfile.TotalPeriod = TxDefaultProfile.TotalPeriod + 1;
  4747. TxDefaultProfile.Duration = TxDefaultProfiletemp[l].Duration;
  4748. }
  4749. }
  4750. }
  4751. }
  4752. //end of Stacking Charging Profiles
  4753. }
  4754. }// the end of ACCESS TxDefaultProfile
  4755. //****************************TxProfile************************************************/
  4756. switch(connectorIdInt)
  4757. {
  4758. case 0:
  4759. break;
  4760. case 1:
  4761. strcpy(fname, TxProfile_1_JSON );
  4762. break;
  4763. case 2:
  4764. strcpy(fname, TxProfile_2_JSON );
  4765. break;
  4766. default:
  4767. strcpy(fname, TxProfile_1_JSON );
  4768. break;
  4769. }
  4770. TxProfileIsNull=TRUE;
  4771. if((access(fname,F_OK))!=-1)
  4772. {
  4773. fptr1 = fopen(fname, "r");
  4774. c = 0;
  4775. c = fgetc(fptr1);
  4776. DEBUG_INFO("c:%d\n",c);
  4777. rewind(fptr1);
  4778. if(c == EOF)
  4779. {
  4780. DEBUG_INFO("\n End of file reached.");
  4781. TxProfileIsNull=TRUE;
  4782. fclose(fptr1);
  4783. }
  4784. else
  4785. {
  4786. TxProfileIsNull=FALSE;
  4787. while(fscanf(fptr1, "%s", word) != EOF)
  4788. {
  4789. if(strcmp(word, "chargingProfileId") == 0)
  4790. {
  4791. n_chargingProfile = n_chargingProfile + 1;
  4792. }
  4793. }
  4794. rewind(fptr1);
  4795. //search Charging Profile Element
  4796. int i= 0;
  4797. while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
  4798. #if 0
  4799. /***********connectorId****************/
  4800. c = 0;
  4801. loc = strstr(sLineWord, "connectorId");
  4802. memset(sstr ,0, sizeof(sstr) );
  4803. while (loc[strlen("connectorId")+2+c] != ',')
  4804. {
  4805. sstr[c] = loc[strlen("connectorId")+2+c];
  4806. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4807. c++;
  4808. }
  4809. sstr[c] = '\0';
  4810. tempconnectorIdInt = atoi(sstr);
  4811. #endif
  4812. //***********validFrom**************/
  4813. c = 0;
  4814. loc = strstr(sLineWord, "validFrom");
  4815. if(loc != NULL)
  4816. {
  4817. memset(sstr ,0, sizeof(sstr) );
  4818. while (loc[3+strlen("validFrom")+c] != '\"')
  4819. {
  4820. sstr[c] = loc[3+strlen("validFrom")+c];
  4821. c++;
  4822. }
  4823. sstr[c] = '\0';
  4824. strcpy(tempvalidFromStr,sstr);
  4825. }
  4826. else
  4827. {
  4828. strcpy(tempvalidFromStr,"");
  4829. }
  4830. //**********startSchedule**********/
  4831. c = 0;
  4832. loc = strstr(sLineWord, "startSchedule");
  4833. memset(sstr ,0, sizeof(sstr) );
  4834. while (loc[3+strlen("startSchedule")+c] != '\"')
  4835. {
  4836. sstr[c] = loc[3+strlen("startSchedule")+c];
  4837. c++;
  4838. }
  4839. sstr[c] = '\0';
  4840. strcpy(tempstartScheduleStr, sstr);
  4841. //**********startSchedule**********/
  4842. c = 0;
  4843. loc = strstr(sLineWord, "chargingRateUnit");
  4844. memset(sstr ,0, sizeof(sstr) );
  4845. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  4846. {
  4847. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  4848. c++;
  4849. }
  4850. sstr[c] = '\0';
  4851. strcpy(tempchargingRateUnitStr, sstr);
  4852. //**********minChargingRate*******/
  4853. c = 0;
  4854. loc = strstr(sLineWord, "minChargingRate");
  4855. if(loc != NULL)
  4856. {
  4857. memset(sstr ,0, sizeof(sstr) );
  4858. while (loc[3+strlen("minChargingRate")+c] != '\"')
  4859. {
  4860. sstr[c] = loc[3+strlen("minChargingRate")+c];
  4861. c++;
  4862. }
  4863. sstr[c] = '\0';
  4864. tempminChargingRateFloat = atof(sstr);
  4865. }
  4866. else
  4867. {
  4868. tempminChargingRateFloat = 0.0;
  4869. }
  4870. //
  4871. strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  4872. tp.tm_isdst = -1;
  4873. time_t utc = mktime(&tp);
  4874. time_t t = time(NULL);
  4875. diff_t = difftime(t, utc);
  4876. DEBUG_INFO("diff_t=%f\n",diff_t);
  4877. //parsing strings to words
  4878. i = 0;
  4879. loc = strstr(sLineWord, "chargingSchedulePeriod");
  4880. loc = loc+3+strlen("chargingSchedulePeriod");
  4881. pch = strtok(loc ,"{");
  4882. while (pch != NULL)
  4883. {
  4884. strcpy(SchedulePeriodList[i], pch);
  4885. pch = strtok (NULL, "{");
  4886. i = i + 1;
  4887. }
  4888. n_SchedulePeriods = i;
  4889. for(int i=0;i<n_SchedulePeriods;i++)
  4890. {
  4891. //*************startPeriod****************/
  4892. c = 0;
  4893. loc = strstr(SchedulePeriodList[i], "startPeriod");
  4894. memset(sstr ,0, sizeof(sstr) );
  4895. while (loc[strlen("startPeriod")+2+c] != ',')
  4896. {
  4897. sstr[c] = loc[strlen("startPeriod")+2+c];
  4898. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4899. c++;
  4900. }
  4901. sstr[c] = '\0';
  4902. tempStartPeriodInt = atoi(sstr);
  4903. //*************limit****************/
  4904. c = 0;
  4905. loc = strstr(SchedulePeriodList[i], "limit");
  4906. memset(sstr ,0, sizeof(sstr) );
  4907. while (loc[strlen("limit")+2+c] != ',')
  4908. {
  4909. sstr[c] = loc[strlen("limit")+2+c];
  4910. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4911. c++;
  4912. }
  4913. sstr[c] = '\0';
  4914. tempLimitInt = atof(sstr);
  4915. //*************numberPhases****************/
  4916. c = 0;
  4917. loc = strstr(SchedulePeriodList[i], "numberPhases");
  4918. memset(sstr ,0, sizeof(sstr) );
  4919. while (loc[strlen("numberPhases")+2+c] != '}')
  4920. {
  4921. sstr[c] = loc[strlen("numberPhases")+2+c];
  4922. //printf("i=%d sstr=%c\n",c, sstr[c]);
  4923. c++;
  4924. }
  4925. sstr[c] = '\0';
  4926. tempNumberPhasesInt = atoi(sstr);
  4927. TxProfile.Duration = durationInt;
  4928. TxProfile.TotalPeriod = n_SchedulePeriods;
  4929. TxProfile.Period[i].Limit = tempLimitInt;
  4930. TxProfile.Period[i].NumberPhases = tempNumberPhasesInt;
  4931. TxProfile.Period[i].StartPeriod = tempStartPeriodInt;
  4932. }
  4933. if(MinChargingRate < tempminChargingRateFloat)
  4934. MinChargingRate = tempminChargingRateFloat;
  4935. if(confirmPeriods < n_SchedulePeriods)
  4936. confirmPeriods = n_SchedulePeriods;
  4937. }
  4938. fclose(fptr1);
  4939. }
  4940. }// the end of ACCESS TxProfile
  4941. //CompositeSchedule
  4942. int period=0;
  4943. if((TxDefaultProfileFileIsNull==FALSE) && (ChargePointMaxProfileIsNull==FALSE) && (TxProfileIsNull==FALSE) )
  4944. {
  4945. for(int k=0; k < TxProfile.TotalPeriod;k++)
  4946. {
  4947. if(TxProfile.Period[k].Limit < ChargePointMaxProfile.Period[0].Limit)
  4948. {
  4949. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = TxProfile.Period[k].Limit;
  4950. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = TxProfile.Period[k].NumberPhases;
  4951. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxProfile.Period[k].StartPeriod;
  4952. period = period + 1;
  4953. }
  4954. else
  4955. {
  4956. if( (TxProfile.Period[k-1].Limit >= ChargePointMaxProfile.Period[0].Limit) && (TxProfile.Period[k].Limit >= ChargePointMaxProfile.Period[0].Limit))
  4957. {
  4958. }
  4959. else
  4960. {
  4961. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = ChargePointMaxProfile.Period[0].Limit;
  4962. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = TxProfile.Period[k].NumberPhases;
  4963. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxProfile.Period[k].StartPeriod;
  4964. period = period + 1;
  4965. }
  4966. }
  4967. }
  4968. for(int l=0; l < TxDefaultProfile.TotalPeriod;l++)
  4969. {
  4970. if((TxDefaultProfile.Period[l].StartPeriod < durationInt)&&(TxDefaultProfile.Period[l].StartPeriod > ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period-1].StartPeriod))
  4971. {
  4972. if(TxDefaultProfile.Period[l].Limit < ChargePointMaxProfile.Period[0].Limit)
  4973. {
  4974. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = TxDefaultProfile.Period[l].Limit;
  4975. }
  4976. else
  4977. {
  4978. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = ChargePointMaxProfile.Period[0].Limit;
  4979. }
  4980. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
  4981. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
  4982. period = period + 1;
  4983. }
  4984. }
  4985. if((TxDefaultProfile.Duration < durationInt) && (ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period-1].Limit) < ChargePointMaxProfile.Period[0].Limit)
  4986. {
  4987. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = ChargePointMaxProfile.Period[0].Limit;
  4988. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period-1].NumberPhases;
  4989. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxDefaultProfile.Duration;
  4990. period = period + 1;
  4991. }
  4992. }
  4993. else if((TxDefaultProfileFileIsNull==FALSE) && (ChargePointMaxProfileIsNull==FALSE) && (TxProfileIsNull==TRUE) )
  4994. {
  4995. for(int l=0; l < TxDefaultProfile.TotalPeriod;l++)
  4996. {
  4997. if(TxProfile.Period[l].Limit < ChargePointMaxProfile.Period[0].Limit)
  4998. {
  4999. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].Limit = TxDefaultProfile.Period[l].Limit;
  5000. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
  5001. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
  5002. period = period + 1;
  5003. }
  5004. else
  5005. {
  5006. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].Limit = ChargePointMaxProfile.Period[0].Limit;
  5007. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
  5008. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
  5009. period = period + 1;
  5010. }
  5011. }
  5012. }
  5013. else if((TxDefaultProfileFileIsNull==FALSE) && (ChargePointMaxProfileIsNull==TRUE) && (TxProfileIsNull==TRUE) )
  5014. {
  5015. for(int l=0; l < TxDefaultProfile.TotalPeriod;l++)
  5016. {
  5017. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].Limit = TxDefaultProfile.Period[l].Limit;
  5018. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
  5019. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[l].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
  5020. period = period + 1;
  5021. }
  5022. }
  5023. confirmPeriods = period;
  5024. //DEBUG_INFO("confirmPeriods=%d\n",confirmPeriods);
  5025. //* Define temporary variables */
  5026. struct tm *gtime;
  5027. time_t now;
  5028. char buf[28];
  5029. //* Read the current system time */
  5030. time(&now);
  5031. //* Convert the system time to GMT (now UTC) */
  5032. gtime = gmtime(&now);
  5033. strftime(buf, 28, "%Y-%m-%dT%H:%M:%SZ", gtime);
  5034. // make .conf
  5035. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule,buf);
  5036. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.Duration = durationInt;
  5037. //DEBUG_INFO(" debug 11\n");
  5038. // if(chargingRateUnitStr[0] != 0)
  5039. // {
  5040. // strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit, chargingRateUnitStr );
  5041. // }
  5042. // else
  5043. {
  5044. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit, tempchargingRateUnitStr );
  5045. }
  5046. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.MinChargingRate = MinChargingRate;
  5047. sprintf(comfirmstr, "%s", GetCompositeScheduleStatusStr[GetCompositeScheduleStatus_Accepted] );
  5048. }
  5049. else
  5050. {
  5051. sprintf(comfirmstr, "%s", GetCompositeScheduleStatusStr[GetCompositeScheduleStatus_Accepted] );
  5052. }
  5053. sendGetCompositeScheduleConfirmation(uuid,comfirmstr, connectorIdInt, confirmPeriods);
  5054. return result;
  5055. }
  5056. int handleGetConfigurationRequest(char *uuid, char *payload)
  5057. {
  5058. mtrace();
  5059. int result = FAIL;
  5060. // struct json_object *obj=NULL, *key=NULL;// *jsonitem;
  5061. //struct json_object *jsonitem;
  5062. int MaxKeySupported = 0;
  5063. int n_keys = 0;
  5064. char requestKey[43][50]={0};
  5065. char search[]="[";
  5066. char sstr[500]={ 0 };
  5067. //int pos;
  5068. int l, c = 0;
  5069. int i = 0;
  5070. char *delim = "\",\"";
  5071. char * pch;
  5072. char *loc = strstr(payload, search);
  5073. //********************* Parsing String ***********************************/
  5074. if(loc == NULL) {
  5075. DEBUG_INFO("no key match in Configuration \n");
  5076. }
  5077. else {
  5078. //pos = loc - payload;
  5079. l = strlen(loc)-4;
  5080. while (c < l)
  5081. {
  5082. sstr[c] = loc[c+2];
  5083. c++;
  5084. }
  5085. sstr[c] = '\0';
  5086. //parsing strings to words
  5087. pch = strtok(sstr,delim);
  5088. if(pch == NULL)
  5089. {
  5090. strcpy(requestKey[0], sstr);
  5091. }
  5092. else
  5093. {
  5094. while (pch != NULL)
  5095. {
  5096. strcpy(requestKey[i], pch);
  5097. pch = strtok (NULL, delim);
  5098. i = i + 1;
  5099. }
  5100. n_keys = i;
  5101. }
  5102. }
  5103. UnknownKeynum = 0;
  5104. memset( (void *)unknownkey, 0, sizeof(unknownkey)/*sizeof(char)*10*20*/ );
  5105. MaxKeySupported = GetConfigurationMaxKeysNUM;//atoi(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData);
  5106. memset(ShmOCPP16Data->GetConfiguration.Key, 0 ,sizeof(struct StructConfigurationKeyItems)*MaxKeySupported);
  5107. memset(ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey, 0, sizeof(struct StructConfigurationKey)*MaxKeySupported);
  5108. if(n_keys != 0)
  5109. {
  5110. for(int i=0;i<n_keys;i++)
  5111. {
  5112. getKeyValue(requestKey[i]);
  5113. //json_object_put(jsonitem);
  5114. }
  5115. }
  5116. else
  5117. {
  5118. DEBUG_INFO("There is no key in Message, get all configuration\n");
  5119. getKeyValue("");
  5120. }
  5121. processUnkownKey();
  5122. sendGetConfigurationConfirmation(uuid);
  5123. return result;
  5124. }
  5125. int handleGetDiagnosticsRequest(char *uuid, char *payload)
  5126. {
  5127. mtrace();
  5128. int result = FAIL;
  5129. //void *ret; //
  5130. char fnamePlusPath[50]="";
  5131. char fname[16]="";
  5132. pthread_t t; // pthread 變數
  5133. time_t rawtime;
  5134. struct tm * timeinfo;
  5135. //system("exec /root/Module_WebService 'log' 6"); // for OCTT TEST
  5136. system("exec /root/logPackTools 'log' 6");
  5137. //char buffer [128];
  5138. time (&rawtime);
  5139. //printf("%ld\n", rawtime);
  5140. timeinfo = localtime (&rawtime);
  5141. strftime (fnamePlusPath,sizeof(fnamePlusPath),"../mnt/%4Y-%2m.zip",timeinfo);
  5142. DEBUG_INFO("fnamePlusPath =%s\n",fnamePlusPath);
  5143. if((access(fnamePlusPath,F_OK))!=-1)
  5144. {
  5145. DEBUG_INFO("fnamePlusPath exist.\n");
  5146. strftime (fname,sizeof(fname),"%4Y-%2m.zip",timeinfo);
  5147. }
  5148. else
  5149. {
  5150. DEBUG_INFO("fnamePlusPath not exist!\n");
  5151. }
  5152. sendGetDiagnosticsConfirmation(uuid,fname/*(char*) ret*/);
  5153. pthread_create(&t, NULL, GetDiagnosticsProcess, payload);
  5154. pthread_join(t, NULL/*&ret*/);
  5155. return result;
  5156. }
  5157. void* GetDiagnosticsProcess(void* data)
  5158. {
  5159. mtrace();
  5160. int retriesInt=0, retryIntervalInt=0;
  5161. char locationstr[100]={0}, startTimestr[30]={0}, stopTimestr[30]={0} ;
  5162. int retriesIsNULL,retryIntervalIsNULL, startTimeIsNULL, stopTimeIsNULL;
  5163. 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};
  5164. int port=0;
  5165. char fnamePlusPath[50]="";//="00000_2019-06-09_160902_CSULog.zip";
  5166. char fname[16]="";
  5167. char sstr[260]={ 0 };//sstr[200]={ 0 };
  5168. int c = 0;
  5169. char *loc;
  5170. int isSuccess = FALSE;
  5171. char ftpbuf[200]={0};
  5172. //char temp[100]={0};
  5173. char * pch;
  5174. // [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"}]
  5175. char *str = (char*) data; // ?��?輸入資�?
  5176. retriesIsNULL = retryIntervalIsNULL = startTimeIsNULL = stopTimeIsNULL = FALSE;
  5177. DEBUG_INFO("sendDiagnosticsStatusNotificationRequest 1\n");
  5178. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_Uploading]);
  5179. //****************location*******************/
  5180. c = 0;
  5181. memset(sstr ,0, sizeof(sstr) );
  5182. loc = strstr(str, "location");
  5183. while (loc[3+strlen("location")+c] != '\"')
  5184. {
  5185. sstr[c] = loc[3+strlen("location")+c];
  5186. c++;
  5187. }
  5188. sstr[c] = '\0';
  5189. strcpy(locationstr,sstr);
  5190. if(strcmp(locationstr,"")==0)
  5191. {
  5192. DEBUG_INFO("location is <Empty>!\n");
  5193. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
  5194. goto end;
  5195. }
  5196. //****************retries*******************/
  5197. c = 0;
  5198. loc = strstr(str, "retries");
  5199. if(loc == NULL)
  5200. {
  5201. retriesIsNULL = TRUE;
  5202. }
  5203. else
  5204. {
  5205. while (loc[strlen("retries")+2+c] != ',')
  5206. {
  5207. sstr[c] = loc[strlen("retries")+2+c];
  5208. c++;
  5209. }
  5210. sstr[c] = '\0';
  5211. retriesInt = atoi(sstr);
  5212. }
  5213. if(retriesIsNULL == TRUE)
  5214. {
  5215. retriesInt = 0;
  5216. }
  5217. //****************retryInterval*******************/
  5218. c = 0;
  5219. loc = strstr(str, "retryInterval");
  5220. if(loc == NULL)
  5221. {
  5222. retryIntervalIsNULL = TRUE;
  5223. }
  5224. else
  5225. {
  5226. while (loc[strlen("retryInterval")+2+c] != ',')
  5227. {
  5228. sstr[c] = loc[strlen("retryInterval")+2+c];
  5229. c++;
  5230. }
  5231. sstr[c] = '\0';
  5232. retryIntervalInt = atoi(sstr);
  5233. }
  5234. //****************startTime*******************/
  5235. c = 0;
  5236. memset(sstr ,0, sizeof(sstr) );
  5237. loc = strstr(str, "startTime");
  5238. if(loc == NULL)
  5239. {
  5240. startTimeIsNULL = TRUE;
  5241. }
  5242. else
  5243. {
  5244. while (loc[3+strlen("startTime")+c] != '\"')
  5245. {
  5246. sstr[c] = loc[3+strlen("startTime")+c];
  5247. c++;
  5248. }
  5249. sstr[c] = '\0';
  5250. strcpy(startTimestr,sstr);
  5251. }
  5252. //****************stopTime*******************/
  5253. c = 0;
  5254. memset(sstr ,0, sizeof(sstr) );
  5255. loc = strstr(str, "stopTime");
  5256. if(loc == NULL)
  5257. {
  5258. stopTimeIsNULL = TRUE;
  5259. }
  5260. else
  5261. {
  5262. while (loc[3+strlen("stopTime")+c] != '\"')
  5263. {
  5264. sstr[c] = loc[3+strlen("stopTime")+c];
  5265. c++;
  5266. }
  5267. sstr[c] = '\0';
  5268. strcpy(stopTimestr,sstr);
  5269. }
  5270. memset(protocol, 0, sizeof(protocol));
  5271. memset(user, 0, sizeof(user) );
  5272. memset(password, 0, sizeof(password));
  5273. memset(host, 0, sizeof(host));
  5274. memset(path, 0, sizeof(path));
  5275. memset(ftppath, 0, sizeof(ftppath));
  5276. memset(host1, 0, sizeof(host1));
  5277. memset(path1, 0, sizeof(path1));
  5278. /*location: ftp://user:password@host:port/path*/
  5279. //sscanf(locationstr,"%[^:]:%*2[/]%[^:]:%[^@]@%[^:]%d[^/]/%[a-zA-Z0-9._/-]",
  5280. // protocol, user, password, host, &port, path);
  5281. #if 0 // remove for temporally
  5282. //zip files in /Storage
  5283. system("exec /root/logPackTools 'log' 6");
  5284. #endif
  5285. // system("exec /root/Module_WebService 'log' 6");
  5286. time_t rawtime;
  5287. struct tm * timeinfo;
  5288. //char buffer [128];
  5289. time (&rawtime);
  5290. //printf("%ld\n", rawtime);
  5291. timeinfo = localtime (&rawtime);
  5292. strftime (fnamePlusPath,sizeof(fnamePlusPath),"../mnt/%4Y-%2m.zip",timeinfo);
  5293. strftime (fname,sizeof(fname),"%4Y-%2m.zip",timeinfo);
  5294. DEBUG_INFO("fnamePlusPath =%s\n",fnamePlusPath);
  5295. if((access(fnamePlusPath,F_OK))!=-1)
  5296. {
  5297. DEBUG_INFO("fnamePlusPath exist.\n");
  5298. }
  5299. else
  5300. {
  5301. DEBUG_INFO("fnamePlusPath not exist!\n");
  5302. goto end;
  5303. }
  5304. pch=strchr(locationstr,'@');
  5305. if(pch==NULL)
  5306. {
  5307. sscanf(locationstr,
  5308. "%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
  5309. protocol, host, &port, path);
  5310. strcpy(user,"anonymous");
  5311. strcpy(password,"");
  5312. }
  5313. else
  5314. {
  5315. DEBUG_INFO("pch=%s\n", pch);
  5316. sscanf(locationstr,"%[^:]:%*2[/]%[^:]:%[^@]@%[^:]:%i/%199[^\n]",
  5317. protocol, user, password, host, &port, path);
  5318. }
  5319. if(strcmp(protocol,"ftp")!=0)
  5320. {
  5321. DEBUG_INFO("protocol is not ftp!\n");
  5322. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
  5323. goto end;
  5324. }
  5325. sscanf(host,"%[^/]%s",host1, path1);
  5326. sprintf(ftppath,"%s", path1);
  5327. DEBUG_INFO("protocol =%s\n",protocol);
  5328. DEBUG_INFO("user =%s\n",user);
  5329. DEBUG_INFO("password =%s\n",password);
  5330. DEBUG_INFO("host1 =%s\n",host1);
  5331. DEBUG_INFO("port =%d\n",port);
  5332. DEBUG_INFO("path1 =%s\n",path1);
  5333. DEBUG_INFO("ftppath=%s\n",ftppath);
  5334. int ftppathlen=strlen(ftppath);
  5335. int i=1;
  5336. char filenametemp[50];
  5337. while(i < ftppathlen)
  5338. {
  5339. int len=ftppathlen-i;
  5340. if(ftppath[len]== 47) // '/' ascll code: 47
  5341. {
  5342. DEBUG_INFO("find '/' all right\n");
  5343. break;
  5344. }
  5345. i=i+1;
  5346. }
  5347. memset(filenametemp, 0, sizeof(filenametemp));
  5348. strncpy(filenametemp, ftppath+(ftppathlen-i+1), i+1);
  5349. filenametemp[i+1] = 0;
  5350. //httpDownLoadFile(host, ftppath, fname);
  5351. memset(ftpbuf, 0, sizeof(ftpbuf));
  5352. if(port == 0)
  5353. port = 21;
  5354. //isSuccess = httpDownLoadFile(host1, ftppath, filenametemp, "http://evsocket.phihong.com.tw/UploadFiles/SW/C81FBD4A740F69286B276C68B5074373.jar");
  5355. do{
  5356. isSuccess = ftpFile(/*"test.evsocket.phihong.com.cn","phihong","y42j/4cj84",21,"/",fname*/host1, user, password, port, ftppath, fnamePlusPath, fname);
  5357. sleep(retryIntervalInt);
  5358. }while((!isSuccess)&&(retriesInt > 0 && retriesInt --));
  5359. if(!isSuccess)
  5360. {
  5361. //BulldogUtil.sleepMs(interval*1000);
  5362. DEBUG_INFO("Diagnostics fail.\n");
  5363. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
  5364. }
  5365. else
  5366. {
  5367. DEBUG_INFO("sendDiagnosticsStatusNotificationRequest Uploaded\n");
  5368. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_Uploaded]);
  5369. //isUpdateRequest = TRUE;
  5370. }
  5371. end:
  5372. // json_object_put(obj);
  5373. DiagnosticsStatusNotificationStatus = 0; //Idle
  5374. pthread_exit(NULL/*(void *) fname*/); // ?��?子執行�?
  5375. }
  5376. int handleGetLocalListVersionRequest(char *uuid, char *payload)
  5377. {
  5378. mtrace();
  5379. int result = FAIL;
  5380. DEBUG_INFO("handle GetLocalListVersionRequest\n");
  5381. if(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "FALSE") == 0)
  5382. {
  5383. DEBUG_INFO("LocalAuthListEnabled is FALSE \n");
  5384. localversion = -1;
  5385. }
  5386. else
  5387. {
  5388. DEBUG_INFO("handle GetLocalListVersionRequest OCPP_getListVerion \n");
  5389. OCPP_getListVerion();
  5390. }
  5391. //from db.OCPP_getListVerion
  5392. ShmOCPP16Data->GetLocalListVersion.ResponseListVersion = localversion;
  5393. //ShmOCPP16Data->MsMsg.bits.GetLocalListVersionReq = 1;
  5394. sendGetLocalListVersionConfirmation(uuid,"");
  5395. //ShmOCPP16Data->MsMsg.bits.GetLocalListVersionConf = 1;
  5396. return result;
  5397. }
  5398. int handleRemoteStartRequest(char *uuid, char *payload)
  5399. {
  5400. mtrace();
  5401. int result = FAIL;
  5402. int connectorIdInt=0, chargingProfileIdInt=0, transactionIdInt=0, stackLevelInt=0,
  5403. durationInt=0, startPeriodInt[10]={0}, numberPhasesInt[10]={0};
  5404. char idTagstr[20]={0}, chargingProfilePurposestr[30]={0}, chargingProfileKindstr[14]={0}, recurrencyKindstr[10]={0},
  5405. validFromstr[30]={0}, validTostr[30]={0}, startSchedulestr[30]={0}, chargingRateUnitstr[4]={0};
  5406. int connectorIdIsNULL,chargingProfileIsNULL,transactionIdIsNULL,recurrencyKindIsNULL,validFromIsNULL,validToIsNULL,durationIsNULL,startScheduleIsNULL,minChargingRateIsNULL,numberPhasesIsNULL;
  5407. float minChargingRateflaot=0.0, limitflaot[10]={0.0};
  5408. int chargingSchedulePeriodCount = 0;
  5409. char sstr[30]={ 0 };//sstr[200]={ 0 };
  5410. int c = 0;
  5411. char *loc;
  5412. char comfirmstr[20]={0};
  5413. DEBUG_INFO("handleRemoteStartRequest ...\n");
  5414. if(server_pending == TRUE)
  5415. {
  5416. return 0;
  5417. }
  5418. connectorIdIsNULL = chargingProfileIsNULL = transactionIdIsNULL = recurrencyKindIsNULL = validFromIsNULL = validToIsNULL = durationIsNULL = startScheduleIsNULL = minChargingRateIsNULL = numberPhasesIsNULL= FALSE;
  5419. //**********connectorId****************/
  5420. c = 0;
  5421. memset(sstr ,0, sizeof(sstr) );
  5422. loc = strstr(payload, "connectorId");
  5423. if(loc == NULL)
  5424. {
  5425. connectorIdIsNULL = TRUE;
  5426. }
  5427. else
  5428. {
  5429. while ((loc[strlen("connectorId")+2+c] != '}') && (loc[strlen("connectorId")+2+c] != ','))
  5430. {
  5431. sstr[c] = loc[strlen("connectorId")+2+c];
  5432. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5433. c++;
  5434. }
  5435. sstr[c] = '\0';
  5436. connectorIdInt = atoi(sstr);
  5437. }
  5438. if(connectorIdIsNULL == TRUE) // need to discussion
  5439. {
  5440. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  5441. goto end;
  5442. }
  5443. //****************idTag*******************/
  5444. c = 0;
  5445. memset(sstr ,0, sizeof(sstr) );
  5446. loc = strstr(payload, "idTag");
  5447. while (loc[3+strlen("idTag")+c] != '\"')
  5448. {
  5449. sstr[c] = loc[3+strlen("idTag")+c];
  5450. c++;
  5451. }
  5452. sstr[c] = '\0';
  5453. strcpy(idTagstr,sstr);
  5454. //****************chargingProfile*******************/
  5455. c = 0;
  5456. memset(sstr ,0, sizeof(sstr) );
  5457. loc = strstr(payload, "chargingProfile");
  5458. if(loc == NULL)
  5459. {
  5460. chargingProfileIsNULL = TRUE;
  5461. }
  5462. else
  5463. {
  5464. //****************chargingProfileId*******************/
  5465. c=0;
  5466. loc = strstr(payload, "chargingProfileId");
  5467. memset(sstr ,0, sizeof(sstr) );
  5468. while ((loc[strlen("chargingProfileId")+2+c] != '}') && (loc[strlen("chargingProfileId")+2+c] != ','))
  5469. {
  5470. sstr[c] = loc[strlen("chargingProfileId")+2+c];
  5471. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5472. c++;
  5473. }
  5474. sstr[c] = '\0';
  5475. chargingProfileIdInt = atoi(sstr);
  5476. //****************transactionId*******************/
  5477. loc = strstr(payload, "transactionId");
  5478. if(loc == NULL)
  5479. {
  5480. transactionIdIsNULL = TRUE;
  5481. }
  5482. else
  5483. {
  5484. c=0;
  5485. memset(sstr ,0, sizeof(sstr) );
  5486. while ((loc[strlen("transactionId")+2+c] != '}') && (loc[strlen("transactionId")+2+c] != ','))
  5487. {
  5488. sstr[c] = loc[strlen("transactionId")+2+c];
  5489. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5490. c++;
  5491. }
  5492. sstr[c] = '\0';
  5493. transactionIdInt = atoi(sstr);
  5494. }
  5495. //****************stackLevel*******************/
  5496. c=0;
  5497. loc = strstr(payload, "stackLevel");
  5498. memset(sstr ,0, sizeof(sstr) );
  5499. while ((loc[strlen("stackLevel")+2+c] != '}') && (loc[strlen("stackLevel")+2+c] != ','))
  5500. {
  5501. sstr[c] = loc[strlen("stackLevel")+2+c];
  5502. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5503. c++;
  5504. }
  5505. sstr[c] = '\0';
  5506. stackLevelInt = atoi(sstr);
  5507. //****************chargingProfilePurpose*******************/
  5508. c = 0;
  5509. memset(sstr ,0, sizeof(sstr) );
  5510. loc = strstr(payload, "chargingProfilePurpose");
  5511. while (loc[3+strlen("chargingProfilePurpose")+c] != '\"')
  5512. {
  5513. sstr[c] = loc[3+strlen("chargingProfilePurpose")+c];
  5514. c++;
  5515. }
  5516. sstr[c] = '\0';
  5517. strcpy(chargingProfilePurposestr,sstr);
  5518. //****************chargingProfileKind*******************/
  5519. c = 0;
  5520. memset(sstr ,0, sizeof(sstr) );
  5521. loc = strstr(payload, "chargingProfileKind");
  5522. while (loc[3+strlen("chargingProfileKind")+c] != '\"')
  5523. {
  5524. sstr[c] = loc[3+strlen("chargingProfileKind")+c];
  5525. c++;
  5526. }
  5527. sstr[c] = '\0';
  5528. strcpy(chargingProfileKindstr,sstr);
  5529. //****************recurrencyKind*******************/
  5530. loc = strstr(payload, "recurrencyKind");
  5531. if(loc == NULL)
  5532. {
  5533. recurrencyKindIsNULL = TRUE;
  5534. }
  5535. else
  5536. {
  5537. c = 0;
  5538. memset(sstr ,0, sizeof(sstr) );
  5539. while (loc[3+strlen("recurrencyKind")+c] != '\"')
  5540. {
  5541. sstr[c] = loc[3+strlen("recurrencyKind")+c];
  5542. c++;
  5543. }
  5544. sstr[c] = '\0';
  5545. strcpy(recurrencyKindstr,sstr);
  5546. }
  5547. //****************validFrom*******************/
  5548. loc = strstr(payload, "validFrom");
  5549. if(loc == NULL)
  5550. {
  5551. validFromIsNULL = TRUE;
  5552. }
  5553. else
  5554. {
  5555. c = 0;
  5556. memset(sstr ,0, sizeof(sstr) );
  5557. while (loc[3+strlen("validFrom")+c] != '\"')
  5558. {
  5559. sstr[c] = loc[3+strlen("validFrom")+c];
  5560. c++;
  5561. }
  5562. sstr[c] = '\0';
  5563. strcpy(validFromstr,sstr);
  5564. }
  5565. //****************validTo*******************/
  5566. loc = strstr(payload, "validTo");
  5567. if(loc == NULL)
  5568. {
  5569. validToIsNULL = TRUE;
  5570. }
  5571. else
  5572. {
  5573. c = 0;
  5574. memset(sstr ,0, sizeof(sstr) );
  5575. while (loc[3+strlen("validTo")+c] != '\"')
  5576. {
  5577. sstr[c] = loc[3+strlen("validTo")+c];
  5578. c++;
  5579. }
  5580. sstr[c] = '\0';
  5581. strcpy(validTostr,sstr);
  5582. }
  5583. //****************chargingSchedule*******************/
  5584. loc = strstr(payload, "chargingSchedule");
  5585. if(loc != NULL)
  5586. {
  5587. //****************duration*******************/
  5588. loc = strstr(payload, "duration");
  5589. if(loc == NULL)
  5590. {
  5591. durationIsNULL = TRUE;
  5592. }
  5593. else
  5594. {
  5595. c=0;
  5596. memset(sstr ,0, sizeof(sstr) );
  5597. while ((loc[strlen("duration")+2+c] != '}') && (loc[strlen("duration")+2+c] != ','))
  5598. {
  5599. sstr[c] = loc[strlen("duration")+2+c];
  5600. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5601. c++;
  5602. }
  5603. sstr[c] = '\0';
  5604. durationInt = atoi(sstr);
  5605. }
  5606. //****************startSchedule******************/
  5607. loc = strstr(payload, "startSchedule");
  5608. if(loc == NULL)
  5609. {
  5610. startScheduleIsNULL = TRUE;
  5611. }
  5612. else
  5613. {
  5614. c = 0;
  5615. memset(sstr ,0, sizeof(sstr) );
  5616. while (loc[3+strlen("startSchedule")+c] != '\"')
  5617. {
  5618. sstr[c] = loc[3+strlen("startSchedule")+c];
  5619. c++;
  5620. }
  5621. sstr[c] = '\0';
  5622. strcpy(startSchedulestr,sstr);
  5623. }
  5624. //****************chargingRateUnit*******************/
  5625. c = 0;
  5626. memset(sstr ,0, sizeof(sstr) );
  5627. loc = strstr(payload, "chargingRateUnit");
  5628. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  5629. {
  5630. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  5631. c++;
  5632. }
  5633. sstr[c] = '\0';
  5634. strcpy(chargingRateUnitstr,sstr);
  5635. //****************minChargingRate*******************/
  5636. loc = strstr(payload, "minChargingRate");
  5637. if(loc == NULL)
  5638. {
  5639. minChargingRateIsNULL = TRUE;
  5640. }
  5641. else
  5642. {
  5643. c=0;
  5644. memset(sstr ,0, sizeof(sstr) );
  5645. while ((loc[strlen("minChargingRate")+2+c] != '}') && (loc[strlen("minChargingRate")+2+c] != ','))
  5646. {
  5647. sstr[c] = loc[strlen("minChargingRate")+2+c];
  5648. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5649. c++;
  5650. }
  5651. sstr[c] = '\0';
  5652. minChargingRateflaot = atof(sstr);
  5653. }
  5654. //****************chargingSchedulePeriod count*******************/
  5655. int what_len = strlen("startPeriod");
  5656. char *where = payload;
  5657. while ((where = strstr(where, "startPeriod"))) {
  5658. where += what_len;
  5659. chargingSchedulePeriodCount++;
  5660. }
  5661. where = payload;
  5662. for(int periodNums=0; periodNums < chargingSchedulePeriodCount; periodNums++)
  5663. {
  5664. //****************startPeriod*******************/
  5665. c=0;
  5666. loc = strstr(where, "startPeriod");
  5667. memset(sstr ,0, sizeof(sstr) );
  5668. while ((loc[strlen("startPeriod")+2+c] != '}') && (loc[strlen("startPeriod")+2+c] != ','))
  5669. {
  5670. sstr[c] = loc[strlen("startPeriod")+2+c];
  5671. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5672. c++;
  5673. }
  5674. sstr[c] = '\0';
  5675. startPeriodInt[periodNums] = atoi(sstr);
  5676. //****************limit*******************/
  5677. c=0;
  5678. loc = strstr(where, "limit");
  5679. memset(sstr ,0, sizeof(sstr) );
  5680. while ((loc[strlen("limit")+2+c] != '}') && (loc[strlen("limit")+2+c] != ','))
  5681. {
  5682. sstr[c] = loc[strlen("limit")+2+c];
  5683. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5684. c++;
  5685. }
  5686. sstr[c] = '\0';
  5687. limitflaot[periodNums] = atof(sstr);
  5688. //****************numberPhases*******************/
  5689. loc = strstr(where, "numberPhases");
  5690. if(loc == NULL)
  5691. {
  5692. numberPhasesIsNULL = TRUE;
  5693. }
  5694. else
  5695. {
  5696. c=0;
  5697. memset(sstr ,0, sizeof(sstr) );
  5698. while ((loc[strlen("numberPhases")+2+c] != '}') && (loc[strlen("numberPhases")+2+c] != ','))
  5699. {
  5700. sstr[c] = loc[strlen("numberPhases")+2+c];
  5701. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5702. c++;
  5703. }
  5704. sstr[c] = '\0';
  5705. numberPhasesInt[periodNums] = atoi(sstr);
  5706. }
  5707. where = loc;
  5708. }
  5709. }
  5710. }
  5711. /*
  5712. enum _SYSTEM_STATUS
  5713. {
  5714. S_BOOTING = 0,
  5715. S_IDLE, = 1
  5716. S_AUTHORIZING, =2
  5717. S_REASSIGN_CHECK, =3
  5718. S_REASSIGN, =4
  5719. S_PRECHARGE, =5
  5720. S_PREPARING_FOR_EV, =6
  5721. S_PREPARING_FOR_EVSE, =7
  5722. S_CHARGING, =8
  5723. S_TERMINATING, =9
  5724. S_COMPLETE, =10
  5725. S_ALARM, =11
  5726. S_FAULT =12
  5727. }
  5728. */
  5729. if((connectorIdIsNULL == FALSE)&&(connectorIdInt > 0) && ((connectorIdInt -1) <= gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/))
  5730. {
  5731. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag, "%s" , idTagstr);
  5732. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.TransactionId = transactionIdInt;
  5733. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault 8: Reserved
  5734. //check Transaction active
  5735. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  5736. {
  5737. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  5738. {
  5739. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (connectorIdInt -1))
  5740. {
  5741. if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) == 0))
  5742. {
  5743. //Reserved
  5744. DEBUG_INFO("Reserved now !!!The idTag matches the idTag of Reservation!!!\n");
  5745. }
  5746. else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) != 0))
  5747. {
  5748. //Reserved
  5749. DEBUG_INFO("Reserved now !!! The idTag does NOT match the idTag of Reservation!!! Reject it!!!\n");
  5750. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  5751. goto end;
  5752. }
  5753. else
  5754. {
  5755. if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != 1) //S_IDLE
  5756. && (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != 5 ) //S_PRECHARGE
  5757. && (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != 6 ) //S_PREPARING_FOR_EV
  5758. && (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != 7 )) // S_PREPARING_FOR_EVSE
  5759. {
  5760. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  5761. goto end;
  5762. }
  5763. }//END FOR ELSE
  5764. }
  5765. }// END FOR CHAdeMO_QUANTITY
  5766. for (int index = 0; index < CCS_QUANTITY; index++)
  5767. {
  5768. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (connectorIdInt -1))
  5769. {
  5770. if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) == 0))
  5771. {
  5772. //Reserved
  5773. DEBUG_INFO("Reserved now !!!The idTag matches the idTag of Reservation!!!\n");
  5774. }
  5775. else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) != 0))
  5776. {
  5777. //Reserved
  5778. DEBUG_INFO("Reserved now !!! The idTag does NOT match the idTag of Reservation!!! Reject it!!!\n");
  5779. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  5780. goto end;
  5781. }
  5782. else
  5783. {
  5784. if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != 1) //S_IDLE
  5785. && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != 5) //S_PRECHARGE
  5786. && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != 6) //S_PREPARING_FOR_EV
  5787. && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != 7)) // S_PREPARING_FOR_EVSE
  5788. {
  5789. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  5790. goto end;
  5791. }
  5792. }// END FOR ELSE
  5793. }
  5794. }// END FOR CCS_QUANTITY
  5795. for (int index = 0; index < GB_QUANTITY; index++)
  5796. {
  5797. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (connectorIdInt -1))
  5798. {
  5799. if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) == 0))
  5800. {
  5801. //Reserved
  5802. DEBUG_INFO("Reserved now !!!The idTag matches the idTag of Reservation!!!\n");
  5803. }
  5804. else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) != 0))
  5805. {
  5806. //Reserved
  5807. DEBUG_INFO("Reserved now !!! The idTag does NOT match the idTag of Reservation!!! Reject it!!!\n");
  5808. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  5809. goto end;
  5810. }
  5811. else
  5812. {
  5813. if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != 1) //S_IDLE
  5814. && (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != 5) //S_PRECHARGE
  5815. && (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != 6) //S_PREPARING_FOR_EV
  5816. && (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != 7)) // S_PREPARING_FOR_EVSE
  5817. {
  5818. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  5819. goto end;
  5820. }
  5821. }// END FOR ELSE
  5822. }
  5823. } // END FOR GB_QUANTITY
  5824. }
  5825. else
  5826. {
  5827. for (int index = 0; index < AC_QUANTITY; index++)
  5828. {
  5829. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == (connectorIdInt -1))
  5830. {
  5831. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) == 0))
  5832. {
  5833. //Reserved
  5834. DEBUG_INFO("Reserved now !!!The idTag matches the idTag of Reservation!!!\n");
  5835. }
  5836. else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId != 0)&&(strcmp((const char *)ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) != 0))
  5837. {
  5838. //Reserved
  5839. DEBUG_INFO("Reserved now !!! The idTag does NOT match the idTag of Reservation!!! Reject it!!!\n");
  5840. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  5841. goto end;
  5842. }
  5843. else
  5844. {
  5845. if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != 1) //S_IDLE
  5846. && (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != 5 ) //S_PRECHARGE
  5847. && (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != 6 ) //S_PREPARING_FOR_EV
  5848. && (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != 7 )) // S_PREPARING_FOR_EVSE
  5849. {
  5850. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  5851. goto end;
  5852. }
  5853. }//END FOR ELSE
  5854. }
  5855. }// END FOR AC_QUANTITY
  5856. }
  5857. if(chargingProfileIsNULL == FALSE)
  5858. {
  5859. //ChargingProfile
  5860. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileId = chargingProfileIdInt;
  5861. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileKind, "%s" ,chargingProfileKindstr);
  5862. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfilePurpose, "%s" ,chargingProfilePurposestr);
  5863. if(recurrencyKindIsNULL == FALSE) //OPTION
  5864. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.RecurrencyKind, "%s" ,recurrencyKindstr);
  5865. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.StackLevel = stackLevelInt;
  5866. if(transactionIdIsNULL == FALSE) // OPTION
  5867. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.TransactionId = transactionIdInt;
  5868. if(validFromIsNULL == FALSE) // OPTION
  5869. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ValidFrom, "%s" ,validFromstr);
  5870. if(validToIsNULL == FALSE) //OPTION
  5871. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ValidTo, "%s" ,validTostr);
  5872. //ChargingSchedule
  5873. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingRateUnit, "%s" ,chargingRateUnitstr);
  5874. if(durationIsNULL == FALSE) //OPTION
  5875. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.Duration = durationInt;
  5876. if(minChargingRateIsNULL == FALSE) //OPTION
  5877. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.MinChargingRate = minChargingRateflaot;
  5878. if(startScheduleIsNULL == FALSE) //OPTION
  5879. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.StartSchedule, "%s" ,startSchedulestr);
  5880. for(int periodNums=0; periodNums < chargingSchedulePeriodCount; periodNums++)
  5881. {
  5882. //ChargingSchedulePeriod
  5883. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].Limit = limitflaot[periodNums] ;
  5884. if(numberPhasesIsNULL == FALSE)
  5885. {
  5886. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].NumberPhases = numberPhasesInt[periodNums];
  5887. }
  5888. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].StartPeriod = startPeriodInt[periodNums];
  5889. }
  5890. if(strcmp(chargingProfilePurposestr, ChargingProfilePurposeTypeStr[TxProfile]) == 0)
  5891. {
  5892. ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1;
  5893. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]);
  5894. }
  5895. else
  5896. {
  5897. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  5898. }
  5899. }
  5900. else
  5901. {
  5902. ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1;
  5903. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]);
  5904. }
  5905. }
  5906. else
  5907. {
  5908. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  5909. //sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ResponseStatus, "%s" ,comfirmstr);
  5910. }
  5911. end:
  5912. if(connectorIdIsNULL == FALSE)
  5913. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ConnectorId = connectorIdInt;
  5914. strcpy((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag, idTagstr);
  5915. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ResponseStatus, "%s" ,comfirmstr);
  5916. //OCPP send RemoteStartConfirmation by first.
  5917. sendRemoteStartConfirmation(uuid, comfirmstr);
  5918. return result;
  5919. }
  5920. int handleRemoteStopTransactionRequest(char *uuid, char *payload)
  5921. {
  5922. mtrace();
  5923. int result = FAIL;
  5924. int match = FALSE;
  5925. int GunNO = 0;
  5926. int transactionIdInt=0;
  5927. int transactionIdIsNULL= FALSE;
  5928. char sstr[16]={ 0 };//sstr[200]={ 0 };
  5929. int c = 0;
  5930. char *loc;
  5931. char comfirmstr[20];
  5932. //[2,"ff522854-0dea-436e-87ba-23a229269994","RemoteStopTransaction",{"transactionId":1373618380}]
  5933. DEBUG_INFO("handleRemoteStopTransactionRequest...\n");
  5934. if(server_pending == TRUE)
  5935. {
  5936. return 0;
  5937. }
  5938. c=0;
  5939. loc = strstr(payload, "transactionId");
  5940. if(loc == NULL)
  5941. {
  5942. transactionIdIsNULL= TRUE;
  5943. }
  5944. else
  5945. {
  5946. memset(sstr ,0, sizeof(sstr) );
  5947. while ((loc[strlen("transactionId")+2+c] != '}') && (loc[strlen("transactionId")+2+c] != ','))
  5948. {
  5949. sstr[c] = loc[strlen("transactionId")+2+c];
  5950. //printf("i=%d sstr=%c\n",c, sstr[c]);
  5951. c++;
  5952. }
  5953. sstr[c] = '\0';
  5954. transactionIdInt = atoi(sstr);
  5955. }
  5956. if(transactionIdIsNULL == FALSE)
  5957. {
  5958. for(int gun_index=0;gun_index < gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/;gun_index++)
  5959. {
  5960. if(ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId == transactionIdInt)
  5961. {
  5962. //check Transaction active
  5963. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  5964. {
  5965. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  5966. {
  5967. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  5968. {
  5969. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 8) // S_CHARGING
  5970. {
  5971. match = TRUE;
  5972. GunNO = gun_index;
  5973. }
  5974. }
  5975. }// END FOR CHAdeMO_QUANTITY
  5976. for (int index = 0; index < CCS_QUANTITY; index++)
  5977. {
  5978. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  5979. {
  5980. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 8) // S_CHARGING
  5981. {
  5982. match = TRUE;
  5983. GunNO = gun_index;
  5984. }
  5985. }
  5986. }// END FOR CCS_QUANTITY
  5987. for (int index = 0; index < GB_QUANTITY; index++)
  5988. {
  5989. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  5990. {
  5991. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8) // S_CHARGING
  5992. {
  5993. match = TRUE;
  5994. GunNO = gun_index;
  5995. }
  5996. }
  5997. }// END FOR GB_QUANTITY
  5998. }
  5999. else
  6000. {
  6001. for (int index = 0; index < AC_QUANTITY; index++)
  6002. {
  6003. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index)
  6004. {
  6005. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 8) // S_CHARGING
  6006. {
  6007. match = TRUE;
  6008. GunNO = gun_index;
  6009. }
  6010. }
  6011. }// END FOR CHAdeMO_QUANTITY
  6012. }// END FOR AC ELSE
  6013. }// CHECK IF ResponseTransactionId == transactionIdInt
  6014. }//END FOR
  6015. if( match == TRUE)
  6016. {
  6017. ShmOCPP16Data->CsMsg.bits[GunNO].RemoteStopTransactionReq = 1; // inform csu of StopTransaction
  6018. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]);
  6019. sprintf((char *)ShmOCPP16Data->RemoteStopTransaction[GunNO].ResponseStatus, "%s" ,comfirmstr);
  6020. }
  6021. else
  6022. {
  6023. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  6024. }
  6025. }
  6026. sendRemoteStopTransactionConfirmation(uuid, comfirmstr);
  6027. return result;
  6028. }
  6029. int handleReserveNowTransactionRequest(char *uuid, char *payload)
  6030. {
  6031. mtrace();
  6032. int result = FAIL;
  6033. int connectorIdInt=0, reservationIdInt=0;
  6034. char expiryDatestr[30]={0}, idTagstr[20]={0},parentIdTagstr[20]={0};
  6035. char comfirmstr[20]={0};
  6036. char sstr[180]={ 0 };
  6037. int c = 0;
  6038. char *loc;
  6039. //char *ptr;
  6040. //[2,"1571898416054","ReserveNow",{"connectorId":1,"expiryDate":"2020-06-19T09:10:00.000Z","idTag":"B014EA9C","reservationId":1}]
  6041. //***(1)connectorId ****/
  6042. c=0;
  6043. loc = strstr(payload, "connectorId");
  6044. memset(sstr ,0, sizeof(sstr) );
  6045. while ((loc != NULL) &&(loc[strlen("connectorId")+2+c] != ','))
  6046. {
  6047. sstr[c] = loc[strlen("connectorId")+2+c];
  6048. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6049. c++;
  6050. }
  6051. sstr[c] = '\0';
  6052. connectorIdInt = atoi(sstr);
  6053. //***(2)expiryDate ****/
  6054. loc = strstr(payload, "expiryDate");
  6055. memset(sstr ,0, sizeof(sstr) );
  6056. c = 0;
  6057. while ((loc != NULL) &&(loc[3+strlen("expiryDate")+c] != '\"'))
  6058. {
  6059. sstr[c] = loc[3+strlen("expiryDate")+c];
  6060. c++;
  6061. }
  6062. sstr[c] = '\0';
  6063. strcpy(expiryDatestr, sstr);
  6064. //***(3)idTag ****/
  6065. loc = strstr(payload, "idTag");
  6066. memset(sstr ,0, sizeof(sstr) );
  6067. c = 0;
  6068. while ((loc != NULL) &&(loc[3+strlen("idTag")+c] != '\"'))
  6069. {
  6070. sstr[c] = loc[3+strlen("idTag")+c];
  6071. c++;
  6072. }
  6073. sstr[c] = '\0';
  6074. strcpy(idTagstr, sstr);
  6075. //***(4)parentIdTag ****/
  6076. loc = strstr(payload, "parentIdTag");
  6077. memset(sstr ,0, sizeof(sstr) );
  6078. c = 0;
  6079. while ((loc != NULL) &&(loc[3+strlen("parentIdTag")+c] != '\"'))
  6080. {
  6081. sstr[c] = loc[3+strlen("parentIdTag")+c];
  6082. c++;
  6083. }
  6084. sstr[c] = '\0';
  6085. strcpy(parentIdTagstr, sstr);
  6086. //***(5)reservationId ****/
  6087. c=0;
  6088. loc = strstr(payload, "reservationId");
  6089. memset(sstr ,0, sizeof(sstr) );
  6090. while ((loc != NULL) &&((loc[strlen("reservationId")+2+c] != '}') && (loc[strlen("reservationId")+2+c] != ',')))
  6091. {
  6092. sstr[c] = loc[strlen("reservationId")+2+c];
  6093. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6094. c++;
  6095. }
  6096. sstr[c] = '\0';
  6097. reservationIdInt = atoi(sstr);
  6098. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6099. /*
  6100. enum _SYSTEM_STATUS
  6101. {
  6102. S_BOOTING = 0,
  6103. S_IDLE, = 1
  6104. S_AUTHORIZING, =2
  6105. S_REASSIGN_CHECK, =3
  6106. S_REASSIGN, =4
  6107. S_PRECHARGE, =5
  6108. S_PREPARING_FOR_EV, =6
  6109. S_PREPARING_FOR_EVSE, =7
  6110. S_CHARGING, =8
  6111. S_TERMINATING, =9
  6112. S_COMPLETE, =10
  6113. S_ALARM, =11
  6114. S_FAULT =12
  6115. }
  6116. */
  6117. if((connectorIdInt == 0) &&(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData, "FALSE") == 0)) //For OCTT Test case
  6118. {
  6119. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6120. goto end;
  6121. }
  6122. if((connectorIdInt > 0) && ((connectorIdInt -1) <= gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/))
  6123. {
  6124. //check Transaction active
  6125. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  6126. {
  6127. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6128. {
  6129. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (connectorIdInt -1))
  6130. {
  6131. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId)
  6132. {
  6133. //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  6134. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != 12) //S_FAULT
  6135. {
  6136. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 1) //S_IDLE
  6137. {
  6138. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6139. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6140. }
  6141. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 9) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9'))
  6142. {
  6143. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6144. }
  6145. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 5) //S_PRECHARGE
  6146. {
  6147. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6148. }
  6149. else
  6150. {
  6151. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6152. }
  6153. }
  6154. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 12) //S_FAULT
  6155. {
  6156. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6157. }
  6158. }
  6159. else
  6160. {
  6161. //replace reservation
  6162. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6163. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6164. }
  6165. }
  6166. } // END FOR CHAdeMO_QUANTITY
  6167. for (int index = 0; index < CCS_QUANTITY; index++)
  6168. {
  6169. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (connectorIdInt -1))
  6170. {
  6171. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId)
  6172. {
  6173. //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  6174. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != 12) //S_FAULT
  6175. {
  6176. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 1) //S_IDLE
  6177. {
  6178. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6179. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6180. }
  6181. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 9) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '9'))
  6182. {
  6183. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6184. }
  6185. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 5) //S_PRECHARGE
  6186. {
  6187. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6188. }
  6189. else
  6190. {
  6191. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6192. }
  6193. }
  6194. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus ==12) //S_FAULT
  6195. {
  6196. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6197. }
  6198. }
  6199. else
  6200. {
  6201. //replace reservation
  6202. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6203. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6204. }
  6205. }
  6206. } // END FOR CCS_QUANTITY
  6207. for (int index = 0; index < GB_QUANTITY; index++)
  6208. {
  6209. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (connectorIdInt - 1))
  6210. {
  6211. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId)
  6212. {
  6213. //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  6214. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != 12) //S_FAULT
  6215. {
  6216. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 1) //S_IDLE
  6217. {
  6218. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6219. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6220. }
  6221. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 9) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '9'))
  6222. {
  6223. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6224. }
  6225. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 5) //S_PRECHARGE
  6226. {
  6227. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6228. }
  6229. else
  6230. {
  6231. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6232. }
  6233. }
  6234. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==12) //S_FAULT
  6235. {
  6236. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6237. }
  6238. }
  6239. else
  6240. {
  6241. //replace reservation
  6242. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6243. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6244. }
  6245. }
  6246. }// END FOR GB_QUANTITY
  6247. }
  6248. else
  6249. {
  6250. for (int index = 0; index < AC_QUANTITY; index++)
  6251. {
  6252. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == (connectorIdInt -1))
  6253. {
  6254. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId)
  6255. {
  6256. //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  6257. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != 12) //S_FAULT
  6258. {
  6259. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 1) //S_IDLE
  6260. {
  6261. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6262. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6263. }
  6264. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 9) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9'))
  6265. {
  6266. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6267. }
  6268. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 5) //S_PRECHARGE
  6269. {
  6270. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6271. }
  6272. else
  6273. {
  6274. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6275. }
  6276. }
  6277. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 12) //S_FAULT
  6278. {
  6279. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6280. }
  6281. }
  6282. else
  6283. {
  6284. //replace reservation
  6285. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  6286. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6287. }
  6288. }
  6289. } // END FOR AC_QUANTITY
  6290. }//END FOR AC ELSE
  6291. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ResponseStatus, "%s" ,comfirmstr);
  6292. }
  6293. else if(connectorIdInt == 0)
  6294. {
  6295. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  6296. {
  6297. //check Transaction active
  6298. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6299. {
  6300. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId)
  6301. {
  6302. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 9) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9'))
  6303. {
  6304. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6305. goto end;
  6306. }
  6307. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 5) //S_PRECHARGE
  6308. {
  6309. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6310. goto end;
  6311. }
  6312. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 12) //S_FAULT
  6313. {
  6314. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6315. goto end;
  6316. }
  6317. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != 1) //S_IDLE
  6318. {
  6319. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6320. goto end;
  6321. }
  6322. }
  6323. }// END FOR CHAdeMO_QUANTITY
  6324. for (int index = 0; index < CCS_QUANTITY; index++)
  6325. {
  6326. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId)
  6327. {
  6328. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 9) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '9'))
  6329. {
  6330. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6331. }
  6332. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 5) //S_PRECHARGE
  6333. {
  6334. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6335. }
  6336. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus ==12) //S_FAULT
  6337. {
  6338. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6339. }
  6340. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != 1) //S_IDLE
  6341. {
  6342. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6343. }
  6344. }
  6345. } // END FOR CCS_QUANTITY
  6346. for (int index = 0; index < GB_QUANTITY; index++)
  6347. {
  6348. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId)
  6349. {
  6350. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 9) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '9'))
  6351. {
  6352. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6353. }
  6354. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 5) //S_PRECHARGE
  6355. {
  6356. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6357. }
  6358. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==12) //S_FAULT
  6359. {
  6360. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6361. }
  6362. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != 1) //S_IDLE
  6363. {
  6364. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6365. }
  6366. }
  6367. } // END FOR GB_QUANTITY
  6368. }
  6369. else
  6370. {
  6371. for (int index = 0; index < AC_QUANTITY; index++)
  6372. {
  6373. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId)
  6374. {
  6375. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 9) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9'))
  6376. {
  6377. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  6378. goto end;
  6379. }
  6380. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 5) //S_PRECHARGE
  6381. {
  6382. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  6383. goto end;
  6384. }
  6385. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 12) //S_FAULT
  6386. {
  6387. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  6388. goto end;
  6389. }
  6390. else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != 1) //S_IDLE
  6391. {
  6392. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6393. goto end;
  6394. }
  6395. }
  6396. }// END FOR AC_QUANTITY
  6397. }
  6398. //The connectorId is 0
  6399. ShmOCPP16Data->CsMsg.bits[0].ReserveNowReq = 1;
  6400. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  6401. sprintf((char *)ShmOCPP16Data->ReserveNow[0].ResponseStatus, "%s" ,comfirmstr);
  6402. ShmOCPP16Data->ReserveNow[0].ConnectorId = connectorIdInt;
  6403. sprintf((char *)ShmOCPP16Data->ReserveNow[0].ExpiryDate, "%s" , expiryDatestr);
  6404. sprintf((char *)ShmOCPP16Data->ReserveNow[0].IdTag, "%s" , idTagstr);
  6405. sprintf((char *)ShmOCPP16Data->ReserveNow[0].ParentIdTag, "%s" , parentIdTagstr);
  6406. ShmOCPP16Data->ReserveNow[0].ReservationId = reservationIdInt;
  6407. strcpy((char *)ShmOCPP16Data->ReserveNow[0].guid, uuid);
  6408. result = TRUE;
  6409. return result;
  6410. }
  6411. else
  6412. {
  6413. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  6414. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ResponseStatus, "%s" ,comfirmstr);
  6415. }
  6416. if(strcmp(comfirmstr,"Accepted") == 0)
  6417. {
  6418. ShmOCPP16Data->ReserveNow[connectorIdInt-1].ConnectorId = connectorIdInt;
  6419. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ExpiryDate, "%s" , expiryDatestr);
  6420. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].IdTag, "%s" , idTagstr);
  6421. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ParentIdTag, "%s" , parentIdTagstr);
  6422. ShmOCPP16Data->ReserveNow[connectorIdInt-1].ReservationId = reservationIdInt;
  6423. strcpy((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].guid, uuid);
  6424. result = TRUE;
  6425. return result;
  6426. }
  6427. end:
  6428. sendReserveNowTransactionConfirmation(uuid,comfirmstr);
  6429. //ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowConf = 1;
  6430. return result;
  6431. }
  6432. int handleResetRequest(char *uuid, char *payload)
  6433. {
  6434. mtrace();
  6435. int result = FAIL;
  6436. char sstr[10]={0};
  6437. char typestr[10]={0};
  6438. char comfirmstr[20]={0};
  6439. int c = 0;
  6440. char *loc;
  6441. //[2,"6f88d461-4d17-462c-a69b-1f7a8c5b12df","Reset",{"type":"Hard"}]
  6442. DEBUG_INFO("handleResetRequest ...\n");
  6443. loc = strstr(payload, "type");
  6444. memset(sstr ,0, sizeof(sstr) );
  6445. c = 0;
  6446. while (loc[3+strlen("type")+c] != '\"')
  6447. {
  6448. sstr[c] = loc[3+strlen("type")+c];
  6449. c++;
  6450. }
  6451. sstr[c] = '\0';
  6452. strcpy(typestr,sstr);
  6453. sprintf((char *)ShmOCPP16Data->Reset.Type, "%s" ,typestr);
  6454. //strcpy(ShmOCPP16Data->Reset.Type, typestr);
  6455. if(strcmp(typestr, ResetTypeStr[Hard])==0)
  6456. {
  6457. //check Transaction active
  6458. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  6459. {
  6460. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6461. {
  6462. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 8)
  6463. {
  6464. //0: unplug, 1: Plug-in
  6465. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn = 0;
  6466. }
  6467. }
  6468. for (int index = 0; index < CCS_QUANTITY; index++)
  6469. {
  6470. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 8)
  6471. {
  6472. //0: unplug, 1: Plug-in
  6473. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn = 0;
  6474. }
  6475. }
  6476. for (int index = 0; index < GB_QUANTITY; index++)
  6477. {
  6478. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8)
  6479. {
  6480. //0: unplug, 1: Plug-in
  6481. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn = 0;
  6482. }
  6483. }
  6484. }
  6485. else
  6486. {
  6487. for (int index = 0; index < AC_QUANTITY; index++)
  6488. {
  6489. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 8)
  6490. {
  6491. //0: unplug, 1: Plug-in
  6492. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn = 0;
  6493. }
  6494. }
  6495. }// END FOR AC ELSE
  6496. ShmOCPP16Data->MsMsg.bits.ResetReq = 1;
  6497. strcpy((char *)ShmOCPP16Data->Reset.guid, uuid);
  6498. result = TRUE;
  6499. return result;
  6500. }
  6501. else if(strcmp(typestr, ResetTypeStr[Soft])==0)
  6502. {
  6503. //check Transaction active
  6504. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  6505. {
  6506. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6507. {
  6508. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 8)
  6509. {
  6510. //0: unplug, 1: Plug-in
  6511. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn = 0;
  6512. }
  6513. }
  6514. for (int index = 0; index < CCS_QUANTITY; index++)
  6515. {
  6516. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 8)
  6517. {
  6518. //0: unplug, 1: Plug-in
  6519. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn = 0;
  6520. }
  6521. }
  6522. for (int index = 0; index < GB_QUANTITY; index++)
  6523. {
  6524. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8)
  6525. {
  6526. //0: unplug, 1: Plug-in
  6527. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn = 0;
  6528. }
  6529. }
  6530. }
  6531. else
  6532. {
  6533. for (int index = 0; index < AC_QUANTITY; index++)
  6534. {
  6535. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 8)
  6536. {
  6537. //0: unplug, 1: Plug-in
  6538. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn = 0;
  6539. }
  6540. }
  6541. }// END FOR AC ELSE
  6542. ShmOCPP16Data->MsMsg.bits.ResetReq = 1;
  6543. strcpy((char *)ShmOCPP16Data->Reset.guid, uuid);
  6544. result = TRUE;
  6545. return result;
  6546. }
  6547. else
  6548. {
  6549. strcpy(comfirmstr, ResetStatusStr[ResetStatus_Rejected]);
  6550. sprintf((char *)ShmOCPP16Data->Reset.ResponseStatus, "%s" ,comfirmstr);
  6551. goto errorend;
  6552. }
  6553. errorend:
  6554. sendResetConfirmation(uuid, comfirmstr);
  6555. return result;
  6556. }
  6557. int handleSendLocalListRequest(char *uuid, char *payload)
  6558. {
  6559. mtrace();
  6560. int result = FAIL;
  6561. int listVersionInt;
  6562. //char *updateTypestr, *idTagstr, *expiryDatestr, *parentIdTagstr, *statusstr;
  6563. char listsearch[]="listVersion";
  6564. char updateTypesearch[]="updateType";
  6565. char localAuthorizationListsearch[]="localAuthorizationList";
  6566. char sstr[60500]={ 0 };//sstr[200]={ 0 };
  6567. char CardList[500][160]={0};
  6568. char updateTypestr[15]={0};
  6569. char idTagstr[20]={0};
  6570. char parentIdTag[20]={0};
  6571. char expiryDate[30]={0};
  6572. char idTagstatus[16]={0};
  6573. int c = 0;
  6574. int i = 0;
  6575. char *delim1 = "}";
  6576. char * pch;
  6577. char *loc;
  6578. //char *ptr;
  6579. char comfirmstr[20];
  6580. //int n_localAuthorizations = 0;
  6581. int checkState_Faulted = FALSE;
  6582. DEBUG_INFO("handleSendLocalListRequest\n");
  6583. if(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "FALSE") == 0) //For OCTT Test case
  6584. {
  6585. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_NotSupported]);
  6586. goto end;
  6587. }
  6588. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  6589. {
  6590. //check Charge Point state
  6591. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  6592. {
  6593. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 12) //S_FAULT ---> Faulted
  6594. {
  6595. checkState_Faulted = TRUE; //OCPP Status: Faulted
  6596. }
  6597. }
  6598. for (int index = 0; index < CCS_QUANTITY; index++)
  6599. {
  6600. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 12) //S_FAULT ---> Faulted
  6601. {
  6602. checkState_Faulted = TRUE; //OCPP Status
  6603. }
  6604. }
  6605. for (int index = 0; index < GB_QUANTITY; index++)
  6606. {
  6607. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 12) //S_FAULT ---> Faulted
  6608. {
  6609. checkState_Faulted = TRUE; //OCPP Status: Faulted
  6610. }
  6611. }
  6612. }
  6613. else
  6614. {
  6615. //check Charge Point state
  6616. for (int index = 0; index < AC_QUANTITY; index++)
  6617. {
  6618. if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 12) //S_FAULT ---> Faulted
  6619. {
  6620. checkState_Faulted = TRUE; //OCPP Status: Faulted
  6621. }
  6622. }
  6623. }// END FOR AC ELSE
  6624. if(checkState_Faulted == TRUE)
  6625. {
  6626. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Failed]);
  6627. goto end;
  6628. }
  6629. //listVersion
  6630. c = 0;
  6631. loc = strstr(payload, listsearch);
  6632. while (loc[strlen("listVersion")+2+c] != ',')
  6633. {
  6634. sstr[c] = loc[strlen("listVersion")+2+c];
  6635. c++;
  6636. }
  6637. sstr[c] = '\0';
  6638. listVersionInt = atoi(sstr);
  6639. ShmOCPP16Data->SendLocalList.ListVersion = listVersionInt;
  6640. //updateType
  6641. loc = strstr(payload, updateTypesearch);
  6642. c = 0;
  6643. while (loc[3+strlen(updateTypesearch)+c] != '\"')
  6644. {
  6645. sstr[c] = loc[3+strlen(updateTypesearch)+c];
  6646. c++;
  6647. }
  6648. sstr[c] = '\0';
  6649. strcpy(updateTypestr, sstr);
  6650. sprintf((char *)ShmOCPP16Data->SendLocalList.UpdateType, "%s", updateTypestr);
  6651. //localAuthorizationList
  6652. memset(sstr ,0, sizeof(sstr) );
  6653. loc = strstr(payload, localAuthorizationListsearch);
  6654. if(loc != NULL) // localAuthorizationList is not NULL
  6655. {
  6656. //Check UpdateType
  6657. if(strcmp(updateTypestr, UpdateTypeStr[Full]) == 0)
  6658. {
  6659. //Local list full update
  6660. printf("Local list full update.\n");
  6661. OCPP_cleanLocalList();
  6662. }
  6663. else if(strcmp(updateTypestr, UpdateTypeStr[Differential]) == 0)
  6664. {
  6665. //Local list different update
  6666. printf("Local list different update.\n");
  6667. OCPP_getListVerion();
  6668. if(listVersionInt < localversion )//if(listVersionInt <= localversion ) for OCTT Case ---remove temporally
  6669. {
  6670. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_VersionMismatch]);
  6671. goto end;
  6672. }
  6673. }
  6674. else
  6675. {
  6676. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_NotSupported]);
  6677. goto end;
  6678. }
  6679. c = 0;
  6680. while (loc[3+strlen(localAuthorizationListsearch)+c] != ']')
  6681. {
  6682. sstr[c] = loc[3+strlen(localAuthorizationListsearch)+c];
  6683. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6684. c++;
  6685. }
  6686. sstr[c] = '\0';
  6687. //parsing strings to words
  6688. i = 0;
  6689. pch = strtok(sstr,delim1);
  6690. while (pch != NULL)
  6691. {
  6692. strcpy(CardList[i], pch);
  6693. pch = strtok (NULL, delim1);
  6694. i = i + 1;
  6695. }
  6696. //local Authorizations List Numbers
  6697. //n_localAuthorizations = i;
  6698. ShmOCPP16Data->SendLocalList.ListVersion = listVersionInt;
  6699. memset(ShmOCPP16Data->SendLocalList.LocalAuthorizationList, 0 , sizeof(struct StructLocalAuthorizationList)* 500);
  6700. c= 0;
  6701. while(c < i)
  6702. {
  6703. //Search "IdToken"
  6704. memset(sstr ,0, sizeof(sstr) );
  6705. loc = strstr(CardList[c], "idTag");
  6706. int j = 0;
  6707. while (loc[3+strlen("idTag")+j] != '\"')
  6708. {
  6709. sstr[j] = loc[3+strlen("idTag")+j];
  6710. //printf("i=%d sstr=%c\n",c, sstr[j]);
  6711. j++;
  6712. }
  6713. sstr[j] = '\0';
  6714. strcpy(idTagstr, sstr);
  6715. //Search "expiryDate"
  6716. memset(sstr ,0, sizeof(sstr) );
  6717. loc = strstr(CardList[c], "expiryDate");
  6718. j = 0;
  6719. while (loc[3+strlen("expiryDate")+j] != '\"')
  6720. {
  6721. sstr[j] = loc[3+strlen("expiryDate")+j];
  6722. //printf("i=%d sstr=%c\n",c, sstr[j]);
  6723. j++;
  6724. }
  6725. sstr[j] = '\0';
  6726. strcpy(expiryDate, sstr);
  6727. //Search "parentIdTag"
  6728. memset(sstr ,0, sizeof(sstr) );
  6729. loc = strstr(CardList[c], "parentIdTag");
  6730. j = 0;
  6731. while (loc[3+strlen("parentIdTag")+j] != '\"')
  6732. {
  6733. sstr[j] = loc[3+strlen("parentIdTag")+j];
  6734. //printf("i=%d sstr=%c\n",c, sstr[j]);
  6735. j++;
  6736. }
  6737. sstr[j] = '\0';
  6738. strcpy(parentIdTag, sstr);
  6739. //Search "status"
  6740. memset(sstr ,0, sizeof(sstr) );
  6741. loc = strstr(CardList[c], "status");
  6742. j = 0;
  6743. while (loc[3+strlen("status")+j] != '\"')
  6744. {
  6745. sstr[j] = loc[3+strlen("status")+j];
  6746. //printf("i=%d sstr=%c\n",c, sstr[j]);
  6747. j++;
  6748. }
  6749. sstr[j] = '\0';
  6750. strcpy(idTagstatus, sstr);
  6751. OCPP_getIdTag(idTagstr);
  6752. //OCPP_getIdTag("test"); For Test
  6753. DEBUG_INFO("idTagAuthorization=%s\n",idTagAuthorization);
  6754. if(strcmp(updateTypestr, UpdateTypeStr[Full]) == 0)
  6755. {
  6756. //Local list full update
  6757. DEBUG_INFO("Local list full update.\n");
  6758. // update list
  6759. OCPP_addLocalList_1(listVersionInt, idTagstr, parentIdTag, expiryDate, idTagstatus);
  6760. OCPP_get_TableAuthlocalAllData();
  6761. }
  6762. else if(strcmp(updateTypestr, UpdateTypeStr[Differential]) == 0)
  6763. {
  6764. if((strcmp(idTagstr, idTagAuthorization) == 0) && (parentIdTag[0] != '\0'))
  6765. {
  6766. OCPP_addLocalList_1(listVersionInt, idTagstr, parentIdTag, expiryDate, idTagstatus);
  6767. }
  6768. else if((strcmp(idTagstr, idTagAuthorization) == 0) && (parentIdTag[0] == '\0'))
  6769. {
  6770. OCPP_deleteIdTag(idTagstr);
  6771. }
  6772. else if((strcmp(idTagstr, idTagAuthorization) != 0) && (parentIdTag[0] != '\0'))
  6773. {
  6774. OCPP_addLocalList_1(listVersionInt, idTagstr, parentIdTag, expiryDate, idTagstatus);
  6775. }
  6776. }
  6777. strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[c].IdTag, idTagstr);
  6778. strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[c].IdTagInfo.ExpiryDate, expiryDate);
  6779. strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[c].IdTagInfo.ParentIdTag, parentIdTag);
  6780. strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[c].IdTagInfo.Status, idTagstatus);
  6781. c++;
  6782. }
  6783. }
  6784. else
  6785. {
  6786. if(strcmp(updateTypestr, UpdateTypeStr[Differential]) == 0)
  6787. {
  6788. //Local list different update
  6789. DEBUG_INFO("Local list different update.\n");
  6790. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Accepted]);
  6791. goto end;
  6792. }
  6793. }
  6794. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Accepted]);
  6795. end:
  6796. sendSendLocalListConfirmation(uuid, comfirmstr);
  6797. //ShmOCPP16Data->MsMsg.bits.SendLocalListConf = 1;
  6798. #if 0
  6799. if(ShmOCPP16Data->SendLocalList.LocalAuthorizationList != NULL)
  6800. free(ShmOCPP16Data->SendLocalList.LocalAuthorizationList);
  6801. #endif
  6802. return result;
  6803. }
  6804. /*
  6805. enum _SYSTEM_STATUS
  6806. {
  6807. S_BOOTING = 0,
  6808. S_IDLE, =1
  6809. S_AUTHORIZING, =2
  6810. S_REASSIGN_CHECK, =3
  6811. S_REASSIGN, =4
  6812. S_PRECHARGE, =5
  6813. S_PREPARING_FOR_EV, =6
  6814. S_PREPARING_FOR_EVSE, =7
  6815. S_CHARGING, =8
  6816. S_TERMINATING, =9
  6817. S_COMPLETE, =10
  6818. S_ALARM, =11
  6819. S_FAULT =12
  6820. };
  6821. */
  6822. #define MAX 200
  6823. int handleSetChargingProfileRequest(char *uuid, char *payload)
  6824. {
  6825. mtrace();
  6826. int result = FAIL;
  6827. int connectorIdInt=0, chargingProfileIdInt=0, transactionIdInt=0,stackLevelInt=0, durationInt=0, startPeriodInt[10]={0}, numberPhasesInt[10]={0};
  6828. int tempconnectorIdInt=0, tempchargingProfileIdInt=0, tempstackLevelInt=0;
  6829. char chargingProfilePurposeStr[30]={0};
  6830. char chargingProfileKindStr[16]={0};
  6831. char recurrencyKindStr[10]={0};
  6832. char validFromStr[30]={0}, validToStr[30]={0}, startScheduleStr[30]={0}, chargingRateUnitStr[6]={0};
  6833. float minChargingRateFloat = 0.0, limitflaot[10] = {0.0};
  6834. int chargingSchedulePeriodCount = 0;
  6835. //int updateflag = FALSE;
  6836. char comfirmstr[20]={0};
  6837. int meet= FALSE;
  6838. char sstr[10]={0};
  6839. int c = 0;
  6840. char *loc;
  6841. FILE *fptr1;//, *fptr2;
  6842. //int lno=0;//, linectr = 0;
  6843. //int modifyflag = FALSE;
  6844. char filename[MAX]={0};
  6845. char tempfile[] = "../Storage/OCPP/temp.json";
  6846. int resultRename=0;
  6847. char rmFileCmd[50]={0};
  6848. char tempchargingProfilePurposeStr[30]={0};
  6849. //[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}}}]
  6850. DEBUG_INFO("handleSetChargingProfileRequest\n");
  6851. connectorIdInt = chargingProfileIdInt = transactionIdInt = stackLevelInt = 0;
  6852. //*********************connectorId***************************/
  6853. loc = strstr(payload, "connectorId");
  6854. c = 0;
  6855. memset(sstr ,0, sizeof(sstr) );
  6856. while (loc[strlen("connectorId")+2+c] != ',')
  6857. {
  6858. sstr[c] = loc[strlen("connectorId")+2+c];
  6859. c++;
  6860. }
  6861. sstr[c] = '\0';
  6862. connectorIdInt = atoi(sstr);
  6863. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  6864. {
  6865. ShmOCPP16Data->SetChargingProfile[0].ConnectorId = connectorIdInt;
  6866. }
  6867. else
  6868. {
  6869. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ConnectorId = connectorIdInt;
  6870. }
  6871. DEBUG_INFO("handleSetChargingProfileRequest -1\n");
  6872. //*********************chargingProfileId***************************/
  6873. loc = strstr(payload, "chargingProfileId");
  6874. c = 0;
  6875. memset(sstr ,0, sizeof(sstr) );
  6876. while (loc[strlen("chargingProfileId")+2+c] != ',')
  6877. {
  6878. sstr[c] = loc[strlen("chargingProfileId")+2+c];
  6879. c++;
  6880. }
  6881. sstr[c] = '\0';
  6882. chargingProfileIdInt = atoi(sstr);
  6883. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  6884. {
  6885. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingProfileId = chargingProfileIdInt;
  6886. }
  6887. else
  6888. {
  6889. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingProfileId = chargingProfileIdInt;
  6890. }
  6891. DEBUG_INFO("handleSetChargingProfileRequest -2\n");
  6892. //*********************transactionId***************************/
  6893. loc = strstr(payload, "transactionId");
  6894. if(loc != NULL)
  6895. {
  6896. c = 0;
  6897. memset(sstr ,0, sizeof(sstr) );
  6898. while (loc[strlen("transactionId")+2+c] != ',')
  6899. {
  6900. sstr[c] = loc[strlen("transactionId")+2+c];
  6901. c++;
  6902. }
  6903. sstr[c] = '\0';
  6904. transactionIdInt = atoi(sstr);
  6905. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  6906. {
  6907. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.TransactionId = transactionIdInt;
  6908. }
  6909. else
  6910. {
  6911. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.TransactionId = transactionIdInt;
  6912. }
  6913. }
  6914. DEBUG_INFO("handleSetChargingProfileRequest -3\n");
  6915. //*********************stackLevel***************************/
  6916. loc = strstr(payload, "stackLevel");
  6917. c = 0;
  6918. memset(sstr ,0, sizeof(sstr) );
  6919. while (loc[strlen("stackLevel")+2+c] != ',')
  6920. {
  6921. sstr[c] = loc[strlen("stackLevel")+2+c];
  6922. c++;
  6923. }
  6924. sstr[c] = '\0';
  6925. stackLevelInt = atoi(sstr);
  6926. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  6927. {
  6928. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.StackLevel = stackLevelInt;
  6929. }
  6930. else
  6931. {
  6932. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.StackLevel = stackLevelInt;
  6933. }
  6934. DEBUG_INFO("handleSetChargingProfileRequest -4\n");
  6935. //*********************chargingProfilePurpose***************************/
  6936. loc = strstr(payload, "chargingProfilePurpose");
  6937. c = 0;
  6938. memset(sstr ,0, sizeof(sstr) );
  6939. while (loc[3+strlen("chargingProfilePurpose")+c] != '\"')
  6940. {
  6941. sstr[c] = loc[3+strlen("chargingProfilePurpose")+c];
  6942. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6943. c++;
  6944. }
  6945. sstr[c] = '\0';
  6946. strcpy(chargingProfilePurposeStr,sstr);
  6947. DEBUG_INFO("chargingProfilePurposeStr=%s\n",chargingProfilePurposeStr);
  6948. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  6949. {
  6950. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingProfilePurpose, chargingProfilePurposeStr);
  6951. }
  6952. else
  6953. {
  6954. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingProfilePurpose, chargingProfilePurposeStr);
  6955. }
  6956. DEBUG_INFO("handleSetChargingProfileRequest -6\n");
  6957. //*********************chargingProfileKind***************************/
  6958. loc = strstr(payload, "chargingProfileKind");
  6959. c = 0;
  6960. memset(sstr ,0, sizeof(sstr) );
  6961. while (loc[3+strlen("chargingProfileKind")+c] != '\"')
  6962. {
  6963. sstr[c] = loc[3+strlen("chargingProfileKind")+c];
  6964. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6965. c++;
  6966. }
  6967. sstr[c] = '\0';
  6968. strcpy(chargingProfileKindStr,sstr);
  6969. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  6970. {
  6971. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingProfileKind, chargingProfileKindStr);
  6972. }
  6973. else
  6974. {
  6975. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingProfileKind, chargingProfileKindStr);
  6976. }
  6977. DEBUG_INFO("handleSetChargingProfileRequest -7\n");
  6978. //*********************recurrencyKind***************************/
  6979. loc = strstr(payload, "recurrencyKind");
  6980. if(loc != NULL)
  6981. {
  6982. c = 0;
  6983. memset(sstr ,0, sizeof(sstr) );
  6984. while (loc[3+strlen("recurrencyKind")+c] != '\"')
  6985. {
  6986. sstr[c] = loc[3+strlen("recurrencyKind")+c];
  6987. //printf("i=%d sstr=%c\n",c, sstr[c]);
  6988. c++;
  6989. }
  6990. sstr[c] = '\0';
  6991. strcpy(recurrencyKindStr,sstr);
  6992. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  6993. {
  6994. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.RecurrencyKind, recurrencyKindStr);
  6995. }
  6996. else
  6997. {
  6998. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.RecurrencyKind, recurrencyKindStr);
  6999. }
  7000. }
  7001. DEBUG_INFO("handleSetChargingProfileRequest -8\n");
  7002. //*********************validFrom***************************/
  7003. loc = strstr(payload, "validFrom");
  7004. if(loc != NULL)
  7005. {
  7006. c = 0;
  7007. memset(sstr ,0, sizeof(sstr) );
  7008. while (loc[3+strlen("validFrom")+c] != '\"')
  7009. {
  7010. sstr[c] = loc[3+strlen("validFrom")+c];
  7011. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7012. c++;
  7013. }
  7014. sstr[c] = '\0';
  7015. strcpy(validFromStr,sstr);
  7016. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7017. {
  7018. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ValidFrom, validFromStr);
  7019. }
  7020. else
  7021. {
  7022. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ValidFrom, validFromStr);
  7023. }
  7024. }
  7025. DEBUG_INFO("handleSetChargingProfileRequest -9\n");
  7026. //*********************validTo***************************/
  7027. loc = strstr(payload, "validTo");
  7028. if(loc != NULL)
  7029. {
  7030. c = 0;
  7031. memset(sstr ,0, sizeof(sstr) );
  7032. while (loc[3+strlen("validTo")+c] != '\"')
  7033. {
  7034. sstr[c] = loc[3+strlen("validTo")+c];
  7035. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7036. c++;
  7037. }
  7038. sstr[c] = '\0';
  7039. strcpy(validToStr,sstr);
  7040. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7041. {
  7042. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ValidTo, validToStr);
  7043. }
  7044. else
  7045. {
  7046. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ValidTo, validToStr);
  7047. }
  7048. }
  7049. DEBUG_INFO("handleSetChargingProfileRequest -10\n");
  7050. //*********************duration***************************/
  7051. loc = strstr(payload, "duration");
  7052. if(loc != NULL)
  7053. {
  7054. c = 0;
  7055. memset(sstr ,0, sizeof(sstr) );
  7056. while (loc[strlen("duration")+2+c] != ',')
  7057. {
  7058. sstr[c] = loc[strlen("duration")+2+c];
  7059. c++;
  7060. }
  7061. sstr[c] = '\0';
  7062. durationInt = atoi(sstr);
  7063. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7064. {
  7065. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.Duration = durationInt;
  7066. }
  7067. else
  7068. {
  7069. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.Duration = durationInt;
  7070. }
  7071. }
  7072. DEBUG_INFO("handleSetChargingProfileRequest -11\n");
  7073. //*********************startSchedule***************************/
  7074. loc = strstr(payload, "startSchedule");
  7075. if(loc != NULL)
  7076. {
  7077. c = 0;
  7078. memset(sstr ,0, sizeof(sstr) );
  7079. while (loc[3+strlen("startSchedule")+c] != '\"')
  7080. {
  7081. sstr[c] = loc[3+strlen("startSchedule")+c];
  7082. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7083. c++;
  7084. }
  7085. sstr[c] = '\0';
  7086. strcpy(startScheduleStr,sstr);
  7087. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7088. {
  7089. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.StartSchedule,startScheduleStr);
  7090. }
  7091. else
  7092. {
  7093. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.StartSchedule,startScheduleStr);
  7094. }
  7095. }
  7096. DEBUG_INFO("handleSetChargingProfileRequest -12\n");
  7097. //*********************chargingRateUnit***************************/
  7098. loc = strstr(payload, "chargingRateUnit");
  7099. if(loc != NULL)
  7100. {
  7101. c = 0;
  7102. memset(sstr ,0, sizeof(sstr) );
  7103. while (loc[3+strlen("chargingRateUnit")+c] != '\"')
  7104. {
  7105. sstr[c] = loc[3+strlen("chargingRateUnit")+c];
  7106. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7107. c++;
  7108. }
  7109. sstr[c] = '\0';
  7110. strcpy(chargingRateUnitStr,sstr);
  7111. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7112. {
  7113. strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingRateUnit,chargingRateUnitStr);
  7114. }
  7115. else
  7116. {
  7117. strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingRateUnit,chargingRateUnitStr);
  7118. }
  7119. }
  7120. DEBUG_INFO("handleSetChargingProfileRequest -13\n");
  7121. //****************chargingSchedulePeriod count start*******************/
  7122. int what_len = strlen("startPeriod");
  7123. char *where = payload;
  7124. if (what_len)
  7125. while ((where = strstr(where, "startPeriod"))) {
  7126. where += what_len;
  7127. chargingSchedulePeriodCount++;
  7128. }
  7129. DEBUG_INFO("chargingSchedulePeriodCount=%d\n",chargingSchedulePeriodCount);
  7130. DEBUG_INFO("handleSetChargingProfileRequest -13 -1\n");
  7131. where = payload;
  7132. for(int periodNums=0; periodNums < chargingSchedulePeriodCount; periodNums++)
  7133. {
  7134. //****************startPeriod*******************/
  7135. c=0;
  7136. loc = strstr(where, "startPeriod");
  7137. memset(sstr ,0, sizeof(sstr) );
  7138. while ((loc[strlen("startPeriod")+2+c] != '}') && (loc[strlen("startPeriod")+2+c] != ','))
  7139. {
  7140. sstr[c] = loc[strlen("startPeriod")+2+c];
  7141. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7142. c++;
  7143. }
  7144. sstr[c] = '\0';
  7145. startPeriodInt[periodNums] = atoi(sstr);
  7146. DEBUG_INFO("sstr=%d\n",atoi(sstr));
  7147. DEBUG_INFO("handleSetChargingProfileRequest -13 -1 -1\n");
  7148. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7149. {
  7150. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].StartPeriod = startPeriodInt[periodNums];
  7151. }
  7152. else
  7153. {
  7154. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].StartPeriod = startPeriodInt[periodNums];
  7155. }
  7156. DEBUG_INFO("handleSetChargingProfileRequest -13 -2\n");
  7157. //****************limit*******************/
  7158. c=0;
  7159. loc = strstr(where, "limit");
  7160. memset(sstr ,0, sizeof(sstr) );
  7161. while ((loc[strlen("limit")+2+c] != '}') && (loc[strlen("limit")+2+c] != ','))
  7162. {
  7163. sstr[c] = loc[strlen("limit")+2+c];
  7164. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7165. c++;
  7166. }
  7167. sstr[c] = '\0';
  7168. limitflaot[periodNums] = atof(sstr);
  7169. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7170. {
  7171. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].Limit = limitflaot[periodNums];
  7172. }
  7173. else
  7174. {
  7175. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].Limit = limitflaot[periodNums];
  7176. }
  7177. DEBUG_INFO("handleSetChargingProfileRequest -13 -3\n");
  7178. //****************numberPhases*******************/
  7179. loc = strstr(where, "numberPhases");
  7180. if(loc != NULL)
  7181. {
  7182. c=0;
  7183. memset(sstr ,0, sizeof(sstr) );
  7184. while ((loc[strlen("numberPhases")+2+c] != '}') && (loc[strlen("numberPhases")+2+c] != ','))
  7185. {
  7186. sstr[c] = loc[strlen("numberPhases")+2+c];
  7187. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7188. c++;
  7189. }
  7190. sstr[c] = '\0';
  7191. numberPhasesInt[periodNums] = atoi(sstr);
  7192. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7193. {
  7194. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].NumberPhases = numberPhasesInt[periodNums];
  7195. }
  7196. else
  7197. {
  7198. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[periodNums].NumberPhases = numberPhasesInt[periodNums];
  7199. }
  7200. }
  7201. where = loc;
  7202. }
  7203. DEBUG_INFO("handleSetChargingProfileRequest -14\n");
  7204. //****************chargingSchedulePeriod count end*******************/
  7205. //*********************minChargingRate***************************/
  7206. loc = strstr(payload, "minChargingRate");
  7207. if(loc != NULL)
  7208. {
  7209. c = 0;
  7210. memset(sstr ,0, sizeof(sstr) );
  7211. while ((loc[strlen("minChargingRate")+2+c] != ',')&&(loc[strlen("minChargingRate")+2+c] != '}'))
  7212. {
  7213. sstr[c] = loc[strlen("minChargingRate")+2+c];
  7214. c++;
  7215. }
  7216. sstr[c] = '\0';
  7217. minChargingRateFloat = atof(sstr);
  7218. if(connectorIdInt == 0) // an overall limit for the Charge Point.
  7219. {
  7220. ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.MinChargingRate = minChargingRateFloat;
  7221. }
  7222. else
  7223. {
  7224. ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.MinChargingRate = minChargingRateFloat;
  7225. }
  7226. }
  7227. DEBUG_INFO("\n\n Replace a specific line in a text file with a new text :\n");
  7228. DEBUG_INFO("-------------------------------------------------------------\n");
  7229. DEBUG_INFO(" Input the file name to be opened : ");
  7230. //fgets(fname, MAX, stdin);
  7231. //fname[strlen(fname) - 1] = '\0';
  7232. #if 0
  7233. switch(connectorIdInt)
  7234. {
  7235. case 0:
  7236. strcpy(filename, ChargingProfile_0_JSON );
  7237. break;
  7238. case 1:
  7239. strcpy(filename, ChargingProfile_1_JSON );
  7240. break;
  7241. case 2:
  7242. strcpy(filename, ChargingProfile_2_JSON );
  7243. break;
  7244. default:
  7245. strcpy(filename, ChargingProfile_0_JSON );
  7246. break;
  7247. }
  7248. fptr1 = fopen(filename, "r");
  7249. if (!fptr1)
  7250. {
  7251. //file not exist
  7252. DEBUG_INFO("Unable to open the input file!!\n");
  7253. fptr1 = fopen(filename, "w+");
  7254. }
  7255. fclose(fptr1);
  7256. #endif
  7257. DEBUG_INFO("chargingProfilePurposeStr=%s\n",chargingProfilePurposeStr);
  7258. DEBUG_INFO(" ChargingProfilePurposeTypeStr[TxProfile]=%s\n", ChargingProfilePurposeTypeStr[TxProfile]);
  7259. if(strcmp(chargingProfilePurposeStr, ChargingProfilePurposeTypeStr[ChargePointMaxProfile]) == 0)
  7260. {
  7261. //printf("set chargingProfile 1-2\n");
  7262. DEBUG_INFO("chargingProfilePurposeStr is ChargePointMaxProfile !!! \n");
  7263. if(connectorIdInt != 0)
  7264. {
  7265. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  7266. goto end;
  7267. }
  7268. strcpy(filename, ChargePointMaxProfile_JSON );
  7269. fptr1 = fopen(filename, "r");
  7270. if (!fptr1)
  7271. {
  7272. //file not exist
  7273. DEBUG_INFO("Unable to open the input file!!\n");
  7274. fptr1 = fopen(filename, "w+");
  7275. }
  7276. fclose(fptr1);
  7277. }
  7278. else if(strcmp(chargingProfilePurposeStr, ChargingProfilePurposeTypeStr[TxDefaultProfile]) == 0)
  7279. {
  7280. //printf("set chargingProfile 1-3\n");
  7281. DEBUG_INFO("chargingProfilePurposeStr is TxDefaultProfile !!! \n");
  7282. if((connectorIdInt != 0) && (connectorIdInt > gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/))
  7283. {
  7284. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  7285. goto end;
  7286. }
  7287. switch(connectorIdInt)
  7288. {
  7289. case 0:
  7290. strcpy(filename, TxDefaultProfile_0_JSON );
  7291. break;
  7292. case 1:
  7293. strcpy(filename, TxDefaultProfile_1_JSON );
  7294. break;
  7295. case 2:
  7296. strcpy(filename, TxDefaultProfile_2_JSON );
  7297. break;
  7298. default:
  7299. strcpy(filename, TxDefaultProfile_0_JSON );
  7300. break;
  7301. }
  7302. fptr1 = fopen(filename, "r");
  7303. if (!fptr1)
  7304. {
  7305. //file not exist
  7306. DEBUG_INFO("Unable to open the input file!!\n");
  7307. fptr1 = fopen(filename, "w+");
  7308. }
  7309. fclose(fptr1);
  7310. }
  7311. else if(strcmp(chargingProfilePurposeStr, ChargingProfilePurposeTypeStr[TxProfile]) == 0)
  7312. {
  7313. //printf("set chargingProfile 1-4\n");
  7314. DEBUG_INFO("chargingProfilePurposeStr is TxProfile !!! \n");
  7315. //check Transaction active
  7316. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  7317. {
  7318. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (connectorIdInt -1))
  7319. {
  7320. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 8) // S_CHARGING
  7321. {
  7322. if(transactionIdInt == ShmOCPP16Data->StartTransaction[connectorIdInt -1].ResponseTransactionId)
  7323. {
  7324. meet = TRUE;
  7325. break;
  7326. }
  7327. }
  7328. }
  7329. }
  7330. for (int index = 0; index < CCS_QUANTITY; index++)
  7331. {
  7332. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (connectorIdInt -1))
  7333. {
  7334. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 8) // S_CHARGING
  7335. {
  7336. if(transactionIdInt == ShmOCPP16Data->StartTransaction[connectorIdInt -1].ResponseTransactionId)
  7337. {
  7338. meet = TRUE;
  7339. break;
  7340. }
  7341. }
  7342. }
  7343. }
  7344. for (int index = 0; index < GB_QUANTITY; index++)
  7345. {
  7346. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (connectorIdInt -1))
  7347. {
  7348. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8) // S_CHARGING
  7349. {
  7350. if(transactionIdInt == ShmOCPP16Data->StartTransaction[connectorIdInt -1].ResponseTransactionId)
  7351. {
  7352. meet = TRUE;
  7353. break;
  7354. }
  7355. }
  7356. }
  7357. }
  7358. if(meet == FALSE)
  7359. {
  7360. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  7361. goto end;
  7362. }
  7363. if((connectorIdInt != 0) && (connectorIdInt > gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/))
  7364. {
  7365. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  7366. goto end;
  7367. }
  7368. switch(connectorIdInt)
  7369. {
  7370. case 0:
  7371. break;
  7372. case 1:
  7373. strcpy(filename, TxProfile_1_JSON);
  7374. break;
  7375. case 2:
  7376. strcpy(filename, TxProfile_2_JSON);
  7377. break;
  7378. default:
  7379. strcpy(filename, TxProfile_1_JSON);
  7380. break;
  7381. }
  7382. fptr1 = fopen(filename, "r");
  7383. if (!fptr1)
  7384. {
  7385. //file not exist
  7386. DEBUG_INFO("Unable to open the input file!!\n");
  7387. fptr1 = fopen(filename, "w+");
  7388. }
  7389. fclose(fptr1);
  7390. }
  7391. //**********************************Write to File********************************************************/
  7392. FILE *infile;
  7393. FILE *outfile;
  7394. // open file for writing
  7395. infile = fopen (filename, "r");
  7396. outfile = fopen (tempfile, "w");
  7397. int d =0;
  7398. d = fgetc(infile);
  7399. DEBUG_INFO("d:%d\n",d);
  7400. rewind(infile);
  7401. //*检测到文件结束标识返回1,否则返回0。*/
  7402. if(d == EOF)
  7403. {
  7404. DEBUG_INFO("ChargingProfile content is NULL\n");
  7405. fprintf(outfile,"[%s]\n",payload);
  7406. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Accepted] );
  7407. fclose(infile);
  7408. fclose(outfile);
  7409. sprintf(rmFileCmd,"rm -f %s",filename);
  7410. system(rmFileCmd);
  7411. resultRename = rename(tempfile, filename);
  7412. if(resultRename == 0)
  7413. {
  7414. DEBUG_INFO("File chargingProfile renamed successfully");
  7415. }
  7416. else
  7417. {
  7418. DEBUG_INFO("Error: unable to rename the chargingProfile file");
  7419. }
  7420. //sprintf(rmFileCmd,"rm -f %s",tempfile);
  7421. //system(rmFileCmd);
  7422. }
  7423. else
  7424. {
  7425. char buf[1000]={0};
  7426. while (fgets(buf, sizeof(buf), infile) != NULL)
  7427. {
  7428. buf[strlen(buf) - 1] = '\0'; // eat the newline fgets() stores
  7429. //*************************tempconnectorIdInt*********************************/
  7430. loc = strstr(buf, "connectorId");
  7431. c = 0;
  7432. memset(sstr ,0, sizeof(sstr) );
  7433. while (loc[strlen("connectorId")+2+c] != ',')
  7434. {
  7435. sstr[c] = loc[strlen("connectorId")+2+c];
  7436. c++;
  7437. }
  7438. sstr[c] = '\0';
  7439. tempconnectorIdInt = atoi(sstr);
  7440. //*************************tempchargingProfileIdInt*********************************/
  7441. loc = strstr(buf, "chargingProfileId");
  7442. c = 0;
  7443. memset(sstr ,0, sizeof(sstr) );
  7444. while (loc[strlen("chargingProfileId")+2+c] != ',')
  7445. {
  7446. sstr[c] = loc[strlen("chargingProfileId")+2+c];
  7447. c++;
  7448. }
  7449. sstr[c] = '\0';
  7450. tempchargingProfileIdInt = atoi(sstr);
  7451. //*************************tempstackLevelInt*********************************/
  7452. loc = strstr(buf, "stackLevel");
  7453. c = 0;
  7454. memset(sstr ,0, sizeof(sstr) );
  7455. while (loc[strlen("stackLevel")+2+c] != ',')
  7456. {
  7457. sstr[c] = loc[strlen("stackLevel")+2+c];
  7458. c++;
  7459. }
  7460. sstr[c] = '\0';
  7461. tempstackLevelInt = atoi(sstr);
  7462. //*************************tempchargingProfilePurposeStr*********************************/
  7463. loc = strstr(payload, "chargingProfilePurpose");
  7464. c = 0;
  7465. memset(sstr ,0, sizeof(sstr) );
  7466. while ((loc[3+strlen("chargingProfilePurpose")+c] != ',')&&(loc[strlen("minChargingRate")+2+c] != ']'))
  7467. {
  7468. sstr[c] = loc[3+strlen("chargingProfilePurpose")+c];
  7469. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7470. c++;
  7471. }
  7472. sstr[c] = '\0';
  7473. strcpy(tempchargingProfilePurposeStr,sstr);
  7474. if((tempconnectorIdInt == connectorIdInt) && (tempchargingProfileIdInt == chargingProfileIdInt))
  7475. {
  7476. if((tempstackLevelInt == stackLevelInt) && (strcmp(tempchargingProfilePurposeStr, chargingProfilePurposeStr) == 0))
  7477. {
  7478. DEBUG_INFO("update set chargingProfile to file -0\n");
  7479. fprintf(outfile,"[%s]\n",payload);
  7480. }
  7481. else
  7482. {
  7483. DEBUG_INFO("update set chargingProfile to file -1\n");
  7484. if(tempstackLevelInt < stackLevelInt)
  7485. {
  7486. DEBUG_INFO("update set chargingProfile to file -2\n");
  7487. fprintf(outfile,"[%s]\n",payload);
  7488. fprintf(outfile,"[%s]\n",buf);
  7489. }
  7490. }
  7491. DEBUG_INFO("update set chargingProfile to file\n");
  7492. }
  7493. else
  7494. {
  7495. if(tempchargingProfileIdInt < chargingProfileIdInt)
  7496. {
  7497. fprintf(outfile,"[%s]\n",payload);
  7498. fprintf(outfile,"[%s]\n",buf);
  7499. }
  7500. else if(tempstackLevelInt < stackLevelInt)
  7501. {
  7502. fprintf(outfile,"[%s]\n",payload);
  7503. fprintf(outfile,"[%s]\n",buf);
  7504. }
  7505. else
  7506. {
  7507. fprintf(outfile,"[%s]\n",buf);
  7508. fprintf(outfile,"[%s]\n",payload);
  7509. }
  7510. fprintf(outfile,"[%s]\n",buf);
  7511. DEBUG_INFO("add set chargingProfile to file\n");
  7512. }
  7513. } // end of while loop
  7514. fclose(infile);
  7515. fclose(outfile);
  7516. sprintf(rmFileCmd,"rm -f %s",filename);
  7517. system(rmFileCmd);
  7518. resultRename = rename(tempfile, filename);
  7519. if(resultRename == 0)
  7520. {
  7521. DEBUG_INFO("File chargingProfile renamed successfully");
  7522. }
  7523. else
  7524. {
  7525. DEBUG_INFO("Error: unable to rename the chargingProfile file");
  7526. }
  7527. result = TRUE;
  7528. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Accepted] );
  7529. }
  7530. end:
  7531. sendSetChargingProfileConfirmation(uuid, comfirmstr);
  7532. return result;
  7533. return result;
  7534. }
  7535. int handleTriggerMessageRequest(char *uuid, char *payload)
  7536. {
  7537. mtrace();
  7538. int result = FAIL;
  7539. int connectorIdIsNULL = FALSE;
  7540. int connectorIdInt =0;
  7541. char sstr[40]={0};
  7542. char requestedMessagestr[40]={0};
  7543. char comfirmstr[20]={0};
  7544. int c = 0;
  7545. char *loc;
  7546. DEBUG_INFO("handleTriggerMessageRequest\n");
  7547. //[2,"266e23f4-27a4-41cf-84cb-aadf56b9523f","TriggerMessage",{"requestedMessage":"DiagnosticsStatusNotification","connectorId":1}]
  7548. c = 0;
  7549. loc = strstr(payload, "requestedMessage");
  7550. while (loc[3+strlen("requestedMessage")+c] != '\"')
  7551. {
  7552. sstr[c] = loc[3+strlen("requestedMessage")+c];
  7553. c++;
  7554. }
  7555. sstr[c] = '\0';
  7556. strcpy(requestedMessagestr, sstr);
  7557. c = 0;
  7558. loc = strstr(payload, "connectorId");
  7559. if(loc == NULL)
  7560. {
  7561. connectorIdIsNULL = TRUE;
  7562. }
  7563. else
  7564. {
  7565. memset(sstr ,0, sizeof(sstr) );
  7566. while ((loc[strlen("connectorId")+2+c] != ',')&&(loc[strlen("connectorId")+2+c] != '}'))
  7567. {
  7568. sstr[c] = loc[strlen("connectorId")+2+c];
  7569. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7570. c++;
  7571. }
  7572. sstr[c] = '\0';
  7573. connectorIdInt = atoi(sstr);
  7574. }
  7575. if(connectorIdIsNULL == FALSE && ((connectorIdInt > 0) && (connectorIdInt <= gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/ )))
  7576. {
  7577. //connectorIdInt = json_object_get_int(connectorId);
  7578. sprintf((char *)ShmOCPP16Data->TriggerMessage[connectorIdInt -1].RequestedMessage, "%s" ,requestedMessagestr);
  7579. ShmOCPP16Data->TriggerMessage[connectorIdInt -1].ConnectorId = connectorIdInt;
  7580. //ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].TriggerMessageReq = 1;
  7581. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7582. sendTriggerMessageConfirmation(uuid,comfirmstr);
  7583. }
  7584. else if(connectorIdIsNULL == FALSE && ((connectorIdInt <= 0) || (connectorIdInt > gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/) ))
  7585. {
  7586. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Rejected] );
  7587. sendTriggerMessageConfirmation(uuid,comfirmstr);
  7588. return TRUE;
  7589. }
  7590. if((strcmp(requestedMessagestr, MessageTriggerStr[FirmwareStatusNotification]) != 0) &&
  7591. (strcmp(requestedMessagestr, MessageTriggerStr[DiagnosticsStatusNotification]) != 0) &&
  7592. (strcmp(requestedMessagestr, MessageTriggerStr[BootNotification]) != 0 ) &&
  7593. (strcmp(requestedMessagestr, MessageTriggerStr[Heartbeat]) != 0) &&
  7594. (strcmp(requestedMessagestr, MessageTriggerStr[MeterValues]) != 0) &&
  7595. (strcmp(requestedMessagestr, MessageTriggerStr[StatusNotification]) != 0 ))
  7596. {
  7597. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_NotImplemented] );
  7598. sendTriggerMessageConfirmation(uuid,comfirmstr);
  7599. return TRUE;
  7600. }
  7601. else
  7602. {
  7603. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7604. sendTriggerMessageConfirmation(uuid,comfirmstr);
  7605. }
  7606. if( strcmp(requestedMessagestr, MessageTriggerStr[FirmwareStatusNotification]) == 0)
  7607. {
  7608. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatusNotificationStatus]);
  7609. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7610. }
  7611. else if(strcmp(requestedMessagestr, MessageTriggerStr[DiagnosticsStatusNotification]) == 0 )
  7612. {
  7613. //printf("DiagnosticsStatusStr[DiagnosticsStatus_Idle] =%s\n",DiagnosticsStatusStr[DiagnosticsStatus_Idle]);
  7614. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatusNotificationStatus]);
  7615. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7616. }
  7617. else if(strcmp(requestedMessagestr, MessageTriggerStr[BootNotification]) == 0 )
  7618. {
  7619. sendBootNotificationRequest();
  7620. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7621. }
  7622. else if(strcmp(requestedMessagestr, MessageTriggerStr[Heartbeat]) == 0 )
  7623. {
  7624. sendHeartbeatRequest(connectorIdInt);
  7625. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7626. }
  7627. else if (strcmp(requestedMessagestr, MessageTriggerStr[MeterValues]) == 0 )
  7628. {
  7629. if(connectorIdIsNULL == FALSE)
  7630. {
  7631. if((connectorIdInt > 0) && ((connectorIdInt -1) < gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/))
  7632. {
  7633. ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].TriggerMessageReq = 1;
  7634. sendMeterValuesRequest(connectorIdInt -1);
  7635. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7636. }
  7637. }
  7638. else
  7639. {
  7640. for(int idx=0;idx< gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/;idx++)
  7641. {
  7642. ShmOCPP16Data->CsMsg.bits[idx].TriggerMessageReq = 1;
  7643. sendMeterValuesRequest(idx);
  7644. }
  7645. }
  7646. }
  7647. else if(strcmp(requestedMessagestr, MessageTriggerStr[StatusNotification]) == 0 )
  7648. {
  7649. if(connectorIdIsNULL == FALSE)
  7650. {
  7651. if((connectorIdInt > 0) && ((connectorIdInt -1) < gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/))
  7652. {
  7653. sendStatusNotificationRequest(connectorIdInt -1);
  7654. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7655. }
  7656. }
  7657. else
  7658. {
  7659. for(int idx=0;idx< gunTotalNumber/*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/;idx++)
  7660. sendStatusNotificationRequest(idx);
  7661. //sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  7662. }
  7663. }
  7664. return result;
  7665. }
  7666. int handleUnlockConnectorRequest(char *uuid, char *payload)
  7667. {
  7668. mtrace();
  7669. int result = FAIL;
  7670. char sstr[6]={0};
  7671. int connectorIdInt =0;
  7672. char comfirmstr[20]={0};
  7673. int c = 0;
  7674. char *loc;
  7675. //[2,"ba1cbd49-2a76-493a-8f76-fa23e7606532","UnlockConnector",{"connectorId":1}]
  7676. DEBUG_INFO("handleUnlockConnectorRequest ...\n");
  7677. c = 0;
  7678. loc = strstr(payload, "connectorId");
  7679. memset(sstr ,0, sizeof(sstr) );
  7680. while (loc[strlen("connectorId")+2+c] != '}')
  7681. {
  7682. sstr[c] = loc[strlen("connectorId")+2+c];
  7683. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7684. c++;
  7685. }
  7686. sstr[c] = '\0';
  7687. connectorIdInt = atoi(sstr);
  7688. DEBUG_INFO("\n unlock connectorIdInt=%d\n",connectorIdInt);
  7689. if(/*CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY*/gunTotalNumber == 0)
  7690. {
  7691. sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockStatus_NotSupported] );
  7692. goto end;
  7693. }
  7694. else if((connectorIdInt > gunTotalNumber/*CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY*/) || (connectorIdInt <= 0))
  7695. {
  7696. //sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockStatus_NotSupported] );
  7697. sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockStatus_NotSupported] );
  7698. goto end;
  7699. }
  7700. else
  7701. {
  7702. //check Transaction active
  7703. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  7704. {
  7705. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  7706. {
  7707. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (connectorIdInt-1) ) && ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 8) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 1) ))
  7708. {
  7709. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
  7710. }
  7711. }
  7712. for (int index = 0; index < CCS_QUANTITY; index++)
  7713. {
  7714. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (connectorIdInt-1) ) && ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 8) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 1) ))
  7715. {
  7716. //stop Transaction
  7717. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
  7718. }
  7719. }
  7720. for (int index = 0; index < GB_QUANTITY; index++)
  7721. {
  7722. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (connectorIdInt-1) ) &&((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8)||(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 1)))
  7723. {
  7724. //stop Transaction
  7725. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
  7726. }
  7727. }
  7728. }
  7729. else
  7730. {
  7731. for (int index = 0; index < AC_QUANTITY; index++)
  7732. {
  7733. if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == (connectorIdInt-1) ) && ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 8) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 1) ))
  7734. {
  7735. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
  7736. }
  7737. }
  7738. }// END FOR AC ELSE
  7739. ShmOCPP16Data->UnlockConnector[connectorIdInt-1].ConnectorId = connectorIdInt;
  7740. strcpy((char *)ShmOCPP16Data->UnlockConnector[connectorIdInt-1].guid, uuid);
  7741. result = TRUE;
  7742. return result;
  7743. }
  7744. end:
  7745. //json_object_put(obj); --- remove temporally
  7746. sendUnlockConnectorConfirmation(uuid, comfirmstr);
  7747. return result;
  7748. }
  7749. int handleUpdateFirmwareRequest(char *uuid, char *payload)
  7750. {
  7751. mtrace();
  7752. int result = FAIL;
  7753. pthread_t t;
  7754. sendUpdateFirmwareConfirmation(uuid);
  7755. pthread_create(&t, NULL, UpdateFirmwareProcess, payload);
  7756. pthread_join(t, NULL); // 等�?子執行�??��?完�?
  7757. //sendUpdateFirmwareConfirmation(uuid);
  7758. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareConf =1;
  7759. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  7760. return result;
  7761. }
  7762. void *UpdateFirmwareProcess(void *data)
  7763. {
  7764. mtrace();
  7765. int retriesInt =0, retryIntervalInt=0;
  7766. char protocol[10], user[50],password[50],host[50], path[50], ftppath[60],host1[50],path1[20];
  7767. int port=0;
  7768. char locationstr[160]={0}, retrieveDatestr[30]={0};
  7769. //char fname[50]="00000_2018-09-07 160902_CSULog.zip";
  7770. //char comfirmstr[20];
  7771. int isSuccess = 0;
  7772. char ftpbuf[200];
  7773. char temp[100];
  7774. char * pch;
  7775. int retriesISNULL=FALSE;
  7776. int retryInterval=FALSE;
  7777. int c = 0;
  7778. //int i = 0;
  7779. char *loc;
  7780. char sstr[300]={ 0 };
  7781. char *str = (char*) data; // ?��?輸入資�?
  7782. DEBUG_INFO("handleUpdateFirmwareRequest ...\n");
  7783. //***************location **************/
  7784. loc = strstr(str, "location");
  7785. memset(sstr ,0, sizeof(sstr) );
  7786. c = 0;
  7787. while (loc[3+strlen("location")+c] != '\"')
  7788. {
  7789. sstr[c] = loc[3+strlen("location")+c];
  7790. c++;
  7791. }
  7792. sstr[c] = '\0';
  7793. strcpy(locationstr, sstr);
  7794. //***************retries**************/
  7795. c = 0;
  7796. loc = strstr(str, "retries");
  7797. if(loc == NULL)
  7798. {
  7799. retriesISNULL=TRUE;
  7800. }
  7801. else
  7802. {
  7803. memset(sstr ,0, sizeof(sstr) );
  7804. while (loc[strlen("retries")+2+c] != ',')
  7805. {
  7806. sstr[c] = loc[strlen("retries")+2+c];
  7807. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7808. c++;
  7809. }
  7810. sstr[c] = '\0';
  7811. }
  7812. if(retriesISNULL == FALSE)
  7813. {
  7814. retriesInt = atoi(sstr);
  7815. }
  7816. //***************retrieveDate **************/
  7817. loc = strstr(str, "retrieveDate");
  7818. memset(sstr ,0, sizeof(sstr) );
  7819. c = 0;
  7820. while (loc[3+strlen("retrieveDate")+c] != '\"')
  7821. {
  7822. sstr[c] = loc[3+strlen("retrieveDate")+c];
  7823. c++;
  7824. }
  7825. sstr[c] = '\0';
  7826. strcpy(retrieveDatestr, sstr);
  7827. //***************retryInterval **************/
  7828. c = 0;
  7829. loc = strstr(str, "retryInterval");
  7830. memset(sstr ,0, sizeof(sstr) );
  7831. if(loc == NULL)
  7832. {
  7833. retryInterval=TRUE;
  7834. }
  7835. else
  7836. {
  7837. while (loc[strlen("retryInterval")+2+c] != ',')
  7838. {
  7839. sstr[c] = loc[strlen("retryInterval")+2+c];
  7840. //printf("i=%d sstr=%c\n",c, sstr[c]);
  7841. c++;
  7842. }
  7843. sstr[c] = '\0';
  7844. }
  7845. if(retryInterval==FALSE)
  7846. {
  7847. retryIntervalInt = atoi(sstr);
  7848. }
  7849. memset(ftppath, 0, sizeof(ftppath));
  7850. memset(path, 0, sizeof(path));
  7851. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloading]);
  7852. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  7853. if(strncmp(locationstr,"http", 4) == 0)
  7854. {
  7855. sscanf(locationstr,"%[^:]:%*2[/]%[^/]/%199[^\n]",
  7856. protocol, host, path);
  7857. //sscanf(locationstr,"%[^:]:%*2[/]%[^:]:%[^@]@%[^/]%199[^\n]",
  7858. // protocol, user, password, host, path);
  7859. sprintf(ftppath,"/%s", path);
  7860. DEBUG_INFO("protocol =%s\n",protocol);
  7861. DEBUG_INFO("host =%s\n",host);
  7862. DEBUG_INFO("path =%s\n",path);
  7863. DEBUG_INFO("ftppath=%s\n",ftppath);
  7864. int ftppathlen=strlen(ftppath);
  7865. int i=1;
  7866. char filenametemp[50];
  7867. while(i < ftppathlen)
  7868. {
  7869. int len=ftppathlen-i;
  7870. if(ftppath[len]== 47) // '/' ascll code: 47
  7871. {
  7872. DEBUG_INFO("compare '/' all right\n");
  7873. break;
  7874. }
  7875. i=i+1;
  7876. }
  7877. memset(filenametemp, 0, sizeof(filenametemp));
  7878. strncpy(filenametemp, ftppath+(ftppathlen-i+1), i+1);
  7879. filenametemp[i+1] = 0;
  7880. //sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloading]);
  7881. do{
  7882. isSuccess = httpDownLoadFile(host, ftppath, filenametemp, locationstr);
  7883. sleep(retryIntervalInt);
  7884. }while((isSuccess == 0)&&(retriesInt > 0 && retriesInt --));
  7885. // isSuccess = httpDownLoadFile(host, ftppath, filenametemp, locationstr);
  7886. if(!isSuccess)
  7887. {
  7888. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_DownloadFailed]);
  7889. }
  7890. else
  7891. {
  7892. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  7893. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloaded]);
  7894. isUpdateRequest = TRUE;
  7895. }
  7896. }
  7897. else if(strncmp(locationstr,"ftp", 3) == 0) // ftp
  7898. {
  7899. memset(ftpbuf, 0, sizeof(ftpbuf));
  7900. memset(temp, 0, sizeof(temp));
  7901. DEBUG_INFO("locationstr=%s\n",locationstr);
  7902. strcpy(ftpbuf, locationstr/*"ftp://ipc_ui:pht2016@ftp.phihong.com.tw/DC/log/DemoDC1_2018-07-13_185011_PSULog.zip"*/ );
  7903. int ftppathlen=strlen(ftpbuf);
  7904. int i=1;
  7905. char filenametemp[50];
  7906. while(i < ftppathlen)
  7907. {
  7908. int len=ftppathlen-i;
  7909. if(ftpbuf[len]== 47) // '/' ascll code: 47
  7910. {
  7911. DEBUG_INFO(" compare '/' all right\n");
  7912. break;
  7913. }
  7914. i=i+1;
  7915. }
  7916. memset(filenametemp, 0, sizeof(filenametemp));
  7917. strncpy(filenametemp, ftpbuf+(ftppathlen-i+1), i+1);
  7918. filenametemp[i+1] = 0;
  7919. strncpy(temp, ftpbuf, ftppathlen-i+1);
  7920. pch=strchr(temp,'@');
  7921. if(pch==NULL)
  7922. {
  7923. sscanf(temp,"%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
  7924. protocol, host, &port, path);
  7925. strcpy(user,"anonymous");
  7926. strcpy(password,"");
  7927. }
  7928. else
  7929. {
  7930. sscanf(temp,"%[^:]:%*2[/]%[^:]:%[^@]@%[^:]:%i/%199[^\n]",
  7931. protocol, user, password, host, &port, path);
  7932. }
  7933. sscanf(host,"%[^/]%s",host1, path1);
  7934. sprintf(ftppath,"%s", path1);
  7935. DEBUG_INFO("protocol =%s\n",protocol);
  7936. DEBUG_INFO("user =%s\n",user);
  7937. DEBUG_INFO("password =%s\n",password);
  7938. DEBUG_INFO("host1 =%s\n",host1);
  7939. DEBUG_INFO("port =%d\n",port);
  7940. DEBUG_INFO("path1 =%s\n",path1);
  7941. DEBUG_INFO("ftppath=%s\n",ftppath);
  7942. //ftpFile(host, user, password, port, ftppath, fname);
  7943. //download firmware pthred
  7944. if(port == 0)
  7945. {
  7946. port = 21;
  7947. }
  7948. //sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloading]);
  7949. do{
  7950. isSuccess = ftpDownLoadFile(host1, user, password, port, ftppath, filenametemp, locationstr);
  7951. sleep(retryIntervalInt);
  7952. }while((!isSuccess)&&(retriesInt > 0 && retriesInt --));
  7953. if(!isSuccess)
  7954. {
  7955. //BulldogUtil.sleepMs(interval*1000);
  7956. DEBUG_INFO("Update firmware request and download file fail.\n");
  7957. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_DownloadFailed]);
  7958. }
  7959. else
  7960. {
  7961. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  7962. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloaded]);
  7963. isUpdateRequest = TRUE;
  7964. }
  7965. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  7966. }
  7967. else
  7968. {
  7969. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_DownloadFailed]);
  7970. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  7971. }
  7972. pthread_exit(NULL);
  7973. }
  7974. //==========================================
  7975. // Handle server response routine
  7976. //==========================================
  7977. void handleAuthorizeResponse(char *payload, int gun_index)
  7978. {
  7979. mtrace();
  7980. char expiryDatestr[30]={0};
  7981. char parentIdTagstr[20]={0};
  7982. char statusstr[20]={0};
  7983. char expiryDatestrtemp[30]={0};
  7984. char parentIdTagstrtemp[20]={0};
  7985. char statusstrtemp[20]={0};
  7986. int expiryDateISNULL=FALSE;
  7987. int parentIdTagISNULL=FALSE;
  7988. char sstr[160]={ 0 };
  7989. char* filename = AuthorizationCache_JSON;
  7990. char tempfile[] = "../Storage/OCPP/temp.json";
  7991. int c = 0;
  7992. char *loc;
  7993. int resultRename=0;
  7994. int responseIdTagInfoAsZero= 0;
  7995. char rmFileCmd[50]={0};
  7996. DEBUG_INFO("handleAuthorizeResponse ...\n");
  7997. //***********expiryDate*************/
  7998. loc = strstr(payload, "expiryDate");
  7999. memset(sstr ,0, sizeof(sstr) );
  8000. c = 0;
  8001. if(loc == NULL)
  8002. {
  8003. expiryDateISNULL = TRUE;
  8004. }
  8005. else
  8006. {
  8007. while ((loc != NULL)&&(loc[3+strlen("expiryDate")+c] != '\"'))
  8008. {
  8009. sstr[c] = loc[3+strlen("expiryDate")+c];
  8010. c++;
  8011. }
  8012. sstr[c] = '\0';
  8013. strcpy(expiryDatestr, sstr);
  8014. }
  8015. //***********parentIdTag*************/
  8016. loc = strstr(payload, "parentIdTag");
  8017. memset(sstr ,0, sizeof(sstr) );
  8018. c = 0;
  8019. if(loc == NULL)
  8020. {
  8021. parentIdTagISNULL = TRUE;
  8022. }
  8023. else
  8024. {
  8025. while ((loc != NULL)&&(loc[3+strlen("parentIdTag")+c] != '\"'))
  8026. {
  8027. sstr[c] = loc[3+strlen("parentIdTag")+c];
  8028. c++;
  8029. }
  8030. sstr[c] = '\0';
  8031. strcpy(parentIdTagstr, sstr);
  8032. }
  8033. //***********status*************/
  8034. loc = strstr(payload, "status");
  8035. memset(sstr ,0, sizeof(sstr) );
  8036. c = 0;
  8037. while (loc[3+strlen("status")+c] != '\"')
  8038. {
  8039. sstr[c] = loc[3+strlen("status")+c];
  8040. c++;
  8041. }
  8042. sstr[c] = '\0';
  8043. strcpy(statusstr, sstr);
  8044. #ifdef SystemLogMessage
  8045. if(expiryDateISNULL == FALSE)
  8046. DEBUG_INFO("expiryDate: %s\n", expiryDatestr);
  8047. if(parentIdTagISNULL == FALSE)
  8048. DEBUG_INFO("parentIdTag: %s\n", parentIdTagstr);
  8049. DEBUG_INFO("status: %s\n", statusstr);
  8050. #endif
  8051. if(expiryDateISNULL == FALSE)
  8052. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate, expiryDatestr);
  8053. if(parentIdTagISNULL == FALSE)
  8054. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, parentIdTagstr);
  8055. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, statusstr);
  8056. //Update idTag information to authorization cache if supproted
  8057. if((strcmp((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "true") == 0) && (ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag != NULL) && (ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate != NULL) )
  8058. {
  8059. if((access(filename,F_OK))!=-1)
  8060. {
  8061. DEBUG_INFO("AuthorizationCache exist.\n");
  8062. }
  8063. else
  8064. {
  8065. DEBUG_INFO("AuthorizationCache not exist\n");
  8066. FILE *log = fopen(filename, "w+");
  8067. if(log == NULL)
  8068. {
  8069. DEBUG_INFO("log is NULL\n");
  8070. goto out;
  8071. }
  8072. else
  8073. {
  8074. fclose(log);
  8075. }
  8076. }
  8077. FILE *infile;
  8078. FILE *outfile;
  8079. // open file for writing
  8080. infile = fopen (filename, "r");
  8081. outfile = fopen (tempfile, "w");
  8082. //*检测到文件结束标识返回1,否则返回0。*/
  8083. //DEBUG_INFO("feof(infile) =%d\n",feof(infile));
  8084. int c;
  8085. c = fgetc(infile);
  8086. DEBUG_INFO("c:%d\n",c);
  8087. rewind(infile);
  8088. if(c == EOF)
  8089. {
  8090. DEBUG_INFO("Orignal File is NULL\n");
  8091. if(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate != NULL)
  8092. {
  8093. strcpy(expiryDatestrtemp, (const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate);
  8094. }
  8095. else
  8096. {
  8097. strcpy(expiryDatestrtemp, "");
  8098. }
  8099. if(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag != NULL)
  8100. {
  8101. strcpy(parentIdTagstrtemp, (const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag);
  8102. }
  8103. else
  8104. {
  8105. //write Authorize IdTag
  8106. strcpy(parentIdTagstrtemp, (const char *)ShmOCPP16Data->Authorize.IdTag);
  8107. }
  8108. strcpy(statusstrtemp, (const char *)ShmOCPP16Data->Authorize.IdTag);
  8109. fprintf(outfile,"[{\"idTagInfo\":{\"expiryDate\":\"%s\",\"parentIdTag\":\"%s\",\"status\":\"%s\"}}]\n", expiryDatestrtemp, parentIdTagstrtemp, statusstrtemp);
  8110. fclose(infile);
  8111. fclose(outfile);
  8112. sprintf(rmFileCmd,"rm -f %s",filename);
  8113. system(rmFileCmd);
  8114. resultRename = rename(tempfile, filename);
  8115. if(resultRename == 0)
  8116. {
  8117. DEBUG_INFO("File renamed successfully");
  8118. }
  8119. else
  8120. {
  8121. DEBUG_INFO("Error: unable to rename the file");
  8122. }
  8123. }
  8124. else
  8125. {
  8126. char buf[160]={0};
  8127. DEBUG_INFO("Orignal File is not NULL\n");
  8128. while (fgets(buf, sizeof(buf), infile) != NULL)
  8129. {
  8130. DEBUG_INFO("Orignal File is not NULL-1\n");
  8131. buf[strlen(buf) - 1] = '\0'; // eat the newline fgets() stores
  8132. memset(expiryDatestr, 0, sizeof(expiryDatestrtemp));
  8133. memset(parentIdTagstr,0, sizeof(parentIdTagstrtemp));
  8134. memset(statusstr, 0, sizeof(statusstrtemp));
  8135. memset(expiryDatestrtemp, 0, sizeof(expiryDatestrtemp));
  8136. memset(parentIdTagstrtemp, 0, sizeof(parentIdTagstrtemp));
  8137. memset(statusstrtemp, 0, sizeof(statusstrtemp));
  8138. //*********************expiryDate***************/
  8139. loc = strstr(buf, "expiryDate");
  8140. memset(sstr ,0, sizeof(sstr) );
  8141. c = 0;
  8142. while (loc[3+strlen("expiryDate")+c] != '\"')
  8143. {
  8144. sstr[c] = loc[3+strlen("expiryDate")+c];
  8145. c++;
  8146. }
  8147. sstr[c] = '\0';
  8148. strcpy(expiryDatestr,sstr);
  8149. //*********************parentIdTag***************/
  8150. loc = strstr(buf, "parentIdTag");
  8151. memset(sstr ,0, sizeof(sstr) );
  8152. c = 0;
  8153. while (loc[3+strlen("parentIdTag")+c] != '\"')
  8154. {
  8155. sstr[c] = loc[3+strlen("parentIdTag")+c];
  8156. c++;
  8157. }
  8158. sstr[c] = '\0';
  8159. strcpy(parentIdTagstr,sstr);
  8160. //*********************status***************/
  8161. loc = strstr(buf, "status");
  8162. memset(sstr ,0, sizeof(sstr) );
  8163. c = 0;
  8164. while (loc[3+strlen("status")+c] != '\"')
  8165. {
  8166. sstr[c] = loc[3+strlen("status")+c];
  8167. c++;
  8168. }
  8169. sstr[c] = '\0';
  8170. strcpy(statusstr,sstr);
  8171. if((ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag == NULL) || strcmp((const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, "") == 0)
  8172. {
  8173. DEBUG_INFO("ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag is NULL\n");
  8174. responseIdTagInfoAsZero = 1;
  8175. }
  8176. else
  8177. {
  8178. DEBUG_INFO("ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag=%s\n",ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag);
  8179. }
  8180. if((responseIdTagInfoAsZero == 0)&&(strcmp(parentIdTagstr,(const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag) == 0))
  8181. {
  8182. //modify item
  8183. if(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate != NULL)
  8184. {
  8185. strcpy(expiryDatestrtemp,(const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate);
  8186. //json_object_object_add(temp_obj, "expiryDate", json_object_new_string(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate));
  8187. }
  8188. else
  8189. {
  8190. strcpy(expiryDatestrtemp, "");
  8191. //json_object_object_add(temp_obj, "expiryDate", json_object_new_string(""));
  8192. }
  8193. if(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag != NULL)
  8194. {
  8195. strcpy(parentIdTagstrtemp,(const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag);
  8196. //json_object_object_add(temp_obj, "parentIdTag", json_object_new_string(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag));
  8197. }
  8198. else
  8199. {
  8200. strcpy(parentIdTagstrtemp, parentIdTagstr);
  8201. //json_object_object_add(temp_obj, "parentIdTag", json_object_new_string(json_object_get_string(parentIdTagitem)));
  8202. }
  8203. strcpy(statusstrtemp,(const char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status);
  8204. }
  8205. else
  8206. {
  8207. //wrie original item
  8208. strcpy(expiryDatestrtemp, expiryDatestr);
  8209. strcpy(parentIdTagstrtemp, parentIdTagstr);
  8210. strcpy(statusstrtemp, statusstr);
  8211. }
  8212. fprintf(outfile,"[{\"idTagInfo\":{\"expiryDate\":\"%s\",\"parentIdTag\":\"%s\",\"status\":\"%s\"}}]\n", expiryDatestrtemp, parentIdTagstrtemp, statusstrtemp);
  8213. }
  8214. fclose(infile);
  8215. fclose(outfile);
  8216. sprintf(rmFileCmd,"rm -f %s",filename);
  8217. system(rmFileCmd);
  8218. resultRename = rename(tempfile, filename);
  8219. if(resultRename == 0)
  8220. {
  8221. DEBUG_INFO("File renamed successfully");
  8222. }
  8223. else
  8224. {
  8225. DEBUG_INFO("Error: unable to rename the file");
  8226. }
  8227. }
  8228. }
  8229. out:
  8230. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  8231. ShmOCPP16Data->SpMsg.bits.AuthorizeConf = 1; // inform csu
  8232. authorizeRetryTimes = 0;
  8233. }
  8234. void handleBootNotificationResponse(char *payload, int gun_index)
  8235. {
  8236. mtrace();
  8237. char sstr[140]={ 0 };//sstr[200]={ 0 };
  8238. char statusStr[12]={0};
  8239. char currentTimeStr[30]={0};
  8240. char *loc;
  8241. int intervalInt = 0;
  8242. int c = 0;
  8243. //double diff_t;
  8244. struct tm tp;
  8245. char buf[28]={0};
  8246. char timebuf[50]={0};
  8247. DEBUG_INFO("handleBootNotificationResponse ...\n");
  8248. //*** interval ****/
  8249. c = 0;
  8250. loc = strstr(payload, "interval");
  8251. printf("loc=%s\n",loc);
  8252. memset(sstr ,0, sizeof(sstr) );
  8253. while ((loc != NULL) &&(loc[strlen("interval")+2+c] != ',') &&(loc[strlen("interval")+2+c] != '}') )
  8254. {
  8255. sstr[c] = loc[strlen("interval")+2+c];
  8256. //printf("i=%d sstr=%c\n",c, sstr[c]);
  8257. c++;
  8258. }
  8259. sstr[c] = '\0';
  8260. DEBUG_INFO("id=%d\n",atoi(sstr));
  8261. intervalInt = atoi(sstr);
  8262. //***status ****/
  8263. loc = strstr(payload, "status");
  8264. memset(sstr ,0, sizeof(sstr) );
  8265. c = 0;
  8266. while ((loc != NULL) &&(loc[3+strlen("status")+c] != '\"'))
  8267. {
  8268. sstr[c] = loc[3+strlen("status")+c];
  8269. c++;
  8270. }
  8271. sstr[c] = '\0';
  8272. strcpy(statusStr, sstr);
  8273. //***currentTime ****/
  8274. loc = strstr(payload, "currentTime");
  8275. //printf("loc=%s\n",loc);
  8276. memset(sstr ,0, sizeof(sstr) );
  8277. c = 0;
  8278. while ((loc != NULL) &&(loc[3+strlen("currentTime")+c] != '\"'))
  8279. {
  8280. sstr[c] = loc[3+strlen("currentTime")+c];
  8281. c++;
  8282. }
  8283. sstr[c] = '\0';
  8284. strcpy(currentTimeStr, sstr);
  8285. BootNotificationInterval = ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval = intervalInt;
  8286. HeartBeatWaitTime = BootNotificationInterval;
  8287. #ifdef SystemLogMessage
  8288. DEBUG_INFO("currentTime: %s\n", currentTimeStr);
  8289. DEBUG_INFO("interval: %d\n", intervalInt);
  8290. DEBUG_INFO("status: %s\n", statusStr);
  8291. #endif
  8292. //write back to ShmOCPP16Data->BootNotification
  8293. strcpy((char *)ShmOCPP16Data->BootNotification.ResponseCurrentTime, currentTimeStr);
  8294. ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval = intervalInt;
  8295. strcpy((char *)ShmOCPP16Data->BootNotification.ResponseStatus, statusStr);
  8296. if((strcmp(statusStr, RegistrationStatusStr[RegistrationStatus_Accepted]) == 0 )/* ||
  8297. (strcmp(status, RegistrationStatusStr[RegistrationStatus_Pending]) == 0) ||
  8298. (strcmp(status, RegistrationStatusStr[RegistrationStatus_Rejected]) == 0)*/)
  8299. {
  8300. server_sign = TRUE;
  8301. server_pending =FALSE;
  8302. }
  8303. else if(strcmp(statusStr, RegistrationStatusStr[RegistrationStatus_Pending]) == 0)
  8304. {
  8305. server_pending = TRUE;
  8306. }
  8307. strptime((const char *)ShmOCPP16Data->BootNotification.ResponseCurrentTime, "%Y-%m-%dT%H:%M:%S", &tp);
  8308. tp.tm_isdst = -1;
  8309. //time_t utc = mktime(&tp);
  8310. strftime(buf, 28, "%Y-%m-%d %H:%M:%S", &tp);
  8311. memset(timebuf, 0, sizeof timebuf);
  8312. sprintf(timebuf,"date -s '%s'",buf);
  8313. DEBUG_INFO("timebuf=%s\n",timebuf);
  8314. system(timebuf);
  8315. //==============================================
  8316. // RTC sync
  8317. //==============================================
  8318. system("/sbin/hwclock -w --systohc");
  8319. ShmOCPP16Data->OcppConnStatus = 1; ////0: disconnected, 1: connected
  8320. ShmOCPP16Data->SpMsg.bits.BootNotificationConf = 1;
  8321. }
  8322. void handleDataTransferResponse(char *payload, int gun_index)
  8323. {
  8324. char sstr[160]={0};//sstr[200]={ 0 };
  8325. int c = 0;
  8326. char *loc;
  8327. DEBUG_INFO("handleDataTransferResponse ...\n");
  8328. loc = strstr(payload, "status");
  8329. printf("loc=%s\n",loc);
  8330. c = 0;
  8331. while (loc[3+strlen("status")+c] != '\"')
  8332. {
  8333. sstr[c] = loc[3+strlen("status")+c];
  8334. //printf("i=%d sstr=%c\n",c, sstr[c]);
  8335. c++;
  8336. }
  8337. sstr[c] = '\0';
  8338. DEBUG_INFO(" DataTransferResponse=%s\n", sstr);
  8339. #ifdef SystemLogMessage
  8340. DEBUG_INFO("data: %s\n", payload);
  8341. #endif
  8342. }
  8343. void handleDiagnosticsStatusNotificationResponse(char *payload, int gun_index)
  8344. {
  8345. DEBUG_INFO("handleDiagnosticsStatusNotificationResponse ...\n");
  8346. //struct json_object *obj;
  8347. // obj = json_tokener_parse(payload);
  8348. ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 0;
  8349. ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationConf = 1;
  8350. //No fields are defined.
  8351. }
  8352. void handleFirmwareStatusNotificationResponse(char *payload, int gun_index)
  8353. {
  8354. DEBUG_INFO("handleFirmwareStatusNotificationResponse ...\n");
  8355. //struct json_object *obj;
  8356. // obj = json_tokener_parse(payload);
  8357. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 0;
  8358. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationConf = 1;
  8359. //No fields are defined.
  8360. }
  8361. void handleHeartbeatResponse(char *payload, int gun_index)
  8362. {
  8363. mtrace();
  8364. //double diff_t;
  8365. struct tm tp;
  8366. char buf[28]={0};
  8367. char timebuf[50]={0};
  8368. char sstr[30]={ 0 };
  8369. int c = 0;
  8370. char *loc;
  8371. //[3,"9c2e3c41-ab34-409e-8902-f5f48b6de641",{"currentTime":"2018-09-06T02:22:57.171Z"}]
  8372. DEBUG_INFO("handleHeartbeatResponse ...\n");
  8373. c = 0;
  8374. loc = strstr(payload, "currentTime");
  8375. memset(sstr ,0, sizeof(sstr) );
  8376. while (loc[3+strlen("currentTime")+c] != '\"')
  8377. {
  8378. sstr[c] = loc[3+strlen("currentTime")+c];
  8379. c++;
  8380. }
  8381. sstr[c] = '\0';
  8382. strcpy((char *)ShmOCPP16Data->Heartbeat.ResponseCurrentTime,sstr);
  8383. #ifdef SystemLogMessage
  8384. DEBUG_INFO("currentTime: %s\n", ShmOCPP16Data->Heartbeat.ResponseCurrentTime);
  8385. #endif
  8386. strptime((const char *)ShmOCPP16Data->Heartbeat.ResponseCurrentTime, "%Y-%m-%dT%H:%M:%S", &tp);
  8387. tp.tm_isdst = -1;
  8388. //time_t utc = mktime(&tp);
  8389. strftime(buf, 28, "%Y-%m-%d %H:%M:%S", &tp);
  8390. memset(timebuf, 0, sizeof timebuf);
  8391. sprintf(timebuf,"date -s '%s'",buf);
  8392. system(timebuf);
  8393. //==============================================
  8394. // RTC sync
  8395. //==============================================
  8396. system("/sbin/hwclock -w --systohc");
  8397. if(FirstHeartBeat == 0)
  8398. {
  8399. FirstHeartBeat = 1;
  8400. }
  8401. }
  8402. void handleMeterValuesResponse(char *payload, int gun_index)
  8403. {
  8404. mtrace();
  8405. //struct json_object *obj;
  8406. DEBUG_INFO("handleMeterValuesResponse ...\n");
  8407. //No fields are defined.
  8408. }
  8409. void handleStartTransactionResponse(char *payload, int gun_index)
  8410. {
  8411. mtrace();
  8412. char sstr[30]={ 0 };
  8413. int c = 0;
  8414. char *loc;
  8415. int transactionIdInt = 0;
  8416. //[3,"f7da35db-9d9b-4362-841f-26424be1064f",{"idTagInfo":{"expiryDate":"2020-06-19T01:10:00.000Z","parentIdTag":"1UF1YvGvmNbLF17sP6LY","status":"Accepted"},"transactionId":2146754131}]
  8417. DEBUG_INFO("handleStartTransactionResponse\n");
  8418. //****************expiryDate********************/
  8419. loc = strstr(payload, "expiryDate");
  8420. if(loc == NULL)
  8421. {
  8422. strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ExpiryDate, "");
  8423. }
  8424. else
  8425. {
  8426. c = 0;
  8427. memset(sstr ,0, sizeof(sstr) );
  8428. while (loc[3+strlen("expiryDate")+c] != '\"')
  8429. {
  8430. sstr[c] = loc[3+strlen("expiryDate")+c];
  8431. c++;
  8432. }
  8433. sstr[c] = '\0';
  8434. sprintf((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ExpiryDate, "%s", sstr);
  8435. }
  8436. //****************parentIdTag********************/
  8437. loc = strstr(payload, "parentIdTag");
  8438. if(loc == NULL)
  8439. {
  8440. strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ParentIdTag, "");
  8441. }
  8442. else
  8443. {
  8444. c = 0;
  8445. memset(sstr ,0, sizeof(sstr) );
  8446. while (loc[3+strlen("parentIdTag")+c] != '\"')
  8447. {
  8448. sstr[c] = loc[3+strlen("parentIdTag")+c];
  8449. c++;
  8450. }
  8451. sstr[c] = '\0';
  8452. sprintf((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ParentIdTag, "%s", sstr);
  8453. }
  8454. //****************status********************/
  8455. loc = strstr(payload, "status");
  8456. if(loc == NULL)
  8457. {
  8458. strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.Status, "");
  8459. }
  8460. else
  8461. {
  8462. c = 0;
  8463. memset(sstr ,0, sizeof(sstr) );
  8464. while (loc[3+strlen("status")+c] != '\"')
  8465. {
  8466. sstr[c] = loc[3+strlen("status")+c];
  8467. c++;
  8468. }
  8469. sstr[c] = '\0';
  8470. sprintf((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.Status, "%s", sstr);
  8471. }
  8472. //****************transactionId********************/
  8473. c=0;
  8474. loc = strstr(payload, "transactionId");
  8475. memset(sstr ,0, sizeof(sstr) );
  8476. while ((loc[strlen("transactionId")+2+c] != '}') && (loc[strlen("transactionId")+2+c] != ','))
  8477. {
  8478. sstr[c] = loc[strlen("transactionId")+2+c];
  8479. c++;
  8480. }
  8481. sstr[c] = '\0';
  8482. ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId = atoi(sstr);
  8483. transactionIdInt = ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId;
  8484. ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionConf = 1;
  8485. ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq = 0;
  8486. #ifdef SystemLogMessage
  8487. DEBUG_INFO("idTagInfo-expiryDate: %s\n", ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ExpiryDate);
  8488. DEBUG_INFO("idTagInfo-parentIdTag: %s\n", ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ParentIdTag);
  8489. DEBUG_INFO("idTagInfo-status: %s\n", ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.Status);
  8490. DEBUG_INFO("transactionId: %d\n", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId);
  8491. #endif
  8492. if(strcmp((const char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.Status, "Accepted") == 0)
  8493. {
  8494. //add Charging Record
  8495. SettingChargingRecord(gun_index, transactionIdInt);
  8496. }
  8497. }
  8498. void handleStatusNotificationResponse(char *payload, int gun_index)
  8499. {
  8500. mtrace();
  8501. printf("handleStatusNotificationResponse\n");
  8502. cpinitateMsg.bits[gun_index].StatusNotificationReq = 0;
  8503. cpinitateMsg.bits[gun_index].StatusNotificationConf = 1;
  8504. }
  8505. void handleStopTransactionnResponse(char *payload, int gun_index)
  8506. {
  8507. mtrace();
  8508. char sstr[30]={ 0 };
  8509. int c = 0;
  8510. char *loc;
  8511. //[3,"e79c0728-dd4c-4038-a90e-bb0eb23e1ee0",{"idTagInfo":{"expiryDate":"2020-06-19T01:10:00.000Z","parentIdTag":"1UF1YvGvmNbLF17sP6LY","status":"Accepted"}}]
  8512. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionConf = 1;
  8513. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq = 0;
  8514. loc = strstr(payload, "idTagInfo");
  8515. //***********************idTagInfo************************/
  8516. if(loc != NULL)
  8517. {
  8518. //***********************expiryDate************************/
  8519. loc = strstr(payload, "expiryDate");
  8520. if(loc != NULL)
  8521. {
  8522. memset(sstr ,0, sizeof(sstr) );
  8523. c = 0;
  8524. while (loc[3+strlen("expiryDate")+c] != '\"')
  8525. {
  8526. sstr[c] = loc[3+strlen("expiryDate")+c];
  8527. c++;
  8528. }
  8529. sstr[c] = '\0';
  8530. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ExpiryDate, "%s", sstr);
  8531. }
  8532. //***********************parentIdTag************************/
  8533. loc = strstr(payload, "parentIdTag");
  8534. if(loc != NULL)
  8535. {
  8536. memset(sstr ,0, sizeof(sstr) );
  8537. c = 0;
  8538. while (loc[3+strlen("parentIdTag")+c] != '\"')
  8539. {
  8540. sstr[c] = loc[3+strlen("parentIdTag")+c];
  8541. c++;
  8542. }
  8543. sstr[c] = '\0';
  8544. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ParentIdTag, "%s", sstr);
  8545. }
  8546. //***********************status************************/
  8547. loc = strstr(payload, "status");
  8548. memset(sstr ,0, sizeof(sstr) );
  8549. c = 0;
  8550. while (loc[3+strlen("status")+c] != '\"')
  8551. {
  8552. sstr[c] = loc[3+strlen("status")+c];
  8553. c++;
  8554. }
  8555. sstr[c] = '\0';
  8556. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.Status, "%s", sstr);
  8557. }
  8558. #ifdef SystemLogMessage
  8559. DEBUG_INFO("idTagInfo-expiryDate: %s\n", ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ExpiryDate);
  8560. DEBUG_INFO("idTagInfo-parentIdTag: %s\n", ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ParentIdTag);
  8561. DEBUG_INFO("idTagInfo-status: %s\n", ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.Status);
  8562. #endif
  8563. }
  8564. //==========================================
  8565. // Handle Error routine
  8566. //==========================================
  8567. void handleError(char *id, char *errorCode, char *errorDescription,char *payload)
  8568. {
  8569. mtrace();
  8570. #ifdef SystemLogMessage
  8571. DEBUG_INFO("errorCode: %s\n", errorCode);
  8572. DEBUG_INFO("errorDescription: %s\n", errorDescription);
  8573. DEBUG_INFO("errorDetails: %s\n", payload);
  8574. #endif
  8575. }
  8576. //===============================================
  8577. // Common routine
  8578. //===============================================
  8579. int initialConfigurationTable(void)
  8580. {
  8581. printf("initialConfigurationTable \n");
  8582. memset(&(ShmOCPP16Data->ConfigurationTable), 0, sizeof(struct OCPP16ConfigurationTable) );
  8583. /*Core Profile*/
  8584. //AllowOfflineTxForUnknownId
  8585. ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility = 1;
  8586. printf("AllowoddlineTXForUnknownId type: %d \n", ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility);
  8587. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemName, "AllowOfflineTxForUnknownId");
  8588. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData, "TRUE" );
  8589. //AuthorizationCacheEnabled
  8590. ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility = 1;
  8591. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemName, "AuthorizationCacheEnabled");
  8592. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "TRUE" /*"FALSE"*/ );
  8593. //AuthorizeRemoteTxRequests
  8594. ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility = 0;
  8595. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemName, "AuthorizeRemoteTxRequests");
  8596. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "TRUE" );
  8597. //BlinkRepeat
  8598. ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility = 1;
  8599. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemName, "BlinkRepeat");
  8600. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData, "0" );
  8601. //ClockAlignedDataInterval
  8602. ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility = 1;
  8603. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemName, "ClockAlignedDataInterval");
  8604. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData, "0" );
  8605. //ConnectionTimeOut
  8606. ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility = 1;
  8607. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemName, "ConnectionTimeOut");
  8608. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData, "60" );
  8609. //GetConfigurationMaxKeys
  8610. ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility =0;
  8611. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemName, "GetConfigurationMaxKeys");
  8612. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData, "43" );
  8613. // HeartbeatInterval
  8614. ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility = 1;
  8615. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemName, "HeartbeatInterval");
  8616. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "10" );
  8617. // LightIntensity
  8618. ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility = 1;
  8619. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemName, "LightIntensity");
  8620. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData, "0" );
  8621. // LocalAuthorizeOffline
  8622. ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility = 1;//0; --- for OCTT Test case
  8623. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemName, "LocalAuthorizeOffline");
  8624. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "TRUE" );
  8625. // LocalPreAuthorize
  8626. ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility = 1; //0; --- for OCTT Test case
  8627. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemName, "LocalPreAuthorize");
  8628. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "FALSE" );
  8629. // MaxEnergyOnInvalidId
  8630. ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility = 1;
  8631. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemName, "MaxEnergyOnInvalidId");
  8632. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData, "0" );
  8633. // MeterValuesAlignedData
  8634. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility = 1;
  8635. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemName, "MeterValuesAlignedData");
  8636. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "V,A,KW,KWh" );
  8637. // MeterValuesAlignedDataMaxLength
  8638. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility = 0;
  8639. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemName, "MeterValuesAlignedDataMaxLength");
  8640. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData, "4" );
  8641. // MeterValuesSampledData
  8642. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility = 1;
  8643. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemName, "MeterValuesSampledData");
  8644. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "V,A,KW,KWh" );
  8645. // MeterValuesSampledDataMaxLength
  8646. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility = 0;
  8647. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemName, "MeterValuesSampledDataMaxLength");
  8648. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData, "4" );
  8649. // MeterValueSampleInterval
  8650. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility = 1;
  8651. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemName, "MeterValueSampleInterval");
  8652. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData, "10" );
  8653. // MinimumStatusDuration
  8654. ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility = 1;
  8655. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemName, "MinimumStatusDuration");
  8656. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "0" );
  8657. // NumberOfConnectors
  8658. ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility = 0;
  8659. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemName, "NumberOfConnectors");
  8660. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "3" );
  8661. // ResetRetries
  8662. ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility = 1;
  8663. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemName, "ResetRetries");
  8664. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData, "3" );
  8665. // ConnectorPhaseRotation
  8666. ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility = 1;
  8667. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemName, "ConnectorPhaseRotation");
  8668. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "Unknown" );
  8669. // ConnectorPhaseRotationMaxLength
  8670. ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility = 0;
  8671. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemName, "ConnectorPhaseRotationMaxLength");
  8672. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData, "1" );
  8673. // StopTransactionOnEVSideDisconnect
  8674. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility = 1;// 0; // --- for OCTT Test case
  8675. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemName, "StopTransactionOnEVSideDisconnect");
  8676. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData, "TRUE" );
  8677. // StopTransactionOnInvalidId
  8678. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility = 1;
  8679. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemName, "StopTransactionOnInvalidId");
  8680. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData, "FALSE" );
  8681. // StopTxnAlignedData
  8682. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility = 1;
  8683. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemName, "StopTxnAlignedData");
  8684. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData, "Energy.Active.Import.Register" );
  8685. // StopTxnAlignedDataMaxLength
  8686. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility = 0;
  8687. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemName, "StopTxnAlignedDataMaxLength");
  8688. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData, "0" );
  8689. // StopTxnSampledData
  8690. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility = 1;
  8691. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemName, "StopTxnSampledData");
  8692. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Energy.Active.Import.Register" );
  8693. // StopTxnSampledDataMaxLength
  8694. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility = 0;
  8695. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemName, "StopTxnSampledDataMaxLength");
  8696. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData, "0" );
  8697. // SupportedFeatureProfiles
  8698. ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility = 0;
  8699. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemName, "SupportedFeatureProfiles");
  8700. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData, "Core,FirmwareManagement,LocalAuthListManagement,Reservation,SmartCharging,RemoteTrigger" );
  8701. // SupportedFeatureProfilesMaxLength
  8702. ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility = 0;
  8703. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemName, "SupportedFeatureProfilesMaxLength");
  8704. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData, "6" );
  8705. // TransactionMessageAttempts
  8706. ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility = 1;
  8707. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemName, "TransactionMessageAttempts");
  8708. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData, "3" );
  8709. TransactionMessageAttemptsValue = atoi((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData);
  8710. // TransactionMessageRetryInterval
  8711. ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility = 1;
  8712. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemName, "TransactionMessageRetryInterval");
  8713. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData, "60" );
  8714. TransactionMessageRetryIntervalValue = atoi((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData);
  8715. // UnlockConnectorOnEVSideDisconnect
  8716. ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility = 1;//0; --- for OCTT Test case
  8717. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemName, "UnlockConnectorOnEVSideDisconnect");
  8718. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData, "TRUE" );
  8719. // WebSocketPingInterval
  8720. ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility = 1;
  8721. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemName, "WebSocketPingInterval");
  8722. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "30" );
  8723. //* Local Auth List Management Profile*/
  8724. #if 1
  8725. //For OCTT Test Case
  8726. ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility = 1;
  8727. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemName, "LocalAuthorizationListEnabled");
  8728. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE" );
  8729. #endif
  8730. #if 0 // remove temporally
  8731. //LocalAuthListEnabled
  8732. ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility = 1;
  8733. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemName, "LocalAuthListEnabled");
  8734. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE" );
  8735. #endif
  8736. //LocalAuthListMaxLength
  8737. ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility = 0;
  8738. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemName, "LocalAuthListMaxLength");
  8739. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData, "500" );
  8740. //SendLocalListMaxLength
  8741. ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility = 0;
  8742. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemName, "SendLocalListMaxLength");
  8743. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData, "500" );
  8744. //ReserveConnectorZeroSupported
  8745. ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility = 0;
  8746. strcpy((char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemName, "ReserveConnectorZeroSupported");
  8747. strcpy((char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData, "TRUE"/*"FALSE"*/ ); //For OCTT Test Case
  8748. //* Smart Charging Profile */
  8749. //ChargeProfileMaxStackLevel
  8750. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility = 0;
  8751. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemName, "ChargeProfileMaxStackLevel");
  8752. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData, "3" );
  8753. // ChargingScheduleAllowedChargingRateUnit
  8754. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility = 0;
  8755. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemName, "ChargingScheduleAllowedChargingRateUnit");
  8756. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData, "Current" );
  8757. // ChargingScheduleMaxPeriods
  8758. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility = 0;
  8759. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemName, "ChargingScheduleMaxPeriods");
  8760. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData, "10" );
  8761. // ConnectorSwitch3to1PhaseSupported
  8762. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility = 0;
  8763. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemName, "ConnectorSwitch3to1PhaseSupported");
  8764. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData, "TRUE" );
  8765. // MaxChargingProfilesInstalled
  8766. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility = 0;
  8767. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemName, "MaxChargingProfilesInstalled");
  8768. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData, "9" );
  8769. return 0;
  8770. }
  8771. void getKeyValue(char *keyReq)
  8772. {
  8773. int isEmpty = FALSE;
  8774. int isKnowKey = FALSE;
  8775. //int unKnowIndex = 0;
  8776. DEBUG_INFO("getKeyValue \n");
  8777. if((keyReq == NULL) || (strlen(keyReq) == 0))
  8778. isEmpty = TRUE;
  8779. if(isEmpty || strcmp(keyReq, "AllowOfflineTxForUnknownId") == 0)
  8780. {
  8781. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_AllowOfflineTxForUnknownId].Item, "AllowOfflineTxForUnknownId");
  8782. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].Key, "AllowOfflineTxForUnknownId");
  8783. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility == 1)
  8784. {
  8785. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].ReadOnly, "0"/*"FALSE"*/);
  8786. }
  8787. else
  8788. {
  8789. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].ReadOnly, "1"/*"TRUE"*/);
  8790. }
  8791. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData );
  8792. isKnowKey = TRUE;
  8793. }
  8794. if(isEmpty || strcmp(keyReq, "AuthorizationCacheEnabled") == 0 )
  8795. {
  8796. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_AuthorizationCacheEnabled].Item, "AuthorizationCacheEnabled");
  8797. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].Key, "AuthorizationCacheEnabled");
  8798. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility == 1)
  8799. {
  8800. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].ReadOnly, "0"/*"FALSE"*/);
  8801. }
  8802. else
  8803. {
  8804. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].ReadOnly, "1"/*"TRUE"*/);
  8805. }
  8806. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData );
  8807. isKnowKey = TRUE;
  8808. }
  8809. if(isEmpty || strcmp(keyReq, "AuthorizeRemoteTxRequests") == 0 )
  8810. {
  8811. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_AuthorizeRemoteTxRequests].Item, "AuthorizeRemoteTxRequests");
  8812. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].Key, "AuthorizeRemoteTxRequests");
  8813. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility == 1)
  8814. {
  8815. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].ReadOnly, "0"/*"FALSE"*/);
  8816. }
  8817. else
  8818. {
  8819. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].ReadOnly, "1"/*"TRUE"*/);
  8820. }
  8821. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData );
  8822. isKnowKey = TRUE;
  8823. }
  8824. if(isEmpty || strcmp(keyReq, "BlinkRepeat") == 0 )
  8825. {
  8826. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_BlinkRepeat].Item, "BlinkRepeat");
  8827. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].Key, "BlinkRepeat");
  8828. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility == 1)
  8829. {
  8830. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].ReadOnly, "0"/*"FALSE"*/);
  8831. }
  8832. else
  8833. {
  8834. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].ReadOnly, "1"/*"TRUE"*/);
  8835. }
  8836. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData );
  8837. isKnowKey = TRUE;
  8838. }
  8839. if(isEmpty || strcmp(keyReq, "ClockAlignedDataInterval") == 0 )
  8840. {
  8841. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ClockAlignedDataInterval].Item, "ClockAlignedDataInterval");
  8842. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].Key, "ClockAlignedDataInterval");
  8843. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility == 1)
  8844. {
  8845. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].ReadOnly, "0"/*"FALSE"*/);
  8846. }
  8847. else
  8848. {
  8849. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].ReadOnly, "1"/*"TRUE"*/);
  8850. }
  8851. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData );
  8852. isKnowKey = TRUE;
  8853. }
  8854. if(isEmpty || strcmp(keyReq, "ConnectionTimeOut") == 0 )
  8855. {
  8856. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectionTimeOut].Item, "ConnectionTimeOut");
  8857. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].Key, "ConnectionTimeOut");
  8858. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility == 1)
  8859. {
  8860. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].ReadOnly, "0"/*"FALSE"*/);
  8861. }
  8862. else
  8863. {
  8864. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].ReadOnly, "1"/*"TRUE"*/);
  8865. }
  8866. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData );
  8867. isKnowKey = TRUE;
  8868. }
  8869. if(isEmpty || strcmp(keyReq, "GetConfigurationMaxKeys") == 0 )
  8870. {
  8871. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_GetConfigurationMaxKeys].Item, "GetConfigurationMaxKeys");
  8872. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].Key, "GetConfigurationMaxKeys");
  8873. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility == 1)
  8874. {
  8875. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].ReadOnly, "0"/*"FALSE"*/);
  8876. }
  8877. else
  8878. {
  8879. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].ReadOnly, "1"/*"TRUE"*/);
  8880. }
  8881. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData );
  8882. isKnowKey = TRUE;
  8883. }
  8884. if(isEmpty || strcmp(keyReq, "HeartbeatInterval") == 0 )
  8885. {
  8886. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_HeartbeatInterval].Item, "HeartbeatInterval");
  8887. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].Key, "HeartbeatInterval");
  8888. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility == 1)
  8889. {
  8890. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].ReadOnly, "0"/*"FALSE"*/);
  8891. }
  8892. else
  8893. {
  8894. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].ReadOnly, "1"/*"TRUE"*/);
  8895. }
  8896. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData );
  8897. isKnowKey = TRUE;
  8898. }
  8899. if(isEmpty || strcmp(keyReq, "LightIntensity") == 0 )
  8900. {
  8901. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LightIntensity].Item, "LightIntensity");
  8902. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].Key, "LightIntensity");
  8903. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility == 1)
  8904. {
  8905. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].ReadOnly, "0"/*"FALSE"*/);
  8906. }
  8907. else
  8908. {
  8909. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].ReadOnly, "1"/*"TRUE"*/);
  8910. }
  8911. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData );
  8912. isKnowKey = TRUE;
  8913. }
  8914. if(isEmpty || strcmp(keyReq, "LocalAuthorizeOffline") == 0 )
  8915. {
  8916. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthorizeOffline].Item, "LocalAuthorizeOffline");
  8917. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].Key, "LocalAuthorizeOffline");
  8918. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility == 1)
  8919. {
  8920. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].ReadOnly, "0"/*"FALSE"*/);
  8921. }
  8922. else
  8923. {
  8924. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].ReadOnly, "1"/*"TRUE"*/);
  8925. }
  8926. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData );
  8927. isKnowKey = TRUE;
  8928. }
  8929. if(isEmpty || strcmp(keyReq, "LocalPreAuthorize") == 0 )
  8930. {
  8931. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalPreAuthorize].Item, "LocalPreAuthorize");
  8932. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].Key, "LocalPreAuthorize");
  8933. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility == 1)
  8934. {
  8935. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].ReadOnly, "0"/*"FALSE"*/);
  8936. }
  8937. else
  8938. {
  8939. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].ReadOnly, "1"/*"TRUE"*/);
  8940. }
  8941. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData );
  8942. isKnowKey = TRUE;
  8943. }
  8944. if(isEmpty || strcmp(keyReq, "MaxEnergyOnInvalidId") == 0 )
  8945. {
  8946. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MaxEnergyOnInvalidId].Item, "MaxEnergyOnInvalidId");
  8947. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].Key, "MaxEnergyOnInvalidId");
  8948. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility == 1)
  8949. {
  8950. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].ReadOnly, "0"/*"FALSE"*/);
  8951. }
  8952. else
  8953. {
  8954. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].ReadOnly, "1"/*"TRUE"*/);
  8955. }
  8956. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData );
  8957. isKnowKey = TRUE;
  8958. }
  8959. if(isEmpty || strcmp(keyReq, "MeterValuesAlignedData") == 0 )
  8960. {
  8961. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesAlignedData].Item, "MeterValuesAlignedData");
  8962. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].Key, "MeterValuesAlignedData");
  8963. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility == 1)
  8964. {
  8965. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].ReadOnly, "0"/*"FALSE"*/);
  8966. }
  8967. else
  8968. {
  8969. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].ReadOnly, "1"/*"TRUE"*/);
  8970. }
  8971. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData );
  8972. isKnowKey = TRUE;
  8973. }
  8974. if(isEmpty || strcmp(keyReq, "MeterValuesAlignedDataMaxLength") == 0 )
  8975. {
  8976. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesAlignedDataMaxLength].Item, "MeterValuesAlignedDataMaxLength");
  8977. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].Key, "MeterValuesAlignedDataMaxLength");
  8978. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility == 1)
  8979. {
  8980. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
  8981. }
  8982. else
  8983. {
  8984. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
  8985. }
  8986. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData );
  8987. isKnowKey = TRUE;
  8988. }
  8989. if(isEmpty || strcmp(keyReq, "MeterValuesSampledData") == 0 )
  8990. {
  8991. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesSampledData].Item, "MeterValuesSampledData");
  8992. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].Key, "MeterValuesSampledData");
  8993. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility == 1)
  8994. {
  8995. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].ReadOnly, "0"/*"FALSE"*/);
  8996. }
  8997. else
  8998. {
  8999. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].ReadOnly, "1"/*"TRUE"*/);
  9000. }
  9001. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData );
  9002. isKnowKey = TRUE;
  9003. }
  9004. if(isEmpty || strcmp(keyReq, "MeterValuesSampledDataMaxLength") == 0 )
  9005. {
  9006. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesSampledDataMaxLength].Item, "MeterValuesSampledDataMaxLength");
  9007. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].Key, "MeterValuesSampledDataMaxLength");
  9008. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility == 1)
  9009. {
  9010. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9011. }
  9012. else
  9013. {
  9014. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9015. }
  9016. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData );
  9017. isKnowKey = TRUE;
  9018. }
  9019. if(isEmpty || strcmp(keyReq, "MeterValueSampleInterval") == 0 )
  9020. {
  9021. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValueSampleInterval].Item, "MeterValueSampleInterval");
  9022. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].Key, "MeterValueSampleInterval");
  9023. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility == 1)
  9024. {
  9025. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].ReadOnly, "0"/*"FALSE"*/);
  9026. }
  9027. else
  9028. {
  9029. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].ReadOnly, "1"/*"TRUE"*/);
  9030. }
  9031. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData );
  9032. isKnowKey = TRUE;
  9033. }
  9034. if(isEmpty || strcmp(keyReq, "MinimumStatusDuration") == 0 )
  9035. {
  9036. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MinimumStatusDuration].Item, "MinimumStatusDuration");
  9037. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].Key, "MinimumStatusDuration");
  9038. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility == 1)
  9039. {
  9040. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].ReadOnly, "0"/*"FALSE"*/);
  9041. }
  9042. else
  9043. {
  9044. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].ReadOnly, "1"/*"TRUE"*/);
  9045. }
  9046. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[17].ItemData );
  9047. isKnowKey = TRUE;
  9048. }
  9049. if(isEmpty || strcmp(keyReq, "NumberOfConnectors") == 0 )
  9050. {
  9051. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_NumberOfConnectors].Item, "NumberOfConnectors");
  9052. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].Key, "NumberOfConnectors");
  9053. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility == 1)
  9054. {
  9055. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].ReadOnly, "0"/*"FALSE"*/);
  9056. }
  9057. else
  9058. {
  9059. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].ReadOnly, "1"/*"TRUE"*/);
  9060. }
  9061. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData );
  9062. isKnowKey = TRUE;
  9063. }
  9064. if(isEmpty || strcmp(keyReq, "ResetRetries") == 0 )
  9065. {
  9066. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ResetRetries].Item, "ResetRetries");
  9067. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].Key, "ResetRetries");
  9068. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility == 1)
  9069. {
  9070. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].ReadOnly, "0"/*"FALSE"*/);
  9071. }
  9072. else
  9073. {
  9074. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].ReadOnly, "1"/*"TRUE"*/);
  9075. }
  9076. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData );
  9077. isKnowKey = TRUE;
  9078. }
  9079. if(isEmpty || strcmp(keyReq, "ConnectorPhaseRotation") == 0 )
  9080. {
  9081. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectorPhaseRotation].Item, "ConnectorPhaseRotation");
  9082. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].Key, "ConnectorPhaseRotation");
  9083. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility == 1)
  9084. {
  9085. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].ReadOnly, "0"/*"FALSE"*/);
  9086. }
  9087. else
  9088. {
  9089. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].ReadOnly, "1"/*"TRUE"*/);
  9090. }
  9091. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData );
  9092. isKnowKey = TRUE;
  9093. }
  9094. if(isEmpty || strcmp(keyReq, "ConnectorPhaseRotationMaxLength") == 0 )
  9095. {
  9096. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectorPhaseRotationMaxLength].Item, "ConnectorPhaseRotationMaxLength");
  9097. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].Key, "ConnectorPhaseRotationMaxLength");
  9098. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility == 1)
  9099. {
  9100. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9101. }
  9102. else
  9103. {
  9104. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9105. }
  9106. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].Value,(const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData );
  9107. isKnowKey = TRUE;
  9108. }
  9109. if(isEmpty || strcmp(keyReq, "StopTransactionOnEVSideDisconnect") == 0 )
  9110. {
  9111. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTransactionOnEVSideDisconnect].Item, "StopTransactionOnEVSideDisconnect");
  9112. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].Key, "StopTransactionOnEVSideDisconnect");
  9113. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility == 1)
  9114. {
  9115. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].ReadOnly, "0"/*"FALSE"*/);
  9116. }
  9117. else
  9118. {
  9119. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].ReadOnly, "1"/*"TRUE"*/);
  9120. }
  9121. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData );
  9122. isKnowKey = TRUE;
  9123. }
  9124. if(isEmpty || strcmp(keyReq, "StopTransactionOnInvalidId") == 0 )
  9125. {
  9126. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTransactionOnInvalidId].Item, "StopTransactionOnInvalidId");
  9127. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].Key, "StopTransactionOnInvalidId");
  9128. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility == 1)
  9129. {
  9130. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].ReadOnly, "0"/*"FALSE"*/);
  9131. }
  9132. else
  9133. {
  9134. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].ReadOnly, "1"/*"TRUE"*/);
  9135. }
  9136. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData );
  9137. isKnowKey = TRUE;
  9138. }
  9139. if(isEmpty || strcmp(keyReq, "StopTxnAlignedData") == 0 )
  9140. {
  9141. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnAlignedData].Item, "StopTxnAlignedData");
  9142. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].Key, "StopTxnAlignedData");
  9143. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility == 1)
  9144. {
  9145. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].ReadOnly, "0"/*"FALSE"*/);
  9146. }
  9147. else
  9148. {
  9149. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].ReadOnly, "1"/*"TRUE"*/);
  9150. }
  9151. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].Value,(const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData );
  9152. isKnowKey = TRUE;
  9153. }
  9154. if(isEmpty || strcmp(keyReq, "StopTxnAlignedDataMaxLength") == 0 )
  9155. {
  9156. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnAlignedDataMaxLength].Item, "StopTxnAlignedDataMaxLength");
  9157. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].Key, "StopTxnAlignedDataMaxLength");
  9158. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility == 1)
  9159. {
  9160. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9161. }
  9162. else
  9163. {
  9164. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9165. }
  9166. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData );
  9167. isKnowKey = TRUE;
  9168. }
  9169. if(isEmpty || strcmp(keyReq, "StopTxnSampledData") == 0 )
  9170. {
  9171. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnSampledData].Item, "StopTxnSampledData");
  9172. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].Key, "StopTxnSampledData");
  9173. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility == 1)
  9174. {
  9175. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].ReadOnly, "0"/*"FALSE"*/);
  9176. }
  9177. else
  9178. {
  9179. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].ReadOnly, "1"/*"TRUE"*/);
  9180. }
  9181. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData );
  9182. isKnowKey = TRUE;
  9183. }
  9184. if(isEmpty || strcmp(keyReq, "StopTxnSampledDataMaxLength") == 0 )
  9185. {
  9186. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnSampledDataMaxLength].Item, "StopTxnSampledDataMaxLength");
  9187. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].Key, "StopTxnSampledDataMaxLength");
  9188. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility == 1)
  9189. {
  9190. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9191. }
  9192. else
  9193. {
  9194. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9195. }
  9196. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData );
  9197. isKnowKey = TRUE;
  9198. }
  9199. if(isEmpty || strcmp(keyReq, "SupportedFeatureProfiles") == 0 )
  9200. {
  9201. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_SupportedFeatureProfiles].Item, "SupportedFeatureProfiles");
  9202. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].Key, "SupportedFeatureProfiles");
  9203. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility == 1)
  9204. {
  9205. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].ReadOnly, "0"/*"FALSE"*/);
  9206. }
  9207. else
  9208. {
  9209. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].ReadOnly, "1"/*"TRUE"*/);
  9210. }
  9211. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData );
  9212. isKnowKey = TRUE;
  9213. }
  9214. if(isEmpty || strcmp(keyReq, "SupportedFeatureProfilesMaxLength") == 0 )
  9215. {
  9216. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_SupportedFeatureProfilesMaxLength].Item, "SupportedFeatureProfilesMaxLength");
  9217. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].Key, "SupportedFeatureProfilesMaxLength");
  9218. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility == 1)
  9219. {
  9220. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9221. }
  9222. else
  9223. {
  9224. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9225. }
  9226. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData );
  9227. isKnowKey = TRUE;
  9228. }
  9229. if(isEmpty || strcmp(keyReq, "TransactionMessageAttempts") == 0 )
  9230. {
  9231. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_TransactionMessageAttempts].Item, "TransactionMessageAttempts");
  9232. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].Key, "TransactionMessageAttempts");
  9233. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility == 1)
  9234. {
  9235. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].ReadOnly, "0"/*"FALSE"*/);
  9236. }
  9237. else
  9238. {
  9239. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].ReadOnly, "1"/*"TRUE"*/);
  9240. }
  9241. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData );
  9242. isKnowKey = TRUE;
  9243. }
  9244. if(isEmpty || strcmp(keyReq, "TransactionMessageRetryInterval") == 0 )
  9245. {
  9246. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_TransactionMessageRetryInterval].Item, "TransactionMessageRetryInterval");
  9247. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].Key, "TransactionMessageRetryInterval");
  9248. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility == 1)
  9249. {
  9250. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].ReadOnly, "0"/*"FALSE"*/);
  9251. }
  9252. else
  9253. {
  9254. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].ReadOnly, "1"/*"TRUE"*/);
  9255. }
  9256. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData );
  9257. isKnowKey = TRUE;
  9258. }
  9259. if(isEmpty || strcmp(keyReq, "UnlockConnectorOnEVSideDisconnect") == 0 )
  9260. {
  9261. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Item, "UnlockConnectorOnEVSideDisconnect");
  9262. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Key, "UnlockConnectorOnEVSideDisconnect");
  9263. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility == 1)
  9264. {
  9265. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].ReadOnly, "0"/*"FALSE"*/);
  9266. }
  9267. else
  9268. {
  9269. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].ReadOnly, "1"/*"TRUE"*/);
  9270. }
  9271. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData );
  9272. isKnowKey = TRUE;
  9273. }
  9274. if(isEmpty || strcmp(keyReq, "WebSocketPingInterval") == 0 )
  9275. {
  9276. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_WebSocketPingInterval].Item, "WebSocketPingInterval");
  9277. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].Key, "WebSocketPingInterval");
  9278. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility == 1)
  9279. {
  9280. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].ReadOnly, "0"/*"FALSE"*/);
  9281. }
  9282. else
  9283. {
  9284. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].ReadOnly, "1"/*"TRUE"*/);
  9285. }
  9286. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData );
  9287. isKnowKey = TRUE;
  9288. }
  9289. #if 1
  9290. //For OCTT Test Case
  9291. if(isEmpty || strcmp(keyReq, "LocalAuthorizationListEnabled") == 0 )
  9292. {
  9293. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthListEnabled].Item, "LocalAuthorizationListEnabled");
  9294. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Key, "LocalAuthorizationListEnabled");
  9295. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1)
  9296. {
  9297. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "0"/*"FALSE"*/);
  9298. }
  9299. else
  9300. {
  9301. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "1"/*"TRUE"*/);
  9302. }
  9303. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData );
  9304. isKnowKey = TRUE;
  9305. }
  9306. #endif
  9307. #if 0 // remove temporally
  9308. if(isEmpty || strcmp(keyReq, "LocalAuthListEnabled") == 0 )
  9309. {
  9310. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthListEnabled].Item, "LocalAuthListEnabled");
  9311. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Key, "LocalAuthListEnabled");
  9312. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1)
  9313. {
  9314. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "0"/*"FALSE"*/);
  9315. }
  9316. else
  9317. {
  9318. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "1"/*"TRUE"*/);
  9319. }
  9320. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData );
  9321. isKnowKey = TRUE;
  9322. }
  9323. #endif
  9324. if(isEmpty || strcmp(keyReq, "LocalAuthListMaxLength") == 0 )
  9325. {
  9326. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthListMaxLength].Item, "LocalAuthListMaxLength");
  9327. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].Key, "LocalAuthListMaxLength");
  9328. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility == 1)
  9329. {
  9330. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9331. }
  9332. else
  9333. {
  9334. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9335. }
  9336. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData );
  9337. isKnowKey = TRUE;
  9338. }
  9339. if(isEmpty || strcmp(keyReq, "SendLocalListMaxLength") == 0 )
  9340. {
  9341. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_SendLocalListMaxLength].Item, "SendLocalListMaxLength");
  9342. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].Key, "SendLocalListMaxLength");
  9343. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility == 1)
  9344. {
  9345. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].ReadOnly, "0"/*"FALSE"*/);
  9346. }
  9347. else
  9348. {
  9349. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].ReadOnly, "1"/*"TRUE"*/);
  9350. }
  9351. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData );
  9352. isKnowKey = TRUE;
  9353. }
  9354. if(isEmpty || strcmp(keyReq, "ReserveConnectorZeroSupported") == 0 )
  9355. {
  9356. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ReserveConnectorZeroSupported].Item, "ReserveConnectorZeroSupported");
  9357. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].Key, "ReserveConnectorZeroSupported");
  9358. if(ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility == 1)
  9359. {
  9360. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].ReadOnly, "0"/*"FALSE"*/);
  9361. }
  9362. else
  9363. {
  9364. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].ReadOnly, "1"/*"TRUE"*/);
  9365. }
  9366. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].Value,(const char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData);
  9367. isKnowKey = TRUE;
  9368. }
  9369. if(isEmpty || strcmp(keyReq, "ChargeProfileMaxStackLevel") == 0 )
  9370. {
  9371. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ChargeProfileMaxStackLevel].Item, "ChargeProfileMaxStackLevel");
  9372. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].Key, "ChargeProfileMaxStackLevel");
  9373. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility == 1)
  9374. {
  9375. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].ReadOnly, "0"/*"FALSE"*/);
  9376. }
  9377. else
  9378. {
  9379. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].ReadOnly, "1"/*"TRUE"*/);
  9380. }
  9381. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData);
  9382. isKnowKey = TRUE;
  9383. }
  9384. if(isEmpty || strcmp(keyReq, "ChargingScheduleAllowedChargingRateUnit") == 0 )
  9385. {
  9386. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Item, "ChargingScheduleAllowedChargingRateUnit");
  9387. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Key, "ChargingScheduleAllowedChargingRateUnit");
  9388. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility == 1)
  9389. {
  9390. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].ReadOnly, "0"/*"FALSE"*/);
  9391. }
  9392. else
  9393. {
  9394. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].ReadOnly, "1"/*"TRUE"*/);
  9395. }
  9396. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData);
  9397. isKnowKey = TRUE;
  9398. }
  9399. if(isEmpty || strcmp(keyReq, "ChargingScheduleMaxPeriods") == 0 )
  9400. {
  9401. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ChargingScheduleMaxPeriods].Item, "ChargingScheduleMaxPeriods");
  9402. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].Key, "ChargingScheduleMaxPeriods");
  9403. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility == 1)
  9404. {
  9405. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].ReadOnly, "0"/*"FALSE"*/);
  9406. }
  9407. else
  9408. {
  9409. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].ReadOnly, "1"/*"TRUE"*/);
  9410. }
  9411. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData);
  9412. isKnowKey = TRUE;
  9413. }
  9414. if(isEmpty || strcmp(keyReq, "ConnectorSwitch3to1PhaseSupported") == 0 )
  9415. {
  9416. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Item, "ConnectorSwitch3to1PhaseSupported");
  9417. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Key, "ConnectorSwitch3to1PhaseSupported");
  9418. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility == 1)
  9419. {
  9420. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].ReadOnly, "0"/*"FALSE"*/);
  9421. }
  9422. else
  9423. {
  9424. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].ReadOnly, "1"/*"TRUE"*/);
  9425. }
  9426. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData);
  9427. isKnowKey = TRUE;
  9428. }
  9429. if(isEmpty || strcmp(keyReq, "MaxChargingProfilesInstalled") == 0 )
  9430. {
  9431. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MaxChargingProfilesInstalled].Item, "MaxChargingProfilesInstalled");
  9432. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].Key, "MaxChargingProfilesInstalled");
  9433. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility == 1)
  9434. {
  9435. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].ReadOnly, "0"/*"FLASE"*/);
  9436. }
  9437. else
  9438. {
  9439. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].ReadOnly, "1"/*"TRUE"*/);
  9440. }
  9441. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData);
  9442. isKnowKey = TRUE;
  9443. }
  9444. //=========================================================
  9445. if(!isEmpty && !isKnowKey)
  9446. {
  9447. DEBUG_INFO("unKnowIndex =%d\n", UnknownKeynum);
  9448. strcpy(unknownkey[UnknownKeynum], keyReq);
  9449. UnknownKeynum = UnknownKeynum + 1;
  9450. }
  9451. }
  9452. void processUnkownKey(void)
  9453. {
  9454. DEBUG_INFO("processUnkownKey\n");
  9455. memset(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey, 0 , sizeof(struct StructConfigurationKeyItems)* 10);
  9456. for(int index=0; index < UnknownKeynum; index++)
  9457. {
  9458. if(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[index].Item[0] == 0)
  9459. {
  9460. strcpy((char *)(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[index].Item), unknownkey[index]);
  9461. }
  9462. }
  9463. }
  9464. int setKeyValue(char *key, char *value)
  9465. {
  9466. int isSuccess = NotSupported;
  9467. int check_ascii=0;
  9468. #ifdef Debug
  9469. DEBUG_INFO(" setKeyValue key-value=%s %s\n",key,value);
  9470. #endif
  9471. if(strcmp(key, "AllowOfflineTxForUnknownId") == 0)
  9472. {
  9473. //Charger.AllowOfflineTxForUnknownId = (value.toLowerCase().equals("true")?true:false);
  9474. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility == 1)
  9475. {
  9476. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  9477. isSuccess = ConfigurationStatus_Accepted;
  9478. }
  9479. else
  9480. {
  9481. isSuccess = ConfigurationStatus_Rejected;
  9482. }
  9483. }
  9484. if(strcmp(key, "AuthorizationCacheEnabled") == 0)
  9485. {
  9486. //Charger.AuthorizationCacheEnabled = (value.toLowerCase().equals("true")?true:false);
  9487. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility == 1)
  9488. {
  9489. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "%s", value/*(strcmp(value, "true")==0) ?TRUE:FALSE*/ );
  9490. isSuccess = ConfigurationStatus_Accepted;
  9491. //updateSetting("AuthorizationCacheEnabled", (Charger.AuthorizationCacheEnabled?"1":"0"));
  9492. updateSetting("AuthorizationCacheEnabled",(char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[1].ItemData);
  9493. }
  9494. else
  9495. {
  9496. isSuccess = ConfigurationStatus_Rejected;
  9497. }
  9498. }
  9499. if(strcmp(key, "AuthorizeRemoteTxRequests") == 0)
  9500. {
  9501. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility == 1)
  9502. {
  9503. //Charger.AuthorizeRemoteTxRequests = (value.toLowerCase().equals("true")?true:false);
  9504. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  9505. isSuccess = ConfigurationStatus_Accepted;
  9506. }
  9507. else
  9508. {
  9509. isSuccess = ConfigurationStatus_Rejected;
  9510. }
  9511. }
  9512. if(strcmp(key, "BlinkRepeat") == 0)
  9513. {
  9514. //Charger.BlinkRepeat = Integer.parseInt(value);
  9515. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility == 1)
  9516. {
  9517. check_ascii = value[0];
  9518. if( (check_ascii < 48) || (check_ascii > 57) )
  9519. {
  9520. isSuccess = ConfigurationStatus_Rejected;
  9521. }
  9522. else
  9523. {
  9524. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData, "%d", atoi(value) );
  9525. isSuccess = ConfigurationStatus_Accepted;
  9526. }
  9527. }
  9528. else
  9529. {
  9530. isSuccess = ConfigurationStatus_Rejected;
  9531. }
  9532. }
  9533. if(strcmp(key, "ClockAlignedDataInterval") == 0)
  9534. {
  9535. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility == 1)
  9536. {
  9537. check_ascii = value[0];
  9538. if( (check_ascii < 48) || (check_ascii > 57) )
  9539. {
  9540. isSuccess = ConfigurationStatus_Rejected;
  9541. }
  9542. else
  9543. {
  9544. //Charger.ClockAlignedDataInterval = Integer.parseInt(value)*1000;
  9545. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData, "%d", atoi(value)*1000 );
  9546. isSuccess = ConfigurationStatus_Accepted;
  9547. }
  9548. }
  9549. else
  9550. {
  9551. isSuccess = ConfigurationStatus_Rejected;
  9552. }
  9553. }
  9554. if(strcmp(key, "ConnectionTimeOut") == 0 )
  9555. {
  9556. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility == 1)
  9557. {
  9558. check_ascii = value[0];
  9559. if( (check_ascii < 48) || (check_ascii > 57) )
  9560. {
  9561. isSuccess = ConfigurationStatus_Rejected;
  9562. }
  9563. else
  9564. {
  9565. //Charger.ConnectionTimeOut = Integer.parseInt(value)*1000;
  9566. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData, "%d", atoi(value));
  9567. isSuccess = ConfigurationStatus_Accepted;
  9568. }
  9569. }
  9570. else
  9571. {
  9572. isSuccess = ConfigurationStatus_Rejected;
  9573. }
  9574. }
  9575. if(strcmp(key, "HeartbeatInterval") == 0)
  9576. {
  9577. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility == 1)
  9578. {
  9579. check_ascii = value[0];
  9580. if( (check_ascii < 48) || (check_ascii > 57) )
  9581. {
  9582. isSuccess = ConfigurationStatus_Rejected;
  9583. }
  9584. else
  9585. {
  9586. //Charger.HeartbeatInterval = Integer.parseInt(value)*1000;
  9587. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "%d", atoi(value)/*atoi(value)*1000*/ );
  9588. HeartBeatWaitTime = atoi(value);
  9589. isSuccess = ConfigurationStatus_Accepted;
  9590. }
  9591. }
  9592. else
  9593. {
  9594. isSuccess = ConfigurationStatus_Rejected;
  9595. }
  9596. }
  9597. if(strcmp(key, "LightIntensity") == 0)
  9598. {
  9599. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility == 1)
  9600. {
  9601. check_ascii = value[0];
  9602. if( (check_ascii < 48) || (check_ascii > 57) )
  9603. {
  9604. isSuccess = ConfigurationStatus_Rejected;
  9605. }
  9606. else
  9607. {
  9608. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData, "%d", atoi(value) );
  9609. isSuccess = ConfigurationStatus_Accepted;
  9610. }
  9611. }
  9612. else
  9613. {
  9614. isSuccess = ConfigurationStatus_Rejected;
  9615. }
  9616. }
  9617. if(strcmp(key, "LocalAuthorizeOffline") == 0)
  9618. {
  9619. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility == 1)
  9620. {
  9621. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  9622. isSuccess = ConfigurationStatus_Accepted;
  9623. updateSetting("LocalAuthorizeOffline", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData);
  9624. }
  9625. else
  9626. {
  9627. isSuccess = ConfigurationStatus_Rejected;
  9628. }
  9629. }
  9630. if(strcmp(key, "LocalPreAuthorize") == 0)
  9631. {
  9632. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility == 1)
  9633. {
  9634. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  9635. isSuccess = ConfigurationStatus_Accepted;
  9636. }
  9637. else
  9638. {
  9639. isSuccess = ConfigurationStatus_Rejected;
  9640. }
  9641. }
  9642. if(strcmp(key, "MaxEnergyOnInvalidId") == 0)
  9643. {
  9644. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility == 1)
  9645. {
  9646. check_ascii = value[0];
  9647. if( (check_ascii < 48) || (check_ascii > 57) )
  9648. {
  9649. isSuccess = ConfigurationStatus_Rejected;
  9650. }
  9651. else
  9652. {
  9653. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData, "%d", atoi(value) );
  9654. isSuccess = ConfigurationStatus_Accepted;
  9655. }
  9656. }
  9657. else
  9658. {
  9659. isSuccess = ConfigurationStatus_Rejected;
  9660. }
  9661. }
  9662. if(strcmp(key, "MeterValuesAlignedData") == 0)
  9663. {
  9664. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility == 1)
  9665. {
  9666. //int valueLength = strlen(value);
  9667. for(int i = 0; value[i]; i++){
  9668. value[i] = tolower(value[i]);
  9669. }
  9670. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "%s", value );
  9671. isSuccess = ConfigurationStatus_Accepted;
  9672. }
  9673. else
  9674. {
  9675. isSuccess = ConfigurationStatus_Rejected;
  9676. }
  9677. }
  9678. if(strcmp(key, "MeterValuesSampledData") == 0 )
  9679. {
  9680. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility == 1)
  9681. {
  9682. //int valueLength = strlen(value);
  9683. for(int i = 0; value[i]; i++){
  9684. value[i] = tolower(value[i]);
  9685. }
  9686. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "%s", value );
  9687. isSuccess = ConfigurationStatus_Accepted;
  9688. }
  9689. else
  9690. {
  9691. isSuccess = ConfigurationStatus_Rejected;
  9692. }
  9693. }
  9694. if(strcmp(key, "MeterValueSampleInterval") == 0)
  9695. {
  9696. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility == 1)
  9697. {
  9698. check_ascii = value[0];
  9699. if( (check_ascii < 48) || (check_ascii > 57) )
  9700. {
  9701. isSuccess = ConfigurationStatus_Rejected;
  9702. }
  9703. else
  9704. {
  9705. //Charger.MeterValueSampleInterval = Integer.parseInt(value)*1000;
  9706. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData, "%d", atoi(value));
  9707. isSuccess = ConfigurationStatus_Accepted;
  9708. }
  9709. #ifdef Debug
  9710. DEBUG_INFO(" MeterValueSampleInterval is ConfigurationStatus_Accepted \n");
  9711. #endif
  9712. }
  9713. else
  9714. {
  9715. isSuccess = ConfigurationStatus_Rejected;
  9716. #ifdef Debug
  9717. DEBUG_INFO(" MeterValueSampleInterval is ConfigurationStatus_Rejected \n");
  9718. #endif
  9719. }
  9720. }
  9721. if(strcmp(key, "MinimumStatusDuration") == 0)
  9722. {
  9723. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility == 1)
  9724. {
  9725. check_ascii = value[0];
  9726. if( (check_ascii < 48) || (check_ascii > 57) )
  9727. {
  9728. isSuccess = ConfigurationStatus_Rejected;
  9729. }
  9730. else
  9731. {
  9732. //Charger.MinimumStatusDuration = Integer.parseInt(value);
  9733. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "%d", atoi(value) );
  9734. isSuccess = ConfigurationStatus_Accepted;
  9735. }
  9736. }
  9737. else
  9738. {
  9739. isSuccess = ConfigurationStatus_Rejected;
  9740. }
  9741. }
  9742. if(strcmp(key, "ResetRetries") == 0)
  9743. {
  9744. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility == 1)
  9745. {
  9746. check_ascii = value[0];
  9747. if( (check_ascii < 48) || (check_ascii > 57) )
  9748. {
  9749. isSuccess = ConfigurationStatus_Rejected;
  9750. }
  9751. else
  9752. {
  9753. //Charger.ResetRetries = Integer.parseInt(value);
  9754. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData, "%d", atoi(value) );
  9755. isSuccess = ConfigurationStatus_Accepted;
  9756. }
  9757. }
  9758. else
  9759. {
  9760. isSuccess = ConfigurationStatus_Rejected;
  9761. }
  9762. }
  9763. if(strcmp(key, "ConnectorPhaseRotation") == 0)
  9764. {
  9765. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility == 1)
  9766. {
  9767. //Charger.ConnectorPhaseRotation = value.toLowerCase();
  9768. //int valueLength = strlen(value);
  9769. for(int i = 0; value[i]; i++){
  9770. value[i] = tolower(value[i]);
  9771. }
  9772. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", value );
  9773. isSuccess = ConfigurationStatus_Accepted;
  9774. }
  9775. else
  9776. {
  9777. isSuccess = ConfigurationStatus_Rejected;
  9778. }
  9779. }
  9780. if(strcmp(key, "StopTransactionOnEVSideDisconnect") == 0)
  9781. {
  9782. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility == 1)
  9783. {
  9784. //Charger.StopTransactionOnEVSideDisconnect = (value.toLowerCase().equals("true")?true:false);
  9785. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  9786. isSuccess = ConfigurationStatus_Accepted;
  9787. }
  9788. else
  9789. {
  9790. isSuccess = ConfigurationStatus_Rejected;
  9791. }
  9792. }
  9793. if(strcmp(key, "StopTransactionOnInvalidId") == 0)
  9794. {
  9795. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility == 1)
  9796. {
  9797. //Charger.StopTransactionOnInvalidId = (value.toLowerCase().equals("true")?true:false);
  9798. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  9799. isSuccess = ConfigurationStatus_Accepted;
  9800. }
  9801. else
  9802. {
  9803. isSuccess = ConfigurationStatus_Rejected;
  9804. }
  9805. }
  9806. if(strcmp(key, "StopTxnAlignedData") == 0)
  9807. {
  9808. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility == 1)
  9809. {
  9810. //Charger.StopTxnAlignedData = value.toLowerCase();
  9811. //int valueLength = strlen(value);
  9812. for(int i = 0; value[i]; i++){
  9813. value[i] = tolower(value[i]);
  9814. }
  9815. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData, "%s", value );
  9816. isSuccess = ConfigurationStatus_Accepted;
  9817. }
  9818. else
  9819. {
  9820. isSuccess = ConfigurationStatus_Rejected;
  9821. }
  9822. }
  9823. if(strcmp(key, "StopTxnSampledData") == 0)
  9824. {
  9825. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility == 1)
  9826. {
  9827. //Charger.StopTxnSampledData = value.toLowerCase();
  9828. //int valueLength = strlen(value);
  9829. for(int i = 0; value[i]; i++){
  9830. value[i] = tolower(value[i]);
  9831. }
  9832. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "%s", value );
  9833. isSuccess = ConfigurationStatus_Accepted;
  9834. }
  9835. else
  9836. {
  9837. isSuccess = ConfigurationStatus_Rejected;
  9838. }
  9839. }
  9840. if(strcmp(key, "TransactionMessageAttempts") == 0)
  9841. {
  9842. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility == 1)
  9843. {
  9844. check_ascii = value[0];
  9845. if( (check_ascii < 48) || (check_ascii > 57) )
  9846. {
  9847. isSuccess = ConfigurationStatus_Rejected;
  9848. }
  9849. else
  9850. {
  9851. //Charger.TransactionMessageAttempts = Integer.parseInt(value);
  9852. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData, "%d", atoi(value) );
  9853. TransactionMessageAttemptsValue = atoi(value);
  9854. isSuccess = ConfigurationStatus_Accepted;
  9855. }
  9856. }
  9857. else
  9858. {
  9859. isSuccess = ConfigurationStatus_Rejected;
  9860. }
  9861. }
  9862. if(strcmp(key, "TransactionMessageRetryInterval") == 0)
  9863. {
  9864. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility == 1)
  9865. {
  9866. check_ascii = value[0];
  9867. if( (check_ascii < 48) || (check_ascii > 57) )
  9868. {
  9869. isSuccess = ConfigurationStatus_Rejected;
  9870. }
  9871. else
  9872. {
  9873. //Charger.TransactionMessageRetryInterval = Integer.parseInt(value)*1000;
  9874. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData, "%d", atoi(value) );
  9875. TransactionMessageRetryIntervalValue = atoi(value);
  9876. isSuccess = ConfigurationStatus_Accepted;
  9877. }
  9878. }
  9879. else
  9880. {
  9881. isSuccess = ConfigurationStatus_Rejected;
  9882. }
  9883. }
  9884. if(strcmp(key, "UnlockConnectorOnEVSideDisconnect") == 0)
  9885. {
  9886. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility == 1)
  9887. {
  9888. //Charger.UnlockConnectorOnEVSideDisconnect = (value.toLowerCase().equals("true")?true:false);
  9889. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  9890. isSuccess = ConfigurationStatus_Accepted;
  9891. }
  9892. else
  9893. {
  9894. isSuccess = ConfigurationStatus_Rejected;
  9895. }
  9896. }
  9897. if(strcmp(key, "WebSocketPingInterval") == 0)
  9898. {
  9899. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility == 1)
  9900. {
  9901. check_ascii = value[0];
  9902. if( (check_ascii < 48) || (check_ascii > 57) )
  9903. {
  9904. isSuccess = ConfigurationStatus_Rejected;
  9905. }
  9906. else
  9907. {
  9908. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "%d", atoi(value) );
  9909. isSuccess = ConfigurationStatus_Accepted;
  9910. }
  9911. }
  9912. else
  9913. {
  9914. isSuccess = ConfigurationStatus_Rejected;
  9915. }
  9916. }
  9917. #if 1
  9918. //For OCPP Test Case
  9919. if(strcmp(key, "LocalAuthorizationListEnabled") == 0)
  9920. {
  9921. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1)
  9922. {
  9923. sprintf((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  9924. isSuccess = ConfigurationStatus_Accepted;
  9925. //updateSetting("LocalAuthorizationListEnabled", (char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData);
  9926. }
  9927. else
  9928. {
  9929. isSuccess = ConfigurationStatus_Rejected;
  9930. }
  9931. }
  9932. #endif
  9933. #if 0 // rmove temporally
  9934. if(strcmp(key, "LocalAuthListEnabled") == 0)
  9935. {
  9936. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1)
  9937. {
  9938. sprintf((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" );
  9939. isSuccess = ConfigurationStatus_Accepted;
  9940. updateSetting("LocalAuthListEnabled", (char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData);
  9941. }
  9942. else
  9943. {
  9944. isSuccess = ConfigurationStatus_Rejected;
  9945. }
  9946. }
  9947. #endif
  9948. return isSuccess;
  9949. }
  9950. int updateSetting(char *key, char *value)
  9951. {
  9952. mtrace();
  9953. int isSuccess = FALSE;
  9954. char string[1000]={0}, buffer[1000]={0};
  9955. char strtemp[50]={0};
  9956. char sstr[50]={ 0 };//sstr[200]={ 0 };
  9957. int pos, c = 0;
  9958. char *loc;
  9959. int pos1=0;
  9960. FILE *f = fopen("/var/www/settings1", "r");
  9961. if(f == NULL)
  9962. {
  9963. #ifdef Debug
  9964. DEBUG_ERROR("/var/www/settings1 does not exist!\n");
  9965. #endif
  9966. return isSuccess;
  9967. }
  9968. fseek(f, 0, SEEK_END);
  9969. long fsize = ftell(f);
  9970. fseek(f, 0, SEEK_SET); /* same as rewind(f); */
  9971. fread(string, 1, fsize, f);
  9972. fclose(f);
  9973. string[fsize] = 0;
  9974. loc = strstr(string, key/*"LocalAuthListEnabled"*/);
  9975. if(loc != NULL)
  9976. {
  9977. DEBUG_INFO("key exist!\n");
  9978. pos = loc - string-1;
  9979. f = fopen("/var/www/settings1", "w");
  9980. strncpy(buffer, string, pos);
  9981. fprintf(f, "%s", buffer);
  9982. memset(sstr ,0, sizeof(sstr) );
  9983. c = 0;
  9984. while (loc[3+strlen(key/*"LocalAuthListEnabled"*/)+c] != '\"')
  9985. {
  9986. sstr[c] = loc[3+strlen(key/*"LocalAuthListEnabled"*/)+c];
  9987. //printf("i=%d sstr=%c\n",c, sstr[c]);
  9988. c++;
  9989. }
  9990. sstr[c] = '\0';
  9991. pos1 = fsize -pos -(3+strlen(key/*"LocalAuthListEnabled"*/)+c)-1;
  9992. sprintf(strtemp,"\"%s\":\"%s\"",key,value);
  9993. fprintf(f, "%s", strtemp /*"\"LocalAuthListEnabled\":\"fault\""*/);
  9994. memset(buffer ,0, sizeof(buffer) );
  9995. strncpy(buffer, loc+(3+strlen(key/*"LocalAuthListEnabled"*/)+c)+1, pos1);
  9996. //printf("buffer=%s",buffer);
  9997. fprintf(f, "%s", buffer);
  9998. fclose(f);
  9999. }
  10000. else
  10001. {
  10002. printf("key not exist!\n");
  10003. f = fopen("/var/www/settings1", "w+");
  10004. fputs(string, f);
  10005. fseek(f, -1, SEEK_CUR);
  10006. //fprintf(f, "%s", ",\"LocalAuthListEnabled\":\"true\"}");
  10007. sprintf(strtemp,",\"%s\":\"%s\"}",key,value);
  10008. fputs(strtemp/*",\"LocalAuthListEnabled\":\"true\"}"*/, f);
  10009. fclose(f);
  10010. }
  10011. isSuccess = TRUE;
  10012. return isSuccess;
  10013. }
  10014. #if 0
  10015. json_object * getJSONfromFile(char *filename)
  10016. {
  10017. mtrace();
  10018. FILE *fptr;
  10019. char str[] = "{}";
  10020. json_object * obj ;
  10021. fptr = fopen(filename, "rw+");
  10022. if(fptr == NULL) //if file does not exist, create it
  10023. {
  10024. fptr = fopen(filename, "w");
  10025. fwrite(str , 1 , sizeof(str) , fptr );
  10026. }
  10027. fclose(fptr);
  10028. //obj = new JSONObject(new JSONTokener((new URI("file:///" + filename)).toURL().openStream()));
  10029. obj = json_object_from_file(filename);
  10030. return obj;
  10031. }
  10032. #endif
  10033. int TransactionMessageAttemptsGet(void)
  10034. {
  10035. return TransactionMessageAttemptsValue;//atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData);
  10036. }
  10037. int FirstHeartBeatResponse(void)
  10038. {
  10039. return FirstHeartBeat;
  10040. }
  10041. int TransactionMessageRetryIntervalGet(void)
  10042. {
  10043. return TransactionMessageRetryIntervalValue;//atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData);
  10044. }
  10045. #define SA struct sockaddr
  10046. #define MAXBUF 1024
  10047. //static int m_socket_data;
  10048. //static int sockfd;
  10049. int ReadHttpStatus(int sock){
  10050. //char c;
  10051. char buff[1024]="",*ptr=buff+1;
  10052. int bytes_received, status;
  10053. DEBUG_INFO("Begin Response ..\n");
  10054. while((bytes_received = recv(sock, ptr, 1, 0))){
  10055. if(bytes_received==-1){
  10056. perror("ReadHttpStatus");
  10057. exit(1);
  10058. }
  10059. if((ptr[-1]=='\r') && (*ptr=='\n' )) break;
  10060. ptr++;
  10061. }
  10062. *ptr=0;
  10063. ptr=buff+1;
  10064. sscanf(ptr,"%*s %d ", &status);
  10065. DEBUG_INFO("%s\n",ptr);
  10066. DEBUG_INFO("status=%d\n",status);
  10067. DEBUG_INFO("End Response ..\n");
  10068. return (bytes_received>0)?status:0;
  10069. }
  10070. //the only filed that it parsed is 'Content-Length'
  10071. int ParseHeader(int sock){
  10072. //char c;
  10073. char buff[1024]="",*ptr=buff+4;
  10074. int bytes_received;
  10075. DEBUG_INFO("Begin HEADER ..\n");
  10076. while((bytes_received = recv(sock, ptr, 1, 0))){
  10077. if(bytes_received==-1){
  10078. perror("Parse Header");
  10079. exit(1);
  10080. }
  10081. if(
  10082. (ptr[-3]=='\r') && (ptr[-2]=='\n' ) &&
  10083. (ptr[-1]=='\r') && (*ptr=='\n' )
  10084. ) break;
  10085. ptr++;
  10086. }
  10087. *ptr=0;
  10088. ptr=buff+4;
  10089. //printf("%s",ptr);
  10090. if(bytes_received){
  10091. ptr=strstr(ptr,"Content-Length:");
  10092. if(ptr){
  10093. sscanf(ptr,"%*s %d",&bytes_received);
  10094. }else
  10095. bytes_received=-1; //unknown size
  10096. DEBUG_INFO("Content-Length: %d\n",bytes_received);
  10097. }
  10098. DEBUG_INFO("End HEADER ..\n");
  10099. return bytes_received ;
  10100. }
  10101. int httpDownLoadFile(char *location, char *path, char *filename,char *url)
  10102. {
  10103. char ftpbuf[200];
  10104. int systemresult;
  10105. DEBUG_INFO("filename=%s\n",filename);
  10106. DEBUG_INFO("url=%s\n",url);
  10107. memset(ftpbuf, 0, sizeof(ftpbuf));
  10108. sprintf(ftpbuf, "wget --tries=3 -O %s -c %s",filename, url);
  10109. //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
  10110. systemresult = system(ftpbuf);
  10111. DEBUG_INFO("systemresult=%d\n",systemresult);
  10112. if(systemresult != 0)
  10113. {
  10114. DEBUG_INFO("http DownLoad error!\n");
  10115. return FALSE;
  10116. }
  10117. return TRUE;
  10118. }
  10119. int ftpDownLoadFile(char *location, char *user, char *password, int port, char *path, char *filename,char *url)
  10120. {
  10121. char ftpbuf[200];
  10122. int systemresult;
  10123. //char temp[100];
  10124. #if 0
  10125. struct hostent* server;
  10126. char *IPbuffer;
  10127. server = gethostbyname(location);
  10128. // To convert an Internet network
  10129. // address into ASCII string
  10130. IPbuffer = inet_ntoa(*((struct in_addr*)
  10131. server->h_addr_list[0]));
  10132. #endif
  10133. memset(ftpbuf, 0, sizeof(ftpbuf));
  10134. sprintf(ftpbuf, "wget --tries=3 -O %s -c %s",filename, url);
  10135. //sprintf(ftpbuf, "ftpget -u %s -p %s %s -P %d %s %s%s",user,password,IPbuffer,port/*21*/,filename,path,filename); --- remove temporally
  10136. DEBUG_INFO("ftpbuf=%s\n",ftpbuf);
  10137. //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
  10138. systemresult = system(ftpbuf);
  10139. DEBUG_INFO("systemresult=%d\n",systemresult);
  10140. if(systemresult != 0)
  10141. {
  10142. printf("ftpget error!\n");
  10143. return FALSE;
  10144. }
  10145. return TRUE;
  10146. }
  10147. int ftpFile(char *location, char *user, char *password, int port, char *path, char *fnamePlusPath,char *filename)
  10148. {
  10149. struct hostent* server;
  10150. char *IPbuffer;
  10151. char ftpbuf[200];
  10152. int systemresult;
  10153. // To retrieve host information
  10154. server = gethostbyname(location);
  10155. // To convert an Internet network
  10156. // address into ASCII string
  10157. IPbuffer = inet_ntoa(*((struct in_addr*)
  10158. server->h_addr_list[0]));
  10159. memset(ftpbuf, 0, sizeof(ftpbuf));
  10160. /* format : ftpput -u username -p passwd IP target source*/
  10161. sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,port/*21*/,path,filename,fnamePlusPath);
  10162. DEBUG_INFO("ftpbuf=%s\n",ftpbuf);
  10163. //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
  10164. systemresult = system(ftpbuf);
  10165. DEBUG_INFO("systemresult=%d\n",systemresult);
  10166. if(systemresult != 0)
  10167. {
  10168. DEBUG_INFO("ftpput error!\n");
  10169. return FALSE;
  10170. }
  10171. return TRUE;
  10172. }
  10173. int SettingChargingRecord(int target, int transactionId)
  10174. {
  10175. if(strstr((const char *)ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") != NULL)
  10176. {
  10177. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  10178. {
  10179. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == target)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 8))
  10180. {
  10181. addBuff(target, transactionId, 0);
  10182. return TRUE;
  10183. }
  10184. }
  10185. for (int index = 0; index < CCS_QUANTITY; index++)
  10186. {
  10187. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == target)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 8))
  10188. {
  10189. addBuff(target, transactionId, 0);
  10190. return TRUE;
  10191. }
  10192. }
  10193. for (int index = 0; index < GB_QUANTITY; index++)
  10194. {
  10195. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == target)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8))
  10196. {
  10197. addBuff(target, transactionId, 0);
  10198. return TRUE;
  10199. }
  10200. }
  10201. }
  10202. else
  10203. {
  10204. for (int index = 0; index < AC_QUANTITY; index++)
  10205. {
  10206. if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == target)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == 8))
  10207. {
  10208. addBuff(target, transactionId, 0);
  10209. return TRUE;
  10210. }
  10211. }
  10212. }
  10213. return FALSE;
  10214. }
  10215. int addBuff(int gun_idx, int user_id, int cmd_sn)
  10216. {
  10217. int isSuccess = FALSE;
  10218. //char *query = NULL;
  10219. sqlite3_stmt *stmt;
  10220. int rc; // return code
  10221. char str[20];
  10222. sprintf(str,"%d",user_id);
  10223. 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 */
  10224. sqlite3_bind_text(stmt, 1, str, -1, SQLITE_STATIC); /* 2 */
  10225. rc = sqlite3_step(stmt); /* 3 */
  10226. if (rc != SQLITE_DONE) {
  10227. printf("ERROR inserting data: %s\n", sqlite3_errmsg(db));
  10228. goto out;
  10229. }
  10230. sqlite3_finalize(stmt);
  10231. // free(query);
  10232. out:
  10233. //----------------------
  10234. // close SQLite database
  10235. //----------------------
  10236. sqlite3_close(db);
  10237. printf("database closed.\n");
  10238. return isSuccess;
  10239. }
  10240. /**
  10241. * Place the contents of the specified file into a memory buffer
  10242. *
  10243. * @param[in] filename The path and name of the file to read
  10244. * @param[out] filebuffer A pointer to the contents in memory
  10245. * @return status 0 success, 1 on failure
  10246. */
  10247. int get_file_contents(const char* filename, char** outbuffer) {
  10248. FILE* file = NULL;
  10249. long filesize;
  10250. const int blocksize = 1;
  10251. size_t readsize;
  10252. char* filebuffer;
  10253. // Open the file
  10254. file = fopen(filename, "r");
  10255. if (NULL == file)
  10256. {
  10257. printf("'%s' not opened\n", filename);
  10258. exit(EXIT_FAILURE);
  10259. }
  10260. // Determine the file size
  10261. fseek(file, 0, SEEK_END);
  10262. filesize = ftell(file);
  10263. rewind (file);
  10264. // Allocate memory for the file contents
  10265. filebuffer = (char*) malloc(sizeof(char) * filesize);
  10266. *outbuffer = filebuffer;
  10267. if (filebuffer == NULL)
  10268. {
  10269. fputs ("malloc out-of-memory", stderr);
  10270. exit(EXIT_FAILURE);
  10271. }
  10272. // Read in the file
  10273. readsize = fread(filebuffer, blocksize, filesize, file);
  10274. if (readsize != filesize)
  10275. {
  10276. fputs ("didn't read file completely",stderr);
  10277. exit(EXIT_FAILURE);
  10278. }
  10279. // Clean exit
  10280. fclose(file);
  10281. return EXIT_SUCCESS;
  10282. }
  10283. static int selectSqlCount = 0;
  10284. static int callback(void *data, int argc, char **argv, char **azColName){
  10285. int i;
  10286. printf("%s: ", (const char*)data);
  10287. selectSqlCount = argc;
  10288. for(i = 0; i<argc; i++){
  10289. printf("%s = %s\n", azColName[i], argv[i] ? argv[i] : "NULL");
  10290. }
  10291. printf("\n");
  10292. return 0;
  10293. }
  10294. static int versioncallback(void *data, int argc, char **argv, char **azColName){
  10295. //int i;
  10296. //printf("%s:\n", (const char*)data);
  10297. localversion = argv[5] ? atoi(argv[5]) : 0;
  10298. printf("localversion=%d\n", localversion);
  10299. return 0;
  10300. }
  10301. static int IdTagcallback(void *data, int argc, char **argv, char **azColName){
  10302. //int i;
  10303. //printf("%s:\n", (const char*)data);
  10304. //idTag
  10305. sprintf(idTagAuthorization,"%s", argv[1] ? argv[1] : "NULL");
  10306. sprintf(idTagQuery.idTagstr,"%s", argv[1] ? argv[1] : "NULL");
  10307. //parentIdTag
  10308. sprintf(idTagQuery.parentIdTag,"%s", argv[2] ? argv[2] : "NULL");
  10309. //expir_date
  10310. sprintf(idTagQuery.expiryDate,"%s", argv[3] ? argv[3] : "NULL");
  10311. //status
  10312. sprintf(idTagQuery.idTagstatus,"%s", argv[4] ? argv[4] : "NULL");
  10313. //version
  10314. idTagQuery.listVersionInt = atoi(argv[5]);
  10315. DEBUG_INFO("IdTag=%s\n", idTagAuthorization);
  10316. return 0;
  10317. }
  10318. static int deleteIdTagcallback(void *data, int argc, char **argv, char **azColName){
  10319. int i;
  10320. //printf("%s:\n", (const char*)data);
  10321. #if 1
  10322. for(i=0; i<argc; i++){
  10323. printf("%s = %s", azColName[i], argv[i] ? argv[i] : "NULL");
  10324. }
  10325. //printf("");
  10326. #endif
  10327. // localversion = argv[5] ? atoi(argv[5]) : 0;
  10328. // printf("localversion=%d\n", localversion);
  10329. return 0;
  10330. }
  10331. /** sqlite3_exec的回调。
  10332. *
  10333. * 向控制台打印查询的结果。
  10334. *
  10335. * @param in data 传递给回调函数的数据。
  10336. * @param in n_columns sqlite3_exec执行结果集中列的数量。
  10337. * @param in col_values sqlite3_exec执行结果集中每一列的数据。
  10338. * @param in col_names sqlite3_exec执行结果集中每一列的名称。
  10339. * @return 状态码。
  10340. */
  10341. int sqlite3_exec_callback(void *data, int n_columns, char **col_values, char **col_names)
  10342. {
  10343. for (int i = 0; i < n_columns; i++)
  10344. {
  10345. DEBUG_INFO("%s/t", col_values[i]);
  10346. }
  10347. DEBUG_INFO("/n");
  10348. return 0;
  10349. }
  10350. void OCPP_getListVerion()
  10351. {
  10352. int rc = 0;
  10353. // const char* data = "Callback function called";
  10354. char sql[100];
  10355. char zErrMsg[100];
  10356. memset(sql, 0, 100);
  10357. memset(zErrMsg, 0, 100);
  10358. strcpy(sql, "select * from ocpp_auth_local order by idx desc");
  10359. /* Execute SQL statement */
  10360. rc = sqlite3_exec(db, sql, versioncallback, 0, (char **)&zErrMsg);
  10361. printf("rc=%d\n",rc);
  10362. if( rc != SQLITE_OK ){
  10363. printf("SQL error: %s", zErrMsg);
  10364. //sqlite3_free(zErrMsg);
  10365. }else{
  10366. printf("Operation done successfully");
  10367. }
  10368. }
  10369. void OCPP_getIdTag(char *idTag)
  10370. {
  10371. int rc = 0;
  10372. // const char* data = "Callback function called";
  10373. char sql[100];
  10374. char zErrMsg[100];
  10375. memset(sql, 0, 100);
  10376. memset(zErrMsg, 0, 100);
  10377. memset(idTagAuthorization, 0, sizeof(idTagAuthorization));
  10378. memset(&idTagQuery, 0, sizeof(idTagQuery));
  10379. sprintf(sql,"select * from ocpp_auth_local where idtag='%s'", idTag);
  10380. /* Execute SQL statement */
  10381. printf("OCPP_getIdTag -1\n");
  10382. rc = sqlite3_exec(db, sql, IdTagcallback, 0, (char **)&zErrMsg);
  10383. printf("OCPP_getIdTag -2\n");
  10384. printf("rc=%d\n",rc);
  10385. if( rc != SQLITE_OK ){
  10386. printf("SQL error: %s", zErrMsg);
  10387. //sqlite3_free(zErrMsg);
  10388. }else{
  10389. printf("Operation done successfully");
  10390. }
  10391. printf("OCPP_getIdTag -3\n");
  10392. //return ver;
  10393. }
  10394. void OCPP_get_TableAuthlocalAllData(void)
  10395. {
  10396. int rc = 0;
  10397. // const char* data = "Callback function called";
  10398. char sql[100];
  10399. char zErrMsg[100];
  10400. memset(sql, 0, 100);
  10401. memset(zErrMsg, 0, 100);
  10402. sprintf(sql,"select * from ocpp_auth_local ");
  10403. /* Execute SQL statement */
  10404. printf("OCPP_get_TableAuthlocalAllData -1\n");
  10405. rc = sqlite3_exec(db, sql, &sqlite3_exec_callback, 0,(char **)&zErrMsg);
  10406. // rc = sqlite3_exec(db, sql, IdTagcallback, 0, &zErrMsg);
  10407. printf("OCPP_get_TableAuthlocalAllData -2\n");
  10408. printf("rc=%d\n",rc);
  10409. if( rc != SQLITE_OK ){
  10410. printf("SQL error: %s", zErrMsg);
  10411. //sqlite3_free(zErrMsg);
  10412. }else{
  10413. printf("Operation done successfully");
  10414. }
  10415. printf("OCPP_get_TableAuthlocalAllData -3\n");
  10416. //return ver;
  10417. }
  10418. int OCPP_cleanLocalList()
  10419. {
  10420. char * sqlcleanLocalList = "delete from ocpp_auth_local";
  10421. char *errMsg = 0;
  10422. int rc =sqlite3_exec(db, sqlcleanLocalList, 0, 0, &errMsg);
  10423. if (SQLITE_OK != rc)
  10424. {
  10425. printf("%s\n",errMsg);
  10426. return FALSE;
  10427. }
  10428. else
  10429. {
  10430. printf("delete ocpp_auth_local table successfully\n");
  10431. }
  10432. return TRUE;
  10433. }
  10434. int OCPP_addLocalList_1(int version, char *idTag, char *parentTage, char *expiryDate, char *status)
  10435. {
  10436. int isSuccess = FALSE;
  10437. int ret = 0;
  10438. //const char* data = "Callback function called";
  10439. char sql[200];
  10440. char zErrMsg[100];
  10441. memset(sql, 0, 200);
  10442. memset(zErrMsg, 0, 100);
  10443. 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);
  10444. printf("sql:%s\n", sql);
  10445. printf("OCPP_addLocalList -5\n");
  10446. //* Execute SQL statement */
  10447. //zErrMsg = 0;
  10448. ret = sqlite3_exec(db, sql, callback, 0, (char **)&zErrMsg);
  10449. printf("OCPP_addLocalList -6\n");
  10450. if( ret != SQLITE_OK ){
  10451. printf("SQL error: %s\n", zErrMsg);
  10452. // free(zErrMsg);
  10453. // free(sql);
  10454. return isSuccess;
  10455. }
  10456. printf("successfully Insert records created\n");
  10457. isSuccess = TRUE;
  10458. return isSuccess;
  10459. }
  10460. void OCPP_deleteIdTag(char *idTag)
  10461. {
  10462. //int ver = 0;
  10463. //int isSuccess = FALSE;
  10464. int rc = 0;
  10465. char sql[100];
  10466. char zErrMsg[100];
  10467. memset(sql, 0, 100);
  10468. memset(zErrMsg, 0, 100);
  10469. sprintf(sql,"DELETE from ocpp_auth_local where idtag='%s'; SELECT * from ocpp_auth_local;", idTag);
  10470. //* Execute SQL statement */
  10471. printf("OCPP_getIdTag -1\n");
  10472. rc = sqlite3_exec(db, sql, deleteIdTagcallback, 0,(char **)&zErrMsg);
  10473. printf("OCPP_getIdTag -2\n");
  10474. printf("rc=%d\n",rc);
  10475. if( rc != SQLITE_OK ){
  10476. printf("SQL error: %s", zErrMsg);
  10477. //sqlite3_free(zErrMsg);
  10478. }else{
  10479. printf("Operation done successfully");
  10480. }
  10481. printf("OCPP_getIdTag -3\n");
  10482. }
  10483. int OCPP_addLocalList(int version, char *idTag, char *parentTage, char *expiryDate, char *status)
  10484. {
  10485. int isSuccess = FALSE;
  10486. int ret = 0;
  10487. const char* data = "Callback function called";
  10488. char sql[200];
  10489. char zErrMsg[100];
  10490. memset(sql, 0, 200);
  10491. memset(zErrMsg, 0, 100);
  10492. //* selectFromTable */
  10493. // sql = select * from ocpp_auth_local where starring='Jodie Foster';
  10494. sprintf(sql,"select * from ocpp_auth_local where idtag='%s'", idTag);
  10495. //* Execute SQL statement */
  10496. selectSqlCount = 0;
  10497. ret = sqlite3_exec(db, sql, callback, (void*)data,(char **)&zErrMsg);
  10498. if( ret != SQLITE_OK ){
  10499. printf("Error SQL: %s\n", zErrMsg);
  10500. }
  10501. printf("successfully select operation done\n");
  10502. memset(sql, 0, 200);
  10503. memset(zErrMsg, 0, 100);
  10504. if(selectSqlCount == 0)
  10505. {
  10506. //Insert
  10507. //sql = "INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) " "VALUES (1, ?�Paul?? 32, ?�California?? 20000.00 ); ";
  10508. 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);
  10509. printf("sql:%s\n", sql);
  10510. //* Execute SQL statement */
  10511. //zErrMsg = 0;
  10512. ret = sqlite3_exec(db, sql, callback, 0,(char **)&zErrMsg);
  10513. if( ret != SQLITE_OK ){
  10514. printf("SQL error: %s\n", zErrMsg);
  10515. return isSuccess;
  10516. }
  10517. printf("successfully Insert records created\n");
  10518. isSuccess = TRUE;
  10519. }
  10520. else
  10521. {
  10522. //Update
  10523. //* Create merged SQL statement */
  10524. 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);
  10525. /* Execute SQL statement */
  10526. ret = sqlite3_exec(db, sql, callback, (void*)data,(char **)&zErrMsg);
  10527. if( ret != SQLITE_OK ){
  10528. printf("SQL error: %s\n", zErrMsg);
  10529. //sqlite3_free(zErrMsg);
  10530. //sqlite3_free(sql);
  10531. return isSuccess;
  10532. }
  10533. printf("Successfully operation done \n");
  10534. isSuccess = TRUE;
  10535. }
  10536. return isSuccess;
  10537. }
  10538. char *GetOcppServerURL()
  10539. {
  10540. memset(OcppProtocol, 0, sizeof(OcppProtocol));
  10541. memset(OcppHost, 0, sizeof(OcppHost));
  10542. memset(OcppTempPath, 0, sizeof(OcppTempPath));
  10543. sscanf((const char *)ShmOCPP16Data->OcppServerURL,
  10544. "%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
  10545. OcppProtocol, OcppHost, &OcppPort, OcppTempPath);
  10546. printf("OcppProtocol =%s\n",OcppProtocol);
  10547. printf("OcppHost =%s\n",OcppHost);
  10548. printf("OcppPort =%d\n",OcppPort);
  10549. printf("OcppTempPath =%s\n",OcppTempPath);
  10550. return OcppHost;
  10551. }
  10552. char *GetOcppPath()
  10553. {
  10554. if(OcppTempPath == NULL)
  10555. {
  10556. sprintf(OcppPath,"/%s",ShmOCPP16Data->ChargeBoxId);
  10557. }
  10558. else
  10559. {
  10560. sprintf(OcppPath,"/%s%s",OcppTempPath,ShmOCPP16Data->ChargeBoxId);
  10561. }
  10562. printf("OcppPath=%s\n",OcppPath);
  10563. return OcppPath;
  10564. }
  10565. int GetOcppPort()
  10566. {
  10567. return OcppPort;
  10568. }
  10569. int GetOcppConnStatus(void)
  10570. {
  10571. return ShmOCPP16Data->OcppConnStatus;
  10572. }
  10573. #if 0
  10574. void Send(struct json_object *message)
  10575. {
  10576. printf("Send -1 \n");
  10577. printf("message=%s\n",json_object_to_json_string(message));
  10578. LWS_Send(json_object_to_json_string(message));
  10579. }
  10580. #endif
  10581. void LWS_Send(char * str)
  10582. {
  10583. #if 1
  10584. if(ShmOCPP16Data->OcppConnStatus == 0)
  10585. {
  10586. DEBUG_INFO("\n offline now !!!\n");
  10587. return;
  10588. }
  10589. #endif
  10590. pthread_mutex_lock(&lock);
  10591. memset(SendBuffer,0,SendBufLen);
  10592. sprintf((char *)SendBuffer, "%s", str);
  10593. pthread_mutex_unlock(&lock);
  10594. lws_callback_on_writable(wsi_client);
  10595. lws_service(context, 10000);//timeout_ms
  10596. //usleep(10000); // 等�??��?微�?
  10597. DEBUG_INFO("Send message end\n");
  10598. }