|
@@ -2129,7 +2129,7 @@ int DB_cbVariableIsCreate(void *para, int columnCount, char **columnValue, char
|
|
|
sprintf((char*)ShmOCPP20Data->ControllerComponentVariable[OCPPCommCtrlr_MessageAttemptInterval].variableCharacteristics.dataType, "%s", DataEnumTypeStr[DataEnumType_integer]);
|
|
|
sprintf((char*)ShmOCPP20Data->ControllerComponentVariable[OCPPCommCtrlr_MessageAttemptInterval].variableAttribute[0].type, "%s", AttributeEnumTypeStr[AttributeEnumType_Target]);
|
|
|
sprintf((char*)ShmOCPP20Data->ControllerComponentVariable[OCPPCommCtrlr_MessageAttemptInterval].variableAttribute[0].mutability, "%s", MutabilityEnumTypeStr[MutabilityEnumType_ReadWrite]);
|
|
|
- sprintf((char*)ShmOCPP20Data->ControllerComponentVariable[OCPPCommCtrlr_MessageAttemptInterval].variableAttribute[0].value, "3");
|
|
|
+ sprintf((char*)ShmOCPP20Data->ControllerComponentVariable[OCPPCommCtrlr_MessageAttemptInterval].variableAttribute[0].value, "30");
|
|
|
DB_variableSaveToDb(&ShmOCPP20Data->ControllerComponentVariable[OCPPCommCtrlr_MessageAttemptInterval]);
|
|
|
|
|
|
sprintf((char*)ShmOCPP20Data->ControllerComponentVariable[OCPPCommCtrlr_UnlockOnEVSideDisconnect].component.name, "OCPPCommCtrlr");
|
|
@@ -10634,7 +10634,10 @@ int sendTransactionEventRequest(int gun_index)
|
|
|
if(strstr((char*)ShmOCPP20Data->TransactionEvent[gun_index].eventType, TransactionEventEnumTypeStr[TransactionEventEnumType_Started]) != NULL)
|
|
|
OCPP_insert_transaction_msg(YES, message);
|
|
|
else if(strstr((char*)ShmOCPP20Data->TransactionEvent[gun_index].eventType, TransactionEventEnumTypeStr[TransactionEventEnumType_Ended]) != NULL)
|
|
|
+ {
|
|
|
OCPP_insert_transaction_msg(NO, message);
|
|
|
+ memset(&ShmOCPP20Data->SessionTarget[gun_index], 0x00, sizeof(struct StructSessionTarget));
|
|
|
+ }
|
|
|
|
|
|
return result;
|
|
|
}
|
|
@@ -11299,7 +11302,10 @@ int sendRemoteStartTransactionConfirmation(char *uuid, unsigned char gun_index)
|
|
|
json_object *RemoteStartTransaction = json_object_new_object();
|
|
|
|
|
|
json_object_object_add(RemoteStartTransaction, "status", json_object_new_string((char*)ShmOCPP20Data->RequestStartTransaction[gun_index].Response_status));
|
|
|
- json_object_object_add(RemoteStartTransaction, "transactionId", json_object_new_string((char*)ShmOCPP20Data->RequestStartTransaction[gun_index].Response_transactionId));
|
|
|
+
|
|
|
+ if((strstr((char*)ShmOCPP20Data->RequestStartTransaction[gun_index].Response_status, RequestStartStopStatusEnumTypeStr[RequestStartStopStatusEnumType_Accepted]) != NULL) &&
|
|
|
+ (strlen((char*)ShmOCPP20Data->RequestStartTransaction[gun_index].Response_transactionId) > 0))
|
|
|
+ json_object_object_add(RemoteStartTransaction, "transactionId", json_object_new_string((char*)ShmOCPP20Data->RequestStartTransaction[gun_index].Response_transactionId));
|
|
|
|
|
|
DEBUG_INFO("sendRemoteStartConfirmation...\n");
|
|
|
|
|
@@ -13364,6 +13370,50 @@ int handleDataTransferRequest(char *uuid, char *payload)
|
|
|
|
|
|
strcpy((char*)ShmOCPP20Data->DataTransfer[0].Response_status, DataTransferStatusEnumTypeStr[DataTransferStatusEnumType_Accepted]);
|
|
|
}
|
|
|
+ else if(strstr((char*)ShmOCPP20Data->DataTransfer[0].messageId, "ID_ChargingPreference") != NULL)
|
|
|
+ {
|
|
|
+ json_object *data;
|
|
|
+ data = json_tokener_parse((char*)ShmOCPP20Data->DataTransfer[0].data);
|
|
|
+ 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(&ShmOCPP20Data->SessionTarget[json_object_get_int(json_object_object_get(data, "ConnectorId"))], 0x00, sizeof(struct StructSessionTarget));
|
|
|
+
|
|
|
+ if(json_object_object_get(data, "SOC") != NULL)
|
|
|
+ {
|
|
|
+ ShmOCPP20Data->SessionTarget[json_object_get_int(json_object_object_get(data, "ConnectorId"))].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)
|
|
|
+ {
|
|
|
+ ShmOCPP20Data->SessionTarget[json_object_get_int(json_object_object_get(data, "ConnectorId"))].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)
|
|
|
+ {
|
|
|
+ ShmOCPP20Data->SessionTarget[json_object_get_int(json_object_object_get(data, "ConnectorId"))].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")));
|
|
|
+ }
|
|
|
+
|
|
|
+ strcpy((char*)ShmOCPP20Data->DataTransfer[0].Response_status, DataTransferStatusEnumTypeStr[DataTransferStatusEnumType_Accepted]);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ strcpy((char*)ShmOCPP20Data->DataTransfer[0].Response_status, DataTransferStatusEnumTypeStr[DataTransferStatusEnumType_Rejected]);
|
|
|
+ sprintf((char*)ShmOCPP20Data->DataTransfer[0].Response_data, "Connector id must > 0.");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ strcpy((char*)ShmOCPP20Data->DataTransfer[0].Response_status, DataTransferStatusEnumTypeStr[DataTransferStatusEnumType_Rejected]);
|
|
|
+ sprintf((char*)ShmOCPP20Data->DataTransfer[0].Response_data, "Configuration content something wrong.");
|
|
|
+ }
|
|
|
+ json_object_put(data);
|
|
|
+ }
|
|
|
else if(strstr((char*)ShmOCPP20Data->DataTransfer[0].messageId, "SetLEDBar") != NULL)
|
|
|
{
|
|
|
json_object *data;
|
|
@@ -15229,7 +15279,7 @@ int handleRequestStartTransactionRequest(char *uuid, char *payload)
|
|
|
if(!isAllowStart)
|
|
|
DEBUG_WARN("Target connector does not allow start.\n");
|
|
|
|
|
|
- sprintf((char*)ShmOCPP20Data->RequestStartTransaction[((connectorIdx-1)<0?0:(connectorIdx))].Response_status, "%s", RequestStartStopStatusEnumTypeStr[RequestStartStopStatusEnumType_Rejected] );
|
|
|
+ sprintf((char*)ShmOCPP20Data->RequestStartTransaction[((connectorIdx-1)<0?0:(connectorIdx-1))].Response_status, "%s", RequestStartStopStatusEnumTypeStr[RequestStartStopStatusEnumType_Rejected] );
|
|
|
}
|
|
|
}
|
|
|
json_object_put(RemoteStartTransaction);
|
|
@@ -18932,7 +18982,7 @@ void LWS_Send(char *str)
|
|
|
|| (strstr((char*)str, "\"SecurityEventNotification\"") != NULL)
|
|
|
|| (strstr((char*)str, "\"SignCertificate\"") != NULL)
|
|
|
|| (strstr((char*)str, "\"StatusNotification\"") != NULL)
|
|
|
- || (strstr((char*)str, "\"TransactionEven\"") != NULL))
|
|
|
+ || (strstr((char*)str, "\"TransactionEvent\"") != NULL))
|
|
|
{
|
|
|
isWebsocketSendable = OFF;
|
|
|
}
|
|
@@ -18984,7 +19034,7 @@ void LWS_SendNow(char *str)
|
|
|
|| (strstr((char*)str, "\"SecurityEventNotification\"") != NULL)
|
|
|
|| (strstr((char*)str, "\"SignCertificate\"") != NULL)
|
|
|
|| (strstr((char*)str, "\"StatusNotification\"") != NULL)
|
|
|
- || (strstr((char*)str, "\"TransactionEven\"") != NULL))
|
|
|
+ || (strstr((char*)str, "\"TransactionEvent\"") != NULL))
|
|
|
{
|
|
|
isWebsocketSendable = OFF;
|
|
|
}
|