|
@@ -44,6 +44,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
#define PASS 1
|
|
|
#define FAIL -1
|
|
|
|
|
@@ -1254,9 +1256,8 @@ void CheckSystemValue(void)
|
|
|
|
|
|
//DEBUG_INFO("\n gunTotalNumber=%d\n",gunTotalNumber);
|
|
|
|
|
|
- for(int gun_index=0;gun_index < gunTotalNumber /*(CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY )*/ ;gun_index++)
|
|
|
+ for(int gun_index=0;gun_index < gunTotalNumber ;gun_index++)
|
|
|
{
|
|
|
-
|
|
|
//===============================
|
|
|
// CSU Trigger Reset Conf
|
|
|
//===============================
|
|
@@ -1294,6 +1295,16 @@ void CheckSystemValue(void)
|
|
|
server_sign = FALSE;
|
|
|
}
|
|
|
|
|
|
+ //===============================
|
|
|
+ // CSU Trigger Smart Charging Profilw
|
|
|
+ //===============================
|
|
|
+ if((server_sign == TRUE) && (ShmOCPP16Data->CSUMsg.bits[gun_index].ChargingProfileReq == 1))
|
|
|
+ {
|
|
|
+ ShmOCPP16Data->CSUMsg.bits[gun_index].ChargingProfileReq = 0;
|
|
|
+ GetChargingProfileRequest(gun_index);
|
|
|
+ ShmOCPP16Data->CSUMsg.bits[gun_index].ChargingProfileConf = 1;
|
|
|
+ }
|
|
|
+
|
|
|
//==============================================
|
|
|
// Charger start transaction
|
|
|
//==============================================
|
|
@@ -12941,6 +12952,1427 @@ int InternetDisconnect(void)
|
|
|
return (ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectVia4Gi && ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaEthernet && ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi );
|
|
|
}
|
|
|
|
|
|
+void GetChargingProfileRequest(int gunindex)
|
|
|
+{
|
|
|
+ mtrace();
|
|
|
+
|
|
|
+ //int connectorIdInt, durationInt;
|
|
|
+ //char chargingRateUnitStr[4]={0};
|
|
|
+ int tempdurationInt = 0;
|
|
|
+ int tempchargingProfileId = 0;
|
|
|
+ int tempstackLevel = 0;
|
|
|
+ int temptransactionId = 0;
|
|
|
+ float tempminChargingRateFloat = 0.0;
|
|
|
+ char tempchargingProfilePurposeStr[24]={0};
|
|
|
+ char tempchargingProfileKindStr[12]={0};
|
|
|
+ char temprecurrencyKindStr[8]={0};
|
|
|
+ char tempvalidFromStr[28]={0},tempchargingRateUnitStr[4]={0}, tempstartScheduleStr[30]={0};
|
|
|
+ char tempvalidToStr[28]={0};
|
|
|
+ int tempStartPeriodInt = 0;
|
|
|
+ float tempLimitInt = 0.0;//0.1;
|
|
|
+ int tempNumberPhasesInt=0;
|
|
|
+ char fname[200];
|
|
|
+ //char comfirmstr[20];
|
|
|
+ float MinChargingRate =0.0;
|
|
|
+ double diff_t;
|
|
|
+ struct tm tp;
|
|
|
+ FILE *fptr1;//, *fptr2;
|
|
|
+ int c = 0;
|
|
|
+ char * pch;
|
|
|
+ char *loc;
|
|
|
+ char sstr[200]={ 0 };
|
|
|
+ int n_chargingProfile = 0;
|
|
|
+ int n_SchedulePeriods = 0;
|
|
|
+ char SchedulePeriodList[10][200]={0};
|
|
|
+ char sLineWord[800]={0};
|
|
|
+ char word[1000]={0};
|
|
|
+ int confirmPeriods = 0;
|
|
|
+ struct StructProfile ChargePointMaxProfile;
|
|
|
+ struct StructProfile TxDefaultProfile;
|
|
|
+ struct StructProfile TxProfile;
|
|
|
+ struct StructProfile TxDefaultProfiletemp[2]={0};
|
|
|
+
|
|
|
+ struct StructChargingProfile ChargePointMaxProfile_TEMP={0};
|
|
|
+ struct StructChargingProfile TxDefaultProfile_TEMP={0};
|
|
|
+ struct StructChargingProfile TxProfile_TEMP={0};
|
|
|
+ int TxDefaultProfileFileIsNull=FALSE;
|
|
|
+ int ChargePointMaxProfileIsNull=FALSE;
|
|
|
+ int TxProfileIsNull=FALSE;
|
|
|
+// int CompositeSceduleIndex = 0;
|
|
|
+ char ChargePointMaxProfileScheduleStr[30]={0};
|
|
|
+ char TxDefaultProfileScheduleStr[30]={0};
|
|
|
+ char TxProfileScheduleStr[30]={0};
|
|
|
+
|
|
|
+ memset(&ChargePointMaxProfile,0,sizeof(struct StructProfile));
|
|
|
+ memset(&TxDefaultProfile,0,sizeof(struct StructProfile));
|
|
|
+ memset(&TxProfile,0,sizeof(struct StructProfile));
|
|
|
+
|
|
|
+ DEBUG_INFO("GetChargingProfileRequest\n");
|
|
|
+
|
|
|
+ //*****************************ChargePointMaxProfile******************************************/
|
|
|
+ strcpy(fname, ChargePointMaxProfile_JSON);
|
|
|
+ ChargePointMaxProfileIsNull=TRUE;
|
|
|
+ if((access(ChargePointMaxProfile_JSON,F_OK))!=-1)
|
|
|
+ {
|
|
|
+ fptr1 = fopen(fname, "r");
|
|
|
+
|
|
|
+ int c;
|
|
|
+ c = fgetc(fptr1);
|
|
|
+ //DEBUG_INFO("c:%d\n",c);
|
|
|
+ rewind(fptr1);
|
|
|
+
|
|
|
+ if(c == EOF)
|
|
|
+ {
|
|
|
+ DEBUG_INFO("\n End of file reached.");
|
|
|
+ ChargePointMaxProfileIsNull=TRUE;
|
|
|
+ fclose(fptr1);
|
|
|
+
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ ChargePointMaxProfileIsNull=FALSE;
|
|
|
+ while(fscanf(fptr1, "%s", word) != EOF)
|
|
|
+ {
|
|
|
+ if(strcmp(word, "chargingProfileId") == 0)
|
|
|
+ {
|
|
|
+ n_chargingProfile = n_chargingProfile + 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ rewind(fptr1);
|
|
|
+
|
|
|
+ //search Charging Profile Element
|
|
|
+ int i = 0;
|
|
|
+ int j = 0;
|
|
|
+ while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
|
|
|
+
|
|
|
+
|
|
|
+ //***********chargingProfileId**************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "chargingProfileId");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[2+strlen("chargingProfileId")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[2+strlen("chargingProfileId")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("chargingProfileId=%s\n",sstr);
|
|
|
+ tempchargingProfileId = atoi(sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ tempchargingProfileId = 0;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //***********stackLevel**************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "stackLevel");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[2+strlen("stackLevel")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[2+strlen("stackLevel")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("stackLevel=%s\n",sstr);
|
|
|
+ tempstackLevel = atoi(sstr);
|
|
|
+
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ tempstackLevel = 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ //***********chargingProfilePurpose **************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "chargingProfilePurpose");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[3+strlen("chargingProfilePurpose")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("chargingProfilePurpose")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("chargingProfilePurpose =%s\n",sstr);
|
|
|
+ strcpy(tempchargingProfilePurposeStr,sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ strcpy(tempchargingProfilePurposeStr,"");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //***********chargingProfileKind **************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "chargingProfileKind");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[3+strlen("chargingProfileKind")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("chargingProfileKind")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("chargingProfileKind =%s\n",sstr);
|
|
|
+ strcpy(tempchargingProfileKindStr,sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ strcpy(tempchargingProfileKindStr,"");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //***********recurrencyKind **************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "recurrencyKind");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[3+strlen("recurrencyKind")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("recurrencyKind")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("recurrencyKind =%s\n",sstr);
|
|
|
+ strcpy(temprecurrencyKindStr,sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ strcpy(temprecurrencyKindStr,"");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //***********validFrom**************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "validFrom");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[3+strlen("validFrom")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("validFrom")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("validFrom=%s\n",sstr);
|
|
|
+ strcpy(tempvalidFromStr,sstr);
|
|
|
+
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ strcpy(tempvalidFromStr,"");
|
|
|
+ }
|
|
|
+
|
|
|
+ //***********validTo **************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "validTo");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[3+strlen("validTo")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("validTo")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("validTo =%s\n",sstr);
|
|
|
+ strcpy(tempvalidToStr,sstr);
|
|
|
+
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ strcpy(tempvalidToStr,"");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //***********validFrom**************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "validFrom");
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[3+strlen("validFrom")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("validFrom")+c];
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ strcpy(tempvalidFromStr,sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ strcpy(tempvalidFromStr,"");
|
|
|
+ }
|
|
|
+
|
|
|
+ //***********duration**************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "duration");
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[2+strlen("duration")+c] != ',')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[2+strlen("duration")+c];
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ tempdurationInt = atoi(sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ tempdurationInt = 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ //**********startSchedule**********/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "startSchedule");
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[3+strlen("startSchedule")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("startSchedule")+c];
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ strcpy(tempstartScheduleStr, sstr);
|
|
|
+ strcpy(ChargePointMaxProfileScheduleStr, sstr);
|
|
|
+
|
|
|
+
|
|
|
+ //**********chargingRateUnit**********/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "chargingRateUnit");
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[3+strlen("chargingRateUnit")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("chargingRateUnit")+c];
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ strcpy(tempchargingRateUnitStr, sstr);
|
|
|
+
|
|
|
+ //**********minChargingRate*******/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "minChargingRate");
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while ((loc[2+strlen("minChargingRate")+c] != ',')&&(loc[2+strlen("minChargingRate")+c] != '}'))
|
|
|
+ {
|
|
|
+ sstr[c] = loc[2+strlen("minChargingRate")+c];
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ tempminChargingRateFloat = atof(sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ tempminChargingRateFloat = 0.0;
|
|
|
+ }
|
|
|
+
|
|
|
+ //
|
|
|
+ strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
|
|
|
+ tp.tm_isdst = -1;
|
|
|
+ time_t utc = mktime(&tp);
|
|
|
+ time_t t = time(NULL);
|
|
|
+ diff_t = difftime(t, utc);
|
|
|
+
|
|
|
+ DEBUG_INFO("diff_t=%f\n",diff_t);
|
|
|
+ DEBUG_INFO(" debug 5 -1\n");
|
|
|
+ //parsing strings to words
|
|
|
+ i = 0;
|
|
|
+ loc = strstr(sLineWord, "chargingSchedulePeriod");
|
|
|
+ loc = loc+3+strlen("chargingSchedulePeriod");
|
|
|
+ pch = strtok(loc ,"{");
|
|
|
+ while (pch != NULL)
|
|
|
+ {
|
|
|
+ strcpy(SchedulePeriodList[i], pch);
|
|
|
+ pch = strtok (NULL, "{");
|
|
|
+ i = i + 1;
|
|
|
+ }
|
|
|
+ n_SchedulePeriods = i;
|
|
|
+
|
|
|
+ for(int i=0;i<n_SchedulePeriods;i++)
|
|
|
+ {
|
|
|
+ //*************startPeriod****************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(SchedulePeriodList[i], "startPeriod");
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[strlen("startPeriod")+2+c] != ',')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[strlen("startPeriod")+2+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ tempStartPeriodInt = atoi(sstr);
|
|
|
+
|
|
|
+ //*************limit****************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(SchedulePeriodList[i], "limit");
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[strlen("limit")+2+c] != ',')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[strlen("limit")+2+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ tempLimitInt = atof(sstr);
|
|
|
+
|
|
|
+ //*************numberPhases****************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(SchedulePeriodList[i], "numberPhases");
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[strlen("numberPhases")+2+c] != '}')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[strlen("numberPhases")+2+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ tempNumberPhasesInt = atoi(sstr);
|
|
|
+
|
|
|
+ if(j == 0)
|
|
|
+ {
|
|
|
+ ChargePointMaxProfile.Duration = tempdurationInt;
|
|
|
+ ChargePointMaxProfile.TotalPeriod = n_SchedulePeriods;
|
|
|
+ ChargePointMaxProfile.Period[i].Limit = tempLimitInt;
|
|
|
+ ChargePointMaxProfile.Period[i].NumberPhases = tempNumberPhasesInt;
|
|
|
+ ChargePointMaxProfile.Period[i].StartPeriod = tempStartPeriodInt;
|
|
|
+
|
|
|
+ ChargePointMaxProfile_TEMP.ChargingProfileId = tempchargingProfileId;
|
|
|
+ ChargePointMaxProfile_TEMP.StackLevel = tempstackLevel;
|
|
|
+ ChargePointMaxProfile_TEMP.TransactionId = 0;
|
|
|
+ strcpy((char *)ChargePointMaxProfile_TEMP.ChargingProfileKind, (const char *)tempchargingProfileKindStr);
|
|
|
+ strcpy((char *)ChargePointMaxProfile_TEMP.ChargingProfilePurpose, (const char *)tempchargingProfilePurposeStr);
|
|
|
+ strcpy((char *)ChargePointMaxProfile_TEMP.RecurrencyKind, (const char *)temprecurrencyKindStr);
|
|
|
+ strcpy((char *)ChargePointMaxProfile_TEMP.ChargingSchedule.StartSchedule, (const char *)tempstartScheduleStr);
|
|
|
+ strcpy((char *)ChargePointMaxProfile_TEMP.ValidFrom, (const char *)tempvalidFromStr);
|
|
|
+ strcpy((char *)ChargePointMaxProfile_TEMP.ValidTo, (const char *)tempvalidToStr);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ if(MinChargingRate < tempminChargingRateFloat)
|
|
|
+ {
|
|
|
+ MinChargingRate = tempminChargingRateFloat;
|
|
|
+ }
|
|
|
+
|
|
|
+ if(confirmPeriods < n_SchedulePeriods)
|
|
|
+ {
|
|
|
+ confirmPeriods = n_SchedulePeriods;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ j = j + 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ fclose(fptr1);
|
|
|
+ }
|
|
|
+
|
|
|
+ }// the end of access file ChargePointMaxProfile
|
|
|
+
|
|
|
+
|
|
|
+ //****************************TxDefaultProfile************************************************/
|
|
|
+
|
|
|
+ switch(gunindex + 1)
|
|
|
+ {
|
|
|
+ case 0:
|
|
|
+ break;
|
|
|
+
|
|
|
+ case 1:
|
|
|
+ strcpy(fname, TxDefaultProfile_1_JSON );
|
|
|
+ break;
|
|
|
+
|
|
|
+ case 2:
|
|
|
+ strcpy(fname, TxDefaultProfile_2_JSON );
|
|
|
+ break;
|
|
|
+
|
|
|
+ default:
|
|
|
+ strcpy(fname, TxDefaultProfile_1_JSON );
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
+ TxDefaultProfileFileIsNull=TRUE;
|
|
|
+ if((access(fname,F_OK))!=-1)
|
|
|
+ {
|
|
|
+ fptr1 = fopen(fname, "r");
|
|
|
+
|
|
|
+ c = 0;
|
|
|
+ c = fgetc(fptr1);
|
|
|
+ //DEBUG_INFO("c:%d\n",c);
|
|
|
+ rewind(fptr1);
|
|
|
+
|
|
|
+ if(c == EOF)
|
|
|
+ {
|
|
|
+ DEBUG_INFO("\n End of file reached.");
|
|
|
+ TxDefaultProfileFileIsNull=TRUE;
|
|
|
+ fclose(fptr1);
|
|
|
+
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ TxDefaultProfileFileIsNull=FALSE;
|
|
|
+
|
|
|
+ while(fscanf(fptr1, "%s", word) != EOF)
|
|
|
+ {
|
|
|
+ if(strcmp(word, "chargingProfileId") == 0)
|
|
|
+ {
|
|
|
+ n_chargingProfile = n_chargingProfile + 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ rewind(fptr1);
|
|
|
+
|
|
|
+ //search Charging Profile Element
|
|
|
+ int i = 0;
|
|
|
+ int j = 0;
|
|
|
+ while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
|
|
|
+ #if 0
|
|
|
+ /***********connectorId****************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "connectorId");
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (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';
|
|
|
+ tempconnectorIdInt = atoi(sstr);
|
|
|
+ #endif
|
|
|
+
|
|
|
+ //***********chargingProfileId**************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "chargingProfileId");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[2+strlen("chargingProfileId")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[2+strlen("chargingProfileId")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("chargingProfileId=%s\n",sstr);
|
|
|
+ tempchargingProfileId = atoi(sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ tempchargingProfileId = 0;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //***********stackLevel**************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "stackLevel");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[2+strlen("stackLevel")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[2+strlen("stackLevel")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("stackLevel=%s\n",sstr);
|
|
|
+ tempstackLevel = atoi(sstr);
|
|
|
+
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ tempstackLevel = 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ //***********chargingProfilePurpose **************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "chargingProfilePurpose");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[3+strlen("chargingProfilePurpose")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("chargingProfilePurpose")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("chargingProfilePurpose =%s\n",sstr);
|
|
|
+ strcpy(tempchargingProfilePurposeStr,sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ strcpy(tempchargingProfilePurposeStr,"");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //***********chargingProfileKind **************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "chargingProfileKind");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[3+strlen("chargingProfileKind")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("chargingProfileKind")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("chargingProfileKind =%s\n",sstr);
|
|
|
+ strcpy(tempchargingProfileKindStr,sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ strcpy(tempchargingProfileKindStr,"");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //***********recurrencyKind **************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "recurrencyKind");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[3+strlen("recurrencyKind")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("recurrencyKind")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("recurrencyKind =%s\n",sstr);
|
|
|
+ strcpy(temprecurrencyKindStr,sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ strcpy(temprecurrencyKindStr,"");
|
|
|
+ }
|
|
|
+
|
|
|
+ //***********validFrom**************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "validFrom");
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[3+strlen("validFrom")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("validFrom")+c];
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ strcpy(tempvalidFromStr,sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ strcpy(tempvalidFromStr,"");
|
|
|
+ }
|
|
|
+
|
|
|
+ //***********validFrom**************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "duration");
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[2+strlen("duration")+c] != ',')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[2+strlen("duration")+c];
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ tempdurationInt = atoi(sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ tempdurationInt = 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ //**********startSchedule**********/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "startSchedule");
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[3+strlen("startSchedule")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("startSchedule")+c];
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ strcpy(tempstartScheduleStr, sstr);
|
|
|
+ strcpy(TxDefaultProfileScheduleStr, sstr);
|
|
|
+
|
|
|
+
|
|
|
+ //**********chargingRateUnit**********/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "chargingRateUnit");
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[3+strlen("chargingRateUnit")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("chargingRateUnit")+c];
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ strcpy(tempchargingRateUnitStr, sstr);
|
|
|
+
|
|
|
+ //**********minChargingRate*******/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "minChargingRate");
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while ((loc[2+strlen("minChargingRate")+c] != ',')&&(loc[2+strlen("minChargingRate")+c] != '}'))
|
|
|
+ {
|
|
|
+ sstr[c] = loc[2+strlen("minChargingRate")+c];
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ tempminChargingRateFloat = atof(sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ tempminChargingRateFloat = 0.0;
|
|
|
+ }
|
|
|
+
|
|
|
+ //
|
|
|
+ strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
|
|
|
+ tp.tm_isdst = -1;
|
|
|
+ time_t utc = mktime(&tp);
|
|
|
+ time_t t = time(NULL);
|
|
|
+ diff_t = difftime(t, utc);
|
|
|
+
|
|
|
+ DEBUG_INFO("diff_t=%f\n",diff_t);
|
|
|
+
|
|
|
+ //parsing strings to words
|
|
|
+ i = 0;
|
|
|
+ loc = strstr(sLineWord, "chargingSchedulePeriod");
|
|
|
+ loc = loc+3+strlen("chargingSchedulePeriod");
|
|
|
+ pch = strtok(loc ,"{");
|
|
|
+ while (pch != NULL)
|
|
|
+ {
|
|
|
+ strcpy(SchedulePeriodList[i], pch);
|
|
|
+ pch = strtok (NULL, "{");
|
|
|
+ i = i + 1;
|
|
|
+ }
|
|
|
+ n_SchedulePeriods = i;
|
|
|
+
|
|
|
+ for(int i=0;i<n_SchedulePeriods;i++)
|
|
|
+ {
|
|
|
+ //*************startPeriod****************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(SchedulePeriodList[i], "startPeriod");
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[strlen("startPeriod")+2+c] != ',')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[strlen("startPeriod")+2+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ tempStartPeriodInt = atoi(sstr);
|
|
|
+
|
|
|
+ //*************limit****************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(SchedulePeriodList[i], "limit");
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[strlen("limit")+2+c] != ',')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[strlen("limit")+2+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ tempLimitInt = atof(sstr);
|
|
|
+
|
|
|
+ //*************numberPhases****************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(SchedulePeriodList[i], "numberPhases");
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[strlen("numberPhases")+2+c] != '}')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[strlen("numberPhases")+2+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ tempNumberPhasesInt = atoi(sstr);
|
|
|
+
|
|
|
+ if(j == 0)
|
|
|
+ {
|
|
|
+ TxDefaultProfile.Duration = tempdurationInt;
|
|
|
+ TxDefaultProfile.TotalPeriod = n_SchedulePeriods;
|
|
|
+ TxDefaultProfile.Period[i].Limit = tempLimitInt;
|
|
|
+ TxDefaultProfile.Period[i].NumberPhases = tempNumberPhasesInt;
|
|
|
+ TxDefaultProfile.Period[i].StartPeriod = tempStartPeriodInt;
|
|
|
+
|
|
|
+ TxDefaultProfile_TEMP.ChargingProfileId = tempchargingProfileId;
|
|
|
+ TxDefaultProfile_TEMP.StackLevel = tempstackLevel;
|
|
|
+ TxDefaultProfile_TEMP.TransactionId = 0;
|
|
|
+ strcpy((char *)TxDefaultProfile_TEMP.ChargingProfileKind, (const char *)tempchargingProfileKindStr);
|
|
|
+ strcpy((char *)TxDefaultProfile_TEMP.ChargingProfilePurpose, (const char *)tempchargingProfilePurposeStr);
|
|
|
+ strcpy((char *)TxDefaultProfile_TEMP.RecurrencyKind, (const char *)temprecurrencyKindStr);
|
|
|
+ strcpy((char *)TxDefaultProfile_TEMP.ChargingSchedule.StartSchedule, (const char *)tempstartScheduleStr);
|
|
|
+ strcpy((char *)TxDefaultProfile_TEMP.ValidFrom, (const char *)tempvalidFromStr);
|
|
|
+ strcpy((char *)TxDefaultProfile_TEMP.ValidTo, (const char *)tempvalidToStr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ //other stack level charging Profile
|
|
|
+ TxDefaultProfiletemp[j-1].Period[i].Limit = tempLimitInt;
|
|
|
+ TxDefaultProfiletemp[j-1].Period[i].NumberPhases = tempNumberPhasesInt;
|
|
|
+ TxDefaultProfiletemp[j-1].Period[i].StartPeriod = tempStartPeriodInt;
|
|
|
+ TxDefaultProfiletemp[j-1].Duration = tempdurationInt;
|
|
|
+ TxDefaultProfiletemp[j-1].TotalPeriod = n_SchedulePeriods;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ if(MinChargingRate < tempminChargingRateFloat)
|
|
|
+ MinChargingRate = tempminChargingRateFloat;
|
|
|
+
|
|
|
+
|
|
|
+ if(confirmPeriods < n_SchedulePeriods)
|
|
|
+ confirmPeriods = n_SchedulePeriods;
|
|
|
+
|
|
|
+ j = j + 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ fclose(fptr1);
|
|
|
+
|
|
|
+ //Stacking Charging Profiles
|
|
|
+ for(int l=0; l <(j-1) ;l++)
|
|
|
+ {
|
|
|
+ for(int k=0; k < TxDefaultProfiletemp[l].TotalPeriod; k++)
|
|
|
+ {
|
|
|
+ if(TxDefaultProfiletemp[l].Period[k].StartPeriod > TxDefaultProfile.Duration)
|
|
|
+ {
|
|
|
+ if((k >0) && ((TxDefaultProfiletemp[l].Period[k-1].StartPeriod < TxDefaultProfile.Duration) &&(TxDefaultProfiletemp[l].Period[k-1].StartPeriod >= TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod-1].StartPeriod )))
|
|
|
+ {
|
|
|
+ TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].Limit = TxDefaultProfiletemp[l].Period[k-1].Limit;
|
|
|
+ TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].NumberPhases = TxDefaultProfiletemp[l].Period[k-1].NumberPhases;
|
|
|
+ TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].StartPeriod = TxDefaultProfile.Duration;
|
|
|
+ TxDefaultProfile.TotalPeriod = TxDefaultProfile.TotalPeriod + 1;
|
|
|
+ TxDefaultProfile.Duration = TxDefaultProfiletemp[l].Duration;
|
|
|
+
|
|
|
+ TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].Limit = TxDefaultProfiletemp[l].Period[k].Limit;
|
|
|
+ TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].NumberPhases = TxDefaultProfiletemp[l].Period[k].NumberPhases;
|
|
|
+ TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].StartPeriod = TxDefaultProfiletemp[l].Period[k].StartPeriod;
|
|
|
+ TxDefaultProfile.TotalPeriod = TxDefaultProfile.TotalPeriod + 1;
|
|
|
+ TxDefaultProfile.Duration = TxDefaultProfiletemp[l].Duration;
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].Limit = TxDefaultProfiletemp[l].Period[k].Limit;
|
|
|
+ TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].NumberPhases = TxDefaultProfiletemp[l].Period[k].NumberPhases;
|
|
|
+ TxDefaultProfile.Period[TxDefaultProfile.TotalPeriod].StartPeriod = TxDefaultProfiletemp[l].Period[k].StartPeriod;
|
|
|
+ TxDefaultProfile.TotalPeriod = TxDefaultProfile.TotalPeriod + 1;
|
|
|
+ TxDefaultProfile.Duration = TxDefaultProfiletemp[l].Duration;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ //end of Stacking Charging Profiles
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }// the end of ACCESS TxDefaultProfile
|
|
|
+
|
|
|
+ //****************************TxProfile************************************************/
|
|
|
+ switch(gunindex + 1)
|
|
|
+ {
|
|
|
+ case 0:
|
|
|
+ break;
|
|
|
+
|
|
|
+ case 1:
|
|
|
+ strcpy(fname, TxProfile_1_JSON );
|
|
|
+ break;
|
|
|
+
|
|
|
+ case 2:
|
|
|
+ strcpy(fname, TxProfile_2_JSON );
|
|
|
+ break;
|
|
|
+
|
|
|
+ default:
|
|
|
+ strcpy(fname, TxProfile_1_JSON );
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
+ TxProfileIsNull=TRUE;
|
|
|
+ if((access(fname,F_OK))!=-1)
|
|
|
+ {
|
|
|
+ fptr1 = fopen(fname, "r");
|
|
|
+ c = 0;
|
|
|
+ c = fgetc(fptr1);
|
|
|
+ //DEBUG_INFO("c:%d\n",c);
|
|
|
+ rewind(fptr1);
|
|
|
+
|
|
|
+ if(c == EOF)
|
|
|
+ {
|
|
|
+ DEBUG_INFO("\n End of file reached.");
|
|
|
+ TxProfileIsNull=TRUE;
|
|
|
+ fclose(fptr1);
|
|
|
+
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ TxProfileIsNull=FALSE;
|
|
|
+
|
|
|
+ while(fscanf(fptr1, "%s", word) != EOF)
|
|
|
+ {
|
|
|
+ if(strcmp(word, "chargingProfileId") == 0)
|
|
|
+ {
|
|
|
+ n_chargingProfile = n_chargingProfile + 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ rewind(fptr1);
|
|
|
+
|
|
|
+ //search Charging Profile Element
|
|
|
+ int i= 0;
|
|
|
+ int j= 0;
|
|
|
+ while ( fgets( sLineWord, sizeof sLineWord, fptr1 ) != NULL ) {
|
|
|
+
|
|
|
+ #if 0
|
|
|
+ /***********connectorId****************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "connectorId");
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (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';
|
|
|
+ tempconnectorIdInt = atoi(sstr);
|
|
|
+ #endif
|
|
|
+
|
|
|
+ //***********chargingProfileId**************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "chargingProfileId");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[2+strlen("chargingProfileId")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[2+strlen("chargingProfileId")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("chargingProfileId=%s\n",sstr);
|
|
|
+ tempchargingProfileId = atoi(sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ tempchargingProfileId = 0;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //***********transactionId **************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "transactionId");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[2+strlen("transactionId")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[2+strlen("transactionId")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("transactionId=%s\n",sstr);
|
|
|
+ temptransactionId = atoi(sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ temptransactionId = 0;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //***********stackLevel**************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "stackLevel");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[2+strlen("stackLevel")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[2+strlen("stackLevel")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("stackLevel=%s\n",sstr);
|
|
|
+ tempstackLevel = atoi(sstr);
|
|
|
+
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ tempstackLevel = 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ //***********chargingProfilePurpose **************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "chargingProfilePurpose");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[3+strlen("chargingProfilePurpose")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("chargingProfilePurpose")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("chargingProfilePurpose =%s\n",sstr);
|
|
|
+ strcpy(tempchargingProfilePurposeStr,sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ strcpy(tempchargingProfilePurposeStr,"");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //***********chargingProfileKind **************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "chargingProfileKind");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[3+strlen("chargingProfileKind")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("chargingProfileKind")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("chargingProfileKind =%s\n",sstr);
|
|
|
+ strcpy(tempchargingProfileKindStr,sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ strcpy(tempchargingProfileKindStr,"");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //***********recurrencyKind **************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "recurrencyKind");
|
|
|
+ //DEBUG_INFO("loc=%s\n",loc);
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ while (loc[3+strlen("recurrencyKind")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("recurrencyKind")+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ DEBUG_INFO("recurrencyKind =%s\n",sstr);
|
|
|
+ strcpy(temprecurrencyKindStr,sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ strcpy(temprecurrencyKindStr,"");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //***********validFrom**************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "validFrom");
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[3+strlen("validFrom")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("validFrom")+c];
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ strcpy(tempvalidFromStr,sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ strcpy(tempvalidFromStr,"");
|
|
|
+ }
|
|
|
+
|
|
|
+ //**********startSchedule**********/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "startSchedule");
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[3+strlen("startSchedule")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("startSchedule")+c];
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ strcpy(tempstartScheduleStr, sstr);
|
|
|
+ strcpy(TxProfileScheduleStr, sstr);
|
|
|
+
|
|
|
+ //**********chargingRateUnit**********/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "chargingRateUnit");
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[3+strlen("chargingRateUnit")+c] != '\"')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[3+strlen("chargingRateUnit")+c];
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ strcpy(tempchargingRateUnitStr, sstr);
|
|
|
+
|
|
|
+ //**********minChargingRate*******/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(sLineWord, "minChargingRate");
|
|
|
+ if(loc != NULL)
|
|
|
+ {
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while ((loc[2+strlen("minChargingRate")+c] != ',')&&(loc[2+strlen("minChargingRate")+c] != '}'))
|
|
|
+ {
|
|
|
+ sstr[c] = loc[2+strlen("minChargingRate")+c];
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ tempminChargingRateFloat = atof(sstr);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ tempminChargingRateFloat = 0.0;
|
|
|
+ }
|
|
|
+
|
|
|
+ //
|
|
|
+ strptime(tempstartScheduleStr, "%Y-%m-%dT%H:%M:%S", &tp);
|
|
|
+ tp.tm_isdst = -1;
|
|
|
+ time_t utc = mktime(&tp);
|
|
|
+ time_t t = time(NULL);
|
|
|
+ diff_t = difftime(t, utc);
|
|
|
+
|
|
|
+ DEBUG_INFO("diff_t=%f\n",diff_t);
|
|
|
+ //parsing strings to words
|
|
|
+ i = 0;
|
|
|
+ loc = strstr(sLineWord, "chargingSchedulePeriod");
|
|
|
+ loc = loc+3+strlen("chargingSchedulePeriod");
|
|
|
+ pch = strtok(loc ,"{");
|
|
|
+ while (pch != NULL)
|
|
|
+ {
|
|
|
+ strcpy(SchedulePeriodList[i], pch);
|
|
|
+ pch = strtok (NULL, "{");
|
|
|
+ i = i + 1;
|
|
|
+ }
|
|
|
+ n_SchedulePeriods = i;
|
|
|
+
|
|
|
+ for(int i=0;i<n_SchedulePeriods;i++)
|
|
|
+ {
|
|
|
+ //*************startPeriod****************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(SchedulePeriodList[i], "startPeriod");
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[strlen("startPeriod")+2+c] != ',')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[strlen("startPeriod")+2+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ tempStartPeriodInt = atoi(sstr);
|
|
|
+
|
|
|
+ //*************limit****************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(SchedulePeriodList[i], "limit");
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[strlen("limit")+2+c] != ',')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[strlen("limit")+2+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ tempLimitInt = atof(sstr);
|
|
|
+
|
|
|
+ //*************numberPhases****************/
|
|
|
+ c = 0;
|
|
|
+ loc = strstr(SchedulePeriodList[i], "numberPhases");
|
|
|
+ memset(sstr ,0, sizeof(sstr) );
|
|
|
+ while (loc[strlen("numberPhases")+2+c] != '}')
|
|
|
+ {
|
|
|
+ sstr[c] = loc[strlen("numberPhases")+2+c];
|
|
|
+ //printf("i=%d sstr=%c\n",c, sstr[c]);
|
|
|
+ c++;
|
|
|
+ }
|
|
|
+ sstr[c] = '\0';
|
|
|
+ tempNumberPhasesInt = atoi(sstr);
|
|
|
+
|
|
|
+
|
|
|
+ //TxProfile.Duration = durationInt;
|
|
|
+ TxProfile.TotalPeriod = n_SchedulePeriods;
|
|
|
+ TxProfile.Period[i].Limit = tempLimitInt;
|
|
|
+ TxProfile.Period[i].NumberPhases = tempNumberPhasesInt;
|
|
|
+ TxProfile.Period[i].StartPeriod = tempStartPeriodInt;
|
|
|
+ }
|
|
|
+
|
|
|
+ if(MinChargingRate < tempminChargingRateFloat)
|
|
|
+ MinChargingRate = tempminChargingRateFloat;
|
|
|
+
|
|
|
+ if(confirmPeriods < n_SchedulePeriods)
|
|
|
+ confirmPeriods = n_SchedulePeriods;
|
|
|
+
|
|
|
+ if(j == 0)
|
|
|
+ {
|
|
|
+ TxProfile_TEMP.ChargingProfileId = tempchargingProfileId;
|
|
|
+ TxProfile_TEMP.StackLevel = tempstackLevel;
|
|
|
+ TxProfile_TEMP.TransactionId = 0;
|
|
|
+ strcpy((char *)TxProfile_TEMP.ChargingProfileKind, (const char *)tempchargingProfileKindStr);
|
|
|
+ strcpy((char *)TxProfile_TEMP.ChargingProfilePurpose, (const char *)tempchargingProfilePurposeStr);
|
|
|
+ strcpy((char *)TxProfile_TEMP.RecurrencyKind, (const char *)temprecurrencyKindStr);
|
|
|
+ strcpy((char *)TxProfile_TEMP.ChargingSchedule.StartSchedule, (const char *)tempstartScheduleStr);
|
|
|
+ strcpy((char *)TxProfile_TEMP.ValidFrom, (const char *)tempvalidFromStr);
|
|
|
+ strcpy((char *)TxProfile_TEMP.ValidTo, (const char *)tempvalidToStr);
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ fclose(fptr1);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }// the end of ACCESS TxProfile
|
|
|
+
|
|
|
+ //CompositeSchedule
|
|
|
+ int period=0;
|
|
|
+ if((TxDefaultProfileFileIsNull==FALSE) && (ChargePointMaxProfileIsNull==FALSE) && (TxProfileIsNull==FALSE) )
|
|
|
+ {
|
|
|
+ strcpy(CurrentChargingProfileScheduleStr,TxProfileScheduleStr);
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingProfileId = TxProfile_TEMP.ChargingProfileId;
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].TransactionId = temptransactionId;
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].StackLevel = TxProfile_TEMP.StackLevel;
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingProfileKind, (const char *)TxProfile_TEMP.ChargingProfileKind );
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingProfilePurpose, (const char *)TxProfile_TEMP.ChargingProfilePurpose );
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.StartSchedule,(const char *)TxProfile_TEMP.ChargingSchedule.StartSchedule);
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].RecurrencyKind, (const char *)TxProfile_TEMP.RecurrencyKind);
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].ValidFrom, (const char *)TxProfile_TEMP.ValidFrom);
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].ValidTo, (const char *)TxProfile_TEMP.ValidTo);
|
|
|
+
|
|
|
+
|
|
|
+ for(int k=0; k < TxProfile.TotalPeriod;k++)
|
|
|
+ {
|
|
|
+ if(TxProfile.Period[k].Limit < ChargePointMaxProfile.Period[0].Limit)
|
|
|
+ {
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[period].Limit = TxProfile.Period[k].Limit;
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = TxProfile.Period[k].NumberPhases;
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxProfile.Period[k].StartPeriod;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = TxProfile.Period[k].Limit;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = TxProfile.Period[k].NumberPhases;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxProfile.Period[k].StartPeriod;
|
|
|
+ period = period + 1;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ if( (TxProfile.Period[k-1].Limit >= ChargePointMaxProfile.Period[0].Limit) && (TxProfile.Period[k].Limit >= ChargePointMaxProfile.Period[0].Limit))
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[period].Limit = ChargePointMaxProfile.Period[0].Limit;
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = TxProfile.Period[k].NumberPhases;
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxProfile.Period[k].StartPeriod;
|
|
|
+
|
|
|
+
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = ChargePointMaxProfile.Period[0].Limit;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = TxProfile.Period[k].NumberPhases;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxProfile.Period[k].StartPeriod;
|
|
|
+ period = period + 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ for(int l=0; l < TxDefaultProfile.TotalPeriod;l++)
|
|
|
+ {
|
|
|
+ if((TxDefaultProfile.Period[l].StartPeriod < 86400)&&(TxDefaultProfile.Period[l].StartPeriod > ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[period-1].StartPeriod))
|
|
|
+ {
|
|
|
+ if(TxDefaultProfile.Period[l].Limit < ChargePointMaxProfile.Period[0].Limit)
|
|
|
+ {
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[period].Limit = TxDefaultProfile.Period[l].Limit;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = TxDefaultProfile.Period[l].Limit;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[period].Limit = ChargePointMaxProfile.Period[0].Limit;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].Limit = ChargePointMaxProfile.Period[0].Limit;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[period].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
|
|
|
+
|
|
|
+ period = period + 1;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ else if((TxDefaultProfileFileIsNull==FALSE) && (ChargePointMaxProfileIsNull==FALSE) && (TxProfileIsNull==TRUE) )
|
|
|
+ {
|
|
|
+ strcpy(CurrentChargingProfileScheduleStr,TxDefaultProfileScheduleStr);
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingProfileId = TxDefaultProfile_TEMP.ChargingProfileId;
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].TransactionId = 0;
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].StackLevel = TxDefaultProfile_TEMP.StackLevel;
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingProfileKind, (const char *)TxDefaultProfile_TEMP.ChargingProfileKind );
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingProfilePurpose, (const char *)TxDefaultProfile_TEMP.ChargingProfilePurpose );
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.StartSchedule,(const char *)TxDefaultProfile_TEMP.ChargingSchedule.StartSchedule);
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].RecurrencyKind, (const char *)TxDefaultProfile_TEMP.RecurrencyKind);
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].ValidFrom, (const char *)TxDefaultProfile_TEMP.ValidFrom);
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].ValidTo, (const char *)TxDefaultProfile_TEMP.ValidTo);
|
|
|
+
|
|
|
+
|
|
|
+ for(int l=0; l < TxDefaultProfile.TotalPeriod;l++)
|
|
|
+ {
|
|
|
+ if(TxProfile.Period[l].Limit < ChargePointMaxProfile.Period[0].Limit)
|
|
|
+ {
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[l].Limit = TxDefaultProfile.Period[l].Limit;
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[l].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[l].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].Limit = TxDefaultProfile.Period[l].Limit;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
|
|
|
+ period = period + 1;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[l].Limit = ChargePointMaxProfile.Period[0].Limit;
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[l].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[l].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].Limit = ChargePointMaxProfile.Period[0].Limit;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
|
|
|
+ period = period + 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ else if((TxDefaultProfileFileIsNull==FALSE) && (ChargePointMaxProfileIsNull==TRUE) && (TxProfileIsNull==TRUE) )
|
|
|
+ {
|
|
|
+ strcpy(CurrentChargingProfileScheduleStr,TxDefaultProfileScheduleStr);
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingProfileId = TxDefaultProfile_TEMP.ChargingProfileId;
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].TransactionId = 0;
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].StackLevel = TxDefaultProfile_TEMP.StackLevel;
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingProfileKind, (const char *)TxDefaultProfile_TEMP.ChargingProfileKind );
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingProfilePurpose, (const char *)TxDefaultProfile_TEMP.ChargingProfilePurpose );
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.StartSchedule, (const char *)TxDefaultProfile_TEMP.ChargingSchedule.StartSchedule);
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].RecurrencyKind, (const char *)TxDefaultProfile_TEMP.RecurrencyKind);
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].ValidFrom, (const char *)TxDefaultProfile_TEMP.ValidFrom);
|
|
|
+ strcpy((char *)ShmOCPP16Data->SmartChargingProfile[gunindex].ValidTo, (const char *)TxDefaultProfile_TEMP.ValidTo);
|
|
|
+
|
|
|
+
|
|
|
+ for(int l=0; l < TxDefaultProfile.TotalPeriod;l++)
|
|
|
+ {
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[l].Limit = TxDefaultProfile.Period[l].Limit;
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[l].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
|
|
|
+ ShmOCPP16Data->SmartChargingProfile[gunindex].ChargingSchedule.ChargingSchedulePeriod[l].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].Limit = TxDefaultProfile.Period[l].Limit;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].NumberPhases = TxDefaultProfile.Period[l].NumberPhases;
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingSchedulePeriod[l].StartPeriod = TxDefaultProfile.Period[l].StartPeriod;
|
|
|
+ period = period + 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ confirmPeriods = period;
|
|
|
+ //DEBUG_INFO("confirmPeriods=%d\n",confirmPeriods);
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+#if 0
|
|
|
+ //* Define temporary variables */
|
|
|
+ struct tm *gtime;
|
|
|
+ time_t now;
|
|
|
+ char buf[28];
|
|
|
+ //* Read the current system time */
|
|
|
+ time(&now);
|
|
|
+ //* Convert the system time to GMT (now UTC) */
|
|
|
+ gtime = gmtime(&now);
|
|
|
+ strftime(buf, 28, "%Y-%m-%dT%H:%M:%SZ", gtime);
|
|
|
+
|
|
|
+ // make .conf
|
|
|
+ strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.StartSchedule,buf);
|
|
|
+ //ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.Duration = durationInt;
|
|
|
+ //DEBUG_INFO(" debug 11\n");
|
|
|
+
|
|
|
+ strcpy((char *)ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.ChargingRateUnit, tempchargingRateUnitStr );
|
|
|
+
|
|
|
+ ShmOCPP16Data->GetCompositeSchedule[CompositeSceduleIndex].ResponseChargingSchedule.MinChargingRate = MinChargingRate;
|
|
|
+ sprintf(comfirmstr, "%s", GetCompositeScheduleStatusStr[GetCompositeScheduleStatus_Accepted] );
|
|
|
+#endif
|
|
|
+
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
#if 0
|
|
|
void Send(struct json_object *message)
|
|
|
{
|