|
@@ -41,7 +41,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
#define PASS 1
|
|
|
#define FAIL -1
|
|
|
|
|
@@ -6266,14 +6265,7 @@ int handleGetDiagnosticsRequest(char *uuid, char *payload)
|
|
|
{
|
|
|
mtrace();
|
|
|
int result = FAIL;
|
|
|
- //void *ret; //
|
|
|
- //char fnamePlusPath[100]="";
|
|
|
- //char fname[40]="";
|
|
|
pthread_t t; // pthread 變數
|
|
|
- //time_t rawtime;
|
|
|
- //struct tm * timeinfo;
|
|
|
-
|
|
|
- //system("exec /root/Module_WebService 'log' 6"); // for OCTT TEST
|
|
|
system("exec /root/logPackTools 'log' 6");
|
|
|
#if 0
|
|
|
//char buffer [128];
|
|
@@ -6298,7 +6290,6 @@ int handleGetDiagnosticsRequest(char *uuid, char *payload)
|
|
|
strcpy(GetDiagnosticspayloadData, payload);
|
|
|
sendGetDiagnosticsConfirmation(uuid,fnamePWithNoPath/*(char*) ret*/);
|
|
|
pthread_create(&t, NULL, GetDiagnosticsProcess, payload);
|
|
|
- // pthread_join(t, NULL/*&ret*/);
|
|
|
|
|
|
return result;
|
|
|
}
|
|
@@ -6313,8 +6304,6 @@ void* GetDiagnosticsProcess(void* data)
|
|
|
int retriesIsNULL,retryIntervalIsNULL, startTimeIsNULL, stopTimeIsNULL;
|
|
|
char protocol[10]={0}, user[50]={0},password[50]={0},host[50]={0}, path[50]={0}, ftppath[60]={0},host1[50]={0},path1[50]={0};
|
|
|
int port=0;
|
|
|
- //char fnamePlusPath[100]="";//="00000_2019-06-09_160902_CSULog.zip";
|
|
|
- //char fname[40]="";
|
|
|
char sstr[260]={ 0 };//sstr[200]={ 0 };
|
|
|
int c = 0;
|
|
|
char *loc;
|
|
@@ -6324,7 +6313,6 @@ void* GetDiagnosticsProcess(void* data)
|
|
|
char * pch;
|
|
|
|
|
|
// [2,"137d88c7-a403-4ead-bb2d-fc6ec90531c1","GetDiagnostics",{"location":"ftp://ipc_ui:pht2016@ftp.phihong.com.tw/DC/log/","retries":0,"retryInterval":0,"startTime":"0001-01-01T00:00:00.000Z","stopTime":"0001-01-01T00:00:00.000Z"}]
|
|
|
- //char *str = (char*) data; // ? ?輸入資 ?
|
|
|
char str[300]={ 0 };
|
|
|
strcpy(str,(const char*)GetDiagnosticspayloadData);
|
|
|
|
|
@@ -6464,6 +6452,7 @@ void* GetDiagnosticsProcess(void* data)
|
|
|
else
|
|
|
{
|
|
|
DEBUG_INFO("fnamePlusPath not exist!\n");
|
|
|
+ sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
|
|
|
goto end;
|
|
|
|
|
|
}
|
|
@@ -6496,51 +6485,17 @@ void* GetDiagnosticsProcess(void* data)
|
|
|
|
|
|
if(strncmp(locationstr,"http", 4) == 0)
|
|
|
{
|
|
|
- sscanf(locationstr,"%[^:]:%*2[/]%[^/]/%199[^\n]",
|
|
|
- protocol, host, path);
|
|
|
+ sscanf(locationstr,"%[^:]:%*2[/]%[^/]/%199[^\n]", protocol, host, path);
|
|
|
|
|
|
- //sscanf(locationstr,"%[^:]:%*2[/]%[^:]:%[^@]@%[^/]%199[^\n]",
|
|
|
- // protocol, user, password, host, path);
|
|
|
sprintf(ftppath,"/%s", path);
|
|
|
|
|
|
- //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, sizeof(filenametemp));
|
|
|
- //strncpy(filenametemp, ftppath+(ftppathlen-i+1), i+1);
|
|
|
- //filenametemp[i+1] = 0;
|
|
|
- //sendFirmwareStatusNotificationRequest(FirmwareStatusStr[FirmwareStatus_Downloading]);
|
|
|
- //memset(fnamePlusPath, 0, sizeof(fnamePlusPath));
|
|
|
- //strftime (fnamePlusPath,sizeof(fnamePlusPath),"/mnt/%4Y-%2m.zip",timeinfo);
|
|
|
-
|
|
|
-
|
|
|
do{
|
|
|
- isSuccess = httpUploadFile(host, ftppath, fnamePlusPath, locationstr);//httpUploadFile(host, ftppath, fnamePlusPath, locationstr);
|
|
|
+ isSuccess = httpUploadFile(host, ftppath, fnamePlusPath, locationstr);
|
|
|
sleep(retryIntervalInt);
|
|
|
}while((isSuccess == 0)&&(retriesInt > 0 && retriesInt --));
|
|
|
|
|
|
- // isSuccess = httpDownLoadFile(host, ftppath, filenametemp, locationstr);
|
|
|
-
|
|
|
if(!isSuccess)
|
|
|
{
|
|
|
- //BulldogUtil.sleepMs(interval*1000);
|
|
|
DEBUG_INFO("Diagnostics fail.\n");
|
|
|
sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
|
|
|
}
|
|
@@ -6548,7 +6503,6 @@ void* GetDiagnosticsProcess(void* data)
|
|
|
{
|
|
|
DEBUG_INFO("sendDiagnosticsStatusNotificationRequest Uploaded\n");
|
|
|
sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_Uploaded]);
|
|
|
- //isUpdateRequest = TRUE;
|
|
|
}
|
|
|
|
|
|
}
|
|
@@ -6557,14 +6511,6 @@ void* GetDiagnosticsProcess(void* data)
|
|
|
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);
|
|
|
-
|
|
|
int ftppathlen=strlen(ftppath);
|
|
|
int i=1;
|
|
|
char filenametemp[50];
|
|
@@ -6594,7 +6540,6 @@ void* GetDiagnosticsProcess(void* data)
|
|
|
|
|
|
if(!isSuccess)
|
|
|
{
|
|
|
- //BulldogUtil.sleepMs(interval*1000);
|
|
|
DEBUG_INFO("Diagnostics fail.\n");
|
|
|
sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_UploadFailed]);
|
|
|
}
|
|
@@ -6602,12 +6547,10 @@ void* GetDiagnosticsProcess(void* data)
|
|
|
{
|
|
|
DEBUG_INFO("sendDiagnosticsStatusNotificationRequest Uploaded\n");
|
|
|
sendDiagnosticsStatusNotificationRequest(DiagnosticsStatusStr[DiagnosticsStatus_Uploaded]);
|
|
|
- //isUpdateRequest = TRUE;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
end:
|
|
|
-// json_object_put(obj);
|
|
|
DiagnosticsStatusNotificationStatus = 0; //Idle
|
|
|
pthread_exit(NULL/*(void *) fname*/); // ? ?子執行 ?
|
|
|
|
|
@@ -13659,10 +13602,11 @@ int httpUploadFile(char *location, char *path, char *filename,char *url)
|
|
|
char rmFileCmd[100]={0};
|
|
|
char FilePath[100]={0};
|
|
|
char ftpbuf[200];
|
|
|
+ char filenametemp[60]={0};
|
|
|
int systemresult;
|
|
|
|
|
|
- DEBUG_INFO("filename=%s\n",filename);
|
|
|
- DEBUG_INFO("url=%s\n",url);
|
|
|
+ //DEBUG_INFO("filename=%s\n",filename);
|
|
|
+ //DEBUG_INFO("url=%s\n",url);
|
|
|
|
|
|
sprintf(FilePath,"%s","../mnt/upload_file.txt");
|
|
|
|
|
@@ -13678,20 +13622,19 @@ int httpUploadFile(char *location, char *path, char *filename,char *url)
|
|
|
if(fp == NULL)
|
|
|
{
|
|
|
DEBUG_INFO("log is NULL\n");
|
|
|
- return 0;
|
|
|
+ return FALSE;
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
fprintf(fp, "%s\n", url);
|
|
|
- fprintf(fp, "%s\n", filename);
|
|
|
+
|
|
|
+ sscanf(filename, "%*2[.]%s", filenametemp);
|
|
|
+ fprintf(fp, "%s\n", filenametemp);
|
|
|
fclose(fp);
|
|
|
}
|
|
|
|
|
|
memset(ftpbuf, 0, sizeof(ftpbuf));
|
|
|
- //sprintf(ftpbuf, "%s","../bin/php-cgi /var/www/ocpp_upload.php");
|
|
|
- //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
|
|
|
- //curl -i -F filename=image.jpg -F image=@/path/to/image.jpg http://localhost/xmlcreate/curlupload.php
|
|
|
- sprintf(ftpbuf, "curl -i -F filename=%s -F image=@%s%s %s",filename,path,filename,url);
|
|
|
+ sprintf(ftpbuf, "%s","../bin/php-cgi /var/www/ocpp_upload.php");
|
|
|
systemresult = system(ftpbuf);
|
|
|
|
|
|
DEBUG_INFO("systemresult=%d\n",systemresult);
|
|
@@ -14177,7 +14120,7 @@ int GetOcppServerURL()
|
|
|
|
|
|
if((ShmSysConfigAndInfo->SysConfig.OcppServerURL != NULL) && (strcmp((const char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL,"") != 0) )
|
|
|
{
|
|
|
- DEBUG_INFO("ShmSysConfigAndInfo->SysConfig.OcppServerURL =%s\n",ShmSysConfigAndInfo->SysConfig.OcppServerURL);
|
|
|
+ //DEBUG_INFO("ShmSysConfigAndInfo->SysConfig.OcppServerURL =%s\n",ShmSysConfigAndInfo->SysConfig.OcppServerURL);
|
|
|
sscanf((const char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL,
|
|
|
"%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
|
|
|
OcppProtocol, OcppHost, &OcppPort, OcppTempPath);
|
|
@@ -14190,7 +14133,7 @@ int GetOcppServerURL()
|
|
|
}
|
|
|
else if((ShmOCPP16Data->OcppServerURL != NULL) && (strcmp((const char *)ShmOCPP16Data->OcppServerURL,"") != 0))
|
|
|
{
|
|
|
- DEBUG_INFO("ShmOCPP16Data->OcppServerURL =%s\n",ShmOCPP16Data->OcppServerURL);
|
|
|
+ //DEBUG_INFO("ShmOCPP16Data->OcppServerURL =%s\n",ShmOCPP16Data->OcppServerURL);
|
|
|
sscanf((const char *)ShmOCPP16Data->OcppServerURL,
|
|
|
"%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
|
|
|
OcppProtocol, OcppHost, &OcppPort, OcppTempPath);
|
|
@@ -14246,7 +14189,7 @@ int GetOcppPath()
|
|
|
}
|
|
|
|
|
|
End:
|
|
|
- DEBUG_INFO("OcppPath=%s\n",OcppPath);
|
|
|
+ //DEBUG_INFO("OcppPath=%s\n",OcppPath);
|
|
|
return result;
|
|
|
}
|
|
|
|