|
@@ -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[])
|