#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: unknown key //=============================== static char unknownkey[10][36] = {0}; static int UnknownKeynum = 0; //=============================== // Gun Total Numbers //=============================== static ParsingRatedCur modelnameInfo = {0}; static int gunTotalNumber = 0; static uint8_t gunType[4] = {0}; //=============================== // Local List Version //=============================== static int locallistVersion=0; static char idTagAuthorization[32] = {0}; //=============================== // OCPP sign variable //=============================== static int server_sign = FALSE; int server_pending = FALSE; static int BootNotificationInterval = 0; //=============================== // 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}; static float periousPeriodicPowerConsumption[CONNECTOR_QUANTITY] = {0}; static float periousClockPowerConsumption[CONNECTOR_QUANTITY] = {0}; //======================================== // OCPP status/previous related variables //======================================== static int GunStatusInterval = 10; 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[21]; char parentIdTag[21]; char expiryDate[36]; char idTagstatus[16]; }idTagQuery; //============================================ // OCPP MeterValue request flag //============================================ uint8_t reqSampleMeter[CONNECTOR_QUANTITY]={0}; uint8_t reqClockAlignMeter[CONNECTOR_QUANTITY]={0}; //============================================ // OCPP HeartBeat Response Not Receive Counts //============================================ static int HeartBeatWithNOResponse = 0; //============================================ // OCPP California Pricing Requirements //============================================ static char dmsVersion[21] = {0}; 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 InterLock { unsigned char isSentUnplug[CONNECTOR_QUANTITY]; unsigned char isGetDiagnosticGoing:1; unsigned char isUpdateFirmwareGoing:1; }interLock; struct ClientTime { struct timespec Heartbeat; struct timespec StatusNotification[CONNECTOR_QUANTITY]; struct timespec StartTransaction; struct timespec StopTransaction; struct timespec MeterValues[CONNECTOR_QUANTITY]; struct timespec RemoteStartWait; struct timespec TcciQueryDeduct; struct timespec CharingProfileRefresh[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 TriggerStatusNotificationReq:1; //bit 3, unsigned char isOnCharging:1; //bit 4, unsigned char :3; //bit5~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[1]={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) }; 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) }; //========================================= // TTIA routine //========================================= int sendTTIAInfo(uint8_t gun_index) { static int sn = 0; int result = FAIL; struct hostent *server; int udp_socket_fd; struct sockaddr_in dest_addr = {0}; uint8_t tx_buf[80] = {0}; uint8_t logBuf[256]= {0}; uint8_t tx_len, tempIndex, socStart, socEnd; uint16_t PresentChargedEnergy; struct tm tmStart, tmEnd; DEBUG_INFO("sendTTIAInfo...\n"); if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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) { socStart = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatteryStartSoc; socEnd = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].EvBatterySoc; PresentChargedEnergy = (uint16_t)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PresentChargedEnergy*10); } } } else if(gunType[gun_index] == GUN_TYPE_CCS) { 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) { socStart = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatteryStartSoc; socEnd = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].EvBatterySoc; PresentChargedEnergy = (uint16_t)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PresentChargedEnergy*10); } } } else if(gunType[gun_index] == GUN_TYPE_GBT) { 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) { socStart = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatteryStartSoc; socEnd = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].EvBatterySoc; PresentChargedEnergy = (uint16_t)(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PresentChargedEnergy*10); } } } else if(gunType[gun_index] == GUN_TYPE_DO) { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { socStart = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.EvBatteryStartSoc; socEnd = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.EvBatterySoc; PresentChargedEnergy = (uint16_t)(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PresentChargedEnergy*10); } } } 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) { socStart = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].EvBatteryStartSoc; socEnd = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].EvBatterySoc; PresentChargedEnergy = (uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PresentChargedEnergy*10); } }// END } // Message assembly sprintf((char*)&tx_buf[0], "APTS"); // Protocol ID tx_buf[4] = 0x02; // Protocol Version tx_buf[5] = 0xb0; // Message ID tx_buf[6] = ShmSysConfigAndInfo->SysConfig.TTIA_Info.busVenderId & 0xff; // CustomerID low byte tx_buf[7] = (ShmSysConfigAndInfo->SysConfig.TTIA_Info.busVenderId>>8) & 0xff; // CustomerID high byte tx_buf[8] = 0x00; // CarID low byte tx_buf[9] = 0x00; // CarID high byte tx_buf[10] = 0x00; // ID Storage tx_buf[11] = 0x00; // Driver lowest byte tx_buf[12] = 0x00; // Driver 2nd byte tx_buf[13] = 0x00; // Driver 3rd byte tx_buf[14] = 0x00; // Driver highest byte tx_buf[15] = sn & 0xff; // Sequence SN low byte tx_buf[16] = (sn>>8) & 0xff; // Sequence SN high byte tx_buf[17] = 0x00; // Reserve tx_buf[18] = 60 & 0xff; // Payload length low byte tx_buf[19] = (60>>8) & 0xff; // Payload length high byte // EVSE provider memcpy((char*)&tx_buf[20], ShmSysConfigAndInfo->SysConfig.TTIA_Info.EquipmentProvider, 15); // EVSE provider tx_buf[35] = ShmSysConfigAndInfo->SysConfig.TTIA_Info.TransportationCompanyNo; // EVSE id tx_buf[36] = ShmSysConfigAndInfo->SysConfig.TTIA_Info.ChargeBoxId; // Connector id tx_buf[37] = gun_index; // EVSE station memcpy((char*)&tx_buf[38], ShmSysConfigAndInfo->SysConfig.TTIA_Info.evseStation, 15); // Vehicle SN memcpy(&tx_buf[53], &ShmOCPP16Data->StartTransaction[gun_index].IdTag, 8); // Mileage tx_buf[61] = 0x00; // lowest byte tx_buf[62] = 0x00; // 2nd byte tx_buf[63] = 0x00; // highest byte // Start date time 6 bytes if((sscanf((char*)ShmOCPP16Data->StartTransaction[gun_index].Timestamp, "%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)) { struct tm *tmTarget; struct timeb tbTarget; tmStart.tm_year -= 1900; tmStart.tm_mon -= 1; tmStart.tm_gmtoff = 0; tbTarget.time = mktime(&tmStart); tbTarget.timezone = 0; tbTarget.time += (8*3600); tmTarget = gmtime(&tbTarget.time); tx_buf[64] = ((tmTarget->tm_year+1900)-2000); tx_buf[65] = (tmTarget->tm_mon+1); tx_buf[66] = tmTarget->tm_mday; tx_buf[67] = tmTarget->tm_hour; tx_buf[68] = tmTarget->tm_min; tx_buf[69] = tmTarget->tm_sec; } // Stop date time 6 bytes if((sscanf((char*)ShmOCPP16Data->StopTransaction[gun_index].Timestamp, "%4d-%2d-%2dT%2d:%2d:%2d", &tmEnd.tm_year, &tmEnd.tm_mon, &tmEnd.tm_mday, &tmEnd.tm_hour, &tmEnd.tm_min, &tmEnd.tm_sec) == 6)) { struct tm *tmTarget; struct timeb tbTarget; tmEnd.tm_year -= 1900; tmEnd.tm_mon -= 1; tmEnd.tm_gmtoff = 0; tbTarget.time = mktime(&tmEnd); tbTarget.timezone = 0; tbTarget.time += (8*3600); tmTarget = gmtime(&tbTarget.time); tx_buf[70] = ((tmTarget->tm_year+1900)-2000); tx_buf[71] = (tmTarget->tm_mon+1); tx_buf[72] = tmTarget->tm_mday; tx_buf[73] = tmTarget->tm_hour; tx_buf[74] = tmTarget->tm_min; tx_buf[75] = tmTarget->tm_sec; } // Session energy 2 bytes tx_buf[76] = PresentChargedEnergy & 0xff; tx_buf[77] = (PresentChargedEnergy>>8) & 0xff; // Start SOC 1 byte tx_buf[78] = socStart; // Stop SOC 1 byte tx_buf[79] = socEnd; // Open socket udp_socket_fd = socket(AF_INET, SOCK_DGRAM, 0); if(udp_socket_fd == -1) { DEBUG_ERROR("UDP socket create failed!\n"); } else { // Get server DNS entry server = gethostbyname((char*)ShmSysConfigAndInfo->SysConfig.TTIA_Info.server_addr); if (server == NULL) { DEBUG_ERROR("ERROR, no such host as %s\n", ShmSysConfigAndInfo->SysConfig.TTIA_Info.server_addr); } else { // Build the server's Internet address bzero((char *) &dest_addr, sizeof(dest_addr)); dest_addr.sin_family = AF_INET; bcopy((char *)server->h_addr, (char *)&dest_addr.sin_addr.s_addr, server->h_length); dest_addr.sin_port = htons(ShmSysConfigAndInfo->SysConfig.TTIA_Info.server_port); if((tx_len = sendto(udp_socket_fd, tx_buf, ARRAY_SIZE(tx_buf), 0, &dest_addr, sizeof(dest_addr))) >= 0) { for(uint8_t idx=0;idxStopTransaction[gun_index].TransactionId); DEBUG_TTIA_INFO("TTIA server address: %s\n", ShmSysConfigAndInfo->SysConfig.TTIA_Info.server_addr); DEBUG_TTIA_INFO("TTIA server port: %d\n", ShmSysConfigAndInfo->SysConfig.TTIA_Info.server_port); DEBUG_TTIA_INFO("---------- Header ----------\n"); DEBUG_TTIA_INFO("ProtocolID: APTS\n"); DEBUG_TTIA_INFO("ProtocolVer: 0x02\n"); DEBUG_TTIA_INFO("MessageID: 0xB0\n"); DEBUG_TTIA_INFO("CustomerID: 0x%04X\n", ShmSysConfigAndInfo->SysConfig.TTIA_Info.busVenderId); DEBUG_TTIA_INFO("CarID: 0x0000\n"); DEBUG_TTIA_INFO("IDStorage: 0x00\n"); DEBUG_TTIA_INFO("DriverID: 0x00000000\n"); DEBUG_TTIA_INFO("Sequence: %d\n", sn); DEBUG_TTIA_INFO("Reserved: 0x00\n"); DEBUG_TTIA_INFO("Len: 0x3C\n"); DEBUG_TTIA_INFO("--------- Payload ---------\n"); DEBUG_TTIA_INFO("EquipmentProvider: %s\n", ShmSysConfigAndInfo->SysConfig.TTIA_Info.EquipmentProvider); DEBUG_TTIA_INFO("TransportationCompanyNo: %d\n", ShmSysConfigAndInfo->SysConfig.TTIA_Info.TransportationCompanyNo); DEBUG_TTIA_INFO("ChargeBoxId: %d\n", ShmSysConfigAndInfo->SysConfig.TTIA_Info.ChargeBoxId); DEBUG_TTIA_INFO("Gun index: %d\n", gun_index); DEBUG_TTIA_INFO("evseStation: %s\n", ShmSysConfigAndInfo->SysConfig.TTIA_Info.evseStation); DEBUG_TTIA_INFO("EV vehicle: %s\n", ShmOCPP16Data->StartTransaction[gun_index].IdTag); DEBUG_TTIA_INFO("EV mileage: 000000\n"); DEBUG_TTIA_INFO("Session start data time: %s\n", ShmOCPP16Data->StartTransaction[gun_index].Timestamp); DEBUG_TTIA_INFO("Session stop data time: %s\n", ShmOCPP16Data->StopTransaction[gun_index].Timestamp); DEBUG_TTIA_INFO("Session charged energy (kwh): %f\n", (PresentChargedEnergy/10.0)); DEBUG_TTIA_INFO("Session start SOC: %d\n", socStart); DEBUG_TTIA_INFO("Session end SOC: %d\n", socEnd); DEBUG_TTIA_INFO("=========================================\n"); sn++; result = PASS; } else { DEBUG_ERROR("UDP sent out fail.\n"); } } } return result; } //========================================= // Save configuration //========================================= int runShellCmd(const char*cmd) { int result = FAIL; char buf[256]; FILE *fp; fp = popen(cmd, "r"); if(fp != NULL) { while(fgets(buf, sizeof(buf), fp) != NULL) { DEBUG_INFO("%s\n", buf); } result = PASS; } pclose(fp); return result; } int StoreUsrConfigData(struct SysConfigData *UsrData) { int result = PASS; int fd,wrd; unsigned int i,Chk; unsigned char *ptr, *BufTmp; int MtdBlockSize = 0x300000; Chk=0; ptr=(unsigned char *)UsrData; if((BufTmp=malloc(MtdBlockSize))!=NULL) { memset(BufTmp,0,MtdBlockSize); memcpy(BufTmp,ptr,sizeof(struct SysConfigData)); for(i=ARRAY_SIZE(UsrData->CsuBootLoadFwRev);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; } 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 version desc, idx desc limit 1"); /* 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 getCurrentYear() { int result = 0; time_t CurrentTime; struct tm *tm; CurrentTime = time(NULL); tm=localtime(&CurrentTime); result = (tm->tm_year + 1900); return result; } int OCPP_insert_transaction_msg(uint8_t isStartTransaction, char *transactionMsg) { int result = PASS; char* errMsg = NULL; char sqlStr[8192]; sprintf(sqlStr, "insert into ocpp_transaction_record(occurDatetime, message_type, message_content) values(CURRENT_TIMESTAMP, '%s', '%s');", (isStartTransaction?"startTransaction":"stopTransaction"), transactionMsg); if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK) { result = FAIL; DEBUG_WARN( "Insert local transaction record error message: %s\n", errMsg); } sprintf(sqlStr, "delete from ocpp_transaction_record where (idx < (select idx from ocpp_transaction_record order by idx desc limit 1)-2000) and (occurDatetime < '%04d-01-01 00:00:00');", (getCurrentYear()-3)); if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK) { result = FAIL; DEBUG_WARN( "delete local transaction record error message: %s\n", errMsg); } return result; } int OCPP_updatePeriodEnergy(uint8_t gun_index) { int isSuccess = TRUE; int tempIndex; json_object *EnergyDataTransfer = json_object_new_object(); json_object *periodEnergys = json_object_new_object(); char sql[1024]; char zErrMsg[200]; memset(sql, 0, ARRAY_SIZE(sql)); memset(zErrMsg, 0, ARRAY_SIZE(zErrMsg)); if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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)) { json_object_object_add(EnergyDataTransfer, "txId", json_object_new_int(ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId)); for(uint8_t idxPeriod=0;idxPeriodSysInfo.ChademoChargingData[index].presentChargedEnergyPeriod);idxPeriod++) { uint8_t period[3]; sprintf((char*)period, "%d", idxPeriod); json_object_object_add(periodEnergys, (const char *)period, json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].presentChargedEnergyPeriod[idxPeriod])); } json_object_object_add(EnergyDataTransfer, "periodEnergy", periodEnergys); } //end of the same index }//end of for CHAdeMO_QUANTITY } else if(gunType[gun_index] == GUN_TYPE_CCS) { 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) { json_object_object_add(EnergyDataTransfer, "txId", json_object_new_int(ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId)); for(uint8_t idxPeriod=0;idxPeriodSysInfo.CcsChargingData[index].presentChargedEnergyPeriod);idxPeriod++) { uint8_t period[3]; sprintf((char*)period, "%d", idxPeriod); json_object_object_add(periodEnergys, (const char *)period, json_object_new_double(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].presentChargedEnergyPeriod[idxPeriod])); } json_object_object_add(EnergyDataTransfer, "periodEnergy", periodEnergys); } //end of the same index } // end of for CCS_QUANTITY } else if(gunType[gun_index] == GUN_TYPE_GBT) { 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) { json_object_object_add(EnergyDataTransfer, "txId", json_object_new_int(ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId)); for(uint8_t idxPeriod=0;idxPeriodSysInfo.GbChargingData[index].presentChargedEnergyPeriod);idxPeriod++) { uint8_t period[3]; sprintf((char*)period, "%d", idxPeriod); json_object_object_add(periodEnergys, (const char *)period, json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].presentChargedEnergyPeriod[idxPeriod])); } json_object_object_add(EnergyDataTransfer, "periodEnergy", periodEnergys); } //end of the same index } // end of for GB_QUANTITY } else if(gunType[gun_index] == GUN_TYPE_DO) { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { json_object_object_add(EnergyDataTransfer, "txId", json_object_new_int(ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId)); for(uint8_t idxPeriod=0;idxPeriodSysInfo.ConnectorInfo[index].GeneralChargingData.presentChargedEnergyPeriod);idxPeriod++) { uint8_t period[3]; sprintf((char*)period, "%d", idxPeriod); json_object_object_add(periodEnergys, (const char *)period, json_object_new_double(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.presentChargedEnergyPeriod[idxPeriod])); } json_object_object_add(EnergyDataTransfer, "periodEnergy", periodEnergys); } //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) { json_object_object_add(EnergyDataTransfer, "txId", json_object_new_int(ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId)); for(uint8_t idxPeriod=0;idxPeriodSysInfo.AcChargingData[index].presentChargedEnergyPeriod);idxPeriod++) { uint8_t period[3]; sprintf((char*)period, "%d", idxPeriod); json_object_object_add(periodEnergys, (const char *)period, json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].presentChargedEnergyPeriod[idxPeriod])); } json_object_object_add(EnergyDataTransfer, "periodEnergy", periodEnergys); }//end of the same index }//end of for AC_QUANTITY } sprintf(sql, "insert or replace into ocpp_period_energy (transactionId, connectorId, occurDatetime, periodEnergy) VALUES ('%d', '%d', CURRENT_TIMESTAMP, '%s');", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId, (gun_index+1), json_object_to_json_string_ext(EnergyDataTransfer, JSON_C_TO_STRING_PLAIN)); json_object_put(EnergyDataTransfer); //* Execute SQL statement */ if( sqlite3_exec(db, sql, callback, 0, (char **)&zErrMsg) != SQLITE_OK ) { DEBUG_WARN("SQL error: %s\n", zErrMsg); isSuccess = FALSE; } sprintf(sql, "delete from ocpp_period_energy where (occurDatetime < '%04d-01-01 00:00:00');", (getCurrentYear()-3)); if (sqlite3_exec(db, sql, 0, 0, (char **)&zErrMsg) != SQLITE_OK) { DEBUG_WARN( "delete period energy record error message: %s\n", zErrMsg); isSuccess = FALSE; } return isSuccess; } int OCPP_getPeriodEnergyToDataTransfer(int32_t transactionId) { int isSuccess = TRUE; char sql[512]; char zErrMsg[200]; int rows, cols; char **resultData; sprintf(sql, "select * from ocpp_period_energy where transactionId=%d;", transactionId); /* Execute SQL statement */ if( sqlite3_get_table(db, sql, &resultData, &rows, &cols, (char **)&zErrMsg) != SQLITE_OK) { DEBUG_WARN("SQL error: %s\n", zErrMsg); isSuccess = FALSE; } else { if((rows > 0) && (atoi(resultData[4]) > 0)) { sprintf((char*)ShmOCPP16Data->DataTransfer[0].ResponseData, "%s", resultData[7]); } else { DEBUG_WARN("There is not match transaction data.\n"); isSuccess = FALSE; } } return isSuccess; } int OCPP_insert_deduct_info(int txId, char *creditNo, uint8_t deductResult, uint8_t isDonateInvoice, double amount, char *vemData, char *ROC, char *RRN, char *approvalNo, char *storeId) { int result = PASS; char* errMsg = NULL; char sqlStr[8192]; sprintf(sqlStr, "insert or replace into report_deduct_info(txId, creditNo, deductResult, isDonateInvoice, amount, vemData, ROC, RRN, approvalNo, storeId, isUploaded) values('%d', '%s', '%d', '%d', '%.2f', '%s', '%s', '%s', '%s', '%s', '0');", txId, creditNo, deductResult, isDonateInvoice, amount, vemData, ROC, RRN, approvalNo, storeId); if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK) { result = FAIL; DEBUG_WARN( "Insert local report_deduct_info error message: %s\n", errMsg); } sprintf(sqlStr, "delete from report_deduct_info where (idx < (select idx from report_deduct_info order by idx desc limit 1)-5000);"); if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK) { result = FAIL; DEBUG_WARN( "delete local report_deduct_info error message: %s\n", errMsg); } return result; } int OCPP_update_deduct_info(int txId, char *creditNo) { int result = PASS; char* errMsg = NULL; char sqlStr[8192]; sprintf(sqlStr, "update report_deduct_info set isUploaded='1' where txId='%d' and creditNo='%s';", txId, creditNo); if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK) { result = FAIL; DEBUG_WARN( "Update local report_deduct_info error message: %s\n", errMsg); } return result; } int queryDeductCallBack(void *data, int columenCount, char **columnValue, char **columnName) { sprintf((char*)ShmOCPP16Data->DataTransfer[0].VendorId, "%s", ShmSysConfigAndInfo->SysConfig.chargePointVendor); sprintf((char*)ShmOCPP16Data->DataTransfer[0].MessageId,"%s","ID_CreditDeductResult"); sprintf((char*)ShmOCPP16Data->DataTransfer[0].Data, "{\\\"txId\\\":%d,\\\"creditNo\\\":\\\"%s\\\",\\\"deductResult\\\":%s,\\\"isDonateInvoice\\\":%s,\\\"amount\\\":%s,\\\"approvalNo\\\":\\\"%s\\\"}", atoi(columnValue[1]), columnValue[2], atoi(columnValue[3])==1?"true":"false", atoi(columnValue[4])==1?"true":"false", columnValue[5], columnValue[9]); ShmOCPP16Data->CsMsg.bits[0].DataTransferReq = 1; return 0; } void OCPP_query_deduct_info() { int rc = 0; char sql[100]; char zErrMsg[100]; sprintf(sql,"select * from report_deduct_info where isUploaded='0' order by idx limit 1"); /* Execute SQL statement */ rc = sqlite3_exec(db, sql, queryDeductCallBack, 0, (char **)&zErrMsg); if( rc != SQLITE_OK ) { DEBUG_INFO("SQL error: %s\n", zErrMsg); } } void reportReaderStatus(int gun_index) { 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); #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 sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].VendorId, "%s", ShmSysConfigAndInfo->SysConfig.chargePointVendor); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].MessageId,"%s","ID_ReaderStatus"); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].Data, "{\\\"connectorId\\\":%d,\\\"readerStatus\\\":%d,\\\"timestamp\\\":\\\"%s\\\",\\\"SerialNo\\\":\\\"%s\\\",\\\"creditNo\\\":\\\"%s\\\",\\\"VEMData\\\":\\\"%s\\\"}", (gun_index+1), ShmOCPP16Data->TcciCustomData.ReaderStatus[gun_index].readerStatus, buf, ShmOCPP16Data->TcciCustomData.SerialNo[gun_index], ShmOCPP16Data->TcciCustomData.ReaderStatus[gun_index].creditNo, ShmOCPP16Data->TcciCustomData.VEMData[gun_index]); ShmOCPP16Data->CsMsg.bits[gun_index].DataTransferReq = 1; } //========================================== // 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(uint8_t gun_index) { int result = -1; static time_t lastTime[4]; time_t t; struct tm *tmStartToday; struct timeb tbStartToday; t=time(NULL); if(difftime(t, lastTime[gun_index])>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[gun_index] = 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); } int syncDateTimeRTC(uint8_t *data) { struct ParsingResult { int result; int scanedElement; int year; int month; int mday; int hour; int min; int sec; int tz_hour; int tz_min; float minSec; }result; struct tm tmOrg; struct tm *tmTarget; struct timeb tbTarget; char buf[128]; memset(&result, 0x00, sizeof(struct ParsingResult)); result.result = PASS; if(strstr((char*)data, ".") != NULL) { // Original data with mini second if(strstr((char*)data, "Z") != NULL) { // Original data with Z result.scanedElement = sscanf((char*)data, "%d-%d-%dT%d:%d:%d.%fZ", &result.year, &result.month, &result.mday, &result.hour, &result.min, &result.sec, &result.minSec); } else { // Original data without Z result.scanedElement = sscanf((char*)data, "%d-%d-%dT%d:%d:%d.%f%d:%d", &result.year, &result.month, &result.mday, &result.hour, &result.min, &result.sec, &result.minSec, &result.tz_hour, &result.tz_min); } } else { // Original data without mini second if(strstr((char*)data, "Z") != NULL) { // Original data with Z result.scanedElement = sscanf((char*)data, "%d-%d-%dT%d:%d:%dZ", &result.year, &result.month, &result.mday, &result.hour, &result.min, &result.sec); } else { // Original data without Z result.scanedElement = sscanf((char*)data, "%d-%d-%dT%d:%d:%d%d:%d", &result.year, &result.month, &result.mday, &result.hour, &result.min, &result.sec, &result.tz_hour, &result.tz_min); } } tmOrg.tm_year = result.year - 1900; tmOrg.tm_mon = result.month - 1; tmOrg.tm_mday = result.mday; tmOrg.tm_hour = result.hour; tmOrg.tm_min = result.min; tmOrg.tm_sec = result.sec; tmOrg.tm_gmtoff = 0; tbTarget.time = mktime(&tmOrg); tbTarget.timezone = 0; tbTarget.time -= (result.tz_hour*3600) + (result.tz_min*60*(result.tz_hour>=0?1:-1)); tmTarget = gmtime(&tbTarget.time); sprintf(buf, "date -s '%04d-%02d-%02d %02d:%02d:%02d'", (tmTarget->tm_year+1900), (tmTarget->tm_mon+1), tmTarget->tm_mday, tmTarget->tm_hour, tmTarget->tm_min, tmTarget->tm_sec); //DEBUG_INFO(" org date time: %s\n", data); //DEBUG_INFO("parse date time: %s\n", buf); system(buf); system("/sbin/hwclock -w --systohc"); if(result.scanedElement < 6) result.result = FAIL; return result.result; } //========================================== // 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) { struct ParsingResult { int result; int scanedElement; int year; int month; int mday; int hour; int min; int sec; int tz_hour; int tz_min; float minSec; }; struct ParsingResult parseStart; struct ParsingResult parseStop; int result = -1; struct tm tmStart; struct timeb tbStart; struct tm tmStop; struct timeb tbStop; memset(&parseStart, 0x00, sizeof(struct ParsingResult)); memset(&parseStop, 0x00, sizeof(struct ParsingResult)); // Scan start & stop date time if(strstr((char*)start, ".") != NULL) { // Original data with mini second if(strstr((char*)start, "Z") != NULL) { // Original data with Z parseStart.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d.%fZ", &parseStart.year, &parseStart.month, &parseStart.mday, &parseStart.hour, &parseStart.min, &parseStart.sec, &parseStart.minSec); } else { // Original data without Z parseStart.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d.%f%d:%d", &parseStart.year, &parseStart.month, &parseStart.mday, &parseStart.hour, &parseStart.min, &parseStart.sec, &parseStart.minSec, &parseStart.tz_hour, &parseStart.tz_min); } } else { // Original data without mini second if(strstr((char*)start, "Z") != NULL) { // Original data with Z parseStart.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%dZ", &parseStart.year, &parseStart.month, &parseStart.mday, &parseStart.hour, &parseStart.min, &parseStart.sec); } else { // Original data without Z parseStart.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d%d:%d", &parseStart.year, &parseStart.month, &parseStart.mday, &parseStart.hour, &parseStart.min, &parseStart.sec, &parseStart.tz_hour, &parseStart.tz_min); } } if(strstr((char*)stop, ".") != NULL) { // Original data with mini second if(strstr((char*)stop, "Z") != NULL) { // Original data with Z parseStop.scanedElement = sscanf((char*)stop, "%d-%d-%dT%d:%d:%d.%fZ", &parseStop.year, &parseStop.month, &parseStop.mday, &parseStop.hour, &parseStop.min, &parseStop.sec, &parseStop.minSec); } else { // Original data without Z parseStop.scanedElement = sscanf((char*)stop, "%d-%d-%dT%d:%d:%d.%f%d:%d", &parseStop.year, &parseStop.month, &parseStop.mday, &parseStop.hour, &parseStop.min, &parseStop.sec, &parseStop.minSec, &parseStop.tz_hour, &parseStop.tz_min); } } else { // Original data without mini second if(strstr((char*)stop, "Z") != NULL) { // Original data with Z parseStop.scanedElement = sscanf((char*)stop, "%d-%d-%dT%d:%d:%dZ", &parseStop.year, &parseStop.month, &parseStop.mday, &parseStop.hour, &parseStop.min, &parseStop.sec); } else { // Original data without Z parseStop.scanedElement = sscanf((char*)stop, "%d-%d-%dT%d:%d:%d%d:%d", &parseStop.year, &parseStop.month, &parseStop.mday, &parseStop.hour, &parseStop.min, &parseStop.sec, &parseStop.tz_hour, &parseStop.tz_min); } } // Calculate date time difference if((parseStart.scanedElement >=6) && (parseStop.scanedElement >=6)) { //DEBUG_INFO("Start: %04d-%02d-%02d %02d:%02d:%02d(%02d:%02d)\n", parseStart.year, parseStart.month, parseStart.mday, parseStart.hour, parseStart.min, parseStart.sec, parseStart.tz_hour, parseStart.tz_min); //DEBUG_INFO("Stop: %04d-%02d-%02d %02d:%02d:%02d(%02d:%02d)\n", parseStop.year, parseStop.month, parseStop.mday, parseStop.hour, parseStop.min, parseStop.sec, parseStop.tz_hour, parseStop.tz_min); tmStart.tm_year = parseStart.year - 1900; tmStart.tm_mon = parseStart.month - 1; tmStart.tm_mday = parseStart.mday; tmStart.tm_hour = parseStart.hour; tmStart.tm_min = parseStart.min; tmStart.tm_sec = parseStart.sec; tmStart.tm_gmtoff = 0; tbStart.time = mktime(&tmStart); tbStart.timezone = 0; tbStart.time -= (parseStart.tz_hour*3600) + (parseStart.tz_min*60*(parseStart.tz_hour>=0?1:-1)); tmStop.tm_year = parseStop.year - 1900; tmStop.tm_mon = parseStop.month - 1; tmStop.tm_mday = parseStop.mday; tmStop.tm_hour = parseStop.hour; tmStop.tm_min = parseStop.min; tmStop.tm_sec = parseStop.sec; tmStop.tm_gmtoff = 0; tbStop.time = mktime(&tmStop); tbStop.timezone = 0; tbStop.time -= (parseStop.tz_hour*3600) + (parseStop.tz_min*60*(parseStop.tz_hour>=0?1:-1)); 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 = NO; struct ParsingResult { int result; int scanedElement; int year; int month; int mday; int hour; int min; int sec; int tz_hour; int tz_min; float minSec; }parsingResult; struct tm tmStart; struct timeb tbStart; memset(&parsingResult, 0x00, sizeof(struct ParsingResult)); if(strstr((char*)start, ".") != NULL) { // Original data with mini second if(strstr((char*)start, "Z") != NULL) { // Original data with Z parsingResult.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d.%fZ", &parsingResult.year, &parsingResult.month, &parsingResult.mday, &parsingResult.hour, &parsingResult.min, &parsingResult.sec, &parsingResult.minSec); } else { // Original data without Z parsingResult.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d.%f%d:%d", &parsingResult.year, &parsingResult.month, &parsingResult.mday, &parsingResult.hour, &parsingResult.min, &parsingResult.sec, &parsingResult.minSec, &parsingResult.tz_hour, &parsingResult.tz_min); } } else { // Original data without mini second if(strstr((char*)start, "Z") != NULL) { // Original data with Z parsingResult.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%dZ", &parsingResult.year, &parsingResult.month, &parsingResult.mday, &parsingResult.hour, &parsingResult.min, &parsingResult.sec); } else { // Original data without Z parsingResult.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d%d:%d", &parsingResult.year, &parsingResult.month, &parsingResult.mday, &parsingResult.hour, &parsingResult.min, &parsingResult.sec, &parsingResult.tz_hour, &parsingResult.tz_min); } } if(parsingResult.scanedElement >= 6) { tmStart.tm_year = parsingResult.year - 1900; tmStart.tm_mon = parsingResult.month - 1; tmStart.tm_mday = parsingResult.mday; tmStart.tm_hour = parsingResult.hour; tmStart.tm_min = parsingResult.min; tmStart.tm_sec = parsingResult.sec; tmStart.tm_gmtoff = 0; tbStart.time = mktime(&tmStart); tbStart.timezone = 0; tbStart.millitm = 0; tbStart.time -= (parsingResult.tz_hour*3600) + (parsingResult.tz_min*60*(parsingResult.tz_hour>=0?1:-1)); if(DiffTimebWithNowSec(tbStart) <= 0) result = NO; else result = YES; } else { DEBUG_WARN("Start date parsing error.\n"); } return result; } int getStartSinceRecurring(uint8_t *start, uint8_t *stop, uint8_t isDaily) { struct ParsingResult { int result; int scanedElement; int year; int month; int mday; int hour; int min; int sec; int tz_hour; int tz_min; float minSec; }; struct ParsingResult parseStart; struct ParsingResult parseStop; int result = -1; struct tm tmStart; struct timeb tbStart; struct tm tmStop; struct timeb tbStop; memset(&parseStart, 0x00, sizeof(struct ParsingResult)); memset(&parseStop, 0x00, sizeof(struct ParsingResult)); // Scan start & stop date time if(strstr((char*)start, ".") != NULL) { // Original data with mini second if(strstr((char*)start, "Z") != NULL) { // Original data with Z parseStart.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d.%fZ", &parseStart.year, &parseStart.month, &parseStart.mday, &parseStart.hour, &parseStart.min, &parseStart.sec, &parseStart.minSec); } else { // Original data without Z parseStart.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d.%f%d:%d", &parseStart.year, &parseStart.month, &parseStart.mday, &parseStart.hour, &parseStart.min, &parseStart.sec, &parseStart.minSec, &parseStart.tz_hour, &parseStart.tz_min); } } else { // Original data without mini second if(strstr((char*)start, "Z") != NULL) { // Original data with Z parseStart.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%dZ", &parseStart.year, &parseStart.month, &parseStart.mday, &parseStart.hour, &parseStart.min, &parseStart.sec); } else { // Original data without Z parseStart.scanedElement = sscanf((char*)start, "%d-%d-%dT%d:%d:%d%d:%d", &parseStart.year, &parseStart.month, &parseStart.mday, &parseStart.hour, &parseStart.min, &parseStart.sec, &parseStart.tz_hour, &parseStart.tz_min); } } if(strstr((char*)stop, ".") != NULL) { // Original data with mini second if(strstr((char*)stop, "Z") != NULL) { // Original data with Z parseStop.scanedElement = sscanf((char*)stop, "%d-%d-%dT%d:%d:%d.%fZ", &parseStop.year, &parseStop.month, &parseStop.mday, &parseStop.hour, &parseStop.min, &parseStop.sec, &parseStop.minSec); } else { // Original data without Z parseStop.scanedElement = sscanf((char*)stop, "%d-%d-%dT%d:%d:%d.%f%d:%d", &parseStop.year, &parseStop.month, &parseStop.mday, &parseStop.hour, &parseStop.min, &parseStop.sec, &parseStop.minSec, &parseStop.tz_hour, &parseStop.tz_min); } } else { // Original data without mini second if(strstr((char*)stop, "Z") != NULL) { // Original data with Z parseStop.scanedElement = sscanf((char*)stop, "%d-%d-%dT%d:%d:%dZ", &parseStop.year, &parseStop.month, &parseStop.mday, &parseStop.hour, &parseStop.min, &parseStop.sec); } else { // Original data without Z parseStop.scanedElement = sscanf((char*)stop, "%d-%d-%dT%d:%d:%d%d:%d", &parseStop.year, &parseStop.month, &parseStop.mday, &parseStop.hour, &parseStop.min, &parseStop.sec, &parseStop.tz_hour, &parseStop.tz_min); } } // Calculate date time difference if((parseStart.scanedElement >=6) && (parseStop.scanedElement >=6)) { //DEBUG_INFO("Start: %04d-%02d-%02d %02d:%02d:%02d(%02d:%02d)\n", parseStart.year, parseStart.month, parseStart.mday, parseStart.hour, parseStart.min, parseStart.sec, parseStart.tz_hour, parseStart.tz_min); //DEBUG_INFO("Stop: %04d-%02d-%02d %02d:%02d:%02d(%02d:%02d)\n", parseStop.year, parseStop.month, parseStop.mday, parseStop.hour, parseStop.min, parseStop.sec, parseStop.tz_hour, parseStop.tz_min); tmStart.tm_year = parseStart.year - 1900; tmStart.tm_mon = parseStart.month - 1; tmStart.tm_mday = parseStart.mday; tmStart.tm_hour = parseStart.hour; tmStart.tm_min = parseStart.min; tmStart.tm_sec = parseStart.sec; tmStart.tm_gmtoff = 0; tbStart.time = mktime(&tmStart); tbStart.timezone = 0; tbStart.time -= (parseStart.tz_hour*3600) + (parseStart.tz_min*60*(parseStart.tz_hour>=0?1:-1)); tmStop.tm_year = parseStop.year - 1900; tmStop.tm_mon = parseStop.month - 1; tmStop.tm_mday = parseStop.mday; tmStop.tm_hour = parseStop.hour; tmStop.tm_min = parseStop.min; tmStop.tm_sec = parseStop.sec; tmStop.tm_gmtoff = 0; tbStop.time = mktime(&tmStop); tbStop.timezone = 0; tbStop.time -= (parseStop.tz_hour*3600) + (parseStop.tz_min*60*(parseStop.tz_hour>=0?1:-1)); result = DiffTimebSec(tbStart, tbStop)%(isDaily?86400:604800); //DEBUG_INFO("getStartStop(): %d\n", result); } else { DEBUG_WARN("Start or stop date parsing error.\r\n"); } return result; } void checkChargePointMaxProfile(uint32_t durationReq, struct StructChargingProfile *targetCompositeProfile, uint8_t isUnitA) { FILE *fp; char profileFileName[128]; char *line = NULL; size_t len = 0; time_t CurrentTime; struct tm *tmComposite; struct StructChargingProfile maxProfile; struct StructChargingProfile compositeProfile; uint8_t limitMax=0; int compositePeriodIdx = 0; //uint8_t isDurationNull = FALSE; 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); if(isUnitA) sprintf((char*)compositeProfile.ChargingSchedule.ChargingRateUnit, "A"); else sprintf((char*)compositeProfile.ChargingSchedule.ChargingRateUnit, "W"); compositeProfile.ChargingSchedule.Duration = durationReq; for(int idxPeriod=0;idxPeriod/dev/null"); // Search max profile sprintf(profileFileName, "/tmp/ChargePointMaxProfile.json"); if((access(profileFileName, F_OK))!=-1) { fp = fopen(profileFileName, "r"); while(getline(&line, &len, fp) != -1) { json_object *obj = NULL; obj = json_tokener_parse(line); if(is_error(obj)) { DEBUG_ERROR("Parse MaxProfile from file error.\n"); } else { if((json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")) != maxProfile.ChargingProfileId) && (json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")) >= 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)) { 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");*/ } if(maxProfile.ChargingProfileId != -1) { if(strstr((char*)maxProfile.ChargingProfileKind, "Absolute") != NULL) { if((maxProfile.ChargingSchedule.Duration != -1)/* && (isDurationNull)*/) { 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;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 = maxProfile.ChargingSchedule.Duration; } for(int idxPeriod=0;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;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;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");*/ } // Find each profile period quantity for(int idx=0;idx 0)) { if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod) { memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod],sizeof(struct StructChargingSchedulePeriod)); compositePeriodIdx++; } else { memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod],sizeof(struct StructChargingSchedulePeriod)); } } } } DEBUG_INFO("ChargePointMaxProfile ready.\n"); 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;idxPeriod= 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; } memcpy(targetCompositeProfile, &compositeProfile, sizeof(struct StructChargingProfile)); if(line) free(line); } void checkCompositeSchedule(uint8_t connectorId, uint32_t durationReq, struct StructChargingProfile *targetCompositeProfile, uint8_t isUnitA) { 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 StructChargingProfile compositeProfile; 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); if(isUnitA) sprintf((char*)compositeProfile.ChargingSchedule.ChargingRateUnit, "A"); else sprintf((char*)compositeProfile.ChargingSchedule.ChargingRateUnit, "W"); compositeProfile.ChargingSchedule.Duration = durationReq; for(int idxPeriod=0;idxPeriod/dev/null"); /* * 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"); while(getline(&line, &len, fp) != -1) { json_object *obj = NULL; obj = json_tokener_parse(line); if(is_error(obj)) { DEBUG_ERROR("Parse txProfile from file error.\n"); } else { if((json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")) != txProfile.ChargingProfileId) && (json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")) >= 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)) { for(int idxPeriod=0;idxPeriodStartTransaction[(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 { for(int idxPeriod=0;idxPeriodStartTransaction[(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"); while(getline(&line, &len, fp) != -1) { json_object *obj = NULL; obj = json_tokener_parse(line); if(is_error(obj)) { DEBUG_ERROR("Parse TxDefaultProfile from file error.\n"); } else { if((json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")) != defaultTxProfile.ChargingProfileId) && (json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")) >= 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)) { for(int idxPeriod=0;idxPeriodStartTransaction[(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 { for(int idxPeriod=0;idxPeriodStartTransaction[(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"); while(getline(&line, &len, fp) != -1) { json_object *obj = NULL; obj = json_tokener_parse(line); if(is_error(obj)) { DEBUG_ERROR("Parse MaxProfile from file error.\n"); } else { if((json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")) != maxProfile.ChargingProfileId) && (json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")) >= 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)) { for(int idxPeriod=0;idxPeriodStartTransaction[(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 { for(int idxPeriod=0;idxPeriodStartTransaction[(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;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 = !cpinitateMsg.bits[(connectorId==0?0:connectorId-1)].isOnCharging?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;idxPeriodStartTransaction[(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;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;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;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 = !cpinitateMsg.bits[(connectorId==0?0:connectorId-1)].isOnCharging?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;idxPeriodStartTransaction[(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(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;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;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;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 = !cpinitateMsg.bits[(connectorId==0?0:connectorId-1)].isOnCharging?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;idxPeriodStartTransaction[(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;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;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) { compositeProfile.ChargingSchedule.Duration = (defaultTxProfile.ChargingSchedule.Duration>compositeProfile.ChargingSchedule.Duration)?defaultTxProfile.ChargingSchedule.Duration:compositeProfile.ChargingSchedule.Duration; 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)); } } // Delete duplicate period if(compositePeriodIdx > 1) { if(compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].Limit == compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-2].Limit) { compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].StartPeriod = -1; compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].Limit = -1; compositePeriodIdx -= 1; } } } 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)); } 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) { compositeProfile.ChargingSchedule.Duration = defaultTxProfile.ChargingSchedule.Duration; for(int idxDefPeriod=0;idxDefPeriod 0)) { if(maxProfile.ChargingProfileId != -1) { for(int idxMaxPeriod=0;idxMaxPeriod= maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod) { tmpPeriod.StartPeriod = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].StartPeriod; tmpPeriod.NumberPhases = defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].NumberPhases; if((maxProfile.ChargingSchedule.Duration > 0)) { tmpPeriod.Limit = (defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].Limit>maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit?maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit:defaultTxProfile.ChargingSchedule.ChargingSchedulePeriod[idxDefPeriod].Limit); } else { 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)); } } // Delete duplicate period if(compositePeriodIdx > 1) { if(compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].Limit == compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-2].Limit) { compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].StartPeriod = -1; compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].Limit = -1; compositePeriodIdx -= 1; } } } 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)); } 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) { if(compositePeriodIdx==0) { compositeProfile.ChargingSchedule.Duration = maxProfile.ChargingSchedule.Duration; for(int idxMaxPeriod=0;idxMaxPeriod 0)) { if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)].StartPeriod) { memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod],sizeof(struct StructChargingSchedulePeriod)); compositePeriodIdx++; } else { memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[(compositePeriodIdx==0?compositePeriodIdx:compositePeriodIdx-1)], &maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod],sizeof(struct StructChargingSchedulePeriod)); } } } } else { int lastCompositePeriodIdx = compositePeriodIdx; for(int idxMaxPeriod=0;idxMaxPeriod 0)) { if((maxProfile.ChargingSchedule.Duration >= compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].StartPeriod)) { if(maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].Limit > compositeProfile.ChargingSchedule.ChargingSchedulePeriod[lastCompositePeriodIdx-1].Limit) { tmpPeriod.StartPeriod = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod; tmpPeriod.NumberPhases = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].NumberPhases; tmpPeriod.Limit = compositeProfile.ChargingSchedule.ChargingSchedulePeriod[lastCompositePeriodIdx-1].Limit; } else { tmpPeriod.StartPeriod = maxProfile.ChargingSchedule.ChargingSchedulePeriod[idxMaxPeriod].StartPeriod; 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-1].Limit) { if(tmpPeriod.StartPeriod != compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].StartPeriod) { memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod)); compositePeriodIdx++; } else { memcpy(&compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1], &tmpPeriod , sizeof(struct StructChargingSchedulePeriod)); } } // Delete duplicate period if(compositePeriodIdx > 1) { if(compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].Limit == compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-2].Limit) { compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].StartPeriod = -1; compositeProfile.ChargingSchedule.ChargingSchedulePeriod[compositePeriodIdx-1].Limit = -1; compositePeriodIdx -= 1; } } } } } } } compositeProfile.ChargingSchedule.Duration = durationReq; 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;idxPeriod= 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; } memcpy(targetCompositeProfile, &compositeProfile, sizeof(struct StructChargingProfile)); if(line) free(line); checkChargePointMaxProfile(durationReq, &ShmOCPP16Data->MaxChargingProfile, isUnitA); 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\n"); result = FAIL; } else if ((ShmOCPP16Data = shmat(MeterSMId, NULL, 0)) == (void *) -1) { DEBUG_ERROR("shmat ShmOCPP16Data NG\n"); 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; sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Idle]); //offline MeterValue Interval TempMeterValueInterval = 0; return result; } int ProcessShareMemory() { int result = PASS; if(InitShareMemory() == FAIL) { DEBUG_ERROR("InitShareMemory NG\n"); if(ShmStatusCodeData!=NULL) { ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=1; } result = FAIL; } // Model name parsing if(RatedCurrentParsing((char*)ShmSysConfigAndInfo->SysConfig.ModelName, &modelnameInfo) != -1) { DEBUG_INFO("Model name rated power: %d\n", modelnameInfo.ratedPower); if((ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') && ((ShmSysConfigAndInfo->SysConfig.ModelName[1]=='B') || (ShmSysConfigAndInfo->SysConfig.ModelName[1]=='K') || (ShmSysConfigAndInfo->SysConfig.ModelName[1]=='O')) ) // 'D' means DC { // DO series for(int gun_index=0; gun_indexSysInfo.ConnectorInfo[index].GeneralChargingData.Index == gun_index) { periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption; periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption; DEBUG_INFO("Gun-%02d PowerConsumption: %.3f\n", gun_index, ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption); } } switch(modelnameInfo.ParsingInfo[gun_index].GunType) { case Gun_Type_Chademo: DEBUG_INFO("Gun-%02d type: Cabinet CHAdeMO\n", gun_index); break; case Gun_Type_CCS_2: DEBUG_INFO("Gun-%02d type: Cabinet CCS\n", gun_index); break; case Gun_Type_GB: DEBUG_INFO("Gun-%02d type: Cabinet GBT\n", gun_index); break; case Gun_Type_AC: DEBUG_INFO("Gun-%02d type: Cabinet AC\n", gun_index); break; default: DEBUG_WARN("Gun-%02d type: Cabinet unknown\n", gun_index); break; } } } else { for(int gun_index=0;gun_indexSysInfo.ChademoChargingData[index].Index == gun_index) { periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption; periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption; DEBUG_INFO("Gun-%02d PowerConsumption: %.3f\n", gun_index, ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption); } } break; case Gun_Type_CCS_2: gunType[gun_index] = GUN_TYPE_CCS; DEBUG_INFO("Gun-%02d type: CCS\n", gun_index); for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == gun_index) { periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption; periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption; DEBUG_INFO("Gun-%02d PowerConsumption: %.3f\n", gun_index, ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption); } } break; case Gun_Type_GB: gunType[gun_index] = GUN_TYPE_GBT; DEBUG_INFO("Gun-%02d type: GBT\n", gun_index); for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == gun_index) { periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption; periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption; DEBUG_INFO("Gun-%02d PowerConsumption: %.3f\n", gun_index, ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption); } } break; case Gun_Type_AC: gunType[gun_index] = GUN_TYPE_AC; DEBUG_INFO("Gun-%02d type: AC\n", gun_index); for (int index = 0; index < AC_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == gun_index) { periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption; periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption; DEBUG_INFO("Gun-%02d PowerConsumption: %.3f\n", gun_index, ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption); } } break; default: DEBUG_WARN("Gun-%02d type: Unknown\n", gun_index); break; } } } } else { DEBUG_ERROR("Model name parsing fail.\n"); result = FAIL; } if(result != PASS)sleep(5); return result; } void checkRemoteStart(uint8_t connectorIdInt) { uint8_t tempIndex; int result = PASS; char cmdBuf[512]; //check Transaction active if(gunType[connectorIdInt -1] == GUN_TYPE_CHAdeMO) { 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("CHAdeMO connector already reserved and idTag match.\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("CHAdeMO connector already reserved and idTag does not match.\n"); result = FAIL; 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 cause busy.\n"); result = FAIL; goto end; } }//END FOR ELSE } }// END FOR CHAdeMO_QUANTITY } else if(gunType[connectorIdInt -1] == GUN_TYPE_CCS) { 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("CCS connector already reserved and idTag match.\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("CCS connector already reserved and idTag does not match.\n"); result = FAIL; 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 cause busy.\n."); result = FAIL; goto end; } }// END FOR ELSE } }// END FOR CCS_QUANTITY } else if(gunType[connectorIdInt -1] == GUN_TYPE_GBT) { 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("GBT connector already reserved and idTag match.\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("GBT connector already reserved and idTag does not match.\n"); result = FAIL; 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("GBT connector not allow start cause busy.\n"); result = FAIL; goto end; } }// END FOR ELSE } } // END FOR GB_QUANTITY } else if(gunType[connectorIdInt -1] == GUN_TYPE_DO) { 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("Dispenser connector already reserved and idTag match.\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("Dispenser connector already reserved and idTag does not match.\n"); result = FAIL; 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("Dispenser connector not allow start cause busy.\n"); result = FAIL; 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("AC connector already reserved and idTag match.\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("AC connector already reserved and idTag does not match.\n"); result = FAIL; 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 cause busy.\n"); result = FAIL; goto end; } }//END FOR ELSE } }// END FOR AC_QUANTITY } if(ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileId > -1) { if(strcmp((char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxProfile]) == 0) { if((access("/Storage/OCPP/TxProfile_Tmp.json", F_OK))!=-1) { sprintf(cmdBuf, "mv /Storage/OCPP/TxProfile_Tmp.json /Storage/OCPP/TxProfile_%d.json", connectorIdInt); system(cmdBuf); } } else { DEBUG_WARN("Profile purpose not TxProfile.\n."); result = FAIL; } } end: if(result == PASS) { ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1; 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); } } void CheckSystemValue(void) { char filenmae[100]={0}; char str[100]={0}; int tempIndex = 0; //=============================== // send Heartbeat //=============================== if((server_sign == TRUE) && (getDiffSecNow(clientTime.Heartbeat) >= (HeartBeatWaitTime + HeartBeatWithNOResponse))) { //parameter for test sendHeartbeatRequest(0); //=========================== // Reset Waiting Time //=========================== HeartBeatWithNOResponse += 1; } //=============================== // Credit deduct report //=============================== if(ShmOCPP16Data->TcciCustomData.ReportCreditDeductReq) { OCPP_insert_deduct_info(ShmOCPP16Data->TcciCustomData.DeductInfo.txId, (char*)ShmOCPP16Data->TcciCustomData.DeductInfo.creditNo, ShmOCPP16Data->TcciCustomData.DeductInfo.deductResult, ShmOCPP16Data->TcciCustomData.DeductInfo.isDonateInvoice, ShmOCPP16Data->TcciCustomData.DeductInfo.amount, (char*)ShmOCPP16Data->TcciCustomData.DeductInfo.vemData, (char*)ShmOCPP16Data->TcciCustomData.DeductInfo.ROC,(char*)ShmOCPP16Data->TcciCustomData.DeductInfo.RRN, (char*)ShmOCPP16Data->TcciCustomData.DeductInfo.approvalNo,(char*)ShmOCPP16Data->TcciCustomData.DeductInfo.storeId); ShmOCPP16Data->TcciCustomData.ReportCreditDeductReq = FALSE; } if(getDiffSecNow(clientTime.TcciQueryDeduct) > 5) { OCPP_query_deduct_info(); refreshStartTimer(&clientTime.TcciQueryDeduct); } for(int gun_index=0;gun_index < gunTotalNumber;gun_index++) { // ClockAlign MeterValue if((server_sign == TRUE) && ((atoi((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData) > 0)?((getTimePassSinceToday(gun_index)%(atoi((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData)))==0):FALSE)) { if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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) { reqClockAlignMeter[gun_index] = 1; } }// End for CHAdeMO } else if(gunType[gun_index] == GUN_TYPE_CCS) { 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) { reqClockAlignMeter[gun_index] = 1; } } // End for CCS } else if(gunType[gun_index] == GUN_TYPE_GBT) { 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) { reqClockAlignMeter[gun_index] = 1; } }// End for GB } else if(gunType[gun_index] == GUN_TYPE_DO) { 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) { 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) { reqClockAlignMeter[gun_index] = 1; } }//End for AC } } } for(int gun_index=0;gun_index < gunTotalNumber ;gun_index++) { //========================================== // Check remote start without connector id //========================================== if(ShmOCPP16Data->MsMsg.bits.isRemoteStartWaitReq) { int connectorIdInt = -1; for(uint8_t gun_index=0;gun_indexStatusNotification[gun_index].Status, "Preparing") != NULL)) { connectorIdInt = (gun_index+1); DEBUG_INFO("Detect connector-%02d connected ready to start.\n", connectorIdInt); checkRemoteStart(connectorIdInt); ShmOCPP16Data->MsMsg.bits.isRemoteStartWaitReq = 0; break; } } if(getDiffSecNow(clientTime.RemoteStartWait) > atoi((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData)) { DEBUG_WARN("Remote start request without connector id wait link over %s seconds.\n", ShmOCPP16Data->ConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData); ShmOCPP16Data->MsMsg.bits.isRemoteStartWaitReq = 0; } } //========================================== // 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 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; SetOcppConnStatus(FALSE); 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); } //========================================== // Charger start transaction //========================================== if(/*(server_sign == TRUE) &&*/ (ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq == 1)) { ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq = 0; sendStartTransactionRequest(gun_index); refreshStartTimer(&clientTime.StartTransaction); refreshStartTimer(&clientTime.MeterValues[gun_index]); storeTempStopTransaction(gun_index); } //========================================== // Charger stop transaction //========================================== if(/*(server_sign == TRUE) &&*/ ((ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq == 1))) { ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq = 0; sendStopTransactionRequest(gun_index); OCPP_updatePeriodEnergy(gun_index); if(ShmSysConfigAndInfo->SysConfig.TTIA_Info.isEnableTTIA && (gunType[gun_index] != GUN_TYPE_AC) )sendTTIAInfo(gun_index); refreshStartTimer(&clientTime.StopTransaction); memset(&ShmOCPP16Data->SessionTarget[gun_index], 0x00, sizeof(struct StructSessionTarget)); } //========================================== // Charger OCMF message //========================================== if(/*(server_sign == TRUE) &&*/ ((ShmOCPP16Data->OcmfData[gun_index].SendOcmfDataReq == 1))) { sendOcmfByDataTransferRequest(gun_index); ShmOCPP16Data->OcmfData[gun_index].SendOcmfDataReq = 0; } //========================================== // Charger status report //========================================== //--- Check Mode Change ---// // J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DCcc if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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 != 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) && !interLock.isSentUnplug[gun_index]) { uint8_t ts[36]; getNowDatetime(ts); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].VendorId, "org.openchargealliance.costmsg"); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].MessageId, "ConnectorUnplugged"); if(strcmp((char*)dmsVersion, "2.0")==0) sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].Data, "{\\\"transactionId\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId, ts); else sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].Data, "{\\\"idTx\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId, ts); sendUnplugByDataTransferRequest(gun_index); interLock.isSentUnplug[gun_index] = 1; } else if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE)) { interLock.isSentUnplug[gun_index] = 0; } ChademoPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus; ChademoPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn; cpinitateMsg.bits[gun_index].StatusNotificationReq = 1; if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) && ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_COMPLETE) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus <= SYS_MODE_IDLE))) // 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); } } } cpinitateMsg.bits[gun_index].isOnCharging = ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_TERMINATING)?1:0); #if 1 // for TempStopTransaction if(((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_BOOTING) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_IDLE)) && (ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq == 0)) { checkTempStopTransaction(gun_index); } #endif } } } else if(gunType[gun_index] == GUN_TYPE_CCS) { 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 != 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) && !interLock.isSentUnplug[gun_index]) { uint8_t ts[36]; getNowDatetime(ts); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].VendorId, "org.openchargealliance.costmsg"); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].MessageId, "ConnectorUnplugged"); if(strcmp((char*)dmsVersion, "2.0")==0) sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].Data, "{\\\"transactionId\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId, ts); else sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].Data, "{\\\"idTx\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId, ts); sendUnplugByDataTransferRequest(gun_index); interLock.isSentUnplug[gun_index] = 1; } else if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE)) { interLock.isSentUnplug[gun_index] = 0; } CcsPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus; CcsPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn; cpinitateMsg.bits[gun_index].StatusNotificationReq = 1; if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) && ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_COMPLETE) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus <= SYS_MODE_IDLE))) // 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); } } } cpinitateMsg.bits[gun_index].isOnCharging = ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_TERMINATING)?1:0); #if 1 // for TempStopTransaction if(((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_BOOTING) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_IDLE)) && (ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq == 0)) { checkTempStopTransaction(gun_index); } #endif } } } else if(gunType[gun_index] == GUN_TYPE_GBT) { 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 != 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) && !interLock.isSentUnplug[gun_index]) { uint8_t ts[36]; getNowDatetime(ts); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].VendorId, "org.openchargealliance.costmsg"); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].MessageId, "ConnectorUnplugged"); if(strcmp((char*)dmsVersion, "2.0")==0) sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].Data, "{\\\"transactionId\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId, ts); else sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].Data, "{\\\"idTx\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId, ts); sendUnplugByDataTransferRequest(gun_index); interLock.isSentUnplug[gun_index] = 1; } else if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_IDLE)) { interLock.isSentUnplug[gun_index] = 0; } GbPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus; GbPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn; cpinitateMsg.bits[gun_index].StatusNotificationReq = 1; if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) && ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_COMPLETE) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus <= SYS_MODE_IDLE))) // 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); } } } cpinitateMsg.bits[gun_index].isOnCharging = ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_TERMINATING)?1:0); #if 1 // for TempStopTransaction if(((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_BOOTING) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_IDLE)) && (ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq == 0)) { checkTempStopTransaction(gun_index); } #endif } } } else if(gunType[gun_index] == GUN_TYPE_DO) { 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 != 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) && !interLock.isSentUnplug[gun_index]) { uint8_t ts[36]; getNowDatetime(ts); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].VendorId, "org.openchargealliance.costmsg"); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].MessageId, "ConnectorUnplugged"); if(strcmp((char*)dmsVersion, "2.0")==0) sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].Data, "{\\\"transactionId\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId, ts); else sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].Data, "{\\\"idTx\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId, ts); sendUnplugByDataTransferRequest(gun_index); interLock.isSentUnplug[gun_index] = 1; } else if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_IDLE)) { interLock.isSentUnplug[gun_index] = 0; } DoPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus; DoPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ConnectorPlugIn; cpinitateMsg.bits[gun_index].StatusNotificationReq = 1; 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_IDLE))) // 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); } } } cpinitateMsg.bits[gun_index].isOnCharging = ((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_TERMINATING)?1:0); #if 1 // for TempStopTransaction if(((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_BOOTING) || (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((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) && (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_A) && !interLock.isSentUnplug[gun_index]) { uint8_t ts[36]; getNowDatetime(ts); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].VendorId, "org.openchargealliance.costmsg"); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].MessageId, "ConnectorUnplugged"); if(strcmp((char*)dmsVersion, "2.0")==0) sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].Data, "{\\\"transactionId\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId, ts); else sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].Data, "{\\\"idTx\\\":%d,\\\"timestamp\\\":\\\"%s\\\"}", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId, ts); sendUnplugByDataTransferRequest(gun_index); interLock.isSentUnplug[gun_index] = 1; } else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE)) { interLock.isSentUnplug[gun_index] = 0; } AcPreviousSystemStatus[index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus; AcPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState; cpinitateMsg.bits[gun_index].StatusNotificationReq = 1; if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].Index == tempIndex) && ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_COMPLETE) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus <= SYS_MODE_IDLE))) // 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); } } } cpinitateMsg.bits[gun_index].isOnCharging = ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING)?1:0); #if 1 // for TempStopTransaction if(((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_BOOTING) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_IDLE)) && (ShmOCPP16Data->CpMsg.bits[gun_index].StopTransactionReq == 0)) { checkTempStopTransaction(gun_index); } #endif } }// END } if(isWebsocketSendable && (server_sign == TRUE) && (getDiffSecNow(clientTime.StatusNotification[gun_index]) >= 1) && ( (cpinitateMsg.bits[gun_index].StatusNotificationReq == 1) || (cpinitateMsg.bits[gun_index].TriggerStatusNotificationReq == 1) || ((strcmp((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData, "TRUE") == 0) && (getDiffSecNow(clientTime.StatusNotification[gun_index]) >= atoi((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemData))) ) ) { sendStatusNotificationRequest(gun_index); refreshStartTimer(&clientTime.StatusNotification[gun_index]); } //============================================== // TCCI reader status report //============================================== if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16Data->TcciCustomData.ReaderStatus[gun_index].ReportReaderStatusReq == 1)) { reportReaderStatus(gun_index); //ShmOCPP16Data->TcciCustomData.ReaderStatus[gun_index].ReportReaderStatusReq = 0; } //============================================== // CSU Trigger or timer timeout refresh Smart Charging Profile //============================================== if((ShmOCPP16Data->CSUMsg.bits[gun_index].ChargingProfileReq == 1) || ((cpinitateMsg.bits[gun_index].isOnCharging) && (atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData) > 0) && (getDiffSecNow(clientTime.CharingProfileRefresh[gun_index]) > atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData)))) { checkCompositeSchedule(gun_index+1, 86400, &ShmOCPP16Data->SmartChargingProfile[gun_index], TRUE); ShmOCPP16Data->CSUMsg.bits[gun_index].ChargingProfileReq = 0; refreshStartTimer(&clientTime.CharingProfileRefresh[gun_index]); } //============================================== // 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; } // Clock-aligned Meter value if(isWebsocketSendable && (reqClockAlignMeter[gun_index] == 1)) { sendMeterValuesRequest(gun_index, ReadingContext_Sample_Clock); reqClockAlignMeter[gun_index] = 0; } // Sample period MeterValue if(((getDiffSecNow(clientTime.MeterValues[gun_index]) >= ((atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData))>3?(atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData)- 1):3)))) { //check Transaction active if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING)) { reqSampleMeter[gun_index] = 1; } } }//End for AC } if(reqSampleMeter[gun_index] == 1) { if(atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValueSampleInterval].ItemData)>0) sendMeterValuesRequest(gun_index, ReadingContext_Sample_Periodic); storeTempStopTransaction(gun_index); reqSampleMeter[gun_index] = 0; } refreshStartTimer(&clientTime.MeterValues[gun_index]); } //============================================== // Check Connector reserved //============================================== //=============================== // Check if Reserve is expired //=============================== if((server_sign == TRUE) && (ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate[0] != 0)) { if(isOvertNow(ShmOCPP16Data->ReserveNow[gun_index].ExpiryDate)) { 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 DiagnosticsStatusNotificationReq //========================================== if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq == 1)) { sendDiagnosticsStatusNotificationRequest((char *)ShmOCPP16Data->DiagnosticsStatusNotification.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); ShmOCPP16Data->CsMsg.bits[gun_index].CancelReservationConf = 0; } //========================================== // 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; } if(isWebsocketSendable && (server_sign == TRUE) && (ShmOCPP16Data->SpMsg.bits.SignCertificateReq == 1) && (access("/Storage/OCPP/certCP.csr",F_OK) != -1)) { sendSignCertificateRequest(); } } } //========================================== // 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("Local Authorization Fail, Card %s is not in local cache and list.\n", ShmSysConfigAndInfo->SysConfig.UserId); } else if(strcmp(idTagQuery.idTagstatus,"Accepted") != 0) { DEBUG_INFO("Local Authorization Fail, Card %s is not Accepted.\n", idTagQuery.idTagstr); } if(!GetOcppConnStatus()) { DEBUG_INFO("off-line Local Authorization Fail.\n"); strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ExpiryDate, idTagQuery.expiryDate); strcpy((char *)ShmOCPP16Data->Authorize.ResponseIdTagInfo.ParentIdTag, idTagQuery.parentIdTag); 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, idTagQuery.parentIdTag); 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 sendUnplugByDataTransferRequest(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,[%d,\"%s\",\"DataTransfer\",{\"vendorId\":\"%s\",\"messageId\":\"%s\",\"data\":\"%s\"}]", (gun_index+1), MESSAGE_TYPE_CALL, guid, ShmOCPP16Data->DataTransfer[gun_index].VendorId, ShmOCPP16Data->DataTransfer[gun_index].MessageId, ShmOCPP16Data->DataTransfer[gun_index].Data); sprintf(tempdata, "DataTransfer,%d", (gun_index + 1)); if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1) { result = PASS; DEBUG_INFO("DataTransfer mapItem pass\n"); } queue_operation(QUEUE_OPERATION_ADD, guid, message); return result; } int sendOcmfByDataTransferRequest(int gun_index) { sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].VendorId, (char*)ShmSysConfigAndInfo->SysConfig.chargePointVendor); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].MessageId, "ID_OCMF"); sprintf((char*)ShmOCPP16Data->DataTransfer[gun_index].Data, "{\\\"txId\\\":%d,\\\"dataString\\\":\\\"%s\\\",\\\"publicKey\\\":\\\"%s\\\"}", ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId, ShmOCPP16Data->OcmfData[gun_index].DataString, ShmOCPP16Data->OcmfData[gun_index].PublicKey); mtrace(); char message[3000]={0}; char guid[37]={0}; char tempdata[65]={0}; int result = FAIL; random_uuid(guid); sprintf(message,"%d,[%d,\"%s\",\"DataTransfer\",{\"vendorId\":\"%s\",\"messageId\":\"%s\",\"data\":\"%s\"}]", (gun_index+1), MESSAGE_TYPE_CALL, guid, ShmOCPP16Data->DataTransfer[gun_index].VendorId, ShmOCPP16Data->DataTransfer[gun_index].MessageId, ShmOCPP16Data->DataTransfer[gun_index].Data); sprintf(tempdata, "DataTransfer,%d", (gun_index + 1)); if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == 1) { result = PASS; DEBUG_INFO("DataTransfer mapItem pass\n"); } queue_operation(QUEUE_OPERATION_ADD, guid, message); 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; refreshStartTimer(&clientTime.MeterValues[gun_index]); //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DCcc if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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; periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption; } } } else if(gunType[gun_index] == GUN_TYPE_CCS) { 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; periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption; } } } else if(gunType[gun_index] == GUN_TYPE_GBT) { 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; periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption; } } } else if(gunType[gun_index] == GUN_TYPE_DO) { 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; periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption; } } } 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; periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption; } } } 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 OCPP_insert_transaction_msg(YES, queuedata); 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; uint8_t isStateChanged = TRUE; uint8_t isContentIllegal = TRUE; DEBUG_INFO("sendStatusNotificationRequest...\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 //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] == GUN_TYPE_CHAdeMO) { 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 = Preparing; //OCPP Status: Preparing } else { currentStatus = Available; //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 = Preparing; //OCPP Status: Preparing } else if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_CHARGING) //S_CHARGING { currentStatus = Charging; //OCPP Status: Charging } else if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_COMPLETE) //S_COMPLETE { currentStatus = Finishing; //OCPP Status: Finishing } else if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_TERMINATING) // S_TERMINATING ---> SuspendedEV { currentStatus = SuspendedEV; //OCPP Status: SuspendedEV } else if ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_BOOTING) || (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 = Unavailable; //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 = Faulted; //OCPP Status: Faulted } else if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_RESERVATION) // ---> Reserved { currentStatus = Reserved; //OCPP Status: Reserved } } //end of the same index }//end of for CHAdeMO_QUANTITY } else if(gunType[gun_index] == GUN_TYPE_CCS) { 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 = Preparing; //OCPP Status: Preparing } else { currentStatus = Available; //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 = Preparing; //OCPP Status: Preparing } else if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_CHARGING) //S_CHARGING { currentStatus = Charging; //OCPP Status: Charging } else if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_COMPLETE) //S_COMPLETE { currentStatus = Finishing; //OCPP Status: Finishing } else if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_TERMINATING) //S_TERMINATING ---> SuspendedEV { currentStatus = SuspendedEV; //OCPP Status: SuspendedEV } else if ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_BOOTING) || (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 = Unavailable; //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 = Faulted; //OCPP Status: Faulted } else if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus == SYS_MODE_RESERVATION) // ---> Reserved { currentStatus = Reserved; //OCPP Status: Reserved } } //end of the same index } // end of for CCS_QUANTITY } else if(gunType[gun_index] == GUN_TYPE_GBT) { 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 = Preparing; //OCPP Status: Preparing } else { currentStatus = Available; //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 = Preparing; //OCPP Status: Preparing } else if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_CHARGING) //S_CHARGING { currentStatus = Charging; //OCPP Status: Charging } else if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_COMPLETE) //S_COMPLETE { currentStatus = Finishing; //OCPP Status: Finishing } else if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_TERMINATING) // S_TERMINATING ---> SuspendedEV { currentStatus = SuspendedEV; //OCPP Status: SuspendedEV } else if ((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_BOOTING) || (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 = Unavailable; //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 = Faulted; //OCPP Status: Faulted } else if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus == SYS_MODE_RESERVATION) // ---> Reserved { currentStatus = Reserved; //OCPP Status: Reserved } } //end of the same index } // end of for GB_QUANTITY } else if(gunType[gun_index] == GUN_TYPE_DO) { 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 = Preparing; //OCPP Status: Preparing } else { currentStatus = Available; //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 = Preparing; //OCPP Status: Preparing } else if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_CHARGING) //S_CHARGING { currentStatus = Charging; //OCPP Status: Charging } else if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_COMPLETE) //S_COMPLETE { currentStatus = Finishing; //OCPP Status: Finishing } else if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_TERMINATING) // S_TERMINATING ---> SuspendedEV { currentStatus = SuspendedEV; //OCPP Status: SuspendedEV } else if ((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_BOOTING) || (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 = Unavailable; //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 = Faulted; //OCPP Status: Faulted } else if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus == SYS_MODE_RESERVATION) // ---> Reserved { currentStatus = Reserved; //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 = Preparing; //OCPP Status: Preparing } else { currentStatus = Available; //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 = Preparing; //OCPP Status: Preparing } else if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_CHARGING) //SYS_MODE_CHARGING { currentStatus = Charging; //OCPP Status: Charging } else if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_COMPLETE) //SYS_MODE_COMPLETE { currentStatus = Finishing; //OCPP Status: Finishing } else if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_TERMINATING) // S_TERMINATING ---> SuspendedEV { if((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState == CP_STATE_B)) currentStatus = SuspendedEV; //OCPP Status: SuspendedEV else currentStatus = SuspendedEVSE; //OCPP Status: SuspendedEVSE } else if ((ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_BOOTING) || (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 = Unavailable; //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 = Faulted; //OCPP Status: Faulted } else if (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus == SYS_MODE_RESERVATION) // ---> Reserved { currentStatus = Reserved; //OCPP Status: Reserved } }//end of the same index }//end of for AC_QUANTITY } //it's option if(((strstr((char *)ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[currentStatus]) != NULL) || (((currentStatus == SuspendedEV) || (currentStatus == SuspendedEVSE)) && ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStopTransactionReq)) && !cpinitateMsg.bits[gun_index].TriggerStatusNotificationReq && (strcmp((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData, "TRUE") != 0)) { isStateChanged = FALSE; } cpinitateMsg.bits[gun_index].TriggerStatusNotificationReq = 0; strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].Timestamp, buf); strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].VendorId, (char*)ShmSysConfigAndInfo->SysConfig.chargePointVendor); strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].Status, ChargePointStatusStr[currentStatus]); isContentIllegal = TRUE; for(int index = 0; index < ARRAY_SIZE(ChargePointErrorCodeStr); index++) { if(strcmp((char *)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode, ChargePointErrorCodeStr[index])==0) { isContentIllegal = FALSE; break; } } if(isContentIllegal) { //DEBUG_WARN("Detect illegal ErrorCode: %s \n",(char *)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode); strcpy((char *)ShmOCPP16Data->StatusNotification[gun_index].ErrorCode, ChargePointErrorCodeStr[6]); } 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) && isStateChanged) { cpinitateMsg.bits[gun_index].StatusNotificationReq = 0; cpinitateMsg.bits[gun_index].TriggerStatusNotificationReq = 0; 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 { cpinitateMsg.bits[gun_index].StatusNotificationReq = 0; cpinitateMsg.bits[gun_index].TriggerStatusNotificationReq = 0; 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] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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(struct StructMeterValue)); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].TimeStamp, buf); //================================= // Transaction_Begin //================================= //================================= // Transaction_End //================================= // ================================= Current.Import L1 =============================================== if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Current.Import") != NULL) { //J: CHAdeMO U: CCS1 combo E: CCS2 combo G : GBT DC if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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 ============================================== if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Energy.Active.Import.Interval") != NULL) { //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// PresentChargedEnergy is 0~6553.5 kWh periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption; } }// END OF CHAdeMO_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == GUN_TYPE_CCS) { 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, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// PresentChargedEnergy is 0~6553.5 kWh periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption; } }// END OF CCS_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == GUN_TYPE_GBT) { 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, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// PresentChargedEnergy is 0~6553.5 kWh periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption; } }// END OF GB_QUANTITY strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].SampledValue[2].Phase,PhaseStr[L3_N]); } else if(gunType[gun_index] == GUN_TYPE_DO) { 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, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// PresentChargedEnergy is 0~6553.5 kWh periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption; } } 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, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// PresentChargedEnergy is 0~6553.5 kWh periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption; } }// 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 ================================================== if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Power.Active.Import") != NULL) { //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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 ==================================== if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Voltage") != NULL) { //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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 ================================ if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, MeasurandStr[SoC]) != NULL) { //J : CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if((gunType[gun_index] == GUN_TYPE_CHAdeMO)||(gunType[gun_index] == GUN_TYPE_CCS)||(gunType[gun_index] == GUN_TYPE_GBT)||(gunType[gun_index] == GUN_TYPE_DO)) { if((ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') && (gunType[gun_index] != GUN_TYPE_DO)) { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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 =============================================== if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Current.Import") != NULL) { // AC 3 phse L2 current if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2]=='Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D'))) { 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 =============================================== if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Current.Import") != NULL) { // AC 3 phse L3 current if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2]=='Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D'))) { 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 ==================================== if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Voltage") != NULL) { // AC 3 phse L2 voltage if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2]=='Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D'))) { 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 ==================================== if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Voltage") != NULL) { // AC 3 phse L3 voltage if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2]=='Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D'))) { 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 ================================ if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, MeasurandStr[SoC]) != NULL) { //J : CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if((gunType[gun_index] == GUN_TYPE_CHAdeMO)||(gunType[gun_index] == GUN_TYPE_CCS)||(gunType[gun_index] == GUN_TYPE_GBT)||(gunType[gun_index] == GUN_TYPE_DO)) { if((ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') && (gunType[gun_index] != GUN_TYPE_DO)) { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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 OCPP_insert_transaction_msg(NO, queuedata); //----------------------------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 = (cpinitateMsg.bits[gun_index].isOnCharging? 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); if(dataType == ReadingContext_Sample_Clock) { struct tm *tmTarget; struct timeb tbTarget; tbTarget.time = mktime(tm); tbTarget.time -= (atoi((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[ClockAlignedDataInterval].ItemData)); tmTarget = gmtime(&tbTarget.time); strftime(buf,28,"%Y-%m-%dT%H:%M:%SZ", tmTarget); } else { 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]); //********************************(1)Current.Import L1************************************************/ if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Current_Import]) != NULL)) || ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Current_Import]) != NULL)) || (dataType == ReadingContext_Trigger)) { //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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]); } //********************************(2)Energy.Active.Import.Register ************************************************/ if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Energy_Active_Import_Register]) != NULL)) || ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Energy_Active_Import_Register]) != NULL)) || (dataType == ReadingContext_Trigger)) { //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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, "%.3f" ,ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Phase, PhaseStr[L3_N]); } else if(gunType[gun_index] == GUN_TYPE_CCS) { 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, "%.3f" ,ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Phase, PhaseStr[L3_N]); } else if(gunType[gun_index] == GUN_TYPE_GBT) { 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, "%.3f" ,ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption ); } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[1].Phase, PhaseStr[L3_N]); } else if(gunType[gun_index] == GUN_TYPE_DO) { 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, "%.3f" ,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, "%.3f" ,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]); } //****************************************************(3)Energy.Active.Import.Interval*********************************************/ if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Energy_Active_Import_Interval]) != NULL)) || ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Energy_Active_Import_Interval]) != NULL)) || (dataType == ReadingContext_Trigger)) { //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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(dataType == ReadingContext_Sample_Clock) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption - periousClockPowerConsumption[gun_index])); periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption; } else if(dataType == ReadingContext_Sample_Periodic) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index])); periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption; } else { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "0.000"); } } } // END OF FOR CHAdeMO_QUANTITY strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Phase, PhaseStr[L3_N]); } else if(gunType[gun_index] == GUN_TYPE_CCS) { 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(dataType == ReadingContext_Sample_Clock) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption - periousClockPowerConsumption[gun_index])); periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption; } else if(dataType == ReadingContext_Sample_Periodic) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index])); periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption; } else { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "0.000"); } } } // END OF CCS_QUANTITY strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Phase, PhaseStr[L3_N]); } else if(gunType[gun_index] == GUN_TYPE_GBT) { 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(dataType == ReadingContext_Sample_Clock) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption - periousClockPowerConsumption[gun_index])); periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption; } else if(dataType == ReadingContext_Sample_Periodic) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index])); periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption; } else { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "0.000"); } } } // END OF GB_QUANTITY strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Phase, PhaseStr[L3_N]); } else if(gunType[gun_index] == GUN_TYPE_DO) { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { if(dataType == ReadingContext_Sample_Clock) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption - periousClockPowerConsumption[gun_index])); periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption; } else if(dataType == ReadingContext_Sample_Periodic) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption - periousPeriodicPowerConsumption[gun_index])); periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption; } else { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "0.000"); } } } 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) { if(dataType == ReadingContext_Sample_Clock) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption - periousClockPowerConsumption[gun_index])); periousClockPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption; } else if(dataType == ReadingContext_Sample_Periodic) { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index])); periousPeriodicPowerConsumption[gun_index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption; } else { sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[2].Value, "0.000"); } } } 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]); } //********************************(4)Power.Active.Import************************************************/ if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Power_Active_Import]) != NULL)) || ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Power_Active_Import]) != NULL)) || (dataType == ReadingContext_Trigger)) { //J : CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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]); } //***********************************************(5)VOLTAGE L1******************************************************/ if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Voltage]) != NULL)) || ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Voltage]) != NULL)) || (dataType == ReadingContext_Trigger)) { //J : CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[SoC]) != NULL)) || ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[SoC]) != NULL)) || (dataType == ReadingContext_Trigger)) { if((gunType[gun_index] == GUN_TYPE_CHAdeMO)||(gunType[gun_index] == GUN_TYPE_CCS)||(gunType[gun_index] == GUN_TYPE_GBT)||(gunType[gun_index] == GUN_TYPE_DO)) { //idx_sample=5; //sampledValue = NULL; if((ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') && (gunType[gun_index] != GUN_TYPE_DO)) { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { //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] == GUN_TYPE_CCS) { //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] == GUN_TYPE_GBT) { //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] == GUN_TYPE_DO) { //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************************************************/ if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Current_Import]) != NULL)) || ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Current_Import]) != NULL)) || (dataType == ReadingContext_Trigger)) { // Only for AC 3 phase if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D'))) { 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************************************************/ if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Current_Import]) != NULL)) || ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Current_Import]) != NULL)) || (dataType == ReadingContext_Trigger)) { // Only for AC 3 phase if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D'))) { 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(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Voltage]) != NULL)) || ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Voltage]) != NULL)) || (dataType == ReadingContext_Trigger)) { if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D'))) { 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(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Voltage]) != NULL)) || ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Voltage]) != NULL)) || (dataType == ReadingContext_Trigger)) { if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D'))) { 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]); } //***********************************************(11)Current.Offered******************************************************/ if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Current_Offered]) != NULL)) || ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Current_Offered]) != NULL)) || (dataType == ReadingContext_Trigger)) { //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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[10].Value, "%d", (uint16_t) (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].CurrentOffered/10)); } } // END OF FOR CHAdeMO_QUANTITY } else if(gunType[gun_index] == GUN_TYPE_CCS) { 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[10].Value, "%d", (uint16_t) (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].CurrentOffered/10)); } } // END OF CCS_QUANTITY } else if(gunType[gun_index] == GUN_TYPE_GBT) { 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[10].Value, "%d", (uint16_t) (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].CurrentOffered/10)); } } // END OF GB_QUANTITY } else if(gunType[gun_index] == GUN_TYPE_DO) { 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[10].Value, "%d", (uint16_t) (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.CurrentOffered/10)); } } } 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) { uint16_t currentOffer; if(ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent == 0) { currentOffer = ShmSysConfigAndInfo->SysConfig.RatingCurrent; } else { currentOffer = ((ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent>ShmSysConfigAndInfo->SysConfig.RatingCurrent)?ShmSysConfigAndInfo->SysConfig.RatingCurrent:ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent); } sprintf((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[10].Value, "%d", currentOffer); } } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[10].Context, ReadingContextStr[dataType]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[10].Format, ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[10].Measurand, MeasurandStr[Current_Offered]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[10].Location, LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[10].Unit,UnitOfMeasureStr[UnitOfMeasure_A]); } //***********************************************(12)Power.Offered******************************************************/ if(((dataType == ReadingContext_Sample_Clock) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, MeasurandStr[Power_Offered]) != NULL) && (gunType[gun_index] != GUN_TYPE_AC)) || ((dataType == ReadingContext_Sample_Periodic) && (strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, MeasurandStr[Power_Offered]) != NULL) && (gunType[gun_index] != GUN_TYPE_AC)) || ((dataType == ReadingContext_Trigger) && (gunType[gun_index] != GUN_TYPE_AC))) { //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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[11].Value, "%d", (uint32_t) (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerOffered*100)); } } // END OF FOR CHAdeMO_QUANTITY } else if(gunType[gun_index] == GUN_TYPE_CCS) { 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[11].Value, "%d", (uint32_t) (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerOffered*100)); } } // END OF CCS_QUANTITY } else if(gunType[gun_index] == GUN_TYPE_GBT) { 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[11].Value, "%d", (uint32_t) (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerOffered*100)); } } // END OF GB_QUANTITY } else if(gunType[gun_index] == GUN_TYPE_DO) { 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[11].Value, "%d", (uint32_t) (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerOffered*100)); } } } strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[11].Context, ReadingContextStr[dataType]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[11].Format, ValueFormatStr[Raw]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[11].Measurand, MeasurandStr[Power_Offered]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[11].Location, LocationStr[Location_Outlet]); strcpy((char *)ShmOCPP16Data->MeterValues[gun_index].MeterValue[0].SampledValue[11].Unit,UnitOfMeasureStr[UnitOfMeasure_W]); } // 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 > 0) || (strstr((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemData, "TRUE")))) queue_operation(QUEUE_OPERATION_ADD, guid, queuedata ); else { if(FirstHeartBeat) LWS_Send(queuedata +2); } return result; } int sendLogStatusNotificationRequest(char *status) { mtrace(); int result = PASS; char message[4096]={0}; char guid[37]={0}; char tempdata[128]={0}; json_object *LogStatusNotification = json_object_new_object(); DEBUG_INFO("sendLogStatusNotificationRequest...\n"); ShmOCPP16Data->LogStatusNotification.requestId = ShmOCPP16Data->GetLog.requestId; sprintf((char *)ShmOCPP16Data->LogStatusNotification.status,"%s",(const char *)status); json_object_object_add(LogStatusNotification, "status", json_object_new_string((char*)ShmOCPP16Data->LogStatusNotification.status)); json_object_object_add(LogStatusNotification, "requestId", json_object_new_int(ShmOCPP16Data->LogStatusNotification.requestId)); random_uuid(guid); sprintf(message,"[%d,\"%s\",\"LogStatusNotification\",%s]",MESSAGE_TYPE_CALL, guid, json_object_to_json_string_ext(LogStatusNotification, JSON_C_TO_STRING_PLAIN)); json_object_put(LogStatusNotification); LWS_Send(message); sprintf(tempdata, "LogStatusNotification,%d", 0); if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == PASS) { result = PASS; } ShmOCPP16Data->SpMsg.bits.LogStatusNotificationReq = 0; ShmOCPP16Data->SpMsg.bits.LogStatusNotificationConf = 0; return result; } int sendSecurityEventNotificationRequest() { mtrace(); int result = PASS; char message[4096]={0}; char guid[37]={0}; char tempdata[128]={0}; json_object *SecurityEventNotification = json_object_new_object(); DEBUG_INFO("sendSecurityEventNotificationRequest...\n"); json_object_object_add(SecurityEventNotification, "type", json_object_new_string((char*)ShmOCPP16Data->SecurityEventNotification.type)); json_object_object_add(SecurityEventNotification, "timestamp", json_object_new_string((char*)ShmOCPP16Data->SecurityEventNotification.timestamp)); json_object_object_add(SecurityEventNotification, "techInfo", json_object_new_string((char*)ShmOCPP16Data->SecurityEventNotification.techInfo)); random_uuid(guid); sprintf(message,"[%d,\"%s\",\"%s\",%s]",MESSAGE_TYPE_CALL, guid, "SecurityEventNotification", json_object_to_json_string_ext(SecurityEventNotification, JSON_C_TO_STRING_PLAIN)); json_object_put(SecurityEventNotification); LWS_Send(message); sprintf(tempdata, "SecurityEventNotification,0"); if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == PASS) { result = PASS; } ShmOCPP16Data->SpMsg.bits.SecurityEventNotificationReq = 0; ShmOCPP16Data->SpMsg.bits.SecurityEventNotificationConf = 0; return result; } int sendSignCertificateRequest() { mtrace(); int result = PASS; char message[4096]={0}; char guid[37]={0}; char tempdata[128]={0}; json_object *SignCertificate = json_object_new_object(); DEBUG_INFO("sendSignCertificateRequest...\n"); // Read csr file content memset(ShmOCPP16Data->SignCertificate.csr, 0x00, ARRAY_SIZE(ShmOCPP16Data->SignCertificate.csr)); FILE *fp=fopen("/Storage/OCPP/certCP.csr","r"); char *line = NULL; size_t len = 0; while(getline(&line, &len, fp) != -1) { if((strstr(line, "BEGIN CERTIFICATE REQUEST") == NULL) && (strstr(line, "END CERTIFICATE REQUEST") == NULL)) { memcpy(&ShmOCPP16Data->SignCertificate.csr[strlen((char*)ShmOCPP16Data->SignCertificate.csr)], line, (strlen(line)-1)); } } fclose(fp); json_object_object_add(SignCertificate, "csr", json_object_new_string((char*)ShmOCPP16Data->SignCertificate.csr)); random_uuid(guid); sprintf(message,"[%d,\"%s\",\"%s\",%s]",MESSAGE_TYPE_CALL, guid, "SignCertificate", json_object_to_json_string_ext(SignCertificate, JSON_C_TO_STRING_PLAIN)); json_object_put(SignCertificate); LWS_Send(message); sprintf(tempdata, "SignCertificate,0"); if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == PASS) { result = PASS; } ShmOCPP16Data->SpMsg.bits.SignCertificateReq = 0; ShmOCPP16Data->SpMsg.bits.SignCertificateConf = 0; return result; } int sendSignedFirmwareStatusNotificationRequest(char *status) { mtrace(); int result = PASS; char message[110]={0}; char guid[37]={0}; char tempdata[65]={0}; json_object *FirmwareStatusNotification = json_object_new_object(); DEBUG_INFO("sendSignedFirmwareStatusNotificationRequest...\n"); sprintf((char *)ShmOCPP16Data->SignedFirmwareStatusNotification.status , "%s", (const char *)status); ShmOCPP16Data->SignedFirmwareStatusNotification.requestId = ShmOCPP16Data->SignedUpdateFirmware.requestId; json_object_object_add(FirmwareStatusNotification, "status", json_object_new_string((char*)ShmOCPP16Data->SignedFirmwareStatusNotification.status)); json_object_object_add(FirmwareStatusNotification, "requestId", json_object_new_int(ShmOCPP16Data->SignedFirmwareStatusNotification.requestId)); random_uuid(guid); sprintf(message,"[%d,\"%s\",\"FirmwareStatusNotification\",%s]",MESSAGE_TYPE_CALL, guid, json_object_to_json_string_ext(FirmwareStatusNotification, JSON_C_TO_STRING_PLAIN)); json_object_put(FirmwareStatusNotification); LWS_Send(message); sprintf(tempdata, "FirmwareStatusNotification,%d", 0); if(hashmap_operation(HASH_OP_ADD, guid, tempdata) == PASS) { result = PASS; } ShmOCPP16Data->SpMsg.bits.SignedFirmwareStatusNotificationReq = 0; ShmOCPP16Data->SpMsg.bits.SignedFirmwareStatusNotificationConf = 0; 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; 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}]}}]" ,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 ,ShmOCPP16Data->GetCompositeSchedule[CompositeScheduleIndex].ResponseChargingSchedule.ChargingRateUnit[0]=='W'?modelnameInfo.ratedPower:(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[1024*10]={0}; DEBUG_INFO("sendGetConfigurationConfirmation...\n"); MaxKeySupported = atoi((const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData); 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; } int sendCertificateSignedConfirmation(char *uuid) { mtrace(); int result = PASS; char message[4096]={0}; json_object *CertificateSigned = json_object_new_object(); DEBUG_INFO("sendCertificateSignedConfirmation...\n"); json_object_object_add(CertificateSigned, "status", json_object_new_string((char*)ShmOCPP16Data->CertificateSigned.Response_status)); sprintf(message,"[%d,\"%s\",%s]" ,MESSAGE_TYPE_CALLRESULT ,uuid ,json_object_to_json_string_ext(CertificateSigned, JSON_C_TO_STRING_PLAIN)); json_object_put(CertificateSigned); LWS_Send(message); return result; } int sendDeleteCertificateConfirmation(char *uuid) { mtrace(); int result = PASS; char message[4096]={0}; json_object *DeleteCertificate = json_object_new_object(); DEBUG_INFO("sendDeleteCertificateConfirmation...\n"); json_object_object_add(DeleteCertificate, "status", json_object_new_string((char*)ShmOCPP16Data->DeleteCertificate.Response_status)); sprintf(message,"[%d,\"%s\",%s]" ,MESSAGE_TYPE_CALLRESULT ,uuid ,json_object_to_json_string_ext(DeleteCertificate, JSON_C_TO_STRING_PLAIN)); json_object_put(DeleteCertificate); LWS_Send(message); return result; } int sendExtendedTriggerMessageConfirmation(char *uuid) { mtrace(); int result = PASS; char message[4096]={0}; json_object *ExtendedTriggerMessage = json_object_new_object(); DEBUG_INFO("sendExtendedTriggerMessageConfirmation...\n"); json_object_object_add(ExtendedTriggerMessage, "status", json_object_new_string((char*)ShmOCPP16Data->ExtendedTriggerMessage.Response_status)); sprintf(message,"[%d,\"%s\",%s]" ,MESSAGE_TYPE_CALLRESULT ,uuid ,json_object_to_json_string_ext(ExtendedTriggerMessage, JSON_C_TO_STRING_PLAIN)); json_object_put(ExtendedTriggerMessage); LWS_Send(message); return result; } int sendGetInstalledCertificateIdsConfirmation(char *uuid) { mtrace(); int result = PASS; char message[4096]={0}; json_object *GetInstalledCertificateIds = json_object_new_object(); json_object *certificateHashDataDatas = json_object_new_array(); DEBUG_INFO("sendGetInstalledCertificateIdsConfirmation...\n"); json_object_object_add(GetInstalledCertificateIds, "status", json_object_new_string((char*)ShmOCPP16Data->GetInstalledCertificateIds.Response_status)); if(strlen((char*)ShmOCPP16Data->GetInstalledCertificateIds.Response_certificateHashData[0].hashAlgorithm) > 0) { for(int idx=0;idxGetInstalledCertificateIds.Response_certificateHashData);idx++) { json_object *certificateHashData = json_object_new_object(); json_object_object_add(certificateHashData, "hashAlgorithm", json_object_new_string((char*)ShmOCPP16Data->GetInstalledCertificateIds.Response_certificateHashData[idx].hashAlgorithm)); json_object_object_add(certificateHashData, "issuerNameHash", json_object_new_string((char*)ShmOCPP16Data->GetInstalledCertificateIds.Response_certificateHashData[idx].issuerNameHash)); json_object_object_add(certificateHashData, "issuerKeyHash", json_object_new_string((char*)ShmOCPP16Data->GetInstalledCertificateIds.Response_certificateHashData[idx].issuerKeyHash)); json_object_object_add(certificateHashData, "serialNumber", json_object_new_string((char*)ShmOCPP16Data->GetInstalledCertificateIds.Response_certificateHashData[idx].serialNumber)); json_object_array_add(certificateHashDataDatas, certificateHashData); } json_object_object_add(GetInstalledCertificateIds , "certificateHashData", certificateHashDataDatas); } else { json_object_put(certificateHashDataDatas); } sprintf(message,"[%d,\"%s\",%s]" ,MESSAGE_TYPE_CALLRESULT ,uuid ,json_object_to_json_string_ext(GetInstalledCertificateIds, JSON_C_TO_STRING_PLAIN)); json_object_put(GetInstalledCertificateIds); LWS_Send(message); return result; } int sendGetLogConfirmation(char *uuid) { mtrace(); int result = PASS; char message[4096]={0}; json_object *GetLog = json_object_new_object(); DEBUG_INFO("sendGetLogConfirmation...\n"); json_object_object_add(GetLog, "status", json_object_new_string((char*)ShmOCPP16Data->GetLog.Response_status)); if(strlen((char*)ShmOCPP16Data->GetLog.Response_filename) > 0) json_object_object_add(GetLog, "filename", json_object_new_string((char*)ShmOCPP16Data->GetLog.Response_filename)); sprintf(message,"[%d,\"%s\",%s]" ,MESSAGE_TYPE_CALLRESULT ,uuid ,json_object_to_json_string_ext(GetLog, JSON_C_TO_STRING_PLAIN)); json_object_put(GetLog); LWS_Send(message); return result; } int sendInstallCertificateConfirmation(char *uuid) { mtrace(); int result = PASS; char message[4096]={0}; json_object *InstallCertificate = json_object_new_object(); DEBUG_INFO("sendInstallCertificateConfirmation...\n"); json_object_object_add(InstallCertificate, "status", json_object_new_string((char*)ShmOCPP16Data->InstallCertificate.Response_status)); sprintf(message,"[%d,\"%s\",%s]" ,MESSAGE_TYPE_CALLRESULT ,uuid ,json_object_to_json_string_ext(InstallCertificate, JSON_C_TO_STRING_PLAIN)); json_object_put(InstallCertificate); LWS_Send(message); return result; } int sendSignedUpdateFirmwareConfirmation(char *uuid) { mtrace(); int result = PASS; char message[4096]={0}; json_object *SignedUpdateFirmware = json_object_new_object(); DEBUG_INFO("sendSignedUpdateFirmwareConfirmation...\n"); json_object_object_add(SignedUpdateFirmware, "status", json_object_new_string((char*)ShmOCPP16Data->SignedUpdateFirmware.Response_status)); sprintf(message,"[%d,\"%s\",%s]" ,MESSAGE_TYPE_CALLRESULT ,uuid ,json_object_to_json_string_ext(SignedUpdateFirmware, JSON_C_TO_STRING_PLAIN)); json_object_put(SignedUpdateFirmware); LWS_Send(message); return result; } int sendUnknownConfirmation(char *uuid) { mtrace(); int result = PASS; char message[256]={0}; DEBUG_INFO("sendUnknownConfirmation...\n"); sprintf(message,"[%d,\"%s\",\"NotImplemented\",\"Requested Action is not known by receiver\",{}]", MESSAGE_TYPE_CALLERROR, uuid); LWS_Send(message); return result; } //========================================== // 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] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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.ConnectorInfo[index].GeneralChargingData.Index].ResponseStatus, "%s", comfirmstr ); 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 = -1; 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) && (json_object_get_type(json_object_object_get(ChangeAvailability, "connectorId")) == json_type_int)) 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 > 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] == GUN_TYPE_CHAdeMO)&&(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] == GUN_TYPE_CCS)&&(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] == GUN_TYPE_GBT)&&(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] == GUN_TYPE_DO)&&(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] == GUN_TYPE_AC)&&(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] == GUN_TYPE_CHAdeMO)) { 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] == GUN_TYPE_CCS)) { 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] == GUN_TYPE_GBT)) { 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] == GUN_TYPE_DO)) { 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] ==GUN_TYPE_AC)) { 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] == GUN_TYPE_CHAdeMO )&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == i)&&(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus == SYS_MODE_FAULT)) //S_FAULT //(((gunIndex == 0)|| ((gunIndex > 0)&&(gunType[gunIndex-1] == GUN_TYPE_CHAdeMO)) ) &&(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] == GUN_TYPE_CCS)&&(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] == GUN_TYPE_GBT)&&(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] == GUN_TYPE_DO)&&(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] == GUN_TYPE_AC) &&(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] == GUN_TYPE_AC) &&(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] == GUN_TYPE_CHAdeMO) ) &&(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] == GUN_TYPE_CCS)) )&&(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] == GUN_TYPE_GBT))&&(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] == GUN_TYPE_DO))&&(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] == GUN_TYPE_AC)) &&(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); system("/bin/fsync -d /dev/mtdblock13;/bin/sync &"); return result; } int handleChangeConfigurationRequest(char *uuid, char *payload) { mtrace(); int valueInvalid = NO; int result = FAIL; char keystr[40]={0}; char valuestr[501]={0}; //value should be limited in 500 bytes 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) && (strlen(json_object_get_string(json_object_object_get(ChangeConfiguration, "value"))) < ARRAY_SIZE(valuestr))) { sprintf((char*)valuestr, "%s", json_object_get_string(json_object_object_get(ChangeConfiguration, "value"))); } else { valueInvalid = YES; DEBUG_ERROR("The ChangeConfiguration value is NULL or OVER SIZE.\n"); } } json_object_put(ChangeConfiguration); if((uuid==NULL) || (payload ==NULL) || (valueInvalid==YES)) { DEBUG_ERROR("Payload is null or value is invalid.\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,"AuthorizationKey")==0) || (strcmp(keystr,"SecurityProfile")==0) || (strcmp(keystr,"OcppServer")==0) || (strcmp(keystr,"MaintainServer")==0)) && (strcmp(comfirmstr,"Accepted")==0)) { StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig); SetOcppConnStatus(FALSE); } if(((strcmp(keystr,"FreeVend")==0) || (strcmp(keystr,"isEnableLocalPowerSharing")==0) || (strcmp(keystr,"PowerSharingServerIP")==0)) && (strcmp(comfirmstr,"Accepted")==0)) { StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig); } 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); system("/bin/fsync -d /dev/mtdblock13;/bin/sync &"); 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], TRUE); } } else checkCompositeSchedule(connectorIdInt, 86400, &ShmOCPP16Data->SmartChargingProfile[connectorIdInt-1], TRUE); } sendClearChargingProfileConfirmation(uuid, comfirmstr); system("/bin/fsync -d /dev/mtdblock13;/bin/sync &"); 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')) { if((gunType[1] != GUN_TYPE_UNKNOWN) || (gunType[2] != GUN_TYPE_UNKNOWN) || (gunType[3] != GUN_TYPE_UNKNOWN)) { json_object_object_add(FirmwareDataTransfer, "Connector2FwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.Connector2FwRev)); } if((ShmSysConfigAndInfo->SysConfig.ModelName[1]!='B') && (ShmSysConfigAndInfo->SysConfig.ModelName[1]!='K') && (ShmSysConfigAndInfo->SysConfig.ModelName[1]!='O')) { // DS DM DW 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)); } else { 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, "PsuPrimFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.PsuPrimFwRev)); json_object_object_add(FirmwareDataTransfer, "PsuSecFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.PsuSecFwRev)); json_object_object_add(FirmwareDataTransfer, "DD0_CsuBootLoadFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].CsuBootLoadFwRev)); json_object_object_add(FirmwareDataTransfer, "DD0_CsuKernelFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].CsuKernelFwRev)); json_object_object_add(FirmwareDataTransfer, "DD0_CsuRootFsFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].CsuRootFsFwRev)); json_object_object_add(FirmwareDataTransfer, "DD0_CsuPrimFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].CsuPrimFwRev)); json_object_object_add(FirmwareDataTransfer, "DD0_FanModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].FanModuleFwRev)); json_object_object_add(FirmwareDataTransfer, "DD0_RelayModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].RelayModuleFwRev)); json_object_object_add(FirmwareDataTransfer, "DD0_LedModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].LedModuleFwRev)); json_object_object_add(FirmwareDataTransfer, "DD0_Connector1FwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].Connector1FwRev)); json_object_object_add(FirmwareDataTransfer, "DD0_Connector2FwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[0].Connector2FwRev)); if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].CsuBootLoadFwRev) > 0) json_object_object_add(FirmwareDataTransfer, "DD1_CsuBootLoadFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].CsuBootLoadFwRev)); if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].CsuKernelFwRev) > 0) json_object_object_add(FirmwareDataTransfer, "DD1_CsuKernelFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].CsuKernelFwRev)); if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].CsuRootFsFwRev) > 0) json_object_object_add(FirmwareDataTransfer, "DD1_CsuRootFsFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].CsuRootFsFwRev)); if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].CsuPrimFwRev) > 0) json_object_object_add(FirmwareDataTransfer, "DD1_CsuPrimFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].CsuPrimFwRev)); if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].FanModuleFwRev) > 0) json_object_object_add(FirmwareDataTransfer, "DD1_FanModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].FanModuleFwRev)); if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].RelayModuleFwRev) > 0) json_object_object_add(FirmwareDataTransfer, "DD1_RelayModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].RelayModuleFwRev)); if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].LedModuleFwRev) > 0) json_object_object_add(FirmwareDataTransfer, "DD1_LedModuleFwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].LedModuleFwRev)); if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].Connector1FwRev) > 0) json_object_object_add(FirmwareDataTransfer, "DD1_Connector1FwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].Connector1FwRev)); if(strlen((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].Connector2FwRev) > 0) json_object_object_add(FirmwareDataTransfer, "D11_Connector2FwRev", json_object_new_string((char*)ShmSysConfigAndInfo->SysInfo.DispenserInfo.Dispenser[1].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].ResponseData, 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[1024]={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 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].ResponseData)); 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, "ID_Tmate") != NULL) { system("/usr/bin/run_tmate_restart.sh &"); json_object_object_add(response, "status", json_object_new_string("Accepted")); 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, "ID_ChargingPreference") != NULL) { json_object *data; data = json_tokener_parse(tempdata); if(!is_error(data)) { if((json_object_object_get(data, "ConnectorId") != NULL) && (json_object_get_int(json_object_object_get(data, "ConnectorId")) > 0) && (json_object_get_int(json_object_object_get(data, "ConnectorId")) <= gunTotalNumber)) { DEBUG_INFO("ChargeingPreference connector id: %d\n", json_object_get_int(json_object_object_get(data, "ConnectorId"))); memset(&ShmOCPP16Data->SessionTarget[json_object_get_int(json_object_object_get(data, "ConnectorId"))], 0x00, sizeof(struct StructSessionTarget)); if(json_object_object_get(data, "SOC") != NULL) { ShmOCPP16Data->SessionTarget[json_object_get_int(json_object_object_get(data, "ConnectorId"))-1].targetSoc = json_object_get_int(json_object_object_get(data, "SOC")); DEBUG_INFO("ChargeingPreference target soc: %d\n", json_object_get_int(json_object_object_get(data, "SOC"))); } if(json_object_object_get(data, "Energy") != NULL) { ShmOCPP16Data->SessionTarget[json_object_get_int(json_object_object_get(data, "ConnectorId"))-1].targetEnergy = json_object_get_int(json_object_object_get(data, "Energy")); DEBUG_INFO("ChargeingPreference target energy: %d KWH\n", json_object_get_int(json_object_object_get(data, "Energy"))); } if(json_object_object_get(data, "Duration") != NULL) { ShmOCPP16Data->SessionTarget[json_object_get_int(json_object_object_get(data, "ConnectorId"))-1].targetDuration = json_object_get_int(json_object_object_get(data, "Duration")); DEBUG_INFO("ChargeingPreference target duration: %d minutes\n", json_object_get_int(json_object_object_get(data, "Duration"))); } 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("Connector id must > 0.")); } } 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, "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)); json_object_object_add(response, "status", json_object_new_string("Accepted")); 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"))); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("idToken not found.")); } if(json_object_object_get(data, "price") != NULL) //v1.0 { 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"))); } else if(json_object_object_get(data, "priceText") != NULL) //v2.0 { sprintf((char*)ShmOCPP16Data->Cost.SetUserPrice.price, "%s", json_object_get_string(json_object_object_get(data, "priceText"))); DEBUG_INFO("priceText: %s\n", json_object_get_string(json_object_object_get(data, "priceText"))); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("price or priceText not found.")); } } 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)) { json_object_object_add(response, "status", json_object_new_string("Accepted")); if(json_object_object_get(data, "txId") != NULL) { // California pricing V1.0 DEBUG_INFO("California pricing V1.0\n"); DEBUG_INFO("txId: %d\n", json_object_get_int(json_object_object_get(data, "txId"))); sprintf((char*)dmsVersion, "1.0"); 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 StrcutRunningCost)); 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"))); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("description not found.")); } } } } else if(json_object_object_get(data, "transactionId") != NULL) { // California pricing V2.0 DEBUG_INFO("California pricing V2.0\n"); DEBUG_INFO("transactionId: %d\n", json_object_get_int(json_object_object_get(data, "transactionId"))); sprintf((char*)dmsVersion, "2.0"); for(int idx=0;idxStartTransaction[idx].ResponseTransactionId == json_object_get_int(json_object_object_get(data, "transactionId"))) { ShmOCPP16Data->Cost.RunningCost[idx].txId = json_object_get_int(json_object_object_get(data, "transactionId")); if(json_object_object_get(data, "timestamp") != NULL) { DEBUG_INFO("timestamp: %s\n", json_object_get_string(json_object_object_get(data, "timestamp"))); sprintf((char*)ShmOCPP16Data->Cost.RunningCost[idx].timestamp, "%s", json_object_get_string(json_object_object_get(data, "timestamp"))); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("timestamp not found.")); } if(json_object_object_get(data, "meterValue") != NULL) { DEBUG_INFO("meterValue: %d\n", json_object_get_int(json_object_object_get(data, "meterValue"))); ShmOCPP16Data->Cost.RunningCost[idx].meterValue = json_object_get_int(json_object_object_get(data, "meterValue")); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("meterValue not found.")); } if(json_object_object_get(data, "cost") != NULL) { DEBUG_INFO("cost: %f\n", json_object_get_double(json_object_object_get(data, "cost"))); ShmOCPP16Data->Cost.RunningCost[idx].cost = json_object_get_double(json_object_object_get(data, "cost")); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("cost not found.")); } if(json_object_object_get(data, "state") != NULL) { DEBUG_INFO("state: %s\n", json_object_get_string(json_object_object_get(data, "state"))); sprintf((char*)ShmOCPP16Data->Cost.RunningCost[idx].state, "%s", json_object_get_string(json_object_object_get(data, "state"))); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("state not found.")); } if(json_object_object_get(data, "chargingPrice") != NULL) { if(json_object_object_get(json_object_object_get(data, "chargingPrice"), "kWhPrice") != NULL) { DEBUG_INFO("chargingPrice-kWhPrice: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(data, "chargingPrice"), "kWhPrice"))); ShmOCPP16Data->Cost.RunningCost[idx].chargingPrice.kWhPrice = json_object_get_double(json_object_object_get(json_object_object_get(data, "chargingPrice"), "kWhPrice")); } if(json_object_object_get(json_object_object_get(data, "chargingPrice"), "hourPrice") != NULL) { DEBUG_INFO("chargingPrice-hourPrice: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(data, "chargingPrice"), "hourPrice"))); ShmOCPP16Data->Cost.RunningCost[idx].chargingPrice.hourPrice = json_object_get_double(json_object_object_get(json_object_object_get(data, "chargingPrice"), "hourPrice")); } if(json_object_object_get(json_object_object_get(data, "chargingPrice"), "flatFee") != NULL) { DEBUG_INFO("chargingPrice-flatFee: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(data, "chargingPrice"), "flatFee"))); ShmOCPP16Data->Cost.RunningCost[idx].chargingPrice.flatFee = json_object_get_double(json_object_object_get(json_object_object_get(data, "chargingPrice"), "flatFee")); } } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("chargingPrice not found.")); } if(json_object_object_get(data, "idlePrice") != NULL) { if(json_object_object_get(json_object_object_get(data, "idlePrice"), "graceMinutes") != NULL) { DEBUG_INFO("idlePrice-graceMinutes: %d\n", json_object_get_int(json_object_object_get(json_object_object_get(data, "idlePrice"), "graceMinutes"))); ShmOCPP16Data->Cost.RunningCost[idx].idlePrice.graceMinutes = json_object_get_int(json_object_object_get(json_object_object_get(data, "idlePrice"), "graceMinutes")); } if(json_object_object_get(json_object_object_get(data, "idlePrice"), "hourPrice") != NULL) { DEBUG_INFO("idlePrice-hourPrice: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(data, "idlePrice"), "hourPrice"))); ShmOCPP16Data->Cost.RunningCost[idx].idlePrice.hourPrice = json_object_get_double(json_object_object_get(json_object_object_get(data, "idlePrice"), "hourPrice")); } } if(json_object_object_get(data, "nextPeriod") != NULL) { if(json_object_object_get(json_object_object_get(data, "nextPeriod"), "atTime") != NULL) { DEBUG_INFO("nextPeriod-atTime: %s\n", json_object_get_string(json_object_object_get(json_object_object_get(data, "nextPeriod"), "atTime"))); sprintf((char*)ShmOCPP16Data->Cost.RunningCost[idx].nextPeriod.atTime, "%s", json_object_get_string(json_object_object_get(json_object_object_get(data, "nextPeriod"), "atTime"))); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("atTime not found.")); } if(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice") != NULL) { if(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "kWhPrice") != NULL) { DEBUG_INFO("nextPeriod-chargingPrice-kWhPrice: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "kWhPrice"))); ShmOCPP16Data->Cost.RunningCost[idx].nextPeriod.chargingPrice.kWhPrice = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "kWhPrice")); } if(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "hourPrice") != NULL) { DEBUG_INFO("nextPeriod-chargingPrice-hourPrice: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "hourPrice"))); ShmOCPP16Data->Cost.RunningCost[idx].nextPeriod.chargingPrice.hourPrice = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "hourPrice")); } if(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "flatFee") != NULL) { DEBUG_INFO("nextPeriod-chargingPrice-flatFee: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "flatFee"))); ShmOCPP16Data->Cost.RunningCost[idx].nextPeriod.chargingPrice.flatFee = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "chargingPrice"), "flatFee")); } } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("chargingPrice not found.")); } if(json_object_object_get(json_object_object_get(data, "nextPeriod"), "idlePrice") != NULL) { if(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "idlePrice"), "graceMinutes") != NULL) { DEBUG_INFO("nextPeriod-idlePrice-graceMinutes: %d\n", json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "idlePrice"), "graceMinutes"))); ShmOCPP16Data->Cost.RunningCost[idx].nextPeriod.idlePrice.graceMinutes = json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "idlePrice"), "graceMinutes")); } if(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "idlePrice"), "hourPrice") != NULL) { DEBUG_INFO("nextPeriod-idlePrice-hourPrice: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "idlePrice"), "hourPrice"))); ShmOCPP16Data->Cost.RunningCost[idx].nextPeriod.idlePrice.hourPrice = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(data, "nextPeriod"), "idlePrice"), "hourPrice")); } } } if(json_object_object_get(data, "triggerMeterValue") != NULL) { if(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atTime") != NULL) { DEBUG_INFO("triggerMeterValue-atTime: %s\n", json_object_get_string(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atTime"))); sprintf((char*)ShmOCPP16Data->Cost.RunningCost[idx].triggerMeterValue.atTime, "%s", json_object_get_string(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atTime"))); } if(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atEnergykWh") != NULL) { DEBUG_INFO("triggerMeterValue-atEnergykWh: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atEnergykWh"))); ShmOCPP16Data->Cost.RunningCost[idx].triggerMeterValue.atEnergykWh = json_object_get_double(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atEnergykWh")); } if(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atPowerkW") != NULL) { DEBUG_INFO("triggerMeterValue-atPowerkW: %f\n", json_object_get_double(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atPowerkW"))); ShmOCPP16Data->Cost.RunningCost[idx].triggerMeterValue.atPowerkW = json_object_get_double(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atPowerkW")); } if(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atCPStatus") != NULL) { DEBUG_INFO("triggerMeterValue-atCPStatus: %s\n", json_object_get_string(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atCPStatus"))); sprintf((char*)ShmOCPP16Data->Cost.RunningCost[idx].triggerMeterValue.atCPStatus, "%s", json_object_get_string(json_object_object_get(json_object_object_get(data, "triggerMeterValue"), "atCPStatus"))); } } } } } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("txId or transactionId not found.")); } } 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)) { json_object_object_add(response, "status", json_object_new_string("Accepted")); if(json_object_object_get(data, "txId") != NULL) { DEBUG_INFO("v1.0 txId: %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 StrcutFinalCost)); 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"))); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("description not found.")); } } } } else if(json_object_object_get(data, "transactionId") != NULL) { DEBUG_INFO("v2.0 transactionId: %d\n", json_object_get_int(json_object_object_get(data, "transactionId"))); for(int idx = 0;idxStartTransaction[idx].ResponseTransactionId == json_object_get_int(json_object_object_get(data, "transactionId"))) { memset(&ShmOCPP16Data->Cost.FinalCost[idx], 0x00, sizeof(struct StrcutFinalCost)); ShmOCPP16Data->Cost.FinalCost[idx].txId = json_object_get_int(json_object_object_get(data, "transactionId")); if(json_object_object_get(data, "cost") != NULL) { DEBUG_INFO("cost: %s\n", json_object_get_string(json_object_object_get(data, "cost"))); ShmOCPP16Data->Cost.FinalCost[idx].cost = json_object_get_double(json_object_object_get(data, "cost")); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("cost not found.")); } if(json_object_object_get(data, "priceText") != NULL) { DEBUG_INFO("priceText: %s\n", json_object_get_string(json_object_object_get(data, "priceText"))); sprintf((char*)ShmOCPP16Data->Cost.FinalCost[idx].priceText, "%s", json_object_get_string(json_object_object_get(data, "priceText"))); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("priceText not found.")); } if(json_object_object_get(data, "qrCodeText") != NULL) { DEBUG_INFO(": %s\n", json_object_get_string(json_object_object_get(data, "qrCodeText"))); sprintf((char*)ShmOCPP16Data->Cost.FinalCost[idx].qrCodeText, "%s", json_object_get_string(json_object_object_get(data, "qrCodeText"))); } } } } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("txId or transactionId not found.")); } } 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, "ID_ConfigQR") != NULL) { json_object *data; data = json_tokener_parse(tempdata); if(!is_error(data)) { json_object_object_add(response, "status", json_object_new_string("Accepted")); if(json_object_object_get(data, "Content_Type") != NULL) { if((0 <= json_object_get_int(json_object_object_get(data, "Content_Type"))) && (json_object_get_int(json_object_object_get(data, "Content_Type")) <= 1)) { ShmSysConfigAndInfo->SysConfig.QRCodeMadeMode = json_object_get_int(json_object_object_get(data, "Content_Type")); if(json_object_object_get(data, "Customization_Conent") != NULL) { sprintf((char*)ShmSysConfigAndInfo->SysConfig.QRCodeContent, "%s", json_object_get_string(json_object_object_get(data, "Customization_Conent"))); } } else json_object_object_add(response, "status", json_object_new_string("Rejected")); } StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig); } 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, "ID_LineStatusPage") != NULL) { json_object *data; data = json_tokener_parse(tempdata); if(!is_error(data)) { json_object_object_add(response, "status", json_object_new_string("Accepted")); if(json_object_object_get(data, "ConnectorId") != NULL) { ShmSysConfigAndInfo->SysInfo.LcdOveride.connectorId = json_object_get_int(json_object_object_get(data, "ConnectorId")); } if(json_object_object_get(data, "SerialNo") != NULL) { sprintf((char *)ShmOCPP16Data->TcciCustomData.SerialNo[(ShmSysConfigAndInfo->SysInfo.LcdOveride.connectorId-1)], "%s", json_object_get_string(json_object_object_get(data,"SerialNo"))); } if(json_object_object_get(data, "Page_Index") != NULL) { ShmSysConfigAndInfo->SysInfo.LcdOveride.page_index = json_object_get_int(json_object_object_get(data, "Page_Index")); } if(json_object_object_get(data, "Duration") != NULL) { ShmSysConfigAndInfo->SysInfo.LcdOveride.duration = json_object_get_int(json_object_object_get(data, "Duration")); } ShmSysConfigAndInfo->SysInfo.LcdOveride.isOverideReq = 1; } 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, "ID_CpConfiguration") != NULL) { json_object *data; data = json_tokener_parse(tempdata); if(!is_error(data)) { json_object_object_add(response, "status", json_object_new_string("Accepted")); if(json_object_object_get(data, "MaxChargingCurrent") != NULL) { if(json_object_get_int(json_object_object_get(data, "MaxChargingCurrent")) >= 0) ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent = json_object_get_int(json_object_object_get(data, "MaxChargingCurrent")); 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.")); } } if(json_object_object_get(data, "MaxChargingDuration") != NULL) { if(json_object_get_int(json_object_object_get(data, "MaxChargingDuration")) >= 0) ShmSysConfigAndInfo->SysConfig.MaxChargingDuration = json_object_get_int(json_object_object_get(data, "MaxChargingDuration")); 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.")); } } if(json_object_object_get(data, "MaxChargingEnergy") != NULL) { if(json_object_get_int(json_object_object_get(data, "MaxChargingEnergy")) >= 0) ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy = json_object_get_int(json_object_object_get(data, "MaxChargingEnergy")); 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.")); } } if(json_object_object_get(data, "MaxChargingPower") != NULL) { if(json_object_get_int(json_object_object_get(data, "MaxChargingPower")) >= 0) ShmSysConfigAndInfo->SysConfig.MaxChargingPower = json_object_get_int(json_object_object_get(data, "MaxChargingPower")); 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.")); } } if(json_object_object_get(data, "OfflineMaxChargeEnergy") != NULL) { if(json_object_get_int(json_object_object_get(data, "OfflineMaxChargeEnergy")) >= 0) ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy = json_object_get_int(json_object_object_get(data, "OfflineMaxChargeEnergy")); 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.")); } } if(json_object_object_get(data, "OfflinePolicy") != NULL) { if((json_object_get_int(json_object_object_get(data, "OfflinePolicy")) == 0) || (json_object_get_int(json_object_object_get(data, "OfflinePolicy")) == 2) || (json_object_get_int(json_object_object_get(data, "OfflinePolicy")) == 3)) ShmSysConfigAndInfo->SysConfig.OfflinePolicy = json_object_get_int(json_object_object_get(data, "OfflinePolicy")); 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.")); } } if(json_object_object_get(data, "isAuthentication") != NULL) { switch(json_object_get_int(json_object_object_get(data, "isAuthentication"))) { case 0: case 1: ShmSysConfigAndInfo->SysConfig.AuthorisationMode = json_object_get_int(json_object_object_get(data, "isAuthentication"))^1; break; default: 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.")); break; } } if(strstr(json_object_get_string(json_object_object_get(response, "status")), "Accepted") != NULL) StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig); } 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, "ID_TxEnergy") != NULL) { json_object *data; data = json_tokener_parse(tempdata); if(!is_error(data)) { if((json_object_object_get(data, "ConnectorId") != NULL) && (json_object_object_get(data, "txId") != NULL)) { if(OCPP_getPeriodEnergyToDataTransfer(json_object_get_int(json_object_object_get(data, "txId"))) == PASS) { 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].ResponseData)); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("Present charged energy data can not get.")); } } 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.")); } } 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.")); } 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, "ID_Station_Location") != NULL) { json_object *data; data = json_tokener_parse(tempdata); if(!is_error(data)) { json_object_object_add(response, "status", json_object_new_string("Accepted")); if(json_object_object_get(data, "stationName") != NULL) { sprintf((char *)ShmOCPP16Data->TcciCustomData.ChargerInfo.station_name, "%s", json_object_get_string(json_object_object_get(data,"stationName"))); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("station_name data can not get.")); } if(strcmp(json_object_get_string(json_object_object_get(response,"status")),"Accepted")==0) { ShmOCPP16Data->TcciCustomData.ChargerInfoReq = 1; DEBUG_INFO("<<< ID_Station_Location:{station_name:%s}\n", ShmOCPP16Data->TcciCustomData.ChargerInfo.station_name); } } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("charger_info content got something wrong.")); } 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, "ID_Weather_Info") != NULL) { json_object *data; data = json_tokener_parse(tempdata); if(!is_error(data)) { json_object_object_add(response, "status", json_object_new_string("Accepted")); if(json_object_object_get(data, "weatherId") != NULL) { ShmOCPP16Data->TcciCustomData.WeatherInfo.weatherId = json_object_get_int(json_object_object_get(data, "weatherId")); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("weather data can not get.")); } if(json_object_object_get(data, "Temperature") != NULL) { ShmOCPP16Data->TcciCustomData.WeatherInfo.temperature = json_object_get_double(json_object_object_get(data,"Temperature")); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("temperature data can not get.")); } if(strcmp(json_object_get_string(json_object_object_get(response,"status")),"Accepted")==0) { ShmOCPP16Data->TcciCustomData.WeatherInfoReq = 1; DEBUG_INFO("<<< ID_Weather_Info:{weather:%d, temperature:%.1f}\n", ShmOCPP16Data->TcciCustomData.WeatherInfo.weatherId, ShmOCPP16Data->TcciCustomData.WeatherInfo.temperature ); } } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("weather_info content got something wrong.")); } 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, "ID_TriggerCreditReader") != NULL) { json_object *data; data = json_tokener_parse(tempdata); if(!is_error(data)) { json_object_object_add(response, "status", json_object_new_string("Accepted")); if(json_object_get_int(json_object_object_get(data, "ConnectorId")) > 0) { ShmOCPP16Data->TcciCustomData.TriggerReaderReq[json_object_get_int(json_object_object_get(data, "ConnectorId")) -1] = TRUE; DEBUG_INFO("<<< ID_TriggerCreditReader:{ConnectorId: %d}\n", json_object_get_int(json_object_object_get(data, "ConnectorId"))); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("ConnectorId does not valid.")); } } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("charger_info content got something wrong.")); } 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, "ID_GetTxUserInfo") != NULL) { json_object *data; data = json_tokener_parse(tempdata); if(!is_error(data)) { if((json_object_object_get(data, "ConnectorId") != NULL) && (json_object_object_get(data, "txId") != NULL)) { int gun_index = json_object_get_int(json_object_object_get(data, "ConnectorId"))-1; json_object_object_add(response, "status", json_object_new_string("Accepted")); if(gun_index < gunTotalNumber) { if(ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId == json_object_get_int(json_object_object_get(data, "txId"))) { json_object *responsedata = json_object_new_object(); json_object_object_add(responsedata, "txId", json_object_new_int(ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId)); json_object_object_add(responsedata, "ConnectorId", json_object_new_int(gun_index+1)); json_object_object_add(responsedata, "SerialNo", json_object_new_string((char*)ShmOCPP16Data->TcciCustomData.SerialNo[gun_index])); json_object_object_add(responsedata, "StartTime", json_object_new_string((char*)ShmOCPP16Data->StartTransaction[gun_index].Timestamp)); json_object_object_add(responsedata, "VEMData", json_object_new_string((char*)ShmOCPP16Data->TcciCustomData.VEMData[gun_index])); json_object_object_add(response, "data", json_object_new_string(json_object_to_json_string_ext(responsedata, JSON_C_TO_STRING_PLAIN))); } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("txId doesn't match the current transactionId.")); } } else { json_object_object_add(response, "status", json_object_new_string("Rejected")); json_object_object_add(response, "data", json_object_new_string("ConnectorId is invalid.")); } } 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.")); } } 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.")); } 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]; if(strstr(chargingRateUnitStr, "W") != NULL) checkCompositeSchedule(connectorIdInt, durationInt, &tmpProfile[0], FALSE); else checkCompositeSchedule(connectorIdInt, durationInt, &tmpProfile[0], TRUE); 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) && (idx<(ARRAY_SIZE(ShmOCPP16Data->GetCompositeSchedule[gun_index].ResponseChargingSchedule.ChargingSchedulePeriod)-1)?(ShmOCPP16Data->GetCompositeSchedule[gun_index].ResponseChargingSchedule.ChargingSchedulePeriod[idx+1].StartPeriod==0):TRUE)) { confirmPeriods = idx; break; } } if((confirmPeriods == 0) && (tmpProfile[0].ChargingProfileId > 0)) { confirmPeriods += 1; } 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); if(!interLock.isGetDiagnosticGoing) { interLock.isGetDiagnosticGoing = 1; pthread_create(&th_Status, NULL, GetDiagnosticsProcess, stringtrimspace(payload)); sleep(1); } else DEBUG_WARN("Other GetDiagnostic request on going.\n"); return result; } void* GetDiagnosticsProcess(void* data) { pthread_detach(pthread_self()); mtrace(); int retriesInt=0, retryIntervalInt=0; char locationstr[1024]={0}, startTimestr[30]={0}, stopTimestr[30]={0} ; char protocol[10]={0}, user[64]={0},password[64]={0},host[128]={0}, path[512]={0}, ftppath[512]={0},host1[128]={0},path1[512]={0}; int port=0; int isSuccess = FALSE; char cmdBuf[2048]; struct tm *tmNow; time_t CurrentTime; struct tm tmStart; struct tm tmStop; CurrentTime = time(NULL); tmNow=localtime(&CurrentTime); uint16_t targetYear, targetMonth; 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) retryIntervalInt = 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 if((sscanf((char*)startTimestr, "%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*)stopTimestr, "%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)) { // Pack system log memset(cmdBuf, 0x00, ARRAY_SIZE(cmdBuf)); sprintf(cmdBuf, "exec zip -9 --password %04d%02d%s /mnt/system.zip", tmNow->tm_year+1900, tmNow->tm_mon+1, ShmSysConfigAndInfo->SysConfig.SerialNumber); targetYear = tmStart.tm_year; targetMonth = tmStart.tm_mon; do { sprintf(cmdBuf, "%s /Storage/SystemLog/*%04d*%02d*", cmdBuf, targetYear, targetMonth); sprintf(cmdBuf, "%s /Storage/OCPP/*%04d*%02d*SystemLog*", cmdBuf, targetYear, targetMonth); if(targetMonth+1>=13) { targetYear += 1; targetMonth = 1; } else { targetMonth += 1; } }while((targetYear < (tmNow->tm_year+1900)) || ((targetYear <= (tmNow->tm_year+1900)) && (targetMonth <= (tmNow->tm_mon+1)))); sprintf(cmdBuf, "%s /Storage/CCS*.zip", cmdBuf); sprintf(cmdBuf, "%s /Storage/OCPP/*.db", cmdBuf); system(cmdBuf); // Pack charging & event log memset(cmdBuf, 0x00, ARRAY_SIZE(cmdBuf)); sprintf(cmdBuf, "exec zip -9 /mnt/charging_event.zip"); targetYear = tmStart.tm_year; targetMonth = tmStart.tm_mon; do { sprintf(cmdBuf, "%s /Storage/EventLog/*%04d*%02d*", cmdBuf, targetYear, targetMonth); sprintf(cmdBuf, "%s /Storage/OCPP/*%04d*%02d*OcppMessageLog*", cmdBuf, targetYear, targetMonth); if(targetMonth+1>=13) { targetYear += 1; targetMonth = 1; } else { targetMonth += 1; } }while((targetYear < (tmNow->tm_year+1900)) || ((targetYear <= (tmNow->tm_year+1900)) && (targetMonth <= (tmNow->tm_mon+1)))); sprintf(cmdBuf, "%s /Storage/ChargeLog/*.db", cmdBuf); sprintf(cmdBuf, "%s /Storage/EventLog/*.db", cmdBuf); system(cmdBuf); // Combine log file system("exec zip -9 /mnt/log.zip /mnt/system.zip /mnt/charging_event.zip"); system("exec rm -f /mnt/system.zip /mnt/charging_event.zip"); } else { 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"); sprintf((char*)ShmOCPP16Data->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]); ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 1; 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"); sprintf((char*)ShmOCPP16Data->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]); ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 1; 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)&&(strcmp(protocol,"https")!=0)) { DEBUG_INFO("protocol is not ftp/http ! \n"); sprintf((char*)ShmOCPP16Data->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]); ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 1; goto end; } if(strncmp(locationstr,"http", 4) == 0) { sscanf(locationstr,"%[^:]:%*2[/]%[^/]/%199[^\n]", protocol, host, path); sprintf(ftppath,"/%s", path); do { sprintf((char*)ShmOCPP16Data->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_Uploading]); ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 1; sleep(3); isSuccess = httpUploadFile(host, ftppath, fnamePlusPath, locationstr); if(!isSuccess) { DEBUG_INFO("Diagnostics fail.\n"); sprintf((char*)ShmOCPP16Data->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]); ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 1; sleep(retryIntervalInt); } else { DEBUG_INFO("sendDiagnosticsStatusNotificationRequest Uploaded\n"); sprintf((char*)ShmOCPP16Data->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_Uploaded]); ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 1; } retriesInt--; }while((isSuccess == 0)&&(retriesInt >= 0)); } else { sscanf(host,"%[^/]%s",host1, path1); if(strlen(path) > 0) sprintf(ftppath,"/%s", path); else 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; if(port == 0) port = 21; do { sprintf((char*)ShmOCPP16Data->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_Uploading]); ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 1; sleep(3); isSuccess = ftpUploadFile(host1, user, password, port, ftppath, fnamePlusPath, fnamePWithNoPath); if(!isSuccess) { DEBUG_INFO("Diagnostics fail.\n"); sprintf((char*)ShmOCPP16Data->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]); ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 1; sleep(retryIntervalInt); } else { DEBUG_INFO("sendDiagnosticsStatusNotificationRequest Uploaded\n"); sprintf((char*)ShmOCPP16Data->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_Uploaded]); ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 1; } retriesInt--; }while((!isSuccess)&&(retriesInt >= 0)); } end: system("rm -f /mnt/*"); sleep(5); sprintf((char*)ShmOCPP16Data->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_Idle]); ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 1; interLock.isGetDiagnosticGoing = 0; 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"); locallistVersion = -1; } else { DEBUG_INFO("handle GetLocalListVersionRequest OCPP_getListVerion \n"); locallistVersion = 0; OCPP_getListVerion(); } //from db.OCPP_getListVerion ShmOCPP16Data->GetLocalListVersion.ResponseListVersion = locallistVersion; //ShmOCPP16Data->MsMsg.bits.GetLocalListVersionReq = 1; sendGetLocalListVersionConfirmation(uuid,""); //ShmOCPP16Data->MsMsg.bits.GetLocalListVersionConf = 1; return result; } int handleRemoteStartRequestOrg(char *uuid, char *payload) { mtrace(); int result = FAIL; int connectorIdInt=-1; 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")); } else { connectorIdIsNULL = TRUE; for(uint8_t gun_index=0;gun_indexStatusNotification[gun_index].Status, "Preparing") != NULL)) { connectorIdIsNULL = FALSE; connectorIdInt = (gun_index+1); DEBUG_INFO("Remote start without connectorId but detect connector-%02d connected ready to start.\n", connectorIdInt); break; } } } if((connectorIdInt <= gunTotalNumber) && (connectorIdInt > 0)) { 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; } 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] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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 handleRemoteStartRequest(char *uuid, char *payload) { mtrace(); int result = PASS; int connectorIdInt=-1; int tempIndex = 0; char comfirmstr[20]={0}; char cmdBuf[512]; json_object *RemoteStartTransaction; FILE *fp; DEBUG_INFO("handleRemoteStartRequest ...\n"); if(server_pending == TRUE) { result = FAIL; } 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")); } else { for(uint8_t gun_index=0;gun_indexStatusNotification[gun_index].Status, "Preparing") != NULL)) { connectorIdInt = (gun_index+1); DEBUG_INFO("Remote start without connectorId but detect connector-%02d connected ready to start.\n", connectorIdInt); break; } } } if(connectorIdInt == 0) { DEBUG_WARN("Connector id shall not equal 0.\n"); result = FAIL; } else if(connectorIdInt == -1) { DEBUG_INFO("Connector id does not specific.\n"); for(uint8_t gun_index=0;gun_indexRemoteStartTransaction[gun_index], 0x00, sizeof(struct StructRemoteStartTransaction)); // Required data sprintf((char*)ShmOCPP16Data->RemoteStartTransaction[gun_index].IdTag, "%s", json_object_get_string(json_object_object_get(RemoteStartTransaction, "idTag"))); // Optional data if(json_object_object_get(RemoteStartTransaction, "chargingProfile") != NULL) { ShmOCPP16Data->RemoteStartTransaction[gun_index].ChargingProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingProfileId")); ShmOCPP16Data->RemoteStartTransaction[gun_index].ChargingProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "stackLevel")); sprintf((char*)ShmOCPP16Data->RemoteStartTransaction[gun_index].ChargingProfile.ChargingProfilePurpose, "%s", json_object_get_string(json_object_object_get(json_object_object_get(RemoteStartTransaction, "chargingProfile"), "chargingProfilePurpose"))); sprintf((char*)ShmOCPP16Data->RemoteStartTransaction[gun_index].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[gun_index].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[gun_index].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[gun_index].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[gun_index].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[gun_index].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[gun_index].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[gun_index].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[gun_index].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[gun_index].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[gun_index].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[gun_index].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 { ShmOCPP16Data->RemoteStartTransaction[gun_index].ChargingProfile.ChargingProfileId = -1; } } } else if(((0 < connectorIdInt) && (connectorIdInt <= gunTotalNumber))) { DEBUG_INFO("Connector id: %d\n", connectorIdInt); 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 { ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileId = -1; } } else { DEBUG_WARN("Connector id is over maximun value.\n"); result = FAIL; } } if(result == PASS) { if(connectorIdInt > 0) { //check Transaction active if(gunType[connectorIdInt -1] == GUN_TYPE_CHAdeMO) { 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("CHAdeMO connector already reserved and idTag match.\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("CHAdeMO connector already reserved and idTag does not match.\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 cause busy.\n"); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); goto end; } }//END FOR ELSE } }// END FOR CHAdeMO_QUANTITY } else if(gunType[connectorIdInt -1] == GUN_TYPE_CCS) { 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("CCS connector already reserved and idTag match.\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("CCS connector already reserved and idTag does not match.\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 cause busy.\n"); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); goto end; } }// END FOR ELSE } }// END FOR CCS_QUANTITY } else if(gunType[connectorIdInt -1] == GUN_TYPE_GBT) { 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("GBT connector already reserved and idTag match.\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("GBT connector already reserved and idTag does not match.\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("GBT connector not allow start cause busy.\n"); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); goto end; } }// END FOR ELSE } } // END FOR GB_QUANTITY } else if(gunType[connectorIdInt -1] == GUN_TYPE_DO) { 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("Dispenser connector already reserved and idTag match.\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("Dispenser connector already reserved and idTag does not match.\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("Dispenser connector not allow start cause busy.\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("AC connector already reserved and idTag match.\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("AC connector already reserved and idTag does not match.\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 cause busy.\n"); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); goto end; } }//END FOR ELSE } }// END FOR AC_QUANTITY } if(ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfileId > -1) { if(strcmp((char*)ShmOCPP16Data->RemoteStartTransaction[connectorIdInt -1].ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxProfile]) == 0) { // 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("Profile purpose not TxProfile.\n"); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); goto end; } } ShmOCPP16Data->CsMsg.bits[connectorIdInt -1].RemoteStartTransactionReq = 1; strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]); 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 { uint8_t isHasIdleConnector = FALSE; for(uint8_t gun_index=0;gun_indexConfigurationTable.CoreProfile[ConnectionTimeOut].ItemData); if(ShmOCPP16Data->RemoteStartTransaction[0].ChargingProfile.ChargingProfileId > -1) { if(strcmp((char*)ShmOCPP16Data->RemoteStartTransaction[0].ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxProfile]) == 0) { // Save profile to file sprintf(cmdBuf, "rm -f /Storage/OCPP/TxProfile_Tmp.json"); system(cmdBuf); sprintf(cmdBuf, "/Storage/OCPP/TxProfile_Tmp.json"); fp = fopen(cmdBuf, "w"); fprintf(fp, "{\"connectorId\":0,\"csChargingProfiles\":%s}\n", json_object_to_json_string_ext(json_object_object_get(RemoteStartTransaction, "chargingProfile"), JSON_C_TO_STRING_PLAIN)); fclose(fp); refreshStartTimer(&clientTime.RemoteStartWait); ShmOCPP16Data->MsMsg.bits.isRemoteStartWaitReq = 1; strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]); } else { DEBUG_WARN("Profile purpose not TxProfile.\n"); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); } } else { refreshStartTimer(&clientTime.RemoteStartWait); ShmOCPP16Data->MsMsg.bits.isRemoteStartWaitReq = 1; strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Accepted]); } } else { DEBUG_INFO("There is not any connector is idle.\n"); strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); } } } else { strcpy(comfirmstr, RemoteStartStopStatusStr[RemoteStartStopStatus_Rejected]); } end: json_object_put(RemoteStartTransaction); 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] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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[21]={0},parentIdTagstr[21]={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] == GUN_TYPE_CHAdeMO) { 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 { if((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn == 1) || (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].InProgress == 1)) { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]); } else { 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] == GUN_TYPE_CCS) { 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 { if((ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn == 1) || (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].InProgress == 1)) { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]); } else { 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] == GUN_TYPE_GBT) { 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 { if((ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn == 1) || (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].InProgress == 1)) { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]); } else { 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] == GUN_TYPE_DO) { 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 { if((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.ConnectorPlugIn == 1) || (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.InProgress == 1)) { strcpy(comfirmstr, ReservationStatusStr[ReservationStatus_Occupied]); } else { 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); strcpy(comfirmstr, ResetStatusStr[ResetStatus_Accepted]); sprintf((char *)ShmOCPP16Data->Reset.ResponseStatus, "%s" ,comfirmstr); } else { strcpy(comfirmstr, ResetStatusStr[ResetStatus_Rejected]); sprintf((char *)ShmOCPP16Data->Reset.ResponseStatus, "%s" ,comfirmstr); result = PASS; } sendResetConfirmation(uuid, comfirmstr); return result; } int handleSendLocalListRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; char comfirmstr[20]; int checkState_Faulted = FALSE; json_object *SendLocalList; 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 < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.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; } // Parsing payload SendLocalList = json_tokener_parse(payload); if(!is_error(SendLocalList)) { // Required data ShmOCPP16Data->SendLocalList.ListVersion = json_object_get_int(json_object_object_get(SendLocalList, "listVersion")); sprintf((char*)ShmOCPP16Data->SendLocalList.UpdateType, "%s", json_object_get_string(json_object_object_get(SendLocalList, "updateType"))); // Optional data if(json_object_object_get(SendLocalList, "localAuthorizationList") != NULL) { //Check UpdateType if(strcmp((char*)ShmOCPP16Data->SendLocalList.UpdateType, UpdateTypeStr[Full]) == 0) { //Local list full update DEBUG_INFO("Local list full update.\n"); locallistVersion = 0; OCPP_getListVerion(); /*if(ShmOCPP16Data->SendLocalList.ListVersion < locallistVersion) { strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Failed]); goto end; }*/ OCPP_cleanLocalList(); } else if(strcmp((char*)ShmOCPP16Data->SendLocalList.UpdateType, UpdateTypeStr[Differential]) == 0) { //Local list different update DEBUG_INFO("Local list different update.\n"); locallistVersion = 0; OCPP_getListVerion(); if(ShmOCPP16Data->SendLocalList.ListVersion < locallistVersion) { strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_VersionMismatch]); goto end; } } else { strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_NotSupported]); goto end; } if(json_object_array_length(json_object_object_get(SendLocalList, "localAuthorizationList")) > atoi((char *)ShmOCPP16Data->ConfigurationTable.LocalAuthListManagementProfile[SendLocalListMaxLength].ItemData)) { DEBUG_WARN("Local list length is over SendLocalListMaxLength.\n"); strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Failed]); goto end; } memset(ShmOCPP16Data->SendLocalList.LocalAuthorizationList, 0 , sizeof(struct StructLocalAuthorizationList)*1); for(int idx=0;idxSendLocalList.LocalAuthorizationList[0].IdTag, "%s", json_object_get_string(json_object_object_get(json_object_array_get_idx(json_object_object_get(SendLocalList, "localAuthorizationList"), idx), "idTag"))); if(json_object_object_get(json_object_array_get_idx(json_object_object_get(SendLocalList, "localAuthorizationList"), idx), "idTagInfo") != NULL) { sprintf((char*)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTagInfo.Status, "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_array_get_idx(json_object_object_get(SendLocalList, "localAuthorizationList"), idx), "idTagInfo"), "status"))); if(json_object_object_get(json_object_object_get(json_object_array_get_idx(json_object_object_get(SendLocalList, "localAuthorizationList"), idx), "idTagInfo"), "expiryDate") != NULL) sprintf((char*)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ExpiryDate, "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_array_get_idx(json_object_object_get(SendLocalList, "localAuthorizationList"), idx), "idTagInfo"), "expiryDate"))); if(json_object_object_get(json_object_object_get(json_object_array_get_idx(json_object_object_get(SendLocalList, "localAuthorizationList"), idx), "idTagInfo"), "parentIdTag") != NULL) sprintf((char*)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ParentIdTag, "%s", json_object_get_string(json_object_object_get(json_object_object_get(json_object_array_get_idx(json_object_object_get(SendLocalList, "localAuthorizationList"), idx), "idTagInfo"), "parentIdTag"))); } // Add to db if(strcmp((char*)ShmOCPP16Data->SendLocalList.UpdateType, UpdateTypeStr[Full]) == 0) { //Local list full update DEBUG_INFO("Local list full update item: %d, listVer: %d, %s, %s, %s, %s.\n", idx, ShmOCPP16Data->SendLocalList.ListVersion, ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTag, ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ParentIdTag, ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ExpiryDate, ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTagInfo.Status); // update list OCPP_addLocalList(ShmOCPP16Data->SendLocalList.ListVersion, (char*)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTag, (char*)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ParentIdTag, (char*)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ExpiryDate, (char*)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTagInfo.Status); } else if(strcmp((char*)ShmOCPP16Data->SendLocalList.UpdateType, UpdateTypeStr[Differential]) == 0) { DEBUG_INFO("Local list diff update item: %d,listVer: %d, %s, %s, %s, %s.\n", idx, ShmOCPP16Data->SendLocalList.ListVersion, ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTag, ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ParentIdTag, ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ExpiryDate, ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTagInfo.Status); OCPP_addLocalList(ShmOCPP16Data->SendLocalList.ListVersion, (char*)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTag, (char*)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ParentIdTag, (char*)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTagInfo.ExpiryDate, (char*)ShmOCPP16Data->SendLocalList.LocalAuthorizationList[0].IdTagInfo.Status); } } } else { //Check UpdateType if(strcmp((char*)ShmOCPP16Data->SendLocalList.UpdateType, 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((char*)ShmOCPP16Data->SendLocalList.UpdateType, 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; } } result = PASS; } strcpy(comfirmstr, UpdateStatusStr[UpdateStatus_Accepted]); end: json_object_put(SendLocalList); sendSendLocalListConfirmation(uuid, comfirmstr); return result; } int handleSetChargingProfileRequest(char *uuid, char *payload) { mtrace(); int result = FAIL; struct StructSetChargingProfile SetProfileReq = {0}; int tempchargingProfileIdInt; int tempstackLevelInt; int chargingSchedulePeriodCount = 0; char comfirmstr[20]={0}; char tempfile[] = "/Storage/OCPP/SetChargingProfiletemp.json"; char rmFileCmd[128]={0}; int profileQuantity = 0; int replaceableProfileCnt = 0; json_object *SetChargingProfile; DEBUG_INFO("handleSetChargingProfileRequest\n"); SetChargingProfile = json_tokener_parse(payload); if(!is_error(SetChargingProfile)) { if(json_object_object_get(SetChargingProfile, "connectorId") != NULL) { SetProfileReq.ConnectorId = json_object_get_int(json_object_object_get(SetChargingProfile, "connectorId")); } if(json_object_object_get(SetChargingProfile, "csChargingProfiles") != NULL) { if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfileId") != NULL) { SetProfileReq.ChargingProfile.ChargingProfileId = json_object_get_int(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfileId")); } else { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); DEBUG_WARN("Cannot find chargingProfileId field."); goto end; } if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "stackLevel") != NULL) { SetProfileReq.ChargingProfile.StackLevel = json_object_get_int(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "stackLevel")); } else { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); DEBUG_WARN("Cannot find stackLevel field."); goto end; } if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfilePurpose") != NULL) { strcpy((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, json_object_get_string(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfilePurpose"))); } else { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); DEBUG_WARN("Cannot find chargingProfilePurpose field."); goto end; } if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfileKind") != NULL) { strcpy((char*)SetProfileReq.ChargingProfile.ChargingProfileKind, json_object_get_string(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingProfileKind"))); } else { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); DEBUG_WARN("Cannot find chargingProfileKind field."); goto end; } if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "transactionId") != NULL) { SetProfileReq.ChargingProfile.TransactionId = json_object_get_int(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "transactionId")); } if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "recurrencyKind") != NULL) { strcpy((char*)SetProfileReq.ChargingProfile.RecurrencyKind, json_object_get_string(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "recurrencyKind"))); } if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "validFrom") != NULL) { strcpy((char*)SetProfileReq.ChargingProfile.ValidFrom, json_object_get_string(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "validFrom"))); } if(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "validTo") != NULL) { strcpy((char*)SetProfileReq.ChargingProfile.ValidTo, json_object_get_string(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "validTo"))); } 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((char*)SetProfileReq.ChargingProfile.ChargingSchedule.ChargingRateUnit, json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "chargingRateUnit"))); } else { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); DEBUG_WARN("Cannot find chargingRateUnit field."); goto end; } if(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "duration") != NULL) { SetProfileReq.ChargingProfile.ChargingSchedule.Duration = json_object_get_int(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "duration")); } if(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "minChargingRate") != NULL) { SetProfileReq.ChargingProfile.ChargingSchedule.MinChargingRate = json_object_get_double(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "minChargingRate")); } if(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "startSchedule") != NULL) { strcpy((char*)SetProfileReq.ChargingProfile.ChargingSchedule.StartSchedule, json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(SetChargingProfile, "csChargingProfiles"), "chargingSchedule"), "startSchedule"))); } 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")); if(chargingSchedulePeriodCount <= 10) { for(int idxPeriod=0;idxPeriod atoi((const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData)) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); DEBUG_WARN("Profile period is over limit %s. \n", ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargingScheduleMaxPeriods].ItemData); goto end; } // Check invalid limit if((strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[ChargePointMaxProfile]) != 0) || ((strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[ChargePointMaxProfile]) == 0) && (ShmSysConfigAndInfo->SysConfig.isEnableLocalPowerSharing != 1))) { if(ShmSysConfigAndInfo->SysConfig.ModelName[0] == 'A') { for(uint8_t idxPeriod=0;idxPeriod (SetProfileReq.ChargingProfile.ChargingSchedule.ChargingRateUnit[0]=='W'?modelnameInfo.ratedPower:ShmSysConfigAndInfo->SysConfig.RatingCurrent))) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); DEBUG_WARN("Profile period-%02d is invalid limit: %.2f %s with phase %d.\n", idxPeriod, SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit, SetProfileReq.ChargingProfile.ChargingSchedule.ChargingRateUnit, (SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases==0?3:SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases)); goto end; } } } else { for(uint8_t idxPeriod=0;idxPeriod modelnameInfo.ratedPower) || (SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit*(SetProfileReq.ChargingProfile.ChargingSchedule.ChargingRateUnit[0]=='W'?1:220*(SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases==0?3:SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases)) < (modelnameInfo.ratedPower*0.01))) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); DEBUG_WARN("Profile period-%02d is invalid limit: %.2f %s with phase %d.\n", idxPeriod, SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].Limit, SetProfileReq.ChargingProfile.ChargingSchedule.ChargingRateUnit, (SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases==0?3:SetProfileReq.ChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idxPeriod].NumberPhases)); goto end; } } } } // Profile purpose info check if(strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[ChargePointMaxProfile]) == 0) { FILE *fp; DEBUG_INFO("Profile purpose is ChargePointMaxProfile.\n"); if(SetProfileReq.ConnectorId != 0) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); DEBUG_WARN("Profile connector id is not 0.\n"); goto end; } fp = fopen(ChargePointMaxProfile_JSON, "r"); if (!fp) { DEBUG_INFO("%s does not create.\n", ChargePointMaxProfile_JSON); fp = fopen(ChargePointMaxProfile_JSON, "w+"); } else { char *line = NULL; size_t len = 0; while(getline(&line, &len, fp) != -1) { json_object *obj = NULL; obj = json_tokener_parse(line); if(is_error(obj)) { DEBUG_ERROR("Parse txProfile from file error.\n"); } else { if((json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")) != SetProfileReq.ChargingProfile.ChargingProfileId) && (json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")) != SetProfileReq.ChargingProfile.StackLevel)) { profileQuantity += 1; } else replaceableProfileCnt += 1; } } } fclose(fp); } else if(strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxDefaultProfile]) == 0) { FILE *fp; char filename[128]={0}; int tmpProfileQuantity; DEBUG_INFO("Profile purpose is TxDefaultProfile.\n"); if((SetProfileReq.ConnectorId != 0) && (SetProfileReq.ConnectorId > gunTotalNumber)) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); DEBUG_WARN("Profile connector id is over max gun number.\n"); goto end; } if(SetProfileReq.ConnectorId == 0) { for(int idxCon=1;idxCon<=gunTotalNumber;idxCon++) { tmpProfileQuantity = 0; memset(filename, 0, ARRAY_SIZE(filename)); sprintf(filename, "/Storage/OCPP/TxDefaultProfile_%d.json", idxCon); fp = fopen(filename, "r"); if (!fp) { DEBUG_INFO("%s does not create.\n", filename); fp = fopen(filename, "w+"); } else { char *line = NULL; size_t len = 0; while(getline(&line, &len, fp) != -1) { json_object *obj = NULL; obj = json_tokener_parse(line); if(is_error(obj)) { DEBUG_ERROR("Parse txProfile from file error.\n"); } else { if((json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")) != SetProfileReq.ChargingProfile.ChargingProfileId) && (json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")) != SetProfileReq.ChargingProfile.StackLevel)) { tmpProfileQuantity += 1; } else replaceableProfileCnt += 1; } } } fclose(fp); profileQuantity = (profileQuantity < tmpProfileQuantity) ? tmpProfileQuantity : profileQuantity; } } else { memset(filename, 0, ARRAY_SIZE(filename)); sprintf(filename, "/Storage/OCPP/TxDefaultProfile_%d.json", SetProfileReq.ConnectorId); fp = fopen(filename, "r"); if (!fp) { DEBUG_INFO("%s does not create.\n", filename); fp = fopen(filename, "w+"); } else { char *line = NULL; size_t len = 0; while(getline(&line, &len, fp) != -1) { json_object *obj = NULL; obj = json_tokener_parse(line); if(is_error(obj)) { DEBUG_ERROR("Parse txProfile from file error.\n"); } else { if((json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")) != SetProfileReq.ChargingProfile.ChargingProfileId) && (json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")) != SetProfileReq.ChargingProfile.StackLevel)) { profileQuantity += 1; } else replaceableProfileCnt += 1; } } } fclose(fp); } } else if(strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxProfile]) == 0) { int isMatchTransactiodId= FALSE; FILE *fp; char filename[128]={0}; DEBUG_INFO("Profile purposeStr is TxProfile.\n"); //---TxProfile SHALL only be set at Charge Point ConnectorId > 0. ---// if(SetProfileReq.ConnectorId == 0) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); DEBUG_WARN("Profile connector id is 0.\n"); goto end; } int tempIndex = 0; //check Transaction active if(gunType[SetProfileReq.ConnectorId -1] == GUN_TYPE_CHAdeMO) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = (((SetProfileReq.ConnectorId -1)==2) ? 1: 0); } else { tempIndex = SetProfileReq.ConnectorId -1; } for (int index = 0; index < CHAdeMO_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == tempIndex) { if((SYS_MODE_PREPARING <= ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus) && (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus <= SYS_MODE_TERMINATING)) // S_CHARGING { if(SetProfileReq.ChargingProfile.TransactionId == ShmOCPP16Data->StartTransaction[SetProfileReq.ConnectorId -1].ResponseTransactionId) { isMatchTransactiodId = TRUE; break; } } } } } else if(gunType[SetProfileReq.ConnectorId -1] == GUN_TYPE_CCS) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = (((SetProfileReq.ConnectorId -1)==2) ? 1: 0); } else { tempIndex = SetProfileReq.ConnectorId -1; } for (int index = 0; index < CCS_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == tempIndex) { if(((SYS_MODE_PREPARING <= ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus) && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus <= SYS_MODE_TERMINATING)) || ((SYS_MODE_CCS_PRECHARGE_STEP0 <= ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus) && (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus <= SYS_MODE_CCS_PRECHARGE_STEP1))) // S_CHARGING { if(SetProfileReq.ChargingProfile.TransactionId == ShmOCPP16Data->StartTransaction[SetProfileReq.ConnectorId -1].ResponseTransactionId) { isMatchTransactiodId = TRUE; break; } } } } } else if(gunType[SetProfileReq.ConnectorId -1] == GUN_TYPE_GBT) { if(ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') { tempIndex = (((SetProfileReq.ConnectorId -1)==2) ? 1: 0); } else { tempIndex = SetProfileReq.ConnectorId -1; } for (int index = 0; index < GB_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == tempIndex) { if((SYS_MODE_PREPARING <= ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus) && (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus <= SYS_MODE_TERMINATING)) // S_CHARGING { if(SetProfileReq.ChargingProfile.TransactionId == ShmOCPP16Data->StartTransaction[SetProfileReq.ConnectorId -1].ResponseTransactionId) { isMatchTransactiodId = TRUE; break; } } } } } else if(gunType[SetProfileReq.ConnectorId -1] == GUN_TYPE_DO) { tempIndex = SetProfileReq.ConnectorId -1; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { if(((SYS_MODE_PREPARING <= ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus) && (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus <= SYS_MODE_TERMINATING)) || ((SYS_MODE_CCS_PRECHARGE_STEP0 <= ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus) && (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus <= SYS_MODE_CCS_PRECHARGE_STEP1))) // S_CHARGING { if(SetProfileReq.ChargingProfile.TransactionId == ShmOCPP16Data->StartTransaction[SetProfileReq.ConnectorId -1].ResponseTransactionId) { isMatchTransactiodId = TRUE; break; } } } } } else { if(ShmSysConfigAndInfo->SysConfig.ModelName[0]=='D') // 'D' means DC { tempIndex = 2; } else { tempIndex = (SetProfileReq.ConnectorId -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(SetProfileReq.ChargingProfile.TransactionId == ShmOCPP16Data->StartTransaction[SetProfileReq.ConnectorId -1].ResponseTransactionId) { isMatchTransactiodId = TRUE; break; } } } } } //check Transaction active if(isMatchTransactiodId == FALSE) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); DEBUG_WARN("Tx profile transaction id is not match.\n"); goto end; } if((SetProfileReq.ConnectorId != 0) && (SetProfileReq.ConnectorId > gunTotalNumber)) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); DEBUG_WARN("Connector id is over max gun number.\n"); goto end; } sprintf(filename, "/Storage/OCPP/TxProfile_%d.json", SetProfileReq.ConnectorId); fp = fopen(filename, "r"); if (!fp) { DEBUG_INFO("%s does not create.\n", filename); fp = fopen(filename, "w+"); } else { char *line = NULL; size_t len = 0; while(getline(&line, &len, fp) != -1) { json_object *obj = NULL; obj = json_tokener_parse(line); if(is_error(obj)) { DEBUG_ERROR("Parse txProfile from file error.\n"); } else { if((json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "chargingProfileId")) != SetProfileReq.ChargingProfile.ChargingProfileId) && (json_object_get_int(json_object_object_get(json_object_object_get(obj, "csChargingProfiles"), "stackLevel")) != SetProfileReq.ChargingProfile.StackLevel)) { profileQuantity += 1; } else replaceableProfileCnt += 1; } } } fclose(fp); } // Check ChargeProfileMaxStackLevel DEBUG_INFO("%s profile quantity: %d\n", SetProfileReq.ChargingProfile.ChargingProfilePurpose, profileQuantity); if(profileQuantity >= atoi((const char *)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData)) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected] ); DEBUG_WARN("Purpose profile quantify is over stack limit %s.\n", ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[ChargeProfileMaxStackLevel].ItemData); goto end; } //------------------------------Start: Check Configuration Key "MaxChargingProfilesInstalled" Logic---------------------------------------// { FILE *fp; char dataLine[4096]={0}; char fnametemp[128]={0}; int tmpProfileQuantity; //Check ChargePointMaxProfile.json exit profileQuantity = 0; if((access("/Storage/OCPP/ChargePointMaxProfile.json",F_OK))!=-1) { fp = fopen("/Storage/OCPP/ChargePointMaxProfile.json", "r"); //Check Charging Profile Count tmpProfileQuantity = 0; while(fscanf(fp, "%s", dataLine) != EOF) { if(strstr(dataLine, "chargingProfileId")!= NULL) { profileQuantity += 1; tmpProfileQuantity += 1; } memset(dataLine, 0, ARRAY_SIZE(dataLine)); } fclose(fp); DEBUG_INFO("ChargePointMaxProfile.json has %d charging Profile\n", tmpProfileQuantity); } //Check TxDefaultProfile_%d.json for(int idxCon=1; idxCon <= gunTotalNumber; idxCon++) { memset(fnametemp, 0, ARRAY_SIZE(fnametemp)); sprintf(fnametemp, "/Storage/OCPP/TxDefaultProfile_%d.json", idxCon); if((access(fnametemp,F_OK))!=-1) { fp = fopen(fnametemp, "r"); //Check Charging Profile Count tmpProfileQuantity = 0; while(fscanf(fp, "%s", dataLine) != EOF) { //DEBUG_INFO("word=%s\n",word); if(strstr(dataLine, "chargingProfileId")!= NULL) { profileQuantity += 1; tmpProfileQuantity += 1; } memset(dataLine, 0, ARRAY_SIZE(dataLine)); } fclose(fp); DEBUG_INFO("%s has %d charging Profile\n",fnametemp, tmpProfileQuantity); } } //Check TxProfile_%d.json for(int idxCon=1; idxCon <= gunTotalNumber; idxCon++) { memset(fnametemp, 0, ARRAY_SIZE(fnametemp)); sprintf(fnametemp, "/Storage/OCPP/TxProfile_%d.json", idxCon); if((access(fnametemp,F_OK))!=-1) { fp = fopen(fnametemp, "r"); //Check Charging Profile Count tmpProfileQuantity = 0; while(fscanf(fp, "%s", dataLine) != EOF) { if(strstr(dataLine, "chargingProfileId")!= NULL) { profileQuantity += 1; tmpProfileQuantity += 1; } memset(dataLine, 0, ARRAY_SIZE(dataLine)); } fclose(fp); DEBUG_INFO("%s has %d charging Profile\n",fnametemp, tmpProfileQuantity); } } DEBUG_INFO("All purpose profile quantity: %d\n", profileQuantity); DEBUG_INFO("Replaceable profile quantity: %d\n", replaceableProfileCnt); // To check total Profile quantity if((SetProfileReq.ConnectorId > 0) || (strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[ChargePointMaxProfile]) == 0)) { if((profileQuantity-replaceableProfileCnt) >= atoi((const char*)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData)) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected]); DEBUG_WARN("Total profile quantify is over installed limit %s.\n", ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData); goto end; } } else { if((profileQuantity+gunTotalNumber-replaceableProfileCnt) > atoi((const char*)ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData)) { sprintf(comfirmstr, "%s", ChargingProfileStatusStr[ChargingProfileStatus_Rejected]); DEBUG_WARN("Total profile quantify is over installed limit %s.\n", ShmOCPP16Data->ConfigurationTable.SmartChargingProfile[MaxChargingProfilesInstalled].ItemData); goto end; } } } //------------------------------End: Check Configuration Key "MaxChargingProfilesInstalled" Logic---------------------------------------// //**********************************Write to File********************************************************/ { FILE *infile; FILE *outfile; char dataLine[4096]={0}; char filename[128]={0}; int chkChar=0; for(int idxCon=1; idxCon <= (SetProfileReq.ConnectorId==0?gunTotalNumber:1); idxCon++) { if(strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[ChargePointMaxProfile]) == 0) { sprintf(filename, "%s", ChargePointMaxProfile_JSON); } else if(strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxDefaultProfile]) == 0) { if(SetProfileReq.ConnectorId==0) sprintf(filename, "/Storage/OCPP/TxDefaultProfile_%d.json", idxCon); else sprintf(filename, "/Storage/OCPP/TxDefaultProfile_%d.json", SetProfileReq.ConnectorId); } else { sprintf(filename, "/Storage/OCPP/TxProfile_%d.json", SetProfileReq.ConnectorId); } infile = fopen (filename, "r"); outfile = fopen (tempfile, "w"); chkChar = fgetc(infile); rewind(infile); if(chkChar == EOF) { // Profile is empty if((strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxDefaultProfile]) == 0) && (SetProfileReq.ConnectorId==0)) json_object_object_add(SetChargingProfile, "connectorId", json_object_new_int(idxCon)); fprintf(outfile,"%s\n",json_object_to_json_string_ext(SetChargingProfile, JSON_C_TO_STRING_PLAIN)); fclose(infile); fclose(outfile); sprintf(rmFileCmd,"rm -f %s",filename); system(rmFileCmd); rename(tempfile, filename); } else { // Profile is not empty int ChargingProfileAdded = FALSE; while (fgets(dataLine, ARRAY_SIZE(dataLine), infile) != NULL) { dataLine[strlen(dataLine) - 1] = '\0'; // eat the newline fgets() stores json_object *tmpChargingProfile; tmpChargingProfile = json_tokener_parse(dataLine); if(!is_error(SetChargingProfile)) { 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")); } } } json_object_put(tmpChargingProfile); if((tempchargingProfileIdInt == SetProfileReq.ChargingProfile.ChargingProfileId)) { if(ChargingProfileAdded == FALSE) { if((strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxDefaultProfile]) == 0) && (SetProfileReq.ConnectorId==0)) json_object_object_add(SetChargingProfile, "connectorId", json_object_new_int(idxCon)); fprintf(outfile,"%s\n",json_object_to_json_string_ext(SetChargingProfile, JSON_C_TO_STRING_PLAIN)); ChargingProfileAdded = TRUE; } } else if(tempstackLevelInt == SetProfileReq.ChargingProfile.StackLevel) { if(ChargingProfileAdded == FALSE) { if((strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxDefaultProfile]) == 0) && (SetProfileReq.ConnectorId==0)) json_object_object_add(SetChargingProfile, "connectorId", json_object_new_int(idxCon)); fprintf(outfile,"%s\n",json_object_to_json_string_ext(SetChargingProfile, JSON_C_TO_STRING_PLAIN)); ChargingProfileAdded = TRUE; } } else { fprintf(outfile,"%s\n",dataLine); if(ChargingProfileAdded == FALSE) { if((strcmp((char*)SetProfileReq.ChargingProfile.ChargingProfilePurpose, ChargingProfilePurposeTypeStr[TxDefaultProfile]) == 0) && (SetProfileReq.ConnectorId==0)) json_object_object_add(SetChargingProfile, "connectorId", json_object_new_int(idxCon)); fprintf(outfile,"%s\n",json_object_to_json_string_ext(SetChargingProfile, JSON_C_TO_STRING_PLAIN)); ChargingProfileAdded = TRUE; } } } // 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: json_object_put(SetChargingProfile); if(strcmp(comfirmstr, ChargingProfileStatusStr[ChargingProfileStatus_Accepted]) == 0) { if(SetProfileReq.ConnectorId == 0) { for(uint8_t idx=0;idxSmartChargingProfile[idx], TRUE); } } else checkCompositeSchedule(SetProfileReq.ConnectorId, 86400, &ShmOCPP16Data->SmartChargingProfile[SetProfileReq.ConnectorId-1], TRUE); } sendSetChargingProfileConfirmation(uuid, comfirmstr); system("/bin/fsync -d /dev/mtdblock13;/bin/sync &"); 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((strlen((char*)ShmOCPP16Data->FirmwareStatusNotification.Status) == 0) || ((FirmwareStatusNotificationStatus != FIRMWARE_STATUS_DOWNLOADING) && (FirmwareStatusNotificationStatus != FIRMWARE_STATUS_DOWNLOADED) && (FirmwareStatusNotificationStatus != FIRMWARE_STATUS_IDLE) && (FirmwareStatusNotificationStatus != FIRMWARE_STATUS_INSTALLING))) { FirmwareStatusNotificationStatus = FIRMWARE_STATUS_IDLE; sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s", FirmwareStatusStr[FirmwareStatus_Idle]); } ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 1; } else if(strcmp(requestedMessagestr, MessageTriggerStr[DiagnosticsStatusNotification]) == 0 ) { if(strlen((char*)ShmOCPP16Data->DiagnosticsStatusNotification.Status) == 0) sprintf((char*)ShmOCPP16Data->DiagnosticsStatusNotification.Status, "%s", DiagnosticsStatusStr[DiagnosticsStatus_Idle]); ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 1; } else if(strcmp(requestedMessagestr, MessageTriggerStr[BootNotification]) == 0 ) { //sendBootNotificationRequest(); server_sign = FALSE; } else if(strcmp(requestedMessagestr, MessageTriggerStr[Heartbeat]) == 0 ) { refreshStartTimer(&clientTime.Heartbeat); clientTime.Heartbeat.tv_sec -= 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)) { ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].TriggerMessageReq = 1; cpinitateMsg.bits[connectorIdInt-1].TriggerStatusNotificationReq = 1; //clientTime.StatusNotification[connectorIdInt-1] = time((time_t*)NULL); } } else { for(int idx=0;idx< gunTotalNumber;idx++) { ShmOCPP16Data->CsMsg.bits[idx].TriggerMessageReq = 1; cpinitateMsg.bits[idx].TriggerStatusNotificationReq = 1; //clientTime.StatusNotification[idx] = time((time_t*)NULL); } } } 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] == GUN_TYPE_CHAdeMO) { 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 )) { //stop Transaction ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1; } } } else if(gunType[connectorIdInt-1] == GUN_TYPE_CCS) { 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 )) { //stop Transaction ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1; } } } else if(gunType[connectorIdInt-1] == GUN_TYPE_GBT) { 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 )) { //stop Transaction ShmOCPP16Data->CsMsg.bits[connectorIdInt-1].UnlockConnectorReq = 1; } } } else if(gunType[connectorIdInt-1] == GUN_TYPE_DO) { tempIndex = connectorIdInt -1; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if ((ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex )) { //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 )) { 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)); if(!interLock.isUpdateFirmwareGoing) { interLock.isUpdateFirmwareGoing = 1; pthread_create(&t, NULL, UpdateFirmwareProcess, stringtrimspace(payload)); sleep(1); } else DEBUG_WARN("Other UpdateFirmware request on going.\n"); 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[64],password[64],host[128], path[512], ftppath[512],host1[128],path1[512]; int port=0; char locationstr[1024]={0}, retrieveDatestr[36]={0}; int isSuccess = 0; char ftpbuf[1024]; char temp[1024]; 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)); // Wait retrieveData if(strlen(retrieveDatestr) > 10) { do { sleep(1); }while(!isOvertNow((uint8_t*)retrieveDatestr)); } // Ready to download system("rm -f /mnt/*"); if(strncmp(locationstr,"http", 4) == 0) { sscanf(locationstr,"%[^:]:%*2[/]%[^/]/%199[^\n]", protocol, 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 { sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Downloading]); ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 1; sleep(1); isSuccess = httpDownLoadFile(host, ftppath, filenametemp, locationstr); if(!isSuccess) { sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_DownloadFailed]); ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 1; if(retriesInt>0)sleep(retryIntervalInt);else sleep(1); sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Idle]); ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 1; } else { sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Downloaded]); ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 1; } retriesInt--; }while((isSuccess == 0)&&(retriesInt >= 0)); } else if(strncmp(locationstr,"sftp", 4) == 0) // sftp { memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf)); memset(temp, 0, ARRAY_SIZE(temp)); //DEBUG_INFO("locationstr=%s\n",locationstr); strcpy(ftpbuf, locationstr); int ftppathlen=strlen(ftpbuf); int i=1; char filenametemp[50]; while(i < ftppathlen) { int len=ftppathlen-i; if(ftpbuf[len]== 47) // '/' ascii 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, host, &port, path); } sscanf(host,"%[^/]%s",host1, path1); sprintf(ftppath,"%s:/%s", host,path); if(port == 0) { port = 21; } do { sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Downloading]); ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 1; sleep(1); isSuccess = sftpDownLoadFile(host1, user, port, ftppath, filenametemp, locationstr); if(!isSuccess) { //BulldogUtil.sleepMs(interval*1000); DEBUG_INFO("Update firmware request and download file fail.\n"); sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_DownloadFailed]); ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 1; if(retriesInt>0)sleep(retryIntervalInt);else sleep(1); sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Idle]); ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 1; } else { sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Downloaded]); ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 1; } retriesInt--; }while((!isSuccess)&&(retriesInt >= 0)); } 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 { sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Downloading]); ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 1; sleep(1); 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"); sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_DownloadFailed]); ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 1; if(retriesInt>0)sleep(retryIntervalInt);else sleep(1); sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Idle]); ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 1; } else { sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Downloaded]); ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 1; } retriesInt--; }while((!isSuccess)&&(retriesInt >= 0)); } else { sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_DownloadFailed]); ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 1; sleep(1); sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s",FirmwareStatusStr[FirmwareStatus_Idle]); ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 1; } if(strstr((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, FirmwareStatusStr[FirmwareStatus_Downloaded]) != NULL)ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = 1; interLock.isUpdateFirmwareGoing = 0; pthread_exit(NULL); } int handleCertificateSignedRequest(char *uuid, char *payload) { mtrace(); int result = PASS; json_object *CertificateSigned; DEBUG_INFO("handleCertificateSignedRequest...\n"); CertificateSigned = json_tokener_parse(payload); if(!is_error(CertificateSigned)) { sprintf((char*)ShmOCPP16Data->CertificateSigned.certificateChain, "%s", json_object_get_string(json_object_object_get(CertificateSigned, "certificateChain"))); } json_object_put(CertificateSigned); FILE *fp = fopen("/Storage/OCPP/certCP.crt", "w"); fprintf(fp, "%s", ShmOCPP16Data->CertificateSigned.certificateChain); fclose(fp); system("/bin/fsync -d /dev/mtdblock13;/bin/sync &"); ShmOCPP16Data->MsMsg.bits.CertificateSignedReq = 1; sprintf((char*)ShmOCPP16Data->CertificateSigned.Response_status, "Accepted"); sendCertificateSignedConfirmation(uuid); return result; } int handleDeleteCertificateRequest(char *uuid, char *payload) { mtrace(); int result = PASS; json_object *DeleteCertificate; DEBUG_INFO("handleDeleteCertificateRequest...\n"); DeleteCertificate = json_tokener_parse(payload); if(!is_error(DeleteCertificate)) { sprintf((char*)ShmOCPP16Data->DeleteCertificate.certificateHashData.hashAlgorithm, "%s", json_object_get_string(json_object_object_get(json_object_object_get(DeleteCertificate, "certificateHashData"), "hashAlgorithm"))); sprintf((char*)ShmOCPP16Data->DeleteCertificate.certificateHashData.issuerNameHash, "%s", json_object_get_string(json_object_object_get(json_object_object_get(DeleteCertificate, "certificateHashData"), "issuerNameHash"))); sprintf((char*)ShmOCPP16Data->DeleteCertificate.certificateHashData.issuerKeyHash, "%s", json_object_get_string(json_object_object_get(json_object_object_get(DeleteCertificate, "certificateHashData"), "issuerKeyHash"))); sprintf((char*)ShmOCPP16Data->DeleteCertificate.certificateHashData.serialNumber, "%s", json_object_get_string(json_object_object_get(json_object_object_get(DeleteCertificate, "certificateHashData"), "serialNumber"))); } json_object_put(DeleteCertificate); /* * TODO: Delete certificateSigned process */ ShmOCPP16Data->MsMsg.bits.DeleteCertificateReq = 1; DEBUG_INFO("hashAlgorithm: %s\n", ShmOCPP16Data->DeleteCertificate.certificateHashData.hashAlgorithm); DEBUG_INFO("issuerNameHash: %s\n", ShmOCPP16Data->DeleteCertificate.certificateHashData.issuerNameHash); DEBUG_INFO("issuerKeyHash: %s\n", ShmOCPP16Data->DeleteCertificate.certificateHashData.issuerKeyHash); DEBUG_INFO("serialNumber: %s\n", ShmOCPP16Data->DeleteCertificate.certificateHashData.serialNumber); sprintf((char*)ShmOCPP16Data->DeleteCertificate.Response_status, "NotFound"); sendDeleteCertificateConfirmation(uuid); return result; } int handleExtendedTriggerMessageRequest(char *uuid, char *payload) { mtrace(); int result = PASS; json_object *ExtendedTriggerMessage; DEBUG_INFO("handleExtendedTriggerMessageRequest...\n"); ExtendedTriggerMessage = json_tokener_parse(payload); if(!is_error(ExtendedTriggerMessage)) { sprintf((char*)ShmOCPP16Data->ExtendedTriggerMessage.requestedMessage, "%s", json_object_get_string(json_object_object_get(ExtendedTriggerMessage, "requestedMessage"))); if(json_object_object_get(ExtendedTriggerMessage, "connectorId") != NULL) { ShmOCPP16Data->ExtendedTriggerMessage.connectorId = json_object_get_int(json_object_object_get(ExtendedTriggerMessage, "connectorId")); } else { ShmOCPP16Data->ExtendedTriggerMessage.connectorId = -1; } } json_object_put(ExtendedTriggerMessage); DEBUG_INFO("requestedMessage: %s\n", ShmOCPP16Data->ExtendedTriggerMessage.requestedMessage); DEBUG_INFO("connectorIdInt: %d\n", ShmOCPP16Data->ExtendedTriggerMessage.connectorId); if((ShmOCPP16Data->ExtendedTriggerMessage.connectorId == 0) || (ShmOCPP16Data->ExtendedTriggerMessage.connectorId > gunTotalNumber)) { sprintf((char*)ShmOCPP16Data->ExtendedTriggerMessage.Response_status, TriggerMessageStatusStr[TriggerMessageStatus_Rejected]); } else { if((strcmp((char*)ShmOCPP16Data->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[BootNotification]) != 0 ) && (strcmp((char*)ShmOCPP16Data->ExtendedTriggerMessage.requestedMessage, "LogStatusNotification") != 0) && (strcmp((char*)ShmOCPP16Data->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[FirmwareStatusNotification]) != 0) && (strcmp((char*)ShmOCPP16Data->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[Heartbeat]) != 0) && (strcmp((char*)ShmOCPP16Data->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[MeterValues]) != 0) && (strcmp((char*)ShmOCPP16Data->ExtendedTriggerMessage.requestedMessage, "SignChargePointCertificate") != 0 ) && (strcmp((char*)ShmOCPP16Data->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[StatusNotification]) != 0 )) { sprintf((char*)ShmOCPP16Data->ExtendedTriggerMessage.Response_status, "%s",TriggerMessageStatusStr[TriggerMessageStatus_NotImplemented] ); } else { sprintf((char*)ShmOCPP16Data->ExtendedTriggerMessage.Response_status, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] ); } } sendExtendedTriggerMessageConfirmation(uuid); //========================== // Trigger message //========================== if(strcmp((char*)ShmOCPP16Data->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[BootNotification]) == 0 ) { //sendBootNotificationRequest(); server_sign = FALSE; } else if( strcmp((char*)ShmOCPP16Data->ExtendedTriggerMessage.requestedMessage, "LogStatusNotification") == 0) { ShmOCPP16Data->SpMsg.bits.LogStatusNotificationReq = 1; } else if( strcmp((char*)ShmOCPP16Data->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[FirmwareStatusNotification]) == 0) { if((strlen((char*)ShmOCPP16Data->FirmwareStatusNotification.Status) == 0) || ((FirmwareStatusNotificationStatus != FIRMWARE_STATUS_DOWNLOADING) && (FirmwareStatusNotificationStatus != FIRMWARE_STATUS_DOWNLOADED) && (FirmwareStatusNotificationStatus != FIRMWARE_STATUS_IDLE) && (FirmwareStatusNotificationStatus != FIRMWARE_STATUS_INSTALLING))) { FirmwareStatusNotificationStatus = FIRMWARE_STATUS_IDLE; sprintf((char*)ShmOCPP16Data->FirmwareStatusNotification.Status, "%s", FirmwareStatusStr[FirmwareStatus_Idle]); } ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = 1; } else if(strcmp((char*)ShmOCPP16Data->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[Heartbeat]) == 0 ) { refreshStartTimer(&clientTime.Heartbeat); clientTime.Heartbeat.tv_sec -= ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval; } else if (strcmp((char*)ShmOCPP16Data->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[MeterValues]) == 0 ) { if((ShmOCPP16Data->ExtendedTriggerMessage.connectorId > 0) && (ShmOCPP16Data->ExtendedTriggerMessage.connectorId <= gunTotalNumber)) { cpinitateMsg.bits[ShmOCPP16Data->ExtendedTriggerMessage.connectorId-1].TriggerMeterValue = 1; } else { for(int idx=0;idx< gunTotalNumber;idx++) { //sendMeterValuesRequest(idx, ReadingContext_Trigger); cpinitateMsg.bits[idx].TriggerMeterValue = 1; } } } else if(strcmp((char*)ShmOCPP16Data->ExtendedTriggerMessage.requestedMessage, "SignChargePointCertificate") == 0 ) { ShmOCPP16Data->SpMsg.bits.SignCertificateReq = 1; if(access("/Storage/OCPP/certCP.csr",F_OK) == -1) { system("openssl req -newkey rsa:2048 -out /Storage/OCPP/certCP.csr -nodes -keyout /Storage/OCPP/certCP.key -subj \"/C=TW/ST=Taiwan/L=Taoyuan/O=Phihong Technology/OU=IT/CN=phihong.com\" &"); } } else if(strcmp((char*)ShmOCPP16Data->ExtendedTriggerMessage.requestedMessage, MessageTriggerStr[StatusNotification]) == 0 ) { if((ShmOCPP16Data->ExtendedTriggerMessage.connectorId > 0) && (ShmOCPP16Data->ExtendedTriggerMessage.connectorId <= gunTotalNumber)) { cpinitateMsg.bits[ShmOCPP16Data->ExtendedTriggerMessage.connectorId -1].StatusNotificationReq = 1; } else { for(int idx=0;idx< gunTotalNumber;idx++) cpinitateMsg.bits[idx].StatusNotificationReq = 1; } } return result; } int handleGetInstalledCertificateIdsRequest(char *uuid, char *payload) { mtrace(); int result = PASS; json_object *GetInstalledCertificateIds; DEBUG_INFO("handleGetInstalledCertificateIdsRequest...\n"); GetInstalledCertificateIds = json_tokener_parse(payload); if(!is_error(GetInstalledCertificateIds)) { sprintf((char*)ShmOCPP16Data->GetInstalledCertificateIds.certificateType, "%s", json_object_get_string(json_object_object_get(GetInstalledCertificateIds, "certificateType"))); } json_object_put(GetInstalledCertificateIds); /* * TODO: Return installed certificate process */ ShmOCPP16Data->MsMsg.bits.GetInstalledCertificateIdsReq = 1; DEBUG_INFO("requestedMessage: %s\n", (char*)ShmOCPP16Data->GetInstalledCertificateIds.certificateType); memset(ShmOCPP16Data->GetInstalledCertificateIds.Response_certificateHashData, 0x00, ARRAY_SIZE(ShmOCPP16Data->GetInstalledCertificateIds.Response_certificateHashData)*sizeof(struct CertificateHashDataType)); sprintf((char*)ShmOCPP16Data->GetInstalledCertificateIds.Response_status, "NotFound"); sendGetInstalledCertificateIdsConfirmation(uuid); return result; } int handleGetLogRequest(char *uuid, char *payload) { mtrace(); int result = PASS; json_object *GetLog; DEBUG_INFO("handleGetLogRequest...\n"); GetLog = json_tokener_parse(payload); if(!is_error(GetLog)) { sprintf((char*)ShmOCPP16Data->GetLog.logType, "%s", json_object_get_string(json_object_object_get(GetLog, "logType"))); ShmOCPP16Data->GetLog.requestId = json_object_get_int(json_object_object_get(GetLog, "requestId")); if(json_object_object_get(GetLog, "retries") != NULL) { ShmOCPP16Data->GetLog.retries = json_object_get_int(json_object_object_get(GetLog, "retries")); } if(json_object_object_get(GetLog, "retryInterval") != NULL) { ShmOCPP16Data->GetLog.retryInterval = json_object_get_int(json_object_object_get(GetLog, "retryInterval")); } sprintf((char*)ShmOCPP16Data->GetLog.log.remoteLocation, "%s", json_object_get_string(json_object_object_get(json_object_object_get(GetLog, "log"), "remoteLocation"))); if(json_object_object_get(json_object_object_get(GetLog, "log"), "oldestTimestamp") != NULL) { sprintf((char*)ShmOCPP16Data->GetLog.log.oldestTimestamp, "%s", json_object_get_string(json_object_object_get(json_object_object_get(GetLog, "log"), "oldestTimestamp"))); } if(json_object_object_get(json_object_object_get(GetLog, "log"), "latestTimestamp") != NULL) { sprintf((char*)ShmOCPP16Data->GetLog.log.latestTimestamp, "%s", json_object_get_string(json_object_object_get(json_object_object_get(GetLog, "log"), "latestTimestamp"))); } } json_object_put(GetLog); /* * TODO: Upload log process */ ShmOCPP16Data->MsMsg.bits.GetLogReq = 1; DEBUG_INFO("logType: %s\n", ShmOCPP16Data->GetLog.logType); DEBUG_INFO("requestId: %d\n", ShmOCPP16Data->GetLog.requestId); DEBUG_INFO("retries: %d\n", ShmOCPP16Data->GetLog.retries); DEBUG_INFO("retryInterval: %d\n", ShmOCPP16Data->GetLog.retryInterval); DEBUG_INFO("remoteLocation: %s\n", ShmOCPP16Data->GetLog.log.remoteLocation); DEBUG_INFO("oldestTimestamp: %s\n", ShmOCPP16Data->GetLog.log.oldestTimestamp); DEBUG_INFO("latestTimestamp: %s\n", ShmOCPP16Data->GetLog.log.latestTimestamp); sprintf((char*)ShmOCPP16Data->GetLog.Response_status, "Rejected"); sendGetLogConfirmation(uuid); return result; } int handleInstallCertificateRequest(char *uuid, char *payload) { mtrace(); int result = PASS; json_object *InstallCertificate; DEBUG_INFO("handleInstallCertificateRequest...\n"); InstallCertificate = json_tokener_parse(payload); if(!is_error(InstallCertificate)) { sprintf((char*)ShmOCPP16Data->InstallCertificate.certificateType, "%s", json_object_get_string(json_object_object_get(InstallCertificate, "certificateType"))); sprintf((char*)ShmOCPP16Data->InstallCertificate.certificate, "%s", json_object_get_string(json_object_object_get(InstallCertificate, "certificate"))); /* * TODO: Install certificate process */ ShmOCPP16Data->MsMsg.bits.InstallCertificateReq = 1; DEBUG_INFO("certificateType: %s\n", (char*)ShmOCPP16Data->InstallCertificate.certificateType); DEBUG_INFO("certificate: %s\n", (char*)ShmOCPP16Data->InstallCertificate.certificate); sprintf((char*)ShmOCPP16Data->InstallCertificate.Response_status, "Rejected"); sendInstallCertificateConfirmation(uuid); } json_object_put(InstallCertificate); return result; } int handleSignedUpdateFirmwareRequest(char *uuid, char *payload) { mtrace(); int result = PASS; json_object *SignedUpdateFirmware; DEBUG_INFO("handleSignedUpdateFirmwareRequest...\n"); SignedUpdateFirmware = json_tokener_parse(payload); if(!is_error(SignedUpdateFirmware)) { if(json_object_object_get(SignedUpdateFirmware, "retries") != NULL) { ShmOCPP16Data->SignedUpdateFirmware.retries = json_object_get_int(json_object_object_get(SignedUpdateFirmware, "retries")); } if(json_object_object_get(SignedUpdateFirmware, "retryInterval") != NULL) { ShmOCPP16Data->SignedUpdateFirmware.retryInterval = json_object_get_int(json_object_object_get(SignedUpdateFirmware, "retryInterval")); } ShmOCPP16Data->SignedUpdateFirmware.requestId = json_object_get_int(json_object_object_get(SignedUpdateFirmware, "requestId")); sprintf((char*)ShmOCPP16Data->SignedUpdateFirmware.firmware.location, "%s", json_object_get_string(json_object_object_get(json_object_object_get(SignedUpdateFirmware, "firmware"), "location"))); sprintf((char*)ShmOCPP16Data->SignedUpdateFirmware.firmware.retrieveDateTime, "%s", json_object_get_string(json_object_object_get(json_object_object_get(SignedUpdateFirmware, "firmware"), "retrieveDateTime"))); if(json_object_object_get(json_object_object_get(SignedUpdateFirmware, "firmware"), "installDateTime") != NULL) { sprintf((char*)ShmOCPP16Data->SignedUpdateFirmware.firmware.installDateTime, "%s", json_object_get_string(json_object_object_get(json_object_object_get(SignedUpdateFirmware, "firmware"), "installDateTime"))); } sprintf((char*)ShmOCPP16Data->SignedUpdateFirmware.firmware.signingCertificate, "%s", json_object_get_string(json_object_object_get(json_object_object_get(SignedUpdateFirmware, "firmware"), "signingCertificate"))); sprintf((char*)ShmOCPP16Data->SignedUpdateFirmware.firmware.signature, "%s", json_object_get_string(json_object_object_get(json_object_object_get(SignedUpdateFirmware, "firmware"), "signature"))); } json_object_put(SignedUpdateFirmware); /* * TODO: Upgrade firmware process */ ShmOCPP16Data->MsMsg.bits.SignedUpdateFirmwareReq = 1; DEBUG_INFO("retries: %d\n", ShmOCPP16Data->SignedUpdateFirmware.retries); DEBUG_INFO("retryInterval: %d\n", ShmOCPP16Data->SignedUpdateFirmware.retryInterval); DEBUG_INFO("requestId: %d\n", ShmOCPP16Data->SignedUpdateFirmware.requestId); DEBUG_INFO("location: %s\n", ShmOCPP16Data->SignedUpdateFirmware.firmware.location); DEBUG_INFO("retrieveDateTime: %s\n", ShmOCPP16Data->SignedUpdateFirmware.firmware.retrieveDateTime); DEBUG_INFO("installDateTime: %s\n", ShmOCPP16Data->SignedUpdateFirmware.firmware.installDateTime); DEBUG_INFO("signingCertificate: %s\n", ShmOCPP16Data->SignedUpdateFirmware.firmware.signingCertificate); DEBUG_INFO("signature: %s\n", ShmOCPP16Data->SignedUpdateFirmware.firmware.signature); sprintf((char*)ShmOCPP16Data->SignedUpdateFirmware.Response_status, "Rejected"); sendInstallCertificateConfirmation(uuid); return result; } int handleUnknownRequest(char *uuid, char *payload) { mtrace(); int result = PASS; DEBUG_INFO("handleUnknownRequest...\n"); sendUnknownConfirmation(uuid); result = PASS; return result; } //========================================== // Handle server response routine //========================================== void handleAuthorizeResponse(char *payload, int gun_index) { mtrace(); char expiryDatestr[36]={0}; char parentIdTagstr[21]={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; 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; //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 )) { BootNotificationInterval = 0; if((intervalInt == 0) || (intervalInt >= 10)) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[HeartbeatInterval].ItemData, "%d", intervalInt); HeartBeatWaitTime = intervalInt; DEBUG_INFO("BootNotificationResponse setting interval to %d...\n",intervalInt); } server_sign = TRUE; server_pending =FALSE; } else if(strcmp(statusStr, RegistrationStatusStr[RegistrationStatus_Pending]) == 0) { server_pending = TRUE; } syncDateTimeRTC(ShmOCPP16Data->BootNotification.ResponseCurrentTime); srand(time(NULL)); refreshStartTimer(&clientTime.Heartbeat); clientTime.Heartbeat.tv_sec -= (ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval-((rand()%8)+3)); SetOcppConnStatus(TRUE); ShmOCPP16Data->SpMsg.bits.BootNotificationConf = 1; } void handleDataTransferResponse(char *payload, int gun_index) { json_object *DataTransfer = json_tokener_parse(payload); if(!is_error(DataTransfer)) { // Required data DEBUG_INFO("Status: %s.\n", json_object_get_string(json_object_object_get(DataTransfer, "status"))); // Optional data if(json_object_object_get(DataTransfer, "data") != NULL) { DEBUG_INFO("Data: %s\n", json_object_get_string(json_object_object_get(DataTransfer, "data"))); json_object *Data = json_tokener_parse(json_object_get_string(json_object_object_get(DataTransfer, "data"))); if(!is_error(Data)) { if(json_object_object_get(Data, "msgId") != NULL) { if(strstr(json_object_get_string(json_object_object_get(Data, "msgId")), "ID_CreditDeductResult") != NULL) { OCPP_update_deduct_info(json_object_get_int(json_object_object_get(Data, "txId")), (char*)json_object_get_string(json_object_object_get(Data, "creditNo"))); } if(strstr(json_object_get_string(json_object_object_get(Data, "msgId")), "ID_ReaderStatus") != NULL) { if(json_object_object_get(Data, "ConnectorId") != NULL) ShmOCPP16Data->TcciCustomData.ReaderStatus[json_object_get_int(json_object_object_get(Data, "ConnectorId"))-1].ReportReaderStatusReq = 0; } } } json_object_put(Data); } } json_object_put(DataTransfer); } 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(); 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; refreshStartTimer(&clientTime.Heartbeat); syncDateTimeRTC(ShmOCPP16Data->Heartbeat.ResponseCurrentTime); } void handleMeterValuesResponse(char *payload, int gun_index) { mtrace(); DEBUG_INFO("handleMeterValuesResponse...\n"); isQueueSendable = 1; } 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); OCPP_updatePeriodEnergy(gun_index); //-----------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); system("/bin/fsync -d /dev/mtdblock13;/bin/sync &"); isQueueSendable = 1; ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionConf = 1; ShmOCPP16Data->CpMsg.bits[gun_index].StartTransactionReq = 0; } void handleStatusNotificationResponse(char *payload, int gun_index) { mtrace(); DEBUG_INFO("handleStatusNotificationResponse...\n"); //cpinitateMsg.bits[gun_index].TriggerStatusNotificationReq = 0; //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); isQueueSendable = 1; 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); SetTransactionIdZero(queueOpInfo.stopTransactionId); } void handleLogStatusNotificationResponse(char *payload, int gun_index) { mtrace(); DEBUG_INFO("handleLogStatusNotificationResponse...\n"); ShmOCPP16Data->SpMsg.bits.LogStatusNotificationConf = 1; } void handleSecurityEventNotificationResponse(char *payload, int gun_index) { mtrace(); DEBUG_INFO("handleSecurityEventNotificationResponse...\n"); ShmOCPP16Data->SpMsg.bits.SecurityEventNotificationConf = 1; } void handleSignCertificateResponse(char *payload, int gun_index) { mtrace(); DEBUG_INFO("handleSignCertificateResponse...\n"); json_object *SignCertificate; SignCertificate = json_tokener_parse(payload); if(!is_error(SignCertificate)) { sprintf((char*)ShmOCPP16Data->SignCertificate.Response_status, "%s", json_object_get_string(json_object_object_get(SignCertificate, "status"))); DEBUG_INFO("status: %s\n", ShmOCPP16Data->SignCertificate.Response_status); } json_object_put(SignCertificate); ShmOCPP16Data->SpMsg.bits.SignCertificateConf = 1; } void handleSignedFirmwareStatusNotificationResponse(char *payload, int gun_index) { mtrace(); DEBUG_INFO("handleSignedFirmwareStatusNotificationResponse...\n"); ShmOCPP16Data->SpMsg.bits.SignedFirmwareStatusNotificationConf = 1; } //========================================== // 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[512]={0}; char sstr[256]={0}; int c = 0; char *loc; int confVersion = 19; DEBUG_INFO("initialConfigurationTable...version: %d\n", confVersion); //start_t = clock(); //printf("Starting of the program, start_t = %ld\n", start_t); memset(&(ShmOCPP16Data->ConfigurationTable), 0, sizeof(struct OCPP16ConfigurationTable) ); // Check configuration file size is correct if((access("/Storage/OCPP/OCPPConfiguration",F_OK))!=-1) { struct stat st; stat("/Storage/OCPP/OCPPConfiguration", &st); if(st.st_size < 3100) { system("rm -f /Storage/OCPP/OCPPConfiguration"); DEBUG_INFO("OCPPConfiguration file size: %d is smaller than 3100 bytes, restore to default value.\n", st.st_size); } } 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", "false", 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"); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[GetConfigurationMaxKeys].ItemData, "%d", _GetConfiguration_CNT); 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 = 1; 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", "false", 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" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MaxEnergyOnInvalidId", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[MaxEnergyOnInvalidId].ItemData); // MeterValuesAlignedData ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemAccessibility = 1; 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,Current.Offered,Power.Offered" ); else strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedData].ItemData, "Current.Import,Energy.Active.Import.Register,Energy.Active.Import.Interval,Power.Active.Import,Voltage,Current.Offered" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesAlignedData", "false", 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, "8" ); else strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData, "10" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesAlignedDataMaxLength", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesAlignedDataMaxLength].ItemData); // MeterValuesSampledData ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemAccessibility = 1; 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,Current.Offered,Power.Offered" ); else strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledData].ItemData, "Current.Import,Energy.Active.Import.Register,Energy.Active.Import.Interval,Power.Active.Import,Voltage,Current.Offered" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MeterValuesSampledData", "false", 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, "8" ); else strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MeterValuesSampledDataMaxLength].ItemData, "10" ); 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 = 1; //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", "false", 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, "" ); 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 = 1; 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", "false", 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", 7); } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledDataMaxLength].ItemData, "%d", 9); } 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); // QueueOffLineMeterValues ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemName, "QueueOffLineMeterValues"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemData, "FALSE" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","QueueOffLineMeterValues", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemData); // AuthorizationKey ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemName, "AuthorizationKey"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData, (char*)ShmSysConfigAndInfo->SysConfig.OcppSecurityPassword); 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"); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemData, "%d", ShmSysConfigAndInfo->SysConfig.OcppSecurityProfile); 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); // TimeOffset ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffset].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffset].ItemName, "TimeOffset"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffset].ItemData, "+00:00" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","TimeOffset", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffset].ItemData); // NextTimeOffsetTransitionDateTime ShmOCPP16Data->ConfigurationTable.CoreProfile[NextTimeOffsetTransitionDateTime].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NextTimeOffsetTransitionDateTime].ItemName, "NextTimeOffsetTransitionDateTime"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NextTimeOffsetTransitionDateTime].ItemData, " " ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","NextTimeOffsetTransitionDateTime", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[NextTimeOffsetTransitionDateTime].ItemData); // TimeOffsetNextTransition ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffsetNextTransition].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffsetNextTransition].ItemName, "TimeOffsetNextTransition"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffsetNextTransition].ItemData, "+00:00" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","TimeOffsetNextTransition", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffsetNextTransition].ItemData); // SystemUptimeSec ShmOCPP16Data->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemName, "SystemUptimeSec"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemData, "0" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SystemUptimeSec", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemData); // FreeVend ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVend].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVend].ItemName, "FreeVend"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVend].ItemData, (ShmSysConfigAndInfo->SysConfig.AuthorisationMode?"TRUE":"FALSE") ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","FreeVend", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVend].ItemData); // FreeVendIdtag ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemName, "FreeVendIdtag"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemData, "FreeVendIdtag" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","FreeVendIdtag", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemData); // OcppServer ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppServer].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppServer].ItemName, "OcppServer"); memcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppServer].ItemData, (char*)ShmSysConfigAndInfo->SysConfig.OcppServerURL, 500); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","OcppServer", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppServer].ItemData); // MaintainServer ShmOCPP16Data->ConfigurationTable.CoreProfile[MaintainServer].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaintainServer].ItemName, "MaintainServer"); memcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaintainServer].ItemData, (char*)ShmSysConfigAndInfo->SysConfig.MaintainServerURL, 500); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MaintainServer", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[MaintainServer].ItemData); // StatusNotificationPeriodically ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemName, "StatusNotificationPeriodically"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData, "FALSE" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StatusNotificationPeriodically", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData); // StatusNotificationInterval ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemName, "StatusNotificationInterval"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemData, "120" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StatusNotificationInterval", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemData); // PreAuthAmount ShmOCPP16Data->ConfigurationTable.CoreProfile[PreAuthAmount].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PreAuthAmount].ItemName, "PreAuthAmount"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PreAuthAmount].ItemData, "888" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","PreAuthAmount", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[PreAuthAmount].ItemData); // isEnableLocalPowerSharing ShmOCPP16Data->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemName, "isEnableLocalPowerSharing"); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemData, "%d", ShmSysConfigAndInfo->SysConfig.isEnableLocalPowerSharing); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","isEnableLocalPowerSharing", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemData); // PowerSharingServerIP ShmOCPP16Data->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemName, "PowerSharingServerIP"); memcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemData, (char*)ShmSysConfigAndInfo->SysConfig.PowerSharingServerIP, 500); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","PowerSharingServerIP", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemData); // EVCCID_PREFIX ShmOCPP16Data->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemName, "EVCCID_PREFIX"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemData, "" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","EVCCID_PREFIX", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemData); // OffLineMaxChargingPower ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemName, "OffLineMaxChargingPower"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemData, "0" ); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","OffLineMaxChargingPower", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemData); // Configuration Version ShmOCPP16Data->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemName, "ConfigurationVersion"); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemData, "%d", confVersion); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConfigurationVersion", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemData); // Charging profile refresh interval ShmOCPP16Data->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemName, "CharingProfileRefreshInterval"); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData, "30"); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","CharingProfileRefreshInterval", "false", ShmOCPP16Data->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData); // Ocpp Software certificated version ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemName, "OcppSoftwareVersion"); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemData, "%s", "V1.00"); fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","OcppSoftwareVersion", "true", ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppSoftwareVersion].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, "100000" ); 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, "1000" ); 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, "8" ); 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,Power" ); 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, "FALSE" ); 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, "50" ); 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[256]={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"); if(strlen(str) > 0) { str[strlen(str) - 1] = '\0'; // eat the newline fgets() stores //*************************key*********************************/ if(strstr(str, "key") != NULL) { loc = strstr(str, "key"); c = 0; memset(sstr ,0, ARRAY_SIZE(sstr) ); while ((loc[strlen("key")+3+c] != '\"') && (c < (ARRAY_SIZE(sstr)-1))) { sstr[c] = loc[strlen("key")+3+c]; c++; } sstr[c] = '\0'; strcpy(keystr,sstr); } //*************************readonly*********************************/ if(strstr(str, "readonly") != NULL) { loc = strstr(str, "readonly"); c = 0; memset(sstr ,0, ARRAY_SIZE(sstr) ); while ((loc[strlen("readonly")+2+c] != ',') && (c < (ARRAY_SIZE(sstr)-1))) { sstr[c] = loc[strlen("readonly")+2+c]; c++; } sstr[c] = '\0'; strcpy(readonlystr,sstr); } //*************************value*********************************/ if(strstr(str, "value") != NULL) { loc = strstr(str, "value"); c = 0; memset(sstr ,0, ARRAY_SIZE(sstr) ); while ((loc[strlen("value")+3+c] != '\"') && (c < (ARRAY_SIZE(sstr)-1))) { 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) ); } 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, "QueueOffLineMeterValues") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].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); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData, "%s", ShmSysConfigAndInfo->SysConfig.OcppSecurityPassword); } if(strcmp(keystr, "SecurityProfile") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SecurityProfile].ItemData, "%d", ShmSysConfigAndInfo->SysConfig.OcppSecurityProfile); } 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, "TimeOffset") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffset].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffset].ItemData, "%s", valuestr); } if(strcmp(keystr, "NextTimeOffsetTransitionDateTime") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[NextTimeOffsetTransitionDateTime].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NextTimeOffsetTransitionDateTime].ItemData, "%s", valuestr); } if(strcmp(keystr, "TimeOffsetNextTransition") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffsetNextTransition].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffsetNextTransition].ItemData, "%s", valuestr); } if(strcmp(keystr, "SystemUptimeSec") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemData, "%s", valuestr); } if(strcmp(keystr, "FreeVend") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVend].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVend].ItemData, "%s", (ShmSysConfigAndInfo->SysConfig.AuthorisationMode ? "TRUE" : "FALSE")); } if(strcmp(keystr, "FreeVendIdtag") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemData, "%s", valuestr); } if(strcmp(keystr, "OcppServer") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppServer].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; memcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppServer].ItemData, (char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL, 500); } if(strcmp(keystr, "MaintainServer") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[MaintainServer].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; memcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaintainServer].ItemData, (char *)ShmSysConfigAndInfo->SysConfig.MaintainServerURL,500); } if(strcmp(keystr, "StatusNotificationPeriodically") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData, "%s", valuestr); } if(strcmp(keystr, "StatusNotificationInterval") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemData, "%d", atoi(valuestr)); } if(strcmp(keystr, "PreAuthAmount") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[PreAuthAmount].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PreAuthAmount].ItemData, "%.2f", atof(valuestr)); } if(strcmp(keystr, "isEnableLocalPowerSharing") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemData, "%d", ShmSysConfigAndInfo->SysConfig.isEnableLocalPowerSharing); } if(strcmp(keystr, "PowerSharingServerIP") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; memcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemData, (char *)ShmSysConfigAndInfo->SysConfig.PowerSharingServerIP,500); } if(strcmp(keystr, "EVCCID_PREFIX") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemData, "%s", valuestr); } if(strcmp(keystr, "OffLineMaxChargingPower") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemData, "%s", valuestr); } if(strcmp(keystr, "ConfigurationVersion") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemData, "%d", atoi(valuestr)); } if(strcmp(keystr, "CharingProfileRefreshInterval") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData, "%s", valuestr); } if(strcmp(keystr, "OcppSoftwareVersion") == 0) { ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemAccessibility = (strcmp(readonlystr, "true")==0) ? 0 : 1; sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppSoftwareVersion].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); } if(atoi((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemData) == confVersion) { return PASS; } else { return FAIL; } } 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", "false", (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", "false", (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", "false", (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", "false", (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", "false", (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", "false", (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); // QueueOffLineMeterValues /* ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemAccessibility = 0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemName, "QueueOffLineMeterValues"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemData, "TRUE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","QueueOffLineMeterValues", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].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); // TimeOffset /* ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffset].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffset].ItemName, "TimeOffset"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffset].ItemData, "FALSE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","TimeOffset", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffset].ItemData); // NextTimeOffsetTransitionDateTime /* ShmOCPP16Data->ConfigurationTable.CoreProfile[NextTimeOffsetTransitionDateTime].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NextTimeOffsetTransitionDateTime].ItemName, "NextTimeOffsetTransitionDateTime"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NextTimeOffsetTransitionDateTime].ItemData, "FALSE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","NextTimeOffsetTransitionDateTime", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NextTimeOffsetTransitionDateTime].ItemData); // TimeOffsetNextTransition /* ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffsetNextTransition].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffsetNextTransition].ItemName, "TimeOffsetNextTransition"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffsetNextTransition].ItemData, "FALSE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","TimeOffsetNextTransition", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffsetNextTransition].ItemData); // SystemUptimeSec /* ShmOCPP16Data->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemName, "SystemUptimeSec"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemData, "0" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","SystemUptimeSec", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemData); // FreeVend /* ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVend].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVend].ItemName, "FreeVend"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVend].ItemData, "FALSE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","FreeVend", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVend].ItemData); // FreeVendIdtag /* ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemName, "FreeVendIdtag"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemData, "FreeVendIdtag" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","FreeVendIdtag", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemData); // OcppServer /* ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppServer].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppServer].ItemName, "OcppServer"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppServer].ItemData, "FALSE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","OcppServer", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppServer].ItemData); // MaintainServer /* ShmOCPP16Data->ConfigurationTable.CoreProfile[MaintainServer].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaintainServer].ItemName, "MaintainServer"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaintainServer].ItemData, "FALSE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MaintainServer", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaintainServer].ItemData); // StatusNotificationPeriodically /* ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemAccessibility =0; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemName, "StatusNotificationPeriodically"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData, "FALSE" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StatusNotificationPeriodically", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData); // StatusNotificationInterval /* ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemName, "StatusNotificationInterval"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemData, "120" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","StatusNotificationInterval", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemData); // PreAuthAmount /* ShmOCPP16Data->ConfigurationTable.CoreProfile[PreAuthAmount].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PreAuthAmount].ItemName, "PreAuthAmount"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PreAuthAmount].ItemData, "120" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","PreAuthAmount", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PreAuthAmount].ItemData); // isEnableLocalPowerSharing /* ShmOCPP16Data->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemName, "isEnableLocalPowerSharing"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemData, "0" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","isEnableLocalPowerSharing", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemData); // PowerSharingServerIP /* ShmOCPP16Data->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemName, "PowerSharingServerIP"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemData, "" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","PowerSharingServerIP", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemData); // EVCCID_PREFIX /* ShmOCPP16Data->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemName, "EVCCID_PREFIX"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemData, "" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","EVCCID_PREFIX", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemData); // OffLineMaxChargingPower /* ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemName, "OffLineMaxChargingPower"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemData, "" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","OffLineMaxChargingPower", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemData); // ConfigurationVersion /* ShmOCPP16Data->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemName, "ConfigurationVersion"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemData, "1" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConfigurationVersion", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemData); // CharingProfileRefreshInterval /* ShmOCPP16Data->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemName, "CharingProfileRefreshInterval"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData, "" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","CharingProfileRefreshInterval", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData); // OcppSoftwareVersion /* ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemAccessibility = 1; strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemName, "OcppSoftwareVersion"); strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemData, "" ); */ fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","OcppSoftwareVersion", "true", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppSoftwareVersion].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); system("/bin/fsync -d /dev/mtdblock13;/bin/sync &"); } 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 ); 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"*/); } sprintf((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[NumberOfConnectors].ItemData, "%d", gunTotalNumber); 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, "QueueOffLineMeterValues") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_QueueOffLineMeterValues].Item, "QueueOffLineMeterValues"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_QueueOffLineMeterValues].Key, "QueueOffLineMeterValues"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_QueueOffLineMeterValues].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_QueueOffLineMeterValues].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_QueueOffLineMeterValues].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].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(isEmpty || strcmp(keyReq, "TimeOffset") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_TimeOffset].Item, "TimeOffset"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TimeOffset].Key, "TimeOffset"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffset].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TimeOffset].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TimeOffset].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TimeOffset].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffset].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "NextTimeOffsetTransitionDateTime") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_NextTimeOffsetTransitionDateTime].Item, "NextTimeOffsetTransitionDateTime"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NextTimeOffsetTransitionDateTime].Key, "NextTimeOffsetTransitionDateTime"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[NextTimeOffsetTransitionDateTime].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NextTimeOffsetTransitionDateTime].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NextTimeOffsetTransitionDateTime].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_NextTimeOffsetTransitionDateTime].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NextTimeOffsetTransitionDateTime].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "TimeOffsetNextTransition") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_TimeOffsetNextTransition].Item, "TimeOffsetNextTransition"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TimeOffsetNextTransition].Key, "TimeOffsetNextTransition"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffsetNextTransition].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TimeOffsetNextTransition].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TimeOffsetNextTransition].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_TimeOffsetNextTransition].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffsetNextTransition].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "SystemUptimeSec") == 0 ) { struct sysinfo s_info; int error = sysinfo(&s_info); strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_SystemUptimeSec].Item, "SystemUptimeSec"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SystemUptimeSec].Key, "SystemUptimeSec"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SystemUptimeSec].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SystemUptimeSec].ReadOnly, "1"/*"TRUE"*/); } if(error != 0) { DEBUG_WARN("System uptime get error: %d\n", error); } else { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[SystemUptimeSec].ItemData, "%ld", s_info.uptime); sprintf((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_SystemUptimeSec].Value, "%ld", s_info.uptime); } isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "FreeVend") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_FreeVend].Item, "FreeVend"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_FreeVend].Key, "FreeVend"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVend].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_FreeVend].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_FreeVend].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_FreeVend].Value, (ShmSysConfigAndInfo->SysConfig.AuthorisationMode?"TRUE":"FALSE")); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "FreeVendIdtag") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_FreeVendIdtag].Item, "FreeVendIdtag"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_FreeVendIdtag].Key, "FreeVendIdtag"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_FreeVendIdtag].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_FreeVendIdtag].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_FreeVendIdtag].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemData); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "OcppServer") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_OcppServer].Item, "OcppServer"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OcppServer].Key, "OcppServer"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppServer].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OcppServer].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OcppServer].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OcppServer].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppServer].ItemData); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "MaintainServer") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_MaintainServer].Item, "MaintainServer"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaintainServer].Key, "MaintainServer"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MaintainServer].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaintainServer].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaintainServer].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_MaintainServer].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaintainServer].ItemData); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "StatusNotificationPeriodically") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StatusNotificationPeriodically].Item, "StatusNotificationPeriodically"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StatusNotificationPeriodically].Key, "StatusNotificationPeriodically"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StatusNotificationPeriodically].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StatusNotificationPeriodically].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StatusNotificationPeriodically].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "StatusNotificationInterval") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_StatusNotificationInterval].Item, "StatusNotificationInterval"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StatusNotificationInterval].Key, "StatusNotificationInterval"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StatusNotificationInterval].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StatusNotificationInterval].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_StatusNotificationInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "PreAuthAmount") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_PreAuthAmount].Item, "PreAuthAmount"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_PreAuthAmount].Key, "PreAuthAmount"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[PreAuthAmount].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_PreAuthAmount].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_PreAuthAmount].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_PreAuthAmount].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PreAuthAmount].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "isEnableLocalPowerSharing") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_isEnableLocalPowerSharing].Item, "isEnableLocalPowerSharing"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_isEnableLocalPowerSharing].Key, "isEnableLocalPowerSharing"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_isEnableLocalPowerSharing].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_isEnableLocalPowerSharing].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_isEnableLocalPowerSharing].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "PowerSharingServerIP") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_PowerSharingServerIP].Item, "PowerSharingServerIP"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_PowerSharingServerIP].Key, "PowerSharingServerIP"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_PowerSharingServerIP].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_PowerSharingServerIP].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_PowerSharingServerIP].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "EVCCID_PREFIX") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_EVCCID_PREFIX].Item, "EVCCID_PREFIX"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_EVCCID_PREFIX].Key, "EVCCID_PREFIX"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_EVCCID_PREFIX].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_EVCCID_PREFIX].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_EVCCID_PREFIX].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "OffLineMaxChargingPower") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_OffLineMaxChargingPower].Item, "OffLineMaxChargingPower"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OffLineMaxChargingPower].Key, "OffLineMaxChargingPower"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OffLineMaxChargingPower].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OffLineMaxChargingPower].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OffLineMaxChargingPower].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "ConfigurationVersion") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_ConfigurationVersion].Item, "ConfigurationVersion"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConfigurationVersion].Key, "ConfigurationVersion"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConfigurationVersion].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConfigurationVersion].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_ConfigurationVersion].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "CharingProfileRefreshInterval") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_CharingProfileRefreshInterval].Item, "CharingProfileRefreshInterval"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CharingProfileRefreshInterval].Key, "CharingProfileRefreshInterval"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CharingProfileRefreshInterval].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CharingProfileRefreshInterval].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_CharingProfileRefreshInterval].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData ); isKnowKey = TRUE; } if(isEmpty || strcmp(keyReq, "OcppSoftwareVersion") == 0 ) { strcpy((char *)ShmOCPP16Data->GetConfiguration.Key[GetConfiguration_OcppSoftwareVersion].Item, "OcppSoftwareVersion"); strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OcppSoftwareVersion].Key, "OcppSoftwareVersion"); if(ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppSoftwareVersion].ItemAccessibility == 1) { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OcppSoftwareVersion].ReadOnly, "0"/*"FALSE"*/); } else { strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OcppSoftwareVersion].ReadOnly, "1"/*"TRUE"*/); } strcpy((char *)ShmOCPP16Data->GetConfiguration.ResponseConfigurationKey[GetConfiguration_OcppSoftwareVersion].Value, (const char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppSoftwareVersion].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[501]={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) >= 5)) { //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) ); 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) >= 3)) { //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 { if((atoi(value) == 0) || (atoi(value) >= 10)) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[WebSocketPingInterval].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } else isSuccess = ConfigurationStatus_Rejected; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "QueueOffLineMeterValues") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++) { str[i] = tolower(str[i]); } sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[QueueOffLineMeterValues].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); strcpy((char*)ShmSysConfigAndInfo->SysConfig.OcppSecurityPassword, (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[AuthorizationKey].ItemData); 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) ); ShmSysConfigAndInfo->SysConfig.OcppSecurityProfile = 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]); } 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]); } sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "TimeOffset") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffset].ItemAccessibility == 1) { strcpy(str, (const char*)value); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffset].ItemData, "%s", str); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "NextTimeOffsetTransitionDateTime") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[NextTimeOffsetTransitionDateTime].ItemAccessibility == 1) { strcpy(str, (const char*)value); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[NextTimeOffsetTransitionDateTime].ItemData, "%s", str); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "TimeOffsetNextTransition") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffsetNextTransition].ItemAccessibility == 1) { strcpy(str, (const char*)value); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[TimeOffsetNextTransition].ItemData, "%s", str); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "SystemUptimeSec") == 0) { isSuccess = NotSupported; } if(strcmp(key, "FreeVend") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVend].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++) { str[i] = tolower(str[i]); } ShmSysConfigAndInfo->SysConfig.AuthorisationMode = ((strcmp(str, "true")==0) ? 1 : 0 ); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVend].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE" ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "FreeVendIdtag") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemAccessibility == 1) { strcpy(str, (const char*)value); if(strlen(str) <= 20) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemData, "%s", str ); isSuccess = ConfigurationStatus_Accepted; } else { DEBUG_WARN("FreeVendIdtag(%s) length over 20 bytes.\n", str); isSuccess = ConfigurationStatus_Rejected; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "OcppServer") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppServer].ItemAccessibility == 1) { strcpy(str, (const char*)value); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OcppServer].ItemData, "%s", str ); sprintf((char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL, "%s", str ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "MaintainServer") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[MaintainServer].ItemAccessibility == 1) { strcpy(str, (const char*)value); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MaintainServer].ItemData, "%s", str ); sprintf((char *)ShmSysConfigAndInfo->SysConfig.MaintainServerURL, "%s", str ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "StatusNotificationPeriodically") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemAccessibility == 1) { strcpy(str, (const char*)value); for(int i = 0; str[i]; i++) { str[i] = tolower(str[i]); } sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationPeriodically].ItemData, "%s", (strcmp(str, "true")==0) ?"TRUE":"FALSE"); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "StatusNotificationInterval") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { if((atoi(value) == 0) || (atoi(value) >= 10)) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StatusNotificationInterval].ItemData, "%d", atoi(value) ); isSuccess = ConfigurationStatus_Accepted; } else isSuccess = ConfigurationStatus_Rejected; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "PreAuthAmount") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[PreAuthAmount].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { if(atof(value) >= 0) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PreAuthAmount].ItemData, "%.2f", atof(value) ); isSuccess = ConfigurationStatus_Accepted; } else isSuccess = ConfigurationStatus_Rejected; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "isEnableLocalPowerSharing") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemAccessibility == 1) { check_ascii = value[0]; if( (check_ascii < 48) || (check_ascii > 57) ) { isSuccess = ConfigurationStatus_Rejected; } else { if(atoi(value) >= 0) { sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[isEnableLocalPowerSharing].ItemData, "%d", atoi(value)); ShmSysConfigAndInfo->SysConfig.isEnableLocalPowerSharing = (unsigned char)atoi(value); isSuccess = ConfigurationStatus_Accepted; } else isSuccess = ConfigurationStatus_Rejected; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "PowerSharingServerIP") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemAccessibility == 1) { strcpy(str, (const char*)value); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[PowerSharingServerIP].ItemData, "%s", str ); sprintf((char *)ShmSysConfigAndInfo->SysConfig.PowerSharingServerIP, "%s", str ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "EVCCID_PREFIX") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemAccessibility == 1) { strcpy(str, (const char*)value); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[EVCCID_PREFIX].ItemData, "%s", str ); isSuccess = ConfigurationStatus_Accepted; } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "OffLineMaxChargingPower") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemAccessibility == 1) { if(atoi(value) > modelnameInfo.ratedPower) { isSuccess = ConfigurationStatus_Rejected; } else{ strcpy(str, (const char*)value); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[OffLineMaxChargingPower].ItemData, "%s", str ); isSuccess = ConfigurationStatus_Accepted; } } else { isSuccess = ConfigurationStatus_Rejected; } } if(strcmp(key, "CharingProfileRefreshInterval") == 0) { if(ShmOCPP16Data->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemAccessibility == 1) { if((atoi(value) != 0) && (atoi(value) < 5)) { isSuccess = ConfigurationStatus_Rejected; } else{ strcpy(str, (const char*)value); sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CharingProfileRefreshInterval].ItemData, "%s", str ); 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) { 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("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; } } system("/bin/fsync -d /dev/mtdblock13;/bin/sync &"); 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) { int result = TRUE; char rmFileCmd[100]={0}; char FilePath[100]={0}; char ftpbuf[200]; int systemresult; sprintf(FilePath,"/mnt/%s",filename); system("ping 8.8.8.8 &"); 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=1 -O /mnt/%s -c %s -T 120 --no-check-certificate",filename, url); DEBUG_INFO("Download command: %s\n",ftpbuf); systemresult = system(ftpbuf); if(systemresult != 0) { DEBUG_INFO("HTTP/HTTPS downLoad fail!\n"); result = FALSE; } system("pkill ping"); return result; } int sftpDownLoadFile(char *location, char *user, int port, char *path, char *filename,char *url) { int result = TRUE; char rmFileCmd[100]={0}; char FilePath[100]={0}; char ftpbuf[200]; int systemresult; sprintf(FilePath,"/mnt/%s",filename); system("ping 8.8.8.8 &"); 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,"timeout -t 360 scp -i /root/.ssh/id_rsa_bear -P %d %s@%s%s /mnt/%s", port, user, path, filename, filename); DEBUG_INFO("Download command: %s\n",ftpbuf); systemresult = system(ftpbuf); if(systemresult != 0) { DEBUG_WARN("scp error!\n"); result = FALSE; } system("pkill ping"); return result; } int ftpDownLoadFile(char *location, char *user, char *password, int port, char *path, char *filename,char *url) { int result = TRUE; char rmFileCmd[100]={0}; char FilePath[100]={0}; char ftpbuf[200]; int systemresult; sprintf(FilePath,"/mnt/%s",filename); system("ping 8.8.8.8 &"); 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=1 -O /mnt/%s -c %s -T 120",filename, url); DEBUG_INFO("Download command: %s\n",ftpbuf); systemresult = system(ftpbuf); if(systemresult != 0) { sprintf(ftpbuf, "wget --tries=1 -O /mnt/%s -c %s -T 120 --no-passive-ftp",filename, url); DEBUG_INFO("Download command: %s\n",ftpbuf); systemresult = system(ftpbuf); if(systemresult != 0) { DEBUG_WARN("FTP download fail!\n"); result = FALSE; } } system("pkill ping"); return result; } int httpUploadFile(char *location, char *path, char *filename,char *url) { char rmFileCmd[100]={0}; char FilePath[100]={0}; char buf[512]; int systemresult = 0; //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); } FILE *phpFP = popen("/bin/php-cgi /var/www/ocpp_upload.php", "r"); if(phpFP == NULL) { DEBUG_INFO("PHP upload fail.\n"); return FALSE; } else { while(fgets(buf, sizeof(buf), phpFP) != NULL) { if(strstr(buf, "result") != NULL) { sscanf(buf, "result: %d", &systemresult); DEBUG_INFO("PHP HTTP upload result: %d\n", systemresult); } } pclose(phpFP); } if(systemresult != 1) { DEBUG_WARN("HTTP POST upload error, change to PUT method\n"); FILE *phpFP = popen("/bin/php-cgi /var/www/ocpp_upload_put.php", "r"); if(phpFP == NULL) { DEBUG_WARN("PHP PUT upload fail.\n"); return FALSE; } else { while(fgets(buf, sizeof(buf), phpFP) != NULL) { if(strstr(buf, "result") != NULL) { sscanf(buf, "result: %d", &systemresult); DEBUG_INFO("PHP HTTP PUT upload result: %d\n", systemresult); } } pclose(phpFP); } } if(systemresult != 1) { DEBUG_WARN("PHP PUT upload fail.\n"); return FALSE; } return TRUE; } int ftpUploadFile(char *location, char *user, char *password, int port, char *path, char *fnamePlusPath,char *filename) { int result = FALSE; char ftpbuf[200]; int systemresult; /* // Domaind name transfer to IP address struct hostent* server; char *IPbuffer; server = gethostbyname(location); IPbuffer = inet_ntoa(*((struct in_addr*)server->h_addr_list[0]));*/ memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf)); sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s", user, password, location, port/*21*/, path, filename, fnamePlusPath); DEBUG_INFO("ftp command: %s\n",ftpbuf); systemresult = system(ftpbuf); if(systemresult != 0) { DEBUG_INFO("ftpput error!\n"); } else { result = TRUE; DEBUG_INFO("ftpput OK!\n"); } return result; } 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 GetStartTransactionId(int gun_index) { return ShmOCPP16Data->StartTransaction[gun_index].ResponseTransactionId; } 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')) && isStopTransaction) { 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] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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(struct StructMeterValue)); strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].TimeStamp, buf); //================================= //1. Transaction_Begin //================================= //============================== Energy.Active.Import.Interval =========================================== //================================= //2. Transaction_End //================================= //2.1====================================== Current.Import L1 ============================================== if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Current.Import") != NULL) { //J: CHAdeMO U: CCS1 combo E: CCS2 combo G : GBT DC if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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 ========================================== if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Energy.Active.Import.Interval") != NULL) { //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// 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] == GUN_TYPE_CCS) { 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, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// 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] == GUN_TYPE_GBT) { 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, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// 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] == GUN_TYPE_DO) { 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, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// 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, "%.3f" ,(ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PowerConsumption - periousPeriodicPowerConsumption[gun_index]));// 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 ========================================= if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Power.Active.Import") != NULL) { //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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 ==================================================== if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Voltage") != NULL) { //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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 ========================================================= if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, MeasurandStr[SoC]) != NULL) { //J : CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if((gunType[gun_index] == GUN_TYPE_CHAdeMO)||(gunType[gun_index] == GUN_TYPE_CCS)||(gunType[gun_index] == GUN_TYPE_GBT)||(gunType[gun_index] == GUN_TYPE_DO)) { if((ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') && (gunType[gun_index] != GUN_TYPE_DO)) { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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 ============================================== if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Current.Import") != NULL) { // AC 3 phase L2 current if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D'))) { 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 ============================================== if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Current.Import") != NULL) { // AC 3 phase L3 current if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D'))) { 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 ==================================================== if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Voltage") != NULL) { // AC 3 phase L2 volatge if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D'))) { 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 ==================================================== if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "Voltage") != NULL) { // AC 3 phase L3 volatge if((gunType[gun_index] == GUN_TYPE_AC) && ((ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'Y') || (ShmSysConfigAndInfo->SysConfig.ModelName[2] == 'W') || (ShmSysConfigAndInfo->SysConfig.ModelName[2]=='D'))) { 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 ================================ if(strstr((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, MeasurandStr[SoC]) != NULL) { //J : CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DC if((gunType[gun_index] == GUN_TYPE_CHAdeMO)||(gunType[gun_index] == GUN_TYPE_CCS)||(gunType[gun_index] == GUN_TYPE_GBT)||(gunType[gun_index] == GUN_TYPE_DO)) { if((ShmSysConfigAndInfo->SysConfig.ModelName[8] != '0') && (gunType[gun_index] != GUN_TYPE_DO)) { tempIndex = ((gun_index==2) ? 1: 0); } else { tempIndex = gun_index; } if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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] == GUN_TYPE_CCS) { 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] == GUN_TYPE_GBT) { 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] == GUN_TYPE_DO) { 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); system("/bin/fsync -d /dev/mtdblock13;/bin/sync &"); OCPP_updatePeriodEnergy(gun_index); } 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 OCPP_insert_transaction_msg(NO, str); memset(str,0,ARRAY_SIZE(str)); } } // fptr1=freopen(NULL,"w",fptr1); // reset the fptr1 again fclose(fptr1); remove(TempStopTransaction); // remove the original file system("/bin/fsync -d /dev/mtdblock13;/bin/sync &"); } 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", ShmSysConfigAndInfo->SysConfig.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; idxSysInfo.OcppRunningVer = OCPP_RUNNING_VERSION_16; } else if(strstr((char*)version, "ocpp2.0") != NULL) { ShmSysConfigAndInfo->SysInfo.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; } int GetBackendConnectionTimeout(void) { return ShmSysConfigAndInfo->SysConfig.BackendConnTimeout>=0?ShmSysConfigAndInfo->SysConfig.BackendConnTimeout:300; } int isConnectorInitMode(int gun_index) { int tempIndex = 0; int result = TRUE; //J: CHAdeMO U: CCS1 combo E: CCS2 combo G: GBT DCcc if(gunType[gun_index] == GUN_TYPE_CHAdeMO) { 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)) { result = (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].SystemStatus==SYS_MODE_BOOTING)?TRUE:FALSE; } //end of the same index }//end of for CHAdeMO_QUANTITY } else if(gunType[gun_index] == GUN_TYPE_CCS) { 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) { result = (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].SystemStatus==SYS_MODE_BOOTING)?TRUE:FALSE; } //end of the same index } // end of for CCS_QUANTITY } else if(gunType[gun_index] == GUN_TYPE_GBT) { 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) { result = (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].SystemStatus==SYS_MODE_BOOTING)?TRUE:FALSE; } //end of the same index } // end of for GB_QUANTITY } else if(gunType[gun_index] == GUN_TYPE_DO) { tempIndex = gun_index; for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { if(ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.Index == tempIndex) { result = (ShmSysConfigAndInfo->SysInfo.ConnectorInfo[index].GeneralChargingData.SystemStatus==SYS_MODE_BOOTING)?TRUE:FALSE; } //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) { result = (ShmSysConfigAndInfo->SysInfo.AcChargingData[index].SystemStatus==SYS_MODE_BOOTING)?TRUE:FALSE; }//end of the same index }//end of for AC_QUANTITY } return result; } void refreshProcDogTimer() { ShmOCPP16Data->procDogTime = time((time_t*)NULL); } void InitialSystemValue(void) { server_cycle_Status = atoi((char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData); locallistVersion=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(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)); //Status && ConnectorPlugIn Setting for (int index = 0; index < CHAdeMO_QUANTITY; index++) { ChademoPreviousSystemStatus[index] = 99; //ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].PreviousSystemStatus; ChademoPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].ConnectorPlugIn; } for (int index = 0; index < CCS_QUANTITY; index++) { CcsPreviousSystemStatus[index] = 99; //ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].PreviousSystemStatus; CcsPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].ConnectorPlugIn; } for (int index = 0; index < GB_QUANTITY; index++) { GbPreviousSystemStatus[index] = 99; //ShmSysConfigAndInfo->SysInfo.GbChargingData[index].PreviousSystemStatus; GbPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.GbChargingData[index].ConnectorPlugIn; } for (int index = 0; index < AC_QUANTITY; index++) { AcPreviousSystemStatus[index] = 99; //ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PreviousSystemStatus; AcPreviousConnectorPlugIn[index] = ShmSysConfigAndInfo->SysInfo.AcChargingData[index].PilotState; } for (int index = 0; index < GENERAL_GUN_QUANTITY; index++) { DoPreviousSystemStatus[index] = 99; //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].TriggerStatusNotificationReq = 0; cpinitateMsg.bits[gun_index].StatusNotificationReq = 0; cpinitateMsg.bits[gun_index].StatusNotificationConf = 0; //clientTime.MeterValues[gun_index] = time((time_t*)NULL); //memset(&ShmOCPP16Data->StatusNotification[gun_index], 0x00, sizeof(struct StructStatusNotification)); memset(&ShmOCPP16Data->StatusNotification[gun_index].Status, 0x00, sizeof(ShmOCPP16Data->StatusNotification[gun_index].Status)); } memset( (void *)unknownkey, 0, sizeof(unknownkey)); refreshStartTimer(&clientTime.Heartbeat); sleep(1); } void LWS_Send(char *str) { //===================================================== // Check InternetConn 0: disconnected, 1: connected //==================================================== if(GetOcppConnStatus() == 0) { DEBUG_INFO("offline now !!!\n"); return; } // Only disable isWebsocketSendable operation initiated by charger if((strstr((char*)str, "\"Authorize\"") != NULL) || (strstr((char*)str, "\"BootNotification\"") != NULL) || (strstr((char*)str, "\"DataTransfer\"") != NULL) || (strstr((char*)str, "\"DiagnosticsStatusNotification\"") != NULL) || (strstr((char*)str, "\"FirmwareStatusNotification\"") != NULL) || (strstr((char*)str, "\"Heartbeat\"") != NULL) || (strstr((char*)str, "\"MeterValues\"") != NULL) || (strstr((char*)str, "\"StartTransaction\"") != NULL) || (strstr((char*)str, "\"StatusNotification\"") != NULL) || (strstr((char*)str, "\"StopTransaction\"") != NULL) || (strstr((char*)str, "\"LogStatusNotification\"") != NULL) || (strstr((char*)str, "\"SecurityEventNotification\"") != NULL) || (strstr((char*)str, "\"SignCertificate\"") != NULL) || (strstr((char*)str, "\"SignedFirmwareStatusNotification\"") != NULL)) { isWebsocketSendable = 0; } 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; } // Only disable isWebsocketSendable operation initiated by charger if((strstr((char*)str, "\"Authorize\"") != NULL) || (strstr((char*)str, "\"BootNotification\"") != NULL) || (strstr((char*)str, "\"DataTransfer\"") != NULL) || (strstr((char*)str, "\"DiagnosticsStatusNotification\"") != NULL) || (strstr((char*)str, "\"FirmwareStatusNotification\"") != NULL) || (strstr((char*)str, "\"Heartbeat\"") != NULL) || (strstr((char*)str, "\"MeterValues\"") != NULL) || (strstr((char*)str, "\"StartTransaction\"") != NULL) || (strstr((char*)str, "\"StatusNotification\"") != NULL) || (strstr((char*)str, "\"StopTransaction\"") != NULL) || (strstr((char*)str, "\"LogStatusNotification\"") != NULL) || (strstr((char*)str, "\"SecurityEventNotification\"") != NULL) || (strstr((char*)str, "\"SignCertificate\"") != NULL) || (strstr((char*)str, "\"SignedFirmwareStatusNotification\"") != NULL)) { isWebsocketSendable = 0; } 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); }