MessageHandler.c 341 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253
  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 <json.h>
  19. #include <json_config.h>
  20. #include <json_object.h>
  21. #include <json_tokener.h>
  22. //#include <json-c/json.h> remove temporally
  23. //#include <json-c/json_config.h> remove temporally
  24. //#include <json-c/json_object.h> remove temporally
  25. //#include <json-c/json_tokener.h> remove temporally
  26. #include <libwebsockets.h>
  27. #include <lws_config.h>
  28. //#include "./json-c/JsonParser.h" remove temporally
  29. #include "JsonParser.h"
  30. #include "hashmap.h"
  31. #include "ShareMemory.h"
  32. #include "TransactionQueue.h"
  33. #include "SystemLogMessage.h"
  34. #include "../../Projects/define.h"
  35. #include "ShareMemory.h"
  36. #include "SystemLogMessage.h"
  37. //#include "config.h"
  38. #include <sys/socket.h>
  39. #include <netinet/in.h>
  40. #include <stdlib.h>
  41. /*for sendfile()*/
  42. #include <sys/sendfile.h>
  43. /*for O_RDONLY*/
  44. #include <fcntl.h>
  45. #include "sqlite3.h"
  46. #include <arpa/inet.h>
  47. #define _GNU_SOURCE
  48. #include <time.h>
  49. #include "MessageHandler.h"
  50. #include <assert.h>
  51. #include <pthread.h>
  52. #define PASS 1
  53. #define FAIL -1
  54. #define FALSE 0
  55. #define TRUE 1 // Option 1
  56. #define ChargingProfile_0_JSON "chargingprofile_0.json"
  57. #define ChargingProfile_1_JSON "chargingprofile_1.json"
  58. #define ChargingProfile_2_JSON "chargingprofile_2.json"
  59. #define AuthorizationCache_JSON "AuthorizationCache.json"
  60. #define LocalAuthorizationList_JSON "LocalAuthorizationList.json"
  61. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  62. struct StatusCodeData *ShmStatusCodeData;
  63. struct PsuData *ShmPsuData ;
  64. struct OCPP16Data *ShmOCPP16Data;
  65. /* define Macro */
  66. #define SystemLogMessage
  67. /* OCPP Message Type */
  68. #define MESSAGE_TYPE_CALL 2
  69. #define MESSAGE_TYPE_CALLRESULT 3
  70. #define MESSAGE_TYPE_CALLERROR 4
  71. /* */
  72. #define server_cycle_Status 120
  73. #define MACROSTR(k) #k
  74. extern struct lws *wsi_client;
  75. extern struct lws_context *context;
  76. extern unsigned char *SendBuffer;
  77. extern int SendBufLen;
  78. //char guid[37];
  79. char queuedata[2000];
  80. static char unknownkey[10][20];
  81. static int UnknownKeynum = 0;
  82. static int localversion=0;
  83. static char idTagAuthorization[32]={};
  84. char OcppPath[100]={};
  85. char OcppProtocol[10],OcppHost[50], OcppTempPath[50];
  86. int OcppPort=0;
  87. extern map_t hashMap;
  88. extern data_struct_t* mapItem;
  89. extern char *random_uuid( char buf[37] );
  90. extern void split(char **arr, char *str, const char *del);
  91. extern pthread_mutex_t mutex1;
  92. int updateSetting(char *key, char *value);
  93. int setKeyValue(char *key, char *value);
  94. int server_sign = FALSE;
  95. int server_pending = FALSE;
  96. int authenrequest = FALSE;
  97. int PRE_SYS_MODE[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
  98. int BootNotificationInterval = 0;
  99. //number of Retry times
  100. int authorizeRetryTimes = 0;
  101. int isUpdateRequest = FALSE;
  102. int statusModeChage = FALSE;
  103. int HeartBeatWaitTime = 10;
  104. //Test Variables
  105. int teststatus =100; //0: enter test ; 100: test
  106. int testCount= 5;
  107. int testCountInc = 0;
  108. int UserPlugGun = 0; // user plug gun or not
  109. pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
  110. extern struct Charger_Info Charger;
  111. extern sqlite3 *db;
  112. struct ClientTime
  113. {
  114. unsigned int Heartbeat;
  115. unsigned int StatusNotification[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
  116. unsigned int StartTransaction;
  117. unsigned int StopTransaction;
  118. unsigned int MeterValues[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
  119. }clientTime;
  120. typedef union
  121. {
  122. //Operations Initiated by Central System
  123. unsigned char CsMsgValue[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  124. struct
  125. {
  126. //CsMsgValue[0]
  127. unsigned char StatusNotificationReq :1; //bit 0,
  128. unsigned char StatusNotificationConf :1; //bit 0,
  129. unsigned char :6; //bit 2~7
  130. }bits[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  131. }CpinitiateMsg;
  132. CpinitiateMsg cpinitateMsg;
  133. //==========================================
  134. // Init all Enumeration & Mapping String
  135. //==========================================
  136. /*ChargePointErrorCode*/
  137. typedef enum {
  138. ConnectorLockFailure,
  139. EVCommunicationError,
  140. GroundFailure,
  141. HighTemperature,
  142. InternalError,
  143. LocalListConflict,
  144. NoError,
  145. OtherError,
  146. OverCurrentFailure,
  147. OverVoltage,
  148. PowerMeterFailure,
  149. PowerSwitchFailure,
  150. ReaderFailure,
  151. ResetFailure,
  152. UnderVoltage,
  153. WeakSignal
  154. } ChargePointErrorCode;
  155. static char *ChargePointErrorCodeStr[] = {
  156. MACROSTR(ConnectorLockFailure),
  157. MACROSTR(EVCommunicationError),
  158. MACROSTR(GroundFailure),
  159. MACROSTR(HighTemperature),
  160. MACROSTR(InternalError),
  161. MACROSTR(LocalListConflict),
  162. MACROSTR(NoError),
  163. MACROSTR(OtherError),
  164. MACROSTR(OverCurrentFailure),
  165. MACROSTR(OverVoltage),
  166. MACROSTR(PowerMeterFailure),
  167. MACROSTR(PowerSwitchFailure),
  168. MACROSTR(ReaderFailure),
  169. MACROSTR(ResetFailure),
  170. MACROSTR(UnderVoltage),
  171. MACROSTR(WeakSignal)
  172. };
  173. /*ChargePointStatus*/
  174. typedef enum {
  175. Available,
  176. Preparing,
  177. Charging,
  178. SuspendedEVSE,
  179. SuspendedEV,
  180. Finishing,
  181. Reserved,
  182. Unavailable,
  183. Faulted
  184. } ChargePointStatus;
  185. static char * ChargePointStatusStr[] = {
  186. MACROSTR(Available),
  187. MACROSTR(Preparing),
  188. MACROSTR(Charging),
  189. MACROSTR(SuspendedEVSE),
  190. MACROSTR(SuspendedEV),
  191. MACROSTR(Finishing),
  192. MACROSTR(Reserved),
  193. MACROSTR(Unavailable),
  194. MACROSTR(Faulted)
  195. };
  196. /*AvailabilityType*/
  197. typedef enum {
  198. RegistrationStatus_Accepted,
  199. RegistrationStatus_Pending,
  200. RegistrationStatus_Rejected
  201. } RegistrationStatus;
  202. static char *RegistrationStatusStr[] = {
  203. MACROSTR(Accepted),
  204. MACROSTR(Pending),
  205. MACROSTR(Rejected)
  206. };
  207. /*AvailabilityType*/
  208. typedef enum {
  209. Inoperative,
  210. Operative
  211. } AvailabilityType;
  212. static char *AvailabilityTypeStr[] = {
  213. MACROSTR(Inoperative),
  214. MACROSTR(Operative)
  215. };
  216. /*AvailabilityStatus*/
  217. typedef enum {
  218. Accepted,
  219. Rejected,
  220. Scheduled
  221. } AvailabilityStatus;
  222. static char *AvailabilityStatusStr[] = {
  223. MACROSTR(Accepted),
  224. MACROSTR(Rejected),
  225. MACROSTR(Scheduled)
  226. };
  227. /*ConfigurationStatus*/
  228. typedef enum {
  229. ConfigurationStatus_Accepted,
  230. ConfigurationStatus_Rejected,
  231. RebootRequired,
  232. NotSupported
  233. } ConfigurationStatus;
  234. static char *ConfigurationStatusStr[] = {
  235. MACROSTR(Accepted),
  236. MACROSTR(Rejected),
  237. MACROSTR(RebootRequired),
  238. MACROSTR(NotSupported)
  239. };
  240. /*ClearCacheStatus*/
  241. typedef enum {
  242. ClearCacheStatus_Accepted,
  243. ClearCacheStatus_Rejected
  244. } ClearCacheStatus;
  245. static char *ClearCacheStatusStr[] = {
  246. MACROSTR(Accepted),
  247. MACROSTR(Rejected)
  248. };
  249. /*ChargingProfilePurposeType*/
  250. typedef enum {
  251. ChargePointMaxProfile,
  252. TxDefaultProfile,
  253. TxProfile
  254. } ChargingProfilePurposeType;
  255. static char *ChargingProfilePurposeTypeStr[] = {
  256. MACROSTR(ChargePointMaxProfile),
  257. MACROSTR(TxDefaultProfile),
  258. MACROSTR(TxProfile)
  259. };
  260. /*ChargingProfileStatus*/
  261. typedef enum {
  262. ChargingProfileStatus_Accepted,
  263. ChargingProfileStatus_Rejected,
  264. ChargingProfileStatus_NotSupported
  265. } ChargingProfileStatus;
  266. static char *ChargingProfileStatusStr[] = {
  267. MACROSTR(Accepted),
  268. MACROSTR(Rejected),
  269. MACROSTR(NotSupported)
  270. };
  271. /*ClearChargingProfileStatus*/
  272. typedef enum {
  273. ClearChargingProfileStatus_Accepted,
  274. ClearChargingProfileStatus_Unknown
  275. } ClearChargingProfileStatus;
  276. static char *ClearChargingProfileStatusStr[] = {
  277. MACROSTR(Accepted),
  278. MACROSTR(Unknown)
  279. };
  280. /*GetCompositeScheduleStatus*/
  281. typedef enum {
  282. GetCompositeScheduleStatus_Accepted,
  283. GetCompositeScheduleStatus_Rejected
  284. } GetCompositeScheduleStatus;
  285. static char *GetCompositeScheduleStatusStr[] = {
  286. MACROSTR(Accepted),
  287. MACROSTR(Rejected)
  288. };
  289. /*ChargingRateUnitType*/
  290. typedef enum {
  291. ChargingRateUnitType_W,
  292. ChargingRateUnitType_A
  293. } ChargingRateUnitType;
  294. static char *ChargingRateUnitTypeStr[] = {
  295. MACROSTR(W),
  296. MACROSTR(A)
  297. };
  298. /*AuthorizationStatus*/
  299. typedef enum {
  300. AuthorizationStatus_Accepted ,
  301. AuthorizationStatus_Blocked ,
  302. AuthorizationStatus_Expired ,
  303. AuthorizationStatus_Invalid ,
  304. AuthorizationStatus_ConcurrentTx
  305. } AuthorizationStatus;
  306. static char *AuthorizationStatusStr[] = {
  307. MACROSTR(Accepted),
  308. MACROSTR(Blocked),
  309. MACROSTR(Expired),
  310. MACROSTR(Invalid),
  311. MACROSTR(ConcurrentTx)
  312. };
  313. /*UpdateType*/
  314. typedef enum {
  315. Differential ,
  316. Full
  317. } UpdateType;
  318. static char *UpdateTypeStr[] = {
  319. MACROSTR(Differential),
  320. MACROSTR(Full)
  321. };
  322. /*UpdateStatus*/
  323. typedef enum {
  324. UpdateStatus_Accepted ,
  325. UpdateStatus_Failed ,
  326. UpdateStatus_NotSupported ,
  327. UpdateStatus_VersionMismatch
  328. } UpdateStatus;
  329. static char *UpdateStatusStr[] = {
  330. MACROSTR(Accepted),
  331. MACROSTR(Failed),
  332. MACROSTR(NotSupported),
  333. MACROSTR(VersionMismatch)
  334. };
  335. /*RemoteStartStopStatus*/
  336. typedef enum {
  337. RemoteStartStopStatus_Accepted,
  338. RemoteStartStopStatus_Rejected
  339. } RemoteStartStopStatus;
  340. static char *RemoteStartStopStatusStr[] = {
  341. MACROSTR(Accepted),
  342. MACROSTR(Rejected)
  343. };
  344. /*ReservationStatus*/
  345. typedef enum {
  346. ReservationStatus_Accepted,
  347. ReservationStatus_Faulted,
  348. ReservationStatus_Occupied,
  349. ReservationStatus_Rejected,
  350. ReservationStatus_Unavailable
  351. } ReservationStatus;
  352. static char *ReservationStatusStr[] = {
  353. MACROSTR(Accepted),
  354. MACROSTR(Faulted),
  355. MACROSTR(Occupied),
  356. MACROSTR(Rejected),
  357. MACROSTR(Unavailable)
  358. };
  359. /*ResetType*/
  360. typedef enum {
  361. Hard,
  362. Soft
  363. } ResetType;
  364. static char *ResetTypeStr[] = {
  365. MACROSTR(Hard),
  366. MACROSTR(Soft)
  367. };
  368. /*ResetStatus*/
  369. typedef enum {
  370. ResetStatus_Accepted,
  371. ResetStatus_Rejected
  372. } ResetStatus;
  373. static char *ResetStatusStr[] = {
  374. MACROSTR(Accepted),
  375. MACROSTR(Rejected)
  376. };
  377. /*DiagnosticsStatus*/
  378. typedef enum {
  379. DiagnosticsStatus_Idle,
  380. DiagnosticsStatus_Uploaded,
  381. DiagnosticsStatus_UploadFailed,
  382. DiagnosticsStatus_Uploading
  383. } DiagnosticsStatus;
  384. static char * DiagnosticsStatusStr[] = {
  385. MACROSTR(Idle),
  386. MACROSTR(Uploaded),
  387. MACROSTR(UploadFailed),
  388. MACROSTR(Uploading)
  389. };
  390. /*FirmwareStatus*/
  391. typedef enum {
  392. FirmwareStatus_Downloaded,
  393. FirmwareStatus_DownloadFailed,
  394. FirmwareStatus_Downloading,
  395. FirmwareStatus_Idle,
  396. FirmwareStatus_InstallationFailed,
  397. FirmwareStatus_Installing,
  398. FirmwareStatus_Installed
  399. } FirmwareStatus;
  400. static char * FirmwareStatusStr[] = {
  401. MACROSTR(Downloaded),
  402. MACROSTR(DownloadFailed),
  403. MACROSTR(Downloading),
  404. MACROSTR(Idle),
  405. MACROSTR(InstallationFailed),
  406. MACROSTR(Installing),
  407. MACROSTR(Installed)
  408. };
  409. /*MessageTrigger*/
  410. typedef enum {
  411. BootNotification,
  412. DiagnosticsStatusNotification,
  413. FirmwareStatusNotification,
  414. Heartbeat,
  415. MeterValues,
  416. StatusNotification
  417. } MessageTrigger;
  418. static char * MessageTriggerStr[] = {
  419. MACROSTR(BootNotification),
  420. MACROSTR(DiagnosticsStatusNotification),
  421. MACROSTR(FirmwareStatusNotification),
  422. MACROSTR(Heartbeat),
  423. MACROSTR(MeterValues),
  424. MACROSTR(StatusNotification)
  425. };
  426. /*TriggerMessageStatus*/
  427. typedef enum {
  428. TriggerMessageStatus_Accepted ,
  429. TriggerMessageStatus_Rejected ,
  430. TriggerMessageStatus_NotImplemented
  431. } TriggerMessageStatus;
  432. static char * TriggerMessageStatusStr[] = {
  433. MACROSTR(Accepted),
  434. MACROSTR(Rejected),
  435. MACROSTR(NotImplemented)
  436. };
  437. /*UnlockStatus*/
  438. typedef enum {
  439. Unlocked,
  440. UnlockFailed,
  441. UnlockStatus_NotSupported
  442. } UnlockStatus;
  443. static char * UnlockStatusStr[] = {
  444. MACROSTR(Unlocked),
  445. MACROSTR(UnlockFailed),
  446. MACROSTR(NotSupported)
  447. };
  448. /*StopTransactionReason*/
  449. typedef enum {
  450. EmergencyStop,
  451. EVDisconnected,
  452. HardReset,
  453. Local,
  454. Other,
  455. PowerLoss,
  456. Reboot,
  457. Remote,
  458. SoftReset,
  459. UnlockCommand,
  460. DeAuthorized
  461. } StopTransactionReason;
  462. static char * StopTransactionReasonStr[] = {
  463. MACROSTR(EmergencyStop),
  464. MACROSTR(EVDisconnected),
  465. MACROSTR(HardReset),
  466. MACROSTR(Local),
  467. MACROSTR(Other),
  468. MACROSTR(PowerLoss),
  469. MACROSTR(Reboot),
  470. MACROSTR(Remote),
  471. MACROSTR(SoftReset),
  472. MACROSTR(UnlockCommand),
  473. MACROSTR(DeAuthorized)
  474. };
  475. /*CancelReservationStatus*/
  476. typedef enum {
  477. CancelReservationStatus_Accepted,
  478. CancelReservationStatus_Rejected
  479. } CancelReservationStatus;
  480. static char * CancelReservationStatusStr[] = {
  481. MACROSTR(Accepted),
  482. MACROSTR(Rejected)
  483. };
  484. /*ReadingContext*/
  485. typedef enum {
  486. ReadingContext_Interruption_Begin,
  487. ReadingContext_Interruption_End,
  488. ReadingContext_Other,
  489. ReadingContext_Sample_Clock,
  490. ReadingContext_Sample_Periodic ,
  491. ReadingContext_Transaction_Begin ,
  492. ReadingContext_Transaction_End,
  493. ReadingContext_Trigger
  494. } ReadingContext;
  495. static char * ReadingContextStr[] = {
  496. MACROSTR(Interruption.Begin),
  497. MACROSTR(Interruption.End),
  498. MACROSTR(Other),
  499. MACROSTR(Sample.Clock),
  500. MACROSTR(Sample.Periodic),
  501. MACROSTR(Transaction.Begin),
  502. MACROSTR(Transaction.End),
  503. MACROSTR(Trigger)
  504. };
  505. /*ValueFormat*/
  506. typedef enum {
  507. Raw,
  508. SignedData
  509. } ValueFormat;
  510. static char * ValueFormatStr[] = {
  511. MACROSTR(Raw),
  512. MACROSTR(SignedData)
  513. };
  514. /*Measurand*/
  515. typedef enum {
  516. Current_Export ,
  517. Current_Import,
  518. Current_Offered,
  519. Energy_Active_Export_Register,
  520. Energy_Active_Import_Register,
  521. Energy_Reactive_Export_Register,
  522. Energy_Reactive_Import_Register,
  523. Energy_Active_Export_Interval,
  524. Energy_Active_Import_Interval,
  525. Energy_Reactive_Export_Interval,
  526. Energy_Reactive_Import_Interval,
  527. Frequency,
  528. Power_Active_Export ,
  529. Power_Active_Import,
  530. Power_Factor,
  531. Power_Offered,
  532. Power_Reactive_Export,
  533. Power_Reactive_Import,
  534. RPM,
  535. SoC,
  536. Temperature ,
  537. Voltage
  538. } Measurand;
  539. static char * MeasurandStr[] = {
  540. MACROSTR(Current.Export),
  541. MACROSTR(Current.Import),
  542. MACROSTR(Current.Offered),
  543. MACROSTR(Energy.Active.Export.Register),
  544. MACROSTR(Energy.Active.Import.Register),
  545. MACROSTR(Energy.Reactive.Export.Register),
  546. MACROSTR(Energy.Reactive.Import.Register),
  547. MACROSTR(Energy.Active.Export.Interval),
  548. MACROSTR(Energy.Active.Import.Interval),
  549. MACROSTR(Energy.Reactive.Export.Interval),
  550. MACROSTR(Energy.Reactive.Import.Interval),
  551. MACROSTR(Frequency),
  552. MACROSTR(Power.Active.Export),
  553. MACROSTR(Power.Active.Import),
  554. MACROSTR(Power.Factor),
  555. MACROSTR(Power.Offered),
  556. MACROSTR(Power.Reactive.ExportMACROSTR),
  557. MACROSTR(Power.Reactive.Import),
  558. MACROSTR(RPM),
  559. MACROSTR(SoC),
  560. MACROSTR(Temperature),
  561. MACROSTR(Voltage)
  562. };
  563. /*Location*/
  564. typedef enum {
  565. Location_Body,
  566. Location_Cable,
  567. Location_EV,
  568. Location_Inlet ,
  569. Location_Outlet
  570. } Location;
  571. static char * LocationStr[] = {
  572. MACROSTR(Body),
  573. MACROSTR(Cable),
  574. MACROSTR(EV),
  575. MACROSTR(Inlet),
  576. MACROSTR(Outlet)
  577. };
  578. /*Phase*/
  579. typedef enum {
  580. L1,
  581. L2,
  582. L3,
  583. N,
  584. L1_N,
  585. L2_N,
  586. L3_N,
  587. L1_L2,
  588. L2_L3,
  589. L3_L1
  590. } Phase;
  591. static char * PhaseStr[] = {
  592. MACROSTR(L1),
  593. MACROSTR(L2),
  594. MACROSTR(L3),
  595. MACROSTR(N),
  596. MACROSTR(L1-N),
  597. MACROSTR(L2-N),
  598. MACROSTR(L3-N),
  599. MACROSTR(L1-L2),
  600. MACROSTR(L2-L3),
  601. MACROSTR(L3-L1)
  602. };
  603. /*UnitOfMeasure*/
  604. typedef enum {
  605. UnitOfMeasure_Wh,
  606. UnitOfMeasure_kWh ,
  607. UnitOfMeasure_varh ,
  608. UnitOfMeasure_kvarh ,
  609. UnitOfMeasure_W ,
  610. UnitOfMeasure_kW ,
  611. UnitOfMeasure_VA ,
  612. UnitOfMeasure_kVA ,
  613. UnitOfMeasure_var ,
  614. UnitOfMeasure_kvar ,
  615. UnitOfMeasure_A ,
  616. UnitOfMeasure_V ,
  617. UnitOfMeasure_Celsius ,
  618. UnitOfMeasure_Fahrenheit ,
  619. UnitOfMeasure_K ,
  620. UnitOfMeasure_Percent
  621. } UnitOfMeasure;
  622. static char * UnitOfMeasureStr[] = {
  623. MACROSTR(Wh),
  624. MACROSTR(kWh),
  625. MACROSTR(varh),
  626. MACROSTR(kvarh),
  627. MACROSTR(W),
  628. MACROSTR(kW),
  629. MACROSTR(VA),
  630. MACROSTR(kVA),
  631. MACROSTR(var),
  632. MACROSTR(kvar),
  633. MACROSTR(A),
  634. MACROSTR(V),
  635. MACROSTR(Celsius),
  636. MACROSTR(Fahrenheit),
  637. MACROSTR(K),
  638. MACROSTR(Percent)
  639. };
  640. /*Configuration enum*/
  641. enum CoreProfile {
  642. AllowOfflineTxForUnknownId=0,
  643. AuthorizationCacheEnabled,
  644. AuthorizeRemoteTxRequests,
  645. BlinkRepeat,
  646. ClockAlignedDataInterval,
  647. ConnectionTimeOut,
  648. GetConfigurationMaxKeys,
  649. HeartbeatInterval,
  650. LightIntensity,
  651. LocalAuthorizeOffline,
  652. LocalPreAuthorize,
  653. MaxEnergyOnInvalidId,
  654. MeterValuesAlignedData,
  655. MeterValuesAlignedDataMaxLength,
  656. MeterValuesSampledData,
  657. MeterValuesSampledDataMaxLength,
  658. MeterValueSampleInterval,
  659. MinimumStatusDuration,
  660. NumberOfConnectors,
  661. ResetRetries,
  662. ConnectorPhaseRotation,
  663. ConnectorPhaseRotationMaxLength,
  664. StopTransactionOnEVSideDisconnect,
  665. StopTransactionOnInvalidId,
  666. StopTxnAlignedData,
  667. StopTxnAlignedDataMaxLength,
  668. StopTxnSampledData,
  669. StopTxnSampledDataMaxLength,
  670. SupportedFeatureProfiles,
  671. SupportedFeatureProfilesMaxLength,
  672. TransactionMessageAttempts,
  673. TransactionMessageRetryInterval,
  674. UnlockConnectorOnEVSideDisconnect,
  675. WebSocketPingInterval,
  676. _CoreProfile_CNT
  677. };
  678. enum LocalAuthListManagementProfile{
  679. LocalAuthListEnabled=0,
  680. LocalAuthListMaxLength,
  681. SendLocalListMaxLength,
  682. _LocalAuthListManagementProfile_CNT
  683. };
  684. enum ReservationProfile{
  685. ReserveConnectorZeroSupported
  686. };
  687. enum SmartChargingProfile{
  688. ChargeProfileMaxStackLevel,
  689. ChargingScheduleAllowedChargingRateUnit,
  690. ChargingScheduleMaxPeriods,
  691. ConnectorSwitch3to1PhaseSupported,
  692. MaxChargingProfilesInstalled
  693. };
  694. enum ChargerSystemStatus{
  695. ChargerSystemStatus_Booting,
  696. ChargerSystemStatus_Idle,
  697. ChargerSystemStatus_Authorizing,
  698. ChargerSystemStatus_Preparing,
  699. ChargerSystemStatus_Charging,
  700. ChargerSystemStatus_Terminating,
  701. ChargerSystemStatus_Alarm,
  702. ChargerSystemStatus_Fault
  703. };
  704. enum GetConfigurationKey {
  705. GetConfiguration_AllowOfflineTxForUnknownId=0,
  706. GetConfiguration_AuthorizationCacheEnabled,
  707. GetConfiguration_AuthorizeRemoteTxRequests,
  708. GetConfiguration_BlinkRepeat,
  709. GetConfiguration_ClockAlignedDataInterval,
  710. GetConfiguration_ConnectionTimeOut,
  711. GetConfiguration_GetConfigurationMaxKeys,
  712. GetConfiguration_HeartbeatInterval,
  713. GetConfiguration_LightIntensity,
  714. GetConfiguration_LocalAuthorizeOffline,
  715. GetConfiguration_LocalPreAuthorize,
  716. GetConfiguration_MaxEnergyOnInvalidId,
  717. GetConfiguration_MeterValuesAlignedData,
  718. GetConfiguration_MeterValuesAlignedDataMaxLength,
  719. GetConfiguration_MeterValuesSampledData,
  720. GetConfiguration_MeterValuesSampledDataMaxLength,
  721. GetConfiguration_MeterValueSampleInterval,
  722. GetConfiguration_MinimumStatusDuration,
  723. GetConfiguration_NumberOfConnectors,
  724. GetConfiguration_ResetRetries,
  725. GetConfiguration_ConnectorPhaseRotation,
  726. GetConfiguration_ConnectorPhaseRotationMaxLength,
  727. GetConfiguration_StopTransactionOnEVSideDisconnect,
  728. GetConfiguration_StopTransactionOnInvalidId,
  729. GetConfiguration_StopTxnAlignedData,
  730. GetConfiguration_StopTxnAlignedDataMaxLength,
  731. GetConfiguration_StopTxnSampledData,
  732. GetConfiguration_StopTxnSampledDataMaxLength,
  733. GetConfiguration_SupportedFeatureProfiles,
  734. GetConfiguration_SupportedFeatureProfilesMaxLength,
  735. GetConfiguration_TransactionMessageAttempts,
  736. GetConfiguration_TransactionMessageRetryInterval,
  737. GetConfiguration_UnlockConnectorOnEVSideDisconnect,
  738. GetConfiguration_WebSocketPingInterval,
  739. GetConfiguration_LocalAuthListEnabled,
  740. GetConfiguration_LocalAuthListMaxLength,
  741. GetConfiguration_SendLocalListMaxLength,
  742. GetConfiguration_ReserveConnectorZeroSupported,
  743. GetConfiguration_ChargeProfileMaxStackLevel,
  744. GetConfiguration_ChargingScheduleAllowedChargingRateUnit,
  745. GetConfiguration_ChargingScheduleMaxPeriods,
  746. GetConfiguration_ConnectorSwitch3to1PhaseSupported,
  747. GetConfiguration_MaxChargingProfilesInstalled,
  748. };
  749. //==========================================
  750. // Init all share memory
  751. //==========================================
  752. int InitShareMemory()
  753. {
  754. int result = PASS;
  755. int MeterSMId;
  756. printf("1\n");
  757. //creat ShmSysConfigAndInfo
  758. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  759. {
  760. #ifdef SystemLogMessage
  761. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  762. #endif
  763. result = FAIL;
  764. }
  765. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  766. {
  767. #ifdef SystemLogMessage
  768. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n");
  769. #endif
  770. result = FAIL;
  771. }
  772. else
  773. {}
  774. printf("2\n");
  775. //creat ShmStatusCodeData
  776. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  777. {
  778. #ifdef SystemLogMessage
  779. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  780. #endif
  781. result = FAIL;
  782. }
  783. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  784. {
  785. #ifdef SystemLogMessage
  786. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  787. #endif
  788. result = FAIL;
  789. }
  790. else
  791. {}
  792. printf("3\n");
  793. //creat ShmPsuData
  794. if ((MeterSMId = shmget(ShmPsuKey, sizeof(struct PsuData), 0777)) < 0)
  795. {
  796. #ifdef SystemLogMessage
  797. DEBUG_ERROR("shmget ShmPsuData NG\n");
  798. #endif
  799. result = FAIL;
  800. }
  801. else if ((ShmPsuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  802. {
  803. #ifdef SystemLogMessage
  804. DEBUG_ERROR("shmat ShmPsuData NG\n");
  805. #endif
  806. result = FAIL;
  807. }
  808. else
  809. {}
  810. printf("4\n");
  811. //creat ShmOCPP16Data
  812. if ((MeterSMId = shmget(ShmOcppModuleKey, sizeof(struct OCPP16Data), 0777)) < 0)
  813. {
  814. #ifdef SystemLogMessage
  815. DEBUG_ERROR("shmget ShmOCPP16Data NG");
  816. #endif
  817. result = FAIL;
  818. }
  819. else if ((ShmOCPP16Data = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  820. {
  821. #ifdef SystemLogMessage
  822. DEBUG_ERROR("shmat ShmOCPP16Data NG");
  823. #endif
  824. result = FAIL;
  825. }
  826. else
  827. {}
  828. printf("5\n");
  829. //memset(ShmOCPP16Data,0,sizeof(struct OCPP16Data));
  830. /****************************** For TEST ************************************************/
  831. //strcpy(ShmOCPP16Data->OcppServerURL,"172.17.40.13");
  832. //strcpy(ShmOCPP16Data->ChargeBoxId,"RDTEST103");
  833. //inital settings
  834. #if 0 // For Test
  835. sprintf(ShmOCPP16Data->BootNotification.CbSN, "");
  836. sprintf(ShmOCPP16Data->BootNotification.CpModel, "EA873E3EF8P1");
  837. sprintf(ShmOCPP16Data->BootNotification.CpSN, "RDTEST103");
  838. sprintf(ShmOCPP16Data->BootNotification.CpVendor, "Phihong Technology");
  839. sprintf(ShmOCPP16Data->BootNotification.CpFwVersion, "D0.13.50.0087.PH");
  840. sprintf(ShmOCPP16Data->BootNotification.CpIccid, "");
  841. sprintf(ShmOCPP16Data->BootNotification.CpImsi,"");
  842. sprintf(ShmOCPP16Data->BootNotification.CpMeterSerialNumber,"N/A");
  843. sprintf(ShmOCPP16Data->BootNotification.CpMeterType,"AC");
  844. memset(ShmOCPP16Data->StatusNotification,0,sizeof(struct StructStatusNotification)*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY));
  845. for(int gun_index=0; gun_index < (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY); gun_index++ )
  846. {
  847. cpinitateMsg.bits[gun_index].StatusNotificationReq = 0;
  848. cpinitateMsg.bits[gun_index].StatusNotificationConf = 0;
  849. //allocate memory
  850. if(ShmOCPP16Data->StopTransaction[gun_index].TransactionData == NULL)
  851. {
  852. ShmOCPP16Data->StopTransaction[gun_index].TransactionData = (struct StructMeterValue *)malloc(sizeof(struct StructMeterValue));
  853. }
  854. if(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue == NULL)
  855. {
  856. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue = (struct StructSampledValue *)malloc(sizeof(struct StructSampledValue)*5);
  857. }
  858. ShmOCPP16Data->StatusNotification[gun_index].ConnectorId = (gun_index + 1);
  859. strcpy(ShmOCPP16Data->StatusNotification[gun_index].ErrorCode, "NoError");
  860. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Info, "N/A");
  861. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Available");
  862. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Timestamp, "2019-05-04T18:15:33Z");
  863. strcpy(ShmOCPP16Data->StatusNotification[gun_index].VendorId, "PhihongTechnology");
  864. strcpy(ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode, "000000");
  865. clientTime.MeterValues[gun_index] = time((time_t*)NULL);
  866. }
  867. printf("6\n");
  868. // strcpy(ShmOCPP16Data->Authorize.IdTag,"PaHdImHiOnNG");
  869. // ShmOCPP16Data->CpMsg.bits[0].StartTransactionReq = 1;
  870. //Authorize
  871. //memset(ShmSysConfigAndInfo, 0, sizeof(struct SysConfigAndInfo));
  872. //strcpy(ShmSysConfigAndInfo->SysConfig.UserId, "B014EA9C");
  873. //gun index
  874. #if 0
  875. ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].Index = 0;
  876. ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].Index = 1;
  877. ShmSysConfigAndInfo->SysInfo.GbChargingData[0].Index = 2;
  878. #endif
  879. //Chademo
  880. ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus =1; //idle
  881. ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].PreviousSystemStatus = 1;
  882. cpinitateMsg.bits[0].StatusNotificationReq = 1;
  883. #endif
  884. printf("7\n");
  885. // Charger PRE_SYS_MODE
  886. memset(PRE_SYS_MODE, 0, sizeof(PRE_SYS_MODE));
  887. memset( (void *)unknownkey, 0, sizeof(char)*10*20 );
  888. clientTime.Heartbeat=time((time_t*)NULL);
  889. for(int gun_index=0;gun_index < (CHAdeMO_QUANTITY/*+ CCS_QUANTITY + GB_QUANTITY*/) ;gun_index++)
  890. {
  891. clientTime.StatusNotification[gun_index] = time((time_t*)NULL);
  892. clientTime.MeterValues[gun_index] = time((time_t*)NULL);
  893. }
  894. printf("8\n");
  895. HeartBeatWaitTime = 10;
  896. ShmOCPP16Data->GetConfiguration.ResponseUnknownKey = NULL;
  897. ShmOCPP16Data->SendLocalList.LocalAuthorizationList = NULL;
  898. //memset(unknownkey, 0, 10);
  899. return result;
  900. }
  901. int ProcessShareMemory()
  902. {
  903. if(InitShareMemory() == FAIL)
  904. {
  905. #ifdef SystemLogMessage
  906. DEBUG_ERROR("InitShareMemory NG\n");
  907. #endif
  908. if(ShmStatusCodeData!=NULL)
  909. {
  910. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=1;
  911. }
  912. sleep(5);
  913. return FAIL;
  914. }
  915. return PASS;
  916. }
  917. void CheckSystemValue(void)
  918. {
  919. printf("CheckSystemValue \n");
  920. int meterValueSend=0;
  921. int IdleModeCnt = 0;
  922. if((server_sign == TRUE) && (difftime(time((time_t*)NULL), clientTime.Heartbeat) >= HeartBeatWaitTime)/*((time((time_t*)NULL)-clientTime.Heartbeat)>= ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval)*/)
  923. {
  924. //parameter for test
  925. sendHeartbeatRequest(0);
  926. //==============================================
  927. // Reset Waiting Time
  928. //==============================================
  929. clientTime.Heartbeat=time((time_t*)NULL);
  930. }
  931. //==============================================
  932. // Update request
  933. //==============================================
  934. if(isUpdateRequest == TRUE )
  935. {
  936. for(int gun_index=0;gun_index < (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY) ;gun_index++)
  937. {
  938. //check SystemStatus // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  939. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  940. {
  941. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 1)) //S_IDLE
  942. {
  943. IdleModeCnt = IdleModeCnt + 1;
  944. }
  945. }
  946. for (int index = 0; index < CCS_QUANTITY; index++)
  947. {
  948. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 1)) //S_IDLE
  949. {
  950. IdleModeCnt = IdleModeCnt + 1;
  951. }
  952. }
  953. for (int index = 0; index < GB_QUANTITY; index++)
  954. {
  955. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 1)) //S_IDLE
  956. {
  957. IdleModeCnt = IdleModeCnt + 1;
  958. }
  959. }
  960. }
  961. if(IdleModeCnt == (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY ))
  962. {
  963. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Installed]);
  964. isUpdateRequest = FALSE;
  965. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1; // trigger firmware upgrade
  966. }
  967. }
  968. printf("gun no %d\n",(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY));
  969. for(int gun_index=0;gun_index < (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY ) ;gun_index++)
  970. {
  971. if((server_sign == TRUE) && (ShmOCPP16Data->SpMsg.bits.AuthorizeReq == 1)&&(authorizeRetryTimes < 3)/*authenrequest == FALSE*/)
  972. {
  973. sendAuthorizeRequest(0);
  974. authorizeRetryTimes = authorizeRetryTimes + 1;
  975. /* authenrequest = TRUE; */
  976. if(authorizeRetryTimes < 3)
  977. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  978. #if 0
  979. //Test Variables
  980. UserPlugGun = 1;
  981. teststatus = 0;
  982. #endif
  983. }
  984. else if((server_sign == TRUE) && (ShmOCPP16Data->SpMsg.bits.AuthorizeReq == 1)&&(authorizeRetryTimes >= 3))
  985. {
  986. authorizeRetryTimes = 0;
  987. ShmOCPP16Data->OcppConnStatus = 0; // ocpp offline
  988. }
  989. #if 1
  990. //==============================================
  991. // Charger start transaction
  992. //==============================================
  993. if((server_sign == TRUE) && (ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq == 1))
  994. {
  995. #if 0 // for test
  996. if(teststatus == 0)
  997. {
  998. #endif
  999. sendStartTransactionRequest(gun_index);
  1000. ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq =0;
  1001. clientTime.StartTransaction = time((time_t*)NULL);
  1002. #if 0// for test
  1003. teststatus = 1; // finish startTransaction
  1004. }
  1005. #endif
  1006. }
  1007. //==============================================
  1008. // Charger stop transaction
  1009. //==============================================
  1010. if((server_sign == TRUE) && ((ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq == 1)))
  1011. {
  1012. #if 0 // for test
  1013. if(teststatus == 2)
  1014. {
  1015. #endif
  1016. sendStopTransactionRequest(gun_index);
  1017. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq =0;
  1018. clientTime.StopTransaction = time((time_t*)NULL);
  1019. #if 0// for test
  1020. teststatus = 100;
  1021. }
  1022. #endif
  1023. }
  1024. //==============================================
  1025. // Charger status report
  1026. //==============================================
  1027. /* Check Mode Change */
  1028. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1029. {
  1030. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  1031. {
  1032. printf("Chademo Mode status:\n");
  1033. //printf("ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus: %c\n",ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus);
  1034. //printf("ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PreviousSystemStatus: %c\n",ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PreviousSystemStatus);
  1035. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PreviousSystemStatus/*PRE_SYS_MODE[gun_index]*/ )
  1036. {
  1037. printf("Chademo Mode Change\n");
  1038. PRE_SYS_MODE[gun_index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus;
  1039. ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PreviousSystemStatus = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus;
  1040. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  1041. statusModeChage = TRUE;
  1042. }
  1043. }
  1044. }
  1045. for (int index = 0; index < CCS_QUANTITY; index++)
  1046. {
  1047. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  1048. {
  1049. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PreviousSystemStatus/*PRE_SYS_MODE[gun_index]*/ )
  1050. {
  1051. printf("Ccs Mode Change\n");
  1052. PRE_SYS_MODE[gun_index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus;
  1053. ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PreviousSystemStatus = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus;
  1054. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  1055. statusModeChage = TRUE;
  1056. }
  1057. }
  1058. }
  1059. for (int index = 0; index < GB_QUANTITY; index++)
  1060. {
  1061. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)/*&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '4')*/)
  1062. {
  1063. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PreviousSystemStatus/*PRE_SYS_MODE[gun_index]*/ )
  1064. {
  1065. printf("Gb Mode Change\n");
  1066. PRE_SYS_MODE[gun_index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus;
  1067. ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PreviousSystemStatus = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus;
  1068. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  1069. statusModeChage = TRUE;
  1070. }
  1071. }
  1072. }
  1073. if((server_sign == TRUE) && ((statusModeChage == TRUE)||((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > server_cycle_Status)|| ((cpinitateMsg.bits[gun_index].StatusNotificationReq == 1)&&((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > 30))))
  1074. {
  1075. sendStatusNotificationRequest(gun_index);
  1076. clientTime.StatusNotification[gun_index] = time((time_t*)NULL);
  1077. cpinitateMsg.bits[gun_index].StatusNotificationReq = 0;
  1078. statusModeChage = FALSE;
  1079. }
  1080. printf("(time((time_t*)NULL) - clientTime.MeterValues[gun_index])=%d\n",(time((time_t*)NULL) - clientTime.MeterValues[gun_index]));
  1081. printf("atoi(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData))=%d\n",atoi(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData)/1000);
  1082. printf("ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus = %d \n",(int)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus));
  1083. printf("gun_index=%d\n",gun_index);
  1084. //==============================================
  1085. // Meter report
  1086. //==============================================
  1087. if((server_sign == TRUE) && ((time((time_t*)NULL) - clientTime.MeterValues[gun_index])> atoi(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData)/1000 ) )
  1088. {
  1089. //check Transaction active
  1090. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1091. {
  1092. // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  1093. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 8))
  1094. {
  1095. meterValueSend =1;
  1096. }
  1097. }
  1098. for (int index = 0; index < CCS_QUANTITY; index++)
  1099. {
  1100. // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  1101. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 8))
  1102. {
  1103. meterValueSend =1;
  1104. }
  1105. }
  1106. for (int index = 0; index < GB_QUANTITY; index++)
  1107. {
  1108. // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  1109. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8))
  1110. {
  1111. meterValueSend =1;
  1112. }
  1113. }
  1114. printf("sendMeterValuesRequest \n");
  1115. // if(meterValueSend == 1)
  1116. #if 0 // for test
  1117. if((teststatus == 1) && (testCountInc <= testCount))
  1118. {
  1119. #endif
  1120. sleep(1); //?��?1�
  1121. if(meterValueSend == 1)
  1122. sendMeterValuesRequest(gun_index);
  1123. #if 0 //for test
  1124. testCountInc = testCountInc + 1;
  1125. printf("testCountInc=%d\n",testCountInc);
  1126. }
  1127. else if((meterValueSend == 1) && (testCountInc > testCount))
  1128. {
  1129. teststatus = 2;
  1130. meterValueSend = 0;
  1131. testCountInc = 0;
  1132. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq = 1;
  1133. }
  1134. #endif
  1135. clientTime.MeterValues[gun_index] = time((time_t*)NULL);
  1136. }
  1137. #endif
  1138. //==============================================
  1139. // Check Connector reserved
  1140. //==============================================
  1141. /*
  1142. enum _SYSTEM_STATUS
  1143. {
  1144. S_BOOTING = 0,
  1145. S_IDLE, =1
  1146. S_AUTHORIZING, =2
  1147. S_REASSIGN_CHECK, =3
  1148. S_REASSIGN, =4
  1149. S_PRECHARGE, =5
  1150. S_PREPARING_FOR_EV, =6
  1151. S_PREPARING_FOR_EVSE, =7
  1152. S_CHARGING, =8
  1153. S_TERMINATING, =9
  1154. S_COMPLETE, =10
  1155. S_ALARM, =11
  1156. S_FAULT =12
  1157. };
  1158. */
  1159. printf("ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate=%s\n",ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate);
  1160. if((server_sign == TRUE) && (strcmp(ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate, "") != 0) )
  1161. {
  1162. double diff_t;
  1163. struct tm tp;
  1164. // current time
  1165. time_t t = time(NULL);
  1166. sprintf((char *)ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate, "%s", "2018-09-20T02:56:54.973Z");
  1167. printf("ExpiryDate : %s\n", (char *)ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate);
  1168. strptime((char *)ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate, "%Y-%m-%dT%H:%M:%S", &tp);
  1169. printf("handle check value 1\n");
  1170. tp.tm_isdst = -1;
  1171. printf("handle check value 2\n");
  1172. time_t utc = mktime(&tp);
  1173. printf("handle check value 3\n");
  1174. struct tm e0 = { .tm_year = tp.tm_year, .tm_mday = tp.tm_mday, .tm_mon = tp.tm_mon, .tm_hour = tp.tm_hour, .tm_isdst = -1 };
  1175. time_t pseudo = mktime(&e0);
  1176. struct tm e1 = *gmtime(&pseudo);
  1177. e0.tm_sec += utc - diff_tm(&e1, &e0);
  1178. time_t local = e0.tm_sec;
  1179. // ?�到��??�起始�???- chargingScedule起�??��?
  1180. diff_t = difftime(t, local);
  1181. if(diff_t < 0)
  1182. {
  1183. printf("reserve expired !!! \n");
  1184. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1185. }
  1186. else if((ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionConf == 1) &&
  1187. (ShmOCPP16Data->StartTransaction[gun_index].ReservationId == ShmOCPP16Data->ReserveNow[gun_index].ReservationId)&&
  1188. (strcmp(ShmOCPP16Data->StartTransaction[gun_index].IdTag, ShmOCPP16Data->ReserveNow[gun_index].IdTag) ==0))
  1189. {
  1190. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1191. }
  1192. else
  1193. {
  1194. //check Transaction active
  1195. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1196. {
  1197. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  1198. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index) &&(1/*?�ç??—æ?*//*ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != '8'*/))
  1199. {
  1200. //if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '7') || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9') )
  1201. if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 12) ) // S_ALARM, S_FAULT
  1202. {
  1203. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1204. }
  1205. }
  1206. }
  1207. for (int index = 0; index < CCS_QUANTITY; index++)
  1208. {
  1209. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  1210. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(1/*?�ç??—æ?*//*ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != '8'*/))
  1211. {
  1212. //if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '7') || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '9') )
  1213. if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 12) ) // S_ALARM, S_FAULT
  1214. {
  1215. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1216. }
  1217. }
  1218. }
  1219. for (int index = 0; index < GB_QUANTITY; index++)
  1220. {
  1221. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  1222. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)&&(1/*?�ç??—æ?*//*ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != '8'*/) )
  1223. {
  1224. //if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '7') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '9') )
  1225. if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 12) ) // S_ALARM, S_FAULT
  1226. {
  1227. ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationReq = 1;
  1228. }
  1229. }
  1230. }
  1231. }
  1232. }
  1233. // csu trigger FirmwareStatusNotificationReq
  1234. if((server_sign == TRUE) && (ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq == 1))
  1235. {
  1236. sendFirmwareStatusNotificationRequest(ShmOCPP16Data->FirmwareStatusNotification.Status);
  1237. }
  1238. if((server_sign == TRUE) && (ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationConf == 1))
  1239. {
  1240. //sendCancelReservationConfirmation(uuid, comfirmstr);
  1241. sendCancelReservationConfirmation(ShmOCPP16Data->CancelReservation[gun_index].guid, ShmOCPP16Data->CancelReservation[gun_index].ResponseStatus);
  1242. }
  1243. if((server_sign == TRUE) && (ShmOCPP16Data->CsMsg.bits[gun_index].ChangeAvailabilityConf == 1))
  1244. {
  1245. //sendChangeAvailabilityConfirmation(,(char *)ShmOCPP16Data->ChangeAvailability[gun_index].ResponseStatus);
  1246. }
  1247. if((server_sign == TRUE) && (ShmOCPP16Data->CsMsg.bits[gun_index].UnlockConnectorConf == 1))
  1248. {
  1249. sendUnlockConnectorConfirmation(ShmOCPP16Data->UnlockConnector[gun_index].guid, ShmOCPP16Data->UnlockConnector[gun_index].ResponseStatus);
  1250. }
  1251. if((server_sign == TRUE) &&(ShmOCPP16Data->CsMsg.bits[gun_index].ReserveNowConf == 1))
  1252. {
  1253. sendReserveNowTransactionConfirmation(ShmOCPP16Data->ReserveNow[gun_index].guid, ShmOCPP16Data->ReserveNow[gun_index].ResponseStatus);
  1254. }
  1255. if((server_sign == TRUE) &&(ShmOCPP16Data->MsMsg.bits.ResetConf == 1))
  1256. {
  1257. sendResetConfirmation(ShmOCPP16Data->Reset.guid, ShmOCPP16Data->Reset.ResponseStatus);
  1258. }
  1259. }
  1260. }
  1261. //==========================================
  1262. // send request routine
  1263. //==========================================
  1264. int sendAuthorizeRequest(int gun_index)
  1265. {
  1266. printf("sendAuthorizeRequest \n");
  1267. int result = FAIL;
  1268. int i = 0;
  1269. char *str = NULL;
  1270. char *arr[1];
  1271. const char *del = ",";
  1272. char *senstr = NULL;
  1273. char *temp = NULL;
  1274. struct json_object *message, *payload;
  1275. char guid[37];
  1276. message = json_object_new_array();
  1277. payload = json_object_new_object();
  1278. //initailize struct Authorize
  1279. memset(&(ShmOCPP16Data->Authorize), 0 , sizeof(struct StructAuthorize));
  1280. //get data from shared memory
  1281. strcpy(ShmOCPP16Data->Authorize.IdTag, ShmSysConfigAndInfo->SysConfig.UserId);
  1282. //json_object_object_add(payload, "idTag", json_object_new_string((const char *)request.IdTag));
  1283. json_object_object_add(payload, "idTag", json_object_new_string((const char *)ShmOCPP16Data->Authorize.IdTag));
  1284. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALL));
  1285. random_uuid(guid);
  1286. json_object_array_add(message, json_object_new_string(guid));
  1287. json_object_array_add(message, json_object_new_string("Authorize"));
  1288. json_object_array_add(message, payload);
  1289. Send(message);
  1290. // Put request guid to hash map
  1291. if(mapItem == NULL)
  1292. {
  1293. mapItem = malloc(sizeof(data_struct_t));
  1294. printf("mapItem is null\n");
  1295. }
  1296. sprintf(mapItem->key_string, "%s", guid);
  1297. sprintf(mapItem->key_value, "Authorize,%d", gun_index);//sprintf(mapItem->key_value, senstr);//sprintf(mapItem->key_value, "Authorize");
  1298. printf("Authorize mapItem->key_string=%s\n",mapItem->key_string);
  1299. printf("Authorize mapItem->key_value=%s\n",mapItem->key_value);
  1300. if(hashmap_operation(0,hashMap, mapItem->key_string, mapItem->key_value/*mapItem*/, (void**)(&mapItem)) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
  1301. {
  1302. result = PASS;
  1303. printf("Authorize mapItem pass\n");
  1304. }
  1305. #ifdef SystemLogMessage
  1306. DEBUG_INFO(">>>>>Authorize request\n");
  1307. DEBUG_INFO("Message: %s\n", SendBuffer);
  1308. DEBUG_INFO("After push hash length: %d\n", hashmap_length(hashMap));
  1309. #endif
  1310. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  1311. json_object_put(message); // Delete the json object
  1312. //for test
  1313. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus ='3'; //preparing
  1314. //ShmOCPP16Data->CpMsg.bits[0].StartTransactionReq = 1;
  1315. return result;
  1316. }
  1317. int sendBootNotificationRequest(void)
  1318. {
  1319. int result = FAIL;
  1320. int i = 0;
  1321. struct json_object *message, *payload;
  1322. int count = 0;
  1323. int gun_index = 0;
  1324. char guid[37];
  1325. message = json_object_new_array();
  1326. payload = json_object_new_object();
  1327. // Fill BootNotification fields
  1328. strcpy(ShmOCPP16Data->BootNotification.CbSN,(const char *)ShmOCPP16Data->ChargeBoxId);
  1329. strcpy(ShmOCPP16Data->BootNotification.CpModel,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName);
  1330. strcpy(ShmOCPP16Data->BootNotification.CpSN,(const char *)ShmSysConfigAndInfo->SysConfig.SerialNumber);
  1331. strcpy(ShmOCPP16Data->BootNotification.CpVendor,(const char *)ShmSysConfigAndInfo->SysConfig.chargePointVendor);
  1332. json_object_object_add(payload, "chargeBoxSerialNumber", json_object_new_string((const char *)ShmOCPP16Data->ChargeBoxId));
  1333. json_object_object_add(payload, "chargePointModel", json_object_new_string((const char *)ShmSysConfigAndInfo->SysConfig.ModelName));
  1334. json_object_object_add(payload, "chargePointSerialNumber", json_object_new_string((const char *)ShmSysConfigAndInfo->SysConfig.SerialNumber));
  1335. json_object_object_add(payload, "chargePointVendor", json_object_new_string((const char *)ShmSysConfigAndInfo->SysConfig.chargePointVendor));
  1336. json_object_object_add(payload, "firmwareVersion", json_object_new_string((const char *)ShmOCPP16Data->BootNotification.CpFwVersion));
  1337. json_object_object_add(payload, "iccid", json_object_new_string((const char *)ShmOCPP16Data->BootNotification.CpIccid));
  1338. json_object_object_add(payload, "imsi", json_object_new_string((const char *)ShmOCPP16Data->BootNotification.CpImsi));
  1339. json_object_object_add(payload, "meterSerialNumber", json_object_new_string((const char *)ShmOCPP16Data->BootNotification.CpMeterSerialNumber));
  1340. json_object_object_add(payload, "meterType", json_object_new_string((const char *)ShmOCPP16Data->BootNotification.CpMeterType));
  1341. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALL));
  1342. random_uuid(guid);
  1343. json_object_array_add(message, json_object_new_string(guid));
  1344. json_object_array_add(message, json_object_new_string("BootNotification"));
  1345. json_object_array_add(message, payload);
  1346. Send(message);
  1347. // Put request guid to hash map
  1348. sprintf(mapItem->key_string, "%s", guid);
  1349. sprintf(mapItem->key_value, "BootNotification,0");
  1350. printf("BootNotification mapItem->key_string=%s\n",mapItem->key_string);
  1351. printf("BootNotification mapItem->key_value=%s\n",mapItem->key_value);
  1352. if(hashmap_operation(0,hashMap, mapItem->key_string, mapItem->key_value/*mapItem*/, (void**)(&mapItem)) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
  1353. {
  1354. result = PASS;
  1355. }
  1356. printf("8-2\n");
  1357. memset(queuedata, 0, strlen(queuedata));
  1358. strcpy(queuedata,(char*)json_object_to_json_string(message));
  1359. //addq(guid, queuedata);
  1360. #ifdef SystemLogMessage
  1361. DEBUG_INFO(">>>>>BootNotification request\n");
  1362. DEBUG_INFO("Message: %s\n", SendBuffer);
  1363. DEBUG_INFO("After push hash length: %d\n", hashmap_length(hashMap));
  1364. #endif
  1365. json_object_put(message); // Delete the json object
  1366. //ShmOCPP16Data->SpMsg.bits.BootNotificationReq = 1;
  1367. return result;
  1368. }
  1369. int sendDataTransferRequest(int gun_index)
  1370. {
  1371. int result = FAIL;
  1372. struct json_object *message, *payload, *data;
  1373. char *senstr = NULL;
  1374. char *temp = NULL;
  1375. const char *del = ",";
  1376. char guid[37];
  1377. message = json_object_new_array();
  1378. payload = json_object_new_object();
  1379. data = json_object_new_object();
  1380. json_object_object_add(payload, "vendorId", json_object_new_string("PhihongTechnology"));
  1381. json_object_object_add(payload, "messageId", json_object_new_string("TestingMessage"));
  1382. json_object_object_add(data, "data-1", json_object_new_string("data1 content"));
  1383. json_object_object_add(data, "data-2", json_object_new_string("data2 content"));
  1384. json_object_object_add(payload, "data", json_object_new_string(json_object_get_string(data)));
  1385. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALL));
  1386. random_uuid(guid);
  1387. json_object_array_add(message, json_object_new_string(guid));
  1388. json_object_array_add(message, json_object_new_string("DataTransfer"));
  1389. json_object_array_add(message, payload);
  1390. Send(message);
  1391. // Put request guid to hash map
  1392. if(mapItem == NULL)
  1393. {
  1394. mapItem = malloc(sizeof(data_struct_t));
  1395. printf("mapItem is null\n");
  1396. }
  1397. if(guid == NULL || mapItem->key_string == NULL)
  1398. {
  1399. printf("guid is NULL \n");
  1400. }
  1401. if(mapItem->key_string == NULL)
  1402. {
  1403. printf("mapItem->key_string is NULL\n");
  1404. }
  1405. sprintf(mapItem->key_string, "%s", guid);
  1406. sprintf(mapItem->key_value, "DataTransfer,%d", (gun_index + 1));
  1407. printf("DataTransfer mapItem->key_string=%s\n", mapItem->key_string);
  1408. printf("DataTransfer mapItem->key_value=%s\n", mapItem->key_value);
  1409. if(hashmap_operation(0,hashMap, mapItem->key_string, mapItem->key_value/*mapItem*/, (void**)(&mapItem)) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
  1410. {
  1411. result = PASS;
  1412. printf("DataTransfer mapItem pass\n");
  1413. }
  1414. #ifdef SystemLogMessage
  1415. DEBUG_INFO(">>>>>DataTransfer request\n");
  1416. DEBUG_INFO("Message: %s\n", SendBuffer);
  1417. DEBUG_INFO("After push hash length: %d\n", hashmap_length(hashMap));
  1418. #endif
  1419. json_object_put(message); // Delete the json object
  1420. return result;
  1421. }
  1422. int sendDiagnosticsStatusNotificationRequest(char *status)
  1423. {
  1424. int result = FAIL;
  1425. char *str = NULL;
  1426. struct json_object *message, *payload;
  1427. char guid[37];
  1428. message = json_object_new_array();
  1429. payload = json_object_new_object();
  1430. printf("sendDiagnosticsStatusNotificationRequest \n");
  1431. printf("DiagnosticsStatusNotification-1\n");
  1432. printf("DiagnosticsStatusNotification.Status=%s\n", status);
  1433. sprintf(ShmOCPP16Data->DiagnosticsStatusNotification.Status,"%s",(const char *)status);
  1434. printf("DiagnosticsStatusNotification.Status=%s\n", str);
  1435. json_object_object_add(payload, "status", json_object_new_string((const char *)status));
  1436. printf("DiagnosticsStatusNotification-2\n");
  1437. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALL));
  1438. random_uuid(guid);
  1439. json_object_array_add(message, json_object_new_string(guid));
  1440. json_object_array_add(message, json_object_new_string("DiagnosticsStatusNotification"));
  1441. json_object_array_add(message, payload);
  1442. Send(message);
  1443. if(mapItem == NULL)
  1444. {
  1445. mapItem = malloc(sizeof(data_struct_t));
  1446. printf("mapItem is null\n");
  1447. }
  1448. if(guid == NULL || mapItem->key_string == NULL)
  1449. {
  1450. printf("guid is NULL \n");
  1451. }
  1452. if(mapItem->key_string == NULL)
  1453. {
  1454. printf("mapItem->key_string is NULL\n");
  1455. }
  1456. // Put request guid to hash map
  1457. sprintf(mapItem->key_string, "%s", guid);
  1458. sprintf(mapItem->key_value, "DiagnosticsStatusNotification,%d", 0);
  1459. printf("DiagnosticsStatusNotification mapItem->key_string=%s\n", mapItem->key_string);
  1460. printf("DiagnosticsStatusNotification mapItem->key_value=%s\n", mapItem->key_value);
  1461. if(hashmap_operation(0,hashMap, mapItem->key_string, mapItem->key_value/*mapItem*/, (void**)(&mapItem)) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
  1462. {
  1463. result = PASS;
  1464. printf("DiagnosticsStatusNotification mapItem pass\n");
  1465. }
  1466. #ifdef SystemLogMessage
  1467. DEBUG_INFO(">>>>>DiagnosticsStatusNotification request\n");
  1468. DEBUG_INFO("Message: %s\n", SendBuffer);
  1469. DEBUG_INFO("After push hash length: %d\n", hashmap_length(hashMap));
  1470. #endif
  1471. json_object_put(message); // Delete the json object
  1472. ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 1;
  1473. ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationConf = 0;
  1474. return result;
  1475. }
  1476. int sendFirmwareStatusNotificationRequest(char *status)
  1477. {
  1478. int result = FAIL;
  1479. char *str = NULL;
  1480. struct json_object *message, *payload;
  1481. char guid[37];
  1482. message = json_object_new_array();
  1483. payload = json_object_new_object();
  1484. sprintf(ShmOCPP16Data->FirmwareStatusNotification.Status, "%s", (const char *)status);
  1485. json_object_object_add(payload, "status", json_object_new_string((const char *)status));
  1486. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALL));
  1487. random_uuid(guid);
  1488. json_object_array_add(message, json_object_new_string(guid));
  1489. json_object_array_add(message, json_object_new_string("FirmwareStatusNotification"));
  1490. json_object_array_add(message, payload);
  1491. Send(message);
  1492. if(mapItem == NULL)
  1493. {
  1494. mapItem = malloc(sizeof(data_struct_t));
  1495. printf("mapItem is null\n");
  1496. }
  1497. if(guid == NULL || mapItem->key_string == NULL)
  1498. {
  1499. printf("guid is NULL \n");
  1500. }
  1501. if(mapItem->key_string == NULL)
  1502. {
  1503. printf("mapItem->key_string is NULL\n");
  1504. }
  1505. // Put request guid to hash map
  1506. sprintf(mapItem->key_string, "%s", guid);
  1507. sprintf(mapItem->key_value, "FirmwareStatusNotification,%d", 0);
  1508. printf("FirmwareStatusNotification mapItem->key_string=%s\n", mapItem->key_string);
  1509. printf("FirmwareStatusNotification mapItem->key_value=%s\n", mapItem->key_value);
  1510. if(hashmap_operation(0,hashMap, mapItem->key_string, mapItem->key_value/*mapItem*/, (void**)(&mapItem)) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
  1511. {
  1512. result = PASS;
  1513. printf("FirmwareStatusNotification mapItem pass\n");
  1514. }
  1515. #ifdef SystemLogMessage
  1516. DEBUG_INFO(">>>>>FirmwareStatusNotification request\n");
  1517. DEBUG_INFO("Message: %s\n", SendBuffer);
  1518. DEBUG_INFO("After push hash length: %d\n", hashmap_length(hashMap));
  1519. #endif
  1520. json_object_put(message); // Delete the json object
  1521. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 1;
  1522. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationConf = 0;
  1523. return result;
  1524. }
  1525. int sendHeartbeatRequest(int gun_index)
  1526. {
  1527. int result = FAIL;
  1528. struct json_object *message, *payload;
  1529. char *senstr = NULL;
  1530. char *temp = NULL;
  1531. const char *del = ",";
  1532. char guid[37];
  1533. message = json_object_new_array();
  1534. payload = json_object_new_object();
  1535. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALL));
  1536. random_uuid(guid);
  1537. json_object_array_add(message, json_object_new_string(guid));
  1538. json_object_array_add(message, json_object_new_string("Heartbeat"));
  1539. json_object_array_add(message, payload);
  1540. Send(message);
  1541. if(mapItem == NULL)
  1542. {
  1543. mapItem = malloc(sizeof(data_struct_t));
  1544. printf("mapItem is null\n");
  1545. }
  1546. if(guid == NULL || mapItem->key_string == NULL)
  1547. {
  1548. printf("guid is NULL \n");
  1549. }
  1550. if(mapItem->key_string == NULL)
  1551. {
  1552. printf("mapItem->key_string is NULL\n");
  1553. }
  1554. sprintf(mapItem->key_string, "%s", guid);
  1555. sprintf(mapItem->key_value, "Heartbeat,%d", 0);
  1556. printf("Heartbeat mapItem->key_string=%s\n", mapItem->key_string);
  1557. printf("Heartbeat mapItem->key_value=%s\n", mapItem->key_value);
  1558. if(hashmap_operation(0,hashMap, mapItem->key_string, mapItem->key_value/*mapItem*/, (void**)(&mapItem)) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
  1559. {
  1560. result = PASS;
  1561. printf("Heartbeat mapItem\n");
  1562. }
  1563. #ifdef SystemLogMessage
  1564. DEBUG_INFO(">>>>>Heartbeat request\n");
  1565. DEBUG_INFO("Message: %s\n", SendBuffer);
  1566. DEBUG_INFO("After push hash length: %d\n", hashmap_length(hashMap));
  1567. #endif
  1568. json_object_put(message);
  1569. return result;
  1570. }
  1571. int sendStartTransactionRequest(int gun_index)
  1572. {
  1573. int result = FAIL;
  1574. struct json_object *message, *payload;
  1575. char *senstr = NULL;
  1576. char *temp = NULL;
  1577. const char *del = ",";
  1578. char guid[37];
  1579. struct timeval tmnow;
  1580. struct tm *tm;
  1581. char buf[30], usec_buf[6];
  1582. message = json_object_new_array();
  1583. payload = json_object_new_object();
  1584. gettimeofday(&tmnow, NULL);
  1585. time_t t;
  1586. t = time(NULL);
  1587. /*UTC time and date*/
  1588. tm = gmtime(&t);
  1589. strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
  1590. strcat(buf,".");
  1591. sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
  1592. strcat(buf,usec_buf);
  1593. printf("%s",buf);
  1594. // set value
  1595. ShmOCPP16Data->StartTransaction[gun_index].ConnectorId = gun_index +1 ; // gun start from 1~
  1596. strcpy(ShmOCPP16Data->StartTransaction[gun_index].Timestamp, buf);
  1597. strcpy(ShmOCPP16Data->StartTransaction[gun_index].IdTag, ShmSysConfigAndInfo->SysConfig.UserId);
  1598. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1599. {
  1600. printf("ShmSysConfigAndInfo->SysInfo.ChademoChargingData[%d].Index=%d\n",index, ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index );
  1601. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  1602. {
  1603. printf("Chademo : 0\n");
  1604. #if 1 // for test
  1605. ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy =100.0;
  1606. #endif
  1607. ShmOCPP16Data->StartTransaction[gun_index].MeterStart = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy;
  1608. }
  1609. }
  1610. for (int index = 0; index < CCS_QUANTITY; index++)
  1611. {
  1612. printf("ShmSysConfigAndInfo->SysInfo.CcsChargingData[%d].Index=%d\n",index, ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index );
  1613. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  1614. {
  1615. printf("Ccs : 0\n");
  1616. #if 1 // fo test
  1617. ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy = 100.0;
  1618. #endif
  1619. ShmOCPP16Data->StartTransaction[gun_index].MeterStart = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy;
  1620. }
  1621. }
  1622. for (int index = 0; index < GB_QUANTITY; index++)
  1623. {
  1624. printf("ShmSysConfigAndInfo->SysInfo.GbChargingData[%d].Index=%d\n",index, ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index );
  1625. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  1626. {
  1627. printf("Gb : 0\n");
  1628. #if 1 // fo test
  1629. ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy = 100.0;
  1630. #endif
  1631. ShmOCPP16Data->StartTransaction[gun_index].MeterStart = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy;
  1632. }
  1633. }
  1634. //ShmOCPP16Data->StartTransaction[gun_index].MeterStart = 100;
  1635. json_object_object_add(payload, "connectorId", json_object_new_int(ShmOCPP16Data->StartTransaction[gun_index].ConnectorId));
  1636. json_object_object_add(payload, "idTag", json_object_new_string((const char *)ShmOCPP16Data->StartTransaction[gun_index].IdTag));
  1637. json_object_object_add(payload, "meterStart", json_object_new_int(ShmOCPP16Data->StartTransaction[gun_index].MeterStart));
  1638. json_object_object_add(payload, "reservationId", json_object_new_int(ShmOCPP16Data->StartTransaction[gun_index].ReservationId));
  1639. json_object_object_add(payload, "timestamp", json_object_new_string((const char *)ShmOCPP16Data->StartTransaction[gun_index].Timestamp));
  1640. printf("test s 1\n");
  1641. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALL));
  1642. random_uuid(guid);
  1643. json_object_array_add(message, json_object_new_string(guid));
  1644. json_object_array_add(message, json_object_new_string("StartTransaction"));
  1645. json_object_array_add(message, payload);
  1646. Send(message);
  1647. //usleep(500); // 等�??��?微�?
  1648. printf("test s 2\n");
  1649. if(mapItem == NULL)
  1650. {
  1651. mapItem = malloc(sizeof(data_struct_t));
  1652. printf("mapItem is null\n");
  1653. }
  1654. if(guid == NULL || mapItem->key_string == NULL)
  1655. {
  1656. printf("guid is NULL \n");
  1657. }
  1658. if(mapItem->key_string == NULL)
  1659. {
  1660. printf("mapItem->key_string is NULL\n");
  1661. }
  1662. // Put request guid to hash map
  1663. sprintf(mapItem->key_string, "%s", guid);
  1664. printf("test s 2-0-1\n");
  1665. sprintf(mapItem->key_value, "StartTransaction,%d", (gun_index));
  1666. printf("test s 2-0-2\n");
  1667. printf("StartTransaction mapItem->key_string=%s\n",mapItem->key_string);
  1668. printf("StartTransaction mapItem->key_value=%s\n",mapItem->key_value);
  1669. if(hashmap_operation(0,hashMap, mapItem->key_string, mapItem->key_value/*mapItem*/, (void**)(&mapItem)) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
  1670. {
  1671. printf("test s 2-1\n");
  1672. result = PASS;
  1673. }
  1674. printf("test s 3\n");
  1675. strcpy(queuedata, (char*)json_object_to_json_string(message));
  1676. queue_operation(4, guid, queuedata );//addq(guid, queuedata); ---> remove temporally
  1677. #ifdef SystemLogMessage
  1678. DEBUG_INFO(">>>>>StartTransaction request\n");
  1679. DEBUG_INFO("Message: %s\n", SendBuffer);
  1680. DEBUG_INFO("After push hash length: %d\n", hashmap_length(hashMap));
  1681. #endif
  1682. json_object_put(message);
  1683. return result;
  1684. }
  1685. int sendStatusNotificationRequest(int gun_index)
  1686. {
  1687. int result = FAIL;
  1688. struct json_object *message, *payload;
  1689. char *senstr = NULL;
  1690. char *temp = NULL;
  1691. const char *del = ",";
  1692. char guid[37];
  1693. int currentStatus = 0;
  1694. struct timeval tmnow;
  1695. struct tm *tm;
  1696. char buf[30], usec_buf[6];
  1697. message = json_object_new_array();
  1698. payload = json_object_new_object();
  1699. gettimeofday(&tmnow, NULL);
  1700. time_t t;
  1701. t = time(NULL);
  1702. /*UTC time and date*/
  1703. tm = gmtime(&t);
  1704. strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
  1705. strcat(buf,".");
  1706. sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
  1707. strcat(buf,usec_buf);
  1708. printf("%s",buf);
  1709. ShmOCPP16Data->StatusNotification[gun_index].ConnectorId = (gun_index + 1);
  1710. strcpy(ShmOCPP16Data->StatusNotification[gun_index].ErrorCode, "NoError");
  1711. // it's option
  1712. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Info, "");
  1713. /*
  1714. enum _SYSTEM_STATUS
  1715. {
  1716. S_BOOTING = 0,
  1717. S_IDLE, = 1
  1718. S_AUTHORIZING, =2
  1719. S_REASSIGN_CHECK, =3
  1720. S_REASSIGN, =4
  1721. S_PRECHARGE, =5
  1722. S_PREPARING_FOR_EV, =6
  1723. S_PREPARING_FOR_EVSE, =7
  1724. S_CHARGING, =8
  1725. S_TERMINATING, =9
  1726. S_COMPLETE, =10
  1727. S_ALARM, =11
  1728. S_FAULT =12
  1729. }
  1730. */
  1731. //check Transaction active
  1732. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1733. {
  1734. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 1)) //S_IDLE
  1735. {
  1736. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Available");
  1737. currentStatus = 0; //OCPP Status
  1738. }
  1739. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 5)) //S_PRECHARGE
  1740. {
  1741. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Preparing");
  1742. currentStatus = 1; //OCPP Status
  1743. }
  1744. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 8)) //S_CHARGING
  1745. {
  1746. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging");
  1747. currentStatus = 2; //OCPP Status
  1748. }
  1749. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 10)) //S_COMPLETE
  1750. {
  1751. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Finishing");
  1752. currentStatus = 5; //OCPP Status
  1753. }
  1754. }
  1755. for (int index = 0; index < CCS_QUANTITY; index++)
  1756. {
  1757. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 1)) //S_IDLE
  1758. {
  1759. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Available");
  1760. currentStatus = 0; //OCPP Status
  1761. }
  1762. else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 5)) //S_PRECHARGE
  1763. {
  1764. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Preparing");
  1765. currentStatus = 1; //OCPP Status
  1766. }
  1767. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 8)) //S_CHARGING
  1768. {
  1769. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging");
  1770. currentStatus = 2; //OCPP Status
  1771. }
  1772. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 10)) //S_COMPLETE
  1773. {
  1774. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Finishing");
  1775. currentStatus = 5; //OCPP Status
  1776. }
  1777. }
  1778. for (int index = 0; index < GB_QUANTITY; index++)
  1779. {
  1780. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index) &&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 1)) //S_IDLE
  1781. {
  1782. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Available");
  1783. currentStatus = 0; //OCPP Status
  1784. }
  1785. else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index) &&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 5)) //S_PRECHARGE
  1786. {
  1787. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Preparing");
  1788. currentStatus = 1; //OCPP Status
  1789. }
  1790. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8)) //S_CHARGING
  1791. {
  1792. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging");
  1793. currentStatus = 2; //OCPP Status
  1794. }
  1795. else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8)) //S_COMPLETE
  1796. {
  1797. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, "Finishing");
  1798. currentStatus = 5; //OCPP Status
  1799. }
  1800. }
  1801. //it's option
  1802. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Timestamp, buf);
  1803. strcpy(ShmOCPP16Data->StatusNotification[gun_index].VendorId, "PhihongTechnology");
  1804. strcpy(ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode, "000000");
  1805. strcpy(ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[currentStatus]);
  1806. json_object_object_add(payload, "connectorId", json_object_new_int(ShmOCPP16Data->StatusNotification[gun_index].ConnectorId));
  1807. json_object_object_add(payload, "errorCode", json_object_new_string((const char *)(&ShmOCPP16Data->StatusNotification[gun_index].ErrorCode)));
  1808. json_object_object_add(payload, "info", json_object_new_string((const char *)ShmOCPP16Data->StatusNotification[gun_index].Info));
  1809. json_object_object_add(payload, "status", json_object_new_string((const char *)ShmOCPP16Data->StatusNotification[gun_index].Status));
  1810. json_object_object_add(payload, "timestamp", json_object_new_string((const char *)ShmOCPP16Data->StatusNotification[gun_index].Timestamp));
  1811. json_object_object_add(payload, "vendorId", json_object_new_string((const char *)ShmOCPP16Data->StatusNotification[gun_index].VendorId));
  1812. json_object_object_add(payload, "vendorErrorCode", json_object_new_string((const char *)ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode));
  1813. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALL));
  1814. random_uuid(guid);
  1815. json_object_array_add(message, json_object_new_string(guid));
  1816. json_object_array_add(message, json_object_new_string("StatusNotification"));
  1817. json_object_array_add(message, payload);
  1818. Send(message);
  1819. //usleep(500); // 等�??��?微�?
  1820. // Put request guid to hash map
  1821. if(mapItem == NULL)
  1822. {
  1823. mapItem = malloc(sizeof(data_struct_t));
  1824. printf("mapItem is null\n");
  1825. }
  1826. sprintf(mapItem->key_string, "%s", guid);
  1827. sprintf(mapItem->key_value, "StatusNotification,%d", (gun_index));
  1828. //sprintf(mapItem->key_value, "StatusNotification,%d", gun_index + 1);
  1829. printf("statusNotification mapItem->key_string=%s\n",mapItem->key_string);
  1830. printf("statusNotification mapItem->key_value=%s\n",mapItem->key_value);
  1831. if(hashmap_operation(0,hashMap, mapItem->key_string, mapItem->key_value/*mapItem*/, (void**)(&mapItem)) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
  1832. {
  1833. printf("statusNotification mapitem pass");
  1834. result = PASS;
  1835. }
  1836. #ifdef SystemLogMessage
  1837. DEBUG_INFO(">>>>>StatusNotification request\n");
  1838. DEBUG_INFO("Message: %s\n", SendBuffer);
  1839. DEBUG_INFO("After push hash length: %d\n", hashmap_length(hashMap));
  1840. #endif
  1841. json_object_put(message);
  1842. cpinitateMsg.bits[gun_index].StatusNotificationReq = 0;
  1843. //for test
  1844. #if 0
  1845. // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  1846. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus =='1' )
  1847. {
  1848. //ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 1;
  1849. }
  1850. if(UserPlugGun == 0 && ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus == '3')
  1851. {
  1852. ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus = '1';
  1853. }
  1854. #endif
  1855. return result;
  1856. }
  1857. int sendStopTransactionRequest(int gun_index)
  1858. {
  1859. int result = FAIL;
  1860. struct json_object *message, *payload, *transactionDataArray, *transactionData, *sampledArray, *sampledValue;
  1861. char *senstr = NULL;
  1862. char *temp = NULL;
  1863. const char *del = ",";
  1864. char guid[37];
  1865. int idx_sample=0;
  1866. message = json_object_new_array();
  1867. payload = json_object_new_object();
  1868. transactionDataArray = json_object_new_array();
  1869. sampledArray = json_object_new_array();
  1870. printf("sendStopTransactionRequest \n");
  1871. strcpy(ShmOCPP16Data->StopTransaction[gun_index].IdTag, ShmOCPP16Data->Authorize.IdTag);
  1872. //ENERGY_ACTIVE_IMPORT_REGISTER
  1873. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1874. {
  1875. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  1876. {
  1877. //for test
  1878. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy =100.0;
  1879. ShmOCPP16Data->StopTransaction[gun_index].MeterStop = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy;
  1880. //sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%s" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );
  1881. }
  1882. }
  1883. for (int index = 0; index < CCS_QUANTITY; index++)
  1884. {
  1885. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  1886. {
  1887. //for test
  1888. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy = 100.0;
  1889. ShmOCPP16Data->StopTransaction[gun_index].MeterStop = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy;
  1890. //sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%s" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy );
  1891. }
  1892. }
  1893. for (int index = 0; index < GB_QUANTITY; index++)
  1894. {
  1895. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  1896. {
  1897. // for test
  1898. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy = 100.0;
  1899. ShmOCPP16Data->StopTransaction[gun_index].MeterStop = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy;
  1900. //sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy);
  1901. }
  1902. }
  1903. //Stop Transaction Time
  1904. struct timeval tmnow;
  1905. struct tm *tm;
  1906. char buf[30], usec_buf[6];
  1907. gettimeofday(&tmnow, NULL);
  1908. time_t t;
  1909. t = time(NULL);
  1910. /*UTC time and date*/
  1911. tm = gmtime(&t);
  1912. strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
  1913. strcat(buf,".");
  1914. sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
  1915. strcat(buf,usec_buf);
  1916. printf("%s",buf);
  1917. //strcpy(ShmOCPP16Data->StopTransaction[gun_index].Timestamp,"2019-05-04T18:15:33Z");
  1918. strcpy(ShmOCPP16Data->StopTransaction[gun_index].Timestamp,buf);
  1919. ShmOCPP16Data->StopTransaction[gun_index].TransactionId = ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId;
  1920. strcpy(ShmOCPP16Data->StopTransaction[gun_index].StopReason, StopTransactionReasonStr[Local]); //
  1921. json_object_object_add(payload, "idTag", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].IdTag));
  1922. json_object_object_add(payload, "meterStop", json_object_new_int(ShmOCPP16Data->StopTransaction[gun_index].MeterStop));
  1923. json_object_object_add(payload, "timestamp", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].Timestamp));
  1924. json_object_object_add(payload, "transactionId", json_object_new_int(ShmOCPP16Data->StopTransaction[gun_index].TransactionId));
  1925. json_object_object_add(payload, "reason", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].StopReason));
  1926. printf("sendStopTransactionRequest 1\n");
  1927. ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue = (struct StructSampledValue *)malloc(sizeof(struct StructSampledValue)*3);
  1928. for(int idx_transaction=0;idx_transaction<1;idx_transaction++)
  1929. {
  1930. transactionData = json_object_new_object();
  1931. //json_object_object_add(transactionData, "timestamp", json_object_new_string("2019-05-04T18:15:33Z"));
  1932. strcpy(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].TimeStamp, buf/*"2019-05-04T18:15:33Z"*/);
  1933. json_object_object_add(transactionData, "timestamp", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].TimeStamp));
  1934. //for(int idx_sample=0;idx_sample<1;idx_sample++)
  1935. {
  1936. sampledValue = json_object_new_object();
  1937. printf("sendStopTransactionRequest -2\n");
  1938. //Transaction_Begin
  1939. idx_sample=0;
  1940. printf("ShmOCPP16Data->StartTransaction[gun_index].MeterStart=%d\n",ShmOCPP16Data->StartTransaction[gun_index].MeterStart);
  1941. printf("ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value=%s\n",ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value);
  1942. sprintf(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f",(float)(ShmOCPP16Data->StartTransaction[gun_index].MeterStart));
  1943. printf("sendStopTransactionRequest -2-1\n");
  1944. strcpy(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,ReadingContextStr[ReadingContext_Transaction_Begin]);
  1945. strcpy(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,ValueFormatStr[Raw]);
  1946. strcpy(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,MeasurandStr[Energy_Reactive_Export_Register]);
  1947. strcpy(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,PhaseStr[L1_N]);
  1948. strcpy(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,LocationStr[Location_Outlet]);
  1949. strcpy(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_Wh/*UnitOfMeasure_kWh*/]);
  1950. printf("sendStopTransactionRequest -2-0\n");
  1951. json_object_object_add(sampledValue, "value", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value));
  1952. json_object_object_add(sampledValue, "context", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context));
  1953. json_object_object_add(sampledValue, "format", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format));
  1954. json_object_object_add(sampledValue, "measurand", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand));
  1955. json_object_object_add(sampledValue, "phase", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase));
  1956. json_object_object_add(sampledValue, "location", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location));
  1957. json_object_object_add(sampledValue, "unit", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit));
  1958. json_object_array_add(sampledArray, sampledValue);
  1959. //Transaction_End
  1960. idx_sample=1;
  1961. //sampledValue = NULL;
  1962. sampledValue = json_object_new_object();
  1963. //ENERGY_ACTIVE_IMPORT_REGISTER
  1964. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  1965. {
  1966. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  1967. {
  1968. // for test
  1969. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingPower = 100.0;
  1970. sprintf(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );
  1971. }
  1972. }
  1973. for (int index = 0; index < CCS_QUANTITY; index++)
  1974. {
  1975. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  1976. {
  1977. // for test
  1978. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingPower = 100.0;
  1979. sprintf(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy );
  1980. }
  1981. }
  1982. for (int index = 0; index < GB_QUANTITY; index++)
  1983. {
  1984. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  1985. {
  1986. // for test
  1987. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower = 100.0;
  1988. sprintf(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy );
  1989. }
  1990. }
  1991. //sprintf(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value, "%s",ShmOCPP16Data->StartTransaction[gun_index].MeterStart);
  1992. printf("sendStopTransactionRequest -2-1\n");
  1993. strcpy(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context,ReadingContextStr[ReadingContext_Transaction_End]);
  1994. strcpy(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format,ValueFormatStr[Raw]);
  1995. strcpy(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand,MeasurandStr[Energy_Reactive_Export_Register]);
  1996. strcpy(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase,PhaseStr[L1_N]);
  1997. strcpy(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location,LocationStr[Location_Outlet]);
  1998. strcpy(ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_Wh/*UnitOfMeasure_kWh*/]);
  1999. printf("sendStopTransactionRequest -2-0\n");
  2000. json_object_object_add(sampledValue, "value", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Value));
  2001. json_object_object_add(sampledValue, "context", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Context));
  2002. json_object_object_add(sampledValue, "format", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Format));
  2003. json_object_object_add(sampledValue, "measurand", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Measurand));
  2004. json_object_object_add(sampledValue, "phase", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Phase));
  2005. json_object_object_add(sampledValue, "location", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Location));
  2006. json_object_object_add(sampledValue, "unit", json_object_new_string((const char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idx_transaction].SampledValue[idx_sample].Unit));
  2007. json_object_array_add(sampledArray, sampledValue);
  2008. }
  2009. printf("sendStopTransactionRequest -2-1\n");
  2010. json_object_object_add(transactionData, "sampledValue", sampledArray);
  2011. json_object_array_add(transactionDataArray, transactionData);
  2012. }
  2013. printf("sendStopTransactionRequest -3\n");
  2014. json_object_object_add(payload, "transactionData", transactionDataArray);
  2015. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALL));
  2016. random_uuid(guid);
  2017. json_object_array_add(message, json_object_new_string(guid));
  2018. json_object_array_add(message, json_object_new_string("StopTransaction"));
  2019. json_object_array_add(message, payload);
  2020. Send(message);
  2021. if(mapItem == NULL)
  2022. {
  2023. mapItem = malloc(sizeof(data_struct_t));
  2024. printf("mapItem is null\n");
  2025. }
  2026. // Put request guid to hash map
  2027. sprintf(mapItem->key_string, "%s", guid);
  2028. sprintf(mapItem->key_value, "StopTransaction,%d", (gun_index));
  2029. printf("StopTransaction mapItem->key_string=%s\n",mapItem->key_string);
  2030. printf("StopTransaction mapItem->key_value=%s\n",mapItem->key_value);
  2031. //sprintf(mapItem->key_value, senstr);//sprintf(mapItem->key_value, "StopTransaction");
  2032. if(hashmap_operation(0,hashMap, mapItem->key_string, mapItem->key_value/*mapItem*/, (void**)(&mapItem)) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
  2033. {
  2034. result = PASS;
  2035. printf("StopTransaction mapitem pass");
  2036. }
  2037. strcpy(queuedata, (char*)json_object_to_json_string(message));
  2038. queue_operation(4, guid, queuedata );//addq(guid, queuedata); ---> remove temporally
  2039. //addq(guid, (char*)json_object_to_json_string(message));
  2040. #ifdef SystemLogMessage
  2041. DEBUG_INFO(">>>>>StopTransaction request\n");
  2042. DEBUG_INFO("Message: %s\n", SendBuffer);
  2043. DEBUG_INFO("After push hash length: %d\n", hashmap_length(hashMap));
  2044. #endif
  2045. json_object_put(message);
  2046. //for test
  2047. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq = 0;
  2048. return result;
  2049. }
  2050. int sendMeterValuesRequest(int gun_index)
  2051. {
  2052. int result = FAIL;
  2053. struct json_object *message, *payload, *meterValueDataArray, *transactionData, *sampledArray, *sampledValue;
  2054. char *senstr = NULL;
  2055. char *temp = NULL;
  2056. const char *del = ",";
  2057. char guid[37];
  2058. int idx_sample=0;
  2059. message = json_object_new_array();
  2060. payload = json_object_new_object();
  2061. meterValueDataArray = json_object_new_array();
  2062. sampledArray = json_object_new_array();
  2063. //set value
  2064. ShmOCPP16Data->MeterValues[gun_index].ConnectorId = gun_index + 1; // gun start from 1~
  2065. //ShmOCPP16Data->MeterValues[gun_index].TransactionId = 93507754;
  2066. ShmOCPP16Data->MeterValues[gun_index].TransactionId = ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId;
  2067. json_object_object_add(payload, "connectorId", json_object_new_int(ShmOCPP16Data->MeterValues[gun_index].ConnectorId));
  2068. json_object_object_add(payload, "transactionId", json_object_new_int(ShmOCPP16Data->MeterValues[gun_index].TransactionId));
  2069. printf("enter sendMeterValuesRequest -2\n");
  2070. for(int idx_transaction=0;idx_transaction<1;idx_transaction++)
  2071. {
  2072. transactionData = json_object_new_object();
  2073. //allocate memory space
  2074. ShmOCPP16Data->MeterValues[gun_index].MeterValue = (struct StructMeterValue *)malloc(sizeof(struct StructMeterValue));
  2075. //UTC Date time
  2076. struct timeval tmnow;
  2077. struct tm *tm;
  2078. char buf[30], usec_buf[6];
  2079. gettimeofday(&tmnow, NULL);
  2080. time_t t;
  2081. t = time(NULL);
  2082. /*UTC time and date*/
  2083. tm = gmtime(&t);
  2084. strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm);
  2085. strcat(buf,".");
  2086. sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
  2087. strcat(buf,usec_buf);
  2088. printf("%s",buf);
  2089. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].TimeStamp, buf);
  2090. json_object_object_add(transactionData, "timestamp", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].TimeStamp));
  2091. //allocate memory space
  2092. ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue = (struct StructSampledValue *)malloc(sizeof(struct StructSampledValue)*6);
  2093. //for(int idx_sample=0;idx_sample<1;idx_sample++)
  2094. //{
  2095. idx_sample=0;
  2096. //sampledValue = NULL;
  2097. sampledValue = json_object_new_object();
  2098. /********************************(1)Current.Export************************************************/
  2099. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2100. {
  2101. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2102. {
  2103. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingCurrent = 60.0;
  2104. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingCurrent );
  2105. }
  2106. }
  2107. for (int index = 0; index < CCS_QUANTITY; index++)
  2108. {
  2109. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2110. {
  2111. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingCurrent = 60.0;
  2112. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingCurrent );
  2113. }
  2114. }
  2115. for (int index = 0; index < GB_QUANTITY; index++)
  2116. {
  2117. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2118. {
  2119. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingCurrent = 60.0;
  2120. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingCurrent );
  2121. }
  2122. }
  2123. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2124. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2125. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Current_Export]);
  2126. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1_N]);
  2127. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2128. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_A]);
  2129. printf("meter error 17\n");
  2130. json_object_object_add(sampledValue, "value", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value));
  2131. printf("meter error 18\n");
  2132. json_object_object_add(sampledValue, "context", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context));
  2133. printf("meter error 19\n");
  2134. json_object_object_add(sampledValue, "format", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format));
  2135. printf("meter error 20\n");
  2136. json_object_object_add(sampledValue, "measurand", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand));
  2137. printf("meter error 21\n");
  2138. json_object_object_add(sampledValue, "phase", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase));
  2139. printf("meter error 22\n");
  2140. json_object_object_add(sampledValue, "location", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location));
  2141. printf("meter error 23\n");
  2142. json_object_object_add(sampledValue, "unit", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit));
  2143. printf("meter error 24\n");
  2144. json_object_array_add(sampledArray, sampledValue);
  2145. printf("meter error 25\n");
  2146. #if 1 //DC
  2147. idx_sample=1;
  2148. sampledValue = json_object_new_object();
  2149. /****************************************************(2)Energy.Active.Export.Register*********************************************/
  2150. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2151. {
  2152. printf("ShmSysConfigAndInfo->SysInfo.ChademoChargingData[%d].Index=%d\n",index, ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index );
  2153. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2154. {
  2155. printf("Chademo : 0\n");
  2156. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy =100.0;
  2157. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );
  2158. }
  2159. }
  2160. for (int index = 0; index < CCS_QUANTITY; index++)
  2161. {
  2162. printf("ShmSysConfigAndInfo->SysInfo.CcsChargingData[%d].Index=%d\n",index, ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index );
  2163. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2164. {
  2165. printf("Ccs : 0\n");
  2166. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy = 100.0;
  2167. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy );
  2168. }
  2169. }
  2170. for (int index = 0; index < GB_QUANTITY; index++)
  2171. {
  2172. printf("ShmSysConfigAndInfo->SysInfo.GbChargingData[%d].Index=%d\n",index, ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index );
  2173. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2174. {
  2175. printf("Gb : 0\n");
  2176. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy = 100.0;
  2177. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy);
  2178. }
  2179. }
  2180. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2181. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2182. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Energy_Active_Export_Register]);
  2183. // strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1]);
  2184. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2185. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_Wh]);
  2186. printf("meter error 1\n");
  2187. json_object_object_add(sampledValue, "value", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value));
  2188. printf("meter error 2\n");
  2189. json_object_object_add(sampledValue, "context", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context));
  2190. printf("meter error 3\n");
  2191. json_object_object_add(sampledValue, "format", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format));
  2192. printf("meter error 4\n");
  2193. json_object_object_add(sampledValue, "measurand", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand));
  2194. // json_object_object_add(sampledValue, "phase", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase));
  2195. printf("meter error 5\n");
  2196. json_object_object_add(sampledValue, "location", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location));
  2197. printf("meter error 6\n");
  2198. json_object_object_add(sampledValue, "unit", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit));
  2199. printf("meter error 7\n");
  2200. json_object_array_add(sampledArray, sampledValue);
  2201. printf("meter error 8\n");
  2202. idx_sample=2;
  2203. sampledValue = json_object_new_object();
  2204. /****************************************************(3)Energy.Active.Export.Interval*********************************************/
  2205. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2206. {
  2207. printf("ShmSysConfigAndInfo->SysInfo.ChademoChargingData[%d].Index=%d\n",index, ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index );
  2208. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2209. {
  2210. printf("Chademo : 0\n");
  2211. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy =100.0;
  2212. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );
  2213. }
  2214. }
  2215. for (int index = 0; index < CCS_QUANTITY; index++)
  2216. {
  2217. printf("ShmSysConfigAndInfo->SysInfo.CcsChargingData[%d].Index=%d\n",index, ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index );
  2218. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2219. {
  2220. printf("Ccs : 0\n");
  2221. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy = 100.0;
  2222. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy );
  2223. }
  2224. }
  2225. for (int index = 0; index < GB_QUANTITY; index++)
  2226. {
  2227. printf("ShmSysConfigAndInfo->SysInfo.GbChargingData[%d].Index=%d\n",index, ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index );
  2228. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2229. {
  2230. printf("Gb : 0\n");
  2231. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy = 100.0;
  2232. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy);
  2233. }
  2234. }
  2235. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2236. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2237. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Energy_Active_Export_Interval]);
  2238. // strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1]);
  2239. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2240. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_Wh]);
  2241. printf("meter error 1\n");
  2242. json_object_object_add(sampledValue, "value", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value));
  2243. printf("meter error 2\n");
  2244. json_object_object_add(sampledValue, "context", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context));
  2245. printf("meter error 3\n");
  2246. json_object_object_add(sampledValue, "format", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format));
  2247. printf("meter error 4\n");
  2248. json_object_object_add(sampledValue, "measurand", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand));
  2249. // json_object_object_add(sampledValue, "phase", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase));
  2250. printf("meter error 5\n");
  2251. json_object_object_add(sampledValue, "location", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location));
  2252. printf("meter error 6\n");
  2253. json_object_object_add(sampledValue, "unit", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit));
  2254. printf("meter error 7\n");
  2255. json_object_array_add(sampledArray, sampledValue);
  2256. printf("meter error 8\n");
  2257. idx_sample=3;
  2258. //sampledValue = NULL;
  2259. sampledValue = json_object_new_object();
  2260. /********************************(4)Power.Active.Export************************************************/
  2261. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2262. {
  2263. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2264. {
  2265. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingPower = 100.0;
  2266. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" , ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingPower);
  2267. }
  2268. }
  2269. for (int index = 0; index < CCS_QUANTITY; index++)
  2270. {
  2271. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2272. {
  2273. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingPower = 100.0;
  2274. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" , ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingPower);
  2275. }
  2276. }
  2277. for (int index = 0; index < GB_QUANTITY; index++)
  2278. {
  2279. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2280. {
  2281. ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower = 100.0;
  2282. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" , ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower);
  2283. }
  2284. }
  2285. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2286. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2287. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Power_Active_Export]);
  2288. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1_N]);
  2289. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2290. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_A]);
  2291. printf("meter error 35\n");
  2292. json_object_object_add(sampledValue, "value", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value));
  2293. printf("meter error 36\n");
  2294. json_object_object_add(sampledValue, "context", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context));
  2295. printf("meter error 37\n");
  2296. json_object_object_add(sampledValue, "format", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format));
  2297. printf("meter error 38\n");
  2298. json_object_object_add(sampledValue, "measurand", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand));
  2299. printf("meter error 39\n");
  2300. json_object_object_add(sampledValue, "phase", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase));
  2301. printf("meter error 40\n");
  2302. json_object_object_add(sampledValue, "location", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location));
  2303. printf("meter error 41\n");
  2304. json_object_object_add(sampledValue, "unit", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit));
  2305. printf("meter error 42\n");
  2306. json_object_array_add(sampledArray, sampledValue);
  2307. printf("meter error 43\n");
  2308. #endif
  2309. idx_sample=4;
  2310. //sampledValue = NULL;
  2311. sampledValue = json_object_new_object();
  2312. /***********************************************(5)VOLTAGE******************************************************/
  2313. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2314. {
  2315. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2316. {
  2317. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingVoltage = 80.0;
  2318. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingVoltage );
  2319. }
  2320. }
  2321. for (int index = 0; index < CCS_QUANTITY; index++)
  2322. {
  2323. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2324. {
  2325. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingVoltage = 80.0;
  2326. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingVoltage );
  2327. }
  2328. }
  2329. for (int index = 0; index < GB_QUANTITY; index++)
  2330. {
  2331. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2332. {
  2333. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingVoltage = 80.0;
  2334. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingVoltage );
  2335. }
  2336. }
  2337. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2338. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2339. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[Voltage]);
  2340. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1_N]);
  2341. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2342. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_V]);
  2343. printf("meter error 9\n");
  2344. json_object_object_add(sampledValue, "value", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value));
  2345. printf("meter error 10\n");
  2346. json_object_object_add(sampledValue, "context", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context));
  2347. printf("meter error 11\n");
  2348. json_object_object_add(sampledValue, "format", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format));
  2349. printf("meter error 12\n");
  2350. json_object_object_add(sampledValue, "measurand", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand));
  2351. printf("meter error 13\n");
  2352. json_object_object_add(sampledValue, "phase", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase));
  2353. printf("meter error 14\n");
  2354. json_object_object_add(sampledValue, "location", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location));
  2355. printf("meter error 15\n");
  2356. json_object_object_add(sampledValue, "unit", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit));
  2357. printf("meter error 16\n");
  2358. json_object_array_add(sampledArray, sampledValue);
  2359. if(strcmp(ShmSysConfigAndInfo->SysConfig.ModelName ,"DC") == 0)
  2360. {
  2361. idx_sample=5;
  2362. //sampledValue = NULL;
  2363. sampledValue = json_object_new_object();
  2364. /***********************************************(6)SOC******************************************************/
  2365. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2366. {
  2367. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  2368. {
  2369. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatterySoc = 50;
  2370. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatterySoc );
  2371. }
  2372. }
  2373. for (int index = 0; index < CCS_QUANTITY; index++)
  2374. {
  2375. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  2376. {
  2377. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatterySoc = 50;
  2378. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatterySoc );
  2379. }
  2380. }
  2381. for (int index = 0; index < GB_QUANTITY; index++)
  2382. {
  2383. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  2384. {
  2385. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatterySoc = 50;
  2386. sprintf(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatterySoc );
  2387. }
  2388. }
  2389. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context, ReadingContextStr[ReadingContext_Sample_Periodic]);
  2390. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format, ValueFormatStr[Raw]);
  2391. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand, MeasurandStr[SoC]);
  2392. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase, PhaseStr[L1_N]);
  2393. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location, LocationStr[Location_Outlet]);
  2394. strcpy(ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit,UnitOfMeasureStr[UnitOfMeasure_Percent]);
  2395. printf("meter error 9\n");
  2396. json_object_object_add(sampledValue, "value", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Value));
  2397. printf("meter error 10\n");
  2398. json_object_object_add(sampledValue, "context", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Context));
  2399. printf("meter error 11\n");
  2400. json_object_object_add(sampledValue, "format", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Format));
  2401. printf("meter error 12\n");
  2402. json_object_object_add(sampledValue, "measurand", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Measurand));
  2403. printf("meter error 13\n");
  2404. json_object_object_add(sampledValue, "phase", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Phase));
  2405. printf("meter error 14\n");
  2406. json_object_object_add(sampledValue, "location", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Location));
  2407. printf("meter error 15\n");
  2408. json_object_object_add(sampledValue, "unit", json_object_new_string((const char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idx_transaction].SampledValue[idx_sample].Unit));
  2409. printf("meter error 16\n");
  2410. json_object_array_add(sampledArray, sampledValue);
  2411. }
  2412. //}
  2413. json_object_object_add(transactionData, "sampledValue", sampledArray);
  2414. json_object_array_add(meterValueDataArray, transactionData);
  2415. }
  2416. json_object_object_add(payload, "meterValue", meterValueDataArray);
  2417. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALL));
  2418. random_uuid(guid);
  2419. json_object_array_add(message, json_object_new_string(guid));
  2420. json_object_array_add(message, json_object_new_string("MeterValues"));
  2421. json_object_array_add(message, payload);
  2422. printf("enter sendMeterValuesRequest -3\n");
  2423. printf("before send message=%s\n",json_object_to_json_string(message));
  2424. Send(message);
  2425. if(mapItem == NULL)
  2426. {
  2427. mapItem = malloc(sizeof(data_struct_t));
  2428. printf("mapItem is null\n");
  2429. }
  2430. if(guid == NULL || mapItem->key_string == NULL)
  2431. {
  2432. printf("guid is NULL \n");
  2433. }
  2434. if(mapItem->key_string == NULL)
  2435. {
  2436. printf("mapItem->key_string is NULL\n");
  2437. }
  2438. printf("enter sendMeterValuesRequest -4\n");
  2439. // Put request guid to hash map
  2440. sprintf(mapItem->key_string, "%s", guid);
  2441. sprintf(mapItem->key_value, "MeterValues,%d", (gun_index));
  2442. //sprintf(mapItem->key_value, senstr);//sprintf(mapItem->key_value, "StopTransaction");
  2443. if(hashmap_operation(0,hashMap, mapItem->key_string, mapItem->key_value/*mapItem*/, (void**)(&mapItem)) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
  2444. {
  2445. result = PASS;
  2446. printf("MeterValues mapitem pass");
  2447. }
  2448. strcpy(queuedata, (char*)json_object_to_json_string(message));
  2449. queue_operation(4, guid, queuedata );//addq(guid, queuedata); ---> remove temporally
  2450. printf("enter sendMeterValuesRequest -5\n");
  2451. //addq(guid, (char*)json_object_to_json_string(message));
  2452. #ifdef SystemLogMessage
  2453. DEBUG_INFO(">>>>>MeerValues request\n");
  2454. DEBUG_INFO("Message: %s\n", SendBuffer);
  2455. DEBUG_INFO("After push hash length: %d\n", hashmap_length(hashMap));
  2456. #endif
  2457. json_object_put(message);
  2458. return result;
  2459. }
  2460. //==========================================
  2461. // send confirm routine
  2462. //==========================================
  2463. int sendCancelReservationConfirmation(char *uuid,char *payload)
  2464. {
  2465. int result = FAIL;
  2466. struct json_object *message, *comfirmpayload;
  2467. char guid[37];
  2468. printf("handle CancelReservationRequest\n");
  2469. message = json_object_new_array();
  2470. comfirmpayload = json_object_new_object();
  2471. json_object_object_add(comfirmpayload, "status", json_object_new_string((const char *)payload));
  2472. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2473. json_object_array_add(message, json_object_new_string(uuid));
  2474. json_object_array_add(message, comfirmpayload);
  2475. Send(message);
  2476. json_object_put(message);
  2477. return result;
  2478. }
  2479. int sendChangeAvailabilityConfirmation(char *uuid,char *payload)
  2480. {
  2481. int result = FAIL;
  2482. struct json_object *message, *comfirmpayload;
  2483. char guid[37];
  2484. printf("handle sendChangeAvailabilityConfirmation\n");
  2485. message = json_object_new_array();
  2486. comfirmpayload = json_object_new_object();
  2487. json_object_object_add(comfirmpayload, "status", json_object_new_string((const char *)payload));
  2488. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2489. json_object_array_add(message, json_object_new_string(uuid));
  2490. json_object_array_add(message, comfirmpayload);
  2491. Send(message);
  2492. json_object_put(message);
  2493. return result;
  2494. }
  2495. int sendChangeConfigurationConfirmation(char *uuid,char *payload)
  2496. {
  2497. int result = FAIL;
  2498. struct json_object *message, *comfirmpayload;
  2499. char guid[37];
  2500. printf("handle sendChangeConfigurationConfirmation\n");
  2501. message = json_object_new_array();
  2502. comfirmpayload = json_object_new_object();
  2503. json_object_object_add(comfirmpayload, "status", json_object_new_string((const char *)payload));
  2504. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2505. json_object_array_add(message, json_object_new_string(uuid));
  2506. json_object_array_add(message, comfirmpayload);
  2507. printf("handle sendChangeConfigurationConfirmation -1\n");
  2508. Send(message);
  2509. printf("handle sendChangeConfigurationConfirmation- 2\n");
  2510. json_object_put(message);
  2511. return result;
  2512. }
  2513. int sendClearCacheConfirmation(char *uuid,char *payload)
  2514. {
  2515. int result = FAIL;
  2516. struct json_object *message, *comfirmpayload;
  2517. char guid[37];
  2518. printf("sendClearCacheConfirmation\n");
  2519. message = json_object_new_array();
  2520. comfirmpayload = json_object_new_object();
  2521. json_object_object_add(comfirmpayload, "status", json_object_new_string((const char *)payload));
  2522. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2523. json_object_array_add(message, json_object_new_string(uuid));
  2524. json_object_array_add(message, comfirmpayload);
  2525. Send(message);
  2526. json_object_put(message);
  2527. return result;
  2528. }
  2529. int sendClearChargingProfileConfirmation(char *uuid,char *payload)
  2530. {
  2531. int result = FAIL;
  2532. struct json_object *message, *comfirmpayload;
  2533. char guid[37];
  2534. printf("sendClearChargingProfileConfirmation\n");
  2535. message = json_object_new_array();
  2536. comfirmpayload = json_object_new_object();
  2537. json_object_object_add(comfirmpayload, "status", json_object_new_string((const char *)payload));
  2538. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2539. json_object_array_add(message, json_object_new_string(uuid));
  2540. json_object_array_add(message, comfirmpayload);
  2541. Send(message);
  2542. json_object_put(message);
  2543. return result;
  2544. }
  2545. int sendDataTransferConfirmation(char *uuid,char *payload)
  2546. {
  2547. int result = FAIL;
  2548. struct json_object *obj;
  2549. char guid[37];
  2550. obj = json_tokener_parse(payload);
  2551. printf("handle DataTransferRequest\n");
  2552. return result;
  2553. }
  2554. int sendGetCompositeScheduleConfirmation(char *uuid,char *payload, int connectorIdInt,int nPeriod)
  2555. {
  2556. int result = FAIL;
  2557. struct json_object *message, *comfirmpayload, *chargingSchedule, *sampledArray, *sampledValue;
  2558. printf("handle sendGetCompositeScheduleConfirmation\n");
  2559. message = json_object_new_array();
  2560. comfirmpayload = json_object_new_object();
  2561. chargingSchedule = json_object_new_object();
  2562. json_object_object_add(comfirmpayload, "status", json_object_new_string((const char *)payload));
  2563. json_object_object_add(comfirmpayload, "connectorId ", json_object_new_int(connectorIdInt));
  2564. json_object_object_add(comfirmpayload, "scheduleStart", json_object_new_string((const char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule));
  2565. json_object_object_add(chargingSchedule, "duration", json_object_new_int(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.Duration) );
  2566. json_object_object_add(chargingSchedule, "startSchedule", json_object_new_string((const char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule) );
  2567. json_object_object_add(chargingSchedule, "chargingRateUnit", json_object_new_string((const char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit) );
  2568. sampledArray = json_object_new_array();
  2569. int len = nPeriod;//sizeof(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod)/sizeof(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0]);
  2570. printf("sendGetCompositeScheduleConfirmation nPeriod =%d\n", len);
  2571. for(int idx_sample=0;idx_sample< len;idx_sample++)
  2572. {
  2573. sampledValue = json_object_new_object();
  2574. json_object_object_add(sampledValue, "startPeriod", json_object_new_int(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0].StartPeriod));
  2575. json_object_object_add(sampledValue, "limit", json_object_new_double((double)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0].Limit));
  2576. json_object_object_add(sampledValue, "numberPhases", json_object_new_int(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0].NumberPhases));
  2577. json_object_array_add(sampledArray, sampledValue);
  2578. }
  2579. json_object_object_add(chargingSchedule, "chargingSchedulePeriod", sampledArray);
  2580. json_object_object_add(chargingSchedule, "minChargingRate ", json_object_new_double((double)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.MinChargingRate) );
  2581. json_object_object_add(comfirmpayload, "chargingSchedule", chargingSchedule );
  2582. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2583. json_object_array_add(message, json_object_new_string(uuid));
  2584. json_object_array_add(message, comfirmpayload);
  2585. Send(message);
  2586. json_object_put(message);
  2587. return result;
  2588. }
  2589. int sendGetConfigurationConfirmation(char *uuid)
  2590. {
  2591. int result = FAIL;
  2592. int MaxKeySupported = 0;
  2593. int sentConfigurationNumber= 0;
  2594. struct json_object *message = NULL, *comfirmpayload =NULL, *configurationKeyArray=NULL, *unknownKeyArray=NULL, *sampledValue=NULL;
  2595. printf("handle sendGetConfigurationConfirmation\n");
  2596. message = json_object_new_array();
  2597. comfirmpayload = json_object_new_object();
  2598. configurationKeyArray = json_object_new_array();
  2599. MaxKeySupported = atoi(ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData);
  2600. printf("MaxKeySupported=%d\n",MaxKeySupported);
  2601. // int configurationKeyArraylen = sizeof(ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey)/sizeof(ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[0]);
  2602. // printf("configurationKeyArraylen =%d\n", configurationKeyArraylen);
  2603. FILE *fp = fopen ("configuration.json", "w+"); /* open file for writing */
  2604. if (!fp) { /* validate file is open, or throw error */
  2605. fprintf (stderr, "jsonout() error: file open failed '%s'.\n",
  2606. "configuration.json");
  2607. return;
  2608. }
  2609. fprintf (fp, "{ \"configurationKey\" : ["); /* print header to file */
  2610. //configuration key
  2611. for(int idx_sample=0;idx_sample< MaxKeySupported/*43*/;idx_sample++)
  2612. {
  2613. if(strcmp(ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Key, "")!= 0)
  2614. {
  2615. printf("test test enter add configurationKey\n");
  2616. sampledValue = json_object_new_object();
  2617. printf("ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Key=%s\n",ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Key);
  2618. printf("ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].ReadOnly=%d\n", atoi(ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].ReadOnly));
  2619. printf("ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Value=%s\n",ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Value);
  2620. json_object_object_add(sampledValue, "key", json_object_new_string((const char *)(ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Key)));
  2621. printf("error 1\n");
  2622. json_object_object_add(sampledValue, "readonly", json_object_new_boolean(atoi(ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].ReadOnly)));
  2623. printf("error 2\n");
  2624. json_object_object_add(sampledValue, "value", json_object_new_string((const char *)(ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Value)));
  2625. printf("error 3\n");
  2626. printf("sampledValue=%s\n",json_object_get_string(sampledValue));
  2627. //json_object_array_add(configurationKeyArray, sampledValue);
  2628. printf("idx_sample=%d\n",idx_sample);
  2629. if (sentConfigurationNumber == 0)
  2630. fprintf (fp, " %s", json_object_get_string(sampledValue));
  2631. else
  2632. fprintf (fp, ", %s", json_object_get_string(sampledValue));
  2633. printf("error 4\n");
  2634. json_object_put(sampledValue);
  2635. sentConfigurationNumber = sentConfigurationNumber + 1;
  2636. }
  2637. }
  2638. fprintf (fp, " ] }\n"); /* print closing tag */
  2639. fclose (fp);
  2640. printf("configurationKeyArray=%s\n",json_object_get_string(configurationKeyArray));
  2641. //json_object_object_add(comfirmpayload, "configurationKey", configurationKeyArray );
  2642. //get json object from file
  2643. comfirmpayload = json_object_from_file("configuration.json");
  2644. printf("comfirmpayload=%s\n",json_object_get_string(comfirmpayload));
  2645. printf("error 5\n");
  2646. unknownKeyArray = json_object_new_array();
  2647. printf("error 6\n");
  2648. //sampledValue = NULL;
  2649. //unkown key
  2650. for(int idx_sample=0;idx_sample< UnknownKeynum ;idx_sample++)
  2651. {
  2652. // json_object *jstring1 = json_object_new_string((const char *)((ShmOCPP16Data->GetConfiguration.ResponseUnknownKey + idx_sample)->Item));
  2653. printf("unkown key:%s\n", ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[idx_sample].Item);
  2654. json_object *jstring1 = json_object_new_string((const char *)(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[idx_sample].Item));
  2655. json_object_array_add(unknownKeyArray, jstring1);
  2656. }
  2657. printf("error 7\n");
  2658. if(UnknownKeynum != 0)
  2659. json_object_object_add(comfirmpayload, "unknownKey ", unknownKeyArray );
  2660. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2661. json_object_array_add(message, json_object_new_string(uuid));
  2662. json_object_array_add(message, comfirmpayload);
  2663. printf("error 8\n");
  2664. Send(message);
  2665. //if(UnknownKeynum == 0)
  2666. // json_object_put(unknownKeyArray);
  2667. //json_object_put(configurationKeyArray);
  2668. json_object_put(message);
  2669. system("rm -f configuration.json");
  2670. printf("error 9\n");
  2671. return result;
  2672. }
  2673. int sendGetDiagnosticsConfirmation(char *uuid,char *payload)
  2674. {
  2675. int result = FAIL;
  2676. printf("handle GetDiagnosticsRequest\n");
  2677. struct json_object *message, *comfirmpayload;
  2678. printf("handle sendChangeConfigurationConfirmation\n");
  2679. message = json_object_new_array();
  2680. comfirmpayload = json_object_new_object();
  2681. json_object_object_add(comfirmpayload, "fileName", json_object_new_string((const char *)payload));
  2682. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2683. json_object_array_add(message, json_object_new_string(uuid));
  2684. json_object_array_add(message, comfirmpayload);
  2685. Send(message);
  2686. json_object_put(message);
  2687. return result;
  2688. }
  2689. int sendGetLocalListVersionConfirmation(char *uuid,char *payload)
  2690. {
  2691. int result = FAIL;
  2692. printf("handle GetLocalListVersionRequest\n");
  2693. struct json_object *message, *comfirmpayload;
  2694. message = json_object_new_array();
  2695. comfirmpayload = json_object_new_object();
  2696. json_object_object_add(comfirmpayload, "listVersion", json_object_new_int(ShmOCPP16Data->GetLocalListVersion.ResponseListVersion));
  2697. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2698. json_object_array_add(message, json_object_new_string(uuid));
  2699. json_object_array_add(message, comfirmpayload);
  2700. Send(message);
  2701. json_object_put(message);
  2702. return result;
  2703. }
  2704. int sendRemoteStartConfirmation(char *uuid,char *payload)
  2705. {
  2706. int result = FAIL;
  2707. printf("handleRemoteStartRequest\n");
  2708. struct json_object *message, *comfirmpayload;
  2709. message = json_object_new_array();
  2710. comfirmpayload = json_object_new_object();
  2711. json_object_object_add(comfirmpayload, "status", json_object_new_string(payload));
  2712. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2713. json_object_array_add(message, json_object_new_string(uuid));
  2714. json_object_array_add(message, comfirmpayload);
  2715. Send(message);
  2716. json_object_put(message);
  2717. return result;
  2718. }
  2719. int sendRemoteStopTransactionConfirmation(char *uuid,char *payload)
  2720. {
  2721. int result = FAIL;
  2722. struct json_object *message, *comfirmpayload;
  2723. printf("handleRemoteStopTransactionRequest\n");
  2724. message = json_object_new_array();
  2725. comfirmpayload = json_object_new_object();
  2726. json_object_object_add(comfirmpayload, "status", json_object_new_string(payload));
  2727. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2728. json_object_array_add(message, json_object_new_string(uuid));
  2729. json_object_array_add(message, comfirmpayload);
  2730. Send(message);
  2731. json_object_put(message);
  2732. return result;
  2733. }
  2734. int sendReserveNowTransactionConfirmation(char *uuid,char *payload)
  2735. {
  2736. int result = FAIL;
  2737. struct json_object *message, *comfirmpayload;
  2738. printf("sendReserveNowTransactionConfirmation\n");
  2739. message = json_object_new_array();
  2740. comfirmpayload = json_object_new_object();
  2741. json_object_object_add(comfirmpayload, "status", json_object_new_string(payload));
  2742. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2743. json_object_array_add(message, json_object_new_string(uuid));
  2744. json_object_array_add(message, comfirmpayload);
  2745. Send(message);
  2746. json_object_put(message);
  2747. return result;
  2748. }
  2749. int sendResetConfirmation(char *uuid,char *payload)
  2750. {
  2751. int result = FAIL;
  2752. struct json_object *message, *comfirmpayload;
  2753. printf("sendResetConfirmation\n");
  2754. message = json_object_new_array();
  2755. comfirmpayload = json_object_new_object();
  2756. json_object_object_add(comfirmpayload, "status", json_object_new_string((const char *)payload));
  2757. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2758. json_object_array_add(message, json_object_new_string(uuid));
  2759. json_object_array_add(message, comfirmpayload);
  2760. Send(message);
  2761. json_object_put(message);
  2762. return result;
  2763. }
  2764. int sendSendLocalListConfirmation(char *uuid,char *payload)
  2765. {
  2766. int result = FAIL;
  2767. struct json_object *message, *comfirmpayload;
  2768. printf("handle sendSendLocalListConfirmation\n");
  2769. message = json_object_new_array();
  2770. comfirmpayload = json_object_new_object();
  2771. json_object_object_add(comfirmpayload, "status", json_object_new_string((const char *)payload));
  2772. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2773. json_object_array_add(message, json_object_new_string(uuid));
  2774. json_object_array_add(message, comfirmpayload);
  2775. Send(message);
  2776. json_object_put(message);
  2777. return result;
  2778. }
  2779. int sendSetChargingProfileConfirmation(char *uuid,char *payload)
  2780. {
  2781. int result = FAIL;
  2782. printf("handleSetChargingProfileRequest\n");
  2783. struct json_object *message, *comfirmpayload;
  2784. message = json_object_new_array();
  2785. comfirmpayload = json_object_new_object();
  2786. json_object_object_add(comfirmpayload, "status", json_object_new_string((const char *)payload));
  2787. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2788. json_object_array_add(message, json_object_new_string(uuid));
  2789. json_object_array_add(message, comfirmpayload);
  2790. Send(message);
  2791. json_object_put(message);
  2792. return result;
  2793. }
  2794. int sendTriggerMessageConfirmation(char *uuid,char *payload)
  2795. {
  2796. int result = FAIL;
  2797. printf("sendTriggerMessageConfirmation\n");
  2798. struct json_object *message, *comfirmpayload;
  2799. message = json_object_new_array();
  2800. comfirmpayload = json_object_new_object();
  2801. json_object_object_add(comfirmpayload, "status", json_object_new_string((const char *)payload));
  2802. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2803. json_object_array_add(message, json_object_new_string(uuid));
  2804. json_object_array_add(message, comfirmpayload);
  2805. Send(message);
  2806. json_object_put(message);
  2807. return result;
  2808. }
  2809. int sendUnlockConnectorConfirmation(char *uuid,char *payload)
  2810. {
  2811. int result = FAIL;
  2812. printf("sendUnlockConnectorConfirmation\n");
  2813. struct json_object *message, *comfirmpayload;
  2814. message = json_object_new_array();
  2815. comfirmpayload = json_object_new_object();
  2816. json_object_object_add(comfirmpayload, "status", json_object_new_string((const char *)payload));
  2817. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2818. json_object_array_add(message, json_object_new_string(uuid));
  2819. json_object_array_add(message, comfirmpayload);
  2820. Send(message);
  2821. json_object_put(message);
  2822. return result;
  2823. }
  2824. int sendUpdateFirmwareConfirmation(char *uuid)
  2825. {
  2826. int result = FAIL;
  2827. printf("sendUpdateFirmwareConfirmation\n");
  2828. struct json_object *message, *comfirmpayload;
  2829. message = json_object_new_array();
  2830. comfirmpayload = json_object_new_object();
  2831. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLRESULT));
  2832. json_object_array_add(message, json_object_new_string(uuid));
  2833. json_object_array_add(message, comfirmpayload);
  2834. Send(message);
  2835. json_object_put(message);
  2836. return result;
  2837. }
  2838. //==========================================
  2839. // send CallError routine
  2840. //==========================================
  2841. void SendCallError(char *uniqueId, char *action, char *errorCode, char *errorDescription)
  2842. {
  2843. #ifdef SystemLogMessage
  2844. DEBUG_INFO("An error occurred. Sending this information: uniqueId {}: action: {}, errorCore: {}, errorDescription: {}\n",
  2845. uniqueId, action, errorCode, errorDescription);
  2846. #endif
  2847. printf("SendCallError\n");
  2848. struct json_object *message/*, *comfirmpayload*/;
  2849. message = json_object_new_array();
  2850. //comfirmpayload = json_object_new_object();
  2851. json_object_array_add(message, json_object_new_int(MESSAGE_TYPE_CALLERROR));
  2852. json_object_array_add(message, json_object_new_string(uniqueId));
  2853. json_object_array_add(message, json_object_new_string(errorCode));
  2854. json_object_array_add(message, json_object_new_string(errorDescription));
  2855. json_object_array_add(message, json_object_new_string("{}"));
  2856. Send(message);
  2857. json_object_put(message);
  2858. }
  2859. //==========================================
  2860. // Handle server request routine Start
  2861. //==========================================
  2862. #define GUN_NUM 1
  2863. int handleCancelReservationRequest(char *uuid, char *payload)
  2864. {
  2865. int result = FAIL;
  2866. int gunNO = 0;
  2867. struct json_object *obj, *reservationId;
  2868. int reservationIdInt =0;
  2869. char comfirmstr[20];
  2870. obj = json_tokener_parse(payload);
  2871. printf("handle CancelReservationRequest\n");
  2872. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  2873. reservationId = json_object_object_get(obj, "reservationId");
  2874. reservationIdInt = json_object_get_int(reservationId);
  2875. memset(comfirmstr, 0, sizeof comfirmstr);
  2876. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Rejected]);
  2877. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  2878. //check Transaction active
  2879. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2880. {
  2881. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId == reservationIdInt)
  2882. {
  2883. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
  2884. sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index].ResponseStatus, "%s", comfirmstr );
  2885. gunNO = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index;
  2886. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  2887. }
  2888. }
  2889. for (int index = 0; index < CCS_QUANTITY; index++)
  2890. {
  2891. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId == reservationIdInt)
  2892. {
  2893. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
  2894. sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index].ResponseStatus, "%s", comfirmstr );
  2895. gunNO = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index;
  2896. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  2897. }
  2898. }
  2899. for (int index = 0; index < GB_QUANTITY; index++)
  2900. {
  2901. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId == reservationIdInt)
  2902. {
  2903. sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] );
  2904. sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index].ResponseStatus, "%s", comfirmstr );
  2905. gunNO = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index;
  2906. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1;
  2907. }
  2908. }
  2909. // Fill in ocpp packet uuid
  2910. strcpy(ShmOCPP16Data->CancelReservation[gunNO].guid, uuid);
  2911. json_object_put(obj);
  2912. #if 0 // CSU Will do it.
  2913. sendCancelReservationConfirmation(uuid, comfirmstr);
  2914. ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationConf = 1;
  2915. #endif
  2916. return result;
  2917. }
  2918. int handleChangeAvailabilityRequest(char *uuid, char *payload)
  2919. {
  2920. int result = FAIL;
  2921. int gunIndex = 0;
  2922. struct json_object *obj, *connectorId, *type;
  2923. char comfirmstr[20];
  2924. int specificId = FALSE;
  2925. obj = json_tokener_parse(payload);
  2926. printf("handle ChangeAvailabilityRequest\n");
  2927. connectorId = json_object_object_get(obj, "connectorId");
  2928. type = json_object_object_get(obj, "type");
  2929. gunIndex = json_object_get_int(connectorId);
  2930. ShmOCPP16Data->ChangeAvailability[gunIndex - 1].ConnectorId= gunIndex;
  2931. sprintf((char *)ShmOCPP16Data->ChangeAvailability[gunIndex - 1].Type, "%s", json_object_get_string(type) );
  2932. memset(comfirmstr, 0, sizeof comfirmstr);
  2933. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  2934. ShmOCPP16Data->CsMsg.bits[gunIndex - 1].ChangeAvailabilityReq = 1;
  2935. if((gunIndex == 0) || ((gunIndex - 1) < (CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)))
  2936. {
  2937. specificId = TRUE;
  2938. }
  2939. if(specificId == FALSE)
  2940. goto end;
  2941. /*
  2942. enum _SYSTEM_STATUS
  2943. {
  2944. S_BOOTING = 0,
  2945. S_IDLE, = 1
  2946. S_AUTHORIZING, =2
  2947. S_REASSIGN_CHECK, =3
  2948. S_REASSIGN, =4
  2949. S_PRECHARGE, =5
  2950. S_PREPARING_FOR_EV, =6
  2951. S_PREPARING_FOR_EVSE, =7
  2952. S_CHARGING, =8
  2953. S_TERMINATING, =9
  2954. S_COMPLETE, =10
  2955. S_ALARM, =11
  2956. S_FAULT =12
  2957. }
  2958. */
  2959. if(strcmp((const char *)ShmOCPP16Data->ChangeAvailability[gunIndex - 1].Type, AvailabilityTypeStr[Inoperative]) == 0)
  2960. {
  2961. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  2962. //check Transaction active
  2963. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  2964. {
  2965. if ((gunIndex == 0) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (gunIndex - 1)))
  2966. {
  2967. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 5) // S_PRECHARGE
  2968. {
  2969. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  2970. }
  2971. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 8) // S_CHARGING
  2972. {
  2973. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
  2974. }
  2975. else
  2976. {
  2977. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  2978. }
  2979. goto end;
  2980. }
  2981. }
  2982. for (int index = 0; index < CCS_QUANTITY; index++)
  2983. {
  2984. if ((gunIndex == 0)|| (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (gunIndex - 1)))
  2985. {
  2986. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 5)// S_PRECHARGE
  2987. {
  2988. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  2989. }
  2990. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 8) // S_CHARGING
  2991. {
  2992. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
  2993. }
  2994. else
  2995. {
  2996. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  2997. }
  2998. goto end;
  2999. }
  3000. }
  3001. for (int index = 0; index < GB_QUANTITY; index++)
  3002. {
  3003. if ((gunIndex == 0)||(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (gunIndex - 1)))
  3004. {
  3005. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 5) // S_PRECHARGE
  3006. {
  3007. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3008. }
  3009. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8) // S_CHARGING
  3010. {
  3011. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] );
  3012. }
  3013. else
  3014. {
  3015. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3016. }
  3017. goto end;
  3018. }
  3019. }
  3020. }
  3021. if(strcmp((const char *)ShmOCPP16Data->ChangeAvailability[gunIndex - 1].Type, AvailabilityTypeStr[Operative]) == 0)
  3022. {
  3023. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  3024. //check Transaction active
  3025. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  3026. {
  3027. if (((gunIndex == 0)|| (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (gunIndex - 1))) &&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != 12)) //S_FAULT
  3028. {
  3029. ShmOCPP16Data->CsMsg.bits[gunIndex - 1].ChangeAvailabilityReq = 1;
  3030. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3031. goto end;
  3032. }
  3033. }
  3034. for (int index = 0; index < CCS_QUANTITY; index++)
  3035. {
  3036. if (((gunIndex == 0)|| (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (gunIndex - 1)))&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != 12)) //S_FAULT
  3037. {
  3038. ShmOCPP16Data->CsMsg.bits[gunIndex - 1].ChangeAvailabilityReq = 1;
  3039. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3040. goto end;
  3041. }
  3042. }
  3043. for (int index = 0; index < GB_QUANTITY; index++)
  3044. {
  3045. if (((gunIndex == 0)||(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (gunIndex - 1)))&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != 12)) //S_FAULT
  3046. {
  3047. ShmOCPP16Data->CsMsg.bits[gunIndex - 1].ChangeAvailabilityReq = 1;
  3048. sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] );
  3049. goto end;
  3050. }
  3051. }
  3052. //sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
  3053. }
  3054. end:
  3055. json_object_put(obj);
  3056. sprintf((char *)ShmOCPP16Data->ChangeAvailability[gunIndex - 1].ResponseStatus, "%s", comfirmstr );
  3057. sendChangeAvailabilityConfirmation(uuid, comfirmstr);
  3058. //ShmOCPP16Data->CsMsg.bits[gunIndex - 1].ChangeAvailabilityConf = 1;
  3059. return result;
  3060. }
  3061. int handleChangeConfigurationRequest(char *uuid, char *payload)
  3062. {
  3063. int result = FAIL;
  3064. char comfirmstr[20];
  3065. printf("handle ChangeConfigurationRequest\n");
  3066. struct json_object *obj, *key, *value;
  3067. char *keystr, *valuestr;
  3068. obj = json_tokener_parse(payload);
  3069. key = json_object_object_get(obj, "key");
  3070. value = json_object_object_get(obj, "value");
  3071. keystr= json_object_get_string(key);
  3072. valuestr = json_object_get_string(value);
  3073. if((uuid==NULL) || (payload ==NULL) )
  3074. {
  3075. sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Rejected] );
  3076. }
  3077. else
  3078. {
  3079. int status = setKeyValue(keystr, valuestr);
  3080. switch(status)
  3081. {
  3082. case ConfigurationStatus_Accepted:
  3083. sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Accepted]);
  3084. ShmOCPP16Data->MsMsg.bits.ChangeConfigurationReq = 1;
  3085. break;
  3086. case ConfigurationStatus_Rejected:
  3087. sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Rejected] );
  3088. break;
  3089. case RebootRequired:
  3090. sprintf(comfirmstr, "%s", ConfigurationStatusStr[RebootRequired]);
  3091. break;
  3092. case NotSupported:
  3093. sprintf(comfirmstr, "%s", ConfigurationStatusStr[NotSupported] );
  3094. break;
  3095. default:
  3096. break;
  3097. }
  3098. }
  3099. if(errno >=1)
  3100. {
  3101. sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Rejected] );
  3102. fprintf(stderr,"%d %s\\n",errno,strerror(errno));
  3103. }
  3104. //confirmation.setStatus(ConfigurationStatus.Rejected);
  3105. json_object_put(obj);
  3106. sendChangeConfigurationConfirmation(uuid, comfirmstr);
  3107. ShmOCPP16Data->MsMsg.bits.ChangeConfigurationConf = 1;
  3108. return result;
  3109. }
  3110. int handleClearCacheRequest(char *uuid, char *payload)
  3111. {
  3112. int result = FAIL;
  3113. char comfirmstr[20];
  3114. int fd;
  3115. printf("handle ClearCacheRequest\n");
  3116. /* ?��?一个�?�*/
  3117. fd = open(AuthorizationCache_JSON,O_RDWR);
  3118. if(fd < 0)
  3119. {
  3120. printf("open AuthorizationCache file failed\n");
  3121. sprintf(comfirmstr, "%s", ClearCacheStatusStr[ClearCacheStatus_Rejected] );
  3122. }
  3123. else
  3124. {
  3125. printf("open AuthorizationCache file successful\n");
  3126. /* 清空?�件 */
  3127. ftruncate(fd,0);
  3128. /* ?�新设置?�件?�移??*/
  3129. lseek(fd,0,SEEK_SET);
  3130. close(fd);
  3131. sprintf(comfirmstr, "%s", ClearCacheStatusStr[ClearCacheStatus_Accepted] );
  3132. //ShmOCPP16Data->MsMsg.bits.ClearCacheReq = 1; //OCPP handle byself
  3133. }
  3134. sendClearCacheConfirmation(uuid, comfirmstr);
  3135. //ShmOCPP16Data->MsMsg.bits.ClearCacheConf = 1; //OCPP handle byself
  3136. return result;
  3137. }
  3138. int handleClearChargingProfileRequest(char *uuid, char *payload)
  3139. {
  3140. int result = FAIL;
  3141. struct json_object *obj, *connectorId, *csChargingProfiles, *chargingProfileId, *stackLevel, *chargingProfilePurpose;
  3142. int connectorIdInt, chargingProfileIdInt, stackLevelInt;
  3143. const char*chargingProfilePurposeStr;
  3144. struct json_object *tempobj, *tempconnectorId, *tempcsChargingProfiles, *tempchargingProfileId, *tempstackLevel, *tempchargingProfilePurpose;
  3145. int tempconnectorIdInt, tempchargingProfileIdInt, tempstackLevelInt;
  3146. char *tempchargingProfilePurposeStr;
  3147. char fname[200];
  3148. json_object *test_obj = NULL;
  3149. json_object *tmp_obj = NULL;
  3150. struct array_list *json_list;
  3151. struct json_object *jsonitem;
  3152. char comfirmstr[20];
  3153. size_t n_friends;
  3154. int clearflag = FALSE;
  3155. FILE *fptr1, *fptr2;
  3156. char temp[] = "temp.json";
  3157. struct json_object *newHeatMap = json_object_new_array();
  3158. obj = json_tokener_parse(payload);
  3159. printf("handle ClearChargingProfileRequest\n");
  3160. connectorId = json_object_object_get(obj, "connectorId");
  3161. chargingProfileId = json_object_object_get(obj, "id");
  3162. stackLevel = json_object_object_get(obj, "stackLevel");
  3163. chargingProfilePurpose = json_object_object_get(obj, "chargingProfilePurpose");
  3164. printf("handle ClearChargingProfileRequest error 1\n");
  3165. if(connectorId != NULL)
  3166. connectorIdInt = json_object_get_int(connectorId);
  3167. if(chargingProfileId != NULL)
  3168. chargingProfileIdInt = json_object_get_int(chargingProfileId);
  3169. if(stackLevel != NULL)
  3170. stackLevelInt = json_object_get_int(stackLevel);
  3171. if(chargingProfilePurpose != NULL)
  3172. chargingProfilePurposeStr = json_object_get_string(chargingProfilePurpose);
  3173. if(connectorId != NULL)
  3174. {
  3175. switch(connectorIdInt)
  3176. {
  3177. case 0:
  3178. strcpy(fname, ChargingProfile_0_JSON );
  3179. break;
  3180. case 1:
  3181. strcpy(fname, ChargingProfile_1_JSON );
  3182. break;
  3183. case 2:
  3184. strcpy(fname, ChargingProfile_2_JSON );
  3185. break;
  3186. default:
  3187. strcpy(fname, ChargingProfile_0_JSON );
  3188. break;
  3189. }
  3190. }
  3191. else
  3192. {
  3193. strcpy(fname, ChargingProfile_0_JSON );
  3194. }
  3195. fptr1 = fopen(fname, "r");
  3196. if (!fptr1)
  3197. {
  3198. //file not exist
  3199. printf("Unable to open the input file!!\n");
  3200. fptr1 = fopen(fname, "w+");
  3201. }
  3202. fclose(fptr1);
  3203. if(connectorId != NULL && (connectorIdInt != 0) && ( (connectorIdInt-1) > (CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY) ) )
  3204. {
  3205. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Unknown] );
  3206. goto end;
  3207. }
  3208. //get json object from file
  3209. test_obj = json_object_from_file(fname);
  3210. if(json_object_get_type(test_obj) == json_type_array)
  3211. {
  3212. //
  3213. if(connectorId == NULL || connectorIdInt == 0 )
  3214. {
  3215. //clear the whole contents of a file in C
  3216. fclose(fopen(ChargingProfile_0_JSON, "w"));
  3217. fclose(fopen(ChargingProfile_1_JSON, "w"));
  3218. fclose(fopen(ChargingProfile_2_JSON, "w"));
  3219. }
  3220. else
  3221. {
  3222. n_friends = json_object_array_length(test_obj);
  3223. printf("Found %lu friends\n",n_friends);
  3224. for(int i=0;i<n_friends;i++)
  3225. {
  3226. jsonitem = json_object_array_get_idx(test_obj, i);
  3227. printf("%lu. %s\n",i+1,json_object_get_string(jsonitem));
  3228. tempconnectorId = json_object_object_get(jsonitem, "connectorId");
  3229. tempcsChargingProfiles = json_object_object_get(jsonitem, "csChargingProfiles");
  3230. tempchargingProfileId = json_object_object_get(tempcsChargingProfiles, "chargingProfileId");
  3231. tempstackLevel = json_object_object_get(tempcsChargingProfiles, "stackLevel");
  3232. tempchargingProfilePurpose = json_object_object_get(tempcsChargingProfiles, "chargingProfilePurpose");
  3233. tempconnectorIdInt = json_object_get_int(tempconnectorId);
  3234. tempchargingProfileIdInt = json_object_get_int(tempchargingProfileId);
  3235. tempstackLevelInt = json_object_get_int(tempstackLevel);
  3236. tempchargingProfilePurposeStr = (char *)json_object_get_string(tempchargingProfilePurpose);
  3237. if(chargingProfileId != NULL)
  3238. {
  3239. if(tempchargingProfileIdInt == chargingProfileIdInt)
  3240. {
  3241. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
  3242. clearflag = TRUE;
  3243. continue;
  3244. }
  3245. else
  3246. {
  3247. json_object_array_add(newHeatMap, jsonitem);
  3248. }
  3249. }
  3250. else
  3251. {
  3252. if((tempconnectorIdInt == connectorIdInt) && ((tempchargingProfileIdInt == chargingProfileIdInt) || (tempstackLevelInt == stackLevelInt) && (strcmp(tempchargingProfilePurposeStr, chargingProfilePurposeStr) == 0)))
  3253. {
  3254. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] );
  3255. clearflag = TRUE;
  3256. continue;
  3257. }
  3258. else
  3259. {
  3260. json_object_array_add(newHeatMap, jsonitem);
  3261. }
  3262. }
  3263. }
  3264. if(clearflag == FALSE)
  3265. {
  3266. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Unknown] );
  3267. goto end;
  3268. }
  3269. }
  3270. FILE *fp;
  3271. fp=fopen(temp,"w");
  3272. fclose(fp);
  3273. remove(fname);
  3274. rename(temp, fname);
  3275. json_object_to_file(fname, newHeatMap);
  3276. }
  3277. else
  3278. {
  3279. sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Unknown] );
  3280. }
  3281. end:
  3282. json_object_put(obj);
  3283. json_object_put(test_obj);
  3284. sendClearChargingProfileConfirmation(uuid, comfirmstr);
  3285. return result;
  3286. }
  3287. int handleDataTransferRequest(char *uuid, char *payload)
  3288. {
  3289. int result = FAIL;
  3290. struct json_object *obj;
  3291. obj = json_tokener_parse(payload);
  3292. printf("handle DataTransferRequest\n");
  3293. return result;
  3294. }
  3295. long long diff_tm(struct tm *a, struct tm *b) {
  3296. return a->tm_sec - b->tm_sec
  3297. + 60LL * (a->tm_min - b->tm_min)
  3298. + 3600LL * (a->tm_hour - b->tm_hour)
  3299. + 86400LL * (a->tm_yday - b->tm_yday)
  3300. + (a->tm_year - 70) * 31536000LL
  3301. - (a->tm_year - 69) / 4 * 86400LL
  3302. + (a->tm_year - 1) / 100 * 86400LL
  3303. - (a->tm_year + 299) / 400 * 86400LL
  3304. - (b->tm_year - 70) * 31536000LL
  3305. + (b->tm_year - 69) / 4 * 86400LL
  3306. - (b->tm_year - 1) / 100 * 86400LL
  3307. + (b->tm_year + 299) /400 * 86400LL;
  3308. }
  3309. int handleGetCompositeScheduleRequest(char *uuid, char *payload)
  3310. {
  3311. int result = FAIL;
  3312. struct json_object *obj, *connectorId, *duration, *chargingRateUnit;
  3313. int connectorIdInt, durationInt;
  3314. const char*chargingRateUnitStr;
  3315. struct json_object *tempobj, *tempconnectorId, *tempcsChargingProfiles, *tempvalidFrom,*tempChargingSchedule, *tempstartSchedule, *tempchargingSchedulePeriod, *tempminChargingRate;
  3316. int tempconnectorIdInt, tempdurationInt;
  3317. float tempminChargingRateFloat = 0.0;
  3318. char *tempvalidFromStr,*tempchargingRateUnitStr, *tempstartScheduleStr;
  3319. char fname[200];
  3320. json_object *test_obj = NULL;
  3321. json_object *tmp_obj = NULL;
  3322. struct array_list *json_list;
  3323. struct json_object *jsonitem;
  3324. char comfirmstr[20];
  3325. size_t n_friends;
  3326. float totallimit =0.0;
  3327. float MinChargingRate =0.0;
  3328. int clearflag = FALSE;
  3329. int n_periods = 0;
  3330. int nPeriod = 0;
  3331. FILE *fptr1, *fptr2;
  3332. char temp[] = "temp.json";
  3333. struct json_object *newHeatMap = json_object_new_array();
  3334. printf("handle GetCompositeScheduleRequest\n");
  3335. obj = json_tokener_parse(payload);
  3336. connectorId = json_object_object_get(obj, "connectorId");
  3337. duration = json_object_object_get(obj, "duration");
  3338. chargingRateUnit = json_object_object_get(obj, "chargingRateUnit");
  3339. connectorIdInt = json_object_get_int(connectorId);
  3340. durationInt = json_object_get_int(duration);
  3341. if(chargingRateUnit != NULL)
  3342. chargingRateUnitStr = json_object_get_string(chargingRateUnit);
  3343. // current time
  3344. time_t t = time(NULL);
  3345. memset(ShmOCPP16Data->GetCompositeSchedule, 0, sizeof(struct StructChargingSchedulePeriod)* (CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY) );
  3346. if(connectorIdInt==0) // connectorId is 0
  3347. {
  3348. strcpy(fname, ChargingProfile_0_JSON );
  3349. test_obj = NULL;
  3350. test_obj = json_object_from_file(fname);
  3351. n_friends = 0;
  3352. n_friends = json_object_array_length(test_obj);
  3353. printf("Found %lu friends\n",n_friends);
  3354. for(int i=0;i<n_friends;i++)
  3355. {
  3356. printf("handle GetCompositeScheduleRequest -1\n");
  3357. jsonitem = json_object_array_get_idx(test_obj, i);
  3358. printf("%lu. %s\n",i+1,json_object_get_string(jsonitem));
  3359. printf("handle GetCompositeScheduleRequest -2\n");
  3360. tempconnectorId = json_object_object_get(jsonitem, "connectorId");
  3361. tempcsChargingProfiles = json_object_object_get(jsonitem, "csChargingProfiles");
  3362. tempvalidFrom = json_object_object_get(tempcsChargingProfiles, "validFrom");
  3363. tempChargingSchedule = json_object_object_get(tempcsChargingProfiles, "chargingSchedule");
  3364. printf("handle GetCompositeScheduleRequest -3\n");
  3365. tempstartSchedule = json_object_object_get(tempChargingSchedule, "startSchedule");
  3366. tempminChargingRate = json_object_object_get(tempstartSchedule, "minChargingRate");
  3367. printf("handle GetCompositeScheduleRequest -4n");
  3368. tempminChargingRateFloat = (float)json_object_get_double(tempminChargingRate);
  3369. tempchargingSchedulePeriod = json_object_object_get(tempChargingSchedule, "chargingSchedulePeriod");
  3370. tempstartScheduleStr = (char *)json_object_get_string(tempstartSchedule);
  3371. printf("handle GetCompositeScheduleRequest -5\n");
  3372. tempvalidFromStr = (char *)json_object_get_string(tempvalidFrom);
  3373. double diff_t;
  3374. struct tm tp;
  3375. printf("tempstartScheduleStr 1 : %s\n", tempstartScheduleStr);
  3376. printf("handle GetCompositeScheduleRequest -6\n");
  3377. printf("tempstartScheduleStr 2 : %s\n", tempstartScheduleStr);
  3378. strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  3379. printf("handle GetCompositeScheduleRequest -6 -1\n");
  3380. tp.tm_isdst = -1;
  3381. printf("handle GetCompositeScheduleRequest -6 -2\n");
  3382. time_t utc = mktime(&tp);
  3383. printf("handle GetCompositeScheduleRequest -7\n");
  3384. struct tm e0 = { .tm_year = tp.tm_year, .tm_mday = tp.tm_mday, .tm_mon = tp.tm_mon, .tm_hour = tp.tm_hour, .tm_isdst = -1 };
  3385. time_t pseudo = mktime(&e0);
  3386. struct tm e1 = *gmtime(&pseudo);
  3387. e0.tm_sec += utc - diff_tm(&e1, &e0);
  3388. time_t local = e0.tm_sec;
  3389. printf("handle GetCompositeScheduleRequest -8\n");
  3390. // ?�到��??�起始�???- chargingScedule起�??��?
  3391. diff_t = difftime(t, local);
  3392. n_periods = json_object_array_length(tempchargingSchedulePeriod);
  3393. printf("handle GetCompositeScheduleRequest -9\n");
  3394. for(int i=0;i<n_periods;i++)
  3395. {
  3396. struct json_object *tempstartPeriod, *templimit, *tempnumberPhases;
  3397. jsonitem = json_object_array_get_idx(tempchargingSchedulePeriod, i);
  3398. printf("%lu. %s\n",i+1,json_object_get_string(jsonitem));
  3399. tempstartPeriod = json_object_object_get(jsonitem, "startPeriod");
  3400. templimit = json_object_object_get(jsonitem, "limit");
  3401. tempnumberPhases = json_object_object_get(jsonitem, "numberPhases");
  3402. int tempstartPeriodInt = json_object_get_int(tempstartPeriod);
  3403. if(diff_t >= 0)
  3404. {
  3405. diff_t = ((diff_t - tempstartPeriodInt) <=0) ? 0 : (diff_t - tempstartPeriodInt);
  3406. printf("diff_t=%d\n",diff_t);
  3407. }
  3408. float temp = (float)json_object_get_double(templimit);
  3409. if(diff_t == 0)
  3410. {
  3411. //loat temp = (float)json_object_get_double(templimit);
  3412. if(totallimit < temp)
  3413. {
  3414. totallimit = temp;
  3415. printf("totallimit=%d\n",totallimit);
  3416. }
  3417. }
  3418. }
  3419. if(MinChargingRate < tempminChargingRateFloat)
  3420. MinChargingRate = tempminChargingRateFloat;
  3421. }
  3422. printf("handle GetCompositeScheduleRequest -10\n");
  3423. /* Define temporary variables */
  3424. struct tm *gtime;
  3425. time_t now;
  3426. char buf[28];
  3427. /* Read the current system time */
  3428. printf("handle GetCompositeScheduleRequest -11\n");
  3429. time(&now);
  3430. printf("handle GetCompositeScheduleRequest -12\n");
  3431. /* Convert the system time to GMT (now UTC) */
  3432. gtime = gmtime(&now);
  3433. printf("handle GetCompositeScheduleRequest -13\n");
  3434. strftime(buf, 28, "%Y-%m-%dT%H:%M:%SZ", gtime);
  3435. printf("handle GetCompositeScheduleRequest -14\n");
  3436. // make .conf
  3437. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule,buf);
  3438. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod = (struct StructChargingSchedulePeriod *) malloc(sizeof(struct StructChargingSchedulePeriod)* n_periods);
  3439. memset(ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod, 0, sizeof(struct StructChargingSchedulePeriod)* n_periods);
  3440. nPeriod = 1;
  3441. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0].Limit = 100.0;//totallimit;
  3442. printf("(1)ChargingSchedulePeriod[0].Limit =%d\n",ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0].Limit);
  3443. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0].NumberPhases = 3.0;
  3444. printf("(2)NumberPhases =%f\n",ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0].NumberPhases);
  3445. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0].StartPeriod = 0;
  3446. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.Duration = durationInt;
  3447. sleep(10);
  3448. printf("1.totallimit =%d\n",totallimit);
  3449. printf("2. totallimit =%d\n",ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0].Limit);
  3450. printf("NumberPhases =%f\n",ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0].NumberPhases);
  3451. printf("StartPeriod = %d\n",ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[0].StartPeriod);
  3452. printf("durationInt = %d\n",ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.Duration);
  3453. printf("handle GetCompositeScheduleRequest -14 -1\n");
  3454. if(chargingRateUnitStr != NULL)
  3455. {
  3456. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit, chargingRateUnitStr );
  3457. }
  3458. else
  3459. {
  3460. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit, "" );
  3461. }
  3462. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.MinChargingRate = MinChargingRate;
  3463. sprintf(comfirmstr, "%s", GetCompositeScheduleStatusStr[GetCompositeScheduleStatus_Accepted] );
  3464. printf("handle GetCompositeScheduleRequest -15\n");
  3465. }
  3466. else if ((connectorIdInt > 0)&&((connectorIdInt -1) < (CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)) )
  3467. {
  3468. //connectorId is specific Id
  3469. switch(connectorIdInt)
  3470. {
  3471. case 0:
  3472. strcpy(fname, ChargingProfile_0_JSON );
  3473. break;
  3474. case 1:
  3475. strcpy(fname, ChargingProfile_1_JSON );
  3476. break;
  3477. case 2:
  3478. strcpy(fname, ChargingProfile_2_JSON );
  3479. break;
  3480. default:
  3481. strcpy(fname, ChargingProfile_0_JSON );
  3482. break;
  3483. }
  3484. //get json object from file
  3485. test_obj = json_object_from_file(fname);
  3486. n_friends = 0;
  3487. n_friends = json_object_array_length(test_obj);
  3488. printf("Found %lu friends\n",n_friends);
  3489. for(int i=0;i<n_friends;i++)
  3490. {
  3491. printf("GetCompositeScheduleRequest -1\n");
  3492. jsonitem = json_object_array_get_idx(test_obj, i);
  3493. printf("%lu. %s\n",i+1,json_object_get_string(jsonitem));
  3494. tempconnectorId = json_object_object_get(jsonitem, "connectorId");
  3495. tempcsChargingProfiles = json_object_object_get(jsonitem, "csChargingProfiles");
  3496. tempvalidFrom = json_object_object_get(tempcsChargingProfiles, "validFrom");
  3497. tempChargingSchedule = json_object_object_get(tempcsChargingProfiles, "ChargingSchedule");
  3498. tempstartSchedule = json_object_object_get(tempChargingSchedule, "startSchedule");
  3499. tempminChargingRate = json_object_object_get(tempChargingSchedule, "minChargingRate");
  3500. tempminChargingRateFloat = (float)json_object_get_double(tempminChargingRate);
  3501. tempchargingSchedulePeriod = json_object_object_get(tempChargingSchedule, "chargingSchedulePeriod");
  3502. tempstartScheduleStr =(char *) json_object_get_string(tempstartSchedule);
  3503. printf("GetCompositeScheduleRequest -2\n");
  3504. tempvalidFromStr = (char *)json_object_get_string(tempvalidFrom);
  3505. double diff_t;
  3506. struct tm tp;
  3507. strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
  3508. tp.tm_isdst = -1;
  3509. time_t utc = mktime(&tp);
  3510. struct tm e0 = { .tm_year = tp.tm_year, .tm_mday = tp.tm_mday, .tm_mon = tp.tm_mon, .tm_hour = tp.tm_hour, .tm_isdst = -1 };
  3511. time_t pseudo = mktime(&e0);
  3512. struct tm e1 = *gmtime(&pseudo);
  3513. e0.tm_sec += utc - diff_tm(&e1, &e0);
  3514. time_t local = e0.tm_sec;
  3515. // ?�到��??�起始�???- chargingScedule起�??��?
  3516. diff_t = difftime(t, local);
  3517. n_periods = json_object_array_length(tempchargingSchedulePeriod);
  3518. nPeriod = n_periods;
  3519. printf("GetCompositeScheduleRequest -3\n");
  3520. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod = (struct StructChargingSchedulePeriod *) malloc(sizeof(struct StructChargingSchedulePeriod)* nPeriod);
  3521. for(int i=0;i<n_periods;i++)
  3522. {
  3523. struct json_object *tempstartPeriod, *templimit, *tempnumberPhases;
  3524. printf("GetCompositeScheduleRequest -4\n");
  3525. jsonitem = json_object_array_get_idx(tempchargingSchedulePeriod, i);
  3526. printf("%lu. %s\n",i+1,json_object_get_string(jsonitem));
  3527. tempstartPeriod = json_object_object_get(jsonitem, "startPeriod");
  3528. templimit = json_object_object_get(jsonitem, "limit");
  3529. tempnumberPhases = json_object_object_get(jsonitem, "numberPhases");
  3530. int tempstartPeriodInt = json_object_get_int(tempstartPeriod);
  3531. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[i].Limit = json_object_get_int(templimit);
  3532. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[i].NumberPhases = (float)json_object_get_double(templimit);
  3533. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingSchedulePeriod[i].StartPeriod = json_object_get_int(tempstartPeriod);
  3534. if(diff_t >= 0)
  3535. diff_t = ((diff_t - tempstartPeriodInt) <=0) ? 0 : (diff_t - tempstartPeriodInt);
  3536. if(diff_t < 0)
  3537. {
  3538. float temp = (float)json_object_get_double(templimit);
  3539. if(totallimit < temp)
  3540. {
  3541. totallimit = temp;
  3542. }
  3543. }
  3544. }
  3545. if(MinChargingRate < tempminChargingRateFloat)
  3546. MinChargingRate = tempminChargingRateFloat;
  3547. }
  3548. /* Define temporary variables */
  3549. struct tm *gtime;
  3550. time_t now;
  3551. char buf[28];
  3552. /* Read the current system time */
  3553. time(&now);
  3554. /* Convert the system time to GMT (now UTC) */
  3555. gtime = gmtime(&now);
  3556. strftime(buf, 28, "%Y-%m-%dT%H:%M:%SZ", gtime);
  3557. // make .conf
  3558. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.StartSchedule,buf);
  3559. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.Duration = durationInt;
  3560. if(chargingRateUnitStr != NULL)
  3561. {
  3562. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit, chargingRateUnitStr );
  3563. }
  3564. else
  3565. {
  3566. strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.ChargingRateUnit, "" );
  3567. }
  3568. ShmOCPP16Data->GetCompositeSchedule[0].ResponseChargingSchedule.MinChargingRate = MinChargingRate;
  3569. sprintf(comfirmstr, "%s", GetCompositeScheduleStatusStr[GetCompositeScheduleStatus_Accepted] );
  3570. }
  3571. else
  3572. {
  3573. sprintf(comfirmstr, "%s", GetCompositeScheduleStatusStr[GetCompositeScheduleStatus_Accepted] );
  3574. }
  3575. json_object_put(obj);
  3576. sendGetCompositeScheduleConfirmation(uuid,comfirmstr, connectorIdInt, nPeriod);
  3577. return result;
  3578. }
  3579. int handleGetConfigurationRequest(char *uuid, char *payload)
  3580. {
  3581. int result = FAIL;
  3582. struct json_object *obj=NULL, *key=NULL, *test_obj=NULL;// *jsonitem;
  3583. struct json_object *jsonitem;
  3584. int MaxKeySupported = 0;
  3585. int n_keys = 0;
  3586. obj = json_tokener_parse(payload);
  3587. printf("handle GetConfigurationRequest\n");
  3588. key = json_object_object_get(obj, "key");
  3589. if(key != NULL)
  3590. n_keys = json_object_array_length(key);
  3591. UnknownKeynum = 0;
  3592. memset( (void *)unknownkey, 0, sizeof(int)*10*20 );
  3593. MaxKeySupported = atoi(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData);
  3594. if(ShmOCPP16Data->GetConfiguration.Key == NULL)
  3595. {
  3596. ShmOCPP16Data->GetConfiguration.Key = (struct StructConfigurationKeyItems *)malloc(sizeof(struct StructConfigurationKeyItems)*MaxKeySupported);
  3597. memset(ShmOCPP16Data->GetConfiguration.Key, 0 ,sizeof(struct StructConfigurationKeyItems)*MaxKeySupported);
  3598. printf("memset 0 for GetConfiguration table \n");
  3599. }
  3600. else
  3601. {
  3602. memset(ShmOCPP16Data->GetConfiguration.Key, 0 ,sizeof(struct StructConfigurationKeyItems)*MaxKeySupported);
  3603. }
  3604. if(ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey == NULL)
  3605. {
  3606. ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey = (struct StructConfigurationKey *)malloc(sizeof(struct StructConfigurationKey)*MaxKeySupported);
  3607. memset(ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey, 0, sizeof(struct StructConfigurationKey)*MaxKeySupported);
  3608. }
  3609. else
  3610. {
  3611. memset(ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey, 0, sizeof(struct StructConfigurationKey)*MaxKeySupported);
  3612. }
  3613. if(n_keys != 0)
  3614. {
  3615. printf("key sent num=%d\n",n_keys);
  3616. for(int i=0;i<n_keys;i++)
  3617. {
  3618. jsonitem = json_object_array_get_idx(key, i);
  3619. getKeyValue((char *)json_object_get_string(jsonitem));
  3620. }
  3621. }
  3622. else
  3623. {
  3624. printf("no key sent, get all configuration\n");
  3625. getKeyValue("");
  3626. }
  3627. processUnkownKey();
  3628. printf("test test 5\n");
  3629. //ShmOCPP16Data->MsMsg.bits.GetConfigurationReq = 1;
  3630. json_object_put(obj);
  3631. printf("test test 6\n");
  3632. sendGetConfigurationConfirmation(uuid);
  3633. printf("test test 7\n");
  3634. //ShmOCPP16Data->MsMsg.bits.GetConfigurationConf = 1;
  3635. return result;
  3636. }
  3637. int handleGetDiagnosticsRequest(char *uuid, char *payload)
  3638. {
  3639. int result = FAIL;
  3640. void *ret; // �執行�??��???
  3641. pthread_t t; // �? pthread 變數
  3642. pthread_create(&t, NULL, GetDiagnosticsProcess, payload); // 建�?�執行�?
  3643. pthread_join(t, &ret);
  3644. // ShmOCPP16Data->MsMsg.bits.GetDiagnosticsReq = 1;
  3645. //sendGetDiagnosticsConfirmation(uuid,fname);
  3646. sendGetDiagnosticsConfirmation(uuid,(char*) ret);
  3647. // ShmOCPP16Data->MsMsg.bits.GetDiagnosticsConf = 1;
  3648. return result;
  3649. }
  3650. void* GetDiagnosticsProcess(void* data)
  3651. {
  3652. struct json_object *obj, *location , *retries, *retryInterval , *startTime , *stopTime;
  3653. int retriesInt=0, retryIntervalInt=0;
  3654. const char *locationstr, *startTimestr, *stopTimestr ;
  3655. char protocol[10], user[50],password[50],host[50], path[50], ftppath[60],host1[50],path1[50];
  3656. int port=0;
  3657. char fname[50]="";//="00000_2019-06-09_160902_CSULog.zip";
  3658. char *str = (char*) data; // ?��?輸入資�?
  3659. int isSuccess = FALSE;
  3660. char ftpbuf[200];
  3661. char temp[100];
  3662. char * pch;
  3663. obj = json_tokener_parse(str);
  3664. printf("handle GetDiagnosticsRequest\n");
  3665. location = json_object_object_get(obj, "location");
  3666. retries = json_object_object_get(obj, "retries");
  3667. retryInterval = json_object_object_get(obj, "retryInterval");
  3668. startTime = json_object_object_get(obj, "startTime");
  3669. stopTime = json_object_object_get(obj, "stopTime");
  3670. locationstr = json_object_get_string(location);
  3671. if(retries != NULL)
  3672. retriesInt = json_object_get_int(retries);
  3673. if(retryInterval != NULL)
  3674. retryIntervalInt = json_object_get_int(retryInterval);
  3675. if(startTime != NULL)
  3676. startTimestr = json_object_get_string(startTime);
  3677. if(stopTime != NULL)
  3678. stopTimestr = json_object_get_string(stopTime);
  3679. printf("handle GetDiagnosticsRequest -1\n");
  3680. memset(protocol, 0, sizeof(protocol));
  3681. memset(user, 0, sizeof(user) );
  3682. memset(password, 0, sizeof(password));
  3683. memset(host, 0, sizeof(host));
  3684. memset(path, 0, sizeof(path));
  3685. memset(ftppath, 0, sizeof(ftppath));
  3686. memset(host1, 0, sizeof(host1));
  3687. memset(path1, 0, sizeof(path1));
  3688. /*location: ftp://user:password@host:port/path*/
  3689. //sscanf(locationstr,"%[^:]:%*2[/]%[^:]:%[^@]@%[^:]%d[^/]/%[a-zA-Z0-9._/-]",
  3690. // protocol, user, password, host, &port, path);
  3691. //zip files in /Storage
  3692. system("exec /root/logPackTools 'log' 6");
  3693. time_t rawtime;
  3694. struct tm * timeinfo;
  3695. //char buffer [128];
  3696. time (&rawtime);
  3697. //printf("%ld\n", rawtime);
  3698. timeinfo = localtime (&rawtime);
  3699. strftime (fname,sizeof(fname),"/mnt/%4Y_%2m.zip",timeinfo);
  3700. if((access(fname,F_OK))!=-1)
  3701. {
  3702. printf("?‡ä»¶ test.c exist.\n");
  3703. }
  3704. else
  3705. {
  3706. printf("test.c not exist!\n");
  3707. goto end;
  3708. }
  3709. pch=strchr(locationstr,'@');
  3710. if(pch==NULL)
  3711. {
  3712. sscanf(locationstr,
  3713. "%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
  3714. protocol, host, &port, path);
  3715. strcpy(user,"anonymous");
  3716. strcpy(password,"");
  3717. }
  3718. else
  3719. {
  3720. printf("pch=%s\n", pch);
  3721. sscanf(locationstr,"%[^:]:%*2[/]%[^:]:%[^@]@%[^:]:%i/%199[^\n]",
  3722. protocol, user, password, host, &port, path);
  3723. }
  3724. sscanf(host,"%[^/]%s",host1, path1);
  3725. sprintf(ftppath,"%s", path1);
  3726. printf("protocol =%s\n",protocol);
  3727. printf("user =%s\n",user);
  3728. printf("password =%s\n",password);
  3729. printf("host1 =%s\n",host1);
  3730. printf("port =%d\n",port);
  3731. printf("path1 =%s\n",path1);
  3732. printf("ftppath=%s\n",ftppath);
  3733. int ftppathlen=strlen(ftppath);
  3734. int i=1;
  3735. char filenametemp[50];
  3736. while(i < ftppathlen)
  3737. {
  3738. printf("ftppath[ftppathlen-i]:%c\n",ftppath[ftppathlen-i]);
  3739. int len=ftppathlen-i;
  3740. if(ftppath[len]== 47) // '/' ascll code: 47
  3741. {
  3742. printf("all right\n");
  3743. break;
  3744. }
  3745. printf("test substr\n");
  3746. i=i+1;
  3747. }
  3748. memset(filenametemp, 0, sizeof(filenametemp));
  3749. strncpy(filenametemp, ftppath+(ftppathlen-i+1), i+1);
  3750. filenametemp[i+1] = 0;
  3751. printf("filenametemp:%s\n", filenametemp);
  3752. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_Uploading]);
  3753. //httpDownLoadFile(host, ftppath, fname);
  3754. memset(ftpbuf, 0, sizeof(ftpbuf));
  3755. if(port == 0)
  3756. port = 21;
  3757. //isSuccess = httpDownLoadFile(host1, ftppath, filenametemp, "http://evsocket.phihong.com.tw/UploadFiles/SW/C81FBD4A740F69286B276C68B5074373.jar");
  3758. do{
  3759. isSuccess = ftpFile(/*"test.evsocket.phihong.com.cn","phihong","y42j/4cj84",21,"/",fname*/host1, user, password, port, ftppath, fname);
  3760. sleep(retryIntervalInt);
  3761. }while((!isSuccess)&&(retriesInt > 0 && retriesInt --));
  3762. if(!isSuccess)
  3763. {
  3764. //BulldogUtil.sleepMs(interval*1000);
  3765. printf("Update firmware request and download file fail.\n");
  3766. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
  3767. }
  3768. else
  3769. {
  3770. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_Uploaded]);
  3771. isUpdateRequest = TRUE;
  3772. }
  3773. end:
  3774. json_object_put(obj);
  3775. pthread_exit((void *) fname); // ?��?�執行�?
  3776. }
  3777. int handleGetLocalListVersionRequest(char *uuid, char *payload)
  3778. {
  3779. int result = FAIL;
  3780. printf("handle GetLocalListVersionRequest\n");
  3781. if(strcmp(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "FALSE") == 0)
  3782. {
  3783. localversion = -1;
  3784. }
  3785. else
  3786. {
  3787. OCPP_getListVerion();
  3788. }
  3789. //from db.OCPP_getListVerion
  3790. printf("handle GetLocalListVersionRequest -1\n");
  3791. ShmOCPP16Data->GetLocalListVersion.ResponseListVersion = localversion;
  3792. printf("handle GetLocalListVersionRequest -2\n");
  3793. //ShmOCPP16Data->MsMsg.bits.GetLocalListVersionReq = 1;
  3794. sendGetLocalListVersionConfirmation(uuid,"");
  3795. //ShmOCPP16Data->MsMsg.bits.GetLocalListVersionConf = 1;
  3796. return result;
  3797. }
  3798. int handleRemoteStartRequest(char *uuid, char *payload)
  3799. {
  3800. int result = FAIL;
  3801. struct json_object *obj, *connectorId, *idTag, *chargingProfile,
  3802. *chargingProfileId, *transactionId, *stackLevel,
  3803. *chargingProfilePurpose, *chargingProfileKind,
  3804. *recurrencyKind, *validFrom, *validTo, *chargingSchedule,
  3805. *duration, *startSchedule, *chargingRateUnit, *chargingSchedulePeriod,
  3806. *minChargingRate,*limit, *startPeriod, *numberPhases;
  3807. int connectorIdInt=0, chargingProfileIdInt=0, transactionIdInt=0, stackLevelInt=0,
  3808. durationInt=0, startPeriodInt =0, numberPhasesInt=0;
  3809. char *idTagstr, *chargingProfilePurposestr, *chargingProfileKindstr, *recurrencyKindstr,
  3810. *validFromstr, *validTostr, *startSchedulestr, *chargingRateUnitstr, *chargingSchedulePeriodstr;
  3811. float minChargingRateflaot=0.0, limitflaot=0.0;
  3812. char comfirmstr[20];
  3813. if(server_pending == TRUE)
  3814. {
  3815. return 0;
  3816. }
  3817. obj = json_tokener_parse(payload);
  3818. printf("handleRemoteStartRequest\n");
  3819. connectorId = json_object_object_get(obj, "connectorId");
  3820. idTag = json_object_object_get(obj, "idTag");
  3821. chargingProfile = json_object_object_get(obj, "chargingProfile");
  3822. if(connectorId != NULL)
  3823. {
  3824. connectorIdInt = json_object_get_int(connectorId);
  3825. }
  3826. else
  3827. {
  3828. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  3829. goto end;
  3830. }
  3831. idTagstr = (char *)json_object_get_string(idTag);
  3832. if(chargingProfile != NULL)
  3833. {
  3834. chargingProfileId = json_object_object_get(chargingProfile, "chargingProfileId");
  3835. transactionId = json_object_object_get(chargingProfile, "transactionId");
  3836. stackLevel = json_object_object_get(chargingProfile, "stackLevel");
  3837. chargingProfilePurpose = json_object_object_get(chargingProfile, "chargingProfilePurpose");
  3838. chargingProfileKind = json_object_object_get(chargingProfile, "chargingProfileKind");
  3839. recurrencyKind = json_object_object_get(chargingProfile, "recurrencyKind");
  3840. validFrom = json_object_object_get(chargingProfile, "validFrom");
  3841. validTo = json_object_object_get(chargingProfile, "validTo");
  3842. chargingSchedule = json_object_object_get(chargingProfile, "chargingSchedule");
  3843. chargingProfileIdInt = json_object_get_int(chargingProfileId);
  3844. if(transactionId != NULL) // OPTION
  3845. transactionIdInt = json_object_get_int(transactionId);
  3846. stackLevelInt = json_object_get_int(stackLevel);
  3847. chargingProfilePurposestr =(char *)json_object_get_string(chargingProfilePurpose);
  3848. chargingProfileKindstr = (char *)json_object_get_string(chargingProfileKind);
  3849. if(recurrencyKind != NULL) //OPTION
  3850. recurrencyKindstr = (char *)json_object_get_string(recurrencyKind);
  3851. if(validFrom != NULL) // OPTION
  3852. validFromstr = (char *)json_object_get_string(validFrom);
  3853. if(validTo != NULL) //OPTION
  3854. validTostr = (char *)json_object_get_string(validTo);
  3855. duration = json_object_object_get(chargingSchedule, "duration");
  3856. startSchedule = json_object_object_get(chargingSchedule, "startSchedule");
  3857. chargingRateUnit = json_object_object_get(chargingSchedule, "chargingRateUnit");
  3858. chargingSchedulePeriod = json_object_object_get(chargingSchedule, "chargingSchedulePeriod");
  3859. minChargingRate = json_object_object_get(chargingSchedule, "minChargingRate");
  3860. if(duration != NULL) //OPTION
  3861. durationInt = json_object_get_int(duration);
  3862. if(startSchedule != NULL) //OPTION
  3863. startSchedulestr = (char *)json_object_get_string(startSchedule);
  3864. chargingRateUnitstr = (char *)json_object_get_string(chargingRateUnit);
  3865. chargingSchedulePeriodstr = (char *)json_object_get_string(chargingSchedulePeriod);
  3866. if(minChargingRate != NULL) //OPTION
  3867. minChargingRateflaot = (float)json_object_get_double(minChargingRate);
  3868. limit = json_object_object_get(chargingSchedulePeriod, "limit");
  3869. startPeriod = json_object_object_get(chargingSchedulePeriod, "startPeriod");
  3870. numberPhases = json_object_object_get(chargingSchedulePeriod, "numberPhases");
  3871. startPeriodInt = json_object_get_int(startPeriod);
  3872. limitflaot = (float)json_object_get_double(limit);
  3873. if(numberPhases != NULL)
  3874. numberPhasesInt = json_object_get_int(numberPhases);
  3875. }
  3876. /*
  3877. enum _SYSTEM_STATUS
  3878. {
  3879. S_BOOTING = 0,
  3880. S_IDLE, = 1
  3881. S_AUTHORIZING, =2
  3882. S_REASSIGN_CHECK, =3
  3883. S_REASSIGN, =4
  3884. S_PRECHARGE, =5
  3885. S_PREPARING_FOR_EV, =6
  3886. S_PREPARING_FOR_EVSE, =7
  3887. S_CHARGING, =8
  3888. S_TERMINATING, =9
  3889. S_COMPLETE, =10
  3890. S_ALARM, =11
  3891. S_FAULT =12
  3892. }
  3893. */
  3894. if((connectorId != NULL)&&(connectorIdInt > 0) && ((connectorIdInt -1) <= (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)))
  3895. {
  3896. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag, "%s" , idTagstr);
  3897. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.TransactionId = transactionIdInt;
  3898. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault 8: Reserved
  3899. //check Transaction active
  3900. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  3901. {
  3902. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (connectorIdInt -1))
  3903. {
  3904. if((1/*?�ç??—æ?*//*ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '8'*/)&&(strcmp(ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) == 0))
  3905. {
  3906. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[connectorIdInt-1].SystemStatus = 8; //S_CHARGING
  3907. //ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1;
  3908. }
  3909. else
  3910. {
  3911. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != 1) //S_IDLE
  3912. {
  3913. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  3914. goto end;
  3915. }
  3916. }
  3917. }
  3918. }
  3919. for (int index = 0; index < CCS_QUANTITY; index++)
  3920. {
  3921. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (connectorIdInt -1))
  3922. {
  3923. if((1/*?�ç??—æ?*//*ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '8'*/)&&(strcmp(ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) == 0))
  3924. {
  3925. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[connectorIdInt-1].SystemStatus = 8; //S_CHARGING
  3926. //ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1;
  3927. }
  3928. else
  3929. {
  3930. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != 1) //S_IDLE
  3931. {
  3932. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  3933. goto end;
  3934. }
  3935. }
  3936. }
  3937. }
  3938. for (int index = 0; index < GB_QUANTITY; index++)
  3939. {
  3940. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (connectorIdInt -1))
  3941. {
  3942. if((1/*?�ç??—æ?*//*ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '8'*/)&&(strcmp(ShmSysConfigAndInfo->SysConfig.UserId, idTagstr) == 0))
  3943. {
  3944. //ShmSysConfigAndInfo->SysInfo.GbChargingData[connectorIdInt-1].SystemStatus = 8; //S_CHARGING
  3945. //ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1;
  3946. }
  3947. else
  3948. {
  3949. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != 1) //S_IDLE
  3950. {
  3951. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  3952. goto end;
  3953. }
  3954. }
  3955. }
  3956. }
  3957. if(chargingProfile != NULL)
  3958. {
  3959. //ChargingProfile
  3960. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileId = chargingProfileIdInt;
  3961. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileKind, "%s" ,chargingProfileKindstr);
  3962. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfilePurpose, "%s" ,chargingProfilePurposestr);
  3963. if(recurrencyKind != NULL) //OPTION
  3964. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.RecurrencyKind, "%s" ,recurrencyKindstr);
  3965. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.StackLevel = stackLevelInt;
  3966. if(transactionId != NULL) // OPTION
  3967. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.TransactionId = transactionIdInt;
  3968. if(validFrom != NULL) // OPTION
  3969. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ValidFrom, "%s" ,validFromstr);
  3970. if(validTo != NULL) //OPTION
  3971. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ValidTo, "%s" ,validTostr);
  3972. //ChargingSchedule
  3973. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingRateUnit, "%s" ,chargingRateUnitstr);
  3974. if(duration != NULL) //OPTION
  3975. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.Duration = durationInt;
  3976. if(minChargingRate != NULL) //OPTION
  3977. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.MinChargingRate = minChargingRateflaot;
  3978. if(startSchedule != NULL) //OPTION
  3979. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.StartSchedule, "%s" ,startSchedulestr);
  3980. //ChargingSchedulePeriod
  3981. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod->Limit = limitflaot ;
  3982. if(numberPhases != NULL)
  3983. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod->NumberPhases = numberPhasesInt;
  3984. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod->StartPeriod = startPeriodInt;
  3985. if(strcmp(chargingProfilePurposestr, ChargingProfilePurposeTypeStr[TxProfile]) == 0)
  3986. {
  3987. ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1;
  3988. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]);
  3989. }
  3990. else
  3991. {
  3992. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  3993. }
  3994. }
  3995. else
  3996. {
  3997. ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1;
  3998. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]);
  3999. }
  4000. }
  4001. else
  4002. {
  4003. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  4004. //sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ResponseStatus, "%s" ,comfirmstr);
  4005. }
  4006. end:
  4007. if(connectorId != NULL)
  4008. ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ConnectorId = connectorIdInt;
  4009. strcpy(ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag, idTagstr);
  4010. sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ResponseStatus, "%s" ,comfirmstr);
  4011. json_object_put(obj);
  4012. //OCPP send RemoteStartConfirmation by first.
  4013. sendRemoteStartConfirmation(uuid, comfirmstr);
  4014. //ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionConf = 1;
  4015. return result;
  4016. }
  4017. int handleRemoteStopTransactionRequest(char *uuid, char *payload)
  4018. {
  4019. int result = FAIL;
  4020. int match = FALSE;
  4021. int GunNO = 0;
  4022. struct json_object *obj, *transactionId;
  4023. int transactionIdInt=0;
  4024. char comfirmstr[20];
  4025. printf("handleRemoteStopTransactionRequest\n");
  4026. if(server_pending == TRUE)
  4027. {
  4028. return 0;
  4029. }
  4030. obj = json_tokener_parse(payload);
  4031. transactionId = json_object_object_get(obj, "transactionId");
  4032. transactionIdInt = json_object_get_int(transactionId);
  4033. if(transactionId != NULL)
  4034. {
  4035. for(int gun_index=0;gun_index< (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY);gun_index++)
  4036. {
  4037. if(ShmOCPP16Data->RemoteStartTransaction[gun_index].ChargingProfile.TransactionId == transactionIdInt)
  4038. {
  4039. //check Transaction active
  4040. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  4041. {
  4042. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  4043. {
  4044. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 8) // S_CHARGING
  4045. {
  4046. match = TRUE;
  4047. GunNO = gun_index;
  4048. }
  4049. }
  4050. }
  4051. for (int index = 0; index < CCS_QUANTITY; index++)
  4052. {
  4053. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  4054. {
  4055. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 8) // S_CHARGING
  4056. {
  4057. match = TRUE;
  4058. GunNO = gun_index;
  4059. }
  4060. }
  4061. }
  4062. for (int index = 0; index < GB_QUANTITY; index++)
  4063. {
  4064. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  4065. {
  4066. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8) // S_CHARGING
  4067. {
  4068. match = TRUE;
  4069. GunNO = gun_index;
  4070. }
  4071. }
  4072. }
  4073. }
  4074. }
  4075. if( match == TRUE)
  4076. {
  4077. ShmOCPP16Data->CsMsg.bits[GunNO].RemoteStopTransactionReq = 1; // inform csu of StopTransaction
  4078. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]);
  4079. sprintf((char *)ShmOCPP16Data->RemoteStopTransaction[GunNO].ResponseStatus, "%s" ,comfirmstr);
  4080. }
  4081. else
  4082. {
  4083. strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]);
  4084. }
  4085. }
  4086. json_object_put(obj);
  4087. sendRemoteStopTransactionConfirmation(uuid, comfirmstr);
  4088. //ShmOCPP16Data->CsMsg.bits[GunNO].RemoteStopTransactionConf = 1;
  4089. return result;
  4090. }
  4091. int handleReserveNowTransactionRequest(char *uuid, char *payload)
  4092. {
  4093. int result = FAIL;
  4094. struct json_object *obj, *connectorId, *expiryDate, *idTag, *parentIdTag, *reservationId;
  4095. int connectorIdInt=0, reservationIdInt=0;
  4096. char *expiryDatestr, *idTagstr, *parentIdTagstr;
  4097. char comfirmstr[20];
  4098. obj = json_tokener_parse(payload);
  4099. printf("handleReserveNowRequest\n");
  4100. connectorId = json_object_object_get(obj, "connectorId");
  4101. expiryDate = json_object_object_get(obj, "expiryDate");
  4102. idTag = json_object_object_get(obj, "idTag");
  4103. parentIdTag = json_object_object_get(obj, "parentIdTag");
  4104. reservationId = json_object_object_get(obj, "reservationId");
  4105. connectorIdInt = json_object_get_int(connectorId);
  4106. expiryDatestr = (char *)json_object_get_string(expiryDate);
  4107. idTagstr = (char *)json_object_get_string(idTag);
  4108. if(parentIdTag != NULL) // option flag
  4109. parentIdTagstr = (char *)json_object_get_string(parentIdTag);
  4110. reservationIdInt = json_object_get_int(reservationId);
  4111. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  4112. /*
  4113. enum _SYSTEM_STATUS
  4114. {
  4115. S_BOOTING = 0,
  4116. S_IDLE, = 1
  4117. S_AUTHORIZING, =2
  4118. S_REASSIGN_CHECK, =3
  4119. S_REASSIGN, =4
  4120. S_PRECHARGE, =5
  4121. S_PREPARING_FOR_EV, =6
  4122. S_PREPARING_FOR_EVSE, =7
  4123. S_CHARGING, =8
  4124. S_TERMINATING, =9
  4125. S_COMPLETE, =10
  4126. S_ALARM, =11
  4127. S_FAULT =12
  4128. }
  4129. */
  4130. if((connectorIdInt > 0) && ((connectorIdInt -1) <= (CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)))
  4131. {
  4132. //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  4133. //check Transaction active
  4134. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  4135. {
  4136. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == (connectorIdInt -1))
  4137. {
  4138. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId)
  4139. {
  4140. //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  4141. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != 12) //S_FAULT
  4142. {
  4143. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 1) //S_IDLE
  4144. {
  4145. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  4146. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  4147. }
  4148. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) //S_ALARM //else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9'))
  4149. {
  4150. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  4151. }
  4152. else
  4153. {
  4154. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  4155. }
  4156. }
  4157. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 12) //S_FAULT
  4158. {
  4159. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  4160. }
  4161. }
  4162. else
  4163. {
  4164. //replace reservation
  4165. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  4166. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  4167. }
  4168. }
  4169. }
  4170. for (int index = 0; index < CCS_QUANTITY; index++)
  4171. {
  4172. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == (connectorIdInt -1))
  4173. {
  4174. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId)
  4175. {
  4176. //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  4177. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != 12) //S_FAULT
  4178. {
  4179. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 1) //S_IDLE
  4180. {
  4181. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  4182. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  4183. }
  4184. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 11) //S_ALARM //else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '9'))
  4185. {
  4186. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  4187. }
  4188. else
  4189. {
  4190. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  4191. }
  4192. }
  4193. else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus ==12) //S_FAULT
  4194. {
  4195. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  4196. }
  4197. }
  4198. else
  4199. {
  4200. //replace reservation
  4201. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  4202. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  4203. }
  4204. }
  4205. }
  4206. for (int index = 0; index < GB_QUANTITY; index++)
  4207. {
  4208. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == (connectorIdInt - 1))
  4209. {
  4210. if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId)
  4211. {
  4212. //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain
  4213. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != 12) //S_FAULT
  4214. {
  4215. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 1) //S_IDLE
  4216. {
  4217. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  4218. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  4219. }
  4220. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 11) //S_ALARM //else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '9'))
  4221. {
  4222. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]);
  4223. }
  4224. else
  4225. {
  4226. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]);
  4227. }
  4228. }
  4229. else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==12) //S_FAULT
  4230. {
  4231. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]);
  4232. }
  4233. }
  4234. else
  4235. {
  4236. //replace reservation
  4237. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1;
  4238. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]);
  4239. }
  4240. }
  4241. }
  4242. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ResponseStatus, "%s" ,comfirmstr);
  4243. }
  4244. else
  4245. {
  4246. strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]);
  4247. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ResponseStatus, "%s" ,comfirmstr);
  4248. }
  4249. if(strcmp(comfirmstr,"Accepted") == 0)
  4250. {
  4251. ShmOCPP16Data->ReserveNow[connectorIdInt-1].ConnectorId = connectorIdInt;
  4252. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ExpiryDate, "%s" , expiryDatestr);
  4253. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].IdTag, "%s" , idTagstr);
  4254. sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ParentIdTag, "%s" , parentIdTagstr);
  4255. ShmOCPP16Data->ReserveNow[connectorIdInt-1].ReservationId = reservationIdInt;
  4256. strcpy(ShmOCPP16Data->ReserveNow[connectorIdInt-1].guid, uuid);
  4257. json_object_put(obj);
  4258. result = TRUE;
  4259. return result;
  4260. }
  4261. json_object_put(obj);
  4262. sendReserveNowTransactionConfirmation(uuid,comfirmstr);
  4263. //ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowConf = 1;
  4264. return result;
  4265. }
  4266. int handleResetRequest(char *uuid, char *payload)
  4267. {
  4268. int result = FAIL;
  4269. struct json_object *obj, *type;
  4270. char *typestr;
  4271. char comfirmstr[20];
  4272. obj = json_tokener_parse(payload);
  4273. printf("handleResetRequest\n");
  4274. type = json_object_object_get(obj, "type");
  4275. typestr = (char *)json_object_get_string(type);
  4276. sprintf((char *)ShmOCPP16Data->Reset.Type, "%s" ,typestr);
  4277. //strcpy(ShmOCPP16Data->Reset.Type, typestr);
  4278. if(strcmp(typestr, ResetTypeStr[Hard])==0)
  4279. {
  4280. //check Transaction active
  4281. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  4282. {
  4283. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 8)
  4284. {
  4285. //0: unplug, 1: Plug-in
  4286. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn = 0;
  4287. }
  4288. }
  4289. for (int index = 0; index < CCS_QUANTITY; index++)
  4290. {
  4291. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 8)
  4292. {
  4293. //0: unplug, 1: Plug-in
  4294. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn = 0;
  4295. }
  4296. }
  4297. for (int index = 0; index < GB_QUANTITY; index++)
  4298. {
  4299. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8)
  4300. {
  4301. //0: unplug, 1: Plug-in
  4302. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn = 0;
  4303. }
  4304. }
  4305. ShmOCPP16Data->MsMsg.bits.ResetReq = 1;
  4306. strcpy(ShmOCPP16Data->Reset.guid, uuid);
  4307. json_object_put(obj);
  4308. result = TRUE;
  4309. return result;
  4310. // strcpy(comfirmstr, ResetStatusStr[ResetStatus_Accepted]);
  4311. // sprintf((char *)ShmOCPP16Data->Reset.ResponseStatus, "%s" ,comfirmstr);
  4312. }
  4313. else if(strcmp(typestr, ResetTypeStr[Soft])==0)
  4314. {
  4315. //check Transaction active
  4316. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  4317. {
  4318. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 8)
  4319. {
  4320. //0: unplug, 1: Plug-in
  4321. //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn = 0;
  4322. }
  4323. }
  4324. for (int index = 0; index < CCS_QUANTITY; index++)
  4325. {
  4326. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == 8)
  4327. {
  4328. //0: unplug, 1: Plug-in
  4329. //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn = 0;
  4330. }
  4331. }
  4332. for (int index = 0; index < GB_QUANTITY; index++)
  4333. {
  4334. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == 8)
  4335. {
  4336. //0: unplug, 1: Plug-in
  4337. //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn = 0;
  4338. }
  4339. }
  4340. ShmOCPP16Data->MsMsg.bits.ResetReq = 1;
  4341. strcpy(ShmOCPP16Data->Reset.guid, uuid);
  4342. json_object_put(obj);
  4343. result = TRUE;
  4344. return result;
  4345. // strcpy(comfirmstr, ResetStatusStr[ResetStatus_Accepted]);
  4346. // sprintf((char *)ShmOCPP16Data->Reset.ResponseStatus, "%s" ,comfirmstr);
  4347. }
  4348. else
  4349. {
  4350. strcpy(comfirmstr, ResetStatusStr[ResetStatus_Rejected]);
  4351. sprintf((char *)ShmOCPP16Data->Reset.ResponseStatus, "%s" ,comfirmstr);
  4352. goto errorend;
  4353. }
  4354. errorend:
  4355. json_object_put(obj);
  4356. sendResetConfirmation(uuid, comfirmstr);
  4357. //ShmOCPP16Data->MsMsg.bits.ResetConf = 1;
  4358. return result;
  4359. }
  4360. int handleSendLocalListRequest(char *uuid, char *payload)
  4361. {
  4362. int result = FAIL;
  4363. struct json_object *obj, *listVersion , *localAuthorizationList, *updateType, *jsonitem, *idTag, *idTagInfo ,
  4364. *expiryDate, *parentIdTag, *status;
  4365. int listVersionInt;
  4366. char *updateTypestr, *idTagstr, *expiryDatestr, *parentIdTagstr, *statusstr;
  4367. char comfirmstr[20];
  4368. int n_localAuthorizations = 0;
  4369. obj = json_tokener_parse(payload);
  4370. printf("handleSendLocalListRequest\n");
  4371. listVersion = json_object_object_get(obj, "listVersion");
  4372. localAuthorizationList = json_object_object_get(obj, "localAuthorizationList");
  4373. updateType = json_object_object_get(obj, "updateType");
  4374. listVersionInt = json_object_get_int(listVersion);
  4375. ShmOCPP16Data->SendLocalList.ListVersion = listVersionInt;
  4376. updateTypestr = (char *)json_object_get_string(updateType);
  4377. sprintf((char *)ShmOCPP16Data->SendLocalList.UpdateType, "%s", updateTypestr);
  4378. printf("handleSendLocalListRequest -1\n");
  4379. if(localAuthorizationList != NULL)
  4380. n_localAuthorizations = json_object_array_length(localAuthorizationList);
  4381. printf("n_localAuthorizations=%d\n",n_localAuthorizations);
  4382. if(ShmOCPP16Data->SendLocalList.LocalAuthorizationList != NULL)
  4383. free(ShmOCPP16Data->SendLocalList.LocalAuthorizationList);
  4384. ShmOCPP16Data->SendLocalList.LocalAuthorizationList = (struct StructLocalAuthorizationList *)malloc(sizeof(struct StructLocalAuthorizationList)*n_localAuthorizations);
  4385. memset(ShmOCPP16Data->SendLocalList.LocalAuthorizationList, 0 ,sizeof(ShmOCPP16Data->SendLocalList.LocalAuthorizationList));
  4386. //ShmOCPP16Data->MsMsg.bits.SendLocalListReq = 1;
  4387. if(strcmp(updateTypestr, UpdateTypeStr[Full]) == 0)
  4388. {
  4389. //Local list full update
  4390. printf("Local list full update.\n");
  4391. OCPP_cleanLocalList();
  4392. }
  4393. else if(strcmp(updateTypestr, UpdateTypeStr[Differential]) == 0)
  4394. {
  4395. //Local list different update
  4396. printf("Local list different update.\n");
  4397. if(localAuthorizationList == NULL)
  4398. {
  4399. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Accepted]);
  4400. goto end;
  4401. }
  4402. OCPP_getListVerion();
  4403. if(listVersionInt <= localversion )
  4404. {
  4405. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_VersionMismatch]);
  4406. goto end;
  4407. }
  4408. }
  4409. else
  4410. {
  4411. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_NotSupported]);
  4412. goto end;
  4413. }
  4414. for(int i=0;i<n_localAuthorizations;i++)
  4415. {
  4416. printf("handleSendLocalListRequest -2\n");
  4417. jsonitem = json_object_array_get_idx(localAuthorizationList, i);
  4418. printf("handleSendLocalListRequest -2 -0\n");
  4419. idTag = json_object_object_get(jsonitem, "IdToken"/*"idTag"*/);
  4420. printf("handleSendLocalListRequest -2 -0 -0\n");
  4421. idTagInfo = json_object_object_get(jsonitem, "idTagInfo");
  4422. printf("handleSendLocalListRequest -2 -0 -0 -0\n");
  4423. if(idTagInfo != NULL)
  4424. {
  4425. expiryDate = json_object_object_get(idTagInfo, "expiryDate");
  4426. printf("handleSendLocalListRequest -2 -0 -0 -0 -0\n");
  4427. parentIdTag = json_object_object_get(idTagInfo, "parentIdTag");
  4428. printf("handleSendLocalListRequest -2 -0 -0 -0 -0 -0\n");
  4429. status = json_object_object_get(idTagInfo, "status");
  4430. }
  4431. if(idTag != NULL)
  4432. idTagstr = (char *)json_object_get_string(idTag);
  4433. printf("idTagstr=%s\n",idTagstr);
  4434. if(expiryDate != NULL)
  4435. expiryDatestr = (char *)json_object_get_string(expiryDate);
  4436. printf("expiryDatestr=%s\n",expiryDatestr);
  4437. if(parentIdTag != NULL)
  4438. parentIdTagstr = (char *)json_object_get_string(parentIdTag);
  4439. printf("parentIdTagstr=%s\n",parentIdTagstr);
  4440. statusstr = (char *)json_object_get_string(status);
  4441. printf("statusstr=%s\n",statusstr);
  4442. printf("handleSendLocalListRequest -2 -1\n");
  4443. OCPP_getIdTag(idTagstr);
  4444. if(strcmp(updateTypestr, UpdateTypeStr[Full]) == 0)
  4445. {
  4446. //Local list full update
  4447. printf("Local list full update.\n");
  4448. // update list
  4449. OCPP_addLocalList_1(listVersionInt, idTagstr, parentIdTagstr, expiryDatestr, statusstr);
  4450. }
  4451. else if(strcmp(updateTypestr, UpdateTypeStr[Differential]) == 0)
  4452. {
  4453. if((strcmp(idTagstr, idTagAuthorization) == 0) && (parentIdTag != NULL))
  4454. {
  4455. OCPP_addLocalList_1(listVersionInt, idTagstr, parentIdTagstr, expiryDatestr, statusstr);
  4456. }
  4457. else if((strcmp(idTagstr, idTagAuthorization) == 0) && (parentIdTag == NULL))
  4458. {
  4459. OCPP_deleteIdTag(idTagstr);
  4460. }
  4461. else if((strcmp(idTagstr, idTagAuthorization) != 0) && (parentIdTag != NULL))
  4462. {
  4463. OCPP_addLocalList_1(listVersionInt, idTagstr, parentIdTagstr, expiryDatestr, statusstr);
  4464. }
  4465. }
  4466. strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[i].IdTag, idTagstr);
  4467. printf("handleSendLocalListRequest -2 -1 -1\n");
  4468. strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[i].IdTagInfo.ExpiryDate, expiryDatestr);
  4469. strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[i].IdTagInfo.ParentIdTag, parentIdTagstr);
  4470. strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[i].IdTagInfo.Status, statusstr);
  4471. printf("handleSendLocalListRequest -3\n");
  4472. }
  4473. printf("handleSendLocalListRequest -4\n");
  4474. strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Accepted]);
  4475. end:
  4476. json_object_put(obj);
  4477. sendSendLocalListConfirmation(uuid, comfirmstr);
  4478. //ShmOCPP16Data->MsMsg.bits.SendLocalListConf = 1;
  4479. printf("handleSendLocalListRequest -5\n");
  4480. return result;
  4481. }
  4482. #define MAX 2000
  4483. int handleSetChargingProfileRequest(char *uuid, char *payload)
  4484. {
  4485. int result = FAIL;
  4486. struct json_object *obj, *connectorId, *csChargingProfiles, *chargingProfileId, *stackLevel, *chargingProfilePurpose;
  4487. struct json_object *tempobj, *tempconnectorId, *tempcsChargingProfiles, *tempchargingProfileId, *tempstackLevel, *tempchargingProfilePurpose;
  4488. int connectorIdInt, chargingProfileIdInt, stackLevelInt;
  4489. int tempconnectorIdInt, tempchargingProfileIdInt, tempstackLevelInt;
  4490. const char*chargingProfilePurposeStr;
  4491. char *tempchargingProfilePurposeStr;
  4492. int updateflag = FALSE;
  4493. char comfirmstr[20];
  4494. int meet= FALSE;
  4495. printf("handleSetChargingProfileRequest\n");
  4496. obj = json_tokener_parse(payload);
  4497. connectorId = json_object_object_get(obj, "connectorId");
  4498. csChargingProfiles = json_object_object_get(obj, "csChargingProfiles");
  4499. chargingProfileId = json_object_object_get(csChargingProfiles, "chargingProfileId");
  4500. stackLevel = json_object_object_get(csChargingProfiles, "stackLevel");
  4501. chargingProfilePurpose = json_object_object_get(csChargingProfiles, "chargingProfilePurpose");
  4502. connectorIdInt = json_object_get_int(connectorId);
  4503. chargingProfileIdInt = json_object_get_int(chargingProfileId);
  4504. stackLevelInt = json_object_get_int(stackLevel);
  4505. chargingProfilePurposeStr = json_object_get_string(chargingProfilePurpose);
  4506. #if 1 // get json object from file
  4507. FILE *fptr1, *fptr2;
  4508. int lno, linectr = 0;
  4509. int modifyflag = FALSE;
  4510. char str[MAX],fname[MAX];
  4511. char newln[MAX], temp[] = "temp.json";
  4512. struct json_object *newHeatMap = json_object_new_array();
  4513. printf("\n\n Replace a specific line in a text file with a new text :\n");
  4514. printf("-------------------------------------------------------------\n");
  4515. printf(" Input the file name to be opened : ");
  4516. //fgets(fname, MAX, stdin);
  4517. //fname[strlen(fname) - 1] = '\0';
  4518. switch(connectorIdInt)
  4519. {
  4520. case 0:
  4521. strcpy(fname, ChargingProfile_0_JSON );
  4522. break;
  4523. case 1:
  4524. strcpy(fname, ChargingProfile_1_JSON );
  4525. break;
  4526. case 2:
  4527. strcpy(fname, ChargingProfile_2_JSON );
  4528. break;
  4529. default:
  4530. strcpy(fname, ChargingProfile_0_JSON );
  4531. break;
  4532. }
  4533. fptr1 = fopen(fname, "r");
  4534. if (!fptr1)
  4535. {
  4536. //file not exist
  4537. printf("Unable to open the input file!!\n");
  4538. fptr1 = fopen(fname, "w+");
  4539. }
  4540. fclose(fptr1);
  4541. json_object *test_obj = NULL;
  4542. json_object *tmp_obj = NULL;
  4543. struct array_list *json_list;
  4544. struct json_object *jsonitem;
  4545. size_t n_friends;
  4546. printf("set chargingProfile 1\n");
  4547. //get json object from file
  4548. test_obj = json_object_from_file(fname);
  4549. if(test_obj ==NULL)
  4550. {
  4551. printf("set chargingProfile: test_obj is Null!!!\n");
  4552. //assert(test_obj != NULL);
  4553. }
  4554. tempchargingProfilePurposeStr = NULL;
  4555. printf("set chargingProfile 1-1\n");
  4556. if(strcmp(chargingProfilePurposeStr, ChargingProfilePurposeTypeStr[ChargePointMaxProfile]) == 0)
  4557. {
  4558. printf("set chargingProfile 1-2\n");
  4559. if(connectorIdInt != 0)
  4560. {
  4561. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  4562. goto end;
  4563. }
  4564. }
  4565. else if(strcmp(chargingProfilePurposeStr, ChargingProfilePurposeTypeStr[TxDefaultProfile]) == 0)
  4566. {
  4567. printf("set chargingProfile 1-3\n");
  4568. if((connectorIdInt != 0) && (connectorIdInt > (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)))
  4569. {
  4570. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  4571. goto end;
  4572. }
  4573. }
  4574. else if(strcmp(chargingProfilePurposeStr, ChargingProfilePurposeTypeStr[TxProfile]) == 0)
  4575. {
  4576. printf("set chargingProfile 1-4\n");
  4577. //check Transaction active
  4578. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  4579. {
  4580. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == connectorIdInt)
  4581. {
  4582. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '4')
  4583. {
  4584. meet = TRUE;
  4585. }
  4586. }
  4587. }
  4588. for (int index = 0; index < CCS_QUANTITY; index++)
  4589. {
  4590. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == connectorIdInt)
  4591. {
  4592. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '4')
  4593. {
  4594. meet = TRUE;
  4595. }
  4596. }
  4597. }
  4598. for (int index = 0; index < GB_QUANTITY; index++)
  4599. {
  4600. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == connectorIdInt)
  4601. {
  4602. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '4')
  4603. {
  4604. meet = TRUE;
  4605. }
  4606. }
  4607. }
  4608. if(meet == FALSE)
  4609. {
  4610. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  4611. goto end;
  4612. }
  4613. if((connectorIdInt != 0) && (connectorIdInt > (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)))
  4614. {
  4615. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  4616. goto end;
  4617. }
  4618. }
  4619. printf("set chargingProfile 2\n");
  4620. if((test_obj != NULL) &&(json_object_get_type(test_obj) == json_type_array))
  4621. {
  4622. /* Get array of tests */
  4623. json_list = json_object_get_array(test_obj);
  4624. n_friends = json_object_array_length(test_obj);
  4625. printf("Found %lu friends\n",n_friends);
  4626. for(int i=0;i<n_friends;i++)
  4627. {
  4628. jsonitem = json_object_array_get_idx(test_obj, i);
  4629. printf("%lu. %s\n",i+1,json_object_get_string(jsonitem));
  4630. tempconnectorId = json_object_object_get(jsonitem, "connectorId");
  4631. tempcsChargingProfiles = json_object_object_get(jsonitem, "csChargingProfiles");
  4632. tempchargingProfileId = json_object_object_get(tempcsChargingProfiles, "chargingProfileId");
  4633. tempstackLevel = json_object_object_get(tempcsChargingProfiles, "stackLevel");
  4634. tempchargingProfilePurpose = json_object_object_get(tempcsChargingProfiles, "chargingProfilePurpose");
  4635. tempconnectorIdInt = json_object_get_int(tempconnectorId);
  4636. tempchargingProfileIdInt = json_object_get_int(tempchargingProfileId);
  4637. tempstackLevelInt = json_object_get_int(tempstackLevel);
  4638. tempchargingProfilePurposeStr =(char *)json_object_get_string(tempchargingProfilePurpose);
  4639. printf("s t 1\n");
  4640. if((tempconnectorIdInt == connectorIdInt) && ((tempchargingProfileIdInt == chargingProfileIdInt) || (tempstackLevelInt == stackLevelInt) && (strcmp(tempchargingProfilePurposeStr, chargingProfilePurposeStr) == 0)))
  4641. {
  4642. //fprintf(fptr2, "%s", str);
  4643. //fprintf(fptr2, "%s", newln);
  4644. //modifyflag = TRUE;
  4645. //tmp_obj = json_object_new_string(payload);
  4646. //json_object_array_add(newHeatMap, tmp_obj);
  4647. printf("s t 2\n");
  4648. json_object_array_add(newHeatMap, obj);
  4649. printf("s t 3\n");
  4650. //updateflag = TRUE;
  4651. printf("update set chargingProfile to file\n");
  4652. }
  4653. else
  4654. {
  4655. // fprintf(fptr2, "%s", newln);
  4656. //fprintf(fptr2, "%s", str);
  4657. json_object_array_add(newHeatMap, jsonitem);
  4658. printf("add set chargingProfile to file\n");
  4659. }
  4660. }
  4661. #if 0
  4662. if(updateflag == FALSE)
  4663. {
  4664. tmp_obj = json_object_new_string(payload);
  4665. json_object_array_add(newHeatMap, tmp_obj);
  4666. updateflag = TRUE;
  4667. }
  4668. #endif
  4669. remove(fname);
  4670. rename(temp, fname);
  4671. json_object_to_file(fname, newHeatMap);
  4672. json_object_put ( newHeatMap );
  4673. result = TRUE;
  4674. #if 0
  4675. if(errno >=1)
  4676. {
  4677. printf("has errno \n");
  4678. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  4679. }
  4680. else
  4681. #endif
  4682. {
  4683. printf("has no error \n");
  4684. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Accepted] );
  4685. }
  4686. }
  4687. else
  4688. {
  4689. printf("set chargingProfile 3\n");
  4690. //write the base object to write.json
  4691. json_object_array_add(newHeatMap, obj);
  4692. json_object_to_file(fname, newHeatMap);
  4693. //sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] );
  4694. sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Accepted] );
  4695. json_object_put ( newHeatMap );
  4696. printf("set chargingProfile 4\n");
  4697. }
  4698. end:
  4699. printf("set chargingProfile 1-5\n");
  4700. sendSetChargingProfileConfirmation(uuid, comfirmstr);
  4701. return result;
  4702. #endif
  4703. #if 0 // file style handleing
  4704. FILE *fptr1, *fptr2;
  4705. int lno, linectr = 0;
  4706. int modifyflag = FALSE;
  4707. char str[MAX],fname[MAX];
  4708. char newln[MAX], temp[] = "./mnt/temp.json";
  4709. printf("\n\n Replace a specific line in a text file with a new text :\n");
  4710. printf("-------------------------------------------------------------\n");
  4711. printf(" Input the file name to be opened : ");
  4712. //fgets(fname, MAX, stdin);
  4713. //fname[strlen(fname) - 1] = '\0';
  4714. switch(connectorIdInt)
  4715. {
  4716. case 0:
  4717. strcpy(fname, ChargingProfile_0_JSON );
  4718. break;
  4719. case 1:
  4720. strcpy(fname, ChargingProfile_1_JSON );
  4721. break;
  4722. case 2:
  4723. strcpy(fname, ChargingProfile_2_JSON );
  4724. break;
  4725. default:
  4726. strcpy(fname, ChargingProfile_0_JSON );
  4727. break;
  4728. }
  4729. fptr1 = fopen(fname, "r");
  4730. if (!fptr1)
  4731. {
  4732. //file not exist
  4733. printf("Unable to open the input file!!\n");
  4734. fptr1 = fopen(fname, "wb");
  4735. fwrite(newln , 1 , sizeof(newln) , fptr1 );
  4736. fclose(fptr1);
  4737. json_object_put(obj);
  4738. json_object_put(tempobj);
  4739. return result;
  4740. }
  4741. fptr2 = fopen(temp, "w");
  4742. if (!fptr2)
  4743. {
  4744. printf("Unable to open a temporary file to write!!\n");
  4745. fclose(fptr1);
  4746. return 0;
  4747. }
  4748. /* get the new line from the user */
  4749. printf(" Input the content of the new line : ");
  4750. //fgets(newln, MAX, stdin);
  4751. memcpy(newln,payload,strlen(payload));
  4752. /* get the line number to delete the specific line */
  4753. printf(" Input the line no you want to replace : ");
  4754. //scanf("%d", &lno);
  4755. //lno++;
  4756. // copy all contents to the temporary file other except specific line
  4757. while (!feof(fptr1))
  4758. {
  4759. strcpy(str, "\0");
  4760. fgets(str, MAX, fptr1);
  4761. if (!feof(fptr1))
  4762. {
  4763. // linectr++;
  4764. // if (linectr != lno)
  4765. tempobj = json_tokener_parse(str);
  4766. tempconnectorId = json_object_object_get(tempobj, "connectorId");
  4767. tempcsChargingProfiles = json_object_object_get(tempobj, "csChargingProfiles");
  4768. tempchargingProfileId = json_object_object_get(tempcsChargingProfiles, "chargingProfileId");
  4769. tempstackLevel = json_object_object_get(tempcsChargingProfiles, "stackLevel");
  4770. tempchargingProfilePurpose = json_object_object_get(tempcsChargingProfiles, "chargingProfilePurpose");
  4771. tempconnectorIdInt = json_object_get_int(connectorId);
  4772. tempchargingProfileIdInt = json_object_get_int(chargingProfileIdInt);
  4773. tempstackLevelInt = json_object_get_int(stackLevel);
  4774. tempchargingProfilePurposeStr = json_object_get_string(chargingProfilePurpose);
  4775. if((tempconnectorId == connectorId) && ((tempchargingProfileIdInt == chargingProfileIdInt) || (tempstackLevelInt == stackLevelInt) && (strcmp(tempchargingProfilePurposeStr, chargingProfilePurposeStr) == 0)))
  4776. {
  4777. //fprintf(fptr2, "%s", str);
  4778. fprintf(fptr2, "%s", newln);
  4779. modifyflag = TRUE;
  4780. }
  4781. else
  4782. {
  4783. // fprintf(fptr2, "%s", newln);
  4784. fprintf(fptr2, "%s", str);
  4785. }
  4786. }
  4787. }
  4788. if(modifyflag == FALSE)
  4789. {
  4790. fwrite(newln , 1 , sizeof(newln) , fptr2 );
  4791. }
  4792. result = TRUE;
  4793. fclose(fptr1);
  4794. fclose(fptr2);
  4795. remove(fname);
  4796. rename(temp, fname);
  4797. printf(" Replacement did successfully..!! \n");
  4798. #endif
  4799. json_object_put(obj);
  4800. json_object_put(tempobj);
  4801. return result;
  4802. }
  4803. int handleTriggerMessageRequest(char *uuid, char *payload)
  4804. {
  4805. int result = FAIL;
  4806. struct json_object *obj, *requestedMessage, *connectorId;
  4807. int connectorIdInt =0;
  4808. char *requestedMessagestr;
  4809. char comfirmstr[20];
  4810. obj = json_tokener_parse(payload);
  4811. printf("handleTriggerMessageRequest\n");
  4812. requestedMessage = json_object_object_get(obj, "requestedMessage");
  4813. connectorId = json_object_object_get(obj, "connectorId");
  4814. requestedMessagestr = (char *)json_object_get_string(requestedMessage);
  4815. if(connectorId != NULL && connectorId > 0)
  4816. {
  4817. connectorIdInt = json_object_get_int(connectorId);
  4818. sprintf((char *)ShmOCPP16Data->TriggerMessage[connectorIdInt -1].RequestedMessage, "%s" ,requestedMessagestr);
  4819. ShmOCPP16Data->TriggerMessage[connectorIdInt -1].ConnectorId = connectorIdInt;
  4820. ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].TriggerMessageReq = 1;
  4821. }
  4822. else if(connectorId != NULL && connectorId <= 0)
  4823. {
  4824. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Rejected] );
  4825. goto end;
  4826. }
  4827. if( strcmp(requestedMessagestr, MessageTriggerStr[FirmwareStatusNotification]) == 0)
  4828. {
  4829. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloaded]);
  4830. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  4831. }
  4832. else if(strcmp(requestedMessagestr, MessageTriggerStr[DiagnosticsStatusNotification]) == 0 )
  4833. {
  4834. printf("DiagnosticsStatusStr[DiagnosticsStatus_Idle] =%s\n",DiagnosticsStatusStr[DiagnosticsStatus_Idle]);
  4835. sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_Idle]);
  4836. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  4837. }
  4838. else if(strcmp(requestedMessagestr, MessageTriggerStr[BootNotification]) == 0 )
  4839. {
  4840. sendBootNotificationRequest();
  4841. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  4842. }
  4843. else if(strcmp(requestedMessagestr, MessageTriggerStr[Heartbeat]) == 0 )
  4844. {
  4845. sendHeartbeatRequest(connectorIdInt);
  4846. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  4847. }
  4848. else if (strcmp(requestedMessagestr, MessageTriggerStr[MeterValues]) == 0 )
  4849. {
  4850. if(connectorId != NULL)
  4851. {
  4852. if((connectorIdInt > 0) && ((connectorIdInt -1) < (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)))
  4853. {
  4854. sendMeterValuesRequest(connectorIdInt -1);
  4855. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  4856. }
  4857. else
  4858. {
  4859. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Rejected] );
  4860. }
  4861. }
  4862. else
  4863. {
  4864. for(int idx=0;idx<(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY);idx++)
  4865. sendMeterValuesRequest(idx);
  4866. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  4867. }
  4868. }
  4869. else if(strcmp(requestedMessagestr, MessageTriggerStr[StatusNotification]) == 0 )
  4870. {
  4871. if(connectorId != NULL)
  4872. {
  4873. if((connectorIdInt > 0) && ((connectorIdInt -1) < (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)))
  4874. {
  4875. sendStatusNotificationRequest(connectorIdInt -1);
  4876. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  4877. }
  4878. else
  4879. {
  4880. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Rejected] );
  4881. }
  4882. }
  4883. else
  4884. {
  4885. for(int idx=0;idx<(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY);idx++)
  4886. sendStatusNotificationRequest(idx);
  4887. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
  4888. }
  4889. }
  4890. else
  4891. {
  4892. sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_NotImplemented] );
  4893. }
  4894. end:
  4895. json_object_put(obj);
  4896. sendTriggerMessageConfirmation(uuid,comfirmstr);
  4897. //if(connectorId != NULL)
  4898. //ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].TriggerMessageConf = 1;
  4899. return result;
  4900. }
  4901. int handleUnlockConnectorRequest(char *uuid, char *payload)
  4902. {
  4903. int result = FAIL;
  4904. struct json_object *obj, *connectorId;
  4905. int connectorIdInt =0;
  4906. char comfirmstr[20];
  4907. obj = json_tokener_parse(payload);
  4908. printf("handleUnlockConnectorRequest\n");
  4909. connectorId = json_object_object_get(obj, "connectorId");
  4910. connectorIdInt = json_object_get_int(connectorId);
  4911. if(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY == 0)
  4912. {
  4913. sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockStatus_NotSupported] );
  4914. goto end;
  4915. }
  4916. else if((connectorIdInt > CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY) || (connectorIdInt <= 0))
  4917. {
  4918. //sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockStatus_NotSupported] );
  4919. sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockFailed] );
  4920. goto end;
  4921. }
  4922. else
  4923. {
  4924. //check Transaction active
  4925. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  4926. {
  4927. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == connectorIdInt ) && (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '4') )
  4928. {
  4929. //stop Transaction
  4930. //ShmOCPP16Data->CpMsg.bits[connectorIdInt-1].StopTransactionReq = 1;
  4931. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
  4932. }
  4933. }
  4934. for (int index = 0; index < CCS_QUANTITY; index++)
  4935. {
  4936. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == connectorIdInt ) && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '4'))
  4937. {
  4938. //stop Transaction
  4939. //ShmOCPP16Data->CpMsg.bits[connectorIdInt-1].StopTransactionReq = 1;
  4940. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
  4941. }
  4942. }
  4943. for (int index = 0; index < GB_QUANTITY; index++)
  4944. {
  4945. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == connectorIdInt ) &&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '4'))
  4946. {
  4947. //stop Transaction
  4948. //ShmOCPP16Data->CpMsg.bits[connectorIdInt-1].StopTransactionReq = 1;
  4949. ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1;
  4950. }
  4951. }
  4952. ShmOCPP16Data->UnlockConnector[connectorIdInt-1].ConnectorId = connectorIdInt;
  4953. strcpy(ShmOCPP16Data->UnlockConnector[connectorIdInt-1].guid, uuid);
  4954. // sprintf(comfirmstr, "%s", UnlockStatusStr[Unlocked] );
  4955. json_object_put(obj);
  4956. result = TRUE;
  4957. return result;
  4958. }
  4959. end:
  4960. json_object_put(obj);
  4961. sendUnlockConnectorConfirmation(uuid, comfirmstr);
  4962. return result;
  4963. }
  4964. int handleUpdateFirmwareRequest(char *uuid, char *payload)
  4965. {
  4966. int result = FAIL;
  4967. pthread_t t;
  4968. pthread_create(&t, NULL, UpdateFirmwareProcess, payload); // 建�?�執行�?
  4969. pthread_join(t, NULL); // 等�?�執行�??��?完�?
  4970. sendUpdateFirmwareConfirmation(uuid);
  4971. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareConf =1;
  4972. //ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  4973. return result;
  4974. }
  4975. void UpdateFirmwareProcess(void* data)
  4976. {
  4977. struct json_object *obj, *location, *retries, *retrieveDate, *retryInterval;
  4978. int retriesInt =0, retryIntervalInt=0;
  4979. char protocol[10], user[50],password[50],host[50], path[50], ftppath[60],host1[50],path1[20];
  4980. int port=0;
  4981. char *locationstr, *retrieveDatestr;
  4982. //char fname[50]="00000_2018-09-07 160902_CSULog.zip";
  4983. char comfirmstr[20];
  4984. int isSuccess = 0;
  4985. char ftpbuf[200];
  4986. char temp[100];
  4987. char * pch;
  4988. char *str = (char*) data; // ?��?輸入資�?
  4989. obj = json_tokener_parse(str);
  4990. printf("handleUpdateFirmwareRequest\n");
  4991. location = json_object_object_get(obj, "location");
  4992. retries = json_object_object_get(obj, "retries");
  4993. retrieveDate = json_object_object_get(obj, "retrieveDate");
  4994. retryInterval = json_object_object_get(obj, "retrieveDate");
  4995. locationstr = (char *)json_object_get_string(location);
  4996. if(retries != NULL)
  4997. retriesInt = json_object_get_int(retries);
  4998. retrieveDatestr = (char *)json_object_get_string(retrieveDate);
  4999. if(retryInterval != NULL)
  5000. retryIntervalInt = json_object_get_int(retryInterval);
  5001. memset(ftppath, 0, sizeof(ftppath));
  5002. memset(path, 0, sizeof(path));
  5003. if(strncmp(locationstr,"http", 4) == 0)
  5004. {
  5005. sscanf(locationstr,"%[^:]:%*2[/]%[^/]/%199[^\n]",
  5006. protocol, host, path);
  5007. //sscanf(locationstr,"%[^:]:%*2[/]%[^:]:%[^@]@%[^/]%199[^\n]",
  5008. // protocol, user, password, host, path);
  5009. sprintf(ftppath,"/%s", path);
  5010. printf("protocol =%s\n",protocol);
  5011. printf("host =%s\n",host);
  5012. printf("path =%s\n",path);
  5013. printf("ftppath=%s\n",ftppath);
  5014. int ftppathlen=strlen(ftppath);
  5015. int i=1;
  5016. char filenametemp[50];
  5017. while(i < ftppathlen)
  5018. {
  5019. printf("ftppath[ftppathlen-i]:%c\n",ftppath[ftppathlen-i]);
  5020. int len=ftppathlen-i;
  5021. if(ftppath[len]== 47) // '/' ascll code: 47
  5022. {
  5023. printf("compare all right\n");
  5024. break;
  5025. }
  5026. printf("test substr\n");
  5027. i=i+1;
  5028. }
  5029. memset(filenametemp, 0, sizeof(filenametemp));
  5030. strncpy(filenametemp, ftppath+(ftppathlen-i+1), i+1);
  5031. filenametemp[i+1] = 0;
  5032. printf("filenametemp:%s\n", filenametemp);
  5033. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloading]);
  5034. do{
  5035. isSuccess = httpDownLoadFile(host, ftppath, filenametemp, locationstr);
  5036. sleep(retryIntervalInt);
  5037. }while((!isSuccess)&&(retriesInt > 0 && retriesInt --));
  5038. isSuccess = httpDownLoadFile(host, ftppath, filenametemp, locationstr);
  5039. if(!isSuccess)
  5040. {
  5041. //BulldogUtil.sleepMs(interval*1000);
  5042. printf("Update firmware request and download file fail.\n");
  5043. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_DownloadFailed]);
  5044. }
  5045. else
  5046. {
  5047. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  5048. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloaded]);
  5049. isUpdateRequest = TRUE;
  5050. }
  5051. }
  5052. else // ftp
  5053. {
  5054. memset(ftpbuf, 0, sizeof(ftpbuf));
  5055. memset(temp, 0, sizeof(temp));
  5056. strcpy(ftpbuf, locationstr/*"ftp://ipc_ui:pht2016@ftp.phihong.com.tw/DC/log/DemoDC1_2018-07-13_185011_PSULog.zip"*/ );
  5057. int ftppathlen=strlen(ftpbuf);
  5058. int i=1;
  5059. char filenametemp[50];
  5060. while(i < ftppathlen)
  5061. {
  5062. printf("ftppath[ftppathlen-i]:%c\n",ftpbuf[ftppathlen-i]);
  5063. int len=ftppathlen-i;
  5064. if(ftpbuf[len]== 47) // '/' ascll code: 47
  5065. {
  5066. printf("all right\n");
  5067. break;
  5068. }
  5069. printf("test substr\n");
  5070. i=i+1;
  5071. }
  5072. memset(filenametemp, 0, sizeof(filenametemp));
  5073. strncpy(filenametemp, ftpbuf+(ftppathlen-i+1), i+1);
  5074. filenametemp[i+1] = 0;
  5075. printf("filenametemp:%s\n", filenametemp);
  5076. strncpy(temp, ftpbuf, ftppathlen-i+1);
  5077. pch=strchr(temp,'@');
  5078. if(pch==NULL)
  5079. {
  5080. sscanf(temp,"%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
  5081. protocol, host, &port, path);
  5082. strcpy(user,"anonymous");
  5083. strcpy(password,"");
  5084. }
  5085. else
  5086. {
  5087. printf("pch=%s\n", pch);
  5088. sscanf(temp,"%[^:]:%*2[/]%[^:]:%[^@]@%[^:]:%i/%199[^\n]",
  5089. protocol, user, password, host, &port, path);
  5090. }
  5091. sscanf(host,"%[^/]%s",host1, path1);
  5092. sprintf(ftppath,"%s", path1);
  5093. printf("protocol =%s\n",protocol);
  5094. printf("user =%s\n",user);
  5095. printf("password =%s\n",password);
  5096. printf("host1 =%s\n",host1);
  5097. printf("port =%d\n",port);
  5098. printf("path1 =%s\n",path1);
  5099. printf("ftppath=%s\n",ftppath);
  5100. //ftpFile(host, user, password, port, ftppath, fname);
  5101. //download firmware pthred
  5102. if(port == 0)
  5103. port = 21;
  5104. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloading]);
  5105. do{
  5106. isSuccess = ftpDownLoadFile(host1, user, password, port, ftppath, filenametemp);
  5107. sleep(retryIntervalInt);
  5108. }while((!isSuccess)&&(retriesInt > 0 && retriesInt --));
  5109. if(!isSuccess)
  5110. {
  5111. //BulldogUtil.sleepMs(interval*1000);
  5112. printf("Update firmware request and download file fail.\n");
  5113. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_DownloadFailed]);
  5114. }
  5115. else
  5116. {
  5117. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1;
  5118. sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloaded]);
  5119. isUpdateRequest = TRUE;
  5120. }
  5121. }
  5122. json_object_put(obj);
  5123. pthread_exit(NULL); // ?��?�執行�?
  5124. }
  5125. //==========================================
  5126. // Handle server response routine
  5127. //==========================================
  5128. void handleAuthorizeResponse(char *payload, int gun_index)
  5129. {
  5130. struct json_object *obj, *message, *context;
  5131. struct json_object *root_obj, *temp_obj, *jsonitem, *expiryDateitem, *parentIdTagitem, *statusitem;
  5132. char* filename = AuthorizationCache_JSON;
  5133. char* buffer = NULL;
  5134. FILE *pFile;
  5135. char temp[400];
  5136. obj = json_tokener_parse(payload);
  5137. printf("handleAuthorizeResponse\n");
  5138. #ifdef SystemLogMessage
  5139. if(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "expiryDate") != NULL)
  5140. DEBUG_INFO("expiryDate: %s\n", json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "expiryDate")));
  5141. if(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "parentIdTag") != NULL)
  5142. DEBUG_INFO("parentIdTag: %s\n", json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "parentIdTag")));
  5143. DEBUG_INFO("status: %s\n", json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "status")));
  5144. #endif
  5145. printf("handleAuthorizeResponse -1\n");
  5146. if(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "expiryDate") != NULL)
  5147. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate, (char *)json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "expiryDate")));
  5148. printf("handleAuthorizeResponse -1-0\n");
  5149. if(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "parentIdTag") != NULL)
  5150. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, (char *)json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "parentIdTag")));
  5151. strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, (char *)json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "status")));
  5152. printf("handleAuthorizeResponse -2\n");
  5153. printf("authen reponce 1\n");
  5154. //Update idTag information to authorization cache if supproted
  5155. if((strcmp(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "TRUE") == 0) && (ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag != NULL) && (ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate != NULL) )
  5156. {
  5157. printf("authen reponce 2\n");
  5158. if((access(filename,F_OK))!=-1)
  5159. {
  5160. printf("authen reponce 3\n");
  5161. printf("AuthorizationCache exist.\n");
  5162. }
  5163. else
  5164. {
  5165. printf("authen reponce 4\n");
  5166. printf("AuthorizationCache not exist\n");
  5167. FILE *log = fopen(filename, "w+");
  5168. printf("authen reponce 4 -1\n");
  5169. //fprintf( log , "" ); --- remove temporally
  5170. printf("authen reponce 4 -2\n");
  5171. if(log == NULL)
  5172. {
  5173. printf("log is NULL\n");
  5174. goto out;
  5175. }
  5176. else
  5177. {
  5178. fclose(log);
  5179. }
  5180. }
  5181. printf("authen reponce 5\n");
  5182. get_file_contents(filename, &buffer);
  5183. printf("%s",buffer);
  5184. root_obj = json_tokener_parse(buffer);
  5185. if(root_obj == NULL)
  5186. {
  5187. message = json_object_new_array();
  5188. context = json_object_new_object();
  5189. if(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate != NULL)
  5190. {
  5191. json_object_object_add(context, "expiryDate", json_object_new_string(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate));
  5192. }
  5193. else
  5194. {
  5195. json_object_object_add(context, "expiryDate", json_object_new_string(""));
  5196. }
  5197. if(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag != NULL)
  5198. {
  5199. json_object_object_add(context, "parentIdTag",json_object_new_string(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag));
  5200. }
  5201. else
  5202. {
  5203. //write Authorize IdTag
  5204. json_object_object_add(context, "parentIdTag",json_object_new_string(ShmOCPP16Data->Authorize.IdTag));
  5205. }
  5206. json_object_object_add(context, "status", json_object_new_string(ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status));
  5207. json_object_array_add(message, context);
  5208. memset(temp,0,sizeof temp);
  5209. sprintf(temp, "%s", json_object_to_json_string(message));
  5210. pFile = fopen( filename,"w" );
  5211. if( NULL == pFile ){
  5212. printf( "open failure" );
  5213. }else{
  5214. fwrite(temp,1,sizeof(temp),pFile);
  5215. fclose(pFile);
  5216. }
  5217. json_object_put(message); // Delete the json object
  5218. }
  5219. else
  5220. {
  5221. struct json_object *newHeatMap = json_object_new_array();
  5222. int n_items = json_object_array_length(root_obj);
  5223. for(int i=0;i<n_items;i++)
  5224. {
  5225. int responseIdTagInfoAsZero= 0;
  5226. jsonitem = json_object_array_get_idx(root_obj, i);
  5227. printf("%lu. %s\n",i+1,json_object_get_string(jsonitem));
  5228. expiryDateitem = json_object_object_get(jsonitem, "expiryDate");
  5229. parentIdTagitem = json_object_object_get(jsonitem, "parentIdTag");
  5230. statusitem = json_object_object_get(jsonitem, "status");
  5231. printf("parentIdTagitem=%s\n",json_object_get_string(parentIdTagitem));
  5232. //printf message
  5233. if((ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag == NULL) || strcmp(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, "") == 0)
  5234. {
  5235. printf("ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag is NULL\n");
  5236. responseIdTagInfoAsZero = 1;
  5237. }
  5238. else
  5239. {
  5240. printf("ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag=%s\n",ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag);
  5241. }
  5242. if((responseIdTagInfoAsZero == 0)&&(strcmp(json_object_get_string(parentIdTagitem), ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag) == 0))
  5243. {
  5244. //modify item
  5245. temp_obj = json_object_new_object();
  5246. if(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate != NULL)
  5247. {
  5248. json_object_object_add(temp_obj, "expiryDate", json_object_new_string(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate));
  5249. }
  5250. else
  5251. {
  5252. json_object_object_add(temp_obj, "expiryDate", json_object_new_string(""));
  5253. }
  5254. if(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag != NULL)
  5255. {
  5256. json_object_object_add(temp_obj, "parentIdTag", json_object_new_string(ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag));
  5257. }
  5258. else
  5259. {
  5260. json_object_object_add(temp_obj, "parentIdTag", json_object_new_string(json_object_get_string(parentIdTagitem)));
  5261. }
  5262. json_object_object_add(temp_obj, "status", json_object_new_string(ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status));
  5263. json_object_array_add(newHeatMap, temp_obj);
  5264. }
  5265. else
  5266. {
  5267. //wrie original item
  5268. json_object_array_add(newHeatMap, jsonitem);
  5269. printf("authen reponce 5-1\n");
  5270. }
  5271. }
  5272. //(1)write to temp file (2)remove original file (3) rename filename of temp file
  5273. char temp[] = "temp.json";
  5274. FILE *fp;
  5275. fp=fopen(temp,"w");
  5276. fclose(fp);
  5277. remove(filename);
  5278. rename(temp, filename);
  5279. json_object_to_file(filename, newHeatMap);
  5280. printf("authen reponce 5-2\n");
  5281. json_object_put(newHeatMap); // Delete the json object
  5282. printf("authen reponce 5-3\n");
  5283. }
  5284. printf("authen reponce 5-4\n");
  5285. free(buffer);
  5286. printf("authen reponce 5-5\n");
  5287. // json_object_put(root_obj); // Delete the json object
  5288. printf("authen reponce 5-6\n");
  5289. }
  5290. out:
  5291. json_object_put(obj);
  5292. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  5293. ShmOCPP16Data->SpMsg.bits.AuthorizeConf = 1; // inform csu
  5294. authorizeRetryTimes = 0;
  5295. //for test
  5296. #if 0
  5297. ShmOCPP16Data->CpMsg.bits[0].StartTransactionReq = 1;
  5298. ShmOCPP16Data->CpMsg.bits[0].StartTransactionConf = 1;
  5299. ShmSysConfigAndInfo->SysInfo.ChademoChargingData[0].SystemStatus ='3'; //preparing
  5300. teststatus = 0; //for startTransaction
  5301. #endif
  5302. }
  5303. void handleBootNotificationResponse(char *payload, int gun_index)
  5304. {
  5305. struct json_object *obj;
  5306. char *status;
  5307. obj = json_tokener_parse(payload);
  5308. printf("handleBootNotificationResponse\n");
  5309. #ifdef SystemLogMessage
  5310. DEBUG_INFO("currentTime: %s\n", json_object_get_string(json_object_object_get(obj, "currentTime")));
  5311. DEBUG_INFO("interval: %d\n", json_object_get_int(json_object_object_get(obj, "interval")));
  5312. DEBUG_INFO("status: %s\n", json_object_get_string(json_object_object_get(obj, "status")));
  5313. #endif
  5314. //write back to ShmOCPP16Data->BootNotification
  5315. strcpy((char *)ShmOCPP16Data->BootNotification.ResponseCurrentTime,(char *)json_object_get_string(json_object_object_get(obj, "currentTime")));
  5316. ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval = json_object_get_int(json_object_object_get(obj, "interval"));
  5317. strcpy((char *)ShmOCPP16Data->BootNotification.ResponseStatus, (char *)json_object_get_string(json_object_object_get(obj, "status")));
  5318. status = json_object_get_string(json_object_object_get(obj, "status"));
  5319. BootNotificationInterval = ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval;
  5320. HeartBeatWaitTime = BootNotificationInterval;
  5321. printf("test 1\n");
  5322. if((strcmp(status, RegistrationStatusStr[RegistrationStatus_Accepted]) == 0 )/* ||
  5323. (strcmp(status, RegistrationStatusStr[RegistrationStatus_Pending]) == 0) ||
  5324. (strcmp(status, RegistrationStatusStr[RegistrationStatus_Rejected]) == 0)*/)
  5325. {
  5326. server_sign = TRUE;
  5327. server_pending =FALSE;
  5328. }
  5329. else if(strcmp(status, RegistrationStatusStr[RegistrationStatus_Pending]) == 0)
  5330. {
  5331. server_pending = TRUE;
  5332. }
  5333. double diff_t;
  5334. struct tm tp;
  5335. char buf[28];
  5336. char timebuf[50];
  5337. strptime(ShmOCPP16Data->BootNotification.ResponseCurrentTime, "%Y-%m-%dT%H:%M:%S", &tp);
  5338. tp.tm_isdst = -1;
  5339. time_t utc = mktime(&tp);
  5340. strftime(buf, 28, "%Y-%m-%d %H:%M:%S", &tp);
  5341. memset(timebuf, 0, sizeof timebuf);
  5342. sprintf(timebuf,"date -s '%s'",buf);
  5343. printf("timebuf=%s\n",timebuf);
  5344. system(timebuf);
  5345. //==============================================
  5346. // RTC sync
  5347. //==============================================
  5348. system("/sbin/hwclock -w --systohc");
  5349. printf("test 2\n");
  5350. json_object_put(obj); // Delete the json object
  5351. printf("test 3\n");
  5352. ShmOCPP16Data->OcppConnStatus = 1; ////0: disconnected, 1: connected
  5353. ShmOCPP16Data->SpMsg.bits.BootNotificationConf = 1;
  5354. }
  5355. void handleDataTransferResponse(char *payload, int gun_index)
  5356. {
  5357. struct json_object *obj;
  5358. obj = json_tokener_parse(payload);
  5359. #ifdef SystemLogMessage
  5360. DEBUG_INFO("data: %s\n", json_object_get_string(json_object_object_get(obj, "data")));
  5361. #endif
  5362. }
  5363. void handleDiagnosticsStatusNotificationResponse(char *payload, int gun_index)
  5364. {
  5365. struct json_object *obj;
  5366. obj = json_tokener_parse(payload);
  5367. // ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 0;
  5368. // ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationConf = 1;
  5369. //No fields are defined.
  5370. }
  5371. void handleFirmwareStatusNotificationResponse(char *payload, int gun_index)
  5372. {
  5373. struct json_object *obj;
  5374. obj = json_tokener_parse(payload);
  5375. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 0;
  5376. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationConf = 1;
  5377. //No fields are defined.
  5378. }
  5379. void handleHeartbeatResponse(char *payload, int gun_index)
  5380. {
  5381. struct json_object *obj;
  5382. obj = json_tokener_parse(payload);
  5383. printf("handleHeartbeatResponse\n");
  5384. #ifdef SystemLogMessage
  5385. DEBUG_INFO("currentTime: %s\n", json_object_get_string(json_object_object_get(obj, "currentTime")));
  5386. #endif
  5387. strcpy((char *)ShmOCPP16Data->Heartbeat.ResponseCurrentTime,(char *)json_object_get_string(json_object_object_get(obj, "currentTime")));
  5388. double diff_t;
  5389. struct tm tp;
  5390. char buf[28];
  5391. char timebuf[50];
  5392. strptime(ShmOCPP16Data->Heartbeat.ResponseCurrentTime, "%Y-%m-%dT%H:%M:%S", &tp);
  5393. tp.tm_isdst = -1;
  5394. time_t utc = mktime(&tp);
  5395. strftime(buf, 28, "%Y-%m-%d %H:%M:%S", &tp);
  5396. memset(timebuf, 0, sizeof timebuf);
  5397. sprintf(timebuf,"date -s '%s'",buf);
  5398. printf("timebuf=%s\n",timebuf);
  5399. system(timebuf);
  5400. //==============================================
  5401. // RTC sync
  5402. //==============================================
  5403. system("/sbin/hwclock -w --systohc");
  5404. json_object_put(obj); // Delete the json object
  5405. }
  5406. void handleMeterValuesResponse(char *payload, int gun_index)
  5407. {
  5408. struct json_object *obj;
  5409. obj = json_tokener_parse(payload);
  5410. //No fields are defined.
  5411. }
  5412. void handleStartTransactionResponse(char *payload, int gun_index)
  5413. {
  5414. struct json_object *obj;
  5415. obj = json_tokener_parse(payload);
  5416. // gun_index = gun_index-1;
  5417. #ifdef SystemLogMessage
  5418. DEBUG_INFO("idTagInfo-expiryDate: %s\n", json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "expiryDate")));
  5419. DEBUG_INFO("idTagInfo-parentIdTag: %s\n", json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "parentIdTag")));
  5420. DEBUG_INFO("idTagInfo-status: %s\n", json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "status")));
  5421. DEBUG_INFO("transactionId: %d\n", json_object_get_int(json_object_object_get(obj, "transactionId")));
  5422. #endif
  5423. printf("handleStartTransactionResponse\n");
  5424. if(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "expiryDate") != NULL) // expiryDate is option
  5425. sprintf((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ExpiryDate, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "expiryDate")));
  5426. printf("handleStartTransactionResponse 01\n");
  5427. if(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "parentIdTag") != NULL) // parentIdTag is option
  5428. sprintf((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ParentIdTag, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "parentIdTag")));
  5429. printf("handleStartTransactionResponse 02\n");
  5430. sprintf((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.Status, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "status")));
  5431. //ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId = json_object_get_int(json_object_object_get(obj, "transactionId"));
  5432. ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId = json_object_get_int(json_object_object_get(obj, "transactionId"));
  5433. printf("handleStartTransactionResponse 03\n");
  5434. int transactionIdInt = json_object_get_int(json_object_object_get(obj, "transactionId"));
  5435. printf("handleStartTransactionResponse 1\n");
  5436. printf("handleStartTransactionResponse 2\n");
  5437. ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionConf = 1;
  5438. ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq = 0;
  5439. //for test
  5440. #if 0
  5441. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  5442. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0;
  5443. #endif
  5444. if(strcmp(ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.Status, "Accepted") == 0)
  5445. {
  5446. #if 0
  5447. //check Transaction active
  5448. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  5449. {
  5450. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  5451. {
  5452. ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus = '4';
  5453. }
  5454. }
  5455. for (int index = 0; index < CCS_QUANTITY; index++)
  5456. {
  5457. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  5458. {
  5459. ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus = '4';
  5460. }
  5461. }
  5462. for (int index = 0; index < GB_QUANTITY; index++)
  5463. {
  5464. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  5465. {
  5466. ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus = '4';
  5467. }
  5468. }
  5469. #endif
  5470. //add Charging Record
  5471. SettingChargingRecord(gun_index, transactionIdInt);
  5472. }
  5473. }
  5474. void handleStatusNotificationResponse(char *payload, int gun_index)
  5475. {
  5476. struct json_object *obj;
  5477. obj = json_tokener_parse(payload);
  5478. printf("handleStatusNotificationResponse\n");
  5479. cpinitateMsg.bits[gun_index].StatusNotificationReq = 0;
  5480. cpinitateMsg.bits[gun_index].StatusNotificationConf = 1;
  5481. //for test
  5482. #if 0
  5483. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[gun_index].SystemStatus =='1') // Idle
  5484. {
  5485. ShmSysConfigAndInfo->SysInfo.ChademoChargingData[gun_index].SystemStatus ='3'; //preparing
  5486. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  5487. }
  5488. else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[gun_index].SystemStatus =='3')//preparing
  5489. {
  5490. printf("preparing UserPlugGun=%d\n",UserPlugGun);
  5491. if(UserPlugGun == 1)
  5492. {
  5493. ShmSysConfigAndInfo->SysInfo.ChademoChargingData[gun_index].SystemStatus ='1';
  5494. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  5495. UserPlugGun = 0;
  5496. }
  5497. else
  5498. {
  5499. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 1;
  5500. }
  5501. }
  5502. #endif
  5503. //No fields are defined.
  5504. }
  5505. void handleStopTransactionnResponse(char *payload, int gun_index)
  5506. {
  5507. struct json_object *obj;
  5508. obj = json_tokener_parse(payload);
  5509. printf("handleStopTransactionnResponse\n");
  5510. // gun_index = gun_index - 1;
  5511. if(json_object_object_get(obj, "idTagInfo") != NULL) // option
  5512. {
  5513. if(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "expiryDate") != NULL) // option
  5514. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ExpiryDate, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "expiryDate")));
  5515. if(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "parentIdTag") != NULL) // option
  5516. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ParentIdTag, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "parentIdTag")));
  5517. sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.Status, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "status")));
  5518. #ifdef SystemLogMessage
  5519. DEBUG_INFO("idTagInfo-expiryDate: %s\n", json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "expiryDate")));
  5520. DEBUG_INFO("idTagInfo-parentIdTag: %s\n", json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "parentIdTag")));
  5521. DEBUG_INFO("idTagInfo-status: %s\n", json_object_get_string(json_object_object_get(json_object_object_get(obj, "idTagInfo"), "status")));
  5522. #endif
  5523. }
  5524. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionConf = 1;
  5525. ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq = 0;
  5526. json_object_put(obj); // Delete the json object
  5527. //for test
  5528. //UserPlugGun = 0;
  5529. #if 0
  5530. if(strcmp(ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.Status, "Accepted") == 0)
  5531. {
  5532. //check Transaction active
  5533. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  5534. {
  5535. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == gun_index)
  5536. {
  5537. ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus = '3'; //3: preparing
  5538. }
  5539. }
  5540. for (int index = 0; index < CCS_QUANTITY; index++)
  5541. {
  5542. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index)
  5543. {
  5544. ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus = '3'; //3: preparing
  5545. }
  5546. }
  5547. for (int index = 0; index < GB_QUANTITY; index++)
  5548. {
  5549. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index)
  5550. {
  5551. ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus = '3'; //3: preparing
  5552. }
  5553. }
  5554. cpinitateMsg.bits[gun_index].StatusNotificationReq = 1;
  5555. //ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 1;
  5556. }
  5557. #endif
  5558. }
  5559. //==========================================
  5560. // Handle Error routine
  5561. //==========================================
  5562. void handleError(char *id, char *errorCode, char *errorDescription,char *payload)
  5563. {
  5564. printf("handleError 1\n");
  5565. struct json_object *obj;
  5566. obj = json_tokener_parse(payload);
  5567. printf("handleError 2\n");
  5568. #ifdef SystemLogMessage
  5569. DEBUG_INFO("errorCode: %s\n", errorCode);
  5570. DEBUG_INFO("errorDescription: %s\n", errorDescription);
  5571. if(obj != NULL)
  5572. DEBUG_INFO("errorDetails: %s\n", payload);
  5573. #endif
  5574. }
  5575. //===============================================
  5576. // Common routine
  5577. //===============================================
  5578. int initialConfigurationTable(void)
  5579. {
  5580. printf("initialConfigurationTable \n");
  5581. memset(&(ShmOCPP16Data->ConfigurationTable), 0, sizeof(struct OCPP16ConfigurationTable) );
  5582. /*Core Profile*/
  5583. //AllowOfflineTxForUnknownId
  5584. ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility = 1;
  5585. printf("AllowoddlineTXForUnknownId type: %d \n", ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility);
  5586. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemName, "AllowOfflineTxForUnknownId");
  5587. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData, "TRUE" );
  5588. printf("initialConfigurationTable -1 \n");
  5589. //AuthorizationCacheEnabled
  5590. ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility = 1;
  5591. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemName, "AuthorizationCacheEnabled");
  5592. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "FALSE" );
  5593. //AuthorizeRemoteTxRequests
  5594. ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility = 0;
  5595. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemName, "AuthorizeRemoteTxRequests");
  5596. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "TRUE" );
  5597. //BlinkRepeat
  5598. ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility = 1;
  5599. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemName, "BlinkRepeat");
  5600. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData, "0" );
  5601. //ClockAlignedDataInterval
  5602. ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility = 1;
  5603. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemName, "ClockAlignedDataInterval");
  5604. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData, "0" );
  5605. //ConnectionTimeOut
  5606. ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility = 1;
  5607. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemName, "ConnectionTimeOut");
  5608. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData, "60" );
  5609. //GetConfigurationMaxKeys
  5610. ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility =0;
  5611. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemName, "GetConfigurationMaxKeys");
  5612. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData, "43" );
  5613. // HeartbeatInterval
  5614. ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility = 1;
  5615. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemName, "HeartbeatInterval");
  5616. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "10" );
  5617. // LightIntensity
  5618. ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility = 1;
  5619. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemName, "LightIntensity");
  5620. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData, "0" );
  5621. // LocalAuthorizeOffline
  5622. ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility = 0;
  5623. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemName, "LocalAuthorizeOffline");
  5624. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "TRUE" );
  5625. // LocalPreAuthorize
  5626. ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility = 0;
  5627. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemName, "LocalPreAuthorize");
  5628. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "FALSE" );
  5629. // MaxEnergyOnInvalidId
  5630. ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility = 1;
  5631. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemName, "MaxEnergyOnInvalidId");
  5632. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData, "0" );
  5633. // MeterValuesAlignedData
  5634. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility = 1;
  5635. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemName, "MeterValuesAlignedData");
  5636. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "V,A,KW,KWh" );
  5637. // MeterValuesAlignedDataMaxLength
  5638. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility = 0;
  5639. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemName, "MeterValuesAlignedDataMaxLength");
  5640. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData, "4" );
  5641. // MeterValuesSampledData
  5642. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility = 1;
  5643. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemName, "MeterValuesSampledData");
  5644. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "V,A,KW,KWh" );
  5645. // MeterValuesSampledDataMaxLength
  5646. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility = 0;
  5647. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemName, "MeterValuesSampledDataMaxLength");
  5648. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData, "4" );
  5649. // MeterValueSampleInterval
  5650. ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility = 1;
  5651. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemName, "MeterValueSampleInterval");
  5652. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData, "10" );
  5653. // MinimumStatusDuration
  5654. ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility = 1;
  5655. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemName, "MinimumStatusDuration");
  5656. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "0" );
  5657. // NumberOfConnectors
  5658. ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility = 0;
  5659. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemName, "NumberOfConnectors");
  5660. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "3" );
  5661. // ResetRetries
  5662. ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility = 1;
  5663. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemName, "ResetRetries");
  5664. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData, "3" );
  5665. // ConnectorPhaseRotation
  5666. ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility = 1;
  5667. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemName, "ConnectorPhaseRotation");
  5668. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "Unknown" );
  5669. // ConnectorPhaseRotationMaxLength
  5670. ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility = 0;
  5671. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemName, "ConnectorPhaseRotationMaxLength");
  5672. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData, "1" );
  5673. // StopTransactionOnEVSideDisconnect
  5674. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility = 0;
  5675. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemName, "StopTransactionOnEVSideDisconnect");
  5676. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData, "TRUE" );
  5677. // StopTransactionOnInvalidId
  5678. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility = 1;
  5679. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemName, "StopTransactionOnInvalidId");
  5680. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData, "FALSE" );
  5681. // StopTxnAlignedData
  5682. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility = 1;
  5683. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemName, "StopTxnAlignedData");
  5684. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData, "Energy.Active.Import.Register" );
  5685. // StopTxnAlignedDataMaxLength
  5686. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility = 0;
  5687. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemName, "StopTxnAlignedDataMaxLength");
  5688. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData, "0" );
  5689. // StopTxnSampledData
  5690. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility = 1;
  5691. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemName, "StopTxnSampledData");
  5692. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Energy.Active.Import.Register" );
  5693. // StopTxnSampledDataMaxLength
  5694. ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility = 0;
  5695. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemName, "StopTxnSampledDataMaxLength");
  5696. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData, "0" );
  5697. // SupportedFeatureProfiles
  5698. ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility = 0;
  5699. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemName, "SupportedFeatureProfiles");
  5700. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData, "Core,FirmwareManagement,LocalAuthListManagement,Reservation,SmartCharging,RemoteTrigger" );
  5701. // SupportedFeatureProfilesMaxLength
  5702. ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility = 0;
  5703. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemName, "SupportedFeatureProfilesMaxLength");
  5704. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData, "6" );
  5705. // TransactionMessageAttempts
  5706. ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility = 1;
  5707. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemName, "TransactionMessageAttempts");
  5708. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData, "3" );
  5709. // TransactionMessageRetryInterval
  5710. ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility = 1;
  5711. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemName, "TransactionMessageRetryInterval");
  5712. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData, "60" );
  5713. // UnlockConnectorOnEVSideDisconnect
  5714. ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility = 0;
  5715. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemName, "UnlockConnectorOnEVSideDisconnect");
  5716. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData, "TRUE" );
  5717. // WebSocketPingInterval
  5718. ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility = 1;
  5719. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemName, "WebSocketPingInterval");
  5720. strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "30" );
  5721. /* Local Auth List Management Profile*/
  5722. //LocalAuthListEnabled
  5723. ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility = 1;
  5724. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemName, "LocalAuthListEnabled");
  5725. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE" );
  5726. //LocalAuthListMaxLength
  5727. ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility = 0;
  5728. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemName, "LocalAuthListMaxLength");
  5729. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData, "500" );
  5730. //SendLocalListMaxLength
  5731. ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility = 0;
  5732. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemName, "SendLocalListMaxLength");
  5733. strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData, "500" );
  5734. //ReserveConnectorZeroSupported
  5735. ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility = 0;
  5736. strcpy((char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemName, "ReserveConnectorZeroSupported");
  5737. strcpy((char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData, "FALSE" );
  5738. /* Smart Charging Profile */
  5739. //ChargeProfileMaxStackLevel
  5740. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility = 0;
  5741. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemName, "ChargeProfileMaxStackLevel");
  5742. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData, "3" );
  5743. // ChargingScheduleAllowedChargingRateUnit
  5744. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility = 0;
  5745. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemName, "ChargingScheduleAllowedChargingRateUnit");
  5746. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData, "Current" );
  5747. // ChargingScheduleMaxPeriods
  5748. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility = 0;
  5749. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemName, "ChargingScheduleMaxPeriods");
  5750. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData, "10" );
  5751. // ConnectorSwitch3to1PhaseSupported
  5752. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility = 0;
  5753. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemName, "ConnectorSwitch3to1PhaseSupported");
  5754. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData, "TRUE" );
  5755. // MaxChargingProfilesInstalled
  5756. ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility = 0;
  5757. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemName, "MaxChargingProfilesInstalled");
  5758. strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData, "9" );
  5759. #if 0
  5760. //write Configuration to flash
  5761. unsigned int i,Chk;
  5762. unsigned char *ptr;
  5763. int fd,wrd;
  5764. // Save factory default setting value to flash backup setting block
  5765. fd = open("/Storage/OCPP/OCPPConfiguration.txt", O_RDWR);
  5766. if (fd < 0)
  5767. {
  5768. #ifdef SystemLogMessage
  5769. DEBUG_ERROR("open /Storage/OCPP/OCPPConfiguration.txt NG");
  5770. #endif
  5771. free(ptr);
  5772. return 0;
  5773. }
  5774. wrd=write(fd, &ShmOCPP16Data->ConfigurationTable, sizeof(struct OCPP16ConfigurationTable));
  5775. close(fd);
  5776. if(wrd!=(sizeof(struct SysConfigData)))
  5777. {
  5778. #ifdef SystemLogMessage
  5779. DEBUG_ERROR("write /Storage/OCPP/OCPPConfiguration.txt NG");
  5780. #endif
  5781. free(ptr);
  5782. return 0;
  5783. }
  5784. #endif
  5785. return 0;
  5786. }
  5787. void getKeyValue(char *keyReq)
  5788. {
  5789. int isEmpty = FALSE;
  5790. int isKnowKey = FALSE;
  5791. int unKnowIndex = 0;
  5792. printf("enter getKeyValue \n");
  5793. printf("keyReq= %s\n", keyReq);
  5794. if((keyReq == NULL) || (strlen(keyReq) == 0))
  5795. isEmpty = TRUE;
  5796. printf("getkey_1\n");
  5797. if(isEmpty || strcmp(keyReq, "AllowOfflineTxForUnknownId") == 0)
  5798. {
  5799. printf("getkey_1_0_0\n");
  5800. //debug.logout("Request key: " + (isEmpty?"AllowOfflineTxForUnknownId":keyReq[iReq]));
  5801. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_AllowOfflineTxForUnknownId].Item, "AllowOfflineTxForUnknownId");
  5802. printf("getkey_1_0\n");
  5803. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].Key, "AllowOfflineTxForUnknownId");
  5804. printf("getkey_1_1\n");
  5805. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility == 1)
  5806. {
  5807. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].ReadOnly, "0"/*"FALSE"*/);
  5808. }
  5809. else
  5810. {
  5811. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].ReadOnly, "1"/*"TRUE"*/);
  5812. }
  5813. printf("getkey_1_2\n");
  5814. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData );
  5815. isKnowKey = TRUE;
  5816. }
  5817. printf("getkey_2\n");
  5818. if(isEmpty || strcmp(keyReq, "AuthorizationCacheEnabled") == 0 )
  5819. {
  5820. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_AuthorizationCacheEnabled].Item, "AuthorizationCacheEnabled");
  5821. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].Key, "AuthorizationCacheEnabled");
  5822. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility == 1)
  5823. {
  5824. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].ReadOnly, "0"/*"FALSE"*/);
  5825. }
  5826. else
  5827. {
  5828. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].ReadOnly, "1"/*"TRUE"*/);
  5829. }
  5830. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData );
  5831. isKnowKey = TRUE;
  5832. printf("AuthorizationCacheEnabled\n");
  5833. }
  5834. if(isEmpty || strcmp(keyReq, "AuthorizeRemoteTxRequests") == 0 )
  5835. {
  5836. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_AuthorizeRemoteTxRequests].Item, "AuthorizeRemoteTxRequests");
  5837. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].Key, "AuthorizeRemoteTxRequests");
  5838. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility == 1)
  5839. {
  5840. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].ReadOnly, "0"/*"FALSE"*/);
  5841. }
  5842. else
  5843. {
  5844. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].ReadOnly, "1"/*"TRUE"*/);
  5845. }
  5846. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData );
  5847. isKnowKey = TRUE;
  5848. printf("AuthorizeRemoteTxRequests\n");
  5849. }
  5850. if(isEmpty || strcmp(keyReq, "BlinkRepeat") == 0 )
  5851. {
  5852. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_BlinkRepeat].Item, "BlinkRepeat");
  5853. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].Key, "BlinkRepeat");
  5854. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility == 1)
  5855. {
  5856. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].ReadOnly, "0"/*"FALSE"*/);
  5857. }
  5858. else
  5859. {
  5860. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].ReadOnly, "1"/*"TRUE"*/);
  5861. }
  5862. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData );
  5863. isKnowKey = TRUE;
  5864. printf("BlinkRepeat\n");
  5865. }
  5866. if(isEmpty || strcmp(keyReq, "ClockAlignedDataInterval") == 0 )
  5867. {
  5868. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ClockAlignedDataInterval].Item, "ClockAlignedDataInterval");
  5869. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].Key, "ClockAlignedDataInterval");
  5870. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility == 1)
  5871. {
  5872. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].ReadOnly, "0"/*"FALSE"*/);
  5873. }
  5874. else
  5875. {
  5876. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].ReadOnly, "1"/*"TRUE"*/);
  5877. }
  5878. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData );
  5879. isKnowKey = TRUE;
  5880. printf("ClockAlignedDataInterval\n");
  5881. }
  5882. if(isEmpty || strcmp(keyReq, "ConnectionTimeOut") == 0 )
  5883. {
  5884. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectionTimeOut].Item, "ConnectionTimeOut");
  5885. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].Key, "ConnectionTimeOut");
  5886. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility == 1)
  5887. {
  5888. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].ReadOnly, "0"/*"FALSE"*/);
  5889. }
  5890. else
  5891. {
  5892. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].ReadOnly, "1"/*"TRUE"*/);
  5893. }
  5894. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData );
  5895. isKnowKey = TRUE;
  5896. printf("ConnectionTimeOut\n");
  5897. }
  5898. if(isEmpty || strcmp(keyReq, "GetConfigurationMaxKeys") == 0 )
  5899. {
  5900. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_GetConfigurationMaxKeys].Item, "GetConfigurationMaxKeys");
  5901. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].Key, "GetConfigurationMaxKeys");
  5902. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility == 1)
  5903. {
  5904. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].ReadOnly, "0"/*"FALSE"*/);
  5905. }
  5906. else
  5907. {
  5908. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].ReadOnly, "1"/*"TRUE"*/);
  5909. }
  5910. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData );
  5911. isKnowKey = TRUE;
  5912. printf("GetConfigurationMaxKeys\n");
  5913. }
  5914. if(isEmpty || strcmp(keyReq, "HeartbeatInterval") == 0 )
  5915. {
  5916. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_HeartbeatInterval].Item, "HeartbeatInterval");
  5917. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].Key, "HeartbeatInterval");
  5918. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility == 1)
  5919. {
  5920. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].ReadOnly, "0"/*"FALSE"*/);
  5921. }
  5922. else
  5923. {
  5924. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].ReadOnly, "1"/*"TRUE"*/);
  5925. }
  5926. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData );
  5927. isKnowKey = TRUE;
  5928. printf("HeartbeatInterval\n");
  5929. }
  5930. if(isEmpty || strcmp(keyReq, "LightIntensity") == 0 )
  5931. {
  5932. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LightIntensity].Item, "LightIntensity");
  5933. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].Key, "LightIntensity");
  5934. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility == 1)
  5935. {
  5936. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].ReadOnly, "0"/*"FALSE"*/);
  5937. }
  5938. else
  5939. {
  5940. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].ReadOnly, "1"/*"TRUE"*/);
  5941. }
  5942. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData );
  5943. isKnowKey = TRUE;
  5944. printf("LightIntensity\n");
  5945. }
  5946. if(isEmpty || strcmp(keyReq, "LocalAuthorizeOffline") == 0 )
  5947. {
  5948. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthorizeOffline].Item, "LocalAuthorizeOffline");
  5949. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].Key, "LocalAuthorizeOffline");
  5950. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility == 1)
  5951. {
  5952. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].ReadOnly, "0"/*"FALSE"*/);
  5953. }
  5954. else
  5955. {
  5956. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].ReadOnly, "1"/*"TRUE"*/);
  5957. }
  5958. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData );
  5959. isKnowKey = TRUE;
  5960. printf("LocalAuthorizeOffline\n");
  5961. }
  5962. if(isEmpty || strcmp(keyReq, "LocalPreAuthorize") == 0 )
  5963. {
  5964. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalPreAuthorize].Item, "LocalPreAuthorize");
  5965. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].Key, "LocalPreAuthorize");
  5966. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility == 1)
  5967. {
  5968. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].ReadOnly, "0"/*"FALSE"*/);
  5969. }
  5970. else
  5971. {
  5972. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].ReadOnly, "1"/*"TRUE"*/);
  5973. }
  5974. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData );
  5975. isKnowKey = TRUE;
  5976. printf("LocalPreAuthorize\n");
  5977. }
  5978. if(isEmpty || strcmp(keyReq, "MaxEnergyOnInvalidId") == 0 )
  5979. {
  5980. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MaxEnergyOnInvalidId].Item, "MaxEnergyOnInvalidId");
  5981. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].Key, "MaxEnergyOnInvalidId");
  5982. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility == 1)
  5983. {
  5984. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].ReadOnly, "0"/*"FALSE"*/);
  5985. }
  5986. else
  5987. {
  5988. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].ReadOnly, "1"/*"TRUE"*/);
  5989. }
  5990. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData );
  5991. isKnowKey = TRUE;
  5992. printf("MaxEnergyOnInvalidId\n");
  5993. }
  5994. if(isEmpty || strcmp(keyReq, "MeterValuesAlignedData") == 0 )
  5995. {
  5996. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesAlignedData].Item, "MeterValuesAlignedData");
  5997. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].Key, "MeterValuesAlignedData");
  5998. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility == 1)
  5999. {
  6000. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].ReadOnly, "0"/*"FALSE"*/);
  6001. }
  6002. else
  6003. {
  6004. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].ReadOnly, "1"/*"TRUE"*/);
  6005. }
  6006. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData );
  6007. isKnowKey = TRUE;
  6008. printf("MeterValuesAlignedData\n");
  6009. }
  6010. if(isEmpty || strcmp(keyReq, "MeterValuesAlignedDataMaxLength") == 0 )
  6011. {
  6012. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesAlignedDataMaxLength].Item, "MeterValuesAlignedDataMaxLength");
  6013. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].Key, "MeterValuesAlignedDataMaxLength");
  6014. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility == 1)
  6015. {
  6016. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
  6017. }
  6018. else
  6019. {
  6020. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
  6021. }
  6022. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData );
  6023. isKnowKey = TRUE;
  6024. printf("MeterValuesAlignedDataMaxLength\n");
  6025. }
  6026. if(isEmpty || strcmp(keyReq, "MeterValuesSampledData") == 0 )
  6027. {
  6028. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesSampledData].Item, "MeterValuesSampledData");
  6029. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].Key, "MeterValuesSampledData");
  6030. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility == 1)
  6031. {
  6032. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].ReadOnly, "0"/*"FALSE"*/);
  6033. }
  6034. else
  6035. {
  6036. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].ReadOnly, "1"/*"TRUE"*/);
  6037. }
  6038. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData );
  6039. isKnowKey = TRUE;
  6040. printf("MeterValuesSampledData\n");
  6041. }
  6042. if(isEmpty || strcmp(keyReq, "MeterValuesSampledDataMaxLength") == 0 )
  6043. {
  6044. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesSampledDataMaxLength].Item, "MeterValuesSampledDataMaxLength");
  6045. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].Key, "MeterValuesSampledDataMaxLength");
  6046. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility == 1)
  6047. {
  6048. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
  6049. }
  6050. else
  6051. {
  6052. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
  6053. }
  6054. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData );
  6055. isKnowKey = TRUE;
  6056. printf("MeterValuesSampledDataMaxLength\n");
  6057. }
  6058. if(isEmpty || strcmp(keyReq, "MeterValueSampleInterval") == 0 )
  6059. {
  6060. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValueSampleInterval].Item, "MeterValueSampleInterval");
  6061. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].Key, "MeterValueSampleInterval");
  6062. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility == 1)
  6063. {
  6064. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].ReadOnly, "0"/*"FALSE"*/);
  6065. }
  6066. else
  6067. {
  6068. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].ReadOnly, "1"/*"TRUE"*/);
  6069. }
  6070. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData );
  6071. isKnowKey = TRUE;
  6072. printf("MeterValueSampleInterval\n");
  6073. }
  6074. if(isEmpty || strcmp(keyReq, "MinimumStatusDuration") == 0 )
  6075. {
  6076. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MinimumStatusDuration].Item, "MinimumStatusDuration");
  6077. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].Key, "MinimumStatusDuration");
  6078. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility == 1)
  6079. {
  6080. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].ReadOnly, "0"/*"FALSE"*/);
  6081. }
  6082. else
  6083. {
  6084. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].ReadOnly, "1"/*"TRUE"*/);
  6085. }
  6086. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[17].ItemData );
  6087. isKnowKey = TRUE;
  6088. printf("MinimumStatusDuration\n");
  6089. }
  6090. if(isEmpty || strcmp(keyReq, "NumberOfConnectors") == 0 )
  6091. {
  6092. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_NumberOfConnectors].Item, "NumberOfConnectors");
  6093. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].Key, "NumberOfConnectors");
  6094. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility == 1)
  6095. {
  6096. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].ReadOnly, "0"/*"FALSE"*/);
  6097. }
  6098. else
  6099. {
  6100. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].ReadOnly, "1"/*"TRUE"*/);
  6101. }
  6102. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData );
  6103. isKnowKey = TRUE;
  6104. printf("NumberOfConnectors\n");
  6105. }
  6106. if(isEmpty || strcmp(keyReq, "ResetRetries") == 0 )
  6107. {
  6108. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ResetRetries].Item, "ResetRetries");
  6109. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].Key, "ResetRetries");
  6110. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility == 1)
  6111. {
  6112. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].ReadOnly, "0"/*"FALSE"*/);
  6113. }
  6114. else
  6115. {
  6116. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].ReadOnly, "1"/*"TRUE"*/);
  6117. }
  6118. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData );
  6119. isKnowKey = TRUE;
  6120. printf("ResetRetries\n");
  6121. }
  6122. if(isEmpty || strcmp(keyReq, "ConnectorPhaseRotation") == 0 )
  6123. {
  6124. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectorPhaseRotation].Item, "ConnectorPhaseRotation");
  6125. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].Key, "ConnectorPhaseRotation");
  6126. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility == 1)
  6127. {
  6128. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].ReadOnly, "0"/*"FALSE"*/);
  6129. }
  6130. else
  6131. {
  6132. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].ReadOnly, "1"/*"TRUE"*/);
  6133. }
  6134. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData );
  6135. isKnowKey = TRUE;
  6136. printf("ConnectorPhaseRotation\n");
  6137. }
  6138. if(isEmpty || strcmp(keyReq, "ConnectorPhaseRotationMaxLength") == 0 )
  6139. {
  6140. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectorPhaseRotationMaxLength].Item, "ConnectorPhaseRotationMaxLength");
  6141. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].Key, "ConnectorPhaseRotationMaxLength");
  6142. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility == 1)
  6143. {
  6144. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].ReadOnly, "0"/*"FALSE"*/);
  6145. }
  6146. else
  6147. {
  6148. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].ReadOnly, "1"/*"TRUE"*/);
  6149. }
  6150. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].Value,(const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData );
  6151. isKnowKey = TRUE;
  6152. printf("ConnectorPhaseRotationMaxLength\n");
  6153. }
  6154. if(isEmpty || strcmp(keyReq, "StopTransactionOnEVSideDisconnect") == 0 )
  6155. {
  6156. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTransactionOnEVSideDisconnect].Item, "StopTransactionOnEVSideDisconnect");
  6157. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].Key, "StopTransactionOnEVSideDisconnect");
  6158. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility == 1)
  6159. {
  6160. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].ReadOnly, "0"/*"FALSE"*/);
  6161. }
  6162. else
  6163. {
  6164. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].ReadOnly, "1"/*"TRUE"*/);
  6165. }
  6166. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData );
  6167. isKnowKey = TRUE;
  6168. printf("StopTransactionOnEVSideDisconnect\n");
  6169. }
  6170. if(isEmpty || strcmp(keyReq, "StopTransactionOnInvalidId") == 0 )
  6171. {
  6172. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTransactionOnInvalidId].Item, "StopTransactionOnInvalidId");
  6173. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].Key, "StopTransactionOnInvalidId");
  6174. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility == 1)
  6175. {
  6176. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].ReadOnly, "0"/*"FALSE"*/);
  6177. }
  6178. else
  6179. {
  6180. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].ReadOnly, "1"/*"TRUE"*/);
  6181. }
  6182. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData );
  6183. isKnowKey = TRUE;
  6184. printf("StopTransactionOnInvalidId\n");
  6185. }
  6186. if(isEmpty || strcmp(keyReq, "StopTxnAlignedData") == 0 )
  6187. {
  6188. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnAlignedData].Item, "StopTxnAlignedData");
  6189. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].Key, "StopTxnAlignedData");
  6190. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility == 1)
  6191. {
  6192. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].ReadOnly, "0"/*"FALSE"*/);
  6193. }
  6194. else
  6195. {
  6196. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].ReadOnly, "1"/*"TRUE"*/);
  6197. }
  6198. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].Value,(const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData );
  6199. isKnowKey = TRUE;
  6200. printf("StopTxnAlignedData\n");
  6201. }
  6202. if(isEmpty || strcmp(keyReq, "StopTxnAlignedDataMaxLength") == 0 )
  6203. {
  6204. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnAlignedDataMaxLength].Item, "StopTxnAlignedDataMaxLength");
  6205. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].Key, "StopTxnAlignedDataMaxLength");
  6206. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility == 1)
  6207. {
  6208. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
  6209. }
  6210. else
  6211. {
  6212. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
  6213. }
  6214. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData );
  6215. isKnowKey = TRUE;
  6216. printf("StopTxnAlignedDataMaxLength\n");
  6217. }
  6218. if(isEmpty || strcmp(keyReq, "StopTxnSampledData") == 0 )
  6219. {
  6220. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnSampledData].Item, "StopTxnSampledData");
  6221. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].Key, "StopTxnSampledData");
  6222. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility == 1)
  6223. {
  6224. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].ReadOnly, "0"/*"FALSE"*/);
  6225. }
  6226. else
  6227. {
  6228. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].ReadOnly, "1"/*"TRUE"*/);
  6229. }
  6230. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData );
  6231. isKnowKey = TRUE;
  6232. printf("StopTxnSampledData\n");
  6233. }
  6234. if(isEmpty || strcmp(keyReq, "StopTxnSampledDataMaxLength") == 0 )
  6235. {
  6236. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnSampledDataMaxLength].Item, "StopTxnSampledDataMaxLength");
  6237. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].Key, "StopTxnSampledDataMaxLength");
  6238. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility == 1)
  6239. {
  6240. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].ReadOnly, "0"/*"FALSE"*/);
  6241. }
  6242. else
  6243. {
  6244. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].ReadOnly, "1"/*"TRUE"*/);
  6245. }
  6246. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData );
  6247. isKnowKey = TRUE;
  6248. printf("StopTxnSampledDataMaxLength\n");
  6249. }
  6250. if(isEmpty || strcmp(keyReq, "SupportedFeatureProfiles") == 0 )
  6251. {
  6252. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_SupportedFeatureProfiles].Item, "SupportedFeatureProfiles");
  6253. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].Key, "SupportedFeatureProfiles");
  6254. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility == 1)
  6255. {
  6256. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].ReadOnly, "0"/*"FALSE"*/);
  6257. }
  6258. else
  6259. {
  6260. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].ReadOnly, "1"/*"TRUE"*/);
  6261. }
  6262. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData );
  6263. isKnowKey = TRUE;
  6264. printf("SupportedFeatureProfiles\n");
  6265. }
  6266. if(isEmpty || strcmp(keyReq, "SupportedFeatureProfilesMaxLength") == 0 )
  6267. {
  6268. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_SupportedFeatureProfilesMaxLength].Item, "SupportedFeatureProfilesMaxLength");
  6269. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].Key, "SupportedFeatureProfilesMaxLength");
  6270. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility == 1)
  6271. {
  6272. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].ReadOnly, "0"/*"FALSE"*/);
  6273. }
  6274. else
  6275. {
  6276. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].ReadOnly, "1"/*"TRUE"*/);
  6277. }
  6278. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData );
  6279. isKnowKey = TRUE;
  6280. printf("SupportedFeatureProfilesMaxLength\n");
  6281. }
  6282. if(isEmpty || strcmp(keyReq, "TransactionMessageAttempts") == 0 )
  6283. {
  6284. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_TransactionMessageAttempts].Item, "TransactionMessageAttempts");
  6285. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].Key, "TransactionMessageAttempts");
  6286. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility == 1)
  6287. {
  6288. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].ReadOnly, "0"/*"FALSE"*/);
  6289. }
  6290. else
  6291. {
  6292. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].ReadOnly, "1"/*"TRUE"*/);
  6293. }
  6294. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData );
  6295. isKnowKey = TRUE;
  6296. printf("TransactionMessageAttempts\n");
  6297. }
  6298. if(isEmpty || strcmp(keyReq, "TransactionMessageRetryInterval") == 0 )
  6299. {
  6300. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_TransactionMessageRetryInterval].Item, "TransactionMessageRetryInterval");
  6301. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].Key, "TransactionMessageRetryInterval");
  6302. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility == 1)
  6303. {
  6304. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].ReadOnly, "0"/*"FALSE"*/);
  6305. }
  6306. else
  6307. {
  6308. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].ReadOnly, "1"/*"TRUE"*/);
  6309. }
  6310. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData );
  6311. isKnowKey = TRUE;
  6312. printf("TransactionMessageRetryInterval\n");
  6313. }
  6314. if(isEmpty || strcmp(keyReq, "UnlockConnectorOnEVSideDisconnect") == 0 )
  6315. {
  6316. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Item, "UnlockConnectorOnEVSideDisconnect");
  6317. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Key, "UnlockConnectorOnEVSideDisconnect");
  6318. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility == 1)
  6319. {
  6320. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].ReadOnly, "0"/*"FALSE"*/);
  6321. }
  6322. else
  6323. {
  6324. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].ReadOnly, "1"/*"TRUE"*/);
  6325. }
  6326. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData );
  6327. isKnowKey = TRUE;
  6328. printf("UnlockConnectorOnEVSideDisconnect\n");
  6329. }
  6330. if(isEmpty || strcmp(keyReq, "WebSocketPingInterval") == 0 )
  6331. {
  6332. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_WebSocketPingInterval].Item, "WebSocketPingInterval");
  6333. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].Key, "WebSocketPingInterval");
  6334. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility == 1)
  6335. {
  6336. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].ReadOnly, "0"/*"FALSE"*/);
  6337. }
  6338. else
  6339. {
  6340. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].ReadOnly, "1"/*"TRUE"*/);
  6341. }
  6342. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData );
  6343. isKnowKey = TRUE;
  6344. printf("WebSocketPingInterval\n");
  6345. }
  6346. if(isEmpty || strcmp(keyReq, "LocalAuthListEnabled") == 0 )
  6347. {
  6348. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthListEnabled].Item, "LocalAuthListEnabled");
  6349. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Key, "LocalAuthListEnabled");
  6350. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1)
  6351. {
  6352. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "0"/*"FALSE"*/);
  6353. }
  6354. else
  6355. {
  6356. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "1"/*"TRUE"*/);
  6357. }
  6358. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData );
  6359. isKnowKey = TRUE;
  6360. printf("LocalAuthListEnabled\n");
  6361. }
  6362. if(isEmpty || strcmp(keyReq, "LocalAuthListMaxLength") == 0 )
  6363. {
  6364. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthListMaxLength].Item, "LocalAuthListMaxLength");
  6365. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].Key, "LocalAuthListMaxLength");
  6366. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility == 1)
  6367. {
  6368. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].ReadOnly, "0"/*"FALSE"*/);
  6369. }
  6370. else
  6371. {
  6372. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].ReadOnly, "1"/*"TRUE"*/);
  6373. }
  6374. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData );
  6375. isKnowKey = TRUE;
  6376. printf("LocalAuthListMaxLength\n");
  6377. }
  6378. if(isEmpty || strcmp(keyReq, "SendLocalListMaxLength") == 0 )
  6379. {
  6380. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_SendLocalListMaxLength].Item, "SendLocalListMaxLength");
  6381. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].Key, "SendLocalListMaxLength");
  6382. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility == 1)
  6383. {
  6384. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].ReadOnly, "0"/*"FALSE"*/);
  6385. }
  6386. else
  6387. {
  6388. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].ReadOnly, "1"/*"TRUE"*/);
  6389. }
  6390. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData );
  6391. isKnowKey = TRUE;
  6392. printf("SendLocalListMaxLength\n");
  6393. }
  6394. if(isEmpty || strcmp(keyReq, "ReserveConnectorZeroSupported") == 0 )
  6395. {
  6396. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ReserveConnectorZeroSupported].Item, "ReserveConnectorZeroSupported");
  6397. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].Key, "ReserveConnectorZeroSupported");
  6398. if(ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility == 1)
  6399. {
  6400. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].ReadOnly, "0"/*"FALSE"*/);
  6401. }
  6402. else
  6403. {
  6404. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].ReadOnly, "1"/*"TRUE"*/);
  6405. }
  6406. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].Value,(const char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData);
  6407. isKnowKey = TRUE;
  6408. printf("ReserveConnectorZeroSupported\n");
  6409. }
  6410. if(isEmpty || strcmp(keyReq, "ChargeProfileMaxStackLevel") == 0 )
  6411. {
  6412. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ChargeProfileMaxStackLevel].Item, "ChargeProfileMaxStackLevel");
  6413. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].Key, "ChargeProfileMaxStackLevel");
  6414. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility == 1)
  6415. {
  6416. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].ReadOnly, "0"/*"FALSE"*/);
  6417. }
  6418. else
  6419. {
  6420. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].ReadOnly, "1"/*"TRUE"*/);
  6421. }
  6422. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData);
  6423. isKnowKey = TRUE;
  6424. printf("ChargeProfileMaxStackLevel\n");
  6425. }
  6426. if(isEmpty || strcmp(keyReq, "ChargingScheduleAllowedChargingRateUnit") == 0 )
  6427. {
  6428. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Item, "ChargingScheduleAllowedChargingRateUnit");
  6429. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Key, "ChargingScheduleAllowedChargingRateUnit");
  6430. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility == 1)
  6431. {
  6432. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].ReadOnly, "0"/*"FALSE"*/);
  6433. }
  6434. else
  6435. {
  6436. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].ReadOnly, "1"/*"TRUE"*/);
  6437. }
  6438. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData);
  6439. isKnowKey = TRUE;
  6440. printf("ChargingScheduleAllowedChargingRateUnit\n");
  6441. }
  6442. if(isEmpty || strcmp(keyReq, "ChargingScheduleMaxPeriods") == 0 )
  6443. {
  6444. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ChargingScheduleMaxPeriods].Item, "ChargingScheduleMaxPeriods");
  6445. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].Key, "ChargingScheduleMaxPeriods");
  6446. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility == 1)
  6447. {
  6448. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].ReadOnly, "0"/*"FALSE"*/);
  6449. }
  6450. else
  6451. {
  6452. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].ReadOnly, "1"/*"TRUE"*/);
  6453. }
  6454. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData);
  6455. isKnowKey = TRUE;
  6456. printf("ChargingScheduleMaxPeriods\n");
  6457. }
  6458. if(isEmpty || strcmp(keyReq, "ConnectorSwitch3to1PhaseSupported") == 0 )
  6459. {
  6460. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Item, "ConnectorSwitch3to1PhaseSupported");
  6461. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Key, "ConnectorSwitch3to1PhaseSupported");
  6462. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility == 1)
  6463. {
  6464. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].ReadOnly, "0"/*"FALSE"*/);
  6465. }
  6466. else
  6467. {
  6468. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].ReadOnly, "1"/*"TRUE"*/);
  6469. }
  6470. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData);
  6471. isKnowKey = TRUE;
  6472. printf("ConnectorSwitch3to1PhaseSupported\n");
  6473. }
  6474. if(isEmpty || strcmp(keyReq, "MaxChargingProfilesInstalled") == 0 )
  6475. {
  6476. strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MaxChargingProfilesInstalled].Item, "MaxChargingProfilesInstalled");
  6477. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].Key, "MaxChargingProfilesInstalled");
  6478. if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility == 1)
  6479. {
  6480. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].ReadOnly, "0"/*"FLASE"*/);
  6481. }
  6482. else
  6483. {
  6484. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].ReadOnly, "1"/*"TRUE"*/);
  6485. }
  6486. strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData);
  6487. isKnowKey = TRUE;
  6488. printf("MaxChargingProfilesInstalled\n");
  6489. }
  6490. //=========================================================
  6491. if(!isEmpty && !isKnowKey)
  6492. {
  6493. printf("unKnowIndex =%d\n", UnknownKeynum);
  6494. strcpy(unknownkey[UnknownKeynum], keyReq);
  6495. UnknownKeynum = UnknownKeynum + 1;
  6496. }
  6497. }
  6498. void processUnkownKey(void)
  6499. {
  6500. if(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey != NULL)
  6501. free(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey);
  6502. ShmOCPP16Data->GetConfiguration.ResponseUnknownKey = (struct StructConfigurationKeyItems *)malloc(sizeof(struct StructConfigurationKeyItems)*UnknownKeynum);
  6503. memset(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey, 0 , sizeof(struct StructConfigurationKeyItems)* UnknownKeynum);
  6504. printf("processUnkownKey UnknownKeynum =%d\n",UnknownKeynum);
  6505. for(int index=0; index < UnknownKeynum; index++)
  6506. {
  6507. printf("ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[%d].Item[0]=%c\n",index,ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[index].Item[0]);
  6508. if(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[index].Item[0] == 0)
  6509. {
  6510. strcpy((char *)(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[index].Item), unknownkey[index]);
  6511. printf("getkeyValue: %s\n", ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[index].Item);
  6512. }
  6513. }
  6514. }
  6515. int setKeyValue(char *key, char *value)
  6516. {
  6517. int isSuccess = NotSupported;
  6518. printf("setKeyValue : key : %s\n", key);
  6519. if(strcmp(key, "AllowOfflineTxForUnknownId") == 0)
  6520. {
  6521. //Charger.AllowOfflineTxForUnknownId = (value.toLowerCase().equals("true")?true:false);
  6522. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility == 1)
  6523. {
  6524. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData, "%d", (strcmp(value, "true")==0) ?TRUE:FALSE );
  6525. isSuccess = ConfigurationStatus_Accepted;
  6526. }
  6527. else
  6528. {
  6529. isSuccess = ConfigurationStatus_Rejected;
  6530. }
  6531. }
  6532. if(strcmp(key, "AuthorizationCacheEnabled") == 0)
  6533. {
  6534. //Charger.AuthorizationCacheEnabled = (value.toLowerCase().equals("true")?true:false);
  6535. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility == 1)
  6536. {
  6537. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "%d", (strcmp(value, "true")==0) ?TRUE:FALSE );
  6538. isSuccess = ConfigurationStatus_Accepted;
  6539. //updateSetting("AuthorizationCacheEnabled", (Charger.AuthorizationCacheEnabled?"1":"0"));
  6540. updateSetting("AuthorizationCacheEnabled",(char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[1].ItemData);
  6541. }
  6542. else
  6543. {
  6544. isSuccess = ConfigurationStatus_Rejected;
  6545. }
  6546. }
  6547. if(strcmp(key, "AuthorizeRemoteTxRequests") == 0)
  6548. {
  6549. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility == 1)
  6550. {
  6551. //Charger.AuthorizeRemoteTxRequests = (value.toLowerCase().equals("true")?true:false);
  6552. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "%d", (strcmp(value, "true")==0) ?TRUE:FALSE );
  6553. isSuccess = ConfigurationStatus_Accepted;
  6554. }
  6555. else
  6556. {
  6557. isSuccess = ConfigurationStatus_Rejected;
  6558. }
  6559. }
  6560. if(strcmp(key, "BlinkRepeat") == 0)
  6561. {
  6562. //Charger.BlinkRepeat = Integer.parseInt(value);
  6563. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility == 1)
  6564. {
  6565. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData, "%d", atoi(value) );
  6566. isSuccess = ConfigurationStatus_Accepted;
  6567. }
  6568. else
  6569. {
  6570. isSuccess = ConfigurationStatus_Rejected;
  6571. }
  6572. }
  6573. if(strcmp(key, "ClockAlignedDataInterval") == 0)
  6574. {
  6575. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility == 1)
  6576. {
  6577. //Charger.ClockAlignedDataInterval = Integer.parseInt(value)*1000;
  6578. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData, "%d", atoi(value)*1000 );
  6579. isSuccess = ConfigurationStatus_Accepted;
  6580. }
  6581. else
  6582. {
  6583. isSuccess = ConfigurationStatus_Rejected;
  6584. }
  6585. }
  6586. if(strcmp(key, "ConnectionTimeOut") == 0 )
  6587. {
  6588. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility == 1)
  6589. {
  6590. //Charger.ConnectionTimeOut = Integer.parseInt(value)*1000;
  6591. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData, "%d", atoi(value)*1000 );
  6592. isSuccess = ConfigurationStatus_Accepted;
  6593. }
  6594. else
  6595. {
  6596. isSuccess = ConfigurationStatus_Rejected;
  6597. }
  6598. }
  6599. if(strcmp(key, "HeartbeatInterval") == 0)
  6600. {
  6601. printf("HeartbeatInterval ItemAccessibility: %d\n", ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility);
  6602. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility == 1)
  6603. {
  6604. //Charger.HeartbeatInterval = Integer.parseInt(value)*1000;
  6605. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "%d", atoi(value)/*atoi(value)*1000*/ );
  6606. HeartBeatWaitTime = atoi(value);
  6607. printf("set HeartbeatInterval value \n");
  6608. isSuccess = ConfigurationStatus_Accepted;
  6609. }
  6610. else
  6611. {
  6612. isSuccess = ConfigurationStatus_Rejected;
  6613. }
  6614. }
  6615. if(strcmp(key, "LightIntensity") == 0)
  6616. {
  6617. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility == 1)
  6618. {
  6619. //Charger.LightIntensity = Integer.parseInt(value);
  6620. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData, "%d", atoi(value) );
  6621. isSuccess = ConfigurationStatus_Accepted;
  6622. }
  6623. else
  6624. {
  6625. isSuccess = ConfigurationStatus_Rejected;
  6626. }
  6627. }
  6628. if(strcmp(key, "LocalAuthorizeOffline") == 0)
  6629. {
  6630. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility == 1)
  6631. {
  6632. //Charger.LocalAuthorizeOffline = (value.toLowerCase().equals("true")?true:false);
  6633. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "%d", (strcmp(value, "true")==0) ?TRUE:FALSE );
  6634. isSuccess = ConfigurationStatus_Accepted;
  6635. updateSetting("LocalAuthorizeOffline", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData);
  6636. }
  6637. else
  6638. {
  6639. isSuccess = ConfigurationStatus_Rejected;
  6640. }
  6641. }
  6642. if(strcmp(key, "LocalPreAuthorize") == 0)
  6643. {
  6644. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility == 1)
  6645. {
  6646. //Charger.LocalPreAuthorize = (value.toLowerCase().equals("true")?true:false);
  6647. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "%d", (strcmp(value, "true")==0) ?TRUE:FALSE );
  6648. isSuccess = ConfigurationStatus_Accepted;
  6649. }
  6650. else
  6651. {
  6652. isSuccess = ConfigurationStatus_Rejected;
  6653. }
  6654. }
  6655. if(strcmp(key, "MaxEnergyOnInvalidId") == 0)
  6656. {
  6657. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility == 1)
  6658. {
  6659. //Charger.MaxEnergyOnInvalidId = Integer.parseInt(value);
  6660. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData, "%d", atoi(value) );
  6661. isSuccess = ConfigurationStatus_Accepted;
  6662. }
  6663. else
  6664. {
  6665. isSuccess = ConfigurationStatus_Rejected;
  6666. }
  6667. }
  6668. if(strcmp(key, "MeterValuesAlignedData") == 0)
  6669. {
  6670. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility == 1)
  6671. {
  6672. //Charger.MeterValuesAlignedData = value.toLowerCase();
  6673. int valueLength = strlen(value);
  6674. for(int i = 0; value[i]; i++){
  6675. value[i] = tolower(value[i]);
  6676. }
  6677. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "%s", value );
  6678. isSuccess = ConfigurationStatus_Accepted;
  6679. }
  6680. else
  6681. {
  6682. isSuccess = ConfigurationStatus_Rejected;
  6683. }
  6684. }
  6685. if(strcmp(key, "MeterValuesSampledData") == 0 )
  6686. {
  6687. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility == 1)
  6688. {
  6689. //Charger.MeterValuesSampledData = value.toLowerCase();
  6690. int valueLength = strlen(value);
  6691. for(int i = 0; value[i]; i++){
  6692. value[i] = tolower(value[i]);
  6693. }
  6694. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "%s", value );
  6695. isSuccess = ConfigurationStatus_Accepted;
  6696. }
  6697. else
  6698. {
  6699. isSuccess = ConfigurationStatus_Rejected;
  6700. }
  6701. }
  6702. if(strcmp(key, "MeterValueSampleInterval") == 0)
  6703. {
  6704. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility == 1)
  6705. {
  6706. //Charger.MeterValueSampleInterval = Integer.parseInt(value)*1000;
  6707. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData, "%d", atoi(value)*1000 );
  6708. isSuccess = ConfigurationStatus_Accepted;
  6709. }
  6710. else
  6711. {
  6712. isSuccess = ConfigurationStatus_Rejected;
  6713. }
  6714. }
  6715. if(strcmp(key, "MinimumStatusDuration") == 0)
  6716. {
  6717. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility == 1)
  6718. {
  6719. //Charger.MinimumStatusDuration = Integer.parseInt(value);
  6720. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "%d", atoi(value) );
  6721. isSuccess = ConfigurationStatus_Accepted;
  6722. }
  6723. else
  6724. {
  6725. isSuccess = ConfigurationStatus_Rejected;
  6726. }
  6727. }
  6728. if(strcmp(key, "ResetRetries") == 0)
  6729. {
  6730. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility == 1)
  6731. {
  6732. //Charger.ResetRetries = Integer.parseInt(value);
  6733. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData, "%d", atoi(value) );
  6734. isSuccess = ConfigurationStatus_Accepted;
  6735. }
  6736. else
  6737. {
  6738. isSuccess = ConfigurationStatus_Rejected;
  6739. }
  6740. }
  6741. if(strcmp(key, "ConnectorPhaseRotation") == 0)
  6742. {
  6743. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility == 1)
  6744. {
  6745. //Charger.ConnectorPhaseRotation = value.toLowerCase();
  6746. int valueLength = strlen(value);
  6747. for(int i = 0; value[i]; i++){
  6748. value[i] = tolower(value[i]);
  6749. }
  6750. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", value );
  6751. isSuccess = ConfigurationStatus_Accepted;
  6752. }
  6753. else
  6754. {
  6755. isSuccess = ConfigurationStatus_Rejected;
  6756. }
  6757. }
  6758. if(strcmp(key, "StopTransactionOnEVSideDisconnect") == 0)
  6759. {
  6760. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility == 1)
  6761. {
  6762. //Charger.StopTransactionOnEVSideDisconnect = (value.toLowerCase().equals("true")?true:false);
  6763. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData, "%d", (strcmp(value, "true")==0) ?TRUE:FALSE );
  6764. isSuccess = ConfigurationStatus_Accepted;
  6765. }
  6766. else
  6767. {
  6768. isSuccess = ConfigurationStatus_Rejected;
  6769. }
  6770. }
  6771. if(strcmp(key, "StopTransactionOnInvalidId") == 0)
  6772. {
  6773. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility == 1)
  6774. {
  6775. //Charger.StopTransactionOnInvalidId = (value.toLowerCase().equals("true")?true:false);
  6776. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData, "%d", (strcmp(value, "true")==0) ?TRUE:FALSE );
  6777. isSuccess = ConfigurationStatus_Accepted;
  6778. }
  6779. else
  6780. {
  6781. isSuccess = ConfigurationStatus_Rejected;
  6782. }
  6783. }
  6784. if(strcmp(key, "StopTxnAlignedData") == 0)
  6785. {
  6786. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility == 1)
  6787. {
  6788. //Charger.StopTxnAlignedData = value.toLowerCase();
  6789. int valueLength = strlen(value);
  6790. for(int i = 0; value[i]; i++){
  6791. value[i] = tolower(value[i]);
  6792. }
  6793. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData, "%s", value );
  6794. isSuccess = ConfigurationStatus_Accepted;
  6795. }
  6796. else
  6797. {
  6798. isSuccess = ConfigurationStatus_Rejected;
  6799. }
  6800. }
  6801. if(strcmp(key, "StopTxnSampledData") == 0)
  6802. {
  6803. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility == 1)
  6804. {
  6805. //Charger.StopTxnSampledData = value.toLowerCase();
  6806. int valueLength = strlen(value);
  6807. for(int i = 0; value[i]; i++){
  6808. value[i] = tolower(value[i]);
  6809. }
  6810. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "%s", value );
  6811. isSuccess = ConfigurationStatus_Accepted;
  6812. }
  6813. else
  6814. {
  6815. isSuccess = ConfigurationStatus_Rejected;
  6816. }
  6817. }
  6818. if(strcmp(key, "TransactionMessageAttempts") == 0)
  6819. {
  6820. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility == 1)
  6821. {
  6822. //Charger.TransactionMessageAttempts = Integer.parseInt(value);
  6823. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData, "%d", atoi(value) );
  6824. isSuccess = ConfigurationStatus_Accepted;
  6825. }
  6826. else
  6827. {
  6828. isSuccess = ConfigurationStatus_Rejected;
  6829. }
  6830. }
  6831. if(strcmp(key, "TransactionMessageRetryInterval") == 0)
  6832. {
  6833. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility == 1)
  6834. {
  6835. //Charger.TransactionMessageRetryInterval = Integer.parseInt(value)*1000;
  6836. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData, "%d", atoi(value)*1000 );
  6837. isSuccess = ConfigurationStatus_Accepted;
  6838. }
  6839. else
  6840. {
  6841. isSuccess = ConfigurationStatus_Rejected;
  6842. }
  6843. }
  6844. if(strcmp(key, "UnlockConnectorOnEVSideDisconnect") == 0)
  6845. {
  6846. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility == 1)
  6847. {
  6848. //Charger.UnlockConnectorOnEVSideDisconnect = (value.toLowerCase().equals("true")?true:false);
  6849. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData, "%d", (strcmp(value, "true")==0) ?TRUE:FALSE );
  6850. isSuccess = ConfigurationStatus_Accepted;
  6851. }
  6852. else
  6853. {
  6854. isSuccess = ConfigurationStatus_Rejected;
  6855. }
  6856. }
  6857. if(strcmp(key, "WebSocketPingInterval") == 0)
  6858. {
  6859. if(ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility == 1)
  6860. {
  6861. //Charger.WebSocketPingInterval = Integer.parseInt(value)*1000;
  6862. sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "%d", atoi(value)*1000 );
  6863. isSuccess = ConfigurationStatus_Accepted;
  6864. }
  6865. else
  6866. {
  6867. isSuccess = ConfigurationStatus_Rejected;
  6868. }
  6869. }
  6870. if(strcmp(key, "LocalAuthListEnabled") == 0)
  6871. {
  6872. if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1)
  6873. {
  6874. //Charger.LocalAuthListEnabled = (value.toLowerCase().equals("true")?true:false);
  6875. sprintf((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "%d", (strcmp(value, "true")==0) ?TRUE:FALSE );
  6876. isSuccess = ConfigurationStatus_Accepted;
  6877. updateSetting("LocalAuthListEnabled", (char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData);
  6878. }
  6879. else
  6880. {
  6881. isSuccess = ConfigurationStatus_Rejected;
  6882. }
  6883. }
  6884. return isSuccess;
  6885. }
  6886. int updateSetting(char *key, char *value)
  6887. {
  6888. int isSuccess = FALSE;
  6889. json_object *json_obj = NULL;
  6890. json_object *tmp_obj = NULL;
  6891. //new a base object
  6892. json_obj = json_object_new_object();
  6893. tmp_obj = json_object_new_string(value);
  6894. json_object_object_add(json_obj, key, tmp_obj);
  6895. json_object_to_file("/var/www/settings", json_obj);
  6896. isSuccess = TRUE;
  6897. return isSuccess;
  6898. }
  6899. json_object * getJSONfromFile(char *filename)
  6900. {
  6901. FILE *fptr;
  6902. char str[] = "{}";
  6903. json_object * obj ;
  6904. fptr = fopen(filename, "rw+");
  6905. if(fptr == NULL) //if file does not exist, create it
  6906. {
  6907. fptr = fopen(filename, "w");
  6908. fwrite(str , 1 , sizeof(str) , fptr );
  6909. }
  6910. fclose(fptr);
  6911. //obj = new JSONObject(new JSONTokener((new URI("file:///" + filename)).toURL().openStream()));
  6912. obj = json_object_from_file(filename);
  6913. return obj;
  6914. }
  6915. #define SA struct sockaddr
  6916. #define MAXBUF 1024
  6917. static char m_send_buffer[1024];
  6918. static char m_recv_buffer[1024];
  6919. static int m_socket_data;
  6920. static int sockfd;
  6921. int ReadHttpStatus(int sock){
  6922. char c;
  6923. char buff[1024]="",*ptr=buff+1;
  6924. int bytes_received, status;
  6925. printf("Begin Response ..\n");
  6926. while(bytes_received = recv(sock, ptr, 1, 0)){
  6927. if(bytes_received==-1){
  6928. perror("ReadHttpStatus");
  6929. exit(1);
  6930. }
  6931. if((ptr[-1]=='\r') && (*ptr=='\n' )) break;
  6932. ptr++;
  6933. }
  6934. *ptr=0;
  6935. ptr=buff+1;
  6936. sscanf(ptr,"%*s %d ", &status);
  6937. printf("%s\n",ptr);
  6938. printf("status=%d\n",status);
  6939. printf("End Response ..\n");
  6940. return (bytes_received>0)?status:0;
  6941. }
  6942. //the only filed that it parsed is 'Content-Length'
  6943. int ParseHeader(int sock){
  6944. char c;
  6945. char buff[1024]="",*ptr=buff+4;
  6946. int bytes_received, status;
  6947. printf("Begin HEADER ..\n");
  6948. while(bytes_received = recv(sock, ptr, 1, 0)){
  6949. if(bytes_received==-1){
  6950. perror("Parse Header");
  6951. exit(1);
  6952. }
  6953. if(
  6954. (ptr[-3]=='\r') && (ptr[-2]=='\n' ) &&
  6955. (ptr[-1]=='\r') && (*ptr=='\n' )
  6956. ) break;
  6957. ptr++;
  6958. }
  6959. *ptr=0;
  6960. ptr=buff+4;
  6961. //printf("%s",ptr);
  6962. if(bytes_received){
  6963. ptr=strstr(ptr,"Content-Length:");
  6964. if(ptr){
  6965. sscanf(ptr,"%*s %d",&bytes_received);
  6966. }else
  6967. bytes_received=-1; //unknown size
  6968. printf("Content-Length: %d\n",bytes_received);
  6969. }
  6970. printf("End HEADER ..\n");
  6971. return bytes_received ;
  6972. }
  6973. int httpDownLoadFile(char *location, char *path, char *filename,char *url)
  6974. {
  6975. //char domain[] = "sstatic.net", path[]="stackexchange/img/logos/so/so-logo-med.png";
  6976. int sock, bytes_received;
  6977. char send_data[1024],recv_data[1024], *p;
  6978. struct sockaddr_in server_addr;
  6979. struct hostent *he;
  6980. char ftpbuf[200];
  6981. int systemresult;
  6982. char temp[100];
  6983. memset(ftpbuf, 0, sizeof(ftpbuf));
  6984. sprintf(ftpbuf, "wget --tries=3 -o %s -cb %s ",filename, url);
  6985. //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
  6986. systemresult = system(ftpbuf);
  6987. printf("systemresult=%d\n",systemresult);
  6988. if(systemresult != 0)
  6989. {
  6990. printf("ftpget error!\n");
  6991. return FALSE;
  6992. }
  6993. return TRUE;
  6994. }
  6995. int ftpDownLoadFile(char *location, char *user, char *password, int port, char *path, char *filename)
  6996. {
  6997. //int sockfd;
  6998. static int ret= 0;
  6999. int reclen=0, off;
  7000. int n, fileSize;
  7001. char fname[40];
  7002. char fileSizeBuffer[256];
  7003. int len;
  7004. int k, size, status;
  7005. struct sockaddr_in servaddr,cliaddr;
  7006. struct sockaddr_in servaddr_data;
  7007. struct hostent* server;
  7008. char bufferTemp[500000];
  7009. char *IPbuffer;
  7010. char ftpbuf[200];
  7011. int systemresult;
  7012. char temp[100];
  7013. server = gethostbyname(location);
  7014. // To convert an Internet network
  7015. // address into ASCII string
  7016. IPbuffer = inet_ntoa(*((struct in_addr*)
  7017. server->h_addr_list[0]));
  7018. memset(ftpbuf, 0, sizeof(ftpbuf));
  7019. sprintf(ftpbuf, "ftpget -u %s -p %s %s -P %d %s %s%s",user,password,IPbuffer,port/*21*/,filename,path,filename);
  7020. //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
  7021. systemresult = system(ftpbuf);
  7022. printf("systemresult=%d\n",systemresult);
  7023. if(systemresult != 0)
  7024. {
  7025. printf("ftpget error!\n");
  7026. return FALSE;
  7027. }
  7028. return TRUE;
  7029. }
  7030. int ftpFile(char *location, char *user, char *password, int port, char *path, char *filename)
  7031. {
  7032. //int sockfd;
  7033. static int ret= 0;
  7034. int reclen=0, off;
  7035. int n, fileSize;
  7036. char fname[40];
  7037. char fileSizeBuffer[256];
  7038. int len;
  7039. int k, size, status;
  7040. struct sockaddr_in servaddr,cliaddr;
  7041. struct sockaddr_in servaddr_data;
  7042. struct hostent* server;
  7043. char *IPbuffer;
  7044. char ftpbuf[200];
  7045. int systemresult;
  7046. printf("ftpFile -1\n");
  7047. // To retrieve host information
  7048. server = gethostbyname(location);
  7049. // To convert an Internet network
  7050. // address into ASCII string
  7051. IPbuffer = inet_ntoa(*((struct in_addr*)
  7052. server->h_addr_list[0]));
  7053. memset(ftpbuf, 0, sizeof(ftpbuf));
  7054. /* format : ftpput -u username -p passwd IP target source*/
  7055. sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,port/*21*/,path,filename,filename);
  7056. //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
  7057. systemresult = system(ftpbuf);
  7058. printf("systemresult=%d\n",systemresult);
  7059. if(systemresult != 0)
  7060. {
  7061. printf("ftpput error!\n");
  7062. return FALSE;
  7063. }
  7064. return TRUE;
  7065. }
  7066. int SettingChargingRecord(int target, int transactionId)
  7067. {
  7068. for (int index = 0; index < CHAdeMO_QUANTITY; index++)
  7069. {
  7070. if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == target)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '4'))
  7071. {
  7072. addBuff(target, transactionId, 0);
  7073. return TRUE;
  7074. }
  7075. }
  7076. for (int index = 0; index < CCS_QUANTITY; index++)
  7077. {
  7078. if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == target)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '4'))
  7079. {
  7080. addBuff(target, transactionId, 0);
  7081. return TRUE;
  7082. }
  7083. }
  7084. for (int index = 0; index < GB_QUANTITY; index++)
  7085. {
  7086. if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == target)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '4'))
  7087. {
  7088. addBuff(target, transactionId, 0);
  7089. return TRUE;
  7090. }
  7091. }
  7092. return FALSE;
  7093. }
  7094. int addBuff(int gun_idx, int user_id, int cmd_sn)
  7095. {
  7096. int isSuccess = FALSE;
  7097. char *query = NULL;
  7098. sqlite3_stmt *stmt;
  7099. int rc; // return code
  7100. char str[20];
  7101. sprintf(str,"%d",user_id);
  7102. 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 */
  7103. sqlite3_bind_text(stmt, 1, str, -1, SQLITE_STATIC); /* 2 */
  7104. rc = sqlite3_step(stmt); /* 3 */
  7105. if (rc != SQLITE_DONE) {
  7106. printf("ERROR inserting data: %s\n", sqlite3_errmsg(db));
  7107. goto out;
  7108. }
  7109. sqlite3_finalize(stmt);
  7110. free(query);
  7111. out:
  7112. /*
  7113. * close SQLite database
  7114. */
  7115. sqlite3_close(db);
  7116. printf("database closed.\n");
  7117. return isSuccess;
  7118. }
  7119. /**
  7120. * Place the contents of the specified file into a memory buffer
  7121. *
  7122. * @param[in] filename The path and name of the file to read
  7123. * @param[out] filebuffer A pointer to the contents in memory
  7124. * @return status 0 success, 1 on failure
  7125. */
  7126. int get_file_contents(const char* filename, char** outbuffer) {
  7127. FILE* file = NULL;
  7128. long filesize;
  7129. const int blocksize = 1;
  7130. size_t readsize;
  7131. char* filebuffer;
  7132. // Open the file
  7133. file = fopen(filename, "r");
  7134. if (NULL == file)
  7135. {
  7136. printf("'%s' not opened\n", filename);
  7137. exit(EXIT_FAILURE);
  7138. }
  7139. // Determine the file size
  7140. fseek(file, 0, SEEK_END);
  7141. filesize = ftell(file);
  7142. rewind (file);
  7143. // Allocate memory for the file contents
  7144. filebuffer = (char*) malloc(sizeof(char) * filesize);
  7145. *outbuffer = filebuffer;
  7146. if (filebuffer == NULL)
  7147. {
  7148. fputs ("malloc out-of-memory", stderr);
  7149. exit(EXIT_FAILURE);
  7150. }
  7151. // Read in the file
  7152. readsize = fread(filebuffer, blocksize, filesize, file);
  7153. if (readsize != filesize)
  7154. {
  7155. fputs ("didn't read file completely",stderr);
  7156. exit(EXIT_FAILURE);
  7157. }
  7158. // Clean exit
  7159. fclose(file);
  7160. return EXIT_SUCCESS;
  7161. }
  7162. //Command Port, Receive Answer
  7163. static int ftp_recv_respond(int m_socket_cmd, char *resp, int len)
  7164. {
  7165. int ret;
  7166. int off;
  7167. len -= 1;
  7168. for(off=0; off<len; off+=ret)
  7169. {
  7170. ret = recv(m_socket_cmd, &resp[off], 1 ,0);
  7171. // ret = socket_recv(m_socket_cmd, &resp[off], 1);
  7172. if(ret < 0)
  7173. {
  7174. printf("recv respond error(ret=%d)!\r\n", ret);
  7175. return 0;
  7176. }
  7177. if(resp[off] == '\n')
  7178. {
  7179. break;
  7180. }
  7181. }
  7182. resp[off+1] = 0;
  7183. printf("respond:%s", resp);
  7184. return atoi(resp);
  7185. }
  7186. static int selectSqlCount = 0;
  7187. void getMemory(char** s, int num)
  7188. {
  7189. *s = (char*)malloc(sizeof(char) * num);
  7190. printf("s = %p\n", s);
  7191. printf("*s = %p\n", *s);
  7192. }
  7193. static int callback(void *data, int argc, char **argv, char **azColName){
  7194. int i;
  7195. printf("%s: ", (const char*)data);
  7196. selectSqlCount = argc;
  7197. for(i = 0; i<argc; i++){
  7198. printf("%s = %s\n", azColName[i], argv[i] ? argv[i] : "NULL");
  7199. }
  7200. printf("\n");
  7201. return 0;
  7202. }
  7203. static int versioncallback(void *data, int argc, char **argv, char **azColName){
  7204. int i;
  7205. //printf("%s:\n", (const char*)data);
  7206. localversion = argv[5] ? atoi(argv[5]) : 0;
  7207. printf("localversion=%d\n", localversion);
  7208. return 0;
  7209. }
  7210. static int IdTagcallback(void *data, int argc, char **argv, char **azColName){
  7211. int i;
  7212. //printf("%s:\n", (const char*)data);
  7213. sprintf(idTagAuthorization,"%s", argv[1] ? argv[1] : "NULL");
  7214. printf("IdTag=%s\n", idTagAuthorization);
  7215. return 0;
  7216. }
  7217. static int deleteIdTagcallback(void *data, int argc, char **argv, char **azColName){
  7218. int i;
  7219. //printf("%s:\n", (const char*)data);
  7220. #if 1
  7221. for(i=0; i<argc; i++){
  7222. printf("%s = %s", azColName[i], argv[i] ? argv[i] : "NULL");
  7223. }
  7224. printf("");
  7225. #endif
  7226. // localversion = argv[5] ? atoi(argv[5]) : 0;
  7227. // printf("localversion=%d\n", localversion);
  7228. return 0;
  7229. }
  7230. void OCPP_getListVerion()
  7231. {
  7232. int ver = 0;
  7233. int isSuccess = FALSE;
  7234. int rc = 0;
  7235. // const char* data = "Callback function called";
  7236. char sql[100];
  7237. char zErrMsg[100];
  7238. memset(sql, 0, 100);
  7239. memset(zErrMsg, 0, 100);
  7240. strcpy(sql, "select * from ocpp_auth_local order by idx desc");
  7241. /* Execute SQL statement */
  7242. printf("OCPP_getListVerion -1\n");
  7243. rc = sqlite3_exec(db, sql, versioncallback, 0, &zErrMsg);
  7244. printf("OCPP_getListVerion -2\n");
  7245. printf("rc=%d\n",rc);
  7246. if( rc != SQLITE_OK ){
  7247. printf("SQL error: %s", zErrMsg);
  7248. //sqlite3_free(zErrMsg);
  7249. }else{
  7250. printf("Operation done successfully");
  7251. }
  7252. printf("OCPP_getListVerion -3\n");
  7253. //return ver;
  7254. }
  7255. void OCPP_getIdTag(char *idTag)
  7256. {
  7257. int ver = 0;
  7258. int isSuccess = FALSE;
  7259. int rc = 0;
  7260. // const char* data = "Callback function called";
  7261. char sql[100];
  7262. char zErrMsg[100];
  7263. memset(sql, 0, 100);
  7264. memset(zErrMsg, 0, 100);
  7265. sprintf(sql,"select * from ocpp_auth_local where idtag='%s'", idTag);
  7266. /* Execute SQL statement */
  7267. printf("OCPP_getIdTag -1\n");
  7268. rc = sqlite3_exec(db, sql, versioncallback, 0, &zErrMsg);
  7269. printf("OCPP_getIdTag -2\n");
  7270. printf("rc=%d\n",rc);
  7271. if( rc != SQLITE_OK ){
  7272. printf("SQL error: %s", zErrMsg);
  7273. //sqlite3_free(zErrMsg);
  7274. }else{
  7275. printf("Operation done successfully");
  7276. }
  7277. printf("OCPP_getIdTag -3\n");
  7278. //return ver;
  7279. }
  7280. int OCPP_cleanLocalList()
  7281. {
  7282. char * sqlcleanLocalList = "delete from ocpp_auth_local";
  7283. char *errMsg = 0;
  7284. int rc =sqlite3_exec(db, sqlcleanLocalList, 0, 0, &errMsg);
  7285. if (SQLITE_OK != rc)
  7286. {
  7287. printf("%s\n",errMsg);
  7288. return FALSE;
  7289. }
  7290. else
  7291. {
  7292. printf("delete ocpp_auth_local table successfully\n");
  7293. }
  7294. return TRUE;
  7295. }
  7296. int OCPP_addLocalList_1(int version, char *idTag, char *parentTage, char *expiryDate, char *status)
  7297. {
  7298. int isSuccess = FALSE;
  7299. int ret = 0;
  7300. const char* data = "Callback function called";
  7301. char sql[200];
  7302. char zErrMsg[100];
  7303. // char* sql = NULL;
  7304. // char* zErrMsg = NULL;
  7305. // sql = (char*)malloc(sizeof(char)*200); // getMemory(&sql, 200);
  7306. // zErrMsg = (char*)malloc(sizeof(char)*100); // getMemory(&zErrMsg, 100);
  7307. memset(sql, 0, 200);
  7308. memset(zErrMsg, 0, 100);
  7309. 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);
  7310. printf("sql:%s\n", sql);
  7311. printf("OCPP_addLocalList -5\n");
  7312. /* Execute SQL statement */
  7313. //zErrMsg = 0;
  7314. ret = sqlite3_exec(db, sql, callback, 0, &zErrMsg);
  7315. printf("OCPP_addLocalList -6\n");
  7316. if( ret != SQLITE_OK ){
  7317. printf("SQL error: %s\n", zErrMsg);
  7318. // free(zErrMsg);
  7319. // free(sql);
  7320. return isSuccess;
  7321. }
  7322. printf("successfully Insert records created\n");
  7323. isSuccess = TRUE;
  7324. return isSuccess;
  7325. }
  7326. void OCPP_deleteIdTag(char *idTag)
  7327. {
  7328. int ver = 0;
  7329. int isSuccess = FALSE;
  7330. int rc = 0;
  7331. char sql[100];
  7332. char zErrMsg[100];
  7333. memset(sql, 0, 100);
  7334. memset(zErrMsg, 0, 100);
  7335. sprintf(sql,"DELETE from ocpp_auth_local where idtag='%s'; SELECT * from ocpp_auth_local;", idTag);
  7336. /* Execute SQL statement */
  7337. printf("OCPP_getIdTag -1\n");
  7338. rc = sqlite3_exec(db, sql, deleteIdTagcallback, 0, &zErrMsg);
  7339. printf("OCPP_getIdTag -2\n");
  7340. printf("rc=%d\n",rc);
  7341. if( rc != SQLITE_OK ){
  7342. printf("SQL error: %s", zErrMsg);
  7343. //sqlite3_free(zErrMsg);
  7344. }else{
  7345. printf("Operation done successfully");
  7346. }
  7347. printf("OCPP_getIdTag -3\n");
  7348. }
  7349. int OCPP_addLocalList(int version, char *idTag, char *parentTage, char *expiryDate, char *status)
  7350. {
  7351. int isSuccess = FALSE;
  7352. int ret = 0;
  7353. const char* data = "Callback function called";
  7354. char sql[200];
  7355. char zErrMsg[100];
  7356. memset(sql, 0, 200);
  7357. memset(zErrMsg, 0, 100);
  7358. /* selectFromTable */
  7359. // sql = select * from ocpp_auth_local where starring='Jodie Foster';
  7360. printf("OCPP_addLocalList -1\n");
  7361. sprintf(sql,"select * from ocpp_auth_local where idtag='%s'", idTag);
  7362. printf("OCPP_addLocalList -2\n");
  7363. /* Execute SQL statement */
  7364. selectSqlCount = 0;
  7365. ret = sqlite3_exec(db, sql, callback, (void*)data, &zErrMsg);
  7366. printf("OCPP_addLocalList -3\n");
  7367. if( ret != SQLITE_OK ){
  7368. printf("Error SQL: %s\n", zErrMsg);
  7369. }
  7370. printf("successfully select operation done\n");
  7371. memset(sql, 0, 200);
  7372. memset(zErrMsg, 0, 100);
  7373. if(selectSqlCount == 0)
  7374. {
  7375. printf("OCPP_addLocalList -4\n");
  7376. //Insert
  7377. //sql = "INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) " "VALUES (1, ?�Paul?? 32, ?�California?? 20000.00 ); ";
  7378. 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);
  7379. printf("sql:%s\n", sql);
  7380. printf("OCPP_addLocalList -5\n");
  7381. /* Execute SQL statement */
  7382. //zErrMsg = 0;
  7383. ret = sqlite3_exec(db, sql, callback, 0, &zErrMsg);
  7384. printf("OCPP_addLocalList -6\n");
  7385. if( ret != SQLITE_OK ){
  7386. printf("SQL error: %s\n", zErrMsg);
  7387. return isSuccess;
  7388. }
  7389. printf("successfully Insert records created\n");
  7390. isSuccess = TRUE;
  7391. }
  7392. else
  7393. {
  7394. printf("OCPP_addLocalList -7\n");
  7395. //Update
  7396. /* Create merged SQL statement */
  7397. 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);
  7398. printf("OCPP_addLocalList -8\n");
  7399. /* Execute SQL statement */
  7400. ret = sqlite3_exec(db, sql, callback, (void*)data, &zErrMsg);
  7401. printf("OCPP_addLocalList -9\n");
  7402. if( ret != SQLITE_OK ){
  7403. printf("SQL error: %s\n", zErrMsg);
  7404. //sqlite3_free(zErrMsg);
  7405. //sqlite3_free(sql);
  7406. return isSuccess;
  7407. }
  7408. printf("Successfully operation done \n");
  7409. isSuccess = TRUE;
  7410. }
  7411. return isSuccess;
  7412. }
  7413. char *GetOcppServerURL()
  7414. {
  7415. memset(OcppProtocol, 0, sizeof(OcppProtocol));
  7416. memset(OcppHost, 0, sizeof(OcppHost));
  7417. memset(OcppTempPath, 0, sizeof(OcppTempPath));
  7418. sscanf(ShmOCPP16Data->OcppServerURL,
  7419. "%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
  7420. OcppProtocol, OcppHost, &OcppPort, OcppTempPath);
  7421. printf("OcppProtocol =%s\n",OcppProtocol);
  7422. printf("OcppHost =%s\n",OcppHost);
  7423. printf("OcppPort =%d\n",OcppPort);
  7424. printf("OcppTempPath =%s\n",OcppTempPath);
  7425. return OcppHost;
  7426. }
  7427. char *GetOcppPath()
  7428. {
  7429. if(OcppTempPath == NULL)
  7430. {
  7431. sprintf(OcppPath,"/%s",OcppTempPath,ShmOCPP16Data->ChargeBoxId);
  7432. }
  7433. else
  7434. {
  7435. sprintf(OcppPath,"/%s%s",OcppTempPath,ShmOCPP16Data->ChargeBoxId);
  7436. }
  7437. printf("OcppPath=%s\n",OcppPath);
  7438. return OcppPath;
  7439. }
  7440. int GetOcppPort()
  7441. {
  7442. return OcppPort;
  7443. }
  7444. void Send(struct json_object *message)
  7445. {
  7446. printf("Send -1 \n");
  7447. printf("message=%s\n",json_object_to_json_string(message));
  7448. LWS_Send(json_object_to_json_string(message));
  7449. }
  7450. void LWS_Send(char * str)
  7451. {
  7452. pthread_mutex_lock(&lock);
  7453. printf("LWS_Send -1-1 \n");
  7454. printf("message=%s\n",str);
  7455. memset(SendBuffer,0,SendBufLen);
  7456. sprintf((char *)SendBuffer, "%s", str);
  7457. printf("LWS_Send -2 \n");
  7458. pthread_mutex_unlock(&lock);
  7459. lws_callback_on_writable(wsi_client);
  7460. lws_service(context, 10000);//timeout_ms
  7461. //usleep(10000); // 等�??��?微�?
  7462. printf("Send message\n");
  7463. }