浏览代码

[Bug fix][Modularization][Module_OcppBackend]

2020.08.27 / Folus Wen

Actions:
1. /EVSE/Modularization/ocppfiles/MessageHandler.c StopTransaction tempotary store file separate to each connector at function sendStopTransactionRequest(), storeTempStopTransaction(), checkTempStopTransaction().

Files:
1. As follow commit history

Image version: D0.00.XX.XXXX.XX
Image checksum: XXXXXXXX

Hardware PWB P/N : XXXXXXX
Hardware Version : XXXXXXX
FolusWen 4 年之前
父节点
当前提交
46558196e8
共有 1 个文件被更改,包括 15 次插入8 次删除
  1. 15 8
      EVSE/Modularization/ocppfiles/MessageHandler.c

+ 15 - 8
EVSE/Modularization/ocppfiles/MessageHandler.c

@@ -3657,6 +3657,8 @@ int sendStopTransactionRequest(int gun_index)
 	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_ERROR("sendStopTransactionRequest \n");
@@ -4537,9 +4539,9 @@ int sendStopTransactionRequest(int gun_index)
 
 #if 1 // for TempStopTransaction
 	//Delete TempStopTransaction
-	if((access("/Storage/OCPP/TempStopTransaction",F_OK))!=-1)
+	if((access(TempStopTransaction,F_OK))!=-1)
 	{
-		remove("/Storage/OCPP/TempStopTransaction");  		// remove file "TempStopTransaction"
+		remove(TempStopTransaction);  		// remove file "TempStopTransaction"
 	}
 #endif
 
@@ -15098,6 +15100,9 @@ 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));
 
@@ -15979,15 +15984,15 @@ void storeTempStopTransaction(int gun_index)
 	}
 
 	// Check File "TempStopTransaction" Exist
-	if((access("/Storage/OCPP/TempStopTransaction",F_OK))!=-1)
+	if((access(TempStopTransaction,F_OK))!=-1)
 	{
 		//DEBUG_INFO("TransactionRelatedQueue exist.\n");
-		fclose(fopen("/Storage/OCPP/TempStopTransaction", "w"));
+		fclose(fopen(TempStopTransaction, "w"));
 	}
 	else
 	{
 		//DEBUG_INFO("TransactionRelatedQueue not exist\n");
-		FILE *log = fopen("/Storage/OCPP/TempStopTransaction", "w+");
+		FILE *log = fopen(TempStopTransaction, "w+");
 
 		if(log == NULL)
 		{
@@ -16003,7 +16008,7 @@ void storeTempStopTransaction(int gun_index)
 	//Add TempStopTransaction | Update TempStopTransaction
 	// open file for writing
 	FILE *outfile;
-	outfile = fopen ("/Storage/OCPP/TempStopTransaction", "a");
+	outfile = fopen (TempStopTransaction, "a");
 	//DEBUG_INFO("data = %s\n", queuedata);
 	fputs(queuedata, outfile);
 	fputs("\n", outfile);
@@ -16018,8 +16023,10 @@ void checkTempStopTransaction(int gun_index)
 	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("/Storage/OCPP/TempStopTransaction", "r");
+	fptr1 = fopen(TempStopTransaction, "r");
 
 	//TempStopTransaction格式: 槍號,StopTransaction封包
 	if (!fptr1)
@@ -16068,7 +16075,7 @@ void checkTempStopTransaction(int gun_index)
 
 	// fptr1=freopen(NULL,"w",fptr1); // reset the fptr1 again
 	fclose(fptr1);
-	remove("/Storage/OCPP/TempStopTransaction");  		// remove the original file
+	remove(TempStopTransaction);  		// remove the original file
 }
 
 void FillStartTransaction(int ConnectorId, unsigned char IdTag[], int MeterStart,int ReservationId,unsigned char Timestamp[])