#include "Module_OcppBackend.h" #include "define.h" //ChargePointMaxProfile #define ChargePointMaxProfile_JSON "/Storage/OCPP/ChargePointMaxProfile.json" //TxDefaultProfile #define TxDefaultProfile_0_JSON "/Storage/OCPP/TxDefaultProfile_0.json" struct SysConfigAndInfo *ShmSysConfigAndInfo; struct StatusCodeData *ShmStatusCodeData; struct PsuData *ShmPsuData ; struct OCPP16Data *ShmOCPP16Data; //ConfigurationMaxKeys #define GetConfigurationMaxKeysNUM _GetConfiguration_CNT pthread_mutex_t lock_send = PTHREAD_MUTEX_INITIALIZER; char queuedata[QUEUE_MESSAGE_LENGTH] = {0}; //================================= // StatusNotification cycle //================================= static int server_cycle_Status = 120; //=============================== // Configuration: unknownkey //=============================== static char unknownkey[10][20] = {0}; static int UnknownKeynum = 0; //=============================== // Gun Total Numbers //=============================== static int gunTotalNumber = 0; static uint8_t gunType[4] = {0}; //=============================== // Local List Version //=============================== static int localversion=0; static char idTagAuthorization[32] = {0}; //=============================== // OCPP sign variable //=============================== static int server_sign = FALSE; int server_pending = FALSE; static int BootNotificationInterval = 0; static int SystemInitial = 0;//= CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY; // System Boot UP //=============================== // OCPP auth variable //=============================== static int authorizeRetryTimes = 0; //number of Retry times //=============================== // OCPP other variables //=============================== static int HeartBeatWaitTime = 10; static int FirstHeartBeat = 0; static int FirmwareStatusNotificationStatus = FIRMWARE_STATUS_IDLE; // Idle static int DiagnosticsStatusNotificationStatus = DIAGNOSTIC_STATUS_IDLE; // Idle static char CurrentChargingProfileScheduleStr[30] = {0}; //======================================== // OCPP status/previous related variables //======================================== static int GunStatusInterval = 10; static uint8_t statusModeChage[CONNECTOR_QUANTITY] = {FALSE}; static uint8_t ChademoPreviousSystemStatus[(CHAdeMO_QUANTITY>0?CHAdeMO_QUANTITY:1)]; static uint8_t CcsPreviousSystemStatus[(CCS_QUANTITY>0?CCS_QUANTITY:1)]; static uint8_t GbPreviousSystemStatus[(GB_QUANTITY>0?GB_QUANTITY:1)]; static uint8_t AcPreviousSystemStatus[(AC_QUANTITY>0?AC_QUANTITY:1)]; static uint8_t DoPreviousSystemStatus[(CONNECTOR_QUANTITY>0?CONNECTOR_QUANTITY:1)]; static uint8_t ChademoPreviousConnectorPlugIn[(CHAdeMO_QUANTITY>0?CHAdeMO_QUANTITY:1)]; static uint8_t CcsPreviousConnectorPlugIn[(CCS_QUANTITY>0?CCS_QUANTITY:1)]; static uint8_t GbPreviousConnectorPlugIn[(GB_QUANTITY>0?GB_QUANTITY:1)]; static uint8_t AcPreviousConnectorPlugIn[(AC_QUANTITY>0?AC_QUANTITY:1)]; static uint8_t DoPreviousConnectorPlugIn[(CONNECTOR_QUANTITY>0?CONNECTOR_QUANTITY:1)]; static int TransactionMessageAttemptsValue = 0; static int TransactionMessageRetryIntervalValue = 0; static int TempMeterValueInterval = 0; static struct OCPPAuthLocalElemet { int listVersionInt; char idTagstr[20]; char parentIdTag[20]; char expiryDate[30]; char idTagstatus[16]; }idTagQuery; //============================================= // OCPP HeartBeat Response Not Receive Counts //============================================ static int HeartBeatWithNOResponse = 0; extern void ChageWebSocketPingInterval(int WebSocketPingInterval); extern sqlite3 *db; int TransactionMessageAttemptsGet(void); int TransactionMessageRetryIntervalGet(void); int GetOcppConnStatus(void); void SetOcppConnStatus(uint8_t status); int setKeyValue(char *key, char *value); void OCPP_get_TableAuthlocalAllData(void); void processUnkownKey(void); struct StructOCPPMeterValue { unsigned char TimeStamp[28]; struct StructSampledValue SampledValue[10]; }; struct ClientTime { unsigned int Heartbeat; unsigned int StatusNotification[CONNECTOR_QUANTITY]; unsigned int StartTransaction; unsigned int StopTransaction; unsigned int MeterValues[CONNECTOR_QUANTITY]; }clientTime; typedef union { //Operations Initiated by Central System unsigned char CsMsgValue[CONNECTOR_QUANTITY]; struct { //CsMsgValue[0] unsigned char StatusNotificationReq:1; //bit 0, unsigned char StatusNotificationConf:1; //bit 1, unsigned char TriggerMeterValue:1; //bit 2, unsigned char :5; //bit 5~7 }bits[CONNECTOR_QUANTITY]; }CpinitiateMsg; CpinitiateMsg cpinitateMsg; //GetConfiguration Array struct StructConfigurationKeyItems staticKeyArray[GetConfigurationMaxKeysNUM]={0}; struct StructConfigurationKey staticResponseConfigurationKeyArray[GetConfigurationMaxKeysNUM]={0}; struct StructConfigurationKeyItems staticResponseUnknownKey[10]={0}; struct StructLocalAuthorizationList staticLocalAuthorizationList[500]={0}; #if 0 static char *ChargePointErrorCodeStr[] = { MACROSTR(ConnectorLockFailure), MACROSTR(EVCommunicationError), MACROSTR(GroundFailure), MACROSTR(HighTemperature), MACROSTR(InternalError), MACROSTR(LocalListConflict), MACROSTR(NoError), MACROSTR(OtherError), MACROSTR(OverCurrentFailure), MACROSTR(OverVoltage), MACROSTR(PowerMeterFailure), MACROSTR(PowerSwitchFailure), MACROSTR(ReaderFailure), MACROSTR(ResetFailure), MACROSTR(UnderVoltage), MACROSTR(WeakSignal) }; #endif static char * ChargePointStatusStr[] = { MACROSTR(Available), MACROSTR(Preparing), MACROSTR(Charging), MACROSTR(SuspendedEVSE), MACROSTR(SuspendedEV), MACROSTR(Finishing), MACROSTR(Reserved), MACROSTR(Unavailable), MACROSTR(Faulted) }; static char *RegistrationStatusStr[] = { MACROSTR(Accepted), MACROSTR(Pending), MACROSTR(Rejected) }; static char *AvailabilityTypeStr[] = { MACROSTR(Inoperative), MACROSTR(Operative) }; static char *AvailabilityStatusStr[] = { MACROSTR(Accepted), MACROSTR(Rejected), MACROSTR(Scheduled) }; static char *ConfigurationStatusStr[] = { MACROSTR(Accepted), MACROSTR(Rejected), MACROSTR(RebootRequired), MACROSTR(NotSupported) }; static char *ClearCacheStatusStr[] = { MACROSTR(Accepted), MACROSTR(Rejected) }; static char *ChargingProfilePurposeTypeStr[] = { MACROSTR(ChargePointMaxProfile), MACROSTR(TxDefaultProfile), MACROSTR(TxProfile) }; static char *ChargingProfileStatusStr[] = { MACROSTR(Accepted), MACROSTR(Rejected), MACROSTR(NotSupported) }; static char *ClearChargingProfileStatusStr[] = { MACROSTR(Accepted), MACROSTR(Unknown) }; static char *GetCompositeScheduleStatusStr[] = { MACROSTR(Accepted), MACROSTR(Rejected) }; static char *UpdateTypeStr[] = { MACROSTR(Differential), MACROSTR(Full) }; static char *UpdateStatusStr[] = { MACROSTR(Accepted), MACROSTR(Failed), MACROSTR(NotSupported), MACROSTR(VersionMismatch) }; static char *RemoteStartStopStatusStr[] = { MACROSTR(Accepted), MACROSTR(Rejected) }; static char *ReservationStatusStr[] = { MACROSTR(Accepted), MACROSTR(Faulted), MACROSTR(Occupied), MACROSTR(Rejected), MACROSTR(Unavailable) }; static char *ResetTypeStr[] = { MACROSTR(Hard), MACROSTR(Soft) }; static char *ResetStatusStr[] = { MACROSTR(Accepted), MACROSTR(Rejected) }; static char * DiagnosticsStatusStr[] = { MACROSTR(Idle), MACROSTR(Uploaded), MACROSTR(UploadFailed), MACROSTR(Uploading) }; static char * FirmwareStatusStr[] = { MACROSTR(Downloaded), MACROSTR(DownloadFailed), MACROSTR(Downloading), MACROSTR(Idle), MACROSTR(InstallationFailed), MACROSTR(Installing), MACROSTR(Installed) }; static char * MessageTriggerStr[] = { MACROSTR(BootNotification), MACROSTR(DiagnosticsStatusNotification), MACROSTR(FirmwareStatusNotification), MACROSTR(Heartbeat), MACROSTR(MeterValues), MACROSTR(StatusNotification) }; static char * TriggerMessageStatusStr[] = { MACROSTR(Accepted), MACROSTR(Rejected), MACROSTR(NotImplemented) }; static char * UnlockStatusStr[] = { MACROSTR(Unlocked), MACROSTR(UnlockFailed), MACROSTR(NotSupported) }; #if 0 static char * StopTransactionReasonStr[] = { MACROSTR(EmergencyStop), MACROSTR(EVDisconnected), MACROSTR(HardReset), MACROSTR(Local), MACROSTR(Other), MACROSTR(PowerLoss), MACROSTR(Reboot), MACROSTR(Remote), MACROSTR(SoftReset), MACROSTR(UnlockCommand), MACROSTR(DeAuthorized) }; #endif static char * CancelReservationStatusStr[] = { MACROSTR(Accepted), MACROSTR(Rejected) }; static char * ReadingContextStr[] = { MACROSTR(Interruption.Begin), MACROSTR(Interruption.End), MACROSTR(Other), MACROSTR(Sample.Clock), MACROSTR(Sample.Periodic), MACROSTR(Transaction.Begin), MACROSTR(Transaction.End), MACROSTR(Trigger) }; static char * ValueFormatStr[] = { MACROSTR(Raw), MACROSTR(SignedData) }; static char * MeasurandStr[] = { MACROSTR(Current.Export), MACROSTR(Current.Import), MACROSTR(Current.Offered), MACROSTR(Energy.Active.Export.Register), MACROSTR(Energy.Active.Import.Register), MACROSTR(Energy.Reactive.Export.Register), MACROSTR(Energy.Reactive.Import.Register), MACROSTR(Energy.Active.Export.Interval), MACROSTR(Energy.Active.Import.Interval), MACROSTR(Energy.Reactive.Export.Interval), MACROSTR(Energy.Reactive.Import.Interval), MACROSTR(Frequency), MACROSTR(Power.Active.Export), MACROSTR(Power.Active.Import), MACROSTR(Power.Factor), MACROSTR(Power.Offered), MACROSTR(Power.Reactive.ExportMACROSTR), MACROSTR(Power.Reactive.Import), MACROSTR(RPM), MACROSTR(SoC), MACROSTR(Temperature), MACROSTR(Voltage) }; static char * LocationStr[] = { MACROSTR(Body), MACROSTR(Cable), MACROSTR(EV), MACROSTR(Inlet), MACROSTR(Outlet) }; static char * PhaseStr[] = { MACROSTR(L1), MACROSTR(L2), MACROSTR(L3), MACROSTR(N), MACROSTR(L1-N), MACROSTR(L2-N), MACROSTR(L3-N), MACROSTR(L1-L2), MACROSTR(L2-L3), MACROSTR(L3-L1) }; static char * UnitOfMeasureStr[] = { MACROSTR(Wh), MACROSTR(kWh), MACROSTR(varh), MACROSTR(kvarh), MACROSTR(W), MACROSTR(kW), MACROSTR(VA), MACROSTR(kVA), MACROSTR(var), MACROSTR(kvar), MACROSTR(A), MACROSTR(V), MACROSTR(Celsius), MACROSTR(Fahrenheit), MACROSTR(K), MACROSTR(Percent) }; //========================================== // Check time passed since today //========================================== long long DiffTimebWithNow(struct timeb ST) { //return milli-second struct timeb ET; long long StartTime,StopTime; ftime(&ET); StartTime=(long long)ST.time; StopTime=(long long)ET.time; return ((StopTime-StartTime)*1000) + (ET.millitm-ST.millitm); } int getTimePassSinceToday() { int result = -1; static time_t lastTime; time_t t; struct tm *tmStartToday; struct timeb tbStartToday; t=time(NULL); if(difftime(t, lastTime)>0) { tmStartToday=localtime(&t); tmStartToday->tm_hour = 0; tmStartToday->tm_min = 0; tmStartToday->tm_sec = 0; tbStartToday.time = mktime(tmStartToday); tbStartToday.millitm = 0; result = DiffTimebWithNow(tbStartToday)/1000; lastTime = t; } return result; } void getNowDatetime(uint8_t *data) { time_t t = time(NULL); struct tm tm = *localtime(&t); sprintf((char*)data, "%04d-%02d-%02dT%02d:%02d:%02dZ", tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec); } //========================================== // GetCompositeSchedule logic related function //========================================== int DiffTimebSec(struct timeb ST, struct timeb ET) { //return milli-second unsigned int StartTime,StopTime; StartTime=(unsigned int)ST.time; StopTime=(unsigned int)ET.time; return (StopTime-StartTime); } int DiffTimebWithNowSec(struct timeb ST) { //return milli-second struct timeb ET; unsigned int StartTime,StopTime; ftime(&ET); StartTime=(unsigned int)ST.time; StopTime=(unsigned int)ET.time; return (StopTime-StartTime); } int getStartStop(uint8_t *start, uint8_t *stop) { int result = -1; struct tm tmStart; struct timeb tbStart; struct tm tmStop; struct timeb tbStop; if((sscanf((char*)start, "%4d-%2d-%2dT%2d:%2d:%2d", &tmStart.tm_year, &tmStart.tm_mon, &tmStart.tm_mday, &tmStart.tm_hour, &tmStart.tm_min, &tmStart.tm_sec) == 6) && (sscanf((char*)stop, "%4d-%2d-%2dT%2d:%2d:%2d", &tmStop.tm_year, &tmStop.tm_mon, &tmStop.tm_mday, &tmStop.tm_hour, &tmStop.tm_min, &tmStop.tm_sec) == 6)) { //DEBUG_INFO("Start: %d-%d-%d %d:%d:%d\n", tmStart.tm_year, tmStart.tm_mon, tmStart.tm_mday, tmStart.tm_hour, tmStart.tm_min, tmStart.tm_sec); //DEBUG_INFO("Stop: %d-%d-%d %d:%d:%d\n", tmStop.tm_year, tmStop.tm_mon, tmStop.tm_mday, tmStop.tm_hour, tmStop.tm_min, tmStop.tm_sec); tmStart.tm_year -= 1900; tmStart.tm_mon -= 1; tbStart.time = mktime(&tmStart); tbStart.millitm = 0; tmStop.tm_year -= 1900; tmStop.tm_mon -= 1; tbStop.time = mktime(&tmStop); tbStop.millitm = 0; result = DiffTimebSec(tbStart, tbStop); //DEBUG_INFO("getStartStop(): %d\n", result); } else { DEBUG_WARN("Start or stop date parsing error.\r\n"); } return result; } int isOvertNow(uint8_t *start) { int result = YES; struct tm tmStart; struct timeb tbStart; if((sscanf((char*)start, "%4d-%2d-%2dT%2d:%2d:%2d", &tmStart.tm_year, &tmStart.tm_mon, &tmStart.tm_mday, &tmStart.tm_hour, &tmStart.tm_min, &tmStart.tm_sec) == 6)) { //DEBUG_INFO("Start: %d-%d-%d %d:%d:%d\n", tmStart.tm_year, tmStart.tm_mon, tmStart.tm_mday, tmStart.tm_hour, tmStart.tm_min, tmStart.tm_sec); tmStart.tm_year -= 1900; tmStart.tm_mon -= 1; tbStart.time = mktime(&tmStart); tbStart.millitm = 0; if(DiffTimebWithNowSec(tbStart) <= 0) result = NO; } else { DEBUG_WARN("Start date parsing error.\r\n"); } return result; } int getStartSinceRecurring(uint8_t *start, uint8_t *stop, uint8_t isDaily) { int result = -1; struct tm tmStart; struct timeb tbStart; struct tm tmStop; struct timeb tbStop; if((sscanf((char*)start, "%4d-%2d-%2dT%2d:%2d:%2d", &tmStart.tm_year, &tmStart.tm_mon, &tmStart.tm_mday, &tmStart.tm_hour, &tmStart.tm_min, &tmStart.tm_sec) == 6) && (sscanf((char*)stop, "%4d-%2d-%2dT%2d:%2d:%2d", &tmStop.tm_year, &tmStop.tm_mon, &tmStop.tm_mday, &tmStop.tm_hour, &tmStop.tm_min, &tmStop.tm_sec) == 6)) { tmStart.tm_year -= 1900; tmStart.tm_mon -= 1; tbStart.time = mktime(&tmStart); tbStart.millitm = 0; tmStop.tm_year -= 1900; tmStop.tm_mon -= 1; tbStop.time = mktime(&tmStop); tbStop.millitm = 0; result = DiffTimebSec(tbStart, tbStop)%(isDaily?86400:604800); } return result; } void checkCompositeSchedule(uint8_t connectorId, uint32_t durationReq, struct StructChargingProfile *compositeProfile) { FILE *fp; char profileFileName[128]; char *line = NULL; size_t len = 0; time_t CurrentTime; struct tm *tmComposite; struct StructChargingProfile maxProfile; struct StructChargingProfile defaultTxProfile; struct StructChargingProfile txProfile; struct StructChargingSchedulePeriod tmpPeriod; uint8_t limitMax=0; uint8_t limitDef=0; uint8_t limitTx=0; int compositePeriodIdx = 0; CurrentTime = time(NULL); tmComposite=localtime(&CurrentTime); sprintf((char*)compositeProfile->ChargingSchedule.StartSchedule, "%04d-%02d-%02dT%02d:%02d:%02dZ", tmComposite->tm_year+1900, tmComposite->tm_mon+1, tmComposite->tm_mday, tmComposite->tm_hour, tmComposite->tm_min, tmComposite->tm_sec); sprintf((char*)compositeProfile->ChargingSchedule.ChargingRateUnit, "A"); compositeProfile->ChargingSchedule.Duration = durationReq; for(int idxPeriod=0;idxPeriodChargingSchedule.ChargingSchedulePeriod);idxPeriod++) { compositeProfile->ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = -1; compositeProfile->ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = -1; compositeProfile->ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = 3; } compositeProfile->ChargingProfileId = 0; compositeProfile->StackLevel = 99 ; sprintf((char*)compositeProfile->ChargingProfileKind ,"Absolute"); maxProfile.ChargingProfileId = -1; defaultTxProfile.ChargingProfileId = -1; txProfile.ChargingProfileId = -1; maxProfile.ChargingSchedule.Duration = -1; defaultTxProfile.ChargingSchedule.Duration = -1; txProfile.ChargingSchedule.Duration = -1; system("yes|rm /tmp/*.json"); system("cp /Storage/OCPP/*.json /tmp"); /* * Search valid charging profile */ //DEBUG_INFO("====================================\n"); // Search tx profile sprintf(profileFileName, "/tmp/TxProfile_%d.json", connectorId); if((access(profileFileName, F_OK))!=-1) { fp = fopen(profileFileName, "r"); for(int idxPeriod=0;idxPeriod= txProfile.StackLevel) ) { if((json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom") != NULL) && (json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo") != NULL) ) { struct tm tmFrom, tmTo; struct timeb tbFrom, tbTo; if((sscanf((char*)json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom")), "%4d-%2d-%2dT%2d:%2d:%2d", &tmFrom.tm_year, &tmFrom.tm_mon, &tmFrom.tm_mday, &tmFrom.tm_hour, &tmFrom.tm_min, &tmFrom.tm_sec) == 6) && (sscanf((char*)json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo")), "%4d-%2d-%2dT%2d:%2d:%2d", &tmTo.tm_year, &tmTo.tm_mon, &tmTo.tm_mday, &tmTo.tm_hour, &tmTo.tm_min, &tmTo.tm_sec) == 6)) { tmFrom.tm_year -= 1900; tmFrom.tm_mon -= 1; tbFrom.time = mktime(&tmFrom); tmTo.tm_year -= 1900; tmTo.tm_mon -= 1; tbTo.time = mktime(&tmTo); if((DiffTimebWithNowSec(tbFrom)>=0) && (DiffTimebWithNowSec(tbTo)<=0)) { if(txProfile.ChargingProfileId == -1) DEBUG_INFO("TxProfile found.\n"); else DEBUG_INFO("TxProfile updated.\n"); // Required item txProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")); txProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")); sprintf((char*)txProfile.ChargingProfileKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileKind"))); sprintf((char*)txProfile.ChargingSchedule.ChargingRateUnit, "A"); for(int idxPeriod=0;idxPeriodStatusNotification[(connectorId==0?0:connectorId-1)].Status, "Charging")==NULL) ? compositeProfile->ChargingSchedule.StartSchedule : ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp)); } if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate") != NULL) { txProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate")); } else { txProfile.ChargingSchedule.MinChargingRate = -1; } } } } else { if(txProfile.ChargingProfileId == -1) DEBUG_INFO("TxProfile found.\n"); else DEBUG_INFO("TxProfile updated.\n"); // Required item txProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")); txProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")); sprintf((char*)txProfile.ChargingProfileKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileKind"))); sprintf((char*)txProfile.ChargingSchedule.ChargingRateUnit, "A"); for(int idxPeriod=0;idxPeriodStatusNotification[(connectorId==0?0:connectorId-1)].Status, "Charging")==NULL) ? compositeProfile->ChargingSchedule.StartSchedule : ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp)); } if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate") != NULL) { txProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate")); } else { txProfile.ChargingSchedule.MinChargingRate = -1; } } } } json_object_put(obj); } fclose(fp); /* if(txProfile.ChargingProfileId != -1) { DEBUG_INFO("Profile ID: %d\n", txProfile.ChargingProfileId); DEBUG_INFO("Profile stackLevel: %d\n", txProfile.StackLevel); DEBUG_INFO("Profile TransactionId: %d\n", txProfile.TransactionId); DEBUG_INFO("Profile valid from: %s\n", txProfile.ValidFrom); DEBUG_INFO("Profile valid to: %s\n", txProfile.ValidTo); DEBUG_INFO("Profile ChargingProfileKind: %s\n", txProfile.ChargingProfileKind); DEBUG_INFO("Profile RecurrencyKind: %s\n", txProfile.RecurrencyKind); DEBUG_INFO("Profile start schedule: %s\n", txProfile.ChargingSchedule.StartSchedule); DEBUG_INFO("Profile schedule duration: %d\n", txProfile.ChargingSchedule.Duration); DEBUG_INFO("Profile charging rate unit: %s\n", txProfile.ChargingSchedule.ChargingRateUnit); DEBUG_INFO("Profile charging min rate: %f\n", txProfile.ChargingSchedule.MinChargingRate); for(int idxPeriod=0;idxPeriod= 0) { DEBUG_INFO("Period-%02d startPeriod: %d\n", idxPeriod, txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod); DEBUG_INFO("Period-%02d limit: %f\n", idxPeriod, txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit); DEBUG_INFO("Period-%02d NumberPhases: %d\n", idxPeriod, txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases); } } } else DEBUG_INFO("TxProfile not found.\n");*/ } // Search default tx profile sprintf(profileFileName, "/tmp/TxDefaultProfile_%d.json", connectorId); if((access(profileFileName, F_OK))==-1) sprintf(profileFileName, "/tmp/TxDefaultProfile_0.json"); if((access(profileFileName, F_OK))!=-1) { fp = fopen(profileFileName, "r"); for(int idxPeriod=0;idxPeriod= defaultTxProfile.StackLevel) ) { if((json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom") != NULL) && (json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo") != NULL) ) { struct tm tmFrom, tmTo; struct timeb tbFrom, tbTo; if((sscanf((char*)json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom")), "%4d-%2d-%2dT%2d:%2d:%2d", &tmFrom.tm_year, &tmFrom.tm_mon, &tmFrom.tm_mday, &tmFrom.tm_hour, &tmFrom.tm_min, &tmFrom.tm_sec) == 6) && (sscanf((char*)json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo")), "%4d-%2d-%2dT%2d:%2d:%2d", &tmTo.tm_year, &tmTo.tm_mon, &tmTo.tm_mday, &tmTo.tm_hour, &tmTo.tm_min, &tmTo.tm_sec) == 6)) { tmFrom.tm_year -= 1900; tmFrom.tm_mon -= 1; tbFrom.time = mktime(&tmFrom); tmTo.tm_year -= 1900; tmTo.tm_mon -= 1; tbTo.time = mktime(&tmTo); if((DiffTimebWithNowSec(tbFrom)>=0) && (DiffTimebWithNowSec(tbTo)<=0)) { if(defaultTxProfile.ChargingProfileId == -1) DEBUG_INFO("TxDefaultProfile found.\n"); else DEBUG_INFO("TxDefaultProfile updated.\n"); // Required item defaultTxProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")); defaultTxProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")); sprintf((char*)defaultTxProfile.ChargingProfileKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileKind"))); sprintf((char*)defaultTxProfile.ChargingSchedule.ChargingRateUnit, "A"); for(int idxPeriod=0;idxPeriodStatusNotification[(connectorId==0?0:connectorId-1)].Status, "Charging")==NULL) ? compositeProfile->ChargingSchedule.StartSchedule : ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp)); } if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate") != NULL) { defaultTxProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate")); } else { defaultTxProfile.ChargingSchedule.MinChargingRate = -1; } } } } else { if(defaultTxProfile.ChargingProfileId == -1) DEBUG_INFO("TxDefaultProfile found.\n"); else DEBUG_INFO("TxDefaultProfile updated.\n"); // Required item defaultTxProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")); defaultTxProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")); sprintf((char*)defaultTxProfile.ChargingProfileKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileKind"))); sprintf((char*)defaultTxProfile.ChargingSchedule.ChargingRateUnit, "A"); for(int idxPeriod=0;idxPeriodStatusNotification[(connectorId==0?0:connectorId-1)].Status, "Charging")==NULL) ? compositeProfile->ChargingSchedule.StartSchedule : ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp)); } if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate") != NULL) { defaultTxProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate")); } else { defaultTxProfile.ChargingSchedule.MinChargingRate = -1; } } } } json_object_put(obj); } fclose(fp); /* if(defaultTxProfile.ChargingProfileId != -1) { DEBUG_INFO("Profile ID: %d\n", defaultTxProfile.ChargingProfileId); DEBUG_INFO("Profile stackLevel: %d\n", defaultTxProfile.StackLevel); DEBUG_INFO("Profile TransactionId: %d\n", defaultTxProfile.TransactionId); DEBUG_INFO("Profile valid from: %s\n", defaultTxProfile.ValidFrom); DEBUG_INFO("Profile valid to: %s\n", defaultTxProfile.ValidTo); DEBUG_INFO("Profile ChargingProfileKind: %s\n", defaultTxProfile.ChargingProfileKind); DEBUG_INFO("Profile RecurrencyKind: %s\n", defaultTxProfile.RecurrencyKind); DEBUG_INFO("Profile start schedule: %s\n", defaultTxProfile.ChargingSchedule.StartSchedule); DEBUG_INFO("Profile schedule duration: %d\n", defaultTxProfile.ChargingSchedule.Duration); DEBUG_INFO("Profile charging rate unit: %s\n", defaultTxProfile.ChargingSchedule.ChargingRateUnit); DEBUG_INFO("Profile charging min rate: %f\n", defaultTxProfile.ChargingSchedule.MinChargingRate); for(int idxPeriod=0;idxPeriod= 0) { DEBUG_INFO("Period-%02d startPeriod: %d\n", idxPeriod, defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod); DEBUG_INFO("Period-%02d limit: %f\n", idxPeriod, defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit); DEBUG_INFO("Period-%02d NumberPhases: %d\n", idxPeriod, defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases); } } } else DEBUG_INFO("TxDefaultProfile not found.\n"); DEBUG_INFO("------------------------------------\n");*/ } // Search max profile sprintf(profileFileName, "/tmp/ChargePointMaxProfile.json"); if((access(profileFileName, F_OK))!=-1) { fp = fopen(profileFileName, "r"); for(int idxPeriod=0;idxPeriod= maxProfile.StackLevel) ) { if((json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom") != NULL) && (json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo") != NULL) ) { struct tm tmFrom, tmTo; struct timeb tbFrom, tbTo; if((sscanf((char*)json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validFrom")), "%4d-%2d-%2dT%2d:%2d:%2d", &tmFrom.tm_year, &tmFrom.tm_mon, &tmFrom.tm_mday, &tmFrom.tm_hour, &tmFrom.tm_min, &tmFrom.tm_sec) == 6) && (sscanf((char*)json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "validTo")), "%4d-%2d-%2dT%2d:%2d:%2d", &tmTo.tm_year, &tmTo.tm_mon, &tmTo.tm_mday, &tmTo.tm_hour, &tmTo.tm_min, &tmTo.tm_sec) == 6)) { tmFrom.tm_year -= 1900; tmFrom.tm_mon -= 1; tbFrom.time = mktime(&tmFrom); tmTo.tm_year -= 1900; tmTo.tm_mon -= 1; tbTo.time = mktime(&tmTo); if((DiffTimebWithNowSec(tbFrom)>=0) && (DiffTimebWithNowSec(tbTo)<=0)) { if(maxProfile.ChargingProfileId == -1) DEBUG_INFO("MaxProfile found.\n"); else DEBUG_INFO("MaxProfile updated.\n"); // Required item maxProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")); maxProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")); sprintf((char*)maxProfile.ChargingProfileKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileKind"))); sprintf((char*)maxProfile.ChargingSchedule.ChargingRateUnit, "A"); for(int idxPeriod=0;idxPeriodStatusNotification[(connectorId==0?0:connectorId-1)].Status, "Charging")==NULL) ? compositeProfile->ChargingSchedule.StartSchedule : ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp)); } if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate") != NULL) { maxProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate")); } else { maxProfile.ChargingSchedule.MinChargingRate = -1; } } } } else { if(maxProfile.ChargingProfileId == -1) DEBUG_INFO("MaxProfile found.\n"); else DEBUG_INFO("MaxProfile updated.\n"); // Required item maxProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")); maxProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")); sprintf((char*)maxProfile.ChargingProfileKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileKind"))); sprintf((char*)maxProfile.ChargingSchedule.ChargingRateUnit, "A"); for(int idxPeriod=0;idxPeriodStatusNotification[(connectorId==0?0:connectorId-1)].Status, "Charging")==NULL) ? compositeProfile->ChargingSchedule.StartSchedule : ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp)); } if(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate") != NULL) { maxProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingSchedule"), "minChargingRate")); } else { maxProfile.ChargingSchedule.MinChargingRate = -1; } } } } json_object_put(obj); } fclose(fp); /* if(maxProfile.ChargingProfileId !=-1) { DEBUG_INFO("Profile ID: %d\n", maxProfile.ChargingProfileId); DEBUG_INFO("Profile stackLevel: %d\n", maxProfile.StackLevel); DEBUG_INFO("Profile TransactionId: %d\n", maxProfile.TransactionId); DEBUG_INFO("Profile valid from: %s\n", maxProfile.ValidFrom); DEBUG_INFO("Profile valid to: %s\n", maxProfile.ValidTo); DEBUG_INFO("Profile ChargingProfileKind: %s\n", maxProfile.ChargingProfileKind); DEBUG_INFO("Profile RecurrencyKind: %s\n", maxProfile.RecurrencyKind); DEBUG_INFO("Profile start schedule: %s\n", maxProfile.ChargingSchedule.StartSchedule); DEBUG_INFO("Profile schedule duration: %d\n", maxProfile.ChargingSchedule.Duration); DEBUG_INFO("Profile charging rate unit: %s\n", maxProfile.ChargingSchedule.ChargingRateUnit); DEBUG_INFO("Profile charging min rate: %f\n", maxProfile.ChargingSchedule.MinChargingRate); for(int idxPeriod=0;idxPeriod= 0) { DEBUG_INFO("Period-%02d startPeriod: %d\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod); DEBUG_INFO("Period-%02d limit: %f\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit); DEBUG_INFO("Period-%02d NumberPhases: %d\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases); } } } else DEBUG_INFO("MaxProfile not found.\n"); DEBUG_INFO("------------------------------------\n");*/ } /* * Align found profile start schedule & periods */ //DEBUG_INFO("====================================\n"); /* // For local test usage, force modify found profile start schedule info sprintf((char*)maxProfile.ChargingSchedule.StartSchedule, "%04d-%02d-%02dT%02d:%02d:%02dZ", tmComposite->tm_year+1900, tmComposite->tm_mon+1, tmComposite->tm_mday, tmComposite->tm_hour, tmComposite->tm_min, tmComposite->tm_sec-10); sprintf((char*)defaultTxProfile.ChargingSchedule.StartSchedule, "%04d-%02d-%02dT%02d:%02d:%02dZ", tmComposite->tm_year+1900, tmComposite->tm_mon+1, tmComposite->tm_mday, tmComposite->tm_hour, tmComposite->tm_min, tmComposite->tm_sec-5); sprintf((char*)txProfile.ChargingSchedule.StartSchedule, "%04d-%02d-%02dT%02d:%02d:%02dZ", tmComposite->tm_year+1900, tmComposite->tm_mon+1, tmComposite->tm_mday, tmComposite->tm_hour, tmComposite->tm_min, tmComposite->tm_sec-3); */ if(txProfile.ChargingProfileId != -1) { if(strstr((char*)txProfile.ChargingProfileKind, "Absolute") != NULL) { if(txProfile.ChargingSchedule.Duration != -1) { txProfile.ChargingSchedule.Duration = ((txProfile.ChargingSchedule.Duration-getStartStop(txProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule))<0? 0: (txProfile.ChargingSchedule.Duration-getStartStop(txProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule))); } for(int idxPeriod=0;idxPeriodChargingSchedule.StartSchedule))<0? 0: (txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(txProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule))); if(idxPeriod > 0) { if(txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod) { txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit; } } } } } else if(strstr((char*)txProfile.ChargingProfileKind, "Relative") != NULL) { if(txProfile.ChargingSchedule.Duration != -1) { txProfile.ChargingSchedule.Duration = (strstr((char*)ShmOCPP16Data->StatusNotification[(connectorId==0?0:connectorId-1)].Status, "Charging")==NULL)?txProfile.ChargingSchedule.Duration:((txProfile.ChargingSchedule.Duration-getStartStop(ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile->ChargingSchedule.StartSchedule))<0? 0: (txProfile.ChargingSchedule.Duration-getStartStop(ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile->ChargingSchedule.StartSchedule))); } for(int idxPeriod=0;idxPeriodStatusNotification[(connectorId==0?0:connectorId-1)].Status, "Charging")==NULL)?txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod:((txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile->ChargingSchedule.StartSchedule))<0? 0: (txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile->ChargingSchedule.StartSchedule))); if(idxPeriod > 0) { if(txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod) { txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit; } } } } } else { if(strstr((char*)txProfile.RecurrencyKind, "Weekly") != NULL) { if(txProfile.ChargingSchedule.Duration != -1) { txProfile.ChargingSchedule.Duration = ((txProfile.ChargingSchedule.Duration-getStartSinceRecurring(txProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, FALSE))<0? 0: (txProfile.ChargingSchedule.Duration-getStartSinceRecurring(txProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, FALSE))); } for(int idxPeriod=0;idxPeriodChargingSchedule.StartSchedule, FALSE))<0? 0: (txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(txProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, FALSE))); if(idxPeriod > 0) { if(txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod) { txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit; } } } } } else { if(txProfile.ChargingSchedule.Duration != -1) { txProfile.ChargingSchedule.Duration = ((txProfile.ChargingSchedule.Duration-getStartSinceRecurring(txProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, TRUE))<0? 0: (txProfile.ChargingSchedule.Duration-getStartSinceRecurring(txProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, TRUE))); } for(int idxPeriod=0;idxPeriodChargingSchedule.StartSchedule, TRUE))<0? 0: (txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(txProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, TRUE))); if(idxPeriod > 0) { if(txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod) { txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit; } } } } } } /* DEBUG_INFO("txProfile after align.\n"); DEBUG_INFO("Profile ID: %d\n", txProfile.ChargingProfileId); DEBUG_INFO("Profile stackLevel: %d\n", txProfile.StackLevel); DEBUG_INFO("Profile TransactionId: %d\n", txProfile.TransactionId); DEBUG_INFO("Profile valid from: %s\n", txProfile.ValidFrom); DEBUG_INFO("Profile valid to: %s\n", txProfile.ValidTo); DEBUG_INFO("Profile ChargingProfileKind: %s\n", txProfile.ChargingProfileKind); DEBUG_INFO("Profile RecurrencyKind: %s\n", txProfile.RecurrencyKind); DEBUG_INFO("Profile start schedule: %s\n", compositeProfile->ChargingSchedule.StartSchedule); DEBUG_INFO("Profile schedule duration: %d\n", txProfile.ChargingSchedule.Duration); DEBUG_INFO("Profile charging rate unit: %s\n", txProfile.ChargingSchedule.ChargingRateUnit); DEBUG_INFO("Profile charging min rate: %f\n", txProfile.ChargingSchedule.MinChargingRate); for(int idxPeriod=0;idxPeriod= 0) { DEBUG_INFO("Period-%02d startPeriod: %d\n", idxPeriod, txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod); DEBUG_INFO("Period-%02d limit: %f\n", idxPeriod, txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit); DEBUG_INFO("Period-%02d NumberPhases: %d\n", idxPeriod, txProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases); } }*/ } if(defaultTxProfile.ChargingProfileId != -1) { if(strstr((char*)defaultTxProfile.ChargingProfileKind, "Absolute") != NULL) { if(defaultTxProfile.ChargingSchedule.Duration != -1) { defaultTxProfile.ChargingSchedule.Duration = ((defaultTxProfile.ChargingSchedule.Duration-getStartStop(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule))<0? 0: (defaultTxProfile.ChargingSchedule.Duration-getStartStop(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule))); } for(int idxPeriod=0;idxPeriodChargingSchedule.StartSchedule))<0? 0: (defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule))); if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod < txProfile.ChargingSchedule.Duration) { defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod += (txProfile.ChargingSchedule.Duration-defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod); } if(idxPeriod > 0) { if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod) { defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit; } } } } } else if(strstr((char*)defaultTxProfile.ChargingProfileKind, "Relative") != NULL) { if(defaultTxProfile.ChargingSchedule.Duration != -1) { defaultTxProfile.ChargingSchedule.Duration = (strstr((char*)ShmOCPP16Data->StatusNotification[(connectorId==0?0:connectorId-1)].Status, "Charging")==NULL)?defaultTxProfile.ChargingSchedule.Duration:((defaultTxProfile.ChargingSchedule.Duration-getStartStop(ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile->ChargingSchedule.StartSchedule))<0? 0: (defaultTxProfile.ChargingSchedule.Duration-getStartStop(ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile->ChargingSchedule.StartSchedule))); } for(int idxPeriod=0;idxPeriodStatusNotification[(connectorId==0?0:connectorId-1)].Status, "Charging")==NULL)?defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod:((defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile->ChargingSchedule.StartSchedule))<0? 0: (defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile->ChargingSchedule.StartSchedule))); if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod < txProfile.ChargingSchedule.Duration) { defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod += (txProfile.ChargingSchedule.Duration-defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod); } if(idxPeriod > 0) { if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod) { defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit; } } } } } else { if(strstr((char*)defaultTxProfile.RecurrencyKind, "Weekly") != NULL) { if(defaultTxProfile.ChargingSchedule.Duration != -1) { defaultTxProfile.ChargingSchedule.Duration = ((defaultTxProfile.ChargingSchedule.Duration-getStartSinceRecurring(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, FALSE))<0? 0: (defaultTxProfile.ChargingSchedule.Duration-getStartSinceRecurring(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, FALSE))); } for(int idxPeriod=0;idxPeriodChargingSchedule.StartSchedule, FALSE))<0? 0: (defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, FALSE))); if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod < txProfile.ChargingSchedule.Duration) { defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod += (txProfile.ChargingSchedule.Duration-defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod); } if(idxPeriod > 0) { if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod) { defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit; } } } } } else { if(defaultTxProfile.ChargingSchedule.Duration != -1) { defaultTxProfile.ChargingSchedule.Duration = ((defaultTxProfile.ChargingSchedule.Duration-getStartSinceRecurring(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, TRUE))<0? 0: (defaultTxProfile.ChargingSchedule.Duration-getStartSinceRecurring(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, TRUE))); } for(int idxPeriod=0;idxPeriodChargingSchedule.StartSchedule, TRUE))<0? 0: (defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(defaultTxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, TRUE))); if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod < txProfile.ChargingSchedule.Duration) { defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod += (txProfile.ChargingSchedule.Duration-defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod); } if(idxPeriod > 0) { if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod) { defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit; } } } } } } /* DEBUG_INFO("defaultTxProfile after align.\n"); DEBUG_INFO("Profile ID: %d\n", defaultTxProfile.ChargingProfileId); DEBUG_INFO("Profile stackLevel: %d\n", defaultTxProfile.StackLevel); DEBUG_INFO("Profile TransactionId: %d\n", defaultTxProfile.TransactionId); DEBUG_INFO("Profile valid from: %s\n", defaultTxProfile.ValidFrom); DEBUG_INFO("Profile valid to: %s\n", defaultTxProfile.ValidTo); DEBUG_INFO("Profile ChargingProfileKind: %s\n", defaultTxProfile.ChargingProfileKind); DEBUG_INFO("Profile RecurrencyKind: %s\n", defaultTxProfile.RecurrencyKind); DEBUG_INFO("Profile start schedule: %s\n", compositeProfile->ChargingSchedule.StartSchedule); DEBUG_INFO("Profile schedule duration: %d\n", defaultTxProfile.ChargingSchedule.Duration); DEBUG_INFO("Profile charging rate unit: %s\n", defaultTxProfile.ChargingSchedule.ChargingRateUnit); DEBUG_INFO("Profile charging min rate: %f\n", defaultTxProfile.ChargingSchedule.MinChargingRate); for(int idxPeriod=0;idxPeriod= 0) { DEBUG_INFO("Period-%02d startPeriod: %d\n", idxPeriod, defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod); DEBUG_INFO("Period-%02d limit: %f\n", idxPeriod, defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit); DEBUG_INFO("Period-%02d NumberPhases: %d\n", idxPeriod, defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases); } } DEBUG_INFO("------------------------------------\n");*/ } if(maxProfile.ChargingProfileId != -1) { if(strstr((char*)maxProfile.ChargingProfileKind, "Absolute") != NULL) { if(maxProfile.ChargingSchedule.Duration != -1) { maxProfile.ChargingSchedule.Duration = ((maxProfile.ChargingSchedule.Duration-getStartStop(maxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule))<0? 0: (maxProfile.ChargingSchedule.Duration-getStartStop(maxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule))); } for(int idxPeriod=0;idxPeriodChargingSchedule.StartSchedule))<0? 0: (maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(maxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule))); if(idxPeriod > 0) { if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod) { maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit; } } } } } else if(strstr((char*)maxProfile.ChargingProfileKind, "Relative") != NULL) { if(maxProfile.ChargingSchedule.Duration != -1) { maxProfile.ChargingSchedule.Duration = (strstr((char*)ShmOCPP16Data->StatusNotification[(connectorId==0?0:connectorId-1)].Status, "Charging")==NULL)?maxProfile.ChargingSchedule.Duration:((maxProfile.ChargingSchedule.Duration-getStartStop(ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile->ChargingSchedule.StartSchedule))<0? 0: (maxProfile.ChargingSchedule.Duration-getStartStop(ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile->ChargingSchedule.StartSchedule))); } for(int idxPeriod=0;idxPeriodStatusNotification[(connectorId==0?0:connectorId-1)].Status, "Charging")==NULL)?maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod:((maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile->ChargingSchedule.StartSchedule))<0? 0: (maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartStop(ShmOCPP16Data->StartTransaction[(connectorId==0?0:connectorId-1)].Timestamp, compositeProfile->ChargingSchedule.StartSchedule))); if(idxPeriod > 0) { if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod) { maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit; } } } } } else { if(strstr((char*)maxProfile.RecurrencyKind, "Weekly") != NULL) { if(maxProfile.ChargingSchedule.Duration != -1) { maxProfile.ChargingSchedule.Duration = ((maxProfile.ChargingSchedule.Duration-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, FALSE))<0? 0: (maxProfile.ChargingSchedule.Duration-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, FALSE))); } for(int idxPeriod=0;idxPeriodChargingSchedule.StartSchedule, FALSE))<0? 0: (maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, FALSE))); if(idxPeriod > 0) { if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod) { maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit; } } } } } else { if(maxProfile.ChargingSchedule.Duration != -1) { maxProfile.ChargingSchedule.Duration = ((maxProfile.ChargingSchedule.Duration-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, TRUE))<0? 0: (maxProfile.ChargingSchedule.Duration-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, TRUE))); } for(int idxPeriod=0;idxPeriodChargingSchedule.StartSchedule, TRUE))<0? 0: (maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod-getStartSinceRecurring(maxProfile.ChargingSchedule.StartSchedule, compositeProfile->ChargingSchedule.StartSchedule, TRUE))); if(idxPeriod > 0) { if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].StartPeriod == maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod) { maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod-1].Limit = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit; } } } } } } /* DEBUG_INFO("MaxProfile after align.\n"); DEBUG_INFO("Profile ID: %d\n", maxProfile.ChargingProfileId); DEBUG_INFO("Profile stackLevel: %d\n", maxProfile.StackLevel); DEBUG_INFO("Profile TransactionId: %d\n", maxProfile.TransactionId); DEBUG_INFO("Profile valid from: %s\n", maxProfile.ValidFrom); DEBUG_INFO("Profile valid to: %s\n", maxProfile.ValidTo); DEBUG_INFO("Profile ChargingProfileKind: %s\n", maxProfile.ChargingProfileKind); DEBUG_INFO("Profile RecurrencyKind: %s\n", maxProfile.RecurrencyKind); DEBUG_INFO("Profile start schedule: %s\n", compositeProfile->ChargingSchedule.StartSchedule); DEBUG_INFO("Profile schedule duration: %d\n", maxProfile.ChargingSchedule.Duration); DEBUG_INFO("Profile charging rate unit: %s\n", maxProfile.ChargingSchedule.ChargingRateUnit); DEBUG_INFO("Profile charging min rate: %f\n", maxProfile.ChargingSchedule.MinChargingRate); for(int idxPeriod=0;idxPeriod= 0) { DEBUG_INFO("Period-%02d startPeriod: %d\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod); DEBUG_INFO("Period-%02d limit: %f\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit); DEBUG_INFO("Period-%02d NumberPhases: %d\n", idxPeriod, maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases); } } DEBUG_INFO("------------------------------------\n");*/ } /* * Merge to conposite schedule */ //DEBUG_INFO("====================================\n"); // Find each profile period quantity for(int idx=0;idx 0)) { if(maxProfile.ChargingProfileId != -1) { for(int idxMaxPeriod=0;idxMaxPeriod= maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod)) { if((maxProfile.ChargingSchedule.Duration > 0)) { tmpPeriod.StartPeriod = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].StartPeriod; tmpPeriod.NumberPhases = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].NumberPhases; tmpPeriod.Limit = (txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].Limit>maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit?maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit:txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].Limit); } else { tmpPeriod.StartPeriod = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].StartPeriod; tmpPeriod.NumberPhases = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].NumberPhases; tmpPeriod.Limit = txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].Limit; } } if(idxMaxPeriod == (limitMax-1)) { if(tmpPeriod.Limit != compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].Limit) { if(tmpPeriod.StartPeriod != compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod) { memcpy(&compositeProfile->ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod)); compositePeriodIdx++; } else { memcpy(&compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod)); } } } } } else { if(txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].StartPeriod != compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod) { memcpy(&compositeProfile->ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod],sizeof(struct StructChargingSchedulePeriod)); compositePeriodIdx++; } else { memcpy(&compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod],sizeof(struct StructChargingSchedulePeriod)); } } } if(idxTxPeriod == (limitTx-1)) { if(defaultTxProfile.ChargingProfileId != -1) { for(int idxDefPeriod=0;idxDefPeriod= (txProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].StartPeriod + (txProfile.ChargingSchedule.Duration-defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod))) && (defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod < durationReq) && (defaultTxProfile.ChargingSchedule.Duration>0)) { if(maxProfile.ChargingProfileId != -1) { for(int idxMaxPeriod=0;idxMaxPeriod= maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod) { if((maxProfile.ChargingSchedule.Duration > 0)) { tmpPeriod.StartPeriod = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod; tmpPeriod.NumberPhases = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].NumberPhases; tmpPeriod.Limit = (defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].Limit>maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit?maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit:defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxTxPeriod].Limit); } else { tmpPeriod.StartPeriod = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod; tmpPeriod.NumberPhases = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].NumberPhases; tmpPeriod.Limit = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].Limit; } if(tmpPeriod.Limit != compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].Limit) { if(tmpPeriod.StartPeriod != compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod) { memcpy(&compositeProfile->ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod)); compositePeriodIdx++; } else { memcpy(&compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod)); } } break; } } } else { if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod != compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod) { memcpy(&compositeProfile->ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod],sizeof(struct StructChargingSchedulePeriod)); compositePeriodIdx++; } else { memcpy(&compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod],sizeof(struct StructChargingSchedulePeriod)); } } } } } } } } // TxProfile not found but defaultTxProfile found, composite schedule based on it else if(defaultTxProfile.ChargingProfileId != -1) { for(int idxDefPeriod=0;idxDefPeriod 0)) { if(maxProfile.ChargingProfileId != -1) { for(int idxMaxPeriod=0;idxMaxPeriod= maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod) { if((maxProfile.ChargingSchedule.Duration > 0)) { tmpPeriod.StartPeriod = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod; tmpPeriod.NumberPhases = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].NumberPhases; tmpPeriod.Limit = (defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].Limit>maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit?maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit:defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].Limit); } else { tmpPeriod.StartPeriod = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod; tmpPeriod.NumberPhases = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].NumberPhases; tmpPeriod.Limit = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].Limit; } if(tmpPeriod.Limit != compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].Limit) { if(tmpPeriod.StartPeriod != compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod) { memcpy(&compositeProfile->ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod)); compositePeriodIdx++; } else { memcpy(&compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod)); } } break; } } } else { if(defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod != compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod) { memcpy(&compositeProfile->ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod],sizeof(struct StructChargingSchedulePeriod)); compositePeriodIdx++; } else { memcpy(&compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod],sizeof(struct StructChargingSchedulePeriod)); } } } } } // Fill other period by MaxProfile if(maxProfile.ChargingProfileId != -1) { for(int idxMaxPeriod=0;idxMaxPeriod 0)) { if((maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod >= compositeProfile->ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx==0?0:compositePeriodIdx-1].StartPeriod) && (maxProfile.ChargingSchedule.Duration > compositeProfile->ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx==0?0:compositePeriodIdx-1].StartPeriod)) { tmpPeriod.StartPeriod = compositeProfile->ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx==0?0:compositePeriodIdx-1].StartPeriod; tmpPeriod.NumberPhases = compositeProfile->ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx==0?0:compositePeriodIdx-1].NumberPhases; tmpPeriod.Limit = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit; } if((maxProfile.ChargingSchedule.Duration > compositeProfile->ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx==0?0:compositePeriodIdx-1].StartPeriod)) { tmpPeriod.StartPeriod = compositeProfile->ChargingSchedule.Duration; tmpPeriod.NumberPhases = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].NumberPhases; tmpPeriod.Limit = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit; } if(tmpPeriod.Limit != -1) { if(tmpPeriod.Limit != compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].Limit) { if(tmpPeriod.StartPeriod != compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod) { memcpy(&compositeProfile->ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod)); compositePeriodIdx++; } else { memcpy(&compositeProfile->ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod)); } } } } } } DEBUG_INFO("Connector-%d composite schedule ready.\n", connectorId); DEBUG_INFO("Schedule start: %s\n", compositeProfile->ChargingSchedule.StartSchedule); DEBUG_INFO("Schedule duration: %d\n", compositeProfile->ChargingSchedule.Duration); DEBUG_INFO("Rate unit: %s\n", compositeProfile->ChargingSchedule.ChargingRateUnit); for(int idxPeriod=0;idxPeriodChargingSchedule.ChargingSchedulePeriod);idxPeriod++) { if(compositeProfile->ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod >= 0) { compositeProfile->ChargingProfileId = 1; DEBUG_INFO("Period-%02d startPeriod: %d\n", idxPeriod, compositeProfile->ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod); DEBUG_INFO("Period-%02d limit: %f\n", idxPeriod, compositeProfile->ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit); DEBUG_INFO("Period-%02d NumberPhases: %d\n", idxPeriod, compositeProfile->ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases); } if(compositeProfile->ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit == -1) compositeProfile->ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit =0; if(compositeProfile->ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod == -1) compositeProfile->ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod =0; } if(line) free(line); ShmOCPP16Data->CSUMsg.bits[(connectorId==0?0:connectorId-1)].ChargingProfileConf = 1; } //========================================== // Init all share memory //========================================== int InitShareMemory() { int result = PASS; int MeterSMId; //creat ShmSysConfigAndInfo if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0) { DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n"); result = FAIL; } else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1) { DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n"); result = FAIL; } else {} if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0) { DEBUG_ERROR("shmget ShmStatusCodeData NG\n"); result = FAIL; } else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1) { DEBUG_ERROR("shmat ShmStatusCodeData NG\n"); result = FAIL; } else {} //creat ShmPsuData if ((MeterSMId = shmget(ShmPsuKey, sizeof(struct PsuData), 0777)) < 0) { DEBUG_ERROR("shmget ShmPsuData NG\n"); result = FAIL; } else if ((ShmPsuData = shmat(MeterSMId, NULL, 0)) == (void *) -1) { DEBUG_ERROR("shmat ShmPsuData NG\n"); result = FAIL; } else {} //creat ShmOCPP16Data if ((MeterSMId = shmget(ShmOcppModuleKey, sizeof(struct OCPP16Data), 0777)) < 0) { DEBUG_ERROR("shmget ShmOCPP16Data NG"); result = FAIL; } else if ((ShmOCPP16Data = shmat(MeterSMId, NULL, 0)) == (void *) -1) { DEBUG_ERROR("shmat ShmOCPP16Data NG"); result = FAIL; } else {} /****************************** For Initial Settings************************************************/ ShmOCPP16Data->GetConfiguration.ResponseUnknownKey = NULL; ShmOCPP16Data->SendLocalList.LocalAuthorizationList = NULL; // allocate Configuration memory address ShmOCPP16Data->GetConfiguration.Key = staticKeyArray; ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey = staticResponseConfigurationKeyArray; ShmOCPP16Data->GetConfiguration.ResponseUnknownKey = staticResponseUnknownKey; ShmOCPP16Data->SendLocalList.LocalAuthorizationList = staticLocalAuthorizationList; //offline MeterValue Interval TempMeterValueInterval = 0; return result; } int ProcessShareMemory() { if(InitShareMemory() == FAIL) { DEBUG_ERROR("InitShareMemory NG\n"); if(ShmStatusCodeData!=NULL) { ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=1; } sleep(5); return FAIL; } return PASS; } //---------------------common routine---------------------------// int isOFFline(void) { if(ShmSysConfigAndInfo->SysInfo.InternetConn == 0) { if(TempMeterValueInterval >= 2 ) { TempMeterValueInterval = 0; return TRUE; } else { TempMeterValueInterval = TempMeterValueInterval+ 1; return FALSE; } } else { return FALSE; } } //--------------------------------------------- // new: // enum SYSTEM_STATUS // { // SYS_MODE_BOOTING = 0, // SYS_MODE_IDLE = 1, // SYS_MODE_AUTHORIZING = 2, // SYS_MODE_MODE_REASSIGN_CHECK = 3, // SYS_MODE_REASSIGN = 4, // SYS_MODE_PREPARING = 5, // SYS_MODE_PREPARE_FOR_EV = 6, // SYS_MODE_PREPARE_FOR_EVSE = 7, // SYS_MODE_CHARGING = 8, // SYS_MODE_TERMINATING = 9, // SYS_MODE_COMPLETE = 10, // SYS_MODE_ALARM = 11, // SYS_MODE_FAULT = 12, // SYS_MODE_RESERVATION = 13, // SYS_MODE_BOOKING = 14, // SYS_MODE_MAINTAIN = 15, // SYS_MODE_DEBUG = 16, // SYS_MODE_CCS_PRECHARGE_STEP0 = 17, // SYS_MODE_CCS_PRECHARGE_STEP1 = 18, // SYS_MODE_UPDATE = 19 // }; // // //----------------------------------------- void CheckSystemValue(void) { uint8_t reqSampleMeter[CONNECTOR_QUANTITY]={0}; uint8_t reqClockAlignMeter[CONNECTOR_QUANTITY]={0}; char filenmae[100]={0}; char str[100]={0}; int tempIndex = 0; //=============================== // send Heartbeat //=============================== //HeartBeatWaitTime = ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval; if((difftime(time((time_t*)NULL), clientTime.Heartbeat) < 0) || (HeartBeatWaitTime <= 0)) { clientTime.Heartbeat=time((time_t*)NULL); if(server_sign == TRUE) { HeartBeatWaitTime = ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval; } else { HeartBeatWaitTime = atoi((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData); } } if((server_sign == TRUE) && (difftime(time((time_t*)NULL), clientTime.Heartbeat) >= (HeartBeatWaitTime + HeartBeatWithNOResponse))) { //parameter for test sendHeartbeatRequest(0); //============================================== // Reset Waiting Time //============================================== HeartBeatWithNOResponse += 1; } for(int gun_index=0;gun_index < gunTotalNumber ;gun_index++) { //========================================== // csu trigger DataTransferReq //========================================== if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16Data->CsMsg.bits[gun_index].DataTransferReq == 1)) { sendDataTransferRequest(gun_index); ShmOCPP16Data->CsMsg.bits[gun_index].DataTransferReq = 0; } //=============================== // CSU Trigger Reset Conf //=============================== if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16Data->MsMsg.bits.ResetConf == 1)) { sendResetConfirmation((char *)ShmOCPP16Data->Reset.guid, (char *)ShmOCPP16Data->Reset.ResponseStatus); } //=============================== // CSU Trigger Authorize Request //=============================== if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16Data->SpMsg.bits.AuthorizeReq == 1)&&(authorizeRetryTimes < 3)) { sendAuthorizeRequest(0); authorizeRetryTimes = authorizeRetryTimes + 1; if(authorizeRetryTimes < 3) ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0; } else if((server_sign == TRUE) && (ShmOCPP16Data->SpMsg.bits.AuthorizeReq == 1) && (authorizeRetryTimes >= 3)) { authorizeRetryTimes = 0; ShmOCPP16Data->OcppConnStatus = 0; // ocpp offline server_sign = FALSE; } else if((server_sign == FALSE) && (strcmp((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "TRUE") == 0)&&(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE") == 0)&&(ShmOCPP16Data->OcppConnStatus == 0)&& (ShmOCPP16Data->SpMsg.bits.AuthorizeReq == 1)) { sendAuthorizeRequest(0); } //=============================== // CSU Trigger Smart Charging Profilw //=============================== if(ShmOCPP16Data->CSUMsg.bits[gun_index].ChargingProfileReq == 1) { checkCompositeSchedule(gun_index+1, 86400, &ShmOCPP16Data->SmartChargingProfile[gun_index]); ShmOCPP16Data->CSUMsg.bits[gun_index].ChargingProfileReq = 0; } //============================================== // Charger start transaction //============================================== if(/*(server_sign == TRUE) &&*/ (ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq == 1)) { ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq = 0; sendStartTransactionRequest(gun_index); clientTime.StartTransaction = time((time_t*)NULL); clientTime.MeterValues[gun_index] = time((time_t*)NULL); } //============================================== // Charger stop transaction //============================================== if(/*(server_sign == TRUE) &&*/ ((ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq == 1))) { ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq = 0; sendStopTransactionRequest(gun_index); clientTime.StopTransaction = time((time_t*)NULL); } //============================================== // Charger status report //============================================== //--- Check Mode Change ---// // J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DCcc if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { if((SystemInitial > 0) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != ChademoPreviousSystemStatus[index]) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn != ChademoPreviousConnectorPlugIn[index]) ) { // Sent unplug message for California pricing logic if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_COMPLETE) && (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn == 0)) { uint8_t ts[20]; getNowDatetime(ts); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].VendorId, "%s", ShmSysConfigAndInfo->SysConfig.chargePointVendor); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].MessageId, "ConnectorUnplugged"); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].Data, "{\\\"idTx\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId, ts); ShmOCPP16Data->CsMsg.bits[gun_index].DataTransferReq = 1; } ChademoPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus; ChademoPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn; cpinitateMsg.bits[gun_index].StatusNotificationReq = 1; statusModeChage[gun_index] = TRUE; } if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) && ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_COMPLETE) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus <= SYS_MODE_PREPARING))) // complete { sprintf(filenmae,"/Storage/OCPP/TxProfile_%d.json",(gun_index+1)); if((access(filenmae,F_OK))!=-1) { DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n"); sprintf(str,"rm -f %s",filenmae); system(str); } } #if 1 // for TempStopTransaction if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE) && (ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq == 0)) { checkTempStopTransaction(gun_index); } #endif } } } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { if((SystemInitial > 0) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != CcsPreviousSystemStatus[index]) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn != CcsPreviousConnectorPlugIn[index]) )//if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != CcsPreviousSystemStatus[index]/*PRE_SYS_MODE[gun_index]*/ ) { // Sent unplug message for California pricing logic if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_COMPLETE) && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn == 0)) { uint8_t ts[20]; getNowDatetime(ts); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].VendorId, "%s", ShmSysConfigAndInfo->SysConfig.chargePointVendor); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].MessageId, "ConnectorUnplugged"); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].Data, "{\\\"idTx\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId, ts); ShmOCPP16Data->CsMsg.bits[gun_index].DataTransferReq = 1; } CcsPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus; CcsPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn; cpinitateMsg.bits[gun_index].StatusNotificationReq = 1; statusModeChage[gun_index] = TRUE; } if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) && ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_COMPLETE) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus <= SYS_MODE_PREPARING))) // complete { sprintf(filenmae,"/Storage/OCPP/TxProfile_%d.json",(gun_index+1)); if((access(filenmae,F_OK))!=-1) { DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n"); sprintf(str,"rm -f %s",filenmae); system(str); } } #if 1 // for TempStopTransaction if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE) && (ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq == 0)) { checkTempStopTransaction(gun_index); } #endif } } } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { if((SystemInitial > 0) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != GbPreviousSystemStatus[index]) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn != GbPreviousConnectorPlugIn[index]) ) { // Sent unplug message for California pricing logic if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_COMPLETE) && (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn == 0)) { uint8_t ts[20]; getNowDatetime(ts); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].VendorId, "%s", ShmSysConfigAndInfo->SysConfig.chargePointVendor); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].MessageId, "ConnectorUnplugged"); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].Data, "{\\\"idTx\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId, ts); ShmOCPP16Data->CsMsg.bits[gun_index].DataTransferReq = 1; } GbPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus; GbPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn; cpinitateMsg.bits[gun_index].StatusNotificationReq = 1; statusModeChage[gun_index] = TRUE; } if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) && ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_COMPLETE) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus <= SYS_MODE_PREPARING))) // complete { sprintf(filenmae,"/Storage/OCPP/TxProfile_%d.json",(gun_index+1)); if((access(filenmae,F_OK))!=-1) { DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n"); sprintf(str,"rm -f %s",filenmae); system(str); } } #if 1 // for TempStopTransaction if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_IDLE) && (ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq == 0)) { checkTempStopTransaction(gun_index); } #endif } } } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { if((SystemInitial > 0) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != DoPreviousSystemStatus[index]) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ConnectorPlugIn != DoPreviousConnectorPlugIn[index]) ) { // Sent unplug message for California pricing logic if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_COMPLETE) && (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ConnectorPlugIn == 0)) { uint8_t ts[20]; getNowDatetime(ts); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].VendorId, "%s", ShmSysConfigAndInfo->SysConfig.chargePointVendor); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].MessageId, "ConnectorUnplugged"); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].Data, "{\\\"idTx\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId, ts); ShmOCPP16Data->CsMsg.bits[gun_index].DataTransferReq = 1; } DoPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus; DoPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ConnectorPlugIn; cpinitateMsg.bits[gun_index].StatusNotificationReq = 1; statusModeChage[gun_index] = TRUE; } if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) && ((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_COMPLETE) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus <= SYS_MODE_PREPARING))) // complete { sprintf(filenmae,"/Storage/OCPP/TxProfile_%d.json",(gun_index+1)); if((access(filenmae,F_OK))!=-1) { DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n"); sprintf(str,"rm -f %s",filenmae); system(str); } } #if 1 // for TempStopTransaction if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_IDLE) && (ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq == 0)) { checkTempStopTransaction(gun_index); } #endif } } } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { if((SystemInitial > 0) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != AcPreviousSystemStatus[index]) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState != AcPreviousConnectorPlugIn[index]) ) { // Sent unplug message for California pricing logic if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_COMPLETE) { uint8_t ts[20]; getNowDatetime(ts); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].VendorId, "%s", ShmSysConfigAndInfo->SysConfig.chargePointVendor); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].MessageId, "ConnectorUnplugged"); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].Data, "{\\\"idTx\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId, ts); ShmOCPP16Data->CsMsg.bits[gun_index].DataTransferReq = 1; } AcPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus; AcPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState; cpinitateMsg.bits[gun_index].StatusNotificationReq = 1; statusModeChage[gun_index] = TRUE; } if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) && ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_COMPLETE) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus <= SYS_MODE_PREPARING))) // complete { sprintf(filenmae,"/Storage/OCPP/TxProfile_%d.json",(gun_index+1)); if((access(filenmae,F_OK))!=-1) { DEBUG_INFO("TxProfile exist. OCPP will delete TX Charging Profile\n"); sprintf(str,"rm -f %s",filenmae); system(str); } } #if 1 // for TempStopTransaction if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE) && (ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq == 0)) { checkTempStopTransaction(gun_index); } #endif } }// END } if(isWebsocketSendable && ( (statusModeChage[gun_index] == TRUE) || //((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > (server_cycle_Status + (GunStatusInterval*gun_index))) || ((cpinitateMsg.bits[gun_index].StatusNotificationReq == 1) && ((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > 10)) ) ) { if(SystemInitial > 0) SystemInitial -= 1; sendStatusNotificationRequest(gun_index); clientTime.StatusNotification[gun_index] = time((time_t*)NULL); statusModeChage[gun_index] = FALSE; } //============================================== // Meter report //============================================== // Trigger MeterValue if(isWebsocketSendable && (server_sign == TRUE) && cpinitateMsg.bits[gun_index].TriggerMeterValue) { sendMeterValuesRequest(gun_index, ReadingContext_Trigger); cpinitateMsg.bits[gun_index].TriggerMeterValue = 0; } // ClockAlign MeterValue if(isWebsocketSendable && (server_sign == TRUE) && ((atoi((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData) > 0)?((getTimePassSinceToday()%(atoi((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData)))==0):FALSE)) { if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_CHARGING) { reqClockAlignMeter[gun_index] = 1; } } }// End for CHAdeMO } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_CHARGING) { reqClockAlignMeter[gun_index] = 1; } } } // End for CCS } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_CHARGING) { reqClockAlignMeter[gun_index] = 1; } } }// End for GB } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != SYS_MODE_CHARGING) { reqClockAlignMeter[gun_index] = 1; } } } } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_CHARGING) { reqClockAlignMeter[gun_index] = 1; } } }//End for AC } if(reqClockAlignMeter[gun_index] == 1) sendMeterValuesRequest(gun_index, ReadingContext_Sample_Clock); } // Sample period MeterValue if(/*(server_sign == TRUE) &&(isOFFline() == TRUE) ||*/ (((time((time_t*)NULL) - clientTime.MeterValues[gun_index]) > (atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData)- 1)))) { //check Transaction active if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) { reqSampleMeter[gun_index] = 1; } } }// End for CHAdeMO } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) { reqSampleMeter[gun_index] = 1; } } } // End for CCS } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) { reqSampleMeter[gun_index] = 1; } } }// End for GB } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_CHARGING) { reqSampleMeter[gun_index] = 1; } } } } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) { reqSampleMeter[gun_index] = 1; } } }//End for AC } if(reqSampleMeter[gun_index] == 1) { sendMeterValuesRequest(gun_index, ReadingContext_Sample_Periodic); storeTempStopTransaction(gun_index); } clientTime.MeterValues[gun_index] = time((time_t*)NULL); } //============================================== // Check Connector reserved //============================================== //=============================== // Check if Reserve is expired //=============================== if((server_sign == TRUE) && (ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate[0] != 0) ) { double diff_t; struct tm tp; // current time time_t t = time(NULL); strptime((char *)ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate, "%Y-%m-%dT%H:%M:%S", &tp); tp.tm_isdst = -1; time_t utc = mktime(&tp); diff_t = difftime(utc, t); if(diff_t <= 0) { DEBUG_INFO("reserve expired.\n"); memset(ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate,0,ARRAY_SIZE(ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate)); } }//END OF Check if Reserve is expired //========================================== // csu trigger FirmwareStatusNotificationReq //========================================== if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq == 1)) { sendFirmwareStatusNotificationRequest((char *)ShmOCPP16Data->FirmwareStatusNotification.Status); } //========================================== // csu trigger CancelReservationConf //========================================== if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationConf == 1)) { sendCancelReservationConfirmation((char *)ShmOCPP16Data->CancelReservation[gun_index].guid,(char *)ShmOCPP16Data->CancelReservation[gun_index].ResponseStatus); } //========================================== // csu trigger ChangeAvailabilityConf //========================================== if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16Data->CsMsg.bits[gun_index].ChangeAvailabilityConf == 1)) { //sendChangeAvailabilityConfirmation(,(char *)ShmOCPP16Data->ChangeAvailability[gun_index].ResponseStatus); } //========================================== // csu trigger UnlockConnectorConf //========================================== if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16Data->CsMsg.bits[gun_index].UnlockConnectorConf == 1)) { sendUnlockConnectorConfirmation((char *)ShmOCPP16Data->UnlockConnector[gun_index].guid, (char *)ShmOCPP16Data->UnlockConnector[gun_index].ResponseStatus); ShmOCPP16Data->CsMsg.bits[gun_index].UnlockConnectorConf = 0; } //========================================== // csu trigger ReserveNowConf //========================================== if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16Data->CsMsg.bits[gun_index].ReserveNowConf == 1)) { sendReserveNowTransactionConfirmation((char *)ShmOCPP16Data->ReserveNow[gun_index].guid, (char *)ShmOCPP16Data->ReserveNow[gun_index].ResponseStatus); ShmOCPP16Data->CsMsg.bits[gun_index].ReserveNowConf = 0; } } } //========================================== // send request routine //========================================== int sendAuthorizeRequest(int gun_index) { mtrace(); int result = FAIL; char message[100]={0}; char guid[37]; char tempdata[65]={0}; DEBUG_INFO("sendAuthorizeRequest...\n"); memset(&(ShmOCPP16Data->Authorize.ResponseIdTagInfo),0,sizeof(struct StructIdTagInfo)); //Local Authorize if((strcmp((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData , "TRUE")==0) &&(ShmOCPP16Data->OcppConnStatus == 0)) { DEBUG_INFO("Allow OfflineTx UnknownId Pass !!!!\n"); strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate, ""); strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, ""); strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, "Accepted"); result = PASS; ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0; ShmOCPP16Data->SpMsg.bits.AuthorizeConf = 1; // inform csu authorizeRetryTimes = 0; return result; } else if(((strcmp((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "TRUE") == 0)&&(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE") == 0)&&(ShmOCPP16Data->OcppConnStatus == 0))|| ((strcmp((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "TRUE") == 0)&&(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE") == 0))) { // Query from cache DEBUG_INFO("Authorize from cache.\n"); OCPP_getIdTagFromLocalCache((char *)ShmSysConfigAndInfo->SysConfig.UserId); // Query from list if((strcmp(idTagQuery.idTagstr,"") == 0) || (strcmp(idTagQuery.idTagstatus,"Accepted") != 0) ) { DEBUG_INFO("Authorize from list.\n"); OCPP_getIdTagFromLocalList((char *)ShmSysConfigAndInfo->SysConfig.UserId); } if((strcmp(idTagQuery.idTagstr,"") == 0) || (strcmp(idTagQuery.idTagstatus,"Accepted") != 0) ) { if(strcmp(idTagQuery.idTagstr,"") == 0) { DEBUG_INFO("off-line Local Authorization Fail !!!!, Card %s is blank!!!!\n", idTagQuery.idTagstr); } if(strcmp(idTagQuery.idTagstatus,"Accepted") != 0) { DEBUG_INFO("off-line Local Authorization Fail !!!!, Card %s is not Accepted!!!!\n", idTagQuery.idTagstr); } DEBUG_INFO("off-line Local Authorization Fail !!!!\n"); strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate, ""); strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId); strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, "Invalid"); DEBUG_INFO("ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status: %s \n", ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status); ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0; ShmOCPP16Data->SpMsg.bits.AuthorizeConf = 1; // inform csu authorizeRetryTimes = 0; return result; } else { DEBUG_INFO("off-line Local Authorization get result !!!!\n"); strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate, idTagQuery.expiryDate); strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId); if(isOvertNow((uint8_t*)&idTagQuery.expiryDate[0])) sprintf((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, "Expired"); else strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, idTagQuery.idTagstatus); DEBUG_INFO("ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status: %s \n", ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status); result = PASS; ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0; ShmOCPP16Data->SpMsg.bits.AuthorizeConf = 1; // inform csu authorizeRetryTimes = 0; return result; } } //initialize struct Authorize memset(&(ShmOCPP16Data->Authorize), 0 , sizeof(struct StructAuthorize)); //get data from shared memory strcpy((char *)ShmOCPP16Data->Authorize.IdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId); random_uuid(guid); sprintf(message,"[%d,\"%s\",\"Authorize\",{\"idTag\":\"%s\"}]",MESSAGE_TYPE_CALL, guid, ShmOCPP16Data->Authorize.IdTag); LWS_Send(message); sprintf(tempdata, "Authorize,%d", gun_index); if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1) { result = PASS; DEBUG_INFO("Authorize mapItem pass\n"); } ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0; return result; } int sendBootNotificationRequest(void) { mtrace(); int result = FAIL; char message[500]={0}, payload[700]={0}; char guid[37]={0}; char tempdata[65]={0}; // Fill BootNotification fields strcpy((char *)ShmOCPP16Data->BootNotification.CbSN,(const char *)ShmOCPP16Data->ChargeBoxId); strcpy((char *)ShmOCPP16Data->BootNotification.CpModel,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName); strcpy((char *)ShmOCPP16Data->BootNotification.CpSN,(const char *)ShmSysConfigAndInfo->SysConfig.SerialNumber); strcpy((char *)ShmOCPP16Data->BootNotification.CpVendor,(const char *)ShmSysConfigAndInfo->SysConfig.chargePointVendor); strcpy((char *)ShmOCPP16Data->BootNotification.CpFwVersion,(const char *)ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev); strcpy((char *)ShmOCPP16Data->BootNotification.CpIccid,(const char *)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimIccid); strcpy((char *)ShmOCPP16Data->BootNotification.CpImsi,(const char *)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimImsi); sprintf(payload, "{\"chargeBoxSerialNumber\":\"%s\",\"chargePointModel\":\"%s\",\"chargePointSerialNumber\":\"%s\",\"chargePointVendor\":\"%s\",\"firmwareVersion\":\"%s\",\"iccid\":\"%s\",\"imsi\":\"%s\"} ", ShmOCPP16Data->ChargeBoxId ,ShmSysConfigAndInfo->SysConfig.ModelName ,ShmSysConfigAndInfo->SysConfig.SerialNumber ,ShmSysConfigAndInfo->SysConfig.chargePointVendor ,ShmOCPP16Data->BootNotification.CpFwVersion ,ShmOCPP16Data->BootNotification.CpIccid ,ShmOCPP16Data->BootNotification.CpImsi); random_uuid(guid); sprintf(message,"[%d,\"%s\",\"%s\",%s]",MESSAGE_TYPE_CALL, guid, "BootNotification", payload); LWS_Send(message); sprintf(tempdata, "BootNotification,0"); if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, guid,mapItem, tempdata/*(void**)(&mapItem)*//*(void**)(&mapItem)*/) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/) { result = PASS; } memset(queuedata, 0, ARRAY_SIZE(queuedata)); strcpy(queuedata,message); return result; } int sendDataTransferRequest(int gun_index) { mtrace(); char message[1000]={0}; char guid[37]={0}; char tempdata[65]={0}; int result = FAIL; random_uuid(guid); sprintf(message,"[%d,\"%s\",\"DataTransfer\",{\"vendorId\":\"%s\",\"messageId\":\"%s\",\"data\":\"%s\"}]", MESSAGE_TYPE_CALL, guid, ShmOCPP16Data->DataTransfer[gun_index].VendorId, ShmOCPP16Data->DataTransfer[gun_index].MessageId, ShmOCPP16Data->DataTransfer[gun_index].Data); LWS_Send(message); sprintf(tempdata, "DataTransfer,%d", (gun_index + 1)); if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1) { result = PASS; DEBUG_INFO("DataTransfer mapItem pass\n"); } return result; } int sendDiagnosticsStatusNotificationRequest(char *status) { mtrace(); int result = FAIL; char message[110]={0}; char guid[37]={0}; char tempdata[65]={0}; //[ 2, "9f7bced1-b8b1-40ec-b3bb-2e15630e3cdc", "DiagnosticsStatusNotification", { "status": "Idle" } ] DEBUG_INFO("sendDiagnosticsStatusNotificationRequest \n"); sprintf((char *)ShmOCPP16Data->DiagnosticsStatusNotification.Status,"%s",(const char *)status); random_uuid(guid); sprintf(message,"[%d,\"%s\",\"DiagnosticsStatusNotification\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALL, guid,status); LWS_SendNow(message); sprintf(tempdata, "DiagnosticsStatusNotification,%d", 0); if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1) { result = PASS; //DEBUG_INFO("DiagnosticsStatusNotification mapItem pass\n"); } //#ifdef SystemLogMessage //DEBUG_INFO(">>>>>DiagnosticsStatusNotification request\n"); //DEBUG_INFO("Message: %s\n", SendBuffer); //DEBUG_INFO("After push hash length: %d\n", hashmapForMessageLength()/*hashmap_length(hashMap)*/); //#endif ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 0; ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationConf = 0; //record status if(strcmp(status,"Idle")==0) { DiagnosticsStatusNotificationStatus = DIAGNOSTIC_STATUS_IDLE; } else if(strcmp(status,"Uploaded")==0) { DiagnosticsStatusNotificationStatus = DIAGNOSTIC_STATUS_UPLOADED; } else if(strcmp(status,"UploadFailed")==0) { DiagnosticsStatusNotificationStatus = DIAGNOSTIC_STATUS_UPLOAD_FAIL; } else if(strcmp(status,"Uploading")==0) { DiagnosticsStatusNotificationStatus = DIAGNOSTIC_STATUS_UPLOADING; } return result; } int sendFirmwareStatusNotificationRequest(char *status) { mtrace(); int result = FAIL; char message[110]={0}; char guid[37]={0}; char tempdata[65]={0}; // [ 2, "eb841424-ae56-42b0-8c84-d5296018c33c", "FirmwareStatusNotification", { "status": "Downloaded" } ] DEBUG_INFO("sendFirmwareStatusNotificationRequest \n"); sprintf((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s", (const char *)status); random_uuid(guid); sprintf(message,"[%d,\"%s\",\"FirmwareStatusNotification\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALL, guid, status); LWS_SendNow(message); sprintf(tempdata, "FirmwareStatusNotification,%d", 0); if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, mapItem[0].key_string, mapItem[0].key_value/*mapItem*/, (void**)(&mapItem)/*(void**)(&mapItem)*/) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/) { result = PASS; DEBUG_INFO("FirmwareStatusNotification mapItem pass\n"); } //#ifdef SystemLogMessage //DEBUG_INFO(">>>>>FirmwareStatusNotification request\n"); //DEBUG_INFO("Message: %s\n", SendBuffer); //#endif ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 0; ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationConf = 0; //record status if(strcmp(status,"Downloaded")==0) { FirmwareStatusNotificationStatus = FIRMWARE_STATUS_DOWNLOADED; } else if(strcmp(status,"DownloadFailed")==0) { FirmwareStatusNotificationStatus = FIRMWARE_STATUS_DOWNLOAD_FAILED; } else if(strcmp(status,"Downloading")==0) { FirmwareStatusNotificationStatus = FIRMWARE_STATUS_DOWNLOADING; } else if(strcmp(status,"Idle")==0) { FirmwareStatusNotificationStatus = FIRMWARE_STATUS_IDLE; } else if(strcmp(status,"InstallationFailed")==0) { FirmwareStatusNotificationStatus = FIRMWARE_STATUS_INSTALLATION_FAILED; } else if(strcmp(status,"Installing")==0) { FirmwareStatusNotificationStatus = FIRMWARE_STATUS_INSTALLING; } else if(strcmp(status,"Installed")==0) { FirmwareStatusNotificationStatus = FIRMWARE_STATUS_INSTALLED; } return result; } int sendHeartbeatRequest(int gun_index) { mtrace(); int result = FAIL; char message[80]={0}; char guid[37]={0}; char tempdata[65]={0}; random_uuid(guid); sprintf(message, "[%d,\"%s\",\"Heartbeat\",{ }]" , MESSAGE_TYPE_CALL , guid ); LWS_Send(message); sprintf(tempdata, "Heartbeat,%d", 0); if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, guid, mapItem, tempdata/*(void**)(&mapItem)*/) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/) { result = PASS; } return result; } int sendStartTransactionRequest(int gun_index) { mtrace(); int result = FAIL; char message[250]={0}; char guid[37]={0}; struct timeval tmnow; struct tm *tm; char buf[28];//, usec_buf[6]; char tempdata[65]={0}; int tempIndex = 0; DEBUG_INFO("sendStartTransactionRequest...\n"); gettimeofday(&tmnow, NULL); time_t t; t = time(NULL); /*UTC time and date*/ tm = gmtime(&t); strftime(buf,28,"%Y-%m-%dT%H:%M:%SZ", tm); #if 0 // remove temporally strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm); strcat(buf,"."); sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec); strcat(buf,usec_buf); #endif ShmOCPP16Data->StartTransaction[gun_index].ConnectorId = gun_index +1 ; // gun start from 1~ strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].Timestamp, buf); //strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].IdTag, (const char *)ShmSysConfigAndInfo->SysConfig.UserId); // clear StartTransaction Response strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ExpiryDate, ""); strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ParentIdTag, ""); strcpy((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.Status, ""); ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId = 0; clientTime.MeterValues[gun_index] = time((time_t*)NULL); //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DCcc if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { ShmOCPP16Data->StartTransaction[gun_index].MeterStart = (int)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption*1000); ShmOCPP16Data->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId; } } } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { ShmOCPP16Data->StartTransaction[gun_index].MeterStart = (int)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption*1000); ShmOCPP16Data->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId; } } } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { ShmOCPP16Data->StartTransaction[gun_index].MeterStart = (int)(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption*1000); ShmOCPP16Data->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId; } } } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { ShmOCPP16Data->StartTransaction[gun_index].MeterStart = (int)(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption*1000); ShmOCPP16Data->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId; } } } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { ShmOCPP16Data->StartTransaction[gun_index].MeterStart = (int)(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption*1000); ShmOCPP16Data->StartTransaction[gun_index].ReservationId = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId; } } } random_uuid(guid); if(ShmOCPP16Data->StartTransaction[gun_index].ReservationId == -1) // No Reservation { sprintf(message, "%d,[%d,\"%s\",\"StartTransaction\",{\"connectorId\":%d,\"idTag\":\"%s\",\"meterStart\":%d,\"timestamp\":\"%s\"}]" , gun_index +1 , MESSAGE_TYPE_CALL , guid , ShmOCPP16Data->StartTransaction[gun_index].ConnectorId , ShmOCPP16Data->StartTransaction[gun_index].IdTag , ShmOCPP16Data->StartTransaction[gun_index].MeterStart , ShmOCPP16Data->StartTransaction[gun_index].Timestamp ); } else { sprintf(message, "%d,[%d,\"%s\",\"StartTransaction\",{\"connectorId\":%d,\"idTag\":\"%s\",\"meterStart\":%d,\"reservationId\":%d,\"timestamp\":\"%s\"}]" , gun_index +1 , MESSAGE_TYPE_CALL , guid , ShmOCPP16Data->StartTransaction[gun_index].ConnectorId , ShmOCPP16Data->StartTransaction[gun_index].IdTag , ShmOCPP16Data->StartTransaction[gun_index].MeterStart , ShmOCPP16Data->StartTransaction[gun_index].ReservationId , ShmOCPP16Data->StartTransaction[gun_index].Timestamp ); } #if 1 sprintf(tempdata, "StartTransaction,%d", (gun_index)); if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, mapItem[0].key_string, mapItem[0].key_value/*mapItem*/, (void**)(&mapItem)/*(void**)(&mapItem)*/) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/) { result = PASS; } #endif strcpy(queuedata, message); queue_operation(QUEUE_OPERATION_ADD, guid, queuedata );//addq(guid, queuedata); ---> remove temporally return result; } int sendStatusNotificationRequest(int gun_index) { mtrace(); int result = FAIL; char message[600]={0}; char guid[37]; int currentStatus = 0; struct timeval tmnow; struct tm *tm; char buf[28];//, usec_buf[6]; char tempdata[65]={0}; int tempIndex = 0; gettimeofday(&tmnow, NULL); time_t t; t = time(NULL); /*UTC time and date*/ tm = gmtime(&t); strftime(buf,28,"%Y-%m-%dT%H:%M:%SZ", tm); #if 0 // remove temporally strftime(buf,30,"%Y-%m-%dT%H:%M:%S", tm); strcat(buf,"."); sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec); strcat(buf,usec_buf); #endif printf("%s",buf); ShmOCPP16Data->StatusNotification[gun_index].ConnectorId = (gun_index + 1); //strcpy(ShmOCPP16Data->StatusNotification[gun_index].ErrorCode, "NoError"); --- CSU Setting // it's option strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].Info, ""); /* enum _SYSTEM_STATUS { S_BOOTING = 0, S_IDLE, = 1 S_AUTHORIZING, =2 S_REASSIGN_CHECK, =3 S_REASSIGN, =4 S_PRECHARGE, =5 S_PREPARING_FOR_EV, =6 S_PREPARING_FOR_EVSE, =7 S_CHARGING, =8 S_TERMINATING, =9 S_COMPLETE, =10 S_ALARM, =11 S_FAULT =12 } */ //check Transaction active //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DCcc if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex)) { if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE)//S_IDLE { if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn == 1) // //0: unplug, 1: Plug-in { currentStatus = 1; //OCPP Status: Preparing } else { currentStatus = 0; //OCPP Status: Available } } else if ( ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus >= SYS_MODE_AUTHORIZING)&&( ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus <= SYS_MODE_PREPARE_FOR_EVSE)) || ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus >= SYS_MODE_CCS_PRECHARGE_STEP0) && ( ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus <= SYS_MODE_CCS_PRECHARGE_STEP1) ) ) //S_PRECHARGE { currentStatus = 1; //OCPP Status: Preparing } else if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) //S_CHARGING { currentStatus = 2; //OCPP Status: Charging } else if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_COMPLETE) //S_COMPLETE { currentStatus = 5; //OCPP Status: Finishing } else if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_TERMINATING) // S_TERMINATING ---> SuspendedEV { currentStatus = 4; //OCPP Status: SuspendedEV } else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_MAINTAIN)|| (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_UPDATE)) // ---> Unavailable { currentStatus = 7; //OCPP Status: Unavailable } else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT)|| (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_ALARM)) //S_ALARM,S_FAULT ---> Faulted { currentStatus = 8; //OCPP Status: Faulted } else if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_RESERVATION) // ---> Reserved { currentStatus = 6; //OCPP Status: Reserved } } //end of the same index }//end of for CHAdeMO_QUANTITY } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE { if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn == 1) //0: unplug, 1: Plug-in { currentStatus = 1; //OCPP Status: Preparing } else { currentStatus = 0; //OCPP Status: Available } } else if ( ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus >= SYS_MODE_AUTHORIZING)&&( ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus <= SYS_MODE_PREPARE_FOR_EVSE)) || ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus >= SYS_MODE_CCS_PRECHARGE_STEP0) && ( ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus <= SYS_MODE_CCS_PRECHARGE_STEP1) ) ) //S_PRECHARGE { currentStatus = 1; //OCPP Status: Preparing } else if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) //S_CHARGING { currentStatus = 2; //OCPP Status: Charging } else if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_COMPLETE) //S_COMPLETE { currentStatus = 5; //OCPP Status: Finishing } else if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_TERMINATING) //S_TERMINATING ---> SuspendedEV { currentStatus = 4; //OCPP Status: SuspendedEV } else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_UPDATE)) // ---> Unavailable { currentStatus = 7; //OCPP Status : Unavailable } else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_ALARM)) //S_ALARM ,S_FAULT ---> Faulted { currentStatus = 8; //OCPP Status: Faulted } else if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_RESERVATION) // ---> Reserved { currentStatus = 6; //OCPP Status: Reserved } } //end of the same index } // end of for CCS_QUANTITY } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE { if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn == 1) // //0: unplug, 1: Plug-in { currentStatus = 1; //OCPP Status: Preparing } else { currentStatus = 0; //OCPP Status: Available } } else if ( ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus >= SYS_MODE_AUTHORIZING)&&( ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus <= SYS_MODE_PREPARE_FOR_EVSE)) || ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus >= SYS_MODE_CCS_PRECHARGE_STEP0) && ( ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus <= SYS_MODE_CCS_PRECHARGE_STEP1) ) ) //S_PRECHARGE { currentStatus = 1; //OCPP Status: Preparing } else if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) //S_CHARGING { currentStatus = 2; //OCPP Status: Charging } else if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_COMPLETE) //S_COMPLETE { currentStatus = 5; //OCPP Status: Finishing } else if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_TERMINATING) // S_TERMINATING ---> SuspendedEV { currentStatus = 4; //OCPP Status: SuspendedEV } else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_UPDATE)) // ---> Unavailable { currentStatus = 7; //OCPP Status: Unavailable } else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_ALARM)) //S_ALARM ,S_FAULT ---> Faulted { currentStatus = 8; //OCPP Status: Faulted } else if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_RESERVATION) // ---> Reserved { currentStatus = 6; //OCPP Status: Reserved } } //end of the same index } // end of for GB_QUANTITY } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_IDLE) //S_IDLE { if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ConnectorPlugIn == 1) // //0: unplug, 1: Plug-in { currentStatus = 1; //OCPP Status: Preparing } else { currentStatus = 0; //OCPP Status: Available } } else if ( ((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus >= SYS_MODE_AUTHORIZING) && (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus <= SYS_MODE_PREPARE_FOR_EVSE)) || ((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus >= SYS_MODE_CCS_PRECHARGE_STEP0) && (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus <= SYS_MODE_CCS_PRECHARGE_STEP1) ) ) //S_PRECHARGE { currentStatus = 1; //OCPP Status: Preparing } else if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_CHARGING) //S_CHARGING { currentStatus = 2; //OCPP Status: Charging } else if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_COMPLETE) //S_COMPLETE { currentStatus = 5; //OCPP Status: Finishing } else if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_TERMINATING) // S_TERMINATING ---> SuspendedEV { currentStatus = 4; //OCPP Status: SuspendedEV } else if ((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_UPDATE)) // ---> Unavailable { currentStatus = 7; //OCPP Status: Unavailable } else if ((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_ALARM)) //S_ALARM ,S_FAULT ---> Faulted { currentStatus = 8; //OCPP Status: Faulted } else if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_RESERVATION) // ---> Reserved { currentStatus = 6; //OCPP Status: Reserved } } //end of the same index } } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE) //SYS_MODE_IDLE { if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_B) ||(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_C) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_D)) { currentStatus = 1; //OCPP Status: Preparing } else { currentStatus = 0; //OCPP Status: Available } } else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING)) //SYS_MODE_PREPARING { currentStatus = 1; //OCPP Status: Preparing } else if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) //SYS_MODE_CHARGING { currentStatus = 2; //OCPP Status: Charging } else if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_COMPLETE) //SYS_MODE_COMPLETE { currentStatus = 5; //OCPP Status: Finishing } else if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING) // S_TERMINATING ---> SuspendedEV { currentStatus = 4; //OCPP Status: SuspendedEV } else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_MAINTAIN)|| (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_UPDATE)) // ---> Unavailable { currentStatus = 7; //OCPP Status: Unavailable } else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_ALARM)) //S_ALARM,S_FAULT ---> Faulted { currentStatus = 8; //OCPP Status: Faulted } else if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_RESERVATION) // ---> Reserved { currentStatus = 6; //OCPP Status: Reserved } }//end of the same index }//end of for AC_QUANTITY } //it's option strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].Timestamp, buf); strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].VendorId, "PhihongTechnology"); strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[currentStatus]); random_uuid(guid); sprintf(message, "[%d,\"%s\",\"StatusNotification\",{\"connectorId\":%d,\"errorCode\":\"%s\",\"info\":\"%s\",\"status\":\"%s\",\"timestamp\":\"%s\",\"vendorId\":\"%s\",\"vendorErrorCode\":\"%s\"}]" , MESSAGE_TYPE_CALL , guid , ShmOCPP16Data->StatusNotification[gun_index].ConnectorId , ShmOCPP16Data->StatusNotification[gun_index].ErrorCode , ShmOCPP16Data->StatusNotification[gun_index].Info , ShmOCPP16Data->StatusNotification[gun_index].Status , ShmOCPP16Data->StatusNotification[gun_index].Timestamp , ShmOCPP16Data->StatusNotification[gun_index].VendorId , ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode); if((server_sign == TRUE)) { LWS_Send(message); sprintf(tempdata, "StatusNotification,%d", (gun_index)); if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, guid, mapItem, tempdata/*(void**)(&mapItem)*//*(void**)(&mapItem)*/) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/) { //DEBUG_ERROR("statusNotification mapitem pass"); result = PASS; } } else { result = PASS; } return result; } int sendStopTransactionRequest(int gun_index) { mtrace(); int result = FAIL; //char message[1500]={0}; char guid[37]={0}; char tempdata[65]={0}; int tempIndex = 0; char TempStopTransaction[256]; sprintf(TempStopTransaction, "/Storage/OCPP/TempStopTransaction_%d", (gun_index+1)); //int idx_sample=0; DEBUG_INFO("sendStopTransactionRequest \n"); memset(queuedata, 0, ARRAY_SIZE(queuedata)); memset(&ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0], 0, ARRAY_SIZE(ShmOCPP16Data->StopTransaction[gun_index].TransactionData)); //=========================== ENERGY_ACTIVE_IMPORT_REGISTER ======================================= //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DCcc if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { ShmOCPP16Data->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption*1000); } }// END OF CHAdeMO_QUANTITY } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { ShmOCPP16Data->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption*1000); } }// END OF CCS_QUANTITY } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { ShmOCPP16Data->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption*1000); } }// END OF GB_QUANTITY } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { ShmOCPP16Data->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption*1000); } }// END OF GB_QUANTITY } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { ShmOCPP16Data->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption*1000); } }// END OF AC_QUANTITY } //====================================== Stop Transaction Time ===================================================== struct timeval tmnow; struct tm *tm; char buf[28];//, usec_buf[6]; gettimeofday(&tmnow, NULL); time_t t; t = time(NULL); /*UTC time and date*/ tm = gmtime(&t); strftime(buf,28,"%Y-%m-%dT%H:%M:%SZ", tm); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].Timestamp,buf); ShmOCPP16Data->StopTransaction[gun_index].TransactionId = ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId; random_uuid(guid); /***********************************transactionData******************************************************/ memset(ShmOCPP16Data->StopTransaction[gun_index].TransactionData, 0, sizeof(sizeof(struct StructMeterValue))); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].TimeStamp, buf); //================================= // Transaction_Begin //================================= //============================================ Energy.Active.Import.Interval ================================ //idx_sample=0; sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[0].Value, "%.1f", 0.0); // MeterStart is 0~6553.5 kWh strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[0].Context,ReadingContextStr[ReadingContext_Transaction_Begin]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[0].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[0].Measurand,MeasurandStr[Energy_Active_Import_Interval]);//MeasurandStr[Energy_Active_Export_Interval/*Energy_Reactive_Export_Register*/]); //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DCcc if((gunType[gun_index] == 'J')||(gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')||(gunType[gun_index] == 'G')||(gunType[gun_index] == 'O')) { strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[0].Phase,PhaseStr[L3_N]); } else { strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[0].Phase,PhaseStr[L1_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[0].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[0].Unit,UnitOfMeasureStr[UnitOfMeasure_kWh]); //================================= // Transaction_End //================================= // ================================= Current.Import L1 =============================================== //idx_sample=1; //J: CHAdeMO U: CCS1 combo E: CCS2 combo G : GBT DC if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp } }// End of for CHAdeMO_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L3_N]); } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp } }// End of for CCS_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp } }// End of for GB_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp } } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L3_N]); } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrent );// 0~6553.5 amp for EVSE } }// End of for AC_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L1_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Measurand,MeasurandStr[Current_Import]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Unit,UnitOfMeasureStr[UnitOfMeasure_A]); // ================================= Energy.Active.Import.Interval ============================================== //idx_sample=2; //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );// PresentChargedEnergy is 0~6553.5 kWh } }// END OF CHAdeMO_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]); } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy );// PresentChargedEnergy is 0~6553.5 kWh } }// END OF CCS_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy );// PresentChargedEnergy is 0~6553.5 kWh } }// END OF GB_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargedEnergy );// PresentChargedEnergy is 0~6553.5 kWh } } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]); } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy );// PresentChargedEnergy is 0~6553.5 kWh } }// END OF AC_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L1_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Measurand,MeasurandStr[Energy_Active_Import_Interval]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Unit,UnitOfMeasureStr[UnitOfMeasure_kWh]); //=================================== Power.Active.Import ================================================== //idx_sample=3; //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW } } // End for CHAdeMO_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L3_N]); } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW } } // END for CCS_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW } }// END for GB_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingPower );// PresentChargingPower is 0~6553.5 kW } } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L3_N]); } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW } } // END for AC_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L1_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Measurand,MeasurandStr[Power_Active_Import]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Unit,UnitOfMeasureStr[UnitOfMeasure_kW/*UnitOfMeasure_kWh*/]); //============================ Voltage L1 ==================================== //idx_sample=4; //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt } } // END OF FOR CHAdeMO_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L3_N]); } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt } } // END OF FOR CCS_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt } } // END OF FOR GB_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt } } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L3_N]); } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltage );//AcChargingVoltage is 0~6553.5 volt for AC EVSE } } // END OF FOR AC_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L1_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Measurand,MeasurandStr[Voltage]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Unit,UnitOfMeasureStr[UnitOfMeasure_V]); //====================== End SoC ================================ //idx_sample=5; //J : CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if((gunType[gun_index] == 'J')||(gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')||(gunType[gun_index] == 'G')||(gunType[gun_index] == 'O')) { if((ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') && (gunType[gun_index] != 'O')) { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } if(gunType[gun_index] == 'J') { for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatterySoc );// 0~100% } } } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatterySoc );// 0~100% } } } else if(gunType[gun_index] == 'G') { for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatterySoc );// 0~100% } } } else if(gunType[gun_index] == 'O') { for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.EvBatterySoc );// 0~100% } } } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Measurand,MeasurandStr[SoC/*Energy_Reactive_Export_Register*/]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Phase,PhaseStr[L3_N]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Location,LocationStr[Location_EV]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Unit,UnitOfMeasureStr[UnitOfMeasure_Percent/*UnitOfMeasure_kWh*/]); } // END FOR DC CASE // ================================= Current.Import L2 =============================================== //idx_sample=6; // AC 3 phse L2 current if(('1' <= gunType[gun_index]) && (gunType[gun_index] <= '9') && ((ShmSysConfigAndInfo->SysConfig.ModelName[2]=='Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='W'))) { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrentL2 );// 0~6553.5 amp for EVSE } }// End of for AC_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Phase,PhaseStr[L2_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Measurand,MeasurandStr[Current_Import]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Unit,UnitOfMeasureStr[UnitOfMeasure_A]); // ================================= Current.Import L3 =============================================== //idx_sample=7; // AC 3 phse L3 current if(('1' <= gunType[gun_index]) && (gunType[gun_index] <= '9') && ((ShmSysConfigAndInfo->SysConfig.ModelName[2]=='Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='W'))) { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrentL3 );// 0~6553.5 amp for EVSE } }// End of for AC_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Phase,PhaseStr[L3_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Measurand,MeasurandStr[Current_Import]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Unit,UnitOfMeasureStr[UnitOfMeasure_A]); //============================ Voltage L2 ==================================== //idx_sample=8; // AC 3 phse L2 voltage if(('1' <= gunType[gun_index]) && (gunType[gun_index] <= '9') && ((ShmSysConfigAndInfo->SysConfig.ModelName[2]=='Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='W'))) { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltageL2 );//AcChargingVoltage is 0~6553.5 volt for AC EVSE } } // END OF FOR AC_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Phase,PhaseStr[L2_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Measurand,MeasurandStr[Voltage]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Unit,UnitOfMeasureStr[UnitOfMeasure_V]); //============================ Voltage L3 ==================================== //idx_sample=8; // AC 3 phse L3 voltage if(('1' <= gunType[gun_index]) && (gunType[gun_index] <= '9') && ((ShmSysConfigAndInfo->SysConfig.ModelName[2]=='Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='W'))) { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltageL3 );//AcChargingVoltage is 0~6553.5 volt for AC EVSE } } // END OF FOR AC_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Phase,PhaseStr[L3_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Measurand,MeasurandStr[Voltage]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Unit,UnitOfMeasureStr[UnitOfMeasure_V]); //====================== Start SoC ================================ //idx_sample=10; //J : CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if((gunType[gun_index] == 'J')||(gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')||(gunType[gun_index] == 'G')||(gunType[gun_index] == 'O')) { if((ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') && (gunType[gun_index] != 'O')) { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } if(gunType[gun_index] == 'J') { for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatteryStartSoc );// 0~100% } } } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatteryStartSoc );// 0~100% } } } else if(gunType[gun_index] == 'G') { for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatteryStartSoc );// 0~100% } } } else if(gunType[gun_index] == 'O') { for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.EvBatteryStartSoc );// 0~100% } } } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Context,ReadingContextStr[ReadingContext_Transaction_Begin]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Measurand,MeasurandStr[SoC/*Energy_Reactive_Export_Register*/]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Phase,PhaseStr[L3_N]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Location,LocationStr[Location_EV]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Unit,UnitOfMeasureStr[UnitOfMeasure_Percent/*UnitOfMeasure_kWh*/]); } // END FOR DC CASE //================================================ Message create ==================================================== json_object *StopTransaction = json_object_new_object(); json_object *transactionDatas = json_object_new_array(); json_object *sampledValues = json_object_new_array(); if(strlen((char*)ShmOCPP16Data->StopTransaction[gun_index].IdTag) > 0) json_object_object_add(StopTransaction, "idTag", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].IdTag)); json_object_object_add(StopTransaction, "meterStop", json_object_new_int(ShmOCPP16Data->StopTransaction[gun_index].MeterStop)); json_object_object_add(StopTransaction, "transactionId", json_object_new_int(ShmOCPP16Data->StopTransaction[gun_index].TransactionId)); json_object_object_add(StopTransaction, "timestamp", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].Timestamp)); if(strlen((char*)ShmOCPP16Data->StopTransaction[gun_index].StopReason) > 0) json_object_object_add(StopTransaction, "reason", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].StopReason)); for(int idxTrans = 0;idxTransStopTransaction[gun_index].TransactionData);idxTrans++) { json_object *transactionData = json_object_new_object(); json_object_object_add(transactionData, "timestamp", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].TimeStamp)); for(int idx=0;idxStopTransaction[gun_index].TransactionData[idxTrans].SampledValue);idx++) { if(strlen((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Value) > 0) { json_object *sampledValue = json_object_new_object(); json_object_object_add(sampledValue, "value", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Value)); if(strlen((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Context) > 0) json_object_object_add(sampledValue, "context", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Context)); if(strlen((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Format) > 0) json_object_object_add(sampledValue, "format", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Format)); if(strlen((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Measurand) > 0) json_object_object_add(sampledValue, "measurand", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Measurand)); if(strlen((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Phase) > 0) json_object_object_add(sampledValue, "phase", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Phase)); if(strlen((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Location) > 0) json_object_object_add(sampledValue, "location", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Location)); if(strlen((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Unit) > 0) json_object_object_add(sampledValue, "unit", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Unit)); json_object_array_add(sampledValues, sampledValue); } } json_object_object_add(transactionData, "sampledValue", sampledValues); json_object_array_add(transactionDatas, transactionData); } json_object_object_add(StopTransaction, "transactionData", transactionDatas); sprintf(queuedata, "%d,[%d,\"%s\",\"StopTransaction\",%s]",(gun_index+1) ,MESSAGE_TYPE_CALL ,guid ,json_object_to_json_string_ext(StopTransaction, JSON_C_TO_STRING_PLAIN)); json_object_put(StopTransaction); #if 1 // for TempStopTransaction //Delete TempStopTransaction if((access(TempStopTransaction,F_OK))!=-1) { remove(TempStopTransaction); // remove file "TempStopTransaction" } #endif #if 1 sprintf(tempdata, "StopTransaction,%d", (gun_index)); if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1) { result = PASS; //DEBUG_INFO("StopTransaction mapitem pass\n"); } #endif queue_operation(QUEUE_OPERATION_ADD, guid, queuedata );//addq(guid, queuedata); ---> remove temporally //----------------------------replace queue StopTransaction TransactionId ---------------------------// //int gettransactionId = GetTransactionId(gun_index+1, ShmOCPP16Data->StopTransaction[gun_index].IdTag); int gettransactionId = GetTransactionId(gun_index+1, ShmOCPP16Data->StartTransaction[gun_index].IdTag, TRUE); if((ShmOCPP16Data->StopTransaction[gun_index].TransactionId != 0) && (gettransactionId != 0)) { SetTransactionIdZero(ShmOCPP16Data->StopTransaction[gun_index].TransactionId); } //for test //ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq = 0; return result; } int sendMeterValuesRequest(int gun_index, ReadingContext dataType) { mtrace(); int result = FAIL; char guid[37]={0}; char tempdata[65]={0}; int tempIndex = 0; DEBUG_INFO("sendMeterValuesRequest ...\n"); memset(queuedata, 0, ARRAY_SIZE(queuedata)); memset(&ShmOCPP16Data->MeterValues[gun_index], 0, sizeof(struct StructMeterValues)); //set value ShmOCPP16Data->MeterValues[gun_index].ConnectorId = gun_index + 1; // gun start from 1~ ShmOCPP16Data->MeterValues[gun_index].TransactionId = ((strstr((char*)ShmOCPP16Data->StatusNotification[gun_index].Status, "Charging") != NULL) ? ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId : -1); random_uuid(guid); //UTC Date time struct timeval tmnow; struct tm *tm; char buf[28];//, usec_buf[6]; gettimeofday(&tmnow, NULL); time_t t; t = time(NULL); /*UTC time and date*/ tm = gmtime(&t); strftime(buf,28,"%Y-%m-%dT%H:%M:%SZ", tm); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].TimeStamp, buf); //DEBUG_INFO("ShmSysConfigAndInfo->SysConfig.ModelName[0]=%c\n", ShmSysConfigAndInfo->SysConfig.ModelName[0]); //idx_sample=0; //********************************(1)Current.Import L1************************************************/ //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[0].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingCurrent ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[0].Phase, PhaseStr[L3_N]); } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[0].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingCurrent ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[0].Phase, PhaseStr[L3_N]); } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[0].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingCurrent ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[0].Phase, PhaseStr[L3_N]); } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[0].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingCurrent ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[0].Phase, PhaseStr[L3_N]); } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[0].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrent ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[0].Phase, PhaseStr[L1_N]); } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[0].Context, ReadingContextStr[dataType]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[0].Format, ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[0].Measurand, MeasurandStr[Current_Import]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[0].Location, LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[0].Unit,UnitOfMeasureStr[UnitOfMeasure_A]); //idx_sample=1; //********************************(2)Energy.Active.Import.Register ************************************************/ //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Phase, PhaseStr[L3_N]); } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Phase, PhaseStr[L3_N]); } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Phase, PhaseStr[L3_N]); } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Phase, PhaseStr[L3_N]); } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Phase, PhaseStr[L1_N]); } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Context, ReadingContextStr[dataType]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Format, ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Measurand, MeasurandStr[Energy_Active_Import_Register]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Location, LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Unit,UnitOfMeasureStr[UnitOfMeasure_kWh]); //idx_sample=2; //****************************************************(3)Energy.Active.Import.Interval*********************************************/ //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy ); } } // END OF FOR CHAdeMO_QUANTITY strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Phase, PhaseStr[L3_N]); } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy ); } } // END OF CCS_QUANTITY strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Phase, PhaseStr[L3_N]); } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy); } } // END OF GB_QUANTITY strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Phase, PhaseStr[L3_N]); } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargedEnergy); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Phase, PhaseStr[L3_N]); } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Phase, PhaseStr[L1_N]); } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Context, ReadingContextStr[dataType]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Format, ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Measurand, MeasurandStr[Energy_Active_Import_Interval]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Location, LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Unit,UnitOfMeasureStr[UnitOfMeasure_kWh]); //idx_sample=3; //********************************(4)Power.Active.Import************************************************/ //J : CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[3].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingPower); } } // END OF FOR strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[3].Phase, PhaseStr[L3_N]); } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[3].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingPower); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[3].Phase, PhaseStr[L3_N]); } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower = 100.0; sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[3].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[3].Phase, PhaseStr[L3_N]); } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower = 100.0; sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[3].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingPower); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[3].Phase, PhaseStr[L3_N]); } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[3].Value, "%.1f" , ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingPower); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[3].Phase, PhaseStr[L1_N]); } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[3].Context, ReadingContextStr[dataType]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[3].Format, ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[3].Measurand, MeasurandStr[Power_Active_Import]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[3].Location, LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[3].Unit,UnitOfMeasureStr[UnitOfMeasure_kW]); //idx_sample=4; //***********************************************(5)VOLTAGE L1******************************************************/ //J : CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingVoltage ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[4].Phase, PhaseStr[L3_N]); } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingVoltage ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[4].Phase, PhaseStr[L3_N]); } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingVoltage ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[4].Phase, PhaseStr[L3_N]); } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingVoltage ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[4].Phase, PhaseStr[L3_N]); } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltage ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[4].Phase, PhaseStr[L1_N]); } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[4].Context, ReadingContextStr[dataType]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[4].Format, ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[4].Measurand, MeasurandStr[Voltage]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[4].Location, LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[4].Unit,UnitOfMeasureStr[UnitOfMeasure_V]); //***********************************************(6)SOC******************************************************/ if((gunType[gun_index] == 'J')||(gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')||(gunType[gun_index] == 'G')||(gunType[gun_index] == 'O')) { //idx_sample=5; //sampledValue = NULL; if((ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') && (gunType[gun_index] != 'O')) { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } if(gunType[gun_index] == 'J') { //tempIndex = ((gun_index==2) ? 1: 0); for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatterySoc ); } } } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { //tempIndex = ((gun_index==2) ? 1: 0); for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatterySoc ); } } } else if(gunType[gun_index] == 'G') { //tempIndex = ((gun_index==2) ? 1: 0); for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatterySoc ); } } } else if(gunType[gun_index] == 'O') { //tempIndex = ((gun_index==2) ? 1: 0); for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.EvBatterySoc ); } } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[5].Context, ReadingContextStr[dataType]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[5].Format, ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[5].Measurand, MeasurandStr[SoC]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[5].Phase, PhaseStr[L3_N]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[5].Location, LocationStr[Location_EV]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[5].Unit,UnitOfMeasureStr[UnitOfMeasure_Percent]); } //********************************(7)Current.Import L2************************************************/ // Only for AC 3 phase if(('1' <= gunType[gun_index]) && (gunType[gun_index] <= '9') && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W'))) { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[6].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrentL2); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[6].Phase, PhaseStr[L2_N]); } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[6].Context, ReadingContextStr[dataType]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[6].Format, ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[6].Measurand, MeasurandStr[Current_Import]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[6].Location, LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[6].Unit,UnitOfMeasureStr[UnitOfMeasure_A]); //********************************(8)Current.Import L3************************************************/ // Only for AC 3 phase if(('1' <= gunType[gun_index]) && (gunType[gun_index] <= '9') && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W'))) { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[7].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrentL3); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[7].Phase, PhaseStr[L3_N]); } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[7].Context, ReadingContextStr[dataType]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[7].Format, ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[7].Measurand, MeasurandStr[Current_Import]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[7].Location, LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[7].Unit,UnitOfMeasureStr[UnitOfMeasure_A]); //***********************************************(9)VOLTAGE L2******************************************************/ if(('1' <= gunType[gun_index]) && (gunType[gun_index] <= '9') && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W'))) { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[8].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltageL2); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[8].Phase, PhaseStr[L2_N]); } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[8].Context, ReadingContextStr[dataType]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[8].Format, ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[8].Measurand, MeasurandStr[Voltage]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[8].Location, LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[8].Unit,UnitOfMeasureStr[UnitOfMeasure_V]); //***********************************************(10)VOLTAGE L3******************************************************/ if(('1' <= gunType[gun_index]) && (gunType[gun_index] <= '9') && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W'))) { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[9].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltageL3); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[9].Phase, PhaseStr[L3_N]); } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[9].Context, ReadingContextStr[dataType]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[9].Format, ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[9].Measurand, MeasurandStr[Voltage]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[9].Location, LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[9].Unit,UnitOfMeasureStr[UnitOfMeasure_V]); // Message create ==================================================================================================== if(TRUE) { json_object *MeterValueReq = json_object_new_object(); json_object *MeterValues = json_object_new_array(); json_object *sampledValues = json_object_new_array(); json_object_object_add(MeterValueReq, "connectorId", json_object_new_int(ShmOCPP16Data->MeterValues[gun_index].ConnectorId)); if(ShmOCPP16Data->MeterValues[gun_index].TransactionId != -1) json_object_object_add(MeterValueReq, "transactionId", json_object_new_int(ShmOCPP16Data->MeterValues[gun_index].TransactionId)); for(uint8_t idxMeter=0;idxMeterMeterValues[gun_index].MeterValue);idxMeter++) { json_object *MeterValue = json_object_new_object(); for(int idxSample=0;idxSampleMeterValues[gun_index].MeterValue[idxMeter].SampledValue);idxSample++) { if(strlen((char*)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Value) > 0) { json_object *sampledValue = json_object_new_object(); json_object_object_add(sampledValue, "value", json_object_new_string((char*)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Value)); if(strlen((char*)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Context) > 0) json_object_object_add(sampledValue, "context", json_object_new_string((char*)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Context)); if(strlen((char*)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Format) > 0) json_object_object_add(sampledValue, "format", json_object_new_string((char*)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Format)); if(strlen((char*)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Measurand) > 0) json_object_object_add(sampledValue, "measurand", json_object_new_string((char*)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Measurand)); if(strlen((char*)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Phase) > 0) json_object_object_add(sampledValue, "phase", json_object_new_string((char*)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Phase)); if(strlen((char*)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Location) > 0) json_object_object_add(sampledValue, "location", json_object_new_string((char*)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Location)); if(strlen((char*)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Unit) > 0) json_object_object_add(sampledValue, "unit", json_object_new_string((char*)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idxMeter].SampledValue[idxSample].Unit)); json_object_array_add(sampledValues, sampledValue); } } json_object_object_add(MeterValue, "timestamp", json_object_new_string((char*)ShmOCPP16Data->MeterValues[gun_index].MeterValue[idxMeter].TimeStamp)); json_object_object_add(MeterValue, "sampledValue", sampledValues); json_object_array_add(MeterValues, MeterValue); } json_object_object_add(MeterValueReq, "meterValue", MeterValues); sprintf(queuedata,"%d,[%d,\"%s\",\"MeterValues\",%s]" ,gun_index + 1 ,MESSAGE_TYPE_CALL ,guid ,json_object_to_json_string_ext(MeterValueReq, JSON_C_TO_STRING_PLAIN)); json_object_put(MeterValueReq); } // Put request guid to hash map sprintf(tempdata, "MeterValues,%d", (gun_index)); if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, mapItem[0].key_string, mapItem[0].key_value/*mapItem*/, (void**)(&mapItem)/*(void**)(&mapItem)*/) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/) { result = PASS; //DEBUG_INFO("MeterValues mapitem pass\n"); } if((dataType != ReadingContext_Trigger) && (dataType != ReadingContext_Sample_Clock) && (ShmOCPP16Data->MeterValues[gun_index].TransactionId != -1)) queue_operation(QUEUE_OPERATION_ADD, guid, queuedata ); else { if(FirstHeartBeat) LWS_Send(queuedata +2); } return result; } //========================================== // send confirm routine //========================================== int sendCancelReservationConfirmation(char *uuid,char *payload) { mtrace(); int result = FAIL; char message[100]={0}; DEBUG_INFO("sendCancelReservationConfirmation...\n"); sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT,uuid, payload); LWS_Send(message); result = TRUE; ShmOCPP16Data->CsMsg.bits[0].CancelReservationConf = 0; return result; } int sendChangeAvailabilityConfirmation(char *uuid,char *payload) { mtrace(); int result = FAIL; char message[100]={0}; DEBUG_INFO("sendChangeAvailabilityConfirmation...\n"); sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT,uuid, payload); LWS_Send(message); result = TRUE; return result; } int sendChangeConfigurationConfirmation(char *uuid,char *payload) { mtrace(); int result = FAIL; char message[100]={0}; DEBUG_INFO("sendChangeConfigurationConfirmation...\n"); sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT,uuid, payload); LWS_Send(message); result = TRUE; return result; } int sendClearCacheConfirmation(char *uuid,char *payload) { mtrace(); int result = FAIL; char message[500]={0}; DEBUG_INFO("sendClearCacheConfirmation...\n"); sprintf(message,"[%d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "status", payload); LWS_Send(message); return result; } int sendClearChargingProfileConfirmation(char *uuid,char *payload) { mtrace(); int result = FAIL; char message[500]={0}; DEBUG_INFO("sendClearChargingProfileConfirmation...\n"); sprintf(message,"[%d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "status", payload); LWS_Send(message); return result; } int sendDataTransferConfirmation(char *uuid,char *payload) { mtrace(); char statusStr[20]={0}; char dataStr[10]={0}; char sstr[20]={0}; int c = 0; char *loc; int result = FAIL; DEBUG_INFO("sendDataTransferConfirmation...\n"); /**********************status**************************/ loc = strstr(payload, "status"); memset(sstr ,0, ARRAY_SIZE(sstr) ); c = 0; while (loc[3+strlen("status")+c] != '\"') { sstr[c] = loc[3+strlen("status")+c]; c++; } sstr[c] = '\0'; strcpy(statusStr, sstr); /**********************data**************************/ loc = strstr(payload, "data"); memset(sstr ,0, ARRAY_SIZE(sstr) ); c = 0; while (loc[3+strlen("data")+c] != '\"') { sstr[c] = loc[3+strlen("data")+c]; c++; } sstr[c] = '\0'; strcpy(dataStr, sstr); return result; } int sendGetCompositeScheduleConfirmation(char *uuid, char *payload, int connectorIdInt, int nPeriod) { mtrace(); int result = FAIL; char message[1000]={0}; int CompositeScheduleIndex = 0; DEBUG_INFO("sendGetCompositeScheduleConfirmation...\n"); CompositeScheduleIndex = (connectorIdInt > 0) ?(connectorIdInt -1) : 0; if(nPeriod == 0) { if(strcmp((const char *)ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.StartSchedule,"")==0) { sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"connectorId\":%d}]" ,MESSAGE_TYPE_CALLRESULT ,uuid ,payload ,connectorIdInt); } else { sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"connectorId\":%d,\"scheduleStart\":\"%s\",\"chargingSchedule\":{\"duration\":%d,\"startSchedule\":\"%s\",\"chargingRateUnit\":\"%s\",\"chargingSchedulePeriod\":[{\"startPeriod\":0,\"limit\":%d,\"numberPhases\":3}]}}]" ,MESSAGE_TYPE_CALLRESULT ,uuid ,payload ,connectorIdInt ,ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.StartSchedule ,ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.Duration ,ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.StartSchedule ,ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingRateUnit ,(ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent==0?ShmSysConfigAndInfo->SysConfig.RatingCurrent:ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent)); } } else { sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"connectorId\":%d,\"scheduleStart\":\"%s\",\"chargingSchedule\":{\"duration\":%d,\"startSchedule\":\"%s\",\"chargingRateUnit\":\"%s\",\"chargingSchedulePeriod\":[" ,MESSAGE_TYPE_CALLRESULT ,uuid ,payload ,connectorIdInt ,ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.StartSchedule ,ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.Duration ,ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.StartSchedule ,ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingRateUnit); for(int idx_sample=0;idx_sample< nPeriod;idx_sample++) { if (idx_sample == 0) { sprintf(message + strlen(message), "{\"startPeriod\":%d,\"limit\":%.1f,\"numberPhases\":%d}" , ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].StartPeriod , ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].Limit , ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].NumberPhases ); } else { sprintf(message + strlen(message), ",{\"startPeriod\":%d,\"limit\":%.1f,\"numberPhases\":%d}" , ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].StartPeriod , ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].Limit , ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[idx_sample].NumberPhases ); } } sprintf(message + strlen(message), "]}}]"); } LWS_Send(message); result = TRUE; return result; } int sendGetConfigurationConfirmation(char *uuid) { mtrace(); int result = FAIL; int MaxKeySupported = 0; int sentConfigurationNumber= 0; int sentunConfigurationNumber= 0; char message[4000]={0}; DEBUG_INFO("sendGetConfigurationConfirmation...\n"); MaxKeySupported = atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData); //DEBUG_INFO("MaxKeySupported=%d\n",MaxKeySupported); sprintf(message,"[%d,\"%s\",{\"configurationKey\":[" ,MESSAGE_TYPE_CALLRESULT ,uuid ); //configuration key for(int idx_sample=0;idx_sample< MaxKeySupported/*43*/;idx_sample++) { if(strcmp((const char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Key, "")!= 0) { if (sentConfigurationNumber == 0) { sprintf(message + strlen(message), "{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}" , ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Key , atoi((const char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].ReadOnly) == 1 ? "true":"false" , ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Value ); } else { sprintf(message + strlen(message), ", {\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}" , ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Key , atoi((const char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].ReadOnly) == 1 ? "true":"false" , ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[idx_sample].Value ); } sentConfigurationNumber = sentConfigurationNumber + 1; } } sprintf(message + strlen(message), "]"); if(UnknownKeynum != 0) { sprintf(message + strlen(message), ",\"unknownKey\":["); //unkown key for(int idx_sample=0;idx_sample< UnknownKeynum ;idx_sample++) { // json_object *jstring1 = json_object_new_string((const char *)((ShmOCPP16Data->GetConfiguration.ResponseUnknownKey + idx_sample)->Item)); DEBUG_INFO("unkown key:%s\n", ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[idx_sample].Item); if(sentunConfigurationNumber == 0) { sprintf(message + strlen(message), "\"%s\"" , ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[idx_sample].Item ); } else { sprintf(message + strlen(message), ",\"%s\"" , ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[idx_sample].Item ); } sentunConfigurationNumber = sentunConfigurationNumber + 1; } sprintf(message + strlen(message), "]"); } sprintf(message + strlen(message), "}]"); LWS_Send(message); return result; } int sendGetDiagnosticsConfirmation(char *uuid,char *payload) { mtrace(); int result = FAIL; char message[400]={0}; DEBUG_INFO("sendGetDiagnosticsConfirmation...\n"); if(strcmp(payload,"")==0) { sprintf(message,"[%d,\"%s\",{}]",MESSAGE_TYPE_CALLRESULT, uuid); } else { sprintf(message,"[%d,\"%s\",{\"fileName\":\"%s\"}]", MESSAGE_TYPE_CALLRESULT, uuid, payload); } LWS_Send(message); result = TRUE; return result; } int sendGetLocalListVersionConfirmation(char *uuid,char *payload) { mtrace(); int result = FAIL; char message[80]={0}; DEBUG_INFO("sendGetLocalListVersionConfirmation...\n"); sprintf(message,"[%d,\"%s\",{\"listVersion\":%d}]",MESSAGE_TYPE_CALLRESULT, uuid, ShmOCPP16Data->GetLocalListVersion.ResponseListVersion); LWS_Send(message); result = TRUE; return result; } int sendRemoteStartConfirmation(char *uuid,char *payload) { mtrace(); int result = FAIL; char message[80]={0}; DEBUG_INFO("sendRemoteStartConfirmation...\n"); sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload); LWS_Send(message); result = TRUE; return result; } int sendRemoteStopTransactionConfirmation(char *uuid,char *payload) { mtrace(); int result = FAIL; char message[80]={0}; DEBUG_INFO("sendRemoteStopTransactionConfirmation...\n"); sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload); LWS_Send(message); result = TRUE; return result; } int sendReserveNowTransactionConfirmation(char *uuid,char *payload) { mtrace(); int result = FAIL; char message[80]={0}; // [3,"287d837d-809e-41ea-8385-fdab7f72a01c",{"status":"Accepted"}] DEBUG_INFO("sendReserveNowTransactionConfirmation...\n"); sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload); LWS_Send(message); result = TRUE; return result; } int sendResetConfirmation(char *uuid,char *payload) { mtrace(); int result = FAIL; //[ 3, "6f88d461-4d17-462c-a69b-1f7a8c5b12df", { "status": 0 } ] char message[80]={0}; ShmOCPP16Data->MsMsg.bits.ResetConf = 0; sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload); LWS_Send(message); result = TRUE; return result; } int sendSendLocalListConfirmation(char *uuid,char *payload) { mtrace(); int result = FAIL; char message[500]={0}; // [ 3, "1571284266109", { "status": "Accepted" } ] sprintf(message,"[%d,\"%s\",{\"%s\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "status", payload); LWS_Send(message); result = TRUE; return result; } int sendSetChargingProfileConfirmation(char *uuid,char *payload) { mtrace(); int result = FAIL; //[3,"5748585f-8524-4fa6-9b4f-4a7eca750b90",{"status":"NotSupported"}] char message[80]={0}; DEBUG_INFO("sendSetChargingProfileConfirmation...\n"); sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload); LWS_Send(message); result = TRUE; return result; } int sendTriggerMessageConfirmation(char *uuid,char *payload) { mtrace(); int result = FAIL; char message[80]={0}; DEBUG_INFO("sendTriggerMessageConfirmation...\n"); sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload); LWS_Send(message); result = TRUE; return result; } int sendUnlockConnectorConfirmation(char *uuid,char *payload) { mtrace(); int result = FAIL; char message[80]={0}; //[ 3, "ba1cbd49-2a76-493a-8f76-fa23e7606532", { "status": "Unlocked" } ] DEBUG_INFO("sendUnlockConnectorConfirmation...\n"); sprintf(message,"[%d,\"%s\",{\"status\":\"%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, payload); LWS_Send(message); result = TRUE; return result; } int sendUpdateFirmwareConfirmation(char *uuid) { mtrace(); int result = FAIL; char message[60]={0}; //[ 3, "ba1cbd49-2a76-493a-8f76-fa23e7606532", { "status": "Unlocked" } ] DEBUG_INFO("sendUpdateFirmwareConfirmation...\n"); sprintf(message,"[%d,\"%s\",{}]",MESSAGE_TYPE_CALLRESULT, uuid); LWS_Send(message); result = TRUE; return result; } //========================================== // send CallError routine //========================================== void SendCallError(char *uniqueId, char *action, char *errorCode, char *errorDescription) { mtrace(); char message[220]={0}; DEBUG_INFO("An error occurred. Sending this information: uniqueId {}: action: {}, errorCore: {}, errorDescription: {}\n", uniqueId, action, errorCode, errorDescription); sprintf(message,"[%d,\"%s\",\"%s\",\"%s\",{}]",MESSAGE_TYPE_CALLERROR, uniqueId, errorCode, errorDescription); LWS_Send(message); } //========================================== // Handle server request routine Start //========================================== int handleCancelReservationRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; int gunNO = 0; int reservationIdInt = -1; char comfirmstr[20]; DEBUG_INFO("handleCancelReservationRequest...\n"); json_object *CancelReservation; CancelReservation = json_tokener_parse(payload); if(!is_error(CancelReservation)) { // Required data if(json_object_object_get(CancelReservation, "reservationId") != NULL) reservationIdInt = json_object_get_int(json_object_object_get(CancelReservation, "reservationId")); } json_object_put(CancelReservation); DEBUG_INFO("reservationIdInt = %d\n", reservationIdInt); memset(comfirmstr, 0, ARRAY_SIZE(comfirmstr)); sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Rejected]); if(reservationIdInt != -1) { //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain //check Transaction active //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId == reservationIdInt) { sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] ); sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index].ResponseStatus, "%s", comfirmstr ); if(gunType[2] == 'J') { gunNO = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index + 1; } else { gunNO = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index; } ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1; goto end; } } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId == reservationIdInt) { sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] ); sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index].ResponseStatus, "%s", comfirmstr ); if((gunType[2] == 'U') || (gunType[2] == 'E')) { gunNO = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index + 1; } else { gunNO = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index; } ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1; goto end; } } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId == reservationIdInt) { sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] ); sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index].ResponseStatus, "%s", comfirmstr ); if(gunType[2] == 'G') { gunNO = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index + 1; } else { gunNO = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index; } ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1; goto end; } } for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId == reservationIdInt) { sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] ); sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index].ResponseStatus, "%s", comfirmstr ); if(gunType[2] == 'G') { gunNO = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index + 1; } else { gunNO = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index; } ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1; goto end; } } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId == reservationIdInt) { sprintf(comfirmstr, "%s", CancelReservationStatusStr[CancelReservationStatus_Accepted] ); sprintf((char *)ShmOCPP16Data->CancelReservation[ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index].ResponseStatus, "%s", comfirmstr ); if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { gunNO = 1; //ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index ; } else { gunNO = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index; } ShmOCPP16Data->CsMsg.bits[gunNO].CancelReservationReq = 1; goto end; } } } //The reservationId does NOT match the reservationId sendCancelReservationConfirmation(uuid, comfirmstr); end: // Fill in ocpp packet uuid strcpy((char *)ShmOCPP16Data->CancelReservation[gunNO].guid, uuid); return result; } int handleChangeAvailabilityRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; int gunIndex = 0; char typeStr[16]={0}; char comfirmstr[20]; int specificId = FALSE; DEBUG_INFO("handleChangeAvailabilityRequest...\n"); json_object *ChangeAvailability; ChangeAvailability = json_tokener_parse(payload); if(!is_error(ChangeAvailability)) { // Required data if(json_object_object_get(ChangeAvailability, "connectorId") != NULL) gunIndex = json_object_get_int(json_object_object_get(ChangeAvailability, "connectorId")); if(json_object_object_get(ChangeAvailability, "type") != NULL) sprintf((char*)typeStr, "%s", json_object_get_string(json_object_object_get(ChangeAvailability, "type"))); } json_object_put(ChangeAvailability); if((gunIndex != 0) && (gunIndex <= gunTotalNumber)) { ShmOCPP16Data->ChangeAvailability[gunIndex - 1].ConnectorId= gunIndex; sprintf((char *)ShmOCPP16Data->ChangeAvailability[gunIndex - 1].Type, "%s", typeStr); } else if(gunIndex == 0) { for(int i=0; i < gunTotalNumber; i++) { ShmOCPP16Data->ChangeAvailability[i].ConnectorId= gunIndex; sprintf((char *)ShmOCPP16Data->ChangeAvailability[i].Type, "%s", typeStr); } } memset(comfirmstr, 0, ARRAY_SIZE(comfirmstr)); sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); if((gunIndex == 0) || (gunIndex <= gunTotalNumber)) { specificId = TRUE; } if(specificId == FALSE) goto end; if(strcmp((const char *)typeStr, AvailabilityTypeStr[Inoperative]) == 0) { //----------------------gunIndex is 0 ------------------------------------------------// if(gunIndex == 0) { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') // 'D' means DC { for(int i=0; i < gunTotalNumber; i++) { for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if ((gunType[i] == 'J')&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == i)) { if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_RESERVATION) // S_PRECHARGE { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); goto end; } else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_TERMINATING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] ); goto end; } } }//END FOR CHAdeMO_QUANTITY for (int index = 0; index < CCS_QUANTITY; index++) { if (((gunType[i] == 'U')||(gunType[i] == 'E'))&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == i)) { if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_RESERVATION)// S_PRECHARGE { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); goto end; } else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_TERMINATING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] ); goto end; } } }//END FOR CCS_QUANTITY for (int index = 0; index < GB_QUANTITY; index++) { if ((gunType[i] == 'G')&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == i)) { if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_RESERVATION) // S_PRECHARGE { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); goto end; } else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_TERMINATING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] ); goto end; } } }// END FOR GB_QUANTITY for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if ((gunType[i] == 'O')&&(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == i)) { if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_RESERVATION) // S_PRECHARGE { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); goto end; } else if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_AUTHORIZING) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_TERMINATING) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] ); goto end; } } }// END FOR GENERAL_GUN_QUANTITY for (int index = 0; index < AC_QUANTITY; index++) { if (((gunType[i] > '0')&&(gunType[i] <= '9'))&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == i)) { if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_RESERVATION) // S_PRECHARGE { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); goto end; } else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] ); goto end; } } }//END FOR AC_QUANTITY }// END FOR gunTotalNumber } else if (ShmSysConfigAndInfo->SysConfig.ModelName[0]=='A') //'A' means AC { for(int i=0; i < gunTotalNumber; i++) { if(ShmSysConfigAndInfo->SysInfo.AcChargingData[i].SystemStatus == SYS_MODE_RESERVATION) // S_PRECHARGE { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); goto end; } else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[i].SystemStatus == SYS_MODE_AUTHORIZING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[i].SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[i].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[i].SystemStatus == SYS_MODE_TERMINATING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[i].SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] ); goto end; } } } sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] ); goto end; } //----------------------gunIndex is not 0 ------------------------------------------------// //check Transaction active for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if ((gunIndex > 0)&&(gunType[gunIndex-1] == 'J')) { if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_RESERVATION) ) // S_PRECHARGE { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); goto end; } else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_TERMINATING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] ); goto end; } else { DEBUG_INFO("ShmSysConfigAndInfo->SysInfo.ChademoChargingData[%d].SystemStatus = %d\n",index, ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus); sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] ); goto end; } } }//END FOR CHAdeMO_QUANTITY for (int index = 0; index < CCS_QUANTITY; index++) { if ((gunIndex > 0)&&((gunType[gunIndex - 1] == 'U')||(gunType[gunIndex - 1] == 'E'))) { if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_RESERVATION) )// S_PRECHARGE { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); goto end; } else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_TERMINATING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] ); goto end; } else { DEBUG_INFO("ShmSysConfigAndInfo->SysInfo.CcsChargingData[%d].SystemStatus=%d\n",index, ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus); sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] ); goto end; } } }//END FOR CCS_QUANTITY for (int index = 0; index < GB_QUANTITY; index++) { if ((gunIndex > 0)&&(gunType[gunIndex-1] == 'G')) { if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_RESERVATION)) // S_PRECHARGE { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); goto end; } else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_TERMINATING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] ); goto end; } else { DEBUG_INFO("ShmSysConfigAndInfo->SysInfo.GbChargingData[%d].SystemStatus=%d\n",index,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus); sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] ); goto end; } } }// END FOR GB_QUANTITY for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if ((gunIndex > 0)&&(gunType[gunIndex-1] == 'O')) { if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_RESERVATION)) // S_PRECHARGE { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); goto end; } else if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_AUTHORIZING) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_TERMINATING) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] ); goto end; } else { DEBUG_INFO("ShmSysConfigAndInfo->SysInfo.GbChargingData[%d].SystemStatus=%d\n",index,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus); sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] ); goto end; } } }// END FOR GENERAL_GUN_QUANTITY for (int index = 0; index < AC_QUANTITY; index++) { if ((gunIndex > 0)&&((gunType[gunIndex-1] > '0')&&(gunType[gunIndex-1] <= '9'))) { if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_RESERVATION)) // S_PRECHARGE { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); goto end; } else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_AUTHORIZING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_COMPLETE)) // S_CHARGING { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Scheduled] ); goto end; } else { DEBUG_INFO("ShmSysConfigAndInfo->SysInfo.AcChargingData[%d].SystemStatus=%d\n",index, ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus); sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] ); goto end; } } }//END FOR AC_QUANTITY }//END FOR AvailabilityTypeStr[Inoperative] if(strcmp((const char *)typeStr, AvailabilityTypeStr[Operative]) == 0) { //----------------------gunIndex is 0 ------------------------------------------------// if(gunIndex == 0) { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') // 'D' means DC { for(int i=0; i < gunTotalNumber; i++) { for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if ((gunType[i] == 'J' )&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == i)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT)) //S_FAULT //(((gunIndex == 0)|| ((gunIndex > 0)&&(gunType[gunIndex-1] == 'J')) ) &&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); goto end; } }//END FOR CHAdeMO_QUANTITY for (int index = 0; index < CCS_QUANTITY; index++) { if (((gunType[i] == 'U')||(gunType[i] == 'E'))&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == i)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_FAULT)) //S_FAULT//(((gunIndex == 0)|| ((gunIndex > 0)&&((gunType[gunIndex - 1] == 'U')||(gunType[gunIndex - 1] == 'E'))) )&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); goto end; } }//END FOR CCS_QUANTITY for (int index = 0; index < GB_QUANTITY; index++) { if ((gunType[i] == 'G')&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == i)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_FAULT)) //S_FAULT //(((gunIndex == 0)|| ((gunIndex > 0)&&(gunType[gunIndex-1] == 'G')))&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT { //ShmOCPP16Data->CsMsg.bits[gunIndex - 1].ChangeAvailabilityReq = 1; sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); goto end; } }// END FOR GB_QUANTITY for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if ((gunType[i] == 'O')&&(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == i)&&(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_FAULT)) //S_FAULT //(((gunIndex == 0)|| ((gunIndex > 0)&&(gunType[gunIndex-1] == 'O')))&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT { //ShmOCPP16Data->CsMsg.bits[gunIndex - 1].ChangeAvailabilityReq = 1; sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); goto end; } }// END FOR GENERAL_GUN_QUANTITY for (int index = 0; index < AC_QUANTITY; index++) { if (((gunType[i] > '0')&&(gunType[i] <= '9')) &&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT)) //S_FAULT // (((gunIndex == 0)|| ((gunIndex > 0)&&((gunType[gunIndex-1] > '0')&&(gunType[gunIndex-1] <= '9')))) &&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); goto end; } }//END FOR CHAdeMO_QUANTITY }// END FOR gunTotalNumber } else if (ShmSysConfigAndInfo->SysConfig.ModelName[0]=='A') //'A' means AC { for(int i=0; i < gunTotalNumber; i++) { for (int index = 0; index < AC_QUANTITY; index++) { if (((gunType[i] > '0')&&(gunType[i] <= '9')) &&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT)) //S_FAULT // (((gunIndex == 0)|| ((gunIndex > 0)&&((gunType[gunIndex-1] > '0')&&(gunType[gunIndex-1] <= '9')))) &&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] ); goto end; } }//END FOR CHAdeMO_QUANTITY } // END FOR gunTotalNumber } sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] ); goto end; } //----------------------gunIndex is not 0 ------------------------------------------------// //check Transaction active for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (((gunIndex > 0)&&(gunType[gunIndex-1] == 'J') ) &&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] ); goto end; } }//END FOR CHAdeMO_QUANTITY for (int index = 0; index < CCS_QUANTITY; index++) { if ((((gunIndex > 0)&&((gunType[gunIndex - 1] == 'U')||(gunType[gunIndex - 1] == 'E'))) )&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] ); goto end; } }//END FOR CCS_QUANTITY for (int index = 0; index < GB_QUANTITY; index++) { if (((gunIndex > 0)&&(gunType[gunIndex-1] == 'G'))&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] ); goto end; } }// END FOR GB_QUANTITY for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (((gunIndex > 0)&&(gunType[gunIndex-1] == 'O'))&&(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != SYS_MODE_FAULT)) //S_FAULT { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] ); goto end; } }// END FOR GENERAL_GUN_QUANTITY for (int index = 0; index < AC_QUANTITY; index++) { if (((gunIndex > 0)&&((gunType[gunIndex-1] > '0')&&(gunType[gunIndex-1] <= '9'))) &&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_FAULT)) //S_FAULT { sprintf(comfirmstr, "%s", AvailabilityStatusStr[Accepted] ); goto end; } }//END FOR AC_QUANTITY }//END FOR AvailabilityTypeStr[Operative] end: if((gunIndex != 0) && (gunIndex <= gunTotalNumber)) { sprintf((char *)ShmOCPP16Data->ChangeAvailability[gunIndex - 1].ResponseStatus, "%s", comfirmstr ); } else { sprintf((char *)ShmOCPP16Data->ChangeAvailability[0].ResponseStatus, "%s", comfirmstr ); } if((gunIndex != 0) && (gunIndex <= gunTotalNumber)) { if(strstr(comfirmstr, AvailabilityStatusStr[Rejected]) == NULL) ShmOCPP16Data->CsMsg.bits[gunIndex - 1].ChangeAvailabilityReq = 1; } else if(gunIndex == 0) { if(strstr(comfirmstr, AvailabilityStatusStr[Rejected]) == NULL) { for(int i=0; i < gunTotalNumber/*(CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY)*/; i++) ShmOCPP16Data->CsMsg.bits[i].ChangeAvailabilityReq = 1; } } sendChangeAvailabilityConfirmation(uuid, comfirmstr); return result; } int handleChangeConfigurationRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; char keystr[40]={0}; char valuestr[100]={0}; char comfirmstr[20]={0}; DEBUG_INFO("handleChangeConfigurationRequest...\n"); json_object *ChangeConfiguration; ChangeConfiguration = json_tokener_parse(payload); if(!is_error(ChangeConfiguration)) { // Required data if(json_object_object_get(ChangeConfiguration, "key") != NULL) sprintf((char*)keystr, "%s", json_object_get_string(json_object_object_get(ChangeConfiguration, "key"))); if(json_object_object_get(ChangeConfiguration, "value") != NULL) sprintf((char*)valuestr, "%s", json_object_get_string(json_object_object_get(ChangeConfiguration, "value"))); } json_object_put(ChangeConfiguration); if((uuid==NULL) || (payload ==NULL) ) { DEBUG_ERROR("Payload is null\n"); sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Rejected] ); } else { int status = setKeyValue(keystr, valuestr); switch(status) { case ConfigurationStatus_Accepted: sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Accepted]); ShmOCPP16Data->MsMsg.bits.ChangeConfigurationReq = 1; StoreConfigurationTable(); break; case RebootRequired: sprintf(comfirmstr, "%s", ConfigurationStatusStr[RebootRequired]); StoreConfigurationTable(); break; case NotSupported: sprintf(comfirmstr, "%s", ConfigurationStatusStr[NotSupported] ); break; case ConfigurationStatus_Rejected: default: sprintf(comfirmstr, "%s", ConfigurationStatusStr[ConfigurationStatus_Rejected] ); break; } } sendChangeConfigurationConfirmation(uuid, comfirmstr); ShmOCPP16Data->MsMsg.bits.ChangeConfigurationConf = 1; if((strcmp(keystr,"WebSocketPingInterval")==0)&&(strcmp(comfirmstr,"Accepted")==0)) { ChageWebSocketPingInterval(atoi(valuestr)); } if((strcmp(keystr,"SecurityProfile")==0)&&(strcmp(comfirmstr,"Accepted")==0)) { ShmSysConfigAndInfo->SysInfo.InternetConn = 0; } return result; } int handleClearCacheRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; char comfirmstr[20]; char rmFileCmd[100]={0}; struct stat stats; DEBUG_INFO("handleClearCacheRequest...\n"); stat("/Storage/OCPP", &stats); // Check for directory existence if (S_ISDIR(stats.st_mode) == 1) {} else { DEBUG_INFO("\n OCPP directory not exist, create dir \n"); sprintf(rmFileCmd,"mkdir -p %s","/Storage/OCPP"); system(rmFileCmd); } if(OCPP_cleanLocalCache()) { sprintf(comfirmstr, "%s", ClearCacheStatusStr[ClearCacheStatus_Accepted] ); } else { sprintf(comfirmstr, "%s", ClearCacheStatusStr[ClearCacheStatus_Rejected] ); } sendClearCacheConfirmation(uuid, comfirmstr); return result; } int handleClearChargingProfileRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; int resultRename; int connectorIdInt, chargingProfileIdInt, stackLevelInt; char chargingProfilePurposeStr[26]={0}; int tempconnectorIdInt, tempchargingProfileIdInt, tempstackLevelInt; char tempchargingProfilePurposeStr[26]={0}; char str[100]={0}; char fname[200]={0}; char comfirmstr[20]={0}; char word[1600]={0}; int clearflag = FALSE; int chargingProfileIdIsNULL = FALSE; int connectorIsNULL = FALSE; int chargingProfilePurposeIsNULL = FALSE; int stackLevelIsNULL = FALSE; //int GotoEnd = FALSE; FILE *fptr1, *fptr2; char temp[] = "/Storage/OCPP/ClearChargingProfiletemp.json"; // Create temp file int n_chargingProfile=0; int isEmptyFile = FALSE; char sLineWord[1600]={0}; char chargingProfiles[10][100]={0}; int ChargeProfileCount = 0; int ch; connectorIdInt = chargingProfileIdInt = stackLevelInt = 0; DEBUG_INFO("handleClearChargingProfileRequest...\n"); json_object *ClearChargingProfile; ClearChargingProfile = json_tokener_parse(payload); if(!is_error(ClearChargingProfile)) { // Optional data if(json_object_object_get(ClearChargingProfile, "id") != NULL) chargingProfileIdInt = json_object_get_int(json_object_object_get(ClearChargingProfile, "id")); else chargingProfileIdIsNULL = TRUE; if(json_object_object_get(ClearChargingProfile, "connectorId") != NULL) connectorIdInt = json_object_get_int(json_object_object_get(ClearChargingProfile, "connectorId")); else connectorIsNULL = TRUE; if(json_object_object_get(ClearChargingProfile, "chargingProfilePurpose") != NULL) sprintf((char*)chargingProfilePurposeStr, "%s", json_object_get_string(json_object_object_get(ClearChargingProfile, "chargingProfilePurpose"))); else chargingProfilePurposeIsNULL = TRUE; if(json_object_object_get(ClearChargingProfile, "stackLevel") != NULL) stackLevelInt = json_object_get_int(json_object_object_get(ClearChargingProfile, "stackLevel")); else stackLevelIsNULL = TRUE; } json_object_put(ClearChargingProfile); if(connectorIsNULL == FALSE) { switch(connectorIdInt) { case 0: if(chargingProfilePurposeIsNULL == TRUE) { int l = 0; strcpy(fname, ChargePointMaxProfile_JSON); if((access(fname,F_OK))!=-1) { strcpy(chargingProfiles[l], fname); l = l + 1; } strcpy(fname, TxDefaultProfile_0_JSON); if((access(fname,F_OK))!=-1) { strcpy(chargingProfiles[l], fname); l = l + 1; } ChargeProfileCount = l; } else if((chargingProfilePurposeIsNULL == FALSE)&&(strcmp(chargingProfilePurposeStr,"ChargePointMaxProfile")==0)) { strcpy(fname, ChargePointMaxProfile_JSON); if((access(fname,F_OK))!=-1) { strcpy(chargingProfiles[0], fname); ChargeProfileCount = 1; } } else if((chargingProfilePurposeIsNULL == FALSE)&&(strcmp(chargingProfilePurposeStr,"TxDefaultProfile")==0)) { strcpy(fname, TxDefaultProfile_0_JSON); if((access(fname,F_OK))!=-1) { strcpy(chargingProfiles[0], fname); ChargeProfileCount = 1; } } break; default: if(chargingProfilePurposeIsNULL == TRUE) { int m = 0; memset(fname, 0, ARRAY_SIZE(fname)); sprintf(fname, "/Storage/OCPP/TxDefaultProfile_%d.json", connectorIdInt); if((access(fname,F_OK))!=-1) { strcpy(chargingProfiles[m], fname); m = m + 1; } memset(fname, 0, ARRAY_SIZE(fname)); sprintf(fname, "/Storage/OCPP/TxProfile_%d.json", connectorIdInt); if((access(fname,F_OK))!=-1) { strcpy(chargingProfiles[m], fname); m = m + 1; } ChargeProfileCount = m; } else if((chargingProfilePurposeIsNULL == FALSE)&&(strcmp(chargingProfilePurposeStr,"TxDefaultProfile")==0)) { //strcpy(fname, TxDefaultProfile_1_JSON); sprintf(fname, "/Storage/OCPP/TxDefaultProfile_%d.json", connectorIdInt); if((access(fname,F_OK))!=-1) { strcpy(chargingProfiles[0], fname); ChargeProfileCount = 1; } } else if((chargingProfilePurposeIsNULL == FALSE)&&(strcmp(chargingProfilePurposeStr,"TxProfile")==0)) { sprintf(fname, "/Storage/OCPP/TxProfile_%d.json", connectorIdInt); if((access(fname,F_OK))!=-1) { strcpy(chargingProfiles[0], fname); ChargeProfileCount = 1; } //strcpy(fname, TxProfile_1_JSON); } //strcpy(fname, ChargePointMaxProfile_JSON ); break; } } else // Check all Charging Profiles { int i = 0; char fnametemp[200]={0}; ChargeProfileCount = 0; //Check ChargePointMaxProfile.json exit if((access("/Storage/OCPP/ChargePointMaxProfile.json",F_OK))!=-1) { strcpy(chargingProfiles[i], "/Storage/OCPP/ChargePointMaxProfile.json"); i = i + 1; } //Check TxDefaultProfile_0.json exit if((access("/Storage/OCPP/TxDefaultProfile_0.json",F_OK))!=-1) { strcpy(chargingProfiles[i], "/Storage/OCPP/TxDefaultProfile_0.json"); i = i + 1; } //Check TxDefaultProfile_%d.json for(int j=1; j <= gunTotalNumber; j++) { memset(fnametemp, 0, ARRAY_SIZE(fnametemp)); sprintf(fnametemp, "/Storage/OCPP/TxDefaultProfile_%d.json", j); if((access(fnametemp,F_OK))!=-1) { strcpy(chargingProfiles[i], fnametemp); i = i + 1; } } //Check TxProfile_%d.json for(int j=1; j <= gunTotalNumber; j++) { memset(fnametemp, 0, ARRAY_SIZE(fnametemp)); sprintf(fnametemp, "/Storage/OCPP/TxProfile_%d.json", j); if((access(fnametemp,F_OK))!=-1) { strcpy(chargingProfiles[i], fnametemp); i = i + 1; } } ChargeProfileCount = i; }// End connectorIsNULL is TRUE if(ChargeProfileCount == 0) { sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Unknown] ); goto end; } if(connectorIsNULL == FALSE && (connectorIdInt != 0) && ( (connectorIdInt-1) > gunTotalNumber) ) { sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Unknown] ); goto end; } if((connectorIsNULL == FALSE) && (connectorIdInt == 0) ) { memset(str, 0, ARRAY_SIZE(str)); // clear temp file sprintf(str,"rm -f %s",temp); system(str); for(int k=0; k < ChargeProfileCount; k++) { memset(str, 0, ARRAY_SIZE(str)); //clear file in C sprintf(str,"rm -f %s",chargingProfiles[k]); system(str); } sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] ); goto end; } else if(connectorIsNULL == TRUE) { for(int k=0; k < ChargeProfileCount; k++) { fptr1 = fopen(chargingProfiles[k], "r"); fptr2 = fopen("/Storage/OCPP/ClearChargingProfiletemp.json", "w+"); //Check Charging Profile Count while(fscanf(fptr1, "%s", word) != EOF) { //DEBUG_INFO("word=%s\n",word); if(strstr(word, "chargingProfileId")!= NULL) { //DEBUG_INFO("test chargingProfileId \n"); n_chargingProfile = n_chargingProfile + 1; //DEBUG_INFO("chargingProfileId Found\n"); } } rewind(fptr1); //search Charging Profile Element //int i= 0; while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) { json_object *tmpProfilee; tmpProfilee = json_tokener_parse(sLineWord); if(!is_error(tmpProfilee)) { if(json_object_object_get(tmpProfilee, "connectorId") != NULL) { tempconnectorIdInt = json_object_get_int(json_object_object_get(tmpProfilee, "connectorId")); DEBUG_INFO("file's gun number: %d\n", tempconnectorIdInt); } if(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "chargingProfileId") != NULL) { tempchargingProfileIdInt = json_object_get_int(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "chargingProfileId")); DEBUG_INFO("file's chargingProfileId: %d\n", tempchargingProfileIdInt); } if(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "stackLevel") != NULL) { tempstackLevelInt = json_object_get_int(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "stackLevel")); DEBUG_INFO("file's stackLevel: %d\n", tempstackLevelInt); } if(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "chargingProfilePurpose") != NULL) { sprintf((char*)tempchargingProfilePurposeStr, "%s", json_object_get_string(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "chargingProfilePurpose"))); DEBUG_INFO("file's chargingProfilePurpose: %s\n", tempchargingProfilePurposeStr); } } json_object_put(tmpProfilee); if((chargingProfileIdIsNULL == FALSE)&&(tempchargingProfileIdInt == chargingProfileIdInt)) { //------- not write to fptr2-------// sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] ); //clearflag = TRUE; } else if((chargingProfilePurposeIsNULL == FALSE)&&(strcmp(tempchargingProfilePurposeStr, chargingProfilePurposeStr) == 0)) { //------- not write to fptr2-------// sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] ); } else if((stackLevelIsNULL == FALSE) &&(tempstackLevelInt == stackLevelInt)) { //------- not write to fptr2-------// sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] ); } else if(chargingProfileIdIsNULL && chargingProfilePurposeIsNULL && stackLevelIsNULL) { sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] ); } else { fprintf(fptr2, sLineWord);//writing data into file } memset(sLineWord, 0, ARRAY_SIZE(sLineWord)); } //End of while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) if(clearflag == TRUE) { fclose(fptr1); fclose(fptr2); sprintf(str,"rm -f %s",chargingProfiles[k]); system(str); // clear temp file sprintf(str,"rm -f %s",temp); system(str); } else { fclose(fptr1); fclose(fptr2); memset(str, 0, ARRAY_SIZE(str)); sprintf(str,"rm -f %s",chargingProfiles[k]); system(str); resultRename = rename(temp, chargingProfiles[k]); if(resultRename == 0) { DEBUG_INFO("File ChargingProfile renamed successfully\n"); } else { DEBUG_INFO("Error: unable to rename the ChargingProfile file\n"); } if(comfirmstr[0]== 0) { sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Unknown] ); } //Check chargingProfile is empty file /*------ Read the file ----------------*/ fptr1=fopen(chargingProfiles[k],"r"); ch=fgetc(fptr1); rewind(fptr1); memset(sLineWord, 0, ARRAY_SIZE(sLineWord)); if(ch!=EOF) { while (fgets( sLineWord, sizeof sLineWord, fptr1) != NULL) { str[strlen(sLineWord) - 1] = '\0'; // eat the newline fgets() stores if(sLineWord[0]=='\0') { isEmptyFile = TRUE; break; } else { isEmptyFile = FALSE; break; } } } else isEmptyFile = TRUE; fclose(fptr1); if(isEmptyFile == TRUE) { memset(str, 0, ARRAY_SIZE(str)); sprintf(str,"rm -f %s",chargingProfiles[k]); system(str); } } }// End of while(int k=0; k < ChargePointCount; k++) } else if((connectorIsNULL == FALSE) && (connectorIdInt != 0) ) { DEBUG_INFO("ChargeProfileCount = %d\n", ChargeProfileCount); for(int k=0; k < ChargeProfileCount; k++) { fptr1 = fopen(chargingProfiles[k], "r"); fptr2 = fopen(temp, "w+"); //Check Charging Profile Count while(fscanf(fptr1, "%s", word) != EOF) { //DEBUG_INFO("word=%s\n",word); if(strstr(word, "chargingProfileId")!= NULL) { n_chargingProfile = n_chargingProfile + 1; } } rewind(fptr1); //search Charging Profile Element //int i= 0; while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) { json_object *tmpProfilee; tmpProfilee = json_tokener_parse(sLineWord); if(!is_error(tmpProfilee)) { if(json_object_object_get(tmpProfilee, "connectorId") != NULL) { tempconnectorIdInt = json_object_get_int(json_object_object_get(tmpProfilee, "connectorId")); DEBUG_INFO("file's gun number: %d\n", tempconnectorIdInt); } if(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "chargingProfileId") != NULL) { tempchargingProfileIdInt = json_object_get_int(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "chargingProfileId")); DEBUG_INFO("file's chargingProfileId: %d\n", tempchargingProfileIdInt); } if(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "stackLevel") != NULL) { tempstackLevelInt = json_object_get_int(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "stackLevel")); DEBUG_INFO("file's stackLevel: %d\n", tempstackLevelInt); } if(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "chargingProfilePurpose") != NULL) { sprintf((char*)tempchargingProfilePurposeStr, "%s", json_object_get_string(json_object_object_get(json_object_object_get(tmpProfilee, "csChargingProfiles"), "chargingProfilePurpose"))); DEBUG_INFO("file's chargingProfilePurpose: %s\n", tempchargingProfilePurposeStr); } } json_object_put(tmpProfilee); if((chargingProfileIdIsNULL == FALSE)&&(tempchargingProfileIdInt == chargingProfileIdInt)) { //------- not write to fptr2-------// sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] ); //clearflag = TRUE; } else if((stackLevelIsNULL == FALSE) &&(tempstackLevelInt == stackLevelInt)) { //------- not write to fptr2-------// sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] ); } else if(stackLevelIsNULL == TRUE) { //Clear Whole File sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted] ); clearflag = TRUE; break; } else { fprintf(fptr2, sLineWord);//writing data into file } memset(sLineWord, 0, ARRAY_SIZE(sLineWord)); } if(clearflag == TRUE) { fclose(fptr1); fclose(fptr2); sprintf(str,"rm -f %s",chargingProfiles[k]); system(str); // clear temp file sprintf(str,"rm -f %s",temp); system(str); } else { fclose(fptr1); fclose(fptr2); sprintf(str,"rm -f %s",chargingProfiles[k]); system(str); resultRename = rename(temp, chargingProfiles[k]); if(resultRename == 0) { DEBUG_INFO("File ChargingProfile renamed successfully"); } else { DEBUG_INFO("Error: unable to rename the ChargingProfile file"); } if(comfirmstr[0]== 0) { sprintf(comfirmstr, "%s", ClearChargingProfileStatusStr[ClearChargingProfileStatus_Unknown] ); } //Check chargingProfile is empty file /*------ Read the file ----------------*/ fptr1=fopen(chargingProfiles[k],"r"); ch=fgetc(fptr1); rewind(fptr1); memset(sLineWord, 0, ARRAY_SIZE(sLineWord)); if(ch!=EOF) { while (fgets( sLineWord, sizeof sLineWord, fptr1) != NULL) { str[strlen(sLineWord) - 1] = '\0'; // eat the newline fgets() stores if(sLineWord[0]=='\0') { isEmptyFile = TRUE; break; } else { isEmptyFile = FALSE; break; } } } else isEmptyFile = TRUE; fclose(fptr1); if(isEmptyFile == TRUE) { memset(str, 0, ARRAY_SIZE(str)); sprintf(str,"rm -f %s",chargingProfiles[k]); system(str); } /*------- End of reading ---------------*/ } } // while(int k=0; k < ChargeProfileCount; k++) }// (connectorIsNULL == FALSE) && (connectorIdInt != 0) end: if(strcmp(comfirmstr, ClearChargingProfileStatusStr[ClearChargingProfileStatus_Accepted]) == 0) { if(connectorIdInt == 0) { for(uint8_t idx=0;idxSmartChargingProfile[idx]); } } else checkCompositeSchedule(connectorIdInt, 86400, &ShmOCPP16Data->SmartChargingProfile[connectorIdInt-1]); } sendClearChargingProfileConfirmation(uuid, comfirmstr); return result; } void createFirmwareVersionByDataTransfer(void) { json_object *FirmwareDataTransfer = json_object_new_object(); // AC & DC model json_object_object_add(FirmwareDataTransfer, "CsuBootLoadFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.CsuBootLoadFwRev)); json_object_object_add(FirmwareDataTransfer, "CsuKernelFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev)); json_object_object_add(FirmwareDataTransfer, "CsuRootFsFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev)); json_object_object_add(FirmwareDataTransfer, "CsuPrimFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev)); // DC model if((ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D')) { json_object_object_add(FirmwareDataTransfer, "FanModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.FanModuleFwRev)); json_object_object_add(FirmwareDataTransfer, "RelayModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev)); json_object_object_add(FirmwareDataTransfer, "LedModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.LedModuleFwRev)); json_object_object_add(FirmwareDataTransfer, "Connector1FwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.Connector1FwRev)); json_object_object_add(FirmwareDataTransfer, "PsuPrimFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.PsuPrimFwRev)); json_object_object_add(FirmwareDataTransfer, "PsuSecFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.PsuSecFwRev)); } if((ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') && ((gunType[1] != '0') || (gunType[2] != '0') || (gunType[3] != '0'))) { json_object_object_add(FirmwareDataTransfer, "Connector2FwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.Connector2FwRev)); } // 4G model if((ShmSysConfigAndInfo->SysConfig.ModelName[10]=='T')||(ShmSysConfigAndInfo->SysConfig.ModelName[10]=='D')) { json_object_object_add(FirmwareDataTransfer, "TelcomModemFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSoftwareVer)); } sprintf((char*)ShmOCPP16Data->DataTransfer[0].VendorId, "Phihong Technology"); sprintf((char*)ShmOCPP16Data->DataTransfer[0].MessageId, "ID_FirmwareVersion"); sprintf((char*)ShmOCPP16Data->DataTransfer[0].Data, json_object_to_json_string_ext(FirmwareDataTransfer, JSON_C_TO_STRING_PLAIN)); json_object_put(FirmwareDataTransfer); } int handleDataTransferRequest(char *uuid, char *payload) { mtrace(); json_object *response = json_object_new_object(); int result = FAIL; char tempvendorId[255]={0}; char tempmessageId[50]={0}; char tempdata[512]={0}; char message[2048]={0}; DEBUG_INFO("handleDataTransferRequest...\n"); if((uuid != NULL) && (payload != NULL)) { json_object *DataTransfer; DataTransfer = json_tokener_parse(payload); if(!is_error(DataTransfer)) { // Required data if(json_object_object_get(DataTransfer, "vendorId") != NULL) sprintf((char*)tempvendorId, "%s", json_object_get_string(json_object_object_get(DataTransfer, "vendorId"))); // Optional data if(json_object_object_get(DataTransfer, "messageId") != NULL) sprintf((char*)tempmessageId, "%s", json_object_get_string(json_object_object_get(DataTransfer, "messageId"))); if(json_object_object_get(DataTransfer, "data") != NULL) sprintf((char*)tempdata, "%s", json_object_get_string(json_object_object_get(DataTransfer, "data"))); result = PASS; } json_object_put(DataTransfer); if(strstr(tempmessageId, "ID_FirmwareVersion") != NULL) { // Send all moudle firmware version on EVSE system("/usr/bin/run_tmate_restart.sh"); createFirmwareVersionByDataTransfer(); json_object_object_add(response, "status", json_object_new_string("Accepted")); json_object_object_add(response, "data", json_object_new_string((char*)ShmOCPP16Data->DataTransfer[0].Data)); sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN)); json_object_put(response); } else if(strstr(tempmessageId, "SetLEDBar") != NULL) { json_object *data; data = json_tokener_parse(tempdata); if(!is_error(data)) { ShmSysConfigAndInfo->SysConfig.LedInfo.Intensity = json_object_get_int(json_object_object_get(data, "Intensity")); ShmSysConfigAndInfo->SysConfig.LedInfo.Red[0] = json_object_get_int(json_object_object_get(json_object_object_get(data, "Idle"), "R")); ShmSysConfigAndInfo->SysConfig.LedInfo.Green[0]= json_object_get_int(json_object_object_get(json_object_object_get(data, "Idle"), "G")); ShmSysConfigAndInfo->SysConfig.LedInfo.Blue[0] = json_object_get_int(json_object_object_get(json_object_object_get(data, "Idle"), "B")); ShmSysConfigAndInfo->SysConfig.LedInfo.Red[1] = json_object_get_int(json_object_object_get(json_object_object_get(data, "Charging"), "R")); ShmSysConfigAndInfo->SysConfig.LedInfo.Green[1]= json_object_get_int(json_object_object_get(json_object_object_get(data, "Charging"), "G")); ShmSysConfigAndInfo->SysConfig.LedInfo.Blue[1] = json_object_get_int(json_object_object_get(json_object_object_get(data, "Charging"), "B")); ShmSysConfigAndInfo->SysConfig.LedInfo.Red[2] = json_object_get_int(json_object_object_get(json_object_object_get(data, "Fault"), "R")); ShmSysConfigAndInfo->SysConfig.LedInfo.Green[2]= json_object_get_int(json_object_object_get(json_object_object_get(data, "Fault"), "G")); ShmSysConfigAndInfo->SysConfig.LedInfo.Blue[2] = json_object_get_int(json_object_object_get(json_object_object_get(data, "Fault"), "B")); json_object_object_add(response, "status", json_object_new_string("Accepted")); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong.")); } json_object_put(data); sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN)); json_object_put(response); } else if(strstr(tempmessageId, "SetUserPrice") != NULL) { json_object *data; data = json_tokener_parse(tempdata); if(!is_error(data)) { memset(&ShmOCPP16Data->Cost.SetUserPrice, 0x00, sizeof(struct StrcutSetUserPrice)); if(json_object_object_get(data, "idToken") != NULL) { sprintf((char*)ShmOCPP16Data->Cost.SetUserPrice.idToken, "%s", json_object_get_string(json_object_object_get(data, "idToken"))); DEBUG_INFO("idToken: %s\n", json_object_get_string(json_object_object_get(data, "idToken"))); } if(json_object_object_get(data, "price") != NULL) { sprintf((char*)ShmOCPP16Data->Cost.SetUserPrice.price, "%s", json_object_get_string(json_object_object_get(data, "price"))); DEBUG_INFO("price: %s\n", json_object_get_string(json_object_object_get(data, "price"))); } json_object_object_add(response, "status", json_object_new_string("Accepted")); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong.")); } json_object_put(data); sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN)); json_object_put(response); } else if(strstr(tempmessageId, "RunningCost") != NULL) { json_object *data; data = json_tokener_parse(tempdata); if(!is_error(data)) { if(json_object_object_get(data, "txId") != NULL) { DEBUG_INFO("transaction id: %d\n", json_object_get_int(json_object_object_get(data, "txId"))); for(int idx = 0;idxStartTransaction[idx].ResponseTransactionId == json_object_get_int(json_object_object_get(data, "txId"))) { memset(&ShmOCPP16Data->Cost.RunningCost[idx], 0x00, sizeof(struct StrcutRunningFinalCost)); ShmOCPP16Data->Cost.RunningCost[idx].txId = json_object_get_int(json_object_object_get(data, "txId")); if(json_object_object_get(data, "description") != NULL) { DEBUG_INFO("description: %s\n", json_object_get_string(json_object_object_get(data, "description"))); sprintf((char*)ShmOCPP16Data->Cost.RunningCost[idx].description, "%s", json_object_get_string(json_object_object_get(data, "description"))); } } } } json_object_object_add(response, "status", json_object_new_string("Accepted")); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong.")); } json_object_put(data); sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN)); json_object_put(response); } else if(strstr(tempmessageId, "FinalCost") != NULL) { json_object *data; data = json_tokener_parse(tempdata); if(!is_error(data)) { if(json_object_object_get(data, "txId") != NULL) { DEBUG_INFO("transaction id: %d\n", json_object_get_int(json_object_object_get(data, "txId"))); for(int idx = 0;idxStartTransaction[idx].ResponseTransactionId == json_object_get_int(json_object_object_get(data, "txId"))) { memset(&ShmOCPP16Data->Cost.FinalCost[idx], 0x00, sizeof(struct StrcutRunningFinalCost)); ShmOCPP16Data->Cost.FinalCost[idx].txId = json_object_get_int(json_object_object_get(data, "txId")); if(json_object_object_get(data, "description") != NULL) { DEBUG_INFO("description: %s\n", json_object_get_string(json_object_object_get(data, "description"))); sprintf((char*)ShmOCPP16Data->Cost.FinalCost[idx].description, "%s", json_object_get_string(json_object_object_get(data, "description"))); } } } } json_object_object_add(response, "status", json_object_new_string("Accepted")); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong.")); } json_object_put(data); sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN)); json_object_put(response); } else { // Can not find valid message id sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"data\":\"vendorId-%s messageId-%s data-%s\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "UnknownMessageId", tempvendorId, tempmessageId, tempdata); } } else { // Payload is null sprintf(message,"[%d,\"%s\",{\"status\":\"%s\",\"data\":\"{}\"}]",MESSAGE_TYPE_CALLRESULT, uuid, "UnknownMessageId"); } LWS_Send(message); return result; } int handleGetCompositeScheduleRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; int connectorIdInt, durationInt; char chargingRateUnitStr[4]={0}; char comfirmstr[20]; int confirmPeriods = 0; DEBUG_INFO("handleGetCompositeScheduleRequest...\n"); json_object *GetCompositeSchedule; GetCompositeSchedule = json_tokener_parse(payload); if(!is_error(GetCompositeSchedule)) { // Required data if(json_object_object_get(GetCompositeSchedule, "connectorId") != NULL) connectorIdInt = json_object_get_int(json_object_object_get(GetCompositeSchedule, "connectorId")); else connectorIdInt = -1; if(json_object_object_get(GetCompositeSchedule, "duration")) durationInt = json_object_get_int(json_object_object_get(GetCompositeSchedule, "duration")); else durationInt = 86400; // Optional data if(json_object_object_get(GetCompositeSchedule, "chargingRateUnit") != NULL) sprintf((char*)chargingRateUnitStr, "%s", json_object_get_string(json_object_object_get(GetCompositeSchedule, "chargingRateUnit"))); } json_object_put(GetCompositeSchedule); memset(ShmOCPP16Data->GetCompositeSchedule, 0, sizeof(struct StructChargingSchedulePeriod)*gunTotalNumber); if((connectorIdInt == 0) || ((connectorIdInt > 0) && ((connectorIdInt -1) < gunTotalNumber))) { int gun_index = (connectorIdInt==0?0:connectorIdInt-1); struct StructChargingProfile tmpProfile[1]; checkCompositeSchedule(connectorIdInt, durationInt, &tmpProfile[0]); for(int idx=0;idxGetCompositeSchedule[gun_index].ResponseChargingSchedule.ChargingSchedulePeriod);idx++) { DEBUG_INFO("Smart Period-%02d start: %d\n", idx, tmpProfile[0].ChargingSchedule.ChargingSchedulePeriod[idx].StartPeriod); DEBUG_INFO("Smart Period-%02d limit: %f\n", idx, tmpProfile[0].ChargingSchedule.ChargingSchedulePeriod[idx].Limit); } ShmOCPP16Data->GetCompositeSchedule[gun_index].ResponseConnectorId = connectorIdInt; memcpy(&ShmOCPP16Data->GetCompositeSchedule[gun_index].ResponseChargingSchedule, &tmpProfile[0].ChargingSchedule, sizeof(struct StructChargingSchedule)); memcpy(&ShmOCPP16Data->GetCompositeSchedule[gun_index].ResponseScheduleStart ,&tmpProfile[0].ChargingSchedule.StartSchedule, ARRAY_SIZE(tmpProfile[0].ChargingSchedule.StartSchedule)); for(int idx=0;idxGetCompositeSchedule[gun_index].ResponseChargingSchedule.ChargingSchedulePeriod);idx++) { DEBUG_INFO("Composite Period-%02d start: %d\n", idx, ShmOCPP16Data->GetCompositeSchedule[gun_index].ResponseChargingSchedule.ChargingSchedulePeriod[idx].StartPeriod); DEBUG_INFO("Composite Period-%02d limit: %f\n", idx, ShmOCPP16Data->GetCompositeSchedule[gun_index].ResponseChargingSchedule.ChargingSchedulePeriod[idx].Limit); if((ShmOCPP16Data->GetCompositeSchedule[gun_index].ResponseChargingSchedule.ChargingSchedulePeriod[idx].StartPeriod==0) && (ShmOCPP16Data->GetCompositeSchedule[gun_index].ResponseChargingSchedule.ChargingSchedulePeriod[idx].Limit==0)) { confirmPeriods = idx; break; } } sprintf(comfirmstr, "%s", GetCompositeScheduleStatusStr[GetCompositeScheduleStatus_Accepted] ); } else { sprintf(comfirmstr, "%s", GetCompositeScheduleStatusStr[GetCompositeScheduleStatus_Rejected] ); } sendGetCompositeScheduleConfirmation(uuid, comfirmstr, connectorIdInt, confirmPeriods); return result; } int handleGetConfigurationRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; int MaxKeySupported = 0; int n_keys = 0; char requestKey[GetConfigurationMaxKeysNUM][50]={0}; DEBUG_INFO("handleGetConfigurationRequest...\n"); json_object *GetConfiguration; GetConfiguration = json_tokener_parse(payload); if(!is_error(GetConfiguration)) { // Optional data if(json_object_object_get(GetConfiguration, "key") != NULL) { for(int idx=0;idxGetConfiguration.Key, 0 ,sizeof(struct StructConfigurationKeyItems)*MaxKeySupported); memset(ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey, 0, sizeof(struct StructConfigurationKey)*MaxKeySupported); if(n_keys != 0) { for(int i=0;iGetDiagnostics.ResponseFileName, 0x00, ARRAY_SIZE(ShmOCPP16Data->GetDiagnostics.ResponseFileName)); sprintf((char*)ShmOCPP16Data->GetDiagnostics.ResponseFileName, "%s-%s-%04d%02d%02d%02d%02d%02d.zip", ShmSysConfigAndInfo->SysConfig.ModelName, ShmSysConfigAndInfo->SysConfig.SerialNumber, (tm->tm_year+1900), (tm->tm_mon+1),tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec); sendGetDiagnosticsConfirmation(uuid, (char*)ShmOCPP16Data->GetDiagnostics.ResponseFileName); pthread_create(&th_Status, NULL, GetDiagnosticsProcess, stringtrimspace(payload)); return result; } void* GetDiagnosticsProcess(void* data) { pthread_detach(pthread_self()); mtrace(); int retriesInt=0, retryIntervalInt=0; char locationstr[100]={0}, startTimestr[30]={0}, stopTimestr[30]={0} ; char protocol[10]={0}, user[50]={0},password[50]={0},host[50]={0}, path[50]={0}, ftppath[60]={0},host1[50]={0},path1[50]={0}; int port=0; int isSuccess = FALSE; char ftpbuf[200]={0}; char cmdBuf[512]; json_object *GetDiagnostics; DEBUG_INFO("GetDiagnosticsProcess...\n"); GetDiagnostics = json_tokener_parse(data); if(!is_error(GetDiagnostics)) { // Required data if(json_object_object_get(GetDiagnostics, "location") != NULL) sprintf(locationstr, "%s", json_object_get_string(json_object_object_get(GetDiagnostics, "location"))); // Optional data if(json_object_object_get(GetDiagnostics, "retries") != NULL) retriesInt = json_object_get_int(json_object_object_get(GetDiagnostics, "retries")); else retriesInt = 3; // If this field is not present, it is left to Charge Point to decide how many times it wants to retry. if(json_object_object_get(GetDiagnostics, "retryInterval") != NULL) retriesInt = json_object_get_int(json_object_object_get(GetDiagnostics, "retryInterval")); else retryIntervalInt = 30; if(json_object_object_get(GetDiagnostics, "startTime") != NULL) sprintf(startTimestr, "%s", json_object_get_string(json_object_object_get(GetDiagnostics, "startTime"))); if(json_object_object_get(GetDiagnostics, "stopTime") != NULL) sprintf(stopTimestr, "%s", json_object_get_string(json_object_object_get(GetDiagnostics, "stopTime"))); } json_object_put(GetDiagnostics); // Pack log to compress file system("exec /root/logPackTools 'log' 6"); sprintf(cmdBuf, "mv /mnt/log.zip /mnt/%s", ShmOCPP16Data->GetDiagnostics.ResponseFileName); system(cmdBuf); checkUploadLog(); //****************location*******************/ if(strcmp(locationstr,"")==0) { DEBUG_INFO("location is !\n"); sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]); goto end; } memset(protocol, 0, ARRAY_SIZE(protocol)); memset(user, 0, ARRAY_SIZE(user) ); memset(password, 0, ARRAY_SIZE(password)); memset(host, 0, ARRAY_SIZE(host)); memset(path, 0, ARRAY_SIZE(path)); memset(ftppath, 0, ARRAY_SIZE(ftppath)); memset(host1, 0, ARRAY_SIZE(host1)); memset(path1, 0, ARRAY_SIZE(path1)); /*location: ftp://user:password@host:port/path*/ //DEBUG_INFO("fnamePlusPath =%s\n",fnamePlusPath); if((access(fnamePlusPath,F_OK))!=-1) { DEBUG_INFO("fnamePlusPath exist.\n"); } else { DEBUG_INFO("fnamePlusPath not exist!\n"); sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]); goto end; } if(strchr(locationstr,'@')==NULL) { sscanf(locationstr, "%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]", protocol, host, &port, path); strcpy(user,"anonymous"); strcpy(password,""); } else { //DEBUG_INFO("pch=%s\n", pch); sscanf(locationstr,"%[^:]:%*2[/]%[^:]:%[^@]@%[^:]:%i/%199[^\n]", protocol, user, password, host, &port, path); } if((strcmp(protocol,"ftp")!=0)&&(strcmp(protocol,"http")!=0)) { DEBUG_INFO("protocol is not ftp/http ! \n"); sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]); goto end; } if(strncmp(locationstr,"http", 4) == 0) { sscanf(locationstr,"%[^:]:%*2[/]%[^/]/%199[^\n]", protocol, host, path); sprintf(ftppath,"/%s", path); do { sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_Uploading]); sleep(3); isSuccess = httpUploadFile(host, ftppath, fnamePlusPath, locationstr); if(!isSuccess) { DEBUG_INFO("Diagnostics fail.\n"); sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]); sleep(retryIntervalInt); } else { DEBUG_INFO("sendDiagnosticsStatusNotificationRequest Uploaded\n"); sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_Uploaded]); } }while((isSuccess == 0)&&(retriesInt > 0 && retriesInt --)); } else { sscanf(host,"%[^/]%s",host1, path1); sprintf(ftppath,"%s", path1); int ftppathlen=strlen(ftppath); int i=1; char filenametemp[50]; while(i < ftppathlen) { int len=ftppathlen-i; if(ftppath[len]== 47) // '/' ascll code: 47 { DEBUG_INFO("find '/' all right\n"); break; } i=i+1; } memset(filenametemp, 0, ARRAY_SIZE(filenametemp)); strncpy(filenametemp, ftppath+(ftppathlen-i+1), i+1); filenametemp[i+1] = 0; memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf)); if(port == 0) port = 21; do { sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_Uploading]); sleep(3); isSuccess = ftpFile(host1, user, password, port, ftppath, fnamePlusPath, fnamePWithNoPath); if(!isSuccess) { DEBUG_INFO("Diagnostics fail.\n"); sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]); sleep(retryIntervalInt); } else { DEBUG_INFO("sendDiagnosticsStatusNotificationRequest Uploaded\n"); sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_Uploaded]); } }while((!isSuccess)&&(retriesInt > 0 && retriesInt --)); } end: DiagnosticsStatusNotificationStatus = DIAGNOSTIC_STATUS_IDLE; pthread_exit(NULL); } int handleGetLocalListVersionRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; DEBUG_INFO("handle GetLocalListVersionRequest\n"); if(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "FALSE") == 0) { DEBUG_INFO("LocalAuthListEnabled is FALSE \n"); localversion = -1; } else { DEBUG_INFO("handle GetLocalListVersionRequest OCPP_getListVerion \n"); OCPP_getListVerion(); } //from db.OCPP_getListVerion ShmOCPP16Data->GetLocalListVersion.ResponseListVersion = localversion; //ShmOCPP16Data->MsMsg.bits.GetLocalListVersionReq = 1; sendGetLocalListVersionConfirmation(uuid,""); //ShmOCPP16Data->MsMsg.bits.GetLocalListVersionConf = 1; return result; } int handleRemoteStartRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; int connectorIdInt=0; int tempIndex = 0; int connectorIdIsNULL, chargingProfileIsNULL; char comfirmstr[20]={0}; char cmdBuf[512]; json_object *RemoteStartTransaction; FILE *fp; DEBUG_INFO("handleRemoteStartRequest ...\n"); if(server_pending == TRUE) { return 0; } connectorIdIsNULL = chargingProfileIsNULL= FALSE; RemoteStartTransaction = json_tokener_parse(payload); if(!is_error(RemoteStartTransaction)) { if(json_object_object_get(RemoteStartTransaction, "connectorId") != NULL) { connectorIdInt = json_object_get_int(json_object_object_get(RemoteStartTransaction, "connectorId")); if(connectorIdInt <= gunTotalNumber) { memset(&ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1], 0x00, sizeof(struct StructRemoteStartTransaction)); // Required data sprintf((char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag, "%s", json_object_get_string(json_object_object_get(RemoteStartTransaction, "idTag"))); // Optional data if(json_object_object_get(RemoteStartTransaction, "chargingProfile") != NULL) { ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingProfileId")); ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "stackLevel")); sprintf((char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfilePurpose, "%s", json_object_get_string(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingProfilePurpose"))); sprintf((char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileKind, "%s", json_object_get_string(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingProfileKind"))); if(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "transactionId") != NULL) ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.TransactionId = json_object_get_int(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "transactionId")); if(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "recurrencyKind") != NULL) sprintf((char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.RecurrencyKind , "%s", json_object_get_string(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "recurrencyKind"))); if(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "validFrom") != NULL) sprintf((char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ValidFrom , "%s", json_object_get_string(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "validFrom"))); if(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "validTo") != NULL) sprintf((char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ValidTo , "%s", json_object_get_string(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "validTo"))); if(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule") != NULL) { sprintf((char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingRateUnit , "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingRateUnit"))); if(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "duration") != NULL) ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.Duration = json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "duration")); if(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "minChargingRate") != NULL) ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "minChargingRate")); if(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "startSchedule") != NULL) sprintf((char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.StartSchedule, "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "startSchedule"))); if(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingSchedulePeriod") != NULL) { for(int idxPeriod=0;idxPeriodRemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "startPeriod")); ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")); if(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases") != NULL) ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")); } } } } else chargingProfileIsNULL = TRUE; } } else connectorIdIsNULL = TRUE; } else connectorIdIsNULL = TRUE; if(connectorIdIsNULL == TRUE) // Number of the connector on which to start the transaction. connectorId SHALL be > 0 { DEBUG_WARN("Connector id is NULL\n."); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); goto end; } /* enum _SYSTEM_STATUS { S_BOOTING = 0, S_IDLE, = 1 S_AUTHORIZING, = 2 S_REASSIGN_CHECK, = 3 S_REASSIGN, = 4 S_PRECHARGE, = 5 S_PREPARING_FOR_EV, = 6 S_PREPARING_FOR_EVSE, = 7 S_CHARGING, = 8 S_TERMINATING, = 9 S_COMPLETE, = 10 S_ALARM, = 11 S_FAULT = 12 } */ if((connectorIdIsNULL == FALSE)&&(connectorIdInt > 0) && (connectorIdInt <= gunTotalNumber)) { //check Transaction active if(gunType[connectorIdInt -1] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((connectorIdInt -1) == 2) ? 1: 0; } else { tempIndex = connectorIdInt -1; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex ) { if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId != -1)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId >= 0)&&(strcmp((const char *)ShmOCPP16Data->ReserveNow[index].IdTag, (char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag) == 0)) { //Reserved DEBUG_INFO("Reserved now !!!The idTag matches the idTag of Reservation!!!\n"); } else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId != -1)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId >= 0)&&(strcmp((const char *)ShmOCPP16Data->ReserveNow[index].IdTag, (char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag) != 0)) { //Reserved DEBUG_INFO("Reserved now !!! The idTag does NOT match the idTag of Reservation!!! Reject it!!!\n"); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); goto end; } else { if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE && (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_PREPARING ) //S_PRECHARGE && (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EV ) //S_PREPARING_FOR_EV && (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EVSE )) // S_PREPARING_FOR_EVSE { DEBUG_WARN("CHAdeMO connector not allow start\n."); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); goto end; } }//END FOR ELSE } }// END FOR CHAdeMO_QUANTITY } else if((gunType[connectorIdInt -1] == 'U')||(gunType[connectorIdInt -1] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((connectorIdInt -1) == 2) ? 1: 0; } else { tempIndex = connectorIdInt -1; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId != -1)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId >= 0)&&(strcmp((const char *)ShmOCPP16Data->ReserveNow[index].IdTag, (char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag) == 0)) { //Reserved DEBUG_INFO("Reserved now !!!The idTag matches the idTag of Reservation!!!\n"); } else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId != -1)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId >= 0)&&(strcmp((const char *)ShmOCPP16Data->ReserveNow[index].IdTag, (char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag) != 0)) { //Reserved DEBUG_INFO("Reserved now !!! The idTag does NOT match the idTag of Reservation!!! Reject it!!!\n"); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); goto end; } else { if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_PREPARING) //S_PRECHARGE && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EV) //S_PREPARING_FOR_EV && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EVSE)) // S_PREPARING_FOR_EVSE { DEBUG_WARN("CCS connector not allow start\n."); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); goto end; } }// END FOR ELSE } }// END FOR CCS_QUANTITY } else if(gunType[connectorIdInt -1] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((connectorIdInt -1) == 2) ? 1: 0; } else { tempIndex = connectorIdInt -1; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex ) { if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId != -1)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId >= 0)&&(strcmp((const char *)ShmOCPP16Data->ReserveNow[index].IdTag, (char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag) == 0)) { //Reserved DEBUG_INFO("Reserved now !!!The idTag matches the idTag of Reservation!!!\n"); } else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId != -1)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId >= 0)&&(strcmp((const char *)ShmOCPP16Data->ReserveNow[index].IdTag, (char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag) != 0)) { //Reserved DEBUG_INFO("Reserved now !!! The idTag does NOT match the idTag of Reservation!!! Reject it!!!\n"); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); goto end; } else { if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE && (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_PREPARING) //S_PRECHARGE && (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EV) //S_PREPARING_FOR_EV && (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EVSE)) // S_PREPARING_FOR_EVSE { DEBUG_WARN("GB connector not allow start\n."); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); goto end; } }// END FOR ELSE } } // END FOR GB_QUANTITY } else if(gunType[connectorIdInt -1] == 'O') { tempIndex = connectorIdInt -1; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex ) { if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId != -1)&&(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId >= 0)&&(strcmp((const char *)ShmOCPP16Data->ReserveNow[index].IdTag, (char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag) == 0)) { //Reserved DEBUG_INFO("Reserved now !!!The idTag matches the idTag of Reservation!!!\n"); } else if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId != -1)&&(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId >= 0)&&(strcmp((const char *)ShmOCPP16Data->ReserveNow[index].IdTag, (char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag) != 0)) { //Reserved DEBUG_INFO("Reserved now !!! The idTag does NOT match the idTag of Reservation!!! Reject it!!!\n"); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); goto end; } else { if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != SYS_MODE_IDLE) //S_IDLE && (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != SYS_MODE_PREPARING) //S_PRECHARGE && (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != SYS_MODE_PREPARE_FOR_EV) //S_PREPARING_FOR_EV && (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != SYS_MODE_PREPARE_FOR_EVSE)) // S_PREPARING_FOR_EVSE { DEBUG_WARN("GB connector not allow start\n."); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); goto end; } }// END FOR ELSE } } // END FOR GB_QUANTITY } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') // 'D' means DC { tempIndex = 2; } else { tempIndex = connectorIdInt -1; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex ) { if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId != -1)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId >= 0)&&(strcmp((const char *)ShmOCPP16Data->ReserveNow[index].IdTag, (char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag) == 0)) { //Reserved DEBUG_INFO("Reserved now !!!The idTag matches the idTag of Reservation!!!\n"); } else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId != -1)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId >= 0)&&(strcmp((const char *)ShmOCPP16Data->ReserveNow[index].IdTag, (char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag) != 0)) { //Reserved DEBUG_INFO("Reserved now !!! The idTag does NOT match the idTag of Reservation!!! Reject it!!!\n"); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); goto end; } else { if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE && (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_PREPARING) //S_PRECHARGE && (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EV) //S_PREPARING_FOR_EV && (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_PREPARE_FOR_EVSE)) // S_PREPARING_FOR_EVSE { DEBUG_WARN("AC connector not allow start\n."); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); goto end; } }//END FOR ELSE } }// END FOR AC_QUANTITY } if(chargingProfileIsNULL == FALSE) { if(strcmp((char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxProfile]) == 0) { ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1; strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]); //memset idTag memset((char *)ShmOCPP16Data->StartTransaction[connectorIdInt -1].IdTag,0, 20); strcpy((char *)ShmOCPP16Data->StartTransaction[connectorIdInt -1].IdTag, (char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag); memset((char *)ShmOCPP16Data->StopTransaction[connectorIdInt -1].IdTag,0, 20); strcpy((char *)ShmOCPP16Data->StopTransaction[connectorIdInt -1].IdTag, (char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag); // Save profile to file sprintf(cmdBuf, "rm -f /Storage/OCPP/TxProfile_%d.json", connectorIdInt); system(cmdBuf); sprintf(cmdBuf, "/Storage/OCPP/TxProfile_%d.json", connectorIdInt); fp = fopen(cmdBuf, "w"); fprintf(fp, "{\"connectorId\":%d,\"csChargingProfiles\":%s}\n", connectorIdInt, json_object_to_json_string_ext(json_object_object_get(RemoteStartTransaction, "chargingProfile"), JSON_C_TO_STRING_PLAIN)); fclose(fp); } else { DEBUG_WARN("Carging profile purpose not TxProfile.\n."); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); } } else { ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1; strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]); //memset idTag memset((char *)ShmOCPP16Data->StartTransaction[connectorIdInt -1].IdTag,0, 20); strcpy((char *)ShmOCPP16Data->StartTransaction[connectorIdInt -1].IdTag, (char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag); memset((char *)ShmOCPP16Data->StopTransaction[connectorIdInt -1].IdTag,0, 20); strcpy((char *)ShmOCPP16Data->StopTransaction[connectorIdInt -1].IdTag, (char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].IdTag); } } else { DEBUG_WARN("Connector id over\n."); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); //sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ResponseStatus, "%s" ,comfirmstr); } end: json_object_put(RemoteStartTransaction); if((connectorIdIsNULL == FALSE) && (connectorIdInt <= gunTotalNumber)) { ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ConnectorId = connectorIdInt; sprintf((char *)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ResponseStatus, "%s" ,comfirmstr); } //OCPP send RemoteStartConfirmation by first. sendRemoteStartConfirmation(uuid, comfirmstr); return result; } int handleRemoteStopTransactionRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; int match = FALSE; int GunNO = 0; int tempIndex = 0; int transactionIdInt=0; int transactionIdIsNULL= TRUE; char comfirmstr[20]; json_object *RemoteStopTransaction; //[2,"ff522854-0dea-436e-87ba-23a229269994","RemoteStopTransaction",{"transactionId":1373618380}] DEBUG_INFO("handleRemoteStopTransactionRequest...\n"); if(server_pending == TRUE) { return 0; } RemoteStopTransaction = json_tokener_parse(payload); if(!is_error(RemoteStopTransaction)) { if(json_object_object_get(RemoteStopTransaction, "transactionId") != NULL) { transactionIdInt = json_object_get_int(json_object_object_get(RemoteStopTransaction, "transactionId")); transactionIdIsNULL = FALSE; } } json_object_put(RemoteStopTransaction); if(transactionIdIsNULL == FALSE) { for(int gun_index=0;gun_index < gunTotalNumber;gun_index++) { if(ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId == transactionIdInt) { //check Transaction active if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) // SYS_MODE_CHARGING, SYS_MODE_TERMINATING { match = TRUE; GunNO = gun_index; } } }// END FOR CHAdeMO_QUANTITY } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_TERMINATING) ) // SYS_MODE_CHARGING, SYS_MODE_TERMINATING { match = TRUE; GunNO = gun_index; } } }// END FOR CCS_QUANTITY } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) // SYS_MODE_CHARGING, SYS_MODE_TERMINATING { match = TRUE; GunNO = gun_index; } } }// END FOR GB_QUANTITY } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_TERMINATING)) // SYS_MODE_CHARGING, SYS_MODE_TERMINATING { match = TRUE; GunNO = gun_index; } } }// END FOR GB_QUANTITY } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') // 'D' means DC { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) // SYS_MODE_CHARGING, SYS_MODE_TERMINATING { match = TRUE; GunNO = gun_index; } } }// END FOR CHAdeMO_QUANTITY } // END FOR AC ELSE }// CHECK IF ResponseTransactionId == transactionIdInt }//END FOR if( match == TRUE) { ShmOCPP16Data->CsMsg.bits[GunNO].RemoteStopTransactionReq = 1; // inform csu of StopTransaction strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]); sprintf((char *)ShmOCPP16Data->RemoteStopTransaction[GunNO].ResponseStatus, "%s" ,comfirmstr); } else { strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); } } else strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); sendRemoteStopTransactionConfirmation(uuid, comfirmstr); return result; } int handleReserveNowTransactionRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; int connectorIdInt=0, reservationIdInt=0; int tempIndex = 0; char expiryDatestr[30]={0}, idTagstr[20]={0},parentIdTagstr[20]={0}; char comfirmstr[20]={0}; char sstr[180]={ 0 },sstrtemp[200]={ 0 }; int c = 0; char *loc; //char *ptr; DEBUG_INFO("handleReserveNowTransactionRequest ...\n"); strcpy(sstrtemp, stringtrimspace(payload)); //***(1)connectorId ****/ c=0; loc = strstr(sstrtemp, "connectorId"); memset(sstr ,0, ARRAY_SIZE(sstr) ); while ((loc != NULL) &&(loc[strlen("connectorId")+2+c] != ',') && (loc[strlen("connectorId")+2+c] != '}')) { sstr[c] = loc[strlen("connectorId")+2+c]; //printf("i=%d sstr=%c\n",c, sstr[c]); c++; } sstr[c] = '\0'; connectorIdInt = atoi(sstr); //***(2)expiryDate ****/ loc = strstr(sstrtemp, "expiryDate"); memset(sstr ,0, ARRAY_SIZE(sstr) ); c = 0; while ((loc != NULL) &&(loc[3+strlen("expiryDate")+c] != '\"')) { sstr[c] = loc[3+strlen("expiryDate")+c]; c++; } sstr[c] = '\0'; strcpy(expiryDatestr, sstr); //***(3)idTag ****/ loc = strstr(sstrtemp, "idTag"); memset(sstr ,0, ARRAY_SIZE(sstr) ); c = 0; while ((loc != NULL) &&(loc[3+strlen("idTag")+c] != '\"')) { sstr[c] = loc[3+strlen("idTag")+c]; c++; } sstr[c] = '\0'; strcpy(idTagstr, sstr); //***(4)parentIdTag ****/ loc = strstr(sstrtemp, "parentIdTag"); memset(sstr ,0, ARRAY_SIZE(sstr) ); c = 0; if(loc == NULL) { strcpy(parentIdTagstr, ""); } else { while ((loc != NULL) &&(loc[3+strlen("parentIdTag")+c] != '\"')) { sstr[c] = loc[3+strlen("parentIdTag")+c]; c++; } sstr[c] = '\0'; strcpy(parentIdTagstr, sstr); } //***(5)reservationId ****/ c=0; loc = strstr(sstrtemp, "reservationId"); memset(sstr ,0, ARRAY_SIZE(sstr) ); while ((loc != NULL) &&((loc[strlen("reservationId")+2+c] != '}') && (loc[strlen("reservationId")+2+c] != ','))) { sstr[c] = loc[strlen("reservationId")+2+c]; //printf("i=%d sstr=%c\n",c, sstr[c]); c++; } sstr[c] = '\0'; reservationIdInt = atoi(sstr); strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]); /* enum SYSTEM_STATUS { SYS_MODE_BOOTING = 0, SYS_MODE_IDLE = 1, SYS_MODE_AUTHORIZING = 2, SYS_MODE_MODE_REASSIGN_CHECK = 3, SYS_MODE_REASSIGN = 4, SYS_MODE_PREPARING = 5, SYS_MODE_PREPARE_FOR_EV = 6, SYS_MODE_PREPARE_FOR_EVSE = 7, SYS_MODE_CHARGING = 8, SYS_MODE_TERMINATING = 9, SYS_MODE_COMPLETE = 10, SYS_MODE_ALARM = 11, SYS_MODE_FAULT = 12, SYS_MODE_RESERVATION = 13, SYS_MODE_BOOKING = 14, SYS_MODE_MAINTAIN = 15, SYS_MODE_DEBUG = 16, SYS_MODE_CCS_PRECHARGE_STEP0 = 17, SYS_MODE_CCS_PRECHARGE_STEP1 = 18, SYS_MODE_UPDATE = 19 }; */ if((connectorIdInt == 0) &&(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData, "FALSE") == 0)) //For OCTT Test case { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]); goto end; } if((connectorIdInt > 0) && ((connectorIdInt -1) <= gunTotalNumber)) { //check Transaction active if(gunType[connectorIdInt -1] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = (((connectorIdInt -1)==2) ? 1: 0); } else { tempIndex = connectorIdInt -1; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId) { if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_FAULT)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_ALARM)) //S_FAULT { if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE { ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1; strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]); } else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_MAINTAIN)||(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9')) { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]); } else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_RESERVATION) ) //S_PRECHARGE { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]); } else { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]); } } else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) // SYS_MODE_FAULT, SYS_MODE_ALARM, SYS_MODE_TERMINATING ---> SuspendedEV { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]); } } else { //replace reservation ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1; strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]); } } } // END FOR CHAdeMO_QUANTITY } else if((gunType[connectorIdInt -1] == 'U')||(gunType[connectorIdInt -1] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = (((connectorIdInt -1)==2) ? 1: 0); } else { tempIndex = connectorIdInt -1; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId) { //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_FAULT)&&(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_ALARM)) //S_FAULT { if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE { ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1; strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]); } else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) ||(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '9')) { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]); } else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_RESERVATION)) //S_PRECHARGE { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]); } else { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]); } } else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus ==SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus ==SYS_MODE_ALARM) ||(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) //SYS_MODE_FAUL, SYS_MODE_TERMINATING ---> SuspendedEV { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]); } } else { //replace reservation ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1; strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]); } } } // END FOR CCS_QUANTITY } else if(gunType[connectorIdInt -1] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = (((connectorIdInt -1)==2) ? 1: 0); } else { tempIndex = connectorIdInt -1; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId) { //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_FAULT)&&(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_ALARM)) //SYS_MODE_FAULT, SYS_MODE_ALARM { if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE { ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1; strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]); } else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '9')) { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]); } else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_RESERVATION) ) //S_PRECHARGE { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]); } else { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]); } } else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==SYS_MODE_TERMINATING)) //SYS_MODE_FAULT, SYS_MODE_ALARM ,SYS_MODE_TERMINATING ---> SuspendedEV { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]); } } else { //replace reservation ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1; strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]); } } }// END FOR GB_QUANTITY } else if(gunType[connectorIdInt -1] == 'O') { tempIndex = connectorIdInt -1; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ReservationId) { //SystemStatus: 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault, 8: Reserved, 9: maintain if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != SYS_MODE_FAULT)&&(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus != SYS_MODE_ALARM)) //SYS_MODE_FAULT, SYS_MODE_ALARM { if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_IDLE) //S_IDLE { ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1; strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]); } else if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '9')) { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]); } else if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_RESERVATION) ) //S_PRECHARGE { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]); } else { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]); } } else if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus ==SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus ==SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus ==SYS_MODE_TERMINATING)) //SYS_MODE_FAULT, SYS_MODE_ALARM ,SYS_MODE_TERMINATING ---> SuspendedEV { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]); } } else { //replace reservation ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1; strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]); } } }// END FOR GB_QUANTITY } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') // 'D' means DC { tempIndex = 2; } else { tempIndex = (connectorIdInt -1); } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId) { if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_FAULT)&&(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_ALARM)) //SYS_MODE_FAULT, SYS_MODE_ALARM { if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE { if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_B) ||(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_C) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_D)) { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]); } else { ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1; strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]); } } else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) ||(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9')) { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]); } else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_RESERVATION) ) //S_PRECHARGE { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]); } else { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]); } } else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT) ||(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) //SYS_MODE_FAULT, SYS_MODE_ALARM, SYS_MODE_TERMINATING ---> SuspendedEV { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]); } } else { //replace reservation ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowReq = 1; strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]); } } } // END FOR AC_QUANTITY } sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ResponseStatus, "%s" ,comfirmstr); } else if(connectorIdInt == 0) { //check Transaction active for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ReservationId) { if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9')) { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]); goto end; } else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]); goto end; } else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) //SYS_MODE_FAULT, SYS_MODE_TERMINATING ---> SuspendedEV { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]); goto end; } else if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]); goto end; } } }// END FOR CHAdeMO_QUANTITY for (int index = 0; index < CCS_QUANTITY; index++) { if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ReservationId) { if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_MAINTAIN)||(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == '9')) { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]); goto end; } else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_PREPARING) //SYS_MODE_PREPARING { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]); goto end; } else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus ==SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus ==SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus ==SYS_MODE_TERMINATING)) //SYS_MODE_FAULT, SYS_MODE_TERMINATING ---> SuspendedEV { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]); goto end; } else if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]); goto end; } } } // END FOR CCS_QUANTITY for (int index = 0; index < GB_QUANTITY; index++) { if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ReservationId) { if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_MAINTAIN)||(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '6') || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == '9')) { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]); goto end; } else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]); goto end; } else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus ==SYS_MODE_TERMINATING) ) //SYS_MODE_FAULT, SYS_MODE_TERMINATING ---> SuspendedEV { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]); goto end; } else if(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]); goto end; } } } // END FOR GB_QUANTITY for (int index = 0; index < AC_QUANTITY; index++) { if(reservationIdInt != ShmSysConfigAndInfo->SysInfo.AcChargingData[index].ReservationId) { if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_MAINTAIN) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_DEBUG) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_UPDATE)) //S_TERMINATING //else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == 11) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == '9')) { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Unavailable]); goto end; } else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_PREPARING) //S_PRECHARGE { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]); goto end; } else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_ALARM) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) //SYS_MODE_FAULT, SYS_MODE_TERMINATING ---> SuspendedEV { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Faulted]); goto end; } if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE) //S_IDLE { if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_B) ||(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_C) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_D)) { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]); goto end; } } else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus != SYS_MODE_IDLE) //S_IDLE { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]); goto end; } } }// END FOR AC_QUANTITY //The connectorId is 0 ShmOCPP16Data->CsMsg.bits[0].ReserveNowReq = 1; strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Accepted]); sprintf((char *)ShmOCPP16Data->ReserveNow[0].ResponseStatus, "%s" ,comfirmstr); ShmOCPP16Data->ReserveNow[0].ConnectorId = connectorIdInt; sprintf((char *)ShmOCPP16Data->ReserveNow[0].ExpiryDate, "%s" , expiryDatestr); sprintf((char *)ShmOCPP16Data->ReserveNow[0].IdTag, "%s" , idTagstr); sprintf((char *)ShmOCPP16Data->ReserveNow[0].ParentIdTag, "%s" , parentIdTagstr); ShmOCPP16Data->ReserveNow[0].ReservationId = reservationIdInt; strcpy((char *)ShmOCPP16Data->ReserveNow[0].guid, uuid); result = TRUE; return result; } else { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Rejected]); sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ResponseStatus, "%s" ,comfirmstr); } if(strcmp(comfirmstr,"Accepted") == 0) { ShmOCPP16Data->ReserveNow[connectorIdInt-1].ConnectorId = connectorIdInt; sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ExpiryDate, "%s" , expiryDatestr); sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].IdTag, "%s" , idTagstr); sprintf((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].ParentIdTag, "%s" , parentIdTagstr); ShmOCPP16Data->ReserveNow[connectorIdInt-1].ReservationId = reservationIdInt; strcpy((char *)ShmOCPP16Data->ReserveNow[connectorIdInt-1].guid, uuid); result = TRUE; return result; } end: sendReserveNowTransactionConfirmation(uuid,comfirmstr); //ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].ReserveNowConf = 1; return result; } int handleResetRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; char sstr[10]={0},sstrtemp[30]={ 0 }; char typestr[10]={0}; char comfirmstr[20]={0}; int c = 0; char *loc; DEBUG_INFO("handleResetRequest...\n"); strcpy(sstrtemp, stringtrimspace(payload)); loc = strstr(sstrtemp, "type"); memset(sstr ,0, ARRAY_SIZE(sstr) ); c = 0; while (loc[3+strlen("type")+c] != '\"') { sstr[c] = loc[3+strlen("type")+c]; c++; } sstr[c] = '\0'; strcpy(typestr,sstr); sprintf((char *)ShmOCPP16Data->Reset.Type, "%s" ,typestr); if((strcmp(typestr, ResetTypeStr[Hard])==0) || (strcmp(typestr, ResetTypeStr[Soft])==0)) { ShmOCPP16Data->MsMsg.bits.ResetReq = 1; strcpy((char *)ShmOCPP16Data->Reset.guid, uuid); result = TRUE; return result; } else { strcpy(comfirmstr, ResetStatusStr[ResetStatus_Rejected]); sprintf((char *)ShmOCPP16Data->Reset.ResponseStatus, "%s" ,comfirmstr); goto errorend; } errorend: sendResetConfirmation(uuid, comfirmstr); return result; } int handleSendLocalListRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; int listVersionInt; //char *updateTypestr, *idTagstr, *expiryDatestr, *parentIdTagstr, *statusstr; char listsearch[]="listVersion"; char updateTypesearch[]="updateType"; char localAuthorizationListsearch[]="localAuthorizationList"; char sstr[60500]={ 0 },sstrtemp[60500]={ 0 };//sstr[200]={ 0 }; char CardList[500][160]={0}; char updateTypestr[15]={0}; char idTagstr[20]={0}; char parentIdTag[20]={0}; char expiryDate[30]={0}; char idTagstatus[16]={0}; int c = 0; int i = 0; char *delim1 = "}"; char * pch; char *loc; //char *ptr; char comfirmstr[20]; //int n_localAuthorizations = 0; int checkState_Faulted = FALSE; DEBUG_INFO("handleSendLocalListRequest...\n"); if(strcmp((const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "FALSE") == 0) //For OCTT Test case { strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_NotSupported]); goto end; } //check Charge Point state for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT ---> Faulted { checkState_Faulted = TRUE; //OCPP Status: Faulted } } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT ---> Faulted { checkState_Faulted = TRUE; //OCPP Status } } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT ---> Faulted { checkState_Faulted = TRUE; //OCPP Status: Faulted } } //check Charge Point state for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_FAULT) //S_FAULT ---> Faulted { checkState_Faulted = TRUE; //OCPP Status: Faulted } } if(checkState_Faulted == TRUE) { strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Failed]); goto end; } //Filter payload space strcpy(sstrtemp, stringtrimspace(payload)); //listVersion c = 0; loc = strstr(sstrtemp, listsearch); while ((loc[strlen("listVersion")+2+c] != ',')&&(loc[strlen("listVersion")+2+c] != '}')) { sstr[c] = loc[strlen("listVersion")+2+c]; c++; } sstr[c] = '\0'; listVersionInt = atoi(sstr); ShmOCPP16Data->SendLocalList.ListVersion = listVersionInt; //updateType loc = strstr(sstrtemp, updateTypesearch); c = 0; while (loc[3+strlen(updateTypesearch)+c] != '\"') { sstr[c] = loc[3+strlen(updateTypesearch)+c]; c++; } sstr[c] = '\0'; strcpy(updateTypestr, sstr); sprintf((char *)ShmOCPP16Data->SendLocalList.UpdateType, "%s", updateTypestr); //localAuthorizationList memset(sstr ,0, ARRAY_SIZE(sstr) ); loc = strstr(sstrtemp, localAuthorizationListsearch); if(loc != NULL) // localAuthorizationList is not NULL { //Check UpdateType if(strcmp(updateTypestr, UpdateTypeStr[Full]) == 0) { //Local list full update printf("Local list full update.\n"); OCPP_getListVerion(); if(listVersionInt < localversion )//if(listVersionInt <= localversion ) for OCTT Case ---remove temporally { strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Failed]); goto end; } OCPP_cleanLocalList(); } else if(strcmp(updateTypestr, UpdateTypeStr[Differential]) == 0) { //Local list different update printf("Local list different update.\n"); OCPP_getListVerion(); if(listVersionInt < localversion )//if(listVersionInt <= localversion ) for OCTT Case ---remove temporally { strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_VersionMismatch]); goto end; } } else { strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_NotSupported]); goto end; } c = 0; while (loc[3+strlen(localAuthorizationListsearch)+c] != ']') { sstr[c] = loc[3+strlen(localAuthorizationListsearch)+c]; //printf("i=%d sstr=%c\n",c, sstr[c]); c++; } sstr[c] = '\0'; //DEBUG_INFO("sstr=%s\n", sstr); //parsing strings to words i = 0; pch = strtok(sstr,delim1); while (pch != NULL) { strcpy(CardList[i], pch); //DEBUG_INFO("CardList[i]=%s\n", CardList[i]); pch = strtok (NULL, delim1); i = i + 1; } //DEBUG_INFO("listVersionInt=%s\n", sstr); //local Authorizations List Numbers //n_localAuthorizations = i; ShmOCPP16Data->SendLocalList.ListVersion = listVersionInt; memset(ShmOCPP16Data->SendLocalList.LocalAuthorizationList, 0 , sizeof(struct StructLocalAuthorizationList)* 500); c= 0; while(c < i) // i is CardList Number { //Search "IdToken" memset(sstr ,0, ARRAY_SIZE(sstr) ); loc = strstr(CardList[c], "idTag"); int j = 0; while (loc[3+strlen("idTag")+j] != '\"') { sstr[j] = loc[3+strlen("idTag")+j]; //printf("i=%d sstr=%c\n",c, sstr[j]); j++; } sstr[j] = '\0'; strcpy(idTagstr, sstr); //DEBUG_INFO("idTagstr=%s\n", idTagstr); //Search "expiryDate" memset(sstr ,0, ARRAY_SIZE(sstr) ); loc = strstr(CardList[c], "expiryDate"); j = 0; if(loc != NULL) { while (loc[3+strlen("expiryDate")+j] != '\"') { sstr[j] = loc[3+strlen("expiryDate")+j]; //printf("i=%d sstr=%c\n",c, sstr[j]); j++; } sstr[j] = '\0'; strcpy(expiryDate, sstr); } else { strcpy(expiryDate, ""); } //DEBUG_INFO("expiryDate=%s\n", expiryDate); //Search "parentIdTag" memset(sstr ,0, ARRAY_SIZE(sstr) ); loc = strstr(CardList[c], "parentIdTag"); j = 0; if(loc != NULL) { while (loc[3+strlen("parentIdTag")+j] != '\"') { sstr[j] = loc[3+strlen("parentIdTag")+j]; //printf("i=%d sstr=%c\n",c, sstr[j]); j++; } sstr[j] = '\0'; strcpy(parentIdTag, sstr); } else { strcpy(parentIdTag, ""); } //DEBUG_INFO("parentIdTag=%s\n", parentIdTag); //Search "status" memset(sstr ,0, ARRAY_SIZE(sstr) ); loc = strstr(CardList[c], "status"); j = 0; while (loc[3+strlen("status")+j] != '\"') { sstr[j] = loc[3+strlen("status")+j]; //printf("i=%d sstr=%c\n",c, sstr[j]); j++; } sstr[j] = '\0'; strcpy(idTagstatus, sstr); //DEBUG_INFO("idTagstatus=%s\n", idTagstatus); OCPP_getIdTagFromLocalList(idTagstr); //OCPP_getIdTagFromLocalList("test"); For Test //DEBUG_INFO("idTagAuthorization=%s\n",idTagAuthorization); //DEBUG_INFO("updateTypestr=%s\n",updateTypestr); if(strcmp(updateTypestr, UpdateTypeStr[Full]) == 0) { //Local list full update DEBUG_INFO("Local list full update %d, %d, %s, %s, %s, %s.\n", c, listVersionInt, idTagstr, parentIdTag, expiryDate, idTagstatus); // update list OCPP_addLocalList(listVersionInt, idTagstr, parentIdTag, expiryDate, idTagstatus); //DEBUG_INFO("Local list full update. 1\n"); //OCPP_get_TableAuthlocalAllData(); //DEBUG_INFO("Local list full update. 2\n"); } else if(strcmp(updateTypestr, UpdateTypeStr[Differential]) == 0) { DEBUG_INFO("Local list diff update %d, %d, %s, %s, %s, %s.\n", c, listVersionInt, idTagstr, parentIdTag, expiryDate, idTagstatus); OCPP_addLocalList(listVersionInt, idTagstr, parentIdTag, expiryDate, idTagstatus); // update or add } strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[c].IdTag, idTagstr); strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[c].IdTagInfo.ExpiryDate, expiryDate); strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[c].IdTagInfo.ParentIdTag, parentIdTag); strcpy((char *)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[c].IdTagInfo.Status, idTagstatus); c++; } } else { //Check UpdateType if(strcmp(updateTypestr, UpdateTypeStr[Full]) == 0) { //Local list full update DEBUG_INFO("If no (empty) localAuthorizationList is given and the updateType is Full, all identifications are removed from the list. \n"); OCPP_cleanLocalList(); strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Accepted]); goto end; } if(strcmp(updateTypestr, UpdateTypeStr[Differential]) == 0) { //Local list different update DEBUG_INFO("Requesting a Differential update without (empty) localAuthorizationList will have no effect on the list\n"); strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Accepted]); goto end; } } strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Accepted]); end: sendSendLocalListConfirmation(uuid, comfirmstr); //ShmOCPP16Data->MsMsg.bits.SendLocalListConf = 1; return result; } #define MAX 200 int handleSetChargingProfileRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; int connectorIdInt=0, chargingProfileIdInt=0, transactionIdInt=0,stackLevelInt=0, durationInt=0, startPeriodInt[10]={0}, numberPhasesInt[10]={0}; int tempconnectorIdInt=0, tempchargingProfileIdInt=0, tempstackLevelInt=0; char chargingProfilePurposeStr[30]={0}; char chargingProfileKindStr[16]={0}; char recurrencyKindStr[10]={0}; char validFromStr[30]={0}, validToStr[30]={0}, startScheduleStr[30]={0}, chargingRateUnitStr[6]={0}; float minChargingRateFloat = 0.0, limitflaot[10] = {0.0}; int chargingSchedulePeriodCount = 0; char comfirmstr[20]={0}; int meet= FALSE; FILE *fptr1; char filename[MAX]={0}; char tempfile[] = "/Storage/OCPP/SetChargingProfiletemp.json"; char rmFileCmd[50]={0}; char tempchargingProfilePurposeStr[30]={0}; char word[1600]={0}; int n_chargingProfile = 0; json_object *SetChargingProfile; DEBUG_INFO("handleSetChargingProfileRequest\n"); connectorIdInt = chargingProfileIdInt = transactionIdInt = stackLevelInt = 0; SetChargingProfile = json_tokener_parse(payload); if(!is_error(SetChargingProfile)) { if(json_object_object_get(SetChargingProfile, "connectorId") != NULL) { connectorIdInt = json_object_get_int(json_object_object_get(SetChargingProfile, "connectorId")); if(connectorIdInt == 0) { memset(&ShmOCPP16Data->SetChargingProfile[0], 0x00, sizeof(struct StructSetChargingProfile)); ShmOCPP16Data->SetChargingProfile[0].ConnectorId = connectorIdInt; } else { memset(&ShmOCPP16Data->SetChargingProfile[connectorIdInt-1], 0x00, sizeof(struct StructSetChargingProfile)); ShmOCPP16Data->SetChargingProfile[connectorIdInt-1].ConnectorId = connectorIdInt; } //DEBUG_INFO("connectorId: %d\n", connectorIdInt); } if(json_object_object_get(SetChargingProfile, "csChargingProfiles") != NULL) { if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfileId") != NULL) { chargingProfileIdInt = json_object_get_int(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfileId")); if(connectorIdInt == 0) // an overall limit for the Charge Point. { ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingProfileId = chargingProfileIdInt; } else { ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingProfileId = chargingProfileIdInt; } //DEBUG_INFO("chargingProfileIdInt: %d\n", chargingProfileIdInt); } if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "stackLevel") != NULL) { stackLevelInt = json_object_get_int(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "stackLevel")); if(connectorIdInt == 0) // an overall limit for the Charge Point. { ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.StackLevel = stackLevelInt; } else { ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.StackLevel = stackLevelInt; } //DEBUG_INFO("stackLevelInt: %d\n", stackLevelInt); } if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfilePurpose") != NULL) { strcpy(chargingProfilePurposeStr, json_object_get_string(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfilePurpose"))); if(connectorIdInt == 0) // an overall limit for the Charge Point. { strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingProfilePurpose, chargingProfilePurposeStr); } else { strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingProfilePurpose, chargingProfilePurposeStr); } //DEBUG_INFO("chargingProfilePurposeStr: %s\n", chargingProfilePurposeStr); } if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfileKind") != NULL) { strcpy(chargingProfileKindStr, json_object_get_string(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfileKind"))); if(connectorIdInt == 0) // an overall limit for the Charge Point. { strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingProfileKind, chargingProfileKindStr); } else { strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingProfileKind, chargingProfileKindStr); } //DEBUG_INFO("chargingProfileKindStr: %s\n", chargingProfileKindStr); } if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "transactionId") != NULL) { transactionIdInt = json_object_get_int(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "transactionId")); if(connectorIdInt == 0) // an overall limit for the Charge Point. { ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.TransactionId = transactionIdInt; } else { ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.TransactionId = transactionIdInt; } //DEBUG_INFO("transactionIdInt: %d\n", transactionIdInt); } if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "recurrencyKind") != NULL) { strcpy(recurrencyKindStr, json_object_get_string(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "recurrencyKind"))); if(connectorIdInt == 0) // an overall limit for the Charge Point. { strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.RecurrencyKind, recurrencyKindStr); } else { strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.RecurrencyKind, recurrencyKindStr); } //DEBUG_INFO("recurrencyKindStr: %s\n", recurrencyKindStr); } if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "validFrom") != NULL) { strcpy(validFromStr, json_object_get_string(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "validFrom"))); if(connectorIdInt == 0) // an overall limit for the Charge Point. { strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ValidFrom, validFromStr); } else { strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ValidFrom, validFromStr); } //DEBUG_INFO("validFromStr: %s\n", validFromStr); } if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "validTo") != NULL) { strcpy(validToStr, json_object_get_string(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "validTo"))); if(connectorIdInt == 0) // an overall limit for the Charge Point. { strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ValidTo, validToStr); } else { strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ValidTo, validToStr); } //DEBUG_INFO("validToStr: %s\n", validToStr); } if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule") != NULL) { if(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit") != NULL) { strcpy(chargingRateUnitStr, json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit"))); if(connectorIdInt == 0) // an overall limit for the Charge Point. { strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingRateUnit,chargingRateUnitStr); } else { strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingRateUnit,chargingRateUnitStr); } //DEBUG_INFO("chargingRateUnitStr: %s\n", chargingRateUnitStr); } if(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "duration") != NULL) { durationInt = json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "duration")); if(connectorIdInt == 0) // an overall limit for the Charge Point. { ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.Duration = durationInt; } else { ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.Duration = durationInt; } //DEBUG_INFO("durationInt: %d\n", durationInt); } if(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "minChargingRate") != NULL) { minChargingRateFloat = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "minChargingRate")); if(connectorIdInt == 0) // an overall limit for the Charge Point. { ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.MinChargingRate = minChargingRateFloat; } else { ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.MinChargingRate = minChargingRateFloat; } //DEBUG_INFO("minChargingRateFloat: %f\n", minChargingRateFloat); } if(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "startSchedule") != NULL) { strcpy(startScheduleStr, json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "startSchedule"))); if(connectorIdInt == 0) // an overall limit for the Charge Point. { strcpy((char *)ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.StartSchedule,startScheduleStr); } else { strcpy((char *)ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.StartSchedule,startScheduleStr); } //DEBUG_INFO("startScheduleStr: %s\n", startScheduleStr); } if(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod") != NULL) { chargingSchedulePeriodCount = json_object_array_length(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod")); //DEBUG_INFO("chargingSchedulePeriodCount: %d\n", chargingSchedulePeriodCount); if(chargingSchedulePeriodCount <= 10) { for(int idxPeriod=0;idxPeriodSetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = startPeriodInt[idxPeriod]; } else { ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod = startPeriodInt[idxPeriod]; } //DEBUG_INFO("startPeriodInt[%d]: %d\n", idxPeriod, startPeriodInt[idxPeriod]); } if(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit") != NULL) { limitflaot[idxPeriod] = json_object_get_double(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "limit")); if(connectorIdInt == 0) // an overall limit for the Charge Point. { ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = limitflaot[idxPeriod]; } else { ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit = limitflaot[idxPeriod]; } //DEBUG_INFO("limitflaot[%d]: %f\n", idxPeriod, limitflaot[idxPeriod]); } if(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases") != NULL) { numberPhasesInt[idxPeriod] = json_object_get_int(json_object_object_get(json_object_array_get_idx(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingSchedulePeriod"), idxPeriod), "numberPhases")); if(connectorIdInt == 0) // an overall limit for the Charge Point. { ShmOCPP16Data->SetChargingProfile[0].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = numberPhasesInt[idxPeriod]; } else { ShmOCPP16Data->SetChargingProfile[connectorIdInt -1].ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases = numberPhasesInt[idxPeriod]; } //DEBUG_INFO("numberPhasesInt[%d]: %d\n", idxPeriod, numberPhasesInt[idxPeriod]); } } } } } } } json_object_put(SetChargingProfile); if( chargingSchedulePeriodCount > atoi((const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData)) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); goto end; } if(strcmp(chargingProfilePurposeStr, ChargingProfilePurposeTypeStr[ChargePointMaxProfile]) == 0) { DEBUG_INFO("chargingProfilePurposeStr is ChargePointMaxProfile !!! \n"); if(connectorIdInt != 0) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); goto end; } strcpy(filename, ChargePointMaxProfile_JSON ); fptr1 = fopen(filename, "r"); if (!fptr1) { //file not exist DEBUG_INFO("Unable to open the input file!!\n"); fptr1 = fopen(filename, "w+"); } else { //Check Charging Profile Count while(fscanf(fptr1, "%s", word) != EOF) { //DEBUG_INFO("word=%s\n",word); if(strstr(word, "chargingProfileId")!= NULL) { //DEBUG_INFO("test chargingProfileId \n"); n_chargingProfile = n_chargingProfile + 1; //DEBUG_INFO("chargingProfileId Found\n"); } } } fclose(fptr1); } else if(strcmp(chargingProfilePurposeStr, ChargingProfilePurposeTypeStr[TxDefaultProfile]) == 0) { DEBUG_INFO("chargingProfilePurposeStr is TxDefaultProfile !!! \n"); if((connectorIdInt != 0) && (connectorIdInt > gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/)) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); goto end; } memset(filename, 0, ARRAY_SIZE(filename)); sprintf(filename, "/Storage/OCPP/TxDefaultProfile_%d.json", connectorIdInt); fptr1 = fopen(filename, "r"); if (!fptr1) { //file not exist //DEBUG_INFO("Unable to open the input file!!\n"); fptr1 = fopen(filename, "w+"); } else { //Check Charging Profile Count while(fscanf(fptr1, "%s", word) != EOF) { //DEBUG_INFO("word=%s\n",word); if(strstr(word, "chargingProfileId")!= NULL) { //DEBUG_INFO("test chargingProfileId \n"); n_chargingProfile = n_chargingProfile + 1; //DEBUG_INFO("chargingProfileId Found\n"); } } } fclose(fptr1); } else if(strcmp(chargingProfilePurposeStr, ChargingProfilePurposeTypeStr[TxProfile]) == 0) { //printf("set chargingProfile 1-4\n"); DEBUG_INFO("chargingProfilePurposeStr is TxProfile !!! \n"); //---TxProfile SHALL only be set at Charge Point ConnectorId > 0. ---// if(connectorIdInt == 0) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); goto end; } int tempIndex = 0; //check Transaction active if(gunType[connectorIdInt -1] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = (((connectorIdInt -1)==2) ? 1: 0); } else { tempIndex = connectorIdInt -1; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) // S_CHARGING { if(transactionIdInt == ShmOCPP16Data->StartTransaction[connectorIdInt -1].ResponseTransactionId) { meet = TRUE; break; } } } } } else if((gunType[connectorIdInt -1] == 'U')||(gunType[connectorIdInt -1] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = (((connectorIdInt -1)==2) ? 1: 0); } else { tempIndex = connectorIdInt -1; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) // S_CHARGING { if(transactionIdInt == ShmOCPP16Data->StartTransaction[connectorIdInt -1].ResponseTransactionId) { meet = TRUE; break; } } } } } else if(gunType[connectorIdInt -1] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = (((connectorIdInt -1)==2) ? 1: 0); } else { tempIndex = connectorIdInt -1; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) // S_CHARGING { if(transactionIdInt == ShmOCPP16Data->StartTransaction[connectorIdInt -1].ResponseTransactionId) { meet = TRUE; break; } } } } } else if(gunType[connectorIdInt -1] == 'O') { tempIndex = connectorIdInt -1; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_TERMINATING)) // S_CHARGING { if(transactionIdInt == ShmOCPP16Data->StartTransaction[connectorIdInt -1].ResponseTransactionId) { meet = TRUE; break; } } } } } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') // 'D' means DC { tempIndex = 2; } else { tempIndex = (connectorIdInt -1); } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) // S_CHARGING { if(transactionIdInt == ShmOCPP16Data->StartTransaction[connectorIdInt -1].ResponseTransactionId) { meet = TRUE; break; } } } } } //check Transaction active if(meet == FALSE) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); goto end; } if((connectorIdInt != 0) && (connectorIdInt > gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/)) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); goto end; } sprintf(filename, "/Storage/OCPP/TxProfile_%d.json", connectorIdInt); fptr1 = fopen(filename, "r"); if (!fptr1) { //file not exist DEBUG_INFO("Unable to open the input file!!\n"); fptr1 = fopen(filename, "w+"); } else { //Check Charging Profile Count while(fscanf(fptr1, "%s", word) != EOF) { //DEBUG_INFO("word=%s\n",word); if(strstr(word, "chargingProfileId")!= NULL) { //DEBUG_INFO("test chargingProfileId \n"); n_chargingProfile = n_chargingProfile + 1; //DEBUG_INFO("chargingProfileId Found\n"); } } } fclose(fptr1); } // Check ChargeProfileMaxStackLevel if(n_chargingProfile >= atoi((const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData)) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); goto end; } //------------------------------Satrt: Check Configuration Key "MaxChargingProfilesInstalled" Logic---------------------------------------// { int i = 0; char fnametemp[200]={0}; n_chargingProfile = 0; //Check ChargePointMaxProfile.json exit if((access("/Storage/OCPP/ChargePointMaxProfile.json",F_OK))!=-1) { fptr1 = fopen("/Storage/OCPP/ChargePointMaxProfile.json", "r"); //Check Charging Profile Count while(fscanf(fptr1, "%s", word) != EOF) { //DEBUG_INFO("word=%s\n",word); if(strstr(word, "chargingProfileId")!= NULL) { //DEBUG_INFO("test chargingProfileId \n"); n_chargingProfile = n_chargingProfile + 1; i = i + 1; //DEBUG_INFO("chargingProfileId Found\n"); } memset(word, 0, ARRAY_SIZE(word)); } fclose(fptr1); DEBUG_INFO("ChargePointMaxProfile.json has %d charging Profile\n",i ); } //Check TxDefaultProfile_0.json exit if((access("/Storage/OCPP/TxDefaultProfile_0.json",F_OK))!=-1) { i = 0; fptr1 = fopen("/Storage/OCPP/TxDefaultProfile_0.json", "r"); //Check Charging Profile Count while(fscanf(fptr1, "%s", word) != EOF) { //DEBUG_INFO("word=%s\n",word); if(strstr(word, "chargingProfileId")!= NULL) { //DEBUG_INFO("test chargingProfileId \n"); n_chargingProfile = n_chargingProfile + 1; i = i + 1; //DEBUG_INFO("chargingProfileId Found\n"); } memset(word, 0, ARRAY_SIZE(word)); } fclose(fptr1); DEBUG_INFO("TxDefaultProfile_0.json has %d charging Profile\n",i ); } //Check TxDefaultProfile_%d.json for(int j=1; j <= gunTotalNumber; j++) { memset(fnametemp, 0, ARRAY_SIZE(fnametemp)); sprintf(fnametemp, "/Storage/OCPP/TxDefaultProfile_%d.json", j); if((access(fnametemp,F_OK))!=-1) { i = 0; fptr1 = fopen(fnametemp, "r"); //Check Charging Profile Count while(fscanf(fptr1, "%s", word) != EOF) { //DEBUG_INFO("word=%s\n",word); if(strstr(word, "chargingProfileId")!= NULL) { //DEBUG_INFO("test chargingProfileId \n"); n_chargingProfile = n_chargingProfile + 1; i = i + 1; //DEBUG_INFO("chargingProfileId Found\n"); } memset(word, 0, ARRAY_SIZE(word)); } fclose(fptr1); DEBUG_INFO("%s has %d charging Profile\n",fnametemp, i); } } //Check TxProfile_%d.json for(int j=1; j <= gunTotalNumber; j++) { memset(fnametemp, 0, ARRAY_SIZE(fnametemp)); sprintf(fnametemp, "/Storage/OCPP/TxProfile_%d.json", j); if((access(fnametemp,F_OK))!=-1) { i = 0; fptr1 = fopen(fnametemp, "r"); //Check Charging Profile Count while(fscanf(fptr1, "%s", word) != EOF) { //DEBUG_INFO("word=%s\n",word); if(strstr(word, "chargingProfileId")!= NULL) { //DEBUG_INFO("test chargingProfileId \n"); n_chargingProfile = n_chargingProfile + 1; i = i + 1; //DEBUG_INFO("chargingProfileId Found\n"); } memset(word, 0, ARRAY_SIZE(word)); } fclose(fptr1); DEBUG_INFO("%s has %d charging Profile\n",fnametemp, i); } } if( n_chargingProfile > atoi((const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData)) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); goto end; } } //------------------------------End: Check Configuration Key "MaxChargingProfilesInstalled" Logic---------------------------------------// //**********************************Write to File********************************************************/ FILE *infile; FILE *outfile; infile = fopen (filename, "r"); outfile = fopen (tempfile, "w"); int d =0; d = fgetc(infile); rewind(infile); if(d == EOF) { // Profile is empty fprintf(outfile,"%s\n",payload); fclose(infile); fclose(outfile); sprintf(rmFileCmd,"rm -f %s",filename); system(rmFileCmd); rename(tempfile, filename); } else { // Profile is not empty char buf[2048]={0}; int ChargingProfileAdded = FALSE; while (fgets(buf, sizeof(buf), infile) != NULL) { buf[strlen(buf) - 1] = '\0'; // eat the newline fgets() stores json_object *tmpChargingProfile; tmpChargingProfile = json_tokener_parse(buf); if(!is_error(SetChargingProfile)) { if(json_object_object_get(tmpChargingProfile, "connectorId") != NULL) { tempconnectorIdInt = json_object_get_int(json_object_object_get(tmpChargingProfile, "connectorId") ); } if(json_object_object_get(tmpChargingProfile, "csChargingProfiles") != NULL) { if(json_object_object_get(json_object_object_get(tmpChargingProfile, "csChargingProfiles"), "chargingProfileId") != NULL) { tempchargingProfileIdInt = json_object_get_int(json_object_object_get(json_object_object_get(tmpChargingProfile, "csChargingProfiles"), "chargingProfileId")); } if(json_object_object_get(json_object_object_get(tmpChargingProfile, "csChargingProfiles"), "stackLevel") != NULL) { tempstackLevelInt = json_object_get_int(json_object_object_get(json_object_object_get(tmpChargingProfile, "csChargingProfiles"), "stackLevel")); } if(json_object_object_get(json_object_object_get(tmpChargingProfile, "csChargingProfiles"), "chargingProfilePurpose") != NULL) { strcpy(tempchargingProfilePurposeStr, json_object_get_string(json_object_object_get(json_object_object_get(tmpChargingProfile, "csChargingProfiles"), "chargingProfilePurpose"))); } } } json_object_put(tmpChargingProfile); if((tempconnectorIdInt == connectorIdInt) && (tempchargingProfileIdInt == chargingProfileIdInt)) { if((tempstackLevelInt == stackLevelInt) && (strcmp(tempchargingProfilePurposeStr, chargingProfilePurposeStr) == 0)) { //DEBUG_INFO("update set chargingProfile to file -0\n"); if(ChargingProfileAdded == FALSE) { fprintf(outfile,"%s\n",payload); ChargingProfileAdded = TRUE; } } else { if(tempstackLevelInt < stackLevelInt) { if(ChargingProfileAdded == FALSE) { fprintf(outfile,"%s\n",buf); fprintf(outfile,"%s\n",payload); ChargingProfileAdded = TRUE; } else { fprintf(outfile,"%s\n",buf); } } else { if(ChargingProfileAdded == FALSE) { fprintf(outfile,"%s\n",buf); fprintf(outfile,"%s\n",payload); ChargingProfileAdded = TRUE; } else { fprintf(outfile,"%s\n",buf); } } } } else { if(tempchargingProfileIdInt < chargingProfileIdInt) { if(ChargingProfileAdded == FALSE) { fprintf(outfile,"%s\n",buf); fprintf(outfile,"%s\n",payload); ChargingProfileAdded = TRUE; } else { fprintf(outfile,"%s\n",buf); } } else if(tempstackLevelInt < stackLevelInt) { if(ChargingProfileAdded == FALSE) { fprintf(outfile,"%s\n",buf); fprintf(outfile,"%s\n",payload); ChargingProfileAdded = TRUE; } else { fprintf(outfile,"%s\n",buf); } } else { if(ChargingProfileAdded == FALSE) { fprintf(outfile,"%s\n",buf); fprintf(outfile,"%s\n",payload); ChargingProfileAdded = TRUE; } else { fprintf(outfile,"%s\n",buf); } } } } // end of while loop fclose(infile); fclose(outfile); sprintf(rmFileCmd,"rm -f %s",filename); system(rmFileCmd); rename(tempfile, filename); } sleep(1); result = TRUE; sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Accepted] ); end: if(strcmp(comfirmstr, ChargingProfileStatusStr[ChargingProfileStatus_Accepted]) == 0) { if(connectorIdInt == 0) { for(uint8_t idx=0;idxSmartChargingProfile[idx]); } } else checkCompositeSchedule(connectorIdInt, 86400, &ShmOCPP16Data->SmartChargingProfile[connectorIdInt-1]); } sendSetChargingProfileConfirmation(uuid, comfirmstr); return result; } int handleTriggerMessageRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; int connectorIdIsNULL = FALSE; int connectorIdInt =0; char sstr[40]={0},sstrtemp[100]={ 0 }; char requestedMessagestr[40]={0}; char comfirmstr[20]={0}; int c = 0; char *loc; DEBUG_INFO("handleTriggerMessageRequest\n"); //[2,"266e23f4-27a4-41cf-84cb-aadf56b9523f","TriggerMessage",{"requestedMessage":"DiagnosticsStatusNotification","connectorId":1}] strcpy(sstrtemp, stringtrimspace(payload)); c = 0; loc = strstr(sstrtemp, "requestedMessage"); while (loc[3+strlen("requestedMessage")+c] != '\"') { sstr[c] = loc[3+strlen("requestedMessage")+c]; c++; } sstr[c] = '\0'; strcpy(requestedMessagestr, sstr); c = 0; loc = strstr(sstrtemp, "connectorId"); if(loc == NULL) { connectorIdIsNULL = TRUE; } else { memset(sstr ,0, ARRAY_SIZE(sstr) ); while ((loc[strlen("connectorId")+2+c] != ',')&&(loc[strlen("connectorId")+2+c] != '}')) { sstr[c] = loc[strlen("connectorId")+2+c]; //printf("i=%d sstr=%c\n",c, sstr[c]); c++; } sstr[c] = '\0'; connectorIdInt = atoi(sstr); } if((connectorIdIsNULL == TRUE) || ((connectorIdIsNULL == FALSE) && ((connectorIdInt > 0) && (connectorIdInt <= gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/ ))) ) { sprintf((char *)ShmOCPP16Data->TriggerMessage[connectorIdInt -1].RequestedMessage, "%s" ,requestedMessagestr); ShmOCPP16Data->TriggerMessage[connectorIdInt -1].ConnectorId = connectorIdInt; if((strcmp(requestedMessagestr, MessageTriggerStr[FirmwareStatusNotification]) != 0) && (strcmp(requestedMessagestr, MessageTriggerStr[DiagnosticsStatusNotification]) != 0) && (strcmp(requestedMessagestr, MessageTriggerStr[BootNotification]) != 0 ) && (strcmp(requestedMessagestr, MessageTriggerStr[Heartbeat]) != 0) && (strcmp(requestedMessagestr, MessageTriggerStr[MeterValues]) != 0) && (strcmp(requestedMessagestr, MessageTriggerStr[StatusNotification]) != 0 )) { sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_NotImplemented] ); sendTriggerMessageConfirmation(uuid,comfirmstr); return TRUE; } else { sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] ); sendTriggerMessageConfirmation(uuid,comfirmstr); } } else if(connectorIdIsNULL == FALSE && ((connectorIdInt <= 0) || (connectorIdInt > gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)*/) )) { sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Rejected] ); sendTriggerMessageConfirmation(uuid,comfirmstr); return TRUE; } //========================== // Trigger message //========================== if( strcmp(requestedMessagestr, MessageTriggerStr[FirmwareStatusNotification]) == 0) { if((FirmwareStatusNotificationStatus != FIRMWARE_STATUS_DOWNLOADING) && (FirmwareStatusNotificationStatus != FIRMWARE_STATUS_DOWNLOADED) && (FirmwareStatusNotificationStatus != FIRMWARE_STATUS_IDLE) && (FirmwareStatusNotificationStatus != FIRMWARE_STATUS_INSTALLING) ) { FirmwareStatusNotificationStatus = FIRMWARE_STATUS_IDLE; } sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatusNotificationStatus]); } else if(strcmp(requestedMessagestr, MessageTriggerStr[DiagnosticsStatusNotification]) == 0 ) { sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatusNotificationStatus]); } else if(strcmp(requestedMessagestr, MessageTriggerStr[BootNotification]) == 0 ) { //sendBootNotificationRequest(); server_sign = FALSE; } else if(strcmp(requestedMessagestr, MessageTriggerStr[Heartbeat]) == 0 ) { clientTime.Heartbeat = time((time_t*)NULL) - (ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval); } else if (strcmp(requestedMessagestr, MessageTriggerStr[MeterValues]) == 0 ) { if(connectorIdIsNULL == FALSE) { if((connectorIdInt > 0) && ((connectorIdInt -1) < gunTotalNumber)) { //sendMeterValuesRequest((connectorIdInt -1), ReadingContext_Trigger); cpinitateMsg.bits[connectorIdInt -1].TriggerMeterValue = 1; } } else { for(int idx=0;idx< gunTotalNumber;idx++) { //sendMeterValuesRequest(idx, ReadingContext_Trigger); cpinitateMsg.bits[idx].TriggerMeterValue = 1; } } } else if(strcmp(requestedMessagestr, MessageTriggerStr[StatusNotification]) == 0 ) { if(connectorIdIsNULL == FALSE) { if((connectorIdInt > 0) && ((connectorIdInt -1) < gunTotalNumber)) { cpinitateMsg.bits[connectorIdInt -1].StatusNotificationReq = 1; } } else { for(int idx=0;idx< gunTotalNumber;idx++) cpinitateMsg.bits[idx].StatusNotificationReq = 1; } } return result; } int handleUnlockConnectorRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; int connectorIdInt =0; char comfirmstr[20]={0}; int tempIndex = 0; json_object *UnlockConnector; //[2,"ba1cbd49-2a76-493a-8f76-fa23e7606532","UnlockConnector",{"connectorId":1}] DEBUG_INFO("handleUnlockConnectorRequest ...\n"); UnlockConnector = json_tokener_parse(payload); if(!is_error(UnlockConnector)) { if(json_object_object_get(UnlockConnector, "connectorId") != NULL) { connectorIdInt = json_object_get_int(json_object_object_get(UnlockConnector, "connectorId")); } } json_object_put(UnlockConnector); DEBUG_INFO("Unlock connectorIdInt = %d\n",connectorIdInt); if(gunTotalNumber == 0) { sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockStatus_NotSupported] ); goto end; } else if((connectorIdInt > gunTotalNumber/*CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY*/) || (connectorIdInt <= 0)) { //sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockStatus_NotSupported] ); sprintf(comfirmstr, "%s", UnlockStatusStr[UnlockStatus_NotSupported] ); goto end; } else { //check Transaction active if(gunType[connectorIdInt-1] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = (((connectorIdInt -1)==2) ? 1: 0); } else { tempIndex = connectorIdInt -1; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex ) && ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE) )) { //stop Transaction ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1; } } } else if((gunType[connectorIdInt-1] == 'U')||(gunType[connectorIdInt-1] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = (((connectorIdInt -1)==2) ? 1: 0); } else { tempIndex = connectorIdInt -1; } for (int index = 0; index < CCS_QUANTITY; index++) { if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex ) && ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE) )) { //stop Transaction ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1; } } } else if(gunType[connectorIdInt-1] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = (((connectorIdInt -1)==2) ? 1: 0); } else { tempIndex = connectorIdInt -1; } for (int index = 0; index < GB_QUANTITY; index++) { if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex ) &&((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING)||(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_IDLE))) { //stop Transaction ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1; } } } else if(gunType[connectorIdInt-1] == 'O') { tempIndex = connectorIdInt -1; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if ((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex ) &&((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_CHARGING)||(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_IDLE))) { //stop Transaction ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1; } } } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = connectorIdInt-1; } for (int index = 0; index < AC_QUANTITY; index++) { if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex ) && ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE) )) { ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1; } } } ShmOCPP16Data->UnlockConnector[connectorIdInt-1].ConnectorId = connectorIdInt; strcpy((char *)ShmOCPP16Data->UnlockConnector[connectorIdInt-1].guid, uuid); result = TRUE; return result; } end: //json_object_put(obj); --- remove temporally sendUnlockConnectorConfirmation(uuid, comfirmstr); return result; } static char UpdateFirmwarepayloadData[300]={0}; int handleUpdateFirmwareRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; pthread_t t; sendUpdateFirmwareConfirmation(uuid); memset(UpdateFirmwarepayloadData, 0, 300); strcpy(UpdateFirmwarepayloadData, stringtrimspace(payload)); pthread_create(&t, NULL, UpdateFirmwareProcess, stringtrimspace(payload)); ////pthread_join(t, NULL); // //pthread_detach(t); //sendUpdateFirmwareConfirmation(uuid); ShmOCPP16Data->MsMsg.bits.UpdateFirmwareConf =1; return result; } void *UpdateFirmwareProcess(void *data) { pthread_detach(pthread_self()); mtrace(); int retriesInt =0, retryIntervalInt=0; char protocol[10], user[50],password[50],host[50], path[50], ftppath[60],host1[50],path1[20]; int port=0; char locationstr[160]={0}, retrieveDatestr[30]={0}; int isSuccess = 0; char ftpbuf[200]; char temp[100]; char * pch; DEBUG_INFO("handleUpdateFirmwareRequest ...\n"); json_object *UpdateFirmware; UpdateFirmware = json_tokener_parse(UpdateFirmwarepayloadData); if(!is_error(UpdateFirmware)) { // Required data if(json_object_object_get(UpdateFirmware, "location") != NULL) sprintf((char*)locationstr, "%s", json_object_get_string(json_object_object_get(UpdateFirmware, "location"))); if(json_object_object_get(UpdateFirmware, "retrieveDate") != NULL) sprintf((char*)retrieveDatestr, "%s", json_object_get_string(json_object_object_get(UpdateFirmware, "retrieveDate"))); // Optional data if(json_object_object_get(UpdateFirmware, "retries")) { retriesInt = json_object_get_int(json_object_object_get(UpdateFirmware, "retries")); } if(json_object_object_get(UpdateFirmware, "retryInterval")) { retryIntervalInt = json_object_get_int(json_object_object_get(UpdateFirmware, "retryInterval")); } } json_object_put(UpdateFirmware); memset(ftppath, 0, ARRAY_SIZE(ftppath)); memset(path, 0, ARRAY_SIZE(path)); system("rm -f /mnt/*"); if(strncmp(locationstr,"http", 4) == 0) { sscanf(locationstr,"%[^:]:%*2[/]%[^/]/%199[^\n]", protocol, host, path); //sscanf(locationstr,"%[^:]:%*2[/]%[^:]:%[^@]@%[^/]%199[^\n]", // protocol, user, password, host, path); sprintf(ftppath,"/%s", path); DEBUG_INFO("locationstr: %s\n", locationstr); DEBUG_INFO("protocol: %s\n",protocol); DEBUG_INFO("host: %s\n",host); DEBUG_INFO("path: %s\n",path); DEBUG_INFO("ftppath: %s\n",ftppath); int ftppathlen=strlen(ftppath); int i=1; char filenametemp[50]; while(i < ftppathlen) { int len=ftppathlen-i; if(ftppath[len]== 47) // '/' ascll code: 47 { DEBUG_INFO("compare '/' all right\n"); break; } i=i+1; } memset(filenametemp, 0, ARRAY_SIZE(filenametemp)); strncpy(filenametemp, ftppath+(ftppathlen-i+1), i+1); filenametemp[i+1] = 0; do { sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloading]); sleep(3); isSuccess = httpDownLoadFile(host, ftppath, filenametemp, locationstr); if(!isSuccess) { sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_DownloadFailed]); sleep(retryIntervalInt); } else { sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloaded]); } }while((isSuccess == 0)&&(retriesInt > 0 && retriesInt --)); } else if(strncmp(locationstr,"ftp", 3) == 0) // ftp { memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf)); memset(temp, 0, ARRAY_SIZE(temp)); //DEBUG_INFO("locationstr=%s\n",locationstr); strcpy(ftpbuf, locationstr/*"ftp://ipc_ui:pht2016@ftp.phihong.com.tw/DC/log/DemoDC1_2018-07-13_185011_PSULog.zip"*/ ); int ftppathlen=strlen(ftpbuf); int i=1; char filenametemp[50]; while(i < ftppathlen) { int len=ftppathlen-i; if(ftpbuf[len]== 47) // '/' ascll code: 47 { DEBUG_INFO(" compare '/' all right\n"); break; } i=i+1; } memset(filenametemp, 0, ARRAY_SIZE(filenametemp)); strncpy(filenametemp, ftpbuf+(ftppathlen-i+1), i+1); filenametemp[i+1] = 0; strncpy(temp, ftpbuf, ftppathlen-i+1); pch=strchr(temp,'@'); if(pch==NULL) { sscanf(temp,"%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]", protocol, host, &port, path); strcpy(user,"anonymous"); strcpy(password,""); } else { sscanf(temp,"%[^:]:%*2[/]%[^:]:%[^@]@%[^:]:%i/%199[^\n]", protocol, user, password, host, &port, path); } sscanf(host,"%[^/]%s",host1, path1); sprintf(ftppath,"%s", path1); //DEBUG_INFO("protocol =%s\n",protocol); //DEBUG_INFO("user =%s\n",user); //DEBUG_INFO("password =%s\n",password); //DEBUG_INFO("host1 =%s\n",host1); //DEBUG_INFO("port =%d\n",port); //DEBUG_INFO("path1 =%s\n",path1); //DEBUG_INFO("ftppath=%s\n",ftppath); //ftpFile(host, user, password, port, ftppath, fname); //download firmware pthred if(port == 0) { port = 21; } do { sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloading]); sleep(3); isSuccess = ftpDownLoadFile(host1, user, password, port, ftppath, filenametemp, locationstr); if(!isSuccess) { //BulldogUtil.sleepMs(interval*1000); DEBUG_INFO("Update firmware request and download file fail.\n"); sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_DownloadFailed]); sleep(retryIntervalInt); } else { sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloaded]); } }while((!isSuccess)&&(retriesInt > 0 && retriesInt --)); } else { sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_DownloadFailed]); } ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1; pthread_exit(NULL); } //========================================== // Handle server response routine //========================================== void handleAuthorizeResponse(char *payload, int gun_index) { mtrace(); char expiryDatestr[30]={0}; char parentIdTagstr[20]={0}; char statusstr[20]={0}; int expiryDateISNULL=FALSE; int parentIdTagISNULL=FALSE; DEBUG_INFO("handleAuthorizeResponse...\n"); json_object *Authorize; Authorize = json_tokener_parse(payload); if(!is_error(Authorize)) { if(json_object_object_get(Authorize, "idTagInfo") != NULL) { // Required data sprintf((char *)statusstr, "%s", json_object_get_string(json_object_object_get(json_object_object_get(Authorize,"idTagInfo"), "status"))); // Optional data if(json_object_object_get(json_object_object_get(Authorize,"idTagInfo"), "expiryDate") != NULL) sprintf((char *)expiryDatestr, "%s", json_object_get_string(json_object_object_get(json_object_object_get(Authorize,"idTagInfo"), "expiryDate"))); if(json_object_object_get(json_object_object_get(Authorize,"idTagInfo"), "parentIdTag") != NULL) sprintf((char *)parentIdTagstr, "%s", json_object_get_string(json_object_object_get(json_object_object_get(Authorize,"idTagInfo"), "parentIdTag"))); } } json_object_put(Authorize); if(expiryDateISNULL == FALSE) strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate, expiryDatestr); if(parentIdTagISNULL == FALSE) strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, parentIdTagstr); strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.Status, statusstr); //Update idTag information to authorization cache if supproted if((strcmp((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "TRUE") == 0) && (ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag != NULL) && (ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate != NULL) ) { OCPP_addLocalCache((char*)ShmOCPP16Data->Authorize.IdTag, parentIdTagstr, expiryDatestr, statusstr); } ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 0; ShmOCPP16Data->SpMsg.bits.AuthorizeConf = 1; // inform csu authorizeRetryTimes = 0; } void handleBootNotificationResponse(char *payload, int gun_index) { mtrace(); char statusStr[12]={0}; char currentTimeStr[30]={0}; int intervalInt = 0; struct tm tp; char buf[28]={0}; char timebuf[50]={0}; DEBUG_INFO("handleBootNotificationResponse...\n"); json_object *BootNotification; BootNotification = json_tokener_parse(payload); if(!is_error(BootNotification)) { // Required data sprintf((char *)currentTimeStr, "%s", json_object_get_string(json_object_object_get(BootNotification,"currentTime"))); intervalInt = json_object_get_int(json_object_object_get(BootNotification,"interval")); sprintf((char *)statusStr, "%s", json_object_get_string(json_object_object_get(BootNotification,"status"))); } json_object_put(BootNotification); ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval = intervalInt; BootNotificationInterval = intervalInt; HeartBeatWaitTime = intervalInt; //write back to ShmOCPP16Data->BootNotification strcpy((char *)ShmOCPP16Data->BootNotification.ResponseCurrentTime, currentTimeStr); ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval = intervalInt; strcpy((char *)ShmOCPP16Data->BootNotification.ResponseStatus, statusStr); if((strcmp(statusStr, RegistrationStatusStr[RegistrationStatus_Accepted]) == 0 )) { server_sign = TRUE; server_pending =FALSE; } else if(strcmp(statusStr, RegistrationStatusStr[RegistrationStatus_Pending]) == 0) { server_pending = TRUE; } strptime((const char *)ShmOCPP16Data->BootNotification.ResponseCurrentTime, "%Y-%m-%dT%H:%M:%S", &tp); tp.tm_isdst = -1; //time_t utc = mktime(&tp); strftime(buf, 28, "%Y-%m-%d %H:%M:%S", &tp); memset(timebuf, 0, ARRAY_SIZE(timebuf)); sprintf(timebuf,"date -s '%s'",buf); system(timebuf); srand(time(NULL)); clientTime.Heartbeat = time((time_t*)NULL) - (ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval-((rand()%8)+3)); //============================================== // RTC sync //============================================== system("/sbin/hwclock -w --systohc"); ShmOCPP16Data->OcppConnStatus = 1; ////0: disconnected, 1: connected ShmOCPP16Data->SpMsg.bits.BootNotificationConf = 1; } void handleDataTransferResponse(char *payload, int gun_index) { char sstr[160]={0};//sstr[200]={ 0 }; int c = 0; char *loc; DEBUG_INFO("handleDataTransferResponse ...\n"); loc = strstr(payload, "status"); printf("loc=%s\n",loc); c = 0; while (loc[3+strlen("status")+c] != '\"') { sstr[c] = loc[3+strlen("status")+c]; //printf("i=%d sstr=%c\n",c, sstr[c]); c++; } sstr[c] = '\0'; DEBUG_INFO(" DataTransferResponse=%s\n", sstr); } void handleDiagnosticsStatusNotificationResponse(char *payload, int gun_index) { DEBUG_INFO("handleDiagnosticsStatusNotificationResponse ...\n"); //struct json_object *obj; // obj = json_tokener_parse(payload); ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 0; ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationConf = 1; //No fields are defined. } void handleFirmwareStatusNotificationResponse(char *payload, int gun_index) { DEBUG_INFO("handleFirmwareStatusNotificationResponse ...\n"); //struct json_object *obj; // obj = json_tokener_parse(payload); ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 0; ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationConf = 1; //No fields are defined. } void handleHeartbeatResponse(char *payload, int gun_index) { mtrace(); struct tm tp; char buf[28]={0}; char timebuf[50]={0}; DEBUG_INFO("handleHeartbeatResponse...\n"); json_object *Heartbeat; Heartbeat = json_tokener_parse(payload); if(!is_error(Heartbeat)) { // Required data sprintf((char *)ShmOCPP16Data->Heartbeat.ResponseCurrentTime, "%s", json_object_get_string(json_object_object_get(Heartbeat,"currentTime"))); } json_object_put(Heartbeat); if(FirstHeartBeat == 0) { FirstHeartBeat = 1; DEBUG_INFO("FirstHeartBeat \n"); } HeartBeatWithNOResponse = 0; clientTime.Heartbeat=time((time_t*)NULL); strptime((const char *)ShmOCPP16Data->Heartbeat.ResponseCurrentTime, "%Y-%m-%dT%H:%M:%S", &tp); tp.tm_isdst = -1; //time_t utc = mktime(&tp); strftime(buf, 28, "%Y-%m-%d %H:%M:%S", &tp); memset(timebuf, 0, ARRAY_SIZE(timebuf)); sprintf(timebuf,"date -s '%s'",buf); system(timebuf); //============================================== // RTC sync //============================================== system("/sbin/hwclock -w --systohc"); } void handleMeterValuesResponse(char *payload, int gun_index) { mtrace(); DEBUG_INFO("handleMeterValuesResponse...\n"); } void handleStartTransactionResponse(char *payload, int gun_index) { mtrace(); //int transactionIdInt = 0; FILE *outfile; char data[100]={0}; DEBUG_INFO("handleStartTransactionResponse...\n"); json_object *StartTransaction; StartTransaction = json_tokener_parse(payload); if(!is_error(StartTransaction)) { // Required data sprintf((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.Status, "%s", json_object_get_string(json_object_object_get(json_object_object_get(StartTransaction,"idTagInfo"), "status"))); ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId = json_object_get_int(json_object_object_get(StartTransaction,"transactionId")); // Optional data if(json_object_object_get(json_object_object_get(StartTransaction,"idTagInfo"), "expiryDate") != NULL) sprintf((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ExpiryDate, "%s", json_object_get_string(json_object_object_get(json_object_object_get(StartTransaction,"idTagInfo"), "expiryDate"))); if(json_object_object_get(json_object_object_get(StartTransaction,"idTagInfo"), "parentIdTag") != NULL) sprintf((char *)ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ParentIdTag, "%s", json_object_get_string(json_object_object_get(json_object_object_get(StartTransaction,"idTagInfo"), "parentIdTag"))); } json_object_put(StartTransaction); ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionConf = 1; ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq = 0; //-----------Start : write to the Queue TransactionId file -----------------// if((access("/Storage/OCPP/QueueTransactionId",F_OK))!=-1) {} else { FILE *log = fopen("/Storage/OCPP/QueueTransactionId", "w+"); if(log == NULL) { DEBUG_INFO("Can't Create File QueueTransactionId \n"); return ; } else { fclose(log); } } // open file for writing //-------------Start: write to the Queue TransactionId file------------------------------------------// if((ShmOCPP16Data->StartTransaction[gun_index].ConnectorId !=0)&&(strcmp((const char *)ShmOCPP16Data->StartTransaction[gun_index].IdTag,"")!=0)&&(ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId !=0)) { outfile = fopen ("/Storage/OCPP/QueueTransactionId", "a"); sprintf(data,"%d,%s,%d\n", ShmOCPP16Data->StartTransaction[gun_index].ConnectorId , ShmOCPP16Data->StartTransaction[gun_index].IdTag, ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId); // GunIndex, idtag, TransactionId fputs(data, outfile); fclose (outfile); } DEBUG_INFO("idTagInfo-expiryDate: %s\n", ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ExpiryDate); DEBUG_INFO("idTagInfo-parentIdTag: %s\n", ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.ParentIdTag); DEBUG_INFO("idTagInfo-status: %s\n", ShmOCPP16Data->StartTransaction[gun_index].ResponseIdTagInfo.Status); DEBUG_INFO("transactionId: %d\n", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId); } void handleStatusNotificationResponse(char *payload, int gun_index) { mtrace(); DEBUG_INFO("handleStatusNotificationResponse...\n"); cpinitateMsg.bits[gun_index].StatusNotificationReq = 0; cpinitateMsg.bits[gun_index].StatusNotificationConf = 1; } void handleStopTransactionnResponse(char *payload, int gun_index) { mtrace(); DEBUG_INFO("handleStopTransactionnResponse...\n"); json_object *StopTransaction; StopTransaction = json_tokener_parse(payload); if(!is_error(StopTransaction)) { // Optional data if(json_object_object_get(StopTransaction, "idTagInfo") != NULL) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.Status, "%s", json_object_get_string(json_object_object_get(json_object_object_get(StopTransaction,"idTagInfo"), "status"))); if(json_object_object_get(json_object_object_get(StopTransaction,"idTagInfo"), "expiryDate") != NULL) sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ExpiryDate, "%s", json_object_get_string(json_object_object_get(json_object_object_get(StopTransaction,"idTagInfo"), "expiryDate"))); if(json_object_object_get(json_object_object_get(StopTransaction,"idTagInfo"), "parentIdTag") != NULL) sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ParentIdTag, "%s", json_object_get_string(json_object_object_get(json_object_object_get(StopTransaction,"idTagInfo"), "parentIdTag"))); } } json_object_put(StopTransaction); ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionConf = 1; ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq = 0; DEBUG_INFO("idTagInfo-expiryDate: %s\n", ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ExpiryDate); DEBUG_INFO("idTagInfo-parentIdTag: %s\n", ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.ParentIdTag); DEBUG_INFO("idTagInfo-status: %s\n", ShmOCPP16Data->StopTransaction[gun_index].ResponseIdTagInfo.Status); } //========================================== // Handle Error routine //========================================== void handleError(char *id, char *errorCode, char *errorDescription,char *payload) { mtrace(); #ifdef SystemLogMessage DEBUG_INFO("errorCode: %s\n", errorCode); DEBUG_INFO("errorDescription: %s\n", errorDescription); DEBUG_INFO("errorDetails: %s\n", payload); #endif } //=============================================== // Common routine //=============================================== int initialConfigurationTable(void) { //clock_t start_t, end_t, total_t; FILE *fp; FILE *outfile; char str[200]={0}; char sstr[100]={0}; int c = 0; char *loc; DEBUG_INFO("initialConfigurationTable...\n"); //start_t = clock(); //printf("Starting of the program, start_t = %ld\n", start_t); memset(&(ShmOCPP16Data->ConfigurationTable), 0, sizeof(struct OCPP16ConfigurationTable) ); if((access("/Storage/OCPP/OCPPConfiguration",F_OK))==-1) { outfile = fopen("/Storage/OCPP/OCPPConfiguration" , "w+"); if(outfile == NULL) { DEBUG_INFO("Error opening file\n"); return FALSE; } /*Core Profile*/ //AllowOfflineTxForUnknownId ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemName, "AllowOfflineTxForUnknownId"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData, "FALSE" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AllowOfflineTxForUnknownId", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData); //AuthorizationCacheEnabled ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemName, "AuthorizationCacheEnabled"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "FALSE" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AuthorizationCacheEnabled", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData); //AuthorizeRemoteTxRequests ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemName, "AuthorizeRemoteTxRequests"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "FALSE" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AuthorizeRemoteTxRequests", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData); //BlinkRepeat ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemName, "BlinkRepeat"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData, "0" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","BlinkRepeat", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData); //ClockAlignedDataInterval ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemName, "ClockAlignedDataInterval"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData, "0" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ClockAlignedDataInterval", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData); //ConnectionTimeOut ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemName, "ConnectionTimeOut"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData, "180" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConnectionTimeOut", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData); //GetConfigurationMaxKeys ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility =0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemName, "GetConfigurationMaxKeys"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData, "44" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","GetConfigurationMaxKeys", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData); // HeartbeatInterval ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemName, "HeartbeatInterval"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "20" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","HeartbeatInterval", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData); // LightIntensity ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemName, "LightIntensity"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData, "0" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LightIntensity", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData); // LocalAuthorizeOffline ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemName, "LocalAuthorizeOffline"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "TRUE" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LocalAuthorizeOffline", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData); // LocalPreAuthorize ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemName, "LocalPreAuthorize"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "FALSE" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LocalPreAuthorize", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData); // MaxEnergyOnInvalidId ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemName, "MaxEnergyOnInvalidId"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData, "0" ); ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy = 0; fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MaxEnergyOnInvalidId", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData); // MeterValuesAlignedData ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemName, "MeterValuesAlignedData"); if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "Current.Import,Energy.Active.Import.Register,Energy.Active.Import.Interval,Power.Active.Import,Voltage,SOC" ); else strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "Current.Import,Energy.Active.Import.Register,Energy.Active.Import.Interval,Power.Active.Import,Voltage" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesAlignedData", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData); // MeterValuesAlignedDataMaxLength ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemName, "MeterValuesAlignedDataMaxLength"); if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData, "6" ); else strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData, "5" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesAlignedDataMaxLength", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData); // MeterValuesSampledData ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemName, "MeterValuesSampledData"); if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "Current.Import,Energy.Active.Import.Register,Energy.Active.Import.Interval,Power.Active.Import,Voltage,SOC" ); else strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "Current.Import,Energy.Active.Import.Register,Energy.Active.Import.Interval,Power.Active.Import,Voltage" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesSampledData", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData); // MeterValuesSampledDataMaxLength ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemName, "MeterValuesSampledDataMaxLength"); if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData, "6" ); else strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData, "5" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesSampledDataMaxLength", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData); // MeterValueSampleInterval ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemName, "MeterValueSampleInterval"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData, "30" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValueSampleInterval", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData); // MinimumStatusDuration ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemName, "MinimumStatusDuration"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "120" ); server_cycle_Status = atoi((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData); //StatusNotification cycle fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MinimumStatusDuration", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData); // NumberOfConnectors ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemName, "NumberOfConnectors"); if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "%d", (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)); } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "%d", AC_QUANTITY); } fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","NumberOfConnectors", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData); // ResetRetries ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemName, "ResetRetries"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData, "3" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ResetRetries", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData); // ConnectorPhaseRotation ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemName, "ConnectorPhaseRotation"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "NotApplicable" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConnectorPhaseRotation", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData); // ConnectorPhaseRotationMaxLength ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemName, "ConnectorPhaseRotationMaxLength"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData, "1" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConnectorPhaseRotationMaxLength", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData); // StopTransactionOnEVSideDisconnect ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemName, "StopTransactionOnEVSideDisconnect"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData, "TRUE" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTransactionOnEVSideDisconnect", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData); // StopTransactionOnInvalidId ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility = 0; //1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemName, "StopTransactionOnInvalidId"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData, "FALSE" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTransactionOnInvalidId", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData); // StopTxnAlignedData ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemName, "StopTxnAlignedData"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData, "Energy.Active.Import.Register" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTxnAlignedData", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData); // StopTxnAlignedDataMaxLength ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemName, "StopTxnAlignedDataMaxLength"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData, "0" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTxnAlignedDataMaxLength", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData); // StopTxnSampledData ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemName, "StopTxnSampledData"); if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Current.Import,Energy.Active.Import.Interval,Power.Active.Import,Voltage,SOC" ); else strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Current.Import,Energy.Active.Import.Interval,Power.Active.Import,Voltage" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTxnSampledData", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData); // StopTxnSampledDataMaxLength ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemName, "StopTxnSampledDataMaxLength"); if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData, "%d", 6); } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData, "%d", 5); } fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTxnSampledDataMaxLength", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData); // SupportedFeatureProfiles ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemName, "SupportedFeatureProfiles"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData, "Core,FirmwareManagement,LocalAuthListManagement,Reservation,SmartCharging,RemoteTrigger" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SupportedFeatureProfiles", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData); // SupportedFeatureProfilesMaxLength ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemName, "SupportedFeatureProfilesMaxLength"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData, "6" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SupportedFeatureProfilesMaxLength", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData); // TransactionMessageAttempts ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemName, "TransactionMessageAttempts"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData, "3" ); TransactionMessageAttemptsValue = atoi((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","TransactionMessageAttempts", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData); // TransactionMessageRetryInterval ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemName, "TransactionMessageRetryInterval"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData, "60" ); TransactionMessageRetryIntervalValue = atoi((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","TransactionMessageRetryInterval", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData); // UnlockConnectorOnEVSideDisconnect ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemName, "UnlockConnectorOnEVSideDisconnect"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData, "TRUE" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","UnlockConnectorOnEVSideDisconnect", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData); // WebSocketPingInterval ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemName, "WebSocketPingInterval"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "30" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","WebSocketPingInterval", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData); // QueueOffLineStartTransactionMessage ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineStartTransactionMessage].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineStartTransactionMessage].ItemName, "QueueOffLineStartTransactionMessage"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineStartTransactionMessage].ItemData, "TRUE" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","QueueOffLineStartTransactionMessage", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineStartTransactionMessage].ItemData); // AuthorizationKey ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemName, "AuthorizationKey"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData, "" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AuthorizationKey", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData); // SecurityProfile ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemName, "SecurityProfile"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemData, "0" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SecurityProfile", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemData); // DefaultPrice ShmOCPP16Data->ConfigurationTable.CoreProfile[DefaultPrice].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[DefaultPrice].ItemName, "DefaultPrice"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[DefaultPrice].ItemData, "" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","DefaultPrice", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[DefaultPrice].ItemData); // CustomDisplayCostAndPrice ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemName, "CustomDisplayCostAndPrice"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemData, "FALSE" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","CustomDisplayCostAndPrice", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemData); // CustomIdleFeeAfterStop ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemName, "CustomIdleFeeAfterStop"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemData, "FALSE" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","CustomIdleFeeAfterStop", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemData); //* Local Auth List Management Profile*/ #if 0 //For OCTT Test Case ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemName, "LocalAuthorizationListEnabled"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE" ); #endif #if 1 //LocalAuthListEnabled ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemName, "LocalAuthListEnabled"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LocalAuthListEnabled", "false", ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData); #endif //LocalAuthListMaxLength ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemName, "LocalAuthListMaxLength"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData, "500" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LocalAuthListMaxLength", "true", ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData); //SendLocalListMaxLength ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemName, "SendLocalListMaxLength"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData, "50" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SendLocalListMaxLength", "true", ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData); //ReserveConnectorZeroSupported ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemName, "ReserveConnectorZeroSupported"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData, "FALSE" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ReserveConnectorZeroSupported", "true", ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData); //* Smart Charging Profile */ //ChargeProfileMaxStackLevel ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemName, "ChargeProfileMaxStackLevel"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData, "3" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ChargeProfileMaxStackLevel", "true", ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData); // ChargingScheduleAllowedChargingRateUnit ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemName, "ChargingScheduleAllowedChargingRateUnit"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData, "Current" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ChargingScheduleAllowedChargingRateUnit", "true", ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData); // ChargingScheduleMaxPeriods ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemName, "ChargingScheduleMaxPeriods"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData, "10" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ChargingScheduleMaxPeriods", "true", ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData); // ConnectorSwitch3to1PhaseSupported ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemName, "ConnectorSwitch3to1PhaseSupported"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData, "TRUE" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConnectorSwitch3to1PhaseSupported", "true", ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData); // MaxChargingProfilesInstalled ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemName, "MaxChargingProfilesInstalled"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData, "10" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MaxChargingProfilesInstalled", "true", ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData); fclose(outfile); } else { //DEBUG_INFO("../Storage/OCPP/OCPPConfiguration EXit\n"); char keystr[60]={0}; char readonlystr[10]={0}; char valuestr[100]={0}; fp = fopen("/Storage/OCPP/OCPPConfiguration" , "r"); if(fp == NULL) { DEBUG_INFO("Error opening file"); return FALSE; } while( fgets (str, ARRAY_SIZE(str), fp)!=NULL ) { //DEBUG_INFO("Get Configuration \n"); str[strlen(str) - 1] = '\0'; // eat the newline fgets() stores //*************************key*********************************/ loc = strstr(str, "key"); c = 0; memset(sstr ,0, ARRAY_SIZE(sstr) ); while (loc[strlen("key")+3+c] != '\"') { sstr[c] = loc[strlen("key")+3+c]; c++; } sstr[c] = '\0'; strcpy(keystr,sstr); //*************************readonly*********************************/ loc = strstr(str, "readonly"); c = 0; memset(sstr ,0, ARRAY_SIZE(sstr) ); while (loc[strlen("readonly")+2+c] != ',') { sstr[c] = loc[strlen("readonly")+2+c]; c++; } sstr[c] = '\0'; strcpy(readonlystr,sstr); //*************************value*********************************/ loc = strstr(str, "value"); c = 0; memset(sstr ,0, ARRAY_SIZE(sstr) ); while (loc[strlen("value")+3+c] != '\"') { sstr[c] = loc[strlen("value")+3+c]; c++; } sstr[c] = '\0'; strcpy(valuestr,sstr); // DEBUG_INFO("keystr=%s\n",keystr); // DEBUG_INFO("readonlystr=%s\n",readonlystr); // DEBUG_INFO("valuestr=%s\n",valuestr); if(strcmp(keystr, "AllowOfflineTxForUnknownId") == 0) { //Charger.AllowOfflineTxForUnknownId = (value.toLowerCase().equals("true")?true:false); ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData, "%s", valuestr ); // DEBUG_INFO("AllowOfflineTxForUnknownId setting\n"); // DEBUG_INFO("AllowOfflineTxForUnknownId setting\n"); } if(strcmp(keystr, "AuthorizationCacheEnabled") == 0) { //Charger.AuthorizationCacheEnabled = (value.toLowerCase().equals("true")?true:false); ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "%s", valuestr ); } if(strcmp(keystr, "AuthorizeRemoteTxRequests") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "%s", valuestr ); } if(strcmp(keystr, "BlinkRepeat") == 0) { //Charger.BlinkRepeat = Integer.parseInt(value); ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData, "%d", atoi(valuestr) ); } if(strcmp(keystr, "ClockAlignedDataInterval") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData, "%d", atoi(valuestr) ); } if(strcmp(keystr, "ConnectionTimeOut") == 0 ) { ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData, "%d", atoi(valuestr)); } if(strcmp(keystr, "GetConfigurationMaxKeys") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData, "%d", (atoi(valuestr)!=GetConfigurationMaxKeysNUM?GetConfigurationMaxKeysNUM:atoi(valuestr))); } if(strcmp(keystr, "HeartbeatInterval") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "%d", atoi(valuestr)); HeartBeatWaitTime = atoi(valuestr); } if(strcmp(keystr, "LightIntensity") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData, "%d", atoi(valuestr)); } if(strcmp(keystr, "LocalAuthorizeOffline") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "%s", valuestr ); } if(strcmp(keystr, "LocalPreAuthorize") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "%s", valuestr ); } if(strcmp(keystr, "MaxEnergyOnInvalidId") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData, "%d", atoi(valuestr) ); ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy = atoi(valuestr)/1000; } if(strcmp(keystr, "MeterValuesAlignedData") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "%s", valuestr ); } if(strcmp(keystr, "MeterValuesAlignedDataMaxLength") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData, "%d", atoi(valuestr)); } if(strcmp(keystr, "MeterValuesSampledData") == 0 ) { ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "%s", valuestr ); } if(strcmp(keystr, "MeterValuesSampledDataMaxLength") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData, "%d", atoi(valuestr)); } if(strcmp(keystr, "MeterValueSampleInterval") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData, "%d", atoi(valuestr)); } if(strcmp(keystr, "MinimumStatusDuration") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "%d", atoi(valuestr) ); server_cycle_Status = atoi(valuestr); //StatusNotification cycle } if(strcmp(keystr, "NumberOfConnectors") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "%d", atoi(valuestr) ); } if(strcmp(keystr, "ResetRetries") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData, "%d", atoi(valuestr) ); } if(strcmp(keystr, "ConnectorPhaseRotation") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", valuestr ); } if(strcmp(keystr, "ConnectorPhaseRotationMaxLength") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData, "%d", atoi(valuestr) ); } if(strcmp(keystr, "StopTransactionOnEVSideDisconnect") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData, "%s", valuestr ); } if(strcmp(keystr, "StopTransactionOnInvalidId") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData, "%s", valuestr ); } if(strcmp(keystr, "StopTxnAlignedData") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData, "%s", valuestr ); } if(strcmp(keystr, "StopTxnAlignedDataMaxLength") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData, "%d", atoi(valuestr) ); } if(strcmp(keystr, "StopTxnSampledData") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "%s", valuestr ); } if(strcmp(keystr, "StopTxnSampledDataMaxLength") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData, "%d", atoi(valuestr) ); } if(strcmp(keystr, "SupportedFeatureProfiles") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData, "%s", valuestr ); } if(strcmp(keystr, "SupportedFeatureProfilesMaxLength") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData, "%d", atoi(valuestr) ); } if(strcmp(keystr, "TransactionMessageAttempts") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData, "%d", atoi(valuestr) ); TransactionMessageAttemptsValue = atoi(valuestr); } if(strcmp(keystr, "TransactionMessageRetryInterval") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility= (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData, "%d", atoi(valuestr) ); TransactionMessageRetryIntervalValue = atoi(valuestr); } if(strcmp(keystr, "UnlockConnectorOnEVSideDisconnect") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData, "%s", valuestr ); } if(strcmp(keystr, "WebSocketPingInterval") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "%d", atoi(valuestr) ); } if(strcmp(keystr, "QueueOffLineStartTransactionMessage") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineStartTransactionMessage].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineStartTransactionMessage].ItemData, "%s", valuestr); } if(strcmp(keystr, "AuthorizationKey") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData, "%s", valuestr); } if(strcmp(keystr, "SecurityProfile") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemData, "%d", atoi(valuestr) ); } if(strcmp(keystr, "DefaultPrice") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[DefaultPrice].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[DefaultPrice].ItemData, "%s", valuestr); } if(strcmp(keystr, "CustomDisplayCostAndPrice") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemData, "%s", valuestr); } if(strcmp(keystr, "CustomIdleFeeAfterStop") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemData, "%s", valuestr); } if(strcmp(keystr, "LocalAuthListEnabled") == 0) { ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "%s", valuestr ); } if(strcmp(keystr, "LocalAuthListMaxLength") == 0) { ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData, "%d", atoi(valuestr) ); } if(strcmp(keystr, "SendLocalListMaxLength") == 0) { ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData, "%d", atoi(valuestr) ); } if(strcmp(keystr, "ReserveConnectorZeroSupported") == 0) { ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData, "%s", valuestr ); } if(strcmp(keystr, "ChargeProfileMaxStackLevel") == 0) { ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData, "%d", atoi(valuestr) ); } if(strcmp(keystr, "ChargingScheduleAllowedChargingRateUnit") == 0) { ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData, "%s", valuestr ); } if(strcmp(keystr, "ChargingScheduleMaxPeriods") == 0) { ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData, "%d", atoi(valuestr) ); } if(strcmp(keystr, "ConnectorSwitch3to1PhaseSupported") == 0) { ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData, "%s", valuestr); } if(strcmp(keystr, "MaxChargingProfilesInstalled") == 0) { ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData, "%d", atoi(valuestr) ); } } fclose(fp); } return 0; } void StoreConfigurationTable(void) { FILE *outfile; outfile = fopen("/Storage/OCPP/OCPPConfiguration" , "w+"); if(outfile == NULL) { DEBUG_INFO("Error opening file"); return ; } /*Core Profile*/ //AllowOfflineTxForUnknownId /* ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility = 1; printf("AllowoddlineTXForUnknownId type: %d \n", ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemName, "AllowOfflineTxForUnknownId"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData, "TRUE" ); */ //DEBUG_INFO("data=%s\n",data); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AllowOfflineTxForUnknownId", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData); //AuthorizationCacheEnabled /* ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemName, "AuthorizationCacheEnabled"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "FALSE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AuthorizationCacheEnabled", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData); //AuthorizeRemoteTxRequests /* ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemName, "AuthorizeRemoteTxRequests"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "TRUE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AuthorizeRemoteTxRequests", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData); //BlinkRepeat /* ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemName, "BlinkRepeat"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData, "0" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","BlinkRepeat", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData); //ClockAlignedDataInterval /* ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemName, "ClockAlignedDataInterval"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData, "0" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ClockAlignedDataInterval", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData); //ConnectionTimeOut /* ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemName, "ConnectionTimeOut"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData, "180" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConnectionTimeOut", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData); //GetConfigurationMaxKeys /* ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility =0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemName, "GetConfigurationMaxKeys"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData, "43" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","GetConfigurationMaxKeys", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData); // HeartbeatInterval /* ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemName, "HeartbeatInterval"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "10" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","HeartbeatInterval", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData); // LightIntensity /* ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemName, "LightIntensity"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData, "0" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LightIntensity", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData); // LocalAuthorizeOffline /* ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemName, "LocalAuthorizeOffline"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "TRUE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LocalAuthorizeOffline", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData); // LocalPreAuthorize /* ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemName, "LocalPreAuthorize"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "FALSE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LocalPreAuthorize", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData); // MaxEnergyOnInvalidId /* ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemName, "MaxEnergyOnInvalidId"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData, "0" ); */ //ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy = 0; fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MaxEnergyOnInvalidId", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData); // MeterValuesAlignedData /* ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemName, "MeterValuesAlignedData"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "Current.Export,Energy.Active.Export.Interval,Power.Active.Export,Voltage,SOC" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesAlignedData", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData); // MeterValuesAlignedDataMaxLength /* ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemName, "MeterValuesAlignedDataMaxLength"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData, "5" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesAlignedDataMaxLength", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData); // MeterValuesSampledData /* ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemName, "MeterValuesSampledData"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "Current.Export,Energy.Active.Export.Interval,Power.Active.Export,Voltage,SOC" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesSampledData", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData); // MeterValuesSampledDataMaxLength /* ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemName, "MeterValuesSampledDataMaxLength"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData, "5" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesSampledDataMaxLength", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData); // MeterValueSampleInterval /* ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemName, "MeterValueSampleInterval"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData, "10" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValueSampleInterval", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData); // MinimumStatusDuration /* ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemName, "MinimumStatusDuration"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "0" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MinimumStatusDuration", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData); // NumberOfConnectors /* ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemName, "NumberOfConnectors"); if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "%d", (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)); } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "%d", AC_QUANTITY); } */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","NumberOfConnectors", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData); // ResetRetries /* ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemName, "ResetRetries"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData, "3" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ResetRetries", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData); // ConnectorPhaseRotation /* ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemName, "ConnectorPhaseRotation"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "NotApplicable" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConnectorPhaseRotation", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData); // ConnectorPhaseRotationMaxLength /* ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemName, "ConnectorPhaseRotationMaxLength"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData, "1" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConnectorPhaseRotationMaxLength", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData); // StopTransactionOnEVSideDisconnect /* ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemName, "StopTransactionOnEVSideDisconnect"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData, "TRUE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTransactionOnEVSideDisconnect", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData); // StopTransactionOnInvalidId /* ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemName, "StopTransactionOnInvalidId"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData, "FALSE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTransactionOnInvalidId", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData); // StopTxnAlignedData /* ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemName, "StopTxnAlignedData"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData, "Energy.Active.Import.Register" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTxnAlignedData", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData); // StopTxnAlignedDataMaxLength /* ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemName, "StopTxnAlignedDataMaxLength"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData, "0" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTxnAlignedDataMaxLength", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData); // StopTxnSampledData /* ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemName, "StopTxnSampledData"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Energy.Active.Import.Register" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTxnSampledData", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData); // StopTxnSampledDataMaxLength /* ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemName, "StopTxnSampledDataMaxLength"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData, "0" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StopTxnSampledDataMaxLength", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData); // SupportedFeatureProfiles /* ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemName, "SupportedFeatureProfiles"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData, "Core,FirmwareManagement,LocalAuthListManagement,Reservation,SmartCharging,RemoteTrigger" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SupportedFeatureProfiles", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData); // SupportedFeatureProfilesMaxLength /* ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemName, "SupportedFeatureProfilesMaxLength"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData, "6" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SupportedFeatureProfilesMaxLength", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData); // TransactionMessageAttempts /* ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemName, "TransactionMessageAttempts"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData, "3" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","TransactionMessageAttempts", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData); // TransactionMessageRetryInterval /* ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemName, "TransactionMessageRetryInterval"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData, "60" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","TransactionMessageRetryInterval", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData); // UnlockConnectorOnEVSideDisconnect /* ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemName, "UnlockConnectorOnEVSideDisconnect"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData, "TRUE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","UnlockConnectorOnEVSideDisconnect", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData); // WebSocketPingInterval /* ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemName, "WebSocketPingInterval"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "30" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","WebSocketPingInterval", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData); // QueueOffLineStartTransactionMessage /* ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineStartTransactionMessage].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineStartTransactionMessage].ItemName, "QueueOffLineStartTransactionMessage"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineStartTransactionMessage].ItemData, "TRUE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","QueueOffLineStartTransactionMessage", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineStartTransactionMessage].ItemData); // AuthorizationKey /* ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemName, "AuthorizationKey"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData, "0" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","AuthorizationKey", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData); // SecurityProfile /* ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemName, "SecurityProfile"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemData, "30" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SecurityProfile", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemData); // DefaultPrice /* ShmOCPP16Data->ConfigurationTable.CoreProfile[DefaultPrice].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[DefaultPrice].ItemName, "DefaultPrice"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[DefaultPrice].ItemData, "" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","DefaultPrice", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[DefaultPrice].ItemData); // CustomDisplayCostAndPrice /* ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemName, "CustomDisplayCostAndPrice"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemData, "FALSE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","CustomDisplayCostAndPrice", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemData); // CustomIdleFeeAfterStop /* ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemName, "CustomIdleFeeAfterStop"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemData, "FALSE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","CustomIdleFeeAfterStop", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemData); //* Local Auth List Management Profile*/ //LocalAuthListEnabled /* ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemName, "LocalAuthListEnabled"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "TRUE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LocalAuthListEnabled", "false", (char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData); //LocalAuthListMaxLength /* ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemName, "LocalAuthListMaxLength"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData, "500" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","LocalAuthListMaxLength", "true", (char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData); //SendLocalListMaxLength /* ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemName, "SendLocalListMaxLength"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData, "500" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SendLocalListMaxLength", "true", (char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData); //ReserveConnectorZeroSupported /* ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemName, "ReserveConnectorZeroSupported"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData, "FALSE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ReserveConnectorZeroSupported", "true", (char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData); //* Smart Charging Profile */ //ChargeProfileMaxStackLevel /* ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemName, "ChargeProfileMaxStackLevel"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData, "3" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ChargeProfileMaxStackLevel", "true", (char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData); // ChargingScheduleAllowedChargingRateUnit /* ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemName, "ChargingScheduleAllowedChargingRateUnit"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData, "Current" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ChargingScheduleAllowedChargingRateUnit", "true", (char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData); // ChargingScheduleMaxPeriods /* ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemName, "ChargingScheduleMaxPeriods"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData, "10" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ChargingScheduleMaxPeriods", "true", (char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData); // ConnectorSwitch3to1PhaseSupported /* ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemName, "ConnectorSwitch3to1PhaseSupported"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData, "TRUE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConnectorSwitch3to1PhaseSupported", "true", (char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData); // MaxChargingProfilesInstalled /* ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemName, "MaxChargingProfilesInstalled"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData, "10" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MaxChargingProfilesInstalled", "true", (char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData); fclose(outfile); } void getKeyValue(char *keyReq) { int isEmpty = FALSE; int isKnowKey = FALSE; DEBUG_INFO("keyReq = %s\n", keyReq); if((keyReq == NULL) || (strlen(keyReq) == 0)) isEmpty = TRUE; if(isEmpty || strcmp(keyReq, "AllowOfflineTxForUnknownId") == 0) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_AllowOfflineTxForUnknownId].Item, "AllowOfflineTxForUnknownId"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].Key, "AllowOfflineTxForUnknownId"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AllowOfflineTxForUnknownId].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "AuthorizationCacheEnabled") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_AuthorizationCacheEnabled].Item, "AuthorizationCacheEnabled"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].Key, "AuthorizationCacheEnabled"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationCacheEnabled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "AuthorizeRemoteTxRequests") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_AuthorizeRemoteTxRequests].Item, "AuthorizeRemoteTxRequests"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].Key, "AuthorizeRemoteTxRequests"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizeRemoteTxRequests].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "BlinkRepeat") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_BlinkRepeat].Item, "BlinkRepeat"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].Key, "BlinkRepeat"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_BlinkRepeat].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "ClockAlignedDataInterval") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ClockAlignedDataInterval].Item, "ClockAlignedDataInterval"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].Key, "ClockAlignedDataInterval"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ClockAlignedDataInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "ConnectionTimeOut") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectionTimeOut].Item, "ConnectionTimeOut"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].Key, "ConnectionTimeOut"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectionTimeOut].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "GetConfigurationMaxKeys") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_GetConfigurationMaxKeys].Item, "GetConfigurationMaxKeys"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].Key, "GetConfigurationMaxKeys"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_GetConfigurationMaxKeys].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "HeartbeatInterval") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_HeartbeatInterval].Item, "HeartbeatInterval"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].Key, "HeartbeatInterval"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_HeartbeatInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "LightIntensity") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LightIntensity].Item, "LightIntensity"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].Key, "LightIntensity"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LightIntensity].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "LocalAuthorizeOffline") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthorizeOffline].Item, "LocalAuthorizeOffline"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].Key, "LocalAuthorizeOffline"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthorizeOffline].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "LocalPreAuthorize") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalPreAuthorize].Item, "LocalPreAuthorize"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].Key, "LocalPreAuthorize"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalPreAuthorize].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "MaxEnergyOnInvalidId") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MaxEnergyOnInvalidId].Item, "MaxEnergyOnInvalidId"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].Key, "MaxEnergyOnInvalidId"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxEnergyOnInvalidId].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData ); ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy = atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData)/1000; isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "MeterValuesAlignedData") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesAlignedData].Item, "MeterValuesAlignedData"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].Key, "MeterValuesAlignedData"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedData].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "MeterValuesAlignedDataMaxLength") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesAlignedDataMaxLength].Item, "MeterValuesAlignedDataMaxLength"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].Key, "MeterValuesAlignedDataMaxLength"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesAlignedDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "MeterValuesSampledData") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesSampledData].Item, "MeterValuesSampledData"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].Key, "MeterValuesSampledData"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledData].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "MeterValuesSampledDataMaxLength") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValuesSampledDataMaxLength].Item, "MeterValuesSampledDataMaxLength"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].Key, "MeterValuesSampledDataMaxLength"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValuesSampledDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "MeterValueSampleInterval") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MeterValueSampleInterval].Item, "MeterValueSampleInterval"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].Key, "MeterValueSampleInterval"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MeterValueSampleInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "MinimumStatusDuration") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MinimumStatusDuration].Item, "MinimumStatusDuration"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].Key, "MinimumStatusDuration"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MinimumStatusDuration].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[17].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "NumberOfConnectors") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_NumberOfConnectors].Item, "NumberOfConnectors"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].Key, "NumberOfConnectors"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NumberOfConnectors].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "ResetRetries") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ResetRetries].Item, "ResetRetries"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].Key, "ResetRetries"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ResetRetries].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "ConnectorPhaseRotation") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectorPhaseRotation].Item, "ConnectorPhaseRotation"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].Key, "ConnectorPhaseRotation"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotation].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "ConnectorPhaseRotationMaxLength") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectorPhaseRotationMaxLength].Item, "ConnectorPhaseRotationMaxLength"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].Key, "ConnectorPhaseRotationMaxLength"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorPhaseRotationMaxLength].Value,(const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "StopTransactionOnEVSideDisconnect") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTransactionOnEVSideDisconnect].Item, "StopTransactionOnEVSideDisconnect"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].Key, "StopTransactionOnEVSideDisconnect"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnEVSideDisconnect].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "StopTransactionOnInvalidId") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTransactionOnInvalidId].Item, "StopTransactionOnInvalidId"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].Key, "StopTransactionOnInvalidId"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTransactionOnInvalidId].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "StopTxnAlignedData") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnAlignedData].Item, "StopTxnAlignedData"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].Key, "StopTxnAlignedData"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedData].Value,(const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "StopTxnAlignedDataMaxLength") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnAlignedDataMaxLength].Item, "StopTxnAlignedDataMaxLength"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].Key, "StopTxnAlignedDataMaxLength"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnAlignedDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "StopTxnSampledData") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnSampledData].Item, "StopTxnSampledData"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].Key, "StopTxnSampledData"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledData].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "StopTxnSampledDataMaxLength") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StopTxnSampledDataMaxLength].Item, "StopTxnSampledDataMaxLength"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].Key, "StopTxnSampledDataMaxLength"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StopTxnSampledDataMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "SupportedFeatureProfiles") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_SupportedFeatureProfiles].Item, "SupportedFeatureProfiles"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].Key, "SupportedFeatureProfiles"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfiles].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "SupportedFeatureProfilesMaxLength") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_SupportedFeatureProfilesMaxLength].Item, "SupportedFeatureProfilesMaxLength"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].Key, "SupportedFeatureProfilesMaxLength"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SupportedFeatureProfilesMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "TransactionMessageAttempts") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_TransactionMessageAttempts].Item, "TransactionMessageAttempts"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].Key, "TransactionMessageAttempts"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageAttempts].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "TransactionMessageRetryInterval") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_TransactionMessageRetryInterval].Item, "TransactionMessageRetryInterval"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].Key, "TransactionMessageRetryInterval"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TransactionMessageRetryInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "UnlockConnectorOnEVSideDisconnect") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Item, "UnlockConnectorOnEVSideDisconnect"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Key, "UnlockConnectorOnEVSideDisconnect"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_UnlockConnectorOnEVSideDisconnect].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "WebSocketPingInterval") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_WebSocketPingInterval].Item, "WebSocketPingInterval"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].Key, "WebSocketPingInterval"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_WebSocketPingInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "QueueOffLineStartTransactionMessage") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_QueueOffLineStartTransactionMessage].Item, "QueueOffLineStartTransactionMessage"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_QueueOffLineStartTransactionMessage].Key, "QueueOffLineStartTransactionMessage"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineStartTransactionMessage].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_QueueOffLineStartTransactionMessage].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_QueueOffLineStartTransactionMessage].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_QueueOffLineStartTransactionMessage].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineStartTransactionMessage].ItemData ); isKnowKey = TRUE; } /* if(isEmpty || strcmp(keyReq, "AuthorizationKey") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_AuthorizationKey].Item, "AuthorizationKey"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationKey].Key, "AuthorizationKey"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationKey].ReadOnly, "0"); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationKey].ReadOnly, "1"); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_AuthorizationKey].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData ); isKnowKey = TRUE; }*/ if(isEmpty || strcmp(keyReq, "SecurityProfile") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_SecurityProfile].Item, "SecurityProfile"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SecurityProfile].Key, "SecurityProfile"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SecurityProfile].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SecurityProfile].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SecurityProfile].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "DefaultPrice") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_DefaultPrice].Item, "DefaultPrice"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_DefaultPrice].Key, "DefaultPrice"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[DefaultPrice].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_DefaultPrice].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_DefaultPrice].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_DefaultPrice].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[DefaultPrice].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "CustomDisplayCostAndPrice") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_CustomDisplayCostAndPrice].Item, "CustomDisplayCostAndPrice"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CustomDisplayCostAndPrice].Key, "CustomDisplayCostAndPrice"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CustomDisplayCostAndPrice].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CustomDisplayCostAndPrice].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CustomDisplayCostAndPrice].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "CustomIdleFeeAfterStop") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_CustomIdleFeeAfterStop].Item, "CustomIdleFeeAfterStop"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CustomIdleFeeAfterStop].Key, "CustomIdleFeeAfterStop"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CustomIdleFeeAfterStop].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CustomIdleFeeAfterStop].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CustomIdleFeeAfterStop].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemData ); isKnowKey = TRUE; } #if 1 if(isEmpty || strcmp(keyReq, "LocalAuthListEnabled") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthListEnabled].Item, "LocalAuthListEnabled"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Key, "LocalAuthListEnabled"); if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListEnabled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData ); isKnowKey = TRUE; } #endif if(isEmpty || strcmp(keyReq, "LocalAuthListMaxLength") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_LocalAuthListMaxLength].Item, "LocalAuthListMaxLength"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].Key, "LocalAuthListMaxLength"); if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_LocalAuthListMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "SendLocalListMaxLength") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_SendLocalListMaxLength].Item, "SendLocalListMaxLength"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].Key, "SendLocalListMaxLength"); if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SendLocalListMaxLength].Value, (const char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "ReserveConnectorZeroSupported") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ReserveConnectorZeroSupported].Item, "ReserveConnectorZeroSupported"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].Key, "ReserveConnectorZeroSupported"); if(ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ReserveConnectorZeroSupported].Value,(const char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "ChargeProfileMaxStackLevel") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ChargeProfileMaxStackLevel].Item, "ChargeProfileMaxStackLevel"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].Key, "ChargeProfileMaxStackLevel"); if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargeProfileMaxStackLevel].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "ChargingScheduleAllowedChargingRateUnit") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Item, "ChargingScheduleAllowedChargingRateUnit"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Key, "ChargingScheduleAllowedChargingRateUnit"); if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleAllowedChargingRateUnit].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "ChargingScheduleMaxPeriods") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ChargingScheduleMaxPeriods].Item, "ChargingScheduleMaxPeriods"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].Key, "ChargingScheduleMaxPeriods"); if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ChargingScheduleMaxPeriods].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "ConnectorSwitch3to1PhaseSupported") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Item, "ConnectorSwitch3to1PhaseSupported"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Key, "ConnectorSwitch3to1PhaseSupported"); if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConnectorSwitch3to1PhaseSupported].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "MaxChargingProfilesInstalled") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MaxChargingProfilesInstalled].Item, "MaxChargingProfilesInstalled"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].Key, "MaxChargingProfilesInstalled"); if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].ReadOnly, "0"/*"FLASE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaxChargingProfilesInstalled].Value, (const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData); isKnowKey = TRUE; } //========================================================= if(!isEmpty && !isKnowKey) { DEBUG_INFO("unKnowIndex =%d\n", UnknownKeynum); strcpy(unknownkey[UnknownKeynum], keyReq); UnknownKeynum = UnknownKeynum + 1; } } void processUnkownKey(void) { DEBUG_INFO("processUnkownKey...\n"); memset(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey, 0 , sizeof(struct StructConfigurationKeyItems)* 10); for(int index=0; index < UnknownKeynum; index++) { if(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[index].Item[0] == 0) { strcpy((char *)(ShmOCPP16Data->GetConfiguration.ResponseUnknownKey[index].Item), unknownkey[index]); } } } int setKeyValue(char *key, char *value) { int isSuccess = NotSupported; int check_ascii=0; char str[10]={0}; DEBUG_INFO(" setKeyValue %s = %s\n", key, value); if(strcmp(key, "AllowOfflineTxForUnknownId") == 0) { //Charger.AllowOfflineTxForUnknownId = (value.toLowerCase().equals("true")?true:false); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++){ str[i] = tolower(str[i]); } sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AllowOfflineTxForUnknownId].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "AuthorizationCacheEnabled") == 0) { //Charger.AuthorizationCacheEnabled = (value.toLowerCase().equals("true")?true:false); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++){ str[i] = tolower(str[i]); } sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationCacheEnabled].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" ); isSuccess = ConfigurationStatus_Accepted; //updateSetting("AuthorizationCacheEnabled",(char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[1].ItemData); } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "AuthorizeRemoteTxRequests") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++) { str[i] = tolower(str[i]); } //Charger.AuthorizeRemoteTxRequests = (value.toLowerCase().equals("true")?true:false); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizeRemoteTxRequests].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "BlinkRepeat") == 0) { //Charger.BlinkRepeat = Integer.parseInt(value); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[BlinkRepeat].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "ClockAlignedDataInterval") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { if((atoi(value) == 0) || (atoi(value) >= 10)) { //Charger.ClockAlignedDataInterval = Integer.parseInt(value)*1000; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } else isSuccess = ConfigurationStatus_Rejected; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "ConnectionTimeOut") == 0 ) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { //Charger.ConnectionTimeOut = Integer.parseInt(value)*1000; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData, "%d", atoi(value)); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "GetConfigurationMaxKeys") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { //Charger.HeartbeatInterval = Integer.parseInt(value)*1000; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "HeartbeatInterval") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { if((atoi(value) == 0) || (atoi(value) >= 10)) { //Charger.HeartbeatInterval = Integer.parseInt(value)*1000; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "%d", atoi(value)); HeartBeatWaitTime = atoi(value); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "LightIntensity") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LightIntensity].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "LocalAuthorizeOffline") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++) { str[i] = tolower(str[i]); } sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" ); isSuccess = ConfigurationStatus_Accepted; //updateSetting("LocalAuthorizeOffline", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalAuthorizeOffline].ItemData); } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "LocalPreAuthorize") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++) { str[i] = tolower(str[i]); } sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[LocalPreAuthorize].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "MaxEnergyOnInvalidId") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData, "%d", atoi(value) ); ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy = atoi(value)/1000; isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "MeterValuesAlignedData") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility == 1) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "%s", value ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "MeterValuesAlignedDataMaxLength") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { //Charger.MeterValueSampleInterval = Integer.parseInt(value)*1000; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData, "%d", atoi(value)); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "MeterValuesSampledData") == 0 ) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility == 1) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "%s", value ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "MeterValuesSampledDataMaxLength") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { //Charger.MeterValueSampleInterval = Integer.parseInt(value)*1000; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData, "%d", atoi(value)); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "MeterValueSampleInterval") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { if((atoi(value) == 0) || (atoi(value) >= 10)) { //Charger.MeterValueSampleInterval = Integer.parseInt(value)*1000; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData, "%d", atoi(value)); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "MinimumStatusDuration") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { if(atoi(value) == 0) // MinimumStatusDuration's value can not be 0 { isSuccess = ConfigurationStatus_Rejected; } else { //Charger.MinimumStatusDuration = Integer.parseInt(value); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "%d", atoi(value) ); server_cycle_Status = atoi(value); //StatusNotification Cycle isSuccess = ConfigurationStatus_Accepted; } } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "NumberOfConnectors") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { //Charger.ResetRetries = Integer.parseInt(value); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "ResetRetries") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { //Charger.ResetRetries = Integer.parseInt(value); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ResetRetries].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "ConnectorPhaseRotation") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++) { str[i] = tolower(str[i]); } if(strcmp(str, "notapplicable")== 0) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", "NotApplicable" ); isSuccess = ConfigurationStatus_Accepted; } else if(strcmp(str, "unknown")== 0) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", "Unknown" ); isSuccess = ConfigurationStatus_Accepted; } else if(strcmp(str, "rst")== 0) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", "RST" ); isSuccess = ConfigurationStatus_Accepted; } else if(strcmp(str, "rts")== 0) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", "RTS" ); isSuccess = ConfigurationStatus_Accepted; } else if(strcmp(str, "srt")== 0) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", "SRT" ); isSuccess = ConfigurationStatus_Accepted; } else if(strcmp(str, "str")== 0) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", "STR" ); isSuccess = ConfigurationStatus_Accepted; } else if(strcmp(str, "trs")== 0) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", "TRS" ); isSuccess = ConfigurationStatus_Accepted; } else if(strcmp(str, "tsr")== 0) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotation].ItemData, "%s", "TSR" ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "ConnectorPhaseRotationMaxLength") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectorPhaseRotationMaxLength].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "StopTransactionOnEVSideDisconnect") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++) { str[i] = tolower(str[i]); } //Charger.StopTransactionOnEVSideDisconnect = (value.toLowerCase().equals("true")?true:false); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnEVSideDisconnect].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "StopTransactionOnInvalidId") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++) { str[i] = tolower(str[i]); } //Charger.StopTransactionOnInvalidId = (value.toLowerCase().equals("true")?true:false); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTransactionOnInvalidId].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "StopTxnAlignedData") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemAccessibility == 1) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedData].ItemData, "%s", value ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "StopTxnAlignedDataMaxLength") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnAlignedDataMaxLength].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "StopTxnSampledData") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility == 1) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "%s", value ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "StopTxnSampledDataMaxLength") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "SupportedFeatureProfiles") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemAccessibility == 1) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfiles].ItemData, "%s", value ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "SupportedFeatureProfilesMaxLength") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SupportedFeatureProfilesMaxLength].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "TransactionMessageAttempts") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { //Charger.TransactionMessageAttempts = Integer.parseInt(value); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData, "%d", atoi(value) ); TransactionMessageAttemptsValue = atoi(value); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "TransactionMessageRetryInterval") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { //Charger.TransactionMessageRetryInterval = Integer.parseInt(value)*1000; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData, "%d", atoi(value) ); TransactionMessageRetryIntervalValue = atoi(value); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "UnlockConnectorOnEVSideDisconnect") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++) { str[i] = tolower(str[i]); } //Charger.UnlockConnectorOnEVSideDisconnect = (value.toLowerCase().equals("true")?true:false); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[UnlockConnectorOnEVSideDisconnect].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "WebSocketPingInterval") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "QueueOffLineStartTransactionMessage") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineStartTransactionMessage].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++) { str[i] = tolower(str[i]); } //Charger.QueueOffLineStartTransactionMessage = (value.toLowerCase().equals("true")?true:false); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineStartTransactionMessage].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "AuthorizationKey") == 0) { if((ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemAccessibility == 1) && (strlen(value) <= 40)) { strcpy(str, (const char*)value); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData, "%s", str); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "SecurityProfile") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 0x30) || (check_ascii > 0x33) ) { isSuccess = ConfigurationStatus_Rejected; } else if(check_ascii == 0x33) { isSuccess = NotSupported; } else { if(atoi((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemData) <= (check_ascii - 0x30)) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } else isSuccess = ConfigurationStatus_Rejected; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "DefaultPrice") == 0) { if((ShmOCPP16Data->ConfigurationTable.CoreProfile[DefaultPrice].ItemAccessibility == 1)) { strcpy(str, (const char*)value); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[DefaultPrice].ItemData, "%s", str); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "CustomDisplayCostAndPrice") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++) { str[i] = tolower(str[i]); } //Charger.QueueOffLineStartTransactionMessage = (value.toLowerCase().equals("true")?true:false); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomDisplayCostAndPrice].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "CustomIdleFeeAfterStop") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++) { str[i] = tolower(str[i]); } //Charger.QueueOffLineStartTransactionMessage = (value.toLowerCase().equals("true")?true:false); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } #if 0 //For OCPP Test Case if(strcmp(key, "LocalAuthorizationListEnabled") == 0) { if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "%s", (strcmp(value, "true")==0) ?"TRUE":"FALSE" ); isSuccess = ConfigurationStatus_Accepted; //updateSetting("LocalAuthorizationListEnabled", (char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData); } else { isSuccess = ConfigurationStatus_Rejected; } } #endif #if 1 if(strcmp(key, "LocalAuthListEnabled") == 0) { if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++) { str[i] = tolower(str[i]); } sprintf((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" ); isSuccess = ConfigurationStatus_Accepted; //updateSetting("LocalAuthListEnabled", (char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListEnabled].ItemData); } else { isSuccess = ConfigurationStatus_Rejected; } } #endif if(strcmp(key, "LocalAuthListMaxLength") == 0) { if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[LocalAuthListMaxLength].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "SendLocalListMaxLength") == 0) { if(ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "ReserveConnectorZeroSupported") == 0) { if(ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++) { str[i] = tolower(str[i]); } sprintf((char *)ShmOCPP16Data->ConfigurationTable.ReservationProfile[ReserveConnectorZeroSupported].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "ChargeProfileMaxStackLevel") == 0) { if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "ChargingScheduleAllowedChargingRateUnit") == 0) { if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemAccessibility == 1) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleAllowedChargingRateUnit].ItemData, "%s", value ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "ChargingScheduleMaxPeriods") == 0) { if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "ConnectorSwitch3to1PhaseSupported") == 0) { if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++) { str[i] = tolower(str[i]); } sprintf((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ConnectorSwitch3to1PhaseSupported].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "MaxChargingProfilesInstalled") == 0) { if(ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } return isSuccess; } int TransactionMessageAttemptsGet(void) { return TransactionMessageAttemptsValue; } int FirstHeartBeatResponse(void) { return FirstHeartBeat; } int TransactionMessageRetryIntervalGet(void) { return TransactionMessageRetryIntervalValue;//atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData); } int ReadHttpStatus(int sock) { //char c; char buff[1024]="",*ptr=buff+1; int bytes_received, status; DEBUG_INFO("Begin Response ..\n"); while((bytes_received = recv(sock, ptr, 1, 0))){ if(bytes_received==-1){ perror("ReadHttpStatus"); exit(1); } if((ptr[-1]=='\r') && (*ptr=='\n' )) break; ptr++; } *ptr=0; ptr=buff+1; sscanf(ptr,"%*s %d ", &status); DEBUG_INFO("%s\n",ptr); DEBUG_INFO("status=%d\n",status); DEBUG_INFO("End Response ..\n"); return (bytes_received>0)?status:0; } //the only filed that it parsed is 'Content-Length' int ParseHeader(int sock) { //char c; char buff[1024]="",*ptr=buff+4; int bytes_received; DEBUG_INFO("Begin HEADER ..\n"); while((bytes_received = recv(sock, ptr, 1, 0))){ if(bytes_received==-1){ perror("Parse Header"); exit(1); } if( (ptr[-3]=='\r') && (ptr[-2]=='\n' ) && (ptr[-1]=='\r') && (*ptr=='\n' ) ) break; ptr++; } *ptr=0; ptr=buff+4; //printf("%s",ptr); if(bytes_received){ ptr=strstr(ptr,"Content-Length:"); if(ptr){ sscanf(ptr,"%*s %d",&bytes_received); }else bytes_received=-1; //unknown size DEBUG_INFO("Content-Length: %d\n",bytes_received); } DEBUG_INFO("End HEADER ..\n"); return bytes_received ; } int httpDownLoadFile(char *location, char *path, char *filename,char *url) { char rmFileCmd[100]={0}; char FilePath[100]={0}; char ftpbuf[200]; int systemresult; //DEBUG_INFO("filename=%s\n",filename); //DEBUG_INFO("url=%s\n",url); sprintf(FilePath,"/mnt/%s",filename); if((access(FilePath,F_OK))!=-1) { DEBUG_INFO("filename=%s exist.\n",FilePath); sprintf(rmFileCmd,"rm -f %s",FilePath); system(rmFileCmd); } memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf)); sprintf(ftpbuf, "wget --tries=3 -O /mnt/%s -c %s -T 120",filename, url); //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path); systemresult = system(ftpbuf); //DEBUG_INFO("systemresult=%d\n",systemresult); if(systemresult != 0) { DEBUG_INFO("http DownLoad error!\n"); return FALSE; } return TRUE; } int ftpDownLoadFile(char *location, char *user, char *password, int port, char *path, char *filename,char *url) { char rmFileCmd[100]={0}; char FilePath[100]={0}; char ftpbuf[200]; int systemresult; //char temp[100]; sprintf(FilePath,"/mnt/%s",filename); if((access(FilePath,F_OK))!=-1) { DEBUG_INFO("filename=%s exist.\n",FilePath); sprintf(rmFileCmd,"rm -f %s",FilePath); system(rmFileCmd); } memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf)); sprintf(ftpbuf, "wget --tries=3 -O /mnt/%s -c %s -T 120",filename, url); //sprintf(ftpbuf, "ftpget -u %s -p %s %s -P %d %s %s%s",user,password,IPbuffer,port/*21*/,filename,path,filename); --- remove temporally //DEBUG_INFO("ftpbuf=%s\n",ftpbuf); //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path); systemresult = system(ftpbuf); //DEBUG_INFO("systemresult=%d\n",systemresult); if(systemresult != 0) { printf("wget error!\n"); return FALSE; } return TRUE; } int httpUploadFile(char *location, char *path, char *filename,char *url) { char rmFileCmd[100]={0}; char FilePath[100]={0}; char ftpbuf[200]; int systemresult; //DEBUG_INFO("filename=%s\n",filename); //DEBUG_INFO("url=%s\n",url); sprintf(FilePath,"%s","/mnt/upload_file.txt"); if((access(FilePath,F_OK))!=-1) { DEBUG_INFO("filename=%s exist.\n",FilePath); sprintf(rmFileCmd,"rm -f %s",FilePath); system(rmFileCmd); } FILE *fp = fopen("/mnt/upload_file.txt", "w+"); if(fp == NULL) { DEBUG_INFO("log is NULL\n"); return FALSE; } else { fprintf(fp, "%s\n", url); fprintf(fp, "%s\n", filename); fclose(fp); } memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf)); sprintf(ftpbuf, "%s","/bin/php-cgi /var/www/ocpp_upload.php"); systemresult = system(ftpbuf); DEBUG_INFO("systemresult = %d\n",systemresult); if(systemresult != 0) { DEBUG_INFO("http upload error!\n"); return FALSE; } return TRUE; } int ftpFile(char *location, char *user, char *password, int port, char *path, char *fnamePlusPath,char *filename) { struct hostent* server; char *IPbuffer; char ftpbuf[200]; int systemresult; // To retrieve host information server = gethostbyname(location); // To convert an Internet network // address into ASCII string IPbuffer = inet_ntoa(*((struct in_addr*) server->h_addr_list[0])); memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf)); /* format : ftpput -u phihong -p y42j%2f4cj84 112.91.88.35 -P 21 /2020-02.zip ../mnt/2020-02.zip*/ /* format : ftpput -u username -p passwd IP target source*/ sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,port/*21*/,path,filename,fnamePlusPath); DEBUG_INFO("ftpbuf=%s\n",ftpbuf); //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path); systemresult = system(ftpbuf); DEBUG_INFO("systemresult=%d\n",systemresult); if(systemresult != 0) { DEBUG_INFO("ftpput error!\n"); return FALSE; } return TRUE; } /** * Place the contents of the specified file into a memory buffer * * @param[in] filename The path and name of the file to read * @param[out] filebuffer A pointer to the contents in memory * @return status 0 success, 1 on failure */ int get_file_contents(const char* filename, char** outbuffer) { FILE* file = NULL; long filesize; const int blocksize = 1; size_t readsize; char* filebuffer; // Open the file file = fopen(filename, "r"); if (NULL == file) { printf("'%s' not opened\n", filename); exit(EXIT_FAILURE); } // Determine the file size fseek(file, 0, SEEK_END); filesize = ftell(file); rewind (file); // Allocate memory for the file contents filebuffer = (char*) malloc(sizeof(char) * filesize); *outbuffer = filebuffer; if (filebuffer == NULL) { fputs ("malloc out-of-memory", stderr); exit(EXIT_FAILURE); } // Read in the file readsize = fread(filebuffer, blocksize, filesize, file); if (readsize != filesize) { fputs ("didn't read file completely",stderr); exit(EXIT_FAILURE); } // Clean exit fclose(file); return EXIT_SUCCESS; } static int selectSqlCount = 0; static int callback(void *data, int argc, char **argv, char **azColName){ int i; //printf("%s: ", (const char*)data); selectSqlCount = argc; for(i = 0; i 5) idTagQuery.listVersionInt = atoi(columnValue[5]); //DEBUG_INFO("IdTag=%s\n", idTagAuthorization); return 0; } static int deleteIdTagcallback(void *data, int argc, char **argv, char **azColName) { // localversion = argv[5] ? atoi(argv[5]) : 0; // printf("localversion=%d\n", localversion); return 0; } //========================================= // Sqlite3 related function //========================================= int sqlite3_exec_callback(void *data, int n_columns, char **col_values, char **col_names) { for (int i = 0; i < n_columns; i++) { DEBUG_INFO("%s\t", col_values[i]); } DEBUG_INFO("\n"); return 0; } int OCPP_cleanLocalCache() { char * sqlcleanLocalList = "delete from ocpp_auth_cache"; char *errMsg = 0; int rc =sqlite3_exec(db, sqlcleanLocalList, 0, 0, &errMsg); if (SQLITE_OK != rc) { DEBUG_INFO("SQL error: %s\n",errMsg); return FALSE; } return TRUE; } int OCPP_addLocalCache(char *idTag, char *parentTage, char *expiryDate, char *status) { int isSuccess = TRUE; int ret = 0; //const char* data = "Callback function called"; char sql[300]; char zErrMsg[200]; memset(sql, 0, 300); memset(zErrMsg, 0, 200); sprintf(sql, "insert or replace into ocpp_auth_cache (idtag, parent_idtag, expir_date, status) " "VALUES ('%s', '%s', '%s', '%s'); ""SELECT * from ocpp_auth_cache", idTag, parentTage, expiryDate, status); //* Execute SQL statement */ ret = sqlite3_exec(db, sql, callback, 0, (char **)&zErrMsg); if( ret != SQLITE_OK ) { DEBUG_INFO("SQL error: %s\n", zErrMsg); isSuccess = FALSE; } return isSuccess; } void OCPP_getIdTagFromLocalCache(char idTag[]) { int rc = 0; char sql[100]; char zErrMsg[100]; memset(sql, 0, 100); memset(zErrMsg, 0, 100); memset(idTagAuthorization, 0, ARRAY_SIZE(idTagAuthorization)); memset(&idTagQuery, 0, sizeof(idTagQuery)); sprintf(sql,"select * from ocpp_auth_cache where idtag='%s'", idTag); /* Execute SQL statement */ rc = sqlite3_exec(db, sql, IdTagcallback, 0, (char **)&zErrMsg); if( rc != SQLITE_OK ) { DEBUG_INFO("SQL error: %s\n", zErrMsg); } } void OCPP_getListVerion() { int rc = 0; // const char* data = "Callback function called"; char sql[100]; char zErrMsg[100]; memset(sql, 0, 100); memset(zErrMsg, 0, 100); strcpy(sql, "select * from ocpp_auth_local order by idx"); /* Execute SQL statement */ rc = sqlite3_exec(db, sql, versioncallback, 0, (char **)&zErrMsg); if( rc != SQLITE_OK ) { DEBUG_INFO("SQL error: %s\n", zErrMsg); } } void OCPP_get_TableAuthlocalAllData(void) { int rc = 0; char sql[100]; char zErrMsg[100]; memset(sql, 0, 100); memset(zErrMsg, 0, 100); sprintf(sql,"select * from ocpp_auth_local "); /* Execute SQL statement */ rc = sqlite3_exec(db, sql, &sqlite3_exec_callback, 0,(char **)&zErrMsg); if( rc != SQLITE_OK ) { DEBUG_INFO("SQL error: %s\n", zErrMsg); } //return ver; } int OCPP_cleanLocalList() { char * sqlcleanLocalList = "delete from ocpp_auth_local"; char *errMsg = 0; int rc =sqlite3_exec(db, sqlcleanLocalList, 0, 0, &errMsg); if (SQLITE_OK != rc) { DEBUG_INFO("%s\n",errMsg); return FALSE; } return TRUE; } int OCPP_addLocalList(int version, char *idTag, char *parentTage, char *expiryDate, char *status) { int isSuccess = FALSE; int ret = 0; //const char* data = "Callback function called"; char sql[300]; char zErrMsg[200]; memset(sql, 0, 300); memset(zErrMsg, 0, 200); 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); //* Execute SQL statement */ ret = sqlite3_exec(db, sql, callback, 0, (char **)&zErrMsg); if( ret != SQLITE_OK ) { DEBUG_INFO("SQL error: %s\n", zErrMsg); return isSuccess; } memset(sql, 0, 300); sprintf(sql, "UPDATE ocpp_auth_local SET version=%d",version); ret = sqlite3_exec(db, sql, NULL, NULL, (char **)&zErrMsg); if( ret != SQLITE_OK ) { DEBUG_INFO("SQL error: %s\n", zErrMsg); return isSuccess; } isSuccess = TRUE; return isSuccess; } void OCPP_getIdTagFromLocalList(char idTag[]) { int rc = 0; // const char* data = "Callback function called"; char sql[100]; char zErrMsg[100]; memset(sql, 0, 100); memset(zErrMsg, 0, 100); memset(idTagAuthorization, 0, ARRAY_SIZE(idTagAuthorization)); memset(&idTagQuery, 0, sizeof(idTagQuery)); //DEBUG_INFO("look up card: %s in ocpp_auth_local table", idTag); sprintf(sql,"select * from ocpp_auth_local where idtag='%s'", idTag); /* Execute SQL statement */ rc = sqlite3_exec(db, sql, IdTagcallback, 0, (char **)&zErrMsg); if( rc != SQLITE_OK ) { DEBUG_INFO("SQL error: %s\n", zErrMsg); } //return ver; } void OCPP_deleteIdTagFromLocalList(char idTag[]) { //int ver = 0; //int isSuccess = FALSE; int rc = 0; char sql[100]; char zErrMsg[100]; memset(sql, 0, 100); memset(zErrMsg, 0, 100); sprintf(sql,"DELETE from ocpp_auth_local where idtag='%s'; SELECT * from ocpp_auth_local;", idTag); //* Execute SQL statement */ rc = sqlite3_exec(db, sql, deleteIdTagcallback, 0,(char **)&zErrMsg); if( rc != SQLITE_OK ) { DEBUG_INFO("SQL error: %s\n", zErrMsg); } } int GetOcppServerURL() { int result = FALSE; memset(OcppProtocol, 0, ARRAY_SIZE(OcppProtocol)); memset(OcppHost, 0, ARRAY_SIZE(OcppHost)); memset(OcppTempPath, 0, ARRAY_SIZE(OcppTempPath)); struct yuarel url; char urlStr[512]; if((ShmSysConfigAndInfo->SysConfig.OcppServerURL != NULL) && (strcmp((const char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL,"") != 0) ) { /*sscanf((const char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL, "%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]", OcppProtocol, OcppHost, &OcppPort, OcppTempPath);*/ memcpy(urlStr, ShmSysConfigAndInfo->SysConfig.OcppServerURL, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.OcppServerURL)); if(yuarel_parse(&url, urlStr) != -1) { sprintf(OcppProtocol, "%s", url.scheme); sprintf(OcppHost, "%s", url.host); if(url.path == NULL) OcppTempPath[0] = '\0'; else { if((url.path[strlen(url.path)-1] != '/') && (strlen(url.path) > 0)) { sprintf(OcppTempPath, "%s/", url.path); } else { sprintf(OcppTempPath, "%s", url.path); } } if(url.port == 0) { if(strcmp(OcppProtocol, "wss") == 0) OcppPort = 443; else OcppPort = 80; } else OcppPort = url.port; result = TRUE; } } else if((ShmOCPP16Data->OcppServerURL != NULL) && (strcmp((const char *)ShmOCPP16Data->OcppServerURL,"") != 0)) { /*sscanf((const char *)ShmOCPP16Data->OcppServerURL, "%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]", OcppProtocol, OcppHost, &OcppPort, OcppTempPath);*/ memcpy(urlStr, ShmOCPP16Data->OcppServerURL, ARRAY_SIZE(ShmOCPP16Data->OcppServerURL)); if(yuarel_parse(&url, urlStr) != -1) { sprintf(OcppProtocol, "%s", url.scheme); sprintf(OcppHost, "%s", url.host); if(url.path == NULL) OcppTempPath[0] = '\0'; else sprintf(OcppTempPath, "%s", url.path); if(url.port == 0) { if(strcmp(OcppProtocol, "wss") == 0) OcppPort = 443; else OcppPort = 80; } else OcppPort = url.port; result = TRUE; } } else { strcpy(OcppHost,""); } return result; } int GetOcppPath() { int result = FALSE; if((ShmSysConfigAndInfo->SysConfig.ChargeBoxId != NULL) && (strcmp((const char *)ShmSysConfigAndInfo->SysConfig.ChargeBoxId,"") != 0) ) { if(OcppTempPath == NULL) { sprintf(OcppPath,"/%s",ShmSysConfigAndInfo->SysConfig.ChargeBoxId); } else { sprintf(OcppPath,"/%s%s",OcppTempPath,ShmSysConfigAndInfo->SysConfig.ChargeBoxId); } result = TRUE; goto End; } else if((ShmOCPP16Data->ChargeBoxId != NULL) && (strcmp((const char *)ShmOCPP16Data->ChargeBoxId,"") != 0)) { if(OcppTempPath == NULL) { sprintf(OcppPath,"/%s",ShmOCPP16Data->ChargeBoxId); } else { sprintf(OcppPath,"/%s%s",OcppTempPath,ShmOCPP16Data->ChargeBoxId); } result = TRUE; goto End; } else { strcpy(OcppPath,""); } End: return result; } int GetOcppPort() { return OcppPort; } int GetOcppConnStatus(void) { return ShmOCPP16Data->OcppConnStatus; } void SetOcppConnStatus(uint8_t status) { ShmOCPP16Data->OcppConnStatus = status; ShmSysConfigAndInfo->SysInfo.OcppConnStatus = status; } int GetHeartBeatWithNOResponse(void) { return HeartBeatWithNOResponse; } void SetHeartBeatWithNOResponse(void) { HeartBeatWithNOResponse = 0; } void GetStartTransactionIdTag(int gun_index) { memset(StartTransactionIdTagTemp, 0 ,ARRAY_SIZE(StartTransactionIdTagTemp)); strcpy((char *)StartTransactionIdTagTemp, (const char *)ShmOCPP16Data->StartTransaction[gun_index].IdTag); } int GetTransactionId(int gunindex, unsigned char idTag[], uint8_t isStopTransaction) { char ch; FILE *fptr1; int temptransactionId; char str[100]={0}; temptransactionId = 0; if((strcmp((const char*)idTag, "")==0)||(idTag[0]=='\0')) { DEBUG_INFO("IdTag is empty.\n"); return temptransactionId; } /*------ Read the file ----------------*/ fptr1=fopen("/Storage/OCPP/QueueTransactionId","r"); if (!fptr1) { DEBUG_INFO("QueueTransactionId file open error.\n"); //printf(" File not found or unable to open the input file!!\n"); return temptransactionId; } ch=fgetc(fptr1); //printf(" Now the content of the file %s is : \n","/Storage/OCPP/QueueTransactionId"); rewind(fptr1); if(ch!=EOF) { // printf("%c",ch); while (fgets(str, 100, fptr1) != NULL) { str[strlen(str) - 1] = '\0'; // eat the newline fgets() stores if(str[0]=='\0') { break; } char *revbuf[8] = {0}; // Variable store string split int num = 0;// Quantity after string split DEBUG_INFO("Transaction queue data= %s\n", str); splitstring(str,",",revbuf,&num); // String split DEBUG_INFO(" revbuf[0]= %s\n", revbuf[0]); DEBUG_INFO(" revbuf[1]= %s\n", revbuf[1]); DEBUG_INFO(" revbuf[2]= %s\n", revbuf[2]); DEBUG_INFO("------------------------------\n"); if((revbuf[1][0] != '\0')&&(revbuf[2][0] != '\0')) { if(isStopTransaction) { if((atoi(revbuf[0])==gunindex) && (strcmp(revbuf[1],(const char *)idTag)==0)) { temptransactionId = atoi(revbuf[2]); break; } } else { if((atoi(revbuf[0])==gunindex) || (strcmp(revbuf[1],(const char *)idTag)==0)) { temptransactionId = atoi(revbuf[2]); break; } } } } } else DEBUG_INFO("EOF\n"); fclose(fptr1); /*------- End of reading ---------------*/ return temptransactionId; } void SetTransactionIdZero(int transactionId) { char ch; FILE *fptr1, *fptr2; int temptransactionId = 0; char str[100]={0}, strtemp[100]={0}, temp[] = "/Storage/OCPP/QueueTransactionIdtemp.json"; fptr1 = fopen("/Storage/OCPP/QueueTransactionId", "r"); if (!fptr1) { //printf(" File not found or unable to open the input file!!\n"); return ; } fptr2 = fopen(temp, "w"); // open the temporary file in write mode if (!fptr2) { DEBUG_INFO("Unable to open a temporary file to write!!\n"); fclose(fptr1); return ; } ch=fgetc(fptr1); rewind(fptr1); if(ch!=EOF) { // copy all contents to the temporary file except the specific line while (fgets(str, 100, fptr1) != NULL) { str[strlen(str) - 1] = '\0'; // eat the newline fgets() stores if(str[0]=='\0') { break; } char *revbuf[8] = {0}; int num = 0; strcpy(strtemp, str); splitstring(str,",",revbuf,&num); if(revbuf[2][0] != '\0') { temptransactionId = atoi(revbuf[2]); if(transactionId != temptransactionId) { fprintf(fptr2, "%s\n", strtemp); } } } } fclose(fptr1); fclose(fptr2); remove("/Storage/OCPP/QueueTransactionId"); // remove the original file rename(temp, "/Storage/OCPP/QueueTransactionId"); // rename the temporary file to original name /*------ Read the file ----------------*/ } int InternetDisconnect(void) { return (ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectVia4Gi && ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaEthernet && ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi ); } //Note: It is not real StopTransaction. It is temporary StopTransaction. void storeTempStopTransaction(int gun_index) { char guid[37]={0}; int tempIndex = 0; char TempStopTransaction[256]; sprintf(TempStopTransaction, "/Storage/OCPP/TempStopTransaction_%d", (gun_index+1)); DEBUG_INFO("storeTempStopTransaction...\n"); memset(queuedata, 0, ARRAY_SIZE(queuedata)); memset(&ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0], 0, ARRAY_SIZE(ShmOCPP16Data->StopTransaction[gun_index].TransactionData)); //======================== ENERGY_ACTIVE_IMPORT_REGISTER ======================================= //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DCcc if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { ShmOCPP16Data->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption*1000); } }// END OF CHAdeMO_QUANTITY } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { ShmOCPP16Data->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption*1000); } }// END OF CCS_QUANTITY } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { ShmOCPP16Data->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption*1000); } }// END OF GB_QUANTITY } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { ShmOCPP16Data->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption*1000); } } } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { ShmOCPP16Data->StopTransaction[gun_index].MeterStop = (int)(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption*1000); } }// END OF AC_QUANTITY } //Stop Transaction Time struct timeval tmnow; struct tm *tm; char buf[28];//, usec_buf[6]; gettimeofday(&tmnow, NULL); time_t t; t = time(NULL); /*UTC time and date*/ tm = gmtime(&t); strftime(buf,28,"%Y-%m-%dT%H:%M:%SZ", tm); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].Timestamp,buf); ShmOCPP16Data->StopTransaction[gun_index].TransactionId = ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId; strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].IdTag, (const char*)ShmOCPP16Data->StartTransaction[gun_index].IdTag); random_uuid(guid); /***********************************transactionData******************************************************/ memset(ShmOCPP16Data->StopTransaction[gun_index].TransactionData, 0, sizeof(sizeof(struct StructMeterValue))); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].TimeStamp, buf); //================================= //1. Transaction_Begin //================================= //============================== Energy.Active.Import.Interval =========================================== //idx_sample=0; sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[0].Value, "%.1f", 0.0); // MeterStart is 0~6553.5 kWh strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[0].Context,ReadingContextStr[ReadingContext_Transaction_Begin]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[0].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[0].Measurand,MeasurandStr[Energy_Active_Import_Interval]);//MeasurandStr[Energy_Active_Export_Interval/*Energy_Reactive_Export_Register*/]); //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DCcc if((gunType[gun_index] == 'J')||(gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')||(gunType[gun_index] == 'G')) { strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[0].Phase,PhaseStr[L3_N]); } else { strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[0].Phase,PhaseStr[L1_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[0].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[0].Unit,UnitOfMeasureStr[UnitOfMeasure_kWh]); //================================= //2. Transaction_End //================================= //2.1====================================== Current.Import L1 ============================================== //idx_sample=1; //J: CHAdeMO U: CCS1 combo E: CCS2 combo G : GBT DC if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp } }// End of for CHAdeMO_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L3_N]); } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp } }// End of for CCS_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp } }// End of for GB_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingCurrent );// PresentChargingCurrent is 0~6553.5 amp } } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L3_N]); } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrent );// 0~6553.5 amp for EVSE } }// End of for AC_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L1_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Measurand,MeasurandStr[Current_Import]); //strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Phase,PhaseStr[L1_N]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Unit,UnitOfMeasureStr[UnitOfMeasure_A]); //2.2===================================== Energy.Active.Import.Interval ========================================== //idx_sample=2; //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy );// PresentChargedEnergy is 0~6553.5 kWh } }// END OF CHAdeMO_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]); } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy );// PresentChargedEnergy is 0~6553.5 kWh } }// END OF CCS_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy );// PresentChargedEnergy is 0~6553.5 kWh } }// END OF GB_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargedEnergy );// PresentChargedEnergy is 0~6553.5 kWh } } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]); } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy );// PresentChargedEnergy is 0~6553.5 kWh } }// END OF AC_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L1_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Measurand,MeasurandStr[Energy_Active_Import_Interval]); //strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L1_N]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Unit,UnitOfMeasureStr[UnitOfMeasure_kWh]); //2.3====================================== Power.Active.Import ========================================= //idx_sample=3; //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW } } // End for CHAdeMO_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L3_N]); } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW } } // END for CCS_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW } }// END for GB_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[1].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingPower );// PresentChargingPower is 0~6553.5 kW } } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L3_N]); } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingPower );// PresentChargingPower is 0~6553.5 kW } } // END for AC_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L1_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Measurand,MeasurandStr[Power_Active_Import]); //strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Phase,PhaseStr[L1_N]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[3].Unit,UnitOfMeasureStr[UnitOfMeasure_kW/*UnitOfMeasure_kWh*/]); //2.4====================================== Voltage L1 ==================================================== //idx_sample=4; //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == 'J') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt } } // END OF FOR CHAdeMO_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L3_N]); } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt } } // END OF FOR CCS_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == 'G') { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt } } // END OF FOR GB_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == 'O') { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargingVoltage );// PresentChargingVoltage is 0~6553.5 volt } } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L3_N]); } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltage );//AcChargingVoltage is 0~6553.5 volt for AC EVSE } } // END OF FOR AC_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L1_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Measurand,MeasurandStr[Voltage]); //strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Phase,PhaseStr[L1_N]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[4].Unit,UnitOfMeasureStr[UnitOfMeasure_V]); //2.5============================================== End SoC ========================================================= //idx_sample=5; //J : CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if((gunType[gun_index] == 'J')||(gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')||(gunType[gun_index] == 'G')||(gunType[gun_index] == 'O')) { if((ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') && (gunType[gun_index] != 'O')) { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } if(gunType[gun_index] == 'J') { for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatterySoc );// 0~100% } } } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatterySoc );// 0~100% } } } else if(gunType[gun_index] == 'G') { for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatterySoc );// 0~100% } } } else if(gunType[gun_index] == 'O') { for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.EvBatterySoc );// 0~100% } } } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Measurand,MeasurandStr[SoC/*Energy_Reactive_Export_Register*/]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Phase,PhaseStr[L3_N]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Location,LocationStr[Location_EV]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[5].Unit,UnitOfMeasureStr[UnitOfMeasure_Percent/*UnitOfMeasure_kWh*/]); } // END FOR DC CASE //2.6====================================== Current.Import L2 ============================================== // idx_sample=6; // AC 3 phase L2 current if(('1' <= gunType[gun_index]) && (gunType[gun_index] <= '9') && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W'))) { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrentL2);// 0~6553.5 amp for EVSE } }// End of for AC_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Phase,PhaseStr[L2_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Measurand,MeasurandStr[Current_Import]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[6].Unit,UnitOfMeasureStr[UnitOfMeasure_A]); //2.7====================================== Current.Import L3 ============================================== // idx_sample=7; // AC 3 phase L3 current if(('1' <= gunType[gun_index]) && (gunType[gun_index] <= '9') && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W'))) { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingCurrentL3);// 0~6553.5 amp for EVSE } }// End of for AC_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Phase,PhaseStr[L3_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Measurand,MeasurandStr[Current_Import]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[7].Unit,UnitOfMeasureStr[UnitOfMeasure_A]); //2.9====================================== Voltage L2 ==================================================== //idx_sample=8; // AC 3 phase L2 volatge if(('1' <= gunType[gun_index]) && (gunType[gun_index] <= '9') && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W'))) { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltageL2 );//AcChargingVoltage is 0~6553.5 volt for AC EVSE } } // END OF FOR AC_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Phase,PhaseStr[L2_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Measurand,MeasurandStr[Voltage]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[8].Unit,UnitOfMeasureStr[UnitOfMeasure_V]); //2.10====================================== Voltage L3 ==================================================== //idx_sample=9; // AC 3 phase L3 volatge if(('1' <= gunType[gun_index]) && (gunType[gun_index] <= '9') && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W'))) { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') { tempIndex = 2; } else { tempIndex = gun_index; } for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Value, "%.1f" ,ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargingVoltageL3 );//AcChargingVoltage is 0~6553.5 volt for AC EVSE } } // END OF FOR AC_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Phase,PhaseStr[L3_N]); } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Context,ReadingContextStr[ReadingContext_Transaction_End]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Measurand,MeasurandStr[Voltage]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Location,LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[9].Unit,UnitOfMeasureStr[UnitOfMeasure_V]); //====================== Start SoC ================================ //idx_sample=10; //J : CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if((gunType[gun_index] == 'J')||(gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')||(gunType[gun_index] == 'G')||(gunType[gun_index] == 'O')) { if((ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') && (gunType[gun_index] != 'O')) { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } if(gunType[gun_index] == 'J') { for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatteryStartSoc );// 0~100% } } } else if((gunType[gun_index] == 'U')||(gunType[gun_index] == 'E')) { for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatteryStartSoc );// 0~100% } } } else if(gunType[gun_index] == 'G') { for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatteryStartSoc );// 0~100% } } } else if(gunType[gun_index] == 'O') { for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { sprintf((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Value, "%d" ,ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.EvBatteryStartSoc );// 0~100% } } } strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Context,ReadingContextStr[ReadingContext_Transaction_Begin]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Format,ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Measurand,MeasurandStr[SoC/*Energy_Reactive_Export_Register*/]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Phase,PhaseStr[L3_N]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Location,LocationStr[Location_EV]); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[10].Unit,UnitOfMeasureStr[UnitOfMeasure_Percent/*UnitOfMeasure_kWh*/]); } // END FOR DC CASE //======================================== Message create ============================================== json_object *StopTransaction = json_object_new_object(); json_object *transactionDatas = json_object_new_array(); json_object *sampledValues = json_object_new_array(); if(strlen((char*)ShmOCPP16Data->StopTransaction[gun_index].IdTag) > 0) json_object_object_add(StopTransaction, "idTag", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].IdTag)); json_object_object_add(StopTransaction, "meterStop", json_object_new_int(ShmOCPP16Data->StopTransaction[gun_index].MeterStop)); json_object_object_add(StopTransaction, "transactionId", json_object_new_int(ShmOCPP16Data->StopTransaction[gun_index].TransactionId)); json_object_object_add(StopTransaction, "timestamp", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].Timestamp)); json_object_object_add(StopTransaction, "reason", json_object_new_string("PowerLoss")); for(int idxTrans = 0;idxTransStopTransaction[gun_index].TransactionData);idxTrans++) { json_object *transactionData = json_object_new_object(); json_object_object_add(transactionData, "timestamp", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].TimeStamp)); for(int idx=0;idxStopTransaction[gun_index].TransactionData[idxTrans].SampledValue);idx++) { if(strlen((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Value) > 0) { json_object *sampledValue = json_object_new_object(); json_object_object_add(sampledValue, "value", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Value)); if(strlen((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Context) > 0) json_object_object_add(sampledValue, "context", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Context)); if(strlen((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Format) > 0) json_object_object_add(sampledValue, "format", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Format)); if(strlen((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Measurand) > 0) json_object_object_add(sampledValue, "measurand", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Measurand)); if(strlen((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Phase) > 0) json_object_object_add(sampledValue, "phase", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Phase)); if(strlen((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Location) > 0) json_object_object_add(sampledValue, "location", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Location)); if(strlen((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Unit) > 0) json_object_object_add(sampledValue, "unit", json_object_new_string((char*)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[idxTrans].SampledValue[idx].Unit)); json_object_array_add(sampledValues, sampledValue); } } json_object_object_add(transactionData, "sampledValue", sampledValues); json_object_array_add(transactionDatas, transactionData); } json_object_object_add(StopTransaction, "transactionData", transactionDatas); sprintf(queuedata, "%d,[%d,\"%s\",\"StopTransaction\",%s]",(gun_index+1) ,MESSAGE_TYPE_CALL ,guid ,json_object_to_json_string_ext(StopTransaction, JSON_C_TO_STRING_PLAIN)); json_object_put(StopTransaction); // Check File "TempStopTransaction" Exist if((access(TempStopTransaction,F_OK))!=-1) { //DEBUG_INFO("TransactionRelatedQueue exist.\n"); fclose(fopen(TempStopTransaction, "w")); } else { //DEBUG_INFO("TransactionRelatedQueue not exist\n"); FILE *log = fopen(TempStopTransaction, "w+"); if(log == NULL) { //DEBUG_INFO("Can't Create File TransactionRelatedQueue \n"); return ; } else { fclose(log); } } //Add TempStopTransaction | Update TempStopTransaction // open file for writing FILE *outfile; outfile = fopen (TempStopTransaction, "a"); //DEBUG_INFO("data = %s\n", queuedata); fputs(queuedata, outfile); fputs("\n", outfile); fclose (outfile); } void checkTempStopTransaction(int gun_index) { FILE *fptr1; char ch; char str[QUEUE_MESSAGE_LENGTH]={0}; char guid[37]={0}; char tempdata[65]={0}; char connectorStr[2]={0}; char TempStopTransaction[256]; sprintf(TempStopTransaction, "/Storage/OCPP/TempStopTransaction_%d", (gun_index+1)); fptr1 = fopen(TempStopTransaction, "r"); //TempStopTransaction格式: 槍號,StopTransaction封包 if (!fptr1) { //printf(" File not found or unable to open the input file!!\n"); return ; } ch=fgetc(fptr1); //printf(" Now the content of the file %s is : \n",fname); rewind(fptr1); if(ch!=EOF) { // copy all contents to the temporary file except the specific line while (fgets(str, QUEUE_MESSAGE_LENGTH, fptr1) != NULL) { str[strlen(str) - 1] = '\0'; // eat the newline fgets() stores if(str[0]=='\0') { break; } //TempStopTransaction格式: 槍號,StopTransaction封包 strncpy(connectorStr, str, 1); if(atoi(connectorStr) != (gun_index+1)) { DEBUG_INFO("atoi(connectorStr) = %d, gun_index = %d\n", atoi(connectorStr), gun_index); fclose(fptr1); return ; } //random_uuid(guid); strncpy(guid, str+6, 36); //copy guid sprintf(tempdata, "StopTransaction,%d", (gun_index)); if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1) { //DEBUG_INFO("StopTransaction mapitem pass\n"); } queue_operation(QUEUE_OPERATION_ADD, guid, str);//addq(guid, queuedata); ---> remove temporally memset(str,0,ARRAY_SIZE(str)); } } // fptr1=freopen(NULL,"w",fptr1); // reset the fptr1 again fclose(fptr1); remove(TempStopTransaction); // remove the original file } void FillStartTransaction(int ConnectorId, unsigned char IdTag[], int MeterStart,int ReservationId,unsigned char Timestamp[]) { ShmOCPP16Data->StartTransaction[ConnectorId-1].ConnectorId = ConnectorId; ShmOCPP16Data->StartTransaction[ConnectorId-1].ReservationId = ReservationId; ShmOCPP16Data->StartTransaction[ConnectorId-1].MeterStart = MeterStart; strcpy((char *)ShmOCPP16Data->StartTransaction[ConnectorId-1].IdTag, (char *)IdTag); strcpy((char *)ShmOCPP16Data->StartTransaction[ConnectorId-1].Timestamp,(char *) Timestamp); } int GetWebSocketPingInterval(void) { return atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData); } int GetServerSign(void) { return server_sign; } uint8_t GetOcppSecurityProfile() { return atoi((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemData); } void GetOcppChargerBoxId(uint8_t *data) { sprintf((char*)data, "%s", ShmOCPP16Data->ChargeBoxId); } void GetOcppSecurityPassword(uint8_t *data) { sprintf((char*)data, "%s", ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData); } void SetOcppVersion(uint8_t *version) { for (uint8_t idx=0; idxSysConfig.OcppRunningVer = OCPP_RUNNING_VERSION_16; } else if(strstr((char*)version, "ocpp2.0") != NULL) { ShmSysConfigAndInfo->SysConfig.OcppRunningVer = OCPP_RUNNING_VERSION_20; system("pkill OcppBackend"); } } void SetServerSign(int value) { server_sign = value; } int GetBootNotificationInterval(void) { return BootNotificationInterval; } int GetInternetConn(void) { return ShmSysConfigAndInfo->SysInfo.InternetConn; } void InitialSystemValue(void) { int connectorIndex = 0; //int valueASCII = 0; server_cycle_Status = atoi((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData); gunTotalNumber=0; SystemInitial = 0; localversion=0; BootNotificationInterval = 0; authorizeRetryTimes = 0; GunStatusInterval = 10; TransactionMessageAttemptsValue = atoi((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageAttempts].ItemData); TransactionMessageRetryIntervalValue = atoi((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TransactionMessageRetryInterval].ItemData); //Hear Beat HeartBeatWithNOResponse = 0; HeartBeatWaitTime = atoi((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData);; FirstHeartBeat = 0; FirmwareStatusNotificationStatus = FIRMWARE_STATUS_IDLE; // Idle DiagnosticsStatusNotificationStatus = DIAGNOSTIC_STATUS_IDLE; // Idle memset(CurrentChargingProfileScheduleStr, 0, ARRAY_SIZE(CurrentChargingProfileScheduleStr)); memset(statusModeChage, 0, ARRAY_SIZE(statusModeChage)); memset(ChademoPreviousSystemStatus, 0, ARRAY_SIZE(ChademoPreviousSystemStatus)); memset(CcsPreviousSystemStatus, 0, ARRAY_SIZE(CcsPreviousSystemStatus)); memset(GbPreviousSystemStatus, 0, ARRAY_SIZE(GbPreviousSystemStatus)); memset(AcPreviousSystemStatus, 0, ARRAY_SIZE(AcPreviousSystemStatus)); memset(ChademoPreviousConnectorPlugIn, 0, ARRAY_SIZE(ChademoPreviousConnectorPlugIn)); memset(CcsPreviousConnectorPlugIn, 0, ARRAY_SIZE(CcsPreviousConnectorPlugIn)); memset(GbPreviousConnectorPlugIn, 0, ARRAY_SIZE(GbPreviousConnectorPlugIn)); memset(AcPreviousConnectorPlugIn, 0, ARRAY_SIZE(AcPreviousConnectorPlugIn)); memset(gunType, 0, ARRAY_SIZE(gunType)); if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') // 'D' means DC { if(ShmSysConfigAndInfo->SysConfig.ModelName[1]=='O') { // DO series for(int index=0; indexSysConfig.ModelName[index] >= 'A') && (ShmSysConfigAndInfo->SysConfig.ModelName[index] <= 'Z')) { SystemInitial = SystemInitial + 1; gunTotalNumber = gunTotalNumber + 1; gunType[connectorIndex] = ShmSysConfigAndInfo->SysConfig.ModelName[index]; connectorIndex = connectorIndex + 1; } } else { // AC Connector if ((ShmSysConfigAndInfo->SysConfig.ModelName[index] > '0') && (ShmSysConfigAndInfo->SysConfig.ModelName[index] <= '9')) { SystemInitial = SystemInitial + 1; gunTotalNumber = gunTotalNumber + 1; gunType[connectorIndex] = ShmSysConfigAndInfo->SysConfig.ModelName[index]; connectorIndex = connectorIndex + 1; } } } } //DEBUG_INFO("DC ...\n"); } else if (ShmSysConfigAndInfo->SysConfig.ModelName[0]=='A') //'A' means AC { //check connector / socket type (index: 8, 9, 10) for(int index=7; index <10 ; index++) { if ((ShmSysConfigAndInfo->SysConfig.ModelName[index] > '0') && (ShmSysConfigAndInfo->SysConfig.ModelName[index] <= '9')) { SystemInitial = SystemInitial + 1; gunTotalNumber = gunTotalNumber + 1; gunType[connectorIndex] = ShmSysConfigAndInfo->SysConfig.ModelName[index]; connectorIndex = connectorIndex + 1; //DEBUG_INFO("AC: %d, %c\n", index, ShmSysConfigAndInfo->SysConfig.ModelName[index]); } } } //Status && ConnectorPlugIn Setting for (int index = 0; index < CHAdeMO_QUANTITY; index++) { ChademoPreviousSystemStatus[index]= ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PreviousSystemStatus; ChademoPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn; } for (int index = 0; index < CCS_QUANTITY; index++) { CcsPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PreviousSystemStatus; CcsPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn; } for (int index = 0; index < GB_QUANTITY; index++) { GbPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PreviousSystemStatus; GbPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn; } for (int index = 0; index < AC_QUANTITY; index++) { AcPreviousSystemStatus[index]= ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PreviousSystemStatus; AcPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState; } for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { DoPreviousSystemStatus[index]= ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PreviousSystemStatus; DoPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PilotState; } for(int gun_index=0; gun_index < gunTotalNumber; gun_index++ ) { cpinitateMsg.bits[gun_index].StatusNotificationReq = 0; cpinitateMsg.bits[gun_index].StatusNotificationConf = 0; //clientTime.MeterValues[gun_index] = time((time_t*)NULL); clientTime.StatusNotification[gun_index] = time((time_t*)NULL); } memset( (void *)unknownkey, 0, sizeof(unknownkey)); clientTime.Heartbeat=time((time_t*)NULL); sleep(1); } void LWS_Send(char * str) { //===================================================== // Check InternetConn 0: disconnected, 1: connected //==================================================== if(GetOcppConnStatus() == 0) { DEBUG_INFO("offline now !!!\n"); return; } pthread_mutex_lock(&lock_send); memset(SendBuffer, 0, ARRAY_SIZE(SendBuffer)); sprintf((char *)SendBuffer, "%s", str); SendBufLen = strlen(str); pthread_mutex_unlock(&lock_send); lws_callback_on_writable(wsi_client); //lws_service(context, 0); //sleep(1); } void LWS_SendNow(char * str) { //===================================================== // Check InternetConn 0: disconnected, 1: connected //==================================================== if(GetOcppConnStatus() == 0) { DEBUG_INFO("offline now !!!\n"); return; } pthread_mutex_lock(&lock_send); memset(SendBuffer, 0, ARRAY_SIZE(SendBuffer)); sprintf((char *)SendBuffer, "%s", str); SendBufLen = strlen(str); pthread_mutex_unlock(&lock_send); lws_callback_on_writable(wsi_client); lws_service(context, 0); //sleep(1); }